:root {
  color-scheme: light;
  --navy: #17324d;
  --navy-deep: #0f2538;
  --teal: #2e7775;
  --cream: #f6f1e8;
  --paper: #fffdf9;
  --amber: #d89a42;
  --coral: #c66a58;
  --ink: #202a33;
  --muted: #5f6d78;
  --line: #cbd8d6;
  --mist: #e7f0ef;
  --shadow: 0 22px 60px rgba(23, 50, 77, 0.13);
  --radius: 18px;
  --max: 1180px;
  --font-head: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-head); color: var(--navy); line-height: 1.04; }
h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); letter-spacing: -0.04em; }
h3 { font-size: 1.35rem; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mobile-purchase-bar { display: none; }

.skip-link {
  position: absolute;
  left: 14px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--navy);
  color: white;
}
.skip-link:focus { top: 14px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(203, 216, 214, 0.75);
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(16px);
}
.nav-shell {
  width: min(var(--max), calc(100vw - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--navy);
  font-weight: 850;
  text-decoration: none;
}
.brand-sigil {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
}
.nav-links {
  justify-self: center;
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-links a, .nav-action {
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  background: var(--mist);
  color: var(--navy);
}
.nav-action {
  border: 1px solid var(--teal);
  color: var(--teal);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.wrap, .site-footer {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}
.button-primary { background: var(--teal); color: white; }
.button-secondary { border-color: var(--navy); color: var(--navy); background: transparent; }
.button-disabled, .button:disabled {
  border-color: var(--line);
  background: #e9eeed;
  color: #71807e;
  cursor: not-allowed;
}
.microcopy { color: var(--muted); font-size: 0.82rem; }

.band { padding: 86px 0; }
.band-cream { background: var(--cream); }
.band-navy { background: var(--navy); color: white; }
.band-navy h2, .band-navy h3 { color: white; }
.band-navy p { color: #d8e4e2; }
.section-heading { max-width: 760px; margin-bottom: 38px; }
.section-heading p { color: var(--muted); }

.problem-grid, .preview-grid, .faq-grid {
  display: grid;
  gap: 18px;
}
.problem-grid { grid-template-columns: 1fr 1fr; align-items: start; }
.preview-grid { grid-template-columns: 0.8fr 1fr; align-items: center; }
.faq-grid { grid-template-columns: 1fr 1fr; }

.panel, .faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(23, 50, 77, 0.07);
}
.panel { padding: 34px; }
.check-list { display: grid; gap: 12px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}
.safety-note {
  padding: 22px;
  border-left: 5px solid var(--amber);
  background: #fff7e8;
  color: var(--ink);
}
.preview-frame {
  padding: 18px;
  border-radius: 20px;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.preview-frame img { border-radius: 12px; }

.offer-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 42px;
  border-radius: 24px;
  background: var(--mist);
  border: 1px solid #aec9c6;
}
.price { font-family: var(--font-head); color: var(--navy); font-size: 2.8rem; font-weight: 850; }
.price s { font-size: 1rem; color: var(--muted); font-weight: 500; }

.faq-item { padding: 25px; }
.faq-item h3 { margin-bottom: 10px; font-size: 1.12rem; }
.faq-item p { margin-bottom: 0; color: var(--muted); }

.policy-placeholder {
  padding: 16px;
  border: 1px dashed var(--amber);
  background: #fff9ef;
  color: var(--muted);
}
.direct-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 750;
}
.direct-cta::before { content: "Included"; color: var(--teal); font-size: 0.75rem; text-transform: uppercase; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 0 58px;
  border-top: 1px solid var(--line);
}
.site-footer p { max-width: 520px; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; align-content: start; }
.footer-links a { color: var(--teal); font-weight: 750; }

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 160ms ease;
}
.toast.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .problem-grid, .preview-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-shell { grid-template-columns: 1fr auto; min-height: 68px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding-bottom: 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.is-open { display: flex; }
  .nav-action { display: none; }
  .band { padding: 60px 0; }
  .faq-grid { grid-template-columns: 1fr; }
  .offer-box { grid-template-columns: 1fr; padding: 26px; }
  .panel { padding: 24px; }
  .site-footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Scam-Proof Family final product-page redesign */
.scam-proof-redesign {
  --spf-navy: #09243d;
  --spf-navy-2: #123552;
  --spf-teal: #278982;
  --spf-teal-soft: #e7f3f1;
  --spf-gold: #df9627;
  --spf-gold-2: #c77c16;
  --spf-ink: #102238;
  --spf-muted: #536274;
  --spf-cream: #fbf6ee;
  --spf-line: #d9e1df;
  background: #fffaf3;
  color: var(--spf-ink);
}

.scam-proof-redesign .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(9, 36, 61, 0.12);
}

.scam-proof-redesign .nav-action,
.scam-proof-redesign .button-primary.spf-gold {
  background: linear-gradient(180deg, #eda839 0%, var(--spf-gold-2) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 24px rgba(199, 124, 22, 0.22);
}

.scam-proof-redesign .nav-links a[aria-current="page"] {
  background: transparent;
  border-radius: 0;
  box-shadow: inset 0 -3px 0 var(--spf-teal);
}

.spf-hero {
  background:
    radial-gradient(circle at 78% 14%, rgba(223, 150, 39, 0.14), transparent 24rem),
    linear-gradient(90deg, #fffefa 0%, var(--spf-cream) 100%);
  border-bottom: 1px solid rgba(9, 36, 61, 0.10);
}

.spf-hero-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: center;
  padding: 42px 0 36px;
}

.spf-hero-copy {
  max-width: 620px;
}

.eyebrow,
.mockup-ribbon {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  background: var(--spf-gold);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  padding: 7px 16px;
  margin-bottom: 18px;
}

.spf-hero h1 {
  margin: 0 0 20px;
  color: var(--spf-navy);
  font-size: clamp(2.55rem, 4.5vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.spf-hero .lede {
  margin: 0;
  max-width: 610px;
  color: #223247;
  font-size: 1.18rem;
  line-height: 1.55;
}

.spf-offer-row {
  display: grid;
  grid-template-columns: minmax(150px, max-content) minmax(220px, 1fr);
  gap: 20px;
  align-items: center;
  margin: 30px 0 22px;
}

.spf-price-box {
  border-left: 5px solid var(--spf-teal);
  padding-left: 16px;
  min-width: 150px;
}

.spf-price-box span {
  display: block;
  color: var(--spf-teal);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.spf-price-box strong {
  display: block;
  color: var(--spf-teal);
  font-family: var(--font-head);
  font-size: 4rem;
  line-height: 0.92;
}

.spf-offer-copy {
  border-left: 1px solid rgba(9, 36, 61, 0.18);
  padding-left: 20px;
}

.spf-offer-copy strong,
.spf-offer-copy span {
  display: block;
}

.spf-offer-copy strong {
  color: var(--spf-navy);
  font-size: 1.1rem;
  line-height: 1.35;
}

.spf-offer-copy span {
  margin-top: 8px;
  color: var(--spf-muted);
}

.spf-actions {
  margin-top: 12px;
}

.spf-hero-media {
  position: relative;
  display: grid;
  justify-items: center;
  align-items: center;
  min-height: 530px;
}

.spf-hero-media img {
  width: min(100%, 650px);
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 26px 34px rgba(9, 36, 61, 0.18));
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 520ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .spf-hero-media:hover img { transform: translateY(-5px) rotate(-0.35deg); filter: drop-shadow(0 34px 44px rgba(9, 36, 61, 0.22)); }
}

.mockup-ribbon {
  position: absolute;
  top: 0;
  left: 28%;
  z-index: 2;
  padding: 8px 26px;
}

.trust-seal {
  position: absolute;
  right: 0;
  top: 28%;
  display: grid;
  place-items: center;
  width: 138px;
  height: 138px;
  padding: 18px;
  border: 1.5px solid var(--spf-teal);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--spf-teal);
  text-align: center;
  box-shadow: 0 20px 40px rgba(9, 36, 61, 0.08);
}

.trust-seal strong,
.trust-seal span {
  display: block;
  font-size: 0.72rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.spf-feature-strip {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 28px 0;
  background: #fff;
}

.spf-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
  min-height: 110px;
  padding: 8px 22px;
  border-left: 1px solid var(--spf-line);
}

.spf-feature:first-child {
  border-left: 0;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: var(--spf-teal-soft);
  color: var(--spf-teal);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 850;
}

.spf-feature strong {
  display: block;
  color: var(--spf-navy);
  font-size: 1rem;
  line-height: 1.2;
}

.spf-feature p {
  margin: 7px 0 0;
  color: var(--spf-muted);
  font-size: 0.92rem;
  line-height: 1.38;
}

.spf-free-strip {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto 10px;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 24px 28px;
  border-radius: 12px;
  border: 1px solid rgba(39, 137, 130, 0.16);
  background: linear-gradient(90deg, #eff8f6 0%, #fbfefd 100%);
}

.spf-free-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--spf-teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.spf-free-strip h2 {
  margin: 0 0 6px;
  color: var(--spf-teal);
  font-size: 1.6rem;
}

.spf-free-strip p {
  margin: 0;
  color: #26374b;
}

.spf-assurance-band {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(300px, 1.5fr) repeat(2, minmax(170px, 1fr));
  gap: 24px;
  align-items: center;
  padding: 26px max(24px, calc((100vw - 1200px) / 2));
  background: var(--spf-cream);
  border-top: 1px solid rgba(9, 36, 61, 0.08);
  border-bottom: 1px solid rgba(9, 36, 61, 0.08);
}

.spf-assurance-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.shield-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--spf-teal);
  border-radius: 999px;
  color: var(--spf-teal);
  font-weight: 850;
}

.spf-assurance-main strong {
  display: block;
  color: var(--spf-navy);
  font-size: 1rem;
}

.spf-assurance-main p {
  margin: 6px 0 0;
  color: #4f5f70;
  font-size: 0.88rem;
  line-height: 1.45;
}

.spf-assurance-item {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding-left: 18px;
  border-left: 1px solid rgba(9, 36, 61, 0.16);
  color: #2e4155;
  font-size: 0.92rem;
  font-weight: 650;
}

.spf-rule-panel {
  border-top: 5px solid var(--spf-teal);
}

.spf-bundle-section {
  background: linear-gradient(135deg, var(--spf-navy) 0%, #0c3657 100%);
}

.spf-preview-frame {
  background: rgba(255, 255, 255, 0.08);
}

.spf-preview-frame img {
  border-radius: 8px;
}

.scam-proof-redesign .offer-box {
  border: 1px solid rgba(39, 137, 130, 0.18);
  box-shadow: 0 24px 60px rgba(9, 36, 61, 0.08);
}

.scam-proof-redesign .price {
  color: var(--spf-teal);
}

.scam-proof-redesign .site-footer {
  background: var(--spf-navy);
  color: #eaf2f1;
}

.scam-proof-redesign .site-footer .brand,
.scam-proof-redesign .site-footer p {
  color: #eaf2f1;
}

@media (max-width: 1100px) {
  .spf-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .spf-hero-copy {
    max-width: 780px;
  }

  .spf-hero-media {
    min-height: auto;
  }

  .trust-seal {
    right: 3%;
  }

  .spf-feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spf-feature {
    border-left: 0;
    border-top: 1px solid var(--spf-line);
  }

  .spf-assurance-band {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }

  .mobile-purchase-bar {
    position: fixed;
    z-index: 60;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 12px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    background: linear-gradient(180deg, #eda839 0%, var(--spf-gold-2) 100%);
    color: #fff;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 18px 44px rgba(9, 36, 61, 0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-purchase-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-purchase-bar strong {
    font-family: var(--font-head);
    font-size: 1.35rem;
  }

  .spf-hero-inner,
  .spf-feature-strip,
  .spf-free-strip {
    width: min(100% - 28px, 720px);
  }

  .spf-hero-inner {
    padding: 34px 0 30px;
    gap: 30px;
  }

  .spf-offer-row,
  .spf-free-strip,
  .spf-assurance-band {
    grid-template-columns: 1fr;
  }

  .spf-offer-copy {
    border-left: 0;
    padding-left: 0;
  }

  .spf-price-box strong {
    font-size: 3.4rem;
  }

  .spf-feature-strip {
    grid-template-columns: 1fr;
    padding: 18px 0;
  }

  .spf-feature {
    padding: 18px 8px;
    min-height: 0;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  .spf-free-strip {
    padding: 22px;
  }

  .spf-free-strip .actions,
  .spf-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .spf-free-strip .button,
  .spf-actions .button {
    width: 100%;
    justify-content: center;
  }

  .spf-assurance-band {
    padding: 24px 18px;
  }

  .spf-assurance-item {
    border-left: 0;
    border-top: 1px solid rgba(9, 36, 61, 0.16);
    padding: 14px 0 0;
    min-height: 0;
  }

  .mockup-ribbon,
  .trust-seal {
    position: static;
    margin-bottom: 14px;
  }

  .trust-seal {
    width: auto;
    height: auto;
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .spf-hero-media:hover img { transform: none; filter: drop-shadow(0 26px 34px rgba(9, 36, 61, 0.18)); }
}
