:root {
  --ink: #122033;
  --ink-2: #28384d;
  --muted: #637186;
  --paper: #f5f8fc;
  --surface: #ffffff;
  --line: #d9e4f2;
  --blue: #2267ff;
  --blue-2: #e8f0ff;
  --cyan: #21b4d7;
  --teal: #13a38b;
  --green: #177343;
  --amber: #f4b740;
  --shadow: 0 28px 80px rgba(18, 32, 51, 0.16);
  --soft-shadow: 0 16px 44px rgba(18, 32, 51, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Aptos, Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  padding: 0 48px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(217, 228, 242, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(34, 103, 255, 0.25);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 800;
}

.nav a,
.header-cta,
.button,
.text-link {
  text-decoration: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(340px, 0.84fr) minmax(620px, 1.16fr);
  gap: 46px;
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: 76px 48px 48px;
  background:
    linear-gradient(135deg, rgba(34, 103, 255, 0.12), rgba(33, 180, 215, 0.08) 34%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(180deg, #ffffff 0%, #edf5ff 100%);
}

.hero-copy {
  max-width: 700px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: clamp(44px, 5.4vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  color: var(--ink-2);
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
}

.button.primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(34, 103, 255, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: white;
  border-color: var(--line);
}

.button.full {
  width: 100%;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-notes span {
  padding: 9px 12px;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 850;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.recovery-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.main-card {
  overflow: hidden;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 62px;
  padding: 0 22px;
  color: white;
  background: var(--ink);
}

.window-bar strong {
  margin-left: 8px;
  font-size: 17px;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.36);
  border-radius: 50%;
}

.dashboard {
  display: grid;
  grid-template-columns: 190px 1fr 220px;
  min-height: 438px;
}

.source-panel,
.preview-panel {
  padding: 22px;
  background: #f8fbff;
}

.source-panel {
  border-right: 1px solid var(--line);
}

.preview-panel {
  border-left: 1px solid var(--line);
}

.source-panel h2,
.preview-panel h2 {
  margin-bottom: 18px;
  font-size: 18px;
}

label {
  display: block;
  margin: 14px 0 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.field {
  padding: 10px 12px;
  color: var(--ink-2);
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 750;
}

.type-tabs {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.type-tabs span {
  padding: 9px 10px;
  color: var(--ink);
  background: var(--blue-2);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.results-panel {
  padding: 22px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.metrics div {
  min-height: 78px;
  padding: 14px;
  background: #fbfdff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metrics strong {
  display: block;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.1;
}

.metrics span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.result-table {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1.25fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.result-table span,
.result-table b,
.result-table em {
  min-height: 42px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.result-table span {
  color: var(--ink);
  background: #eef3fa;
  font-weight: 900;
}

.result-table b {
  font-weight: 850;
}

.result-table em {
  color: var(--teal);
  font-style: normal;
  font-weight: 850;
}

.photo-preview {
  position: relative;
  overflow: hidden;
  height: 164px;
  margin-bottom: 14px;
  background:
    linear-gradient(165deg, #bfe8ff 0 38%, transparent 38%),
    linear-gradient(25deg, #224d8f 0 28%, #42c6b4 28% 42%, #f8c75d 42% 56%, #f4f7fb 56%);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.photo-preview span {
  position: absolute;
  right: 22px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
}

.preview-panel p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.floating-card {
  position: absolute;
  right: 30px;
  bottom: -34px;
  width: min(330px, 52%);
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.floating-card strong {
  display: block;
  margin-bottom: 5px;
}

.floating-card span {
  color: var(--muted);
  font-size: 14px;
}

.source-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 24px 48px;
  color: white;
  background: var(--ink);
}

.source-strip span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 850;
}

.section {
  padding: 104px 48px;
}

.section-heading {
  display: grid;
  grid-template-columns: 70px minmax(0, 780px);
  gap: 24px;
  align-items: start;
  margin-bottom: 38px;
}

.section-heading p,
.workflow-copy p,
.download-panel p,
.license-section p,
.support-section p {
  color: var(--muted);
  font-size: 17px;
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--blue);
  background: var(--blue-2);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 950;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-grid article,
.workflow-list article,
.download-box,
.price-card,
.license-details article,
.support-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(18, 32, 51, 0.06);
}

.feature-grid article {
  min-height: 260px;
  padding: 26px;
}

.feature-grid p,
.workflow-list p,
.price-card li,
.license-details p,
.support-grid p {
  color: var(--muted);
}

.icon-shape {
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  background: var(--blue-2);
  border-radius: 8px;
}

.image-icon {
  background:
    linear-gradient(135deg, transparent 52%, var(--teal) 52% 72%, transparent 72%),
    linear-gradient(45deg, var(--blue), var(--cyan));
}

.video-icon {
  background:
    linear-gradient(90deg, white 16%, transparent 16% 84%, white 84%),
    linear-gradient(135deg, var(--blue), var(--teal));
}

.doc-icon {
  background:
    linear-gradient(180deg, white 0 12%, transparent 12% 24%, white 24% 36%, transparent 36%),
    linear-gradient(135deg, #6a7cff, var(--blue));
}

.shield-icon {
  background:
    radial-gradient(circle at 50% 40%, white 0 16%, transparent 17%),
    linear-gradient(135deg, var(--green), var(--teal));
}

.showcase-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
  gap: 42px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(34, 103, 255, 0.09), rgba(19, 163, 139, 0.07)),
    #f8fbff;
}

.showcase-copy {
  max-width: 540px;
}

.showcase-copy .section-number {
  margin-bottom: 22px;
}

.showcase-copy p {
  color: var(--muted);
  font-size: 17px;
}

.tour-slider {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.tour-slider input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tour-track {
  display: block;
}

.tour-slide {
  display: none;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 28px;
  align-items: center;
  min-height: 420px;
  padding: 32px;
}

#tour-1:checked ~ .tour-track .tour-slide:nth-child(1),
#tour-2:checked ~ .tour-track .tour-slide:nth-child(2),
#tour-3:checked ~ .tour-track .tour-slide:nth-child(3),
#tour-4:checked ~ .tour-track .tour-slide:nth-child(4),
#tour-5:checked ~ .tour-track .tour-slide:nth-child(5) {
  display: grid;
  animation: tourFade 220ms ease;
}

@keyframes tourFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tour-screen {
  min-height: 310px;
  padding: 24px;
  background: #f7fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mini-title {
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 950;
}

.mini-field {
  margin-bottom: 12px;
  padding: 14px;
  color: var(--ink-2);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 8px;
  padding: 0 18px;
  color: white;
  background: var(--blue);
  border-radius: 8px;
  font-weight: 950;
}

.mini-button.stop {
  background: var(--ink);
}

.scan-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.scan-metrics span {
  padding: 16px;
  color: var(--muted);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.scan-metrics b {
  display: block;
  color: var(--ink);
  font-size: 24px;
}

.progress-line {
  overflow: hidden;
  height: 12px;
  margin-bottom: 24px;
  background: #dce7f5;
  border-radius: 999px;
}

.progress-line::before {
  display: block;
  width: 62%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: inherit;
}

.tab-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}

.tab-row span {
  padding: 12px;
  color: var(--ink);
  background: var(--blue-2);
  border-radius: 8px;
  font-weight: 950;
  text-align: center;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.check-grid span {
  min-height: 58px;
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 950;
}

.preview-art {
  height: 190px;
  margin-bottom: 14px;
  background:
    linear-gradient(160deg, #b9e8ff 0 44%, transparent 44%),
    linear-gradient(25deg, #1f559f 0 32%, #35c3b4 32% 48%, #ffc857 48% 65%, #f8fbff 65%);
  border-radius: 8px;
}

.file-detail {
  margin-bottom: 12px;
  padding: 13px;
  color: var(--ink-2);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
}

.license-badge {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 10px 14px;
  color: white;
  background: var(--green);
  border-radius: 8px;
  font-weight: 950;
}

.tour-text p {
  color: var(--muted);
}

.tour-controls {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 14px;
  background: #eef4fb;
  border-top: 1px solid var(--line);
}

.tour-controls label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 0;
  color: var(--ink-2);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 950;
  text-transform: none;
}

#tour-1:checked ~ .tour-controls label[for="tour-1"],
#tour-2:checked ~ .tour-controls label[for="tour-2"],
#tour-3:checked ~ .tour-controls label[for="tour-3"],
#tour-4:checked ~ .tour-controls label[for="tour-4"],
#tour-5:checked ~ .tour-controls label[for="tour-5"] {
  color: white;
  background: var(--blue);
  border-color: var(--blue);
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  gap: 42px;
  background: white;
}

.workflow-copy {
  max-width: 520px;
}

.workflow-copy .section-number {
  margin-bottom: 22px;
}

.workflow-list {
  display: grid;
  gap: 14px;
}

.workflow-list article {
  display: grid;
  grid-template-columns: 54px 0.58fr 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.workflow-list span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  font-weight: 950;
}

.workflow-list h3,
.workflow-list p {
  margin: 0;
}

.download-section {
  background:
    linear-gradient(135deg, rgba(34, 103, 255, 0.1), rgba(19, 163, 139, 0.08)),
    #f8fbff;
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 430px);
  gap: 32px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.download-box,
.price-card,
.license-details article,
.support-grid article {
  padding: 28px;
}

.download-box p {
  margin-bottom: 24px;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 900;
}

.card-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 14px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
}

.card-link::after {
  content: ">";
  margin-left: 8px;
}

.license-section {
  background: white;
}

.license-layout {
  display: grid;
  grid-template-columns: minmax(320px, 430px) 1fr;
  gap: 24px;
}

.price-card {
  border-color: rgba(34, 103, 255, 0.25);
}

.plan-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  color: #6a4200;
  background: #fff0c2;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.price {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 52px;
  font-weight: 950;
  line-height: 1;
}

.price span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.price-card ul {
  padding-left: 19px;
  margin: 0 0 26px;
}

.price-card li {
  margin-bottom: 10px;
}

.license-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.support-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(520px, 1.25fr);
  gap: 36px;
  background: #f8fbff;
}

.support-section .section-number {
  margin-bottom: 22px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.legal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 34px 48px;
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legal-strip h2 {
  margin: 0 14px 0 0;
  font-size: 22px;
}

.legal-strip a {
  color: var(--blue);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 48px;
  color: white;
  background: var(--ink);
  font-size: 14px;
}

@media (max-width: 1180px) {
  .hero,
  .showcase-section,
  .workflow-section,
  .download-panel,
  .support-section {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .license-details {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard {
    grid-template-columns: 180px 1fr;
  }

  .preview-panel {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .license-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    padding: 18px 22px;
  }

  .nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px 16px;
    padding-bottom: 0;
  }

  .header-cta {
    width: 100%;
  }

  .hero,
  .section,
  .source-strip,
  .legal-strip {
    padding-right: 22px;
    padding-left: 22px;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  .dashboard,
  .tour-slide,
  .section-heading,
  .workflow-list article,
  .feature-grid,
  .support-grid,
  .license-details {
    grid-template-columns: 1fr;
  }

  .source-panel,
  .preview-panel {
    border-right: 0;
    border-left: 0;
  }

  .results-panel,
  .source-panel,
  .preview-panel {
    border-top: 1px solid var(--line);
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 22px;
  }

  .tour-controls {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: 40px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .metrics,
  .result-table,
  .scan-metrics,
  .tab-row,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .result-table span {
    display: none;
  }
}
