:root {
  color-scheme: light;
  --ink: #081827;
  --ink-soft: #183044;
  --muted: #526575;
  --line: #d8e1e8;
  --surface: #ffffff;
  --wash: #f4f8f7;
  --mint: #24b47e;
  --mint-soft: #daf7eb;
  --coral: #ff6b5a;
  --coral-soft: #ffe6e1;
  --gold: #f5b84b;
  --blue: #1c6dd0;
  --violet: #6655d9;
  --shadow: 0 24px 70px rgba(8, 24, 39, 0.14);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--ink);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.top-strip {
  position: sticky;
  top: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 39px;
  padding: 8px 18px;
  color: #ffffff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.top-strip span:first-child {
  color: #8ff0c1;
  text-transform: uppercase;
}

.top-strip a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 39px;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216, 225, 232, 0.82);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 950;
  color: var(--ink);
  white-space: nowrap;
}

.brand img {
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.nav-links a,
.footer-links a,
.text-link {
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--blue);
}

.nav-cta,
.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 950;
}

.nav-cta {
  padding: 0 18px;
  color: #ffffff;
  background: var(--ink);
}

.primary-cta {
  padding: 0 22px;
  color: #ffffff;
  background: var(--coral);
  box-shadow: 0 14px 28px rgba(255, 107, 90, 0.28);
}

.secondary-cta {
  padding: 0 20px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.1);
}

.secondary-cta.light {
  color: var(--ink);
  border-color: var(--line);
  background: #ffffff;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(740px, 76svh);
  padding: clamp(52px, 8vw, 94px) clamp(18px, 6vw, 86px);
  overflow: hidden;
  color: #ffffff;
  background: #102131 url("./assets/hero-scam-check-web.png") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 24, 39, 0.58);
}

.hero-copy,
.decision-ribbon {
  position: relative;
  z-index: 1;
}

.hero-copy {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 950;
}

.hero .eyebrow,
.proof-band .eyebrow,
.final-cta .eyebrow {
  color: #8ff0c1;
}

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

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

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-lede,
.section-heading p,
.split-copy > p,
.family-copy p,
.final-cta p,
.plans-copy p,
.expert-copy p,
.proof-copy p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.hero-lede {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 20px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  padding: 8px 11px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.decision-ribbon {
  position: absolute;
  right: clamp(18px, 6vw, 86px);
  bottom: clamp(18px, 5vw, 54px);
  width: min(380px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 18px;
  box-shadow: 0 18px 40px rgba(8, 24, 39, 0.22);
}

.decision-ribbon span {
  display: inline-flex;
  margin-bottom: 9px;
  border-radius: var(--radius);
  background: var(--coral-soft);
  color: #9d2d23;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.decision-ribbon strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.decision-ribbon p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

section {
  padding: clamp(56px, 8vw, 100px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 880px;
  margin: 0 auto 34px;
  text-align: center;
}

.problem-band,
.report-section,
.stories,
.final-cta,
.audience-section {
  background: var(--wash);
}

.conversion-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: var(--line);
}

.conversion-strip div {
  min-height: 132px;
  padding: 26px;
  background: #ffffff;
}

.conversion-strip strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.conversion-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 750;
}

.problem-grid,
.step-grid,
.report-grid,
.story-grid,
.proof-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.problem-grid article,
.step-grid article,
.report-card,
.story-grid article,
.faq-list details,
.proof-grid article,
.audience-grid article,
.price-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
}

.problem-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 950;
}

.problem-grid p,
.step-grid p,
.report-card p,
.story-grid p,
.faq-list p,
.proof-grid span,
.audience-grid p,
.price-grid p,
.expert-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--blue);
  font-weight: 950;
}

.expert-section,
.split-section,
.family-section,
.plans-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}

.expert-section {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
}

.expert-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.expert-actions span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 900;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(36, 180, 126, 0.16);
}

.expert-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.expert-card::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  width: 15px;
  height: 15px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 8px rgba(36, 180, 126, 0.16);
}

.expert-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.expert-card div {
  padding: 22px;
}

.expert-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.2;
}

.split-section {
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.88fr);
}

.split-image,
.family-section img {
  min-height: 500px;
}

.split-image img,
.family-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.use-list {
  display: grid;
  gap: 15px;
  margin-top: 28px;
}

.use-list div {
  border-left: 5px solid var(--mint);
  padding: 2px 0 2px 18px;
}

.use-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: var(--ink);
}

.proof-copy h2,
.proof-copy p {
  color: #ffffff;
}

.proof-copy p {
  color: #bdd0dc;
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-grid article {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.proof-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.16;
}

.proof-grid span {
  color: #bdd0dc;
  font-weight: 750;
}

.audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.audience-grid article {
  min-height: 216px;
}

.audience-grid h3 {
  color: var(--ink);
}

.report-card span,
.price-grid span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.report-card strong,
.price-grid strong {
  display: block;
  margin: 8px 0;
  font-size: 23px;
  line-height: 1.2;
}

.report-card.danger {
  border-color: rgba(255, 107, 90, 0.42);
  background: linear-gradient(180deg, #ffffff 0%, #fff2ef 100%);
}

.plans-section {
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  align-items: start;
}

.plans-copy .primary-cta {
  margin-top: 12px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.price-grid article {
  min-height: 196px;
}

.price-grid article.featured {
  border-color: rgba(36, 180, 126, 0.46);
  background: var(--mint-soft);
}

.family-section {
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
}

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

.rating {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: var(--radius);
  background: #fff3d5;
  color: #81510a;
  padding: 6px 10px;
  font-weight: 950;
}

.story-grid p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
}

.story-grid span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
}

.faq-list p {
  padding-top: 12px;
}

.final-cta {
  text-align: center;
  color: #ffffff;
  background: var(--ink);
}

.final-cta h2,
.final-cta p {
  color: #ffffff;
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: #c7d2da;
  background: #06131f;
}

.site-footer p {
  max-width: 560px;
  margin: 10px 0 0;
  color: #a9bbc8;
}

.footer-brand {
  color: #ffffff;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 850;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 720px;
    align-items: flex-start;
  }

  .decision-ribbon {
    left: clamp(18px, 6vw, 86px);
    right: auto;
  }

  .expert-section,
  .split-section,
  .family-section,
  .proof-band,
  .plans-section {
    grid-template-columns: 1fr;
  }

  .split-image,
  .family-section img {
    min-height: 360px;
  }

  .problem-grid,
  .step-grid,
  .report-grid,
  .story-grid,
  .conversion-strip,
  .proof-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .conversion-strip {
    padding: 0;
  }

  .family-section img {
    order: -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 0;
    gap: 12px;
    justify-content: flex-start;
  }

  .top-strip {
    display: none;
  }

  .brand span {
    display: none;
  }

  .nav-cta {
    margin-left: 12px;
    min-height: 38px;
    max-width: 118px;
    padding: 0 10px;
    overflow: hidden;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: 38px;
    padding-bottom: 46px;
  }

  .hero-copy {
    width: min(300px, 100%);
  }

  h1 {
    max-width: 300px;
    font-size: 40px;
    line-height: 1.02;
  }

  .hero-lede {
    max-width: 300px;
  }

  .hero-lede,
  .section-heading p,
  .split-copy > p,
  .family-copy p,
  .final-cta p,
  .plans-copy p,
  .expert-copy p {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    text-align: center;
  }

  .trust-list li {
    font-size: 13px;
  }

  .decision-ribbon {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(300px, 100%);
    margin-top: 28px;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .expert-card img {
    aspect-ratio: 4 / 3;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 86px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .mobile-sticky-cta {
    display: none;
  }
}
