:root {
  --navy: #102d49;
  --navy-deep: #091c30;
  --teal: #0b7778;
  --teal-dark: #075e60;
  --teal-soft: #e0f2ef;
  --gold: #f2c66d;
  --gold-soft: #fff4d8;
  --ink: #1d3045;
  --muted: #5f7082;
  --line: #dce5eb;
  --paper: #ffffff;
  --wash: #f5f8fa;
  --success: #287a4b;
  --shadow: 0 20px 60px rgba(16, 45, 73, .14);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 999; background: white; color: var(--navy); padding: 10px 14px; border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220,229,235,.85);
}
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; min-width: 240px; }
.brand img { width: 260px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { text-decoration: none; color: #3f5367; font-size: 14px; font-weight: 700; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--teal); }
.nav-toggle { display: none; background: transparent; border: 0; width: 44px; height: 44px; border-radius: 10px; }
.nav-toggle span { display: block; height: 2px; width: 24px; margin: 5px auto; background: var(--navy); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: white; box-shadow: 0 10px 28px rgba(11,119,120,.22); }
.btn-primary:hover { background: var(--teal-dark); }
.btn-secondary { background: white; color: var(--navy); border-color: #c8d6df; }
.btn-secondary:hover { box-shadow: 0 10px 26px rgba(16,45,73,.10); }
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-small { min-height: 42px; padding: 9px 16px; }

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 85% 20%, rgba(11,119,120,.56), transparent 32%),
    linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 62%, #0a6268 100%);
  padding: 94px 0 92px;
}
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.13); pointer-events: none; }
.hero::before { width: 560px; height: 560px; right: -160px; top: -250px; }
.hero::after { width: 360px; height: 360px; right: 8%; bottom: -230px; border-width: 55px; opacity: .34; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 72px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 20px; color: var(--gold); font-size: 13px; font-weight: 900; letter-spacing: 1.7px; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 34px; height: 3px; background: var(--gold); border-radius: 9px; }
.hero h1 { margin: 0; max-width: 720px; font-size: clamp(44px, 5vw, 72px); line-height: 1.02; letter-spacing: -2.4px; }
.hero .lede { max-width: 650px; margin: 26px 0 0; color: #dce8ef; font-size: 20px; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-actions .btn-secondary { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.34); color: white; }
.hero-actions .btn-secondary:hover { background: rgba(255,255,255,.14); }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 28px; color: #cfe0e9; font-size: 13px; font-weight: 700; }
.hero-points span::before { content: "✓"; margin-right: 7px; color: var(--gold); }
.report-stack { position: relative; min-height: 560px; }
.report-shot { position: absolute; overflow: hidden; background: white; border: 1px solid rgba(255,255,255,.4); border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.32); }
.report-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.report-shot.cover { width: 340px; height: 440px; right: 0; top: 0; transform: rotate(4deg); }
.report-shot.page { width: 360px; height: 470px; left: 0; bottom: 0; transform: rotate(-3deg); }
.report-label { position: absolute; right: 28px; bottom: 20px; z-index: 3; background: var(--gold); color: var(--navy-deep); padding: 9px 13px; border-radius: 999px; font-size: 12px; font-weight: 900; box-shadow: 0 12px 28px rgba(0,0,0,.25); }

.trust-strip { border-bottom: 1px solid var(--line); background: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 25px 18px; border-right: 1px solid var(--line); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--navy); font-size: 15px; }
.trust-item span { color: var(--muted); font-size: 13px; }

.section { padding: 92px 0; }
.section-soft { background: var(--wash); }
.section-dark { background: var(--navy); color: white; }
.section-head { max-width: 780px; margin-bottom: 44px; }
.kicker { margin: 0 0 10px; color: var(--teal); text-transform: uppercase; letter-spacing: 1.8px; font-size: 12px; font-weight: 900; }
.section-dark .kicker { color: var(--gold); }
.section h2 { margin: 0; color: var(--navy); font-size: clamp(34px, 4vw, 52px); line-height: 1.08; letter-spacing: -1.6px; }
.section-dark h2 { color: white; }
.section-head p { margin: 18px 0 0; color: var(--muted); font-size: 18px; }
.section-dark .section-head p { color: #ccdae3; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.problem-list { display: grid; gap: 14px; margin-top: 28px; }
.problem-item { display: grid; grid-template-columns: 42px 1fr; gap: 15px; align-items: start; padding: 18px; background: white; border: 1px solid var(--line); border-radius: 14px; }
.problem-item .icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; color: var(--teal); background: var(--teal-soft); font-weight: 900; }
.problem-item h3 { margin: 0 0 3px; color: var(--navy); font-size: 16px; }
.problem-item p { margin: 0; color: var(--muted); font-size: 14px; }
.promise-card { padding: 38px; border-radius: 24px; background: linear-gradient(145deg, var(--navy), #0c6670); color: white; box-shadow: var(--shadow); }
.promise-card .big { color: var(--gold); font-size: 56px; font-weight: 900; letter-spacing: -2px; line-height: 1; }
.promise-card h3 { margin: 15px 0 10px; font-size: 28px; }
.promise-card p { color: #d8e6ec; }
.promise-card ul { list-style: none; padding: 0; margin: 22px 0 0; }
.promise-card li { padding: 10px 0 10px 28px; position: relative; border-top: 1px solid rgba(255,255,255,.13); }
.promise-card li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.step-number { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: var(--gold); font-weight: 900; margin-bottom: 22px; }
.step h3 { margin: 0 0 10px; color: var(--navy); font-size: 21px; }
.step p { margin: 0; color: var(--muted); }

.preview-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 54px; align-items: start; }
.sample-cards { display: grid; gap: 16px; }
.sample-card { padding: 24px; border: 1px solid var(--line); border-left: 6px solid var(--teal); border-radius: 14px; background: white; box-shadow: 0 10px 30px rgba(16,45,73,.06); }
.sample-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.status { display: inline-flex; padding: 6px 10px; border-radius: 999px; color: var(--teal-dark); background: var(--teal-soft); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .8px; }
.status.soon { background: var(--gold-soft); color: #855d0b; }
.sample-card h3 { margin: 15px 0 4px; color: var(--navy); font-size: 21px; }
.sample-card .meta { color: var(--teal); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .7px; }
.sample-card p { color: var(--muted); margin: 13px 0 0; font-size: 14px; }
.sample-card .contact { display: inline-block; margin-top: 13px; color: var(--navy); font-size: 13px; font-weight: 800; }
.privacy-note { margin-bottom: 18px; padding: 16px 18px; border: 1px solid #ecd497; border-radius: 12px; background: #fff7df; color: #705315; font-size: 13px; }
.privacy-note strong { color: #5e430b; }
.sample-card.fictional { position: relative; overflow: hidden; }
.sample-card.fictional::after { content: "FICTIONAL"; position: absolute; right: -22px; bottom: 17px; transform: rotate(-28deg); color: rgba(16,45,73,.055); font-size: 38px; font-weight: 900; letter-spacing: 2px; pointer-events: none; }
.pilot-proof { display: grid; gap: 8px; margin-top: 20px; padding: 17px; border: 1px solid rgba(242,198,109,.30); border-radius: 12px; background: rgba(242,198,109,.08); }
.pilot-proof strong { color: var(--gold); }
.pilot-proof span { position: relative; padding-left: 17px; color: #d9e6ec; font-size: 12px; }
.pilot-proof span::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.sample-download { position: sticky; top: 112px; padding: 32px; background: var(--navy); color: white; border-radius: 22px; box-shadow: var(--shadow); }
.sample-download img { width: 220px; margin: 0 auto 24px; border-radius: 6px; box-shadow: 0 18px 45px rgba(0,0,0,.32); }
.sample-download h3 { margin: 0 0 10px; font-size: 26px; }
.sample-download p { color: #d7e4eb; }
.sample-download small { display: block; margin-top: 14px; color: #aebfca; }

.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.included { padding: 24px; border-radius: 15px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); }
.included strong { display: block; color: var(--gold); margin-bottom: 6px; }
.included span { color: #d5e1e8; font-size: 14px; }

.categories { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.category-card { min-height: 116px; padding: 19px; border-radius: 14px; background: white; border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.category-card strong { color: var(--navy); }
.availability { display: inline-flex; align-items: center; gap: 6px; color: var(--success); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .7px; }
.availability::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #38a869; box-shadow: 0 0 0 4px rgba(56,168,105,.12); }
.category-note { margin-top: 20px; color: var(--muted); font-size: 13px; }

.price-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.price-card { border: 1px solid var(--line); border-radius: 24px; background: white; overflow: hidden; box-shadow: var(--shadow); }
.price-head { padding: 34px; color: white; background: linear-gradient(145deg, var(--navy), #0c6670); }
.price-head .label { color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: 1.6px; text-transform: uppercase; }
.price { margin-top: 10px; font-size: 64px; font-weight: 900; line-height: 1; letter-spacing: -3px; }
.price sup { font-size: 22px; vertical-align: top; margin-right: 3px; }
.price span { font-size: 16px; letter-spacing: 0; color: #dbe7ed; }
.price-body { padding: 32px 34px 36px; }
.price-body ul { list-style: none; padding: 0; margin: 0 0 26px; }
.price-body li { padding: 10px 0 10px 27px; position: relative; border-bottom: 1px solid var(--line); }
.price-body li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }
.rate-lock { margin: 22px 0 0; padding: 17px; background: var(--gold-soft); border-radius: 12px; color: #64490c; font-size: 13px; }
.price-copy h2 { margin-bottom: 20px; }
.price-copy p { color: var(--muted); font-size: 17px; }
.exclusivity-box { margin-top: 24px; padding: 22px; border-left: 5px solid var(--gold); background: var(--wash); border-radius: 10px; }
.exclusivity-box strong { color: var(--navy); }

.faq-list { display: grid; gap: 12px; max-width: 920px; }
.faq { border: 1px solid var(--line); border-radius: 13px; background: white; overflow: hidden; }
.faq button { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 20px 22px; border: 0; background: transparent; color: var(--navy); text-align: left; font-weight: 800; cursor: pointer; }
.faq button span:last-child { color: var(--teal); font-size: 22px; line-height: 1; }
.faq-answer { display: none; padding: 0 22px 21px; color: var(--muted); }
.faq.open .faq-answer { display: block; }
.faq.open button span:last-child { transform: rotate(45deg); }

.contact-section { padding: 90px 0; color: white; background: linear-gradient(145deg, var(--navy-deep), var(--navy)); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 58px; align-items: start; }
.contact-copy h2 { color: white; margin: 0; font-size: clamp(36px, 4vw, 52px); line-height: 1.08; }
.contact-copy p { color: #cfdde5; font-size: 18px; }
.contact-copy .scarcity { margin-top: 26px; padding: 18px; background: rgba(242,198,109,.10); border: 1px solid rgba(242,198,109,.28); border-radius: 12px; color: #f8e6bb; }
.form-card { padding: 30px; border-radius: 20px; background: white; color: var(--ink); box-shadow: 0 24px 70px rgba(0,0,0,.25); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy); font-size: 13px; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #cfdbe3; border-radius: 9px; padding: 12px 13px; color: var(--ink); background: white; outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(11,119,120,.10); }
.field textarea { min-height: 115px; resize: vertical; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-note { color: var(--muted); font-size: 12px; margin: 12px 0 0; }
.notice { padding: 13px 15px; margin-bottom: 16px; border-radius: 10px; font-weight: 700; }
.notice.success { background: #e5f5ea; color: #226942; }
.notice.error { background: #fff0ef; color: #9b342e; }

.site-footer { padding: 42px 0; color: #b8c9d3; background: #071624; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.footer-brand { color: white; font-weight: 900; font-size: 20px; }
.footer-brand span { color: var(--gold); }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { color: #b8c9d3; text-decoration: none; font-size: 13px; }
.footer-small { margin-top: 14px; color: #8297a5; font-size: 12px; }

.legal-page { background: var(--wash); min-height: 100vh; }
.legal-hero { padding: 70px 0 40px; background: var(--navy); color: white; }
.legal-hero h1 { margin: 0; font-size: 44px; }
.legal-content { max-width: 860px; margin: 0 auto; padding: 55px 20px 80px; }
.legal-content h2 { color: var(--navy); margin-top: 34px; }
.legal-content p, .legal-content li { color: var(--muted); }

@media (max-width: 980px) {
  .site-nav { position: fixed; inset: 82px 0 auto 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px 24px; background: white; border-bottom: 1px solid var(--line); box-shadow: 0 16px 30px rgba(16,45,73,.12); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 4px; }
  .site-nav .btn { margin-top: 8px; }
  .nav-toggle { display: block; }
  .hero-grid, .split, .preview-grid, .price-layout, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 70px; }
  .report-stack { width: min(100%, 620px); margin: 25px auto 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .steps, .included-grid { grid-template-columns: 1fr; }
  .categories { grid-template-columns: repeat(3, 1fr); }
  .sample-download { position: static; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav-wrap { height: 70px; }
  .brand img { width: 215px; }
  .site-nav { top: 70px; }
  .hero { padding: 58px 0 64px; }
  .hero h1 { font-size: 43px; letter-spacing: -1.6px; }
  .hero .lede { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .report-stack { min-height: 430px; }
  .report-shot.cover { width: 245px; height: 322px; }
  .report-shot.page { width: 260px; height: 340px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:first-child { padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .section { padding: 66px 0; }
  .section h2 { font-size: 36px; }
  .categories { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .price { font-size: 56px; }
}

@media (max-width: 420px) {
  .brand { min-width: 0; }
  .brand img { width: 188px; }
  .categories { grid-template-columns: 1fr; }
  .report-shot.cover { width: 220px; height: 290px; }
  .report-shot.page { width: 230px; height: 310px; }
}

/* Preserve button contrast inside the navigation. */
.site-nav .btn-primary,
.site-nav .btn-primary:hover,
.site-nav .btn-primary:focus-visible { color: #ffffff; }
