/* ============================================================
   ScamShield AI — Landing page stylesheet
   Fonts: Gabarito (display) · Onest (body) · Fragment Mono (code)
   ============================================================ */

:root {
  --ink: #121F16;
  --cream: #FBFAF6;
  --green: #16A34A;
  --green-dark: #15803D;
  --green-deep: #0E5A3C;
  --green-bright: #4ADE80;
  --green-tint: #EBF7EE;
  --green-tint-border: #CBEAD4;
  --muted: #50685A;
  --faint: #71867A;
  --hint: #9CA89B;
  --line: rgba(18, 31, 22, 0.09);
  --line-soft: rgba(18, 31, 22, 0.06);
  --red: #DC2626;
  --red-bg: #FEF2F2;
  --red-border: #FBD5D5;
  --amber: #D97706;
  --amber-bg: #FFFBEB;
  --amber-border: #F8E5B9;
  --blue: #1D4ED8;
  --blue-bg: #EFF4FF;
  --font-display: 'Gabarito', sans-serif;
  --font-body: 'Onest', sans-serif;
  --font-mono: 'Fragment Mono', monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

input::placeholder, textarea::placeholder { color: var(--hint); }

img { max-width: 100%; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }

/* ---------- Keyframes ---------- */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes drift1 { 0% { transform: translate(0,0) scale(1); } 50% { transform: translate(70px,50px) scale(1.15); } 100% { transform: translate(-40px,-30px) scale(0.95); } }
@keyframes drift2 { 0% { transform: translate(0,0) scale(1); } 50% { transform: translate(-80px,60px) scale(1.1); } 100% { transform: translate(50px,-40px) scale(0.9); } }
@keyframes drift3 { 0% { transform: translate(0,0) scale(1); } 50% { transform: translate(60px,-70px) scale(1.2); } 100% { transform: translate(-50px,40px) scale(1); } }
@keyframes bob { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-22px) rotate(2deg); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes shimmer { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes rowIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-dir="left"]  { transform: translateX(-48px); }
.reveal[data-dir="right"] { transform: translateX(48px); }
.reveal[data-dir="left"].is-visible,
.reveal[data-dir="right"].is-visible { transform: translateX(0); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn--primary { color: #FFFFFF; background: var(--green); }
.btn--primary:hover { background: var(--green-dark); }
.btn--ink { color: #FFFFFF; background: var(--ink); box-shadow: 0 12px 32px rgba(18,31,22,0.25); }
.btn--ink:hover { background: var(--green); }
.btn--outline {
  color: var(--ink);
  background: rgba(255,255,255,0.6);
  border: 1.5px solid rgba(18,31,22,0.16);
  font-weight: 600;
}
.btn--outline:hover { border-color: var(--green); color: var(--green-dark); }
.btn--bright { color: var(--ink); background: var(--green-bright); }
.btn--bright:hover { background: #6CE99B; }
.btn--block { display: block; width: 100%; text-align: center; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 14px; left: 0; right: 0;
  z-index: 50;
  padding: 0 24px;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
/* hide on scroll down, reveal on scroll up (toggled in main.js);
   -60px clears the pill's drop shadow so no glow lingers at the top edge */
.nav--hidden {
  transform: translateY(calc(-100% - 60px));
}
@media (prefers-reduced-motion: reduce) {
  .nav { transition: none; }
}
.nav__inner {
  max-width: 1060px;
  margin: 0 auto;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(18,31,22,0.08);
  border-radius: 999px;
  padding: 10px 12px 10px 22px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 8px 32px rgba(18,31,22,0.08);
}
.nav__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.nav__logo { width: 32px; height: 34px; object-fit: contain; }
.nav__name { font-family: var(--font-display); font-size: 18px; font-weight: 700; white-space: nowrap; }
.nav__name em { font-style: normal; color: var(--green); }
.nav__links { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 500; }
.nav__links a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.nav__links a:hover { color: var(--green); }
.nav__cta { display: flex; align-items: center; gap: 8px; }
.nav__cta .btn { font-size: 14px; padding: 11px 20px; }
.nav__cta .btn--outline { background: transparent; padding: 11px 18px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 96vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__orb { position: absolute; will-change: transform; pointer-events: none; }
.hero__orb-inner { border-radius: 50%; }
.hero__orb--1 { top: -160px; left: -120px; }
.hero__orb--1 .hero__orb-inner {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(74,222,128,0.42), rgba(74,222,128,0) 68%);
  filter: blur(40px);
  animation: drift1 19s ease-in-out infinite alternate;
}
.hero__orb--2 { top: 60px; right: -180px; }
.hero__orb--2 .hero__orb-inner {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(22,163,74,0.30), rgba(22,163,74,0) 66%);
  filter: blur(48px);
  animation: drift2 23s ease-in-out infinite alternate;
}
.hero__orb--3 { bottom: -200px; left: 32%; }
.hero__orb--3 .hero__orb-inner {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(250,204,21,0.20), rgba(250,204,21,0) 64%);
  filter: blur(52px);
  animation: drift3 26s ease-in-out infinite alternate;
}
.hero__grid {
  position: absolute;
  inset: -120px;
  background-image: radial-gradient(rgba(18,31,22,0.10) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
  opacity: 0.5;
  will-change: transform;
  pointer-events: none;
}
.hero__shield {
  position: absolute;
  right: 7%;
  top: 50%;
  margin-top: -210px;
  will-change: transform;
  pointer-events: none;
}
.hero__shield img {
  width: 400px; height: 428px;
  object-fit: contain;
  filter: drop-shadow(0 40px 80px rgba(22,163,74,0.35));
  animation: bob 7s ease-in-out infinite;
}
.hero__content {
  position: relative;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 140px 48px 80px;
  will-change: transform, opacity;
}
.hero__col { max-width: 640px; display: flex; flex-direction: column; gap: 26px; align-items: flex-start; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(22,163,74,0.25);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 999px;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: #22C55E; animation: pulse 2s infinite; }
.hero__title {
  font-family: var(--font-display);
  font-size: 74px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.035em;
  margin: 0;
}
.hero__title .shimmer {
  background: linear-gradient(110deg, #16A34A, #4ADE80, #16A34A);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s ease-in-out infinite;
}
.hero__sub { font-size: 19px; line-height: 1.6; color: var(--muted); margin: 0; max-width: 540px; text-wrap: pretty; }
.hero__actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.checks { display: flex; gap: 26px; padding-top: 4px; font-size: 13.5px; color: var(--faint); flex-wrap: wrap; }
.checks span { display: flex; align-items: center; gap: 7px; }
.checks b { color: var(--green); font-weight: 700; }
.hero__scroll-cue {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--hint);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero__scroll-cue i {
  display: block;
  width: 1.5px; height: 28px;
  background: linear-gradient(var(--hint), transparent);
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid rgba(18,31,22,0.07);
  border-bottom: 1px solid rgba(18,31,22,0.07);
  background: #FFFFFF;
  overflow: hidden;
  padding: 22px 0;
}
.marquee__track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee__group { display: flex; align-items: center; gap: 64px; padding-right: 64px; }
.marquee__label { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; color: var(--hint); white-space: nowrap; }
.marquee__item { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--muted); white-space: nowrap; }

/* ---------- Section headers ---------- */
.section { padding: 0 0 96px; }
.section--pad-top { padding-top: 96px; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section__title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.06;
  margin: 0 0 12px;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.section__sub { font-size: 16.5px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ---------- Scanner (interactive demo) ---------- */
.scanner { max-width: 780px; margin: 0 auto; padding: 0 32px; }
.scanner__card {
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(18,31,22,0.12);
  overflow: hidden;
}
.scanner__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--ink);
}
.scanner__bar-title { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: #FFFFFF; }
.scanner__bar-title .dot { width: 8px; height: 8px; background: var(--green-bright); }
.scanner__bar-tag { font-family: var(--font-mono); font-size: 11px; color: #7FA98C; letter-spacing: 0.06em; }
.scanner__body { padding: 26px; }
.scanner__row { display: flex; gap: 10px; }
.scanner__input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 16px 20px;
  border: 1.5px solid rgba(18,31,22,0.12);
  border-radius: 999px;
  outline: none;
  color: var(--ink);
  background: #FAFBF8;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.scanner__input:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(22,163,74,0.12); }
.scanner__btn { padding: 0 30px; font-size: 15px; }
.scanner__chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; justify-content: center; }
.chip {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  background: #F3F6F1;
  border: 1px solid rgba(18,31,22,0.08);
  border-radius: 999px;
  padding: 7px 13px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.chip:hover { border-color: var(--green); color: var(--green-dark); }

.scanner__progress {
  margin-top: 20px;
  border: 1.5px solid var(--line-soft);
  border-radius: 18px;
  padding: 20px;
}
.scanner__progress-head {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--green-dark);
  margin-bottom: 14px;
}
.spinner {
  width: 15px; height: 15px;
  border: 2.5px solid var(--green-tint-border);
  border-top-color: var(--green);
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.8s linear infinite;
}
.scanner__steps { display: flex; flex-direction: column; gap: 9px; }
.scanner__step { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--hint); }
.scanner__step i { width: 16px; text-align: center; font-weight: 700; font-style: normal; }
.scanner__step.is-active { color: var(--ink); }
.scanner__step.is-done { color: var(--green); }

.verdict { margin-top: 20px; border-radius: 18px; padding: 22px; border: 1.5px solid; }
.verdict--high { border-color: var(--red-border); background: var(--red-bg); }
.verdict--mid  { border-color: var(--amber-border); background: var(--amber-bg); }
.verdict--low  { border-color: var(--green-tint-border); background: #F0FAF2; }
.verdict--high .verdict__accent { color: var(--red); }
.verdict--mid  .verdict__accent { color: var(--amber); }
.verdict--low  .verdict__accent { color: var(--green); }
.verdict__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.verdict__kicker { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 4px; }
.verdict__kicker code { font-family: var(--font-mono); }
.verdict__label { font-family: var(--font-display); font-size: 25px; font-weight: 700; }
.verdict__score { font-family: var(--font-display); font-size: 36px; font-weight: 800; text-align: right; }
.verdict__score-cap { font-size: 11px; color: var(--muted); letter-spacing: 0.05em; }
.verdict__rule { height: 1.5px; margin: 16px 0; }
.verdict--high .verdict__rule { background: var(--red-border); }
.verdict--mid  .verdict__rule { background: var(--amber-border); }
.verdict--low  .verdict__rule { background: var(--green-tint-border); }
.verdict__signals { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.verdict__signal { display: flex; gap: 9px; font-size: 13.5px; color: #3C5446; align-items: baseline; }
.verdict__reset {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  background: #FFFFFF;
  border: 1.5px solid rgba(18,31,22,0.12);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
}
.verdict__reset:hover { border-color: var(--green); color: var(--green-dark); }
.scanner__checks { display: flex; gap: 28px; justify-content: center; padding-top: 22px; }

/* ---------- Stats (odometer) ---------- */
.stats {
  position: relative;
  background: var(--ink);
  border-radius: 32px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  overflow: hidden;
}
.stats__glow {
  position: absolute;
  top: -120px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,222,128,0.22), transparent 70%);
  filter: blur(20px);
  animation: drift2 21s ease-in-out infinite alternate;
}
.stat { text-align: center; position: relative; }
.stat__value {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--green-bright);
  display: inline-flex;
  align-items: baseline;
}
.stat__label { font-size: 14px; color: #9DBCA9; margin-top: 6px; }

/* Odometer digits */
.odo { display: inline-flex; }
.odo__digit {
  display: inline-block;
  height: 1.18em;
  overflow: hidden;
  line-height: 1.18em;
}
.odo__col {
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.odo__col span { height: 1.18em; line-height: 1.18em; }
.odo__static { display: inline-block; }

/* ---------- Bento features ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.bento__card {
  border-radius: 26px;
  padding: 36px;
  transition: transform 0.35s ease;
}
.bento__card:hover { transform: translateY(-6px); }
.bento__card--green { grid-column: span 4; background: var(--green-tint); }
.bento__card--dark  { grid-column: span 2; background: var(--ink); color: #FFFFFF; }
.bento__card--warm  { grid-column: span 2; background: #FFF6E4; }
.bento__card--white { grid-column: span 4; background: #FFFFFF; border: 1.5px solid var(--line); }
.bento__card--white:hover { border-color: var(--green); }
.bento__title { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin: 0 0 10px; }
.bento__body { font-size: 15.5px; line-height: 1.65; color: #3C5446; margin: 0; max-width: 480px; }
.bento__card--dark .bento__body { color: #9DBCA9; }
.bento__card--warm .bento__body { color: #5B5443; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card {
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 26px;
  padding: 34px;
  transition: transform 0.35s ease;
}
.step-card:hover { transform: translateY(-6px); }
.step-card__num {
  width: 46px; height: 46px;
  border-radius: 999px;
  background: var(--green);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 18px;
}
.step-card__title { font-family: var(--font-display); font-size: 21px; font-weight: 700; margin: 0 0 8px; }
.step-card__body { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ---------- Threat feed ---------- */
.feed-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.feed-head .section__title { text-align: left; max-width: 560px; margin: 0; }
.live-pill {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--green-dark);
  padding-bottom: 8px;
}
.live-pill .dot { animation-duration: 1.6s; }
.feed {
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
}
.feed__row, .feed__header {
  display: grid;
  grid-template-columns: 90px 120px 1.2fr 1.2fr 110px;
  gap: 16px;
  padding: 15px 28px;
  align-items: center;
}
.feed__header {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--hint);
  border-bottom: 1.5px solid var(--line-soft);
  padding: 14px 28px;
}
.feed__row { border-bottom: 1px solid rgba(18,31,22,0.04); animation: rowIn 0.5s ease; }
.feed__row:last-child { border-bottom: none; }
.feed__time { font-family: var(--font-mono); font-size: 12px; color: var(--hint); }
.feed__pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 999px;
}
.feed__pill--email { color: var(--blue); background: var(--blue-bg); }
.feed__pill--upi   { color: var(--green-dark); background: var(--green-tint); }
.feed__pill--gstin { color: #B45309; background: var(--amber-bg); }
.feed__pill--phone { color: #334155; background: #F1F5F9; }
.feed__target { font-family: var(--font-mono); font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.feed__signal { font-size: 13px; color: var(--muted); }
.feed__action { text-align: right; font-size: 12.5px; font-weight: 700; }
.feed__action--blocked { color: var(--red); }
.feed__action--stepup  { color: var(--blue); }
.feed__action--hold    { color: var(--amber); }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card {
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 26px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s ease;
}
.price-card:hover { transform: translateY(-6px); }
.price-card--featured { background: var(--ink); color: #FFFFFF; border-color: var(--ink); }
.price-card__flag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  background: var(--green-bright);
  border-radius: 999px;
  padding: 6px 14px;
  white-space: nowrap;
}
.price-card__name { font-family: var(--font-display); font-size: 22px; font-weight: 800; margin: 0 0 4px; }
.price-card__tag { font-size: 13.5px; color: var(--faint); margin: 0 0 20px; }
.price-card--featured .price-card__tag { color: #9DBCA9; }
.price-card__price { font-family: var(--font-display); font-size: 44px; font-weight: 800; letter-spacing: -0.02em; }
.price-card__per { font-size: 13.5px; color: var(--faint); font-weight: 500; }
.price-card--featured .price-card__per { color: #9DBCA9; }
.price-card__list { list-style: none; margin: 22px 0 26px; padding: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price-card__list li { display: flex; gap: 9px; font-size: 14px; line-height: 1.5; color: #3C5446; }
.price-card--featured .price-card__list li { color: #C8DCCF; }
.price-card__list b { color: var(--green); font-weight: 700; }
.price-card--featured .price-card__list b { color: var(--green-bright); }
.price-card .btn--outline { background: transparent; text-align: center; }
.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--faint);
  margin-top: 24px;
}
.pricing-note code {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--green-dark);
  background: var(--green-tint);
  border-radius: 6px;
  padding: 2px 7px;
}

/* ---------- Dark split sections (contact + trial) ---------- */
.dark-panel {
  position: relative;
  background: var(--ink);
  border-radius: 32px;
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  overflow: hidden;
  color: #FFFFFF;
}
.dark-panel__glow {
  position: absolute;
  bottom: -160px; left: -100px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,222,128,0.18), transparent 70%);
  filter: blur(24px);
  animation: drift1 24s ease-in-out infinite alternate;
}
.dark-panel__info { position: relative; }
.dark-panel__logo {
  width: 54px; height: 58px;
  object-fit: contain;
  margin-bottom: 22px;
  filter: drop-shadow(0 12px 32px rgba(74,222,128,0.45));
}
.dark-panel__title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -0.025em;
}
.dark-panel__sub { font-size: 16px; line-height: 1.65; color: #9DBCA9; margin: 0 0 26px; max-width: 420px; }
.dark-panel__list { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; color: #C8DCCF; }
.dark-panel__list span { display: flex; gap: 10px; }
.dark-panel__list b { color: var(--green-bright); font-weight: 700; }

/* Plan selection chip (shown inside trial form when user clicks a pricing CTA) */
.plan-chip {
  display: flex; align-items: center; gap: 8px;
  background: #F0FDF4; border: 1.5px solid #86EFAC;
  border-radius: 10px; padding: 9px 14px;
  font-size: 13.5px;
}
.plan-chip__label { color: var(--muted); }
.plan-chip__name { font-weight: 700; color: #15803D; }
.plan-chip__clear {
  margin-left: auto; background: none; border: none;
  cursor: pointer; color: var(--muted); font-size: 18px;
  line-height: 1; padding: 0 2px;
}
.plan-chip__clear:hover { color: var(--ink); }

/* Forms */
.form-card { position: relative; background: #FFFFFF; border-radius: 24px; padding: 34px; color: var(--ink); }
.form-card__title { font-family: var(--font-display); font-size: 23px; font-weight: 700; margin: 0 0 4px; }
.form-card__sub { font-size: 13.5px; color: var(--muted); margin: 0 0 22px; }
.form-card form { display: flex; flex-direction: column; gap: 15px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 13px 17px;
  border: 1.5px solid rgba(18,31,22,0.12);
  border-radius: 14px;
  outline: none;
  background: #FFFFFF;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,0.12);
}
.field .error { font-size: 12.5px; color: var(--red); margin-top: 5px; display: none; }
.field.has-error input { border-color: var(--red-border); }
.field.has-error .error { display: block; }
.form-success { text-align: center; padding: 24px 8px; display: none; }
.form-success.is-visible { display: block; }
.form-success__icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--green-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 18px;
  color: var(--green);
}
.form-success__title { font-family: var(--font-display); font-size: 25px; font-weight: 700; margin: 0 0 8px; }
.form-success__body { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0 0 22px; }
.form-success__body code { font-family: var(--font-mono); color: var(--ink); }

.contact-meta { display: flex; flex-direction: column; gap: 11px; margin-top: 26px; font-size: 14.5px; color: #C8DCCF; }
.contact-meta a { color: #C8DCCF; text-decoration: none; }
.contact-meta a:hover { color: var(--green-bright); }

/* ---------- Footer ---------- */
.footer { border-top: 1.5px solid rgba(18,31,22,0.07); }
.footer__inner { max-width: 1140px; margin: 0 auto; padding: 40px 32px; }
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(18,31,22,0.06);
}
.footer__brand { display: flex; align-items: center; gap: 9px; }
.footer__brand img { width: 24px; height: 26px; object-fit: contain; }
.footer__brand span { font-family: var(--font-display); font-size: 14px; font-weight: 700; }
.footer__brand em { font-style: normal; color: var(--green); }
.footer__links { display: flex; gap: 24px; font-size: 13px; flex-wrap: wrap; }
.footer__links a { color: var(--muted); text-decoration: none; }
.footer__links a:hover { color: var(--green); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  font-size: 12.5px;
  color: var(--hint);
}
.footer__addr { line-height: 1.7; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero__shield img { width: 300px; height: 321px; }
  .hero__title { font-size: 58px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .bento__card--green, .bento__card--dark, .bento__card--warm, .bento__card--white { grid-column: span 6; }
  .steps { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .dark-panel { grid-template-columns: 1fr; padding: 44px 32px; }
}
@media (max-width: 760px) {
  /* Disable entrance animations on mobile — IO threshold misses too often */
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  /* Disable hero parallax fade — fades to near-invisible after tiny scroll */
  .hero__content { opacity: 1 !important; transform: none !important; }
  .container { padding: 0 20px; }
  .section { padding: 0 0 64px; }
  .section--pad-top { padding-top: 64px; }
  .nav__links { display: none; }
  .nav__cta .btn--outline { display: none; }
  .hero__shield { display: none; }
  .hero__title { font-size: 44px; }
  .hero__sub { font-size: 16px; }
  .hero__content { padding: 120px 28px 80px; }
  .section__title { font-size: 36px; }
  .feed__header, .feed__row { grid-template-columns: 80px 100px 1fr 100px; }
  .feed__signal { display: none; }
  .stats { grid-template-columns: 1fr; padding: 40px 28px; }
  .scanner { padding: 0 20px; }
  .scanner__row { flex-direction: column; }
  .scanner__btn { padding: 14px; }
  .scanner__checks { flex-direction: column; gap: 10px; padding-top: 16px; }
  .dark-panel { padding: 36px 24px; gap: 40px; border-radius: 24px; }
  .dark-panel__title { font-size: 34px; }
  .bento__card { padding: 26px; }
  .step-card { padding: 26px; }
  .price-card { padding: 26px; }
  .form-card { padding: 26px; }
}

/* ---------- Small phones (≤ 480px) ---------- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 0 0 48px; }
  .section--pad-top { padding-top: 48px; }
  .section__title { font-size: 28px; }
  .hero__content { padding: 100px 18px 60px; }
  .hero__title { font-size: 36px; }
  .hero__sub { font-size: 15px; }
  .checks { gap: 14px; }
  .scanner { padding: 0 16px; }
  .scanner__body { padding: 18px; }
  .scanner__card { border-radius: 20px; }
  .scanner__chips { gap: 6px; }
  .chip { font-size: 11px; padding: 6px 10px; }
  .stats { border-radius: 20px; padding: 28px 20px; gap: 20px; }
  .stat__value { font-size: 34px; }
  .bento__card { padding: 20px; border-radius: 18px; }
  .bento__title { font-size: 20px; }
  .step-card { padding: 20px; border-radius: 18px; }
  .price-card { padding: 20px; border-radius: 18px; }
  .price-card__price { font-size: 36px; }
  .dark-panel { padding: 28px 18px; gap: 32px; border-radius: 20px; }
  .dark-panel__title { font-size: 28px; }
  .dark-panel__sub { font-size: 14px; }
  .form-card { padding: 20px; border-radius: 18px; }
  /* Feed: hide time column so table fits narrow screens */
  .feed__time { display: none; }
  .feed__header, .feed__row { grid-template-columns: 80px 1fr 80px; gap: 10px; padding: 12px 16px; }
  .footer__inner { padding: 32px 16px; }
  .subpage { padding: 120px 0 60px; }
}

/* ============================================================
   Subpages (legal + blog) — same theme as landing
   ============================================================ */
.subpage { padding: 150px 0 90px; min-height: 70vh; }
.subpage__head { max-width: 760px; margin-bottom: 52px; }
.subpage__back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--muted);
  text-decoration: none; margin-bottom: 26px; transition: color 0.2s;
}
.subpage__back:hover { color: var(--green); }
.subpage__eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green-dark); margin-bottom: 14px;
}
.subpage__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(36px, 5vw, 54px); line-height: 1.04;
  letter-spacing: -0.02em; margin: 0 0 14px;
}
.subpage__meta { font-size: 14px; color: var(--muted); margin: 0; }

/* --- legal two-column layout --- */
.legal-layout {
  display: grid; grid-template-columns: 220px 1fr;
  gap: 56px; align-items: start;
}
.legal-toc {
  position: sticky; top: 110px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 20px 22px;
  box-shadow: 0 4px 20px rgba(18,31,22,0.04);
}
.legal-toc__title {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--faint); margin-bottom: 12px;
}
.legal-toc ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.legal-toc a {
  font-size: 13.5px; font-weight: 500; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}
.legal-toc a:hover { color: var(--green); }

.legal-content { max-width: 720px; font-size: 15.5px; line-height: 1.75; color: var(--muted); }
.legal-content h2 {
  font-family: var(--font-display); font-weight: 700; font-size: 24px;
  letter-spacing: -0.01em; color: var(--ink);
  margin: 40px 0 14px; scroll-margin-top: 110px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin: 0 0 16px; }
.legal-content ul { margin: 0 0 16px; padding-left: 22px; }
.legal-content li { margin-bottom: 8px; }
.legal-content strong { color: var(--ink); font-weight: 600; }
.legal-content a { color: var(--green-dark); }
.legal-content code {
  font-family: var(--font-mono); font-size: 12.5px;
  background: var(--green-tint); border: 1px solid var(--green-tint-border);
  padding: 2px 7px; border-radius: 6px; color: var(--green-deep);
}
.legal-highlight {
  background: var(--green-tint); border: 1px solid var(--green-tint-border);
  border-radius: 14px; padding: 18px 22px; margin-bottom: 28px;
  color: var(--green-deep); font-size: 15px; line-height: 1.7;
}
.legal-highlight strong { color: var(--green-deep); }

/* --- blog index --- */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.post-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 26px; display: flex; flex-direction: column; gap: 12px;
  text-decoration: none; color: var(--ink);
  box-shadow: 0 4px 20px rgba(18,31,22,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(18,31,22,0.09); }
.post-card__meta {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--faint);
}
.post-card__tag {
  background: var(--green-tint); border: 1px solid var(--green-tint-border);
  color: var(--green-deep); padding: 3px 9px; border-radius: 999px;
}
.post-card__title {
  font-family: var(--font-display); font-weight: 700; font-size: 19px;
  line-height: 1.3; letter-spacing: -0.01em; margin: 0;
}
.post-card__excerpt { font-size: 14px; line-height: 1.65; color: var(--muted); margin: 0; flex: 1; }
.post-card__read { font-size: 13px; font-weight: 600; color: var(--green-dark); }

@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .legal-toc { position: static; }
  .blog-grid { grid-template-columns: 1fr; }
  .subpage { padding-top: 130px; }
}
@media (max-width: 480px) {
  .legal-toc { padding: 16px 18px; }
  .blog-grid { gap: 16px; }
  .post-card { padding: 20px; }
}

/* ============ Trial Modal ============ */
.trial-modal {
  position: fixed; inset: 0; z-index: 900;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.trial-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(8, 18, 12, 0.76);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.trial-modal__box {
  position: relative; z-index: 1;
  width: 100%; max-width: 460px;
  max-height: 90vh; overflow-y: auto;
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  animation: modal-in 0.22s ease-out;
}
.trial-modal__form-card { border-radius: 24px; margin: 0; }
.trial-modal__close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; cursor: pointer;
  font-size: 24px; color: #94A3B8; line-height: 1;
  padding: 4px 8px; z-index: 2; border-radius: 8px;
}
.trial-modal__close:hover { background: #F1F5F9; color: var(--ink); }
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.plan-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding-top: 10px; }
.plan-option {
  position: relative;
  display: flex; flex-direction: column; gap: 3px;
  width: 100%; text-align: left; cursor: pointer;
  border: 2px solid rgba(18,31,22,0.12); border-radius: 14px;
  padding: 14px 16px; background: #fff;
  transition: border-color 0.15s, background 0.15s;
  overflow: visible;
}
.plan-option:hover { border-color: #86EFAC; }
.plan-option--selected { border-color: var(--green); background: #F0FDF4; }
.plan-option__badge {
  position: absolute; top: -10px; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 10px; font-weight: 700; letter-spacing: 0.07em;
  color: #fff; background: var(--green);
  border-radius: 20px; padding: 2px 8px;
}
.plan-option__name { font-size: 14px; font-weight: 700; color: var(--ink); }
.plan-option__price { font-size: 17px; font-weight: 800; color: var(--ink); margin-top: 2px; }
.plan-option__per { font-size: 11px; font-weight: 400; color: var(--muted); }
.field--plan.has-error .plan-options { outline: 2px solid #EF4444; border-radius: 14px; }
@media (max-width: 480px) {
  .trial-modal { padding: 0; align-items: flex-end; }
  .trial-modal__box { max-width: 100%; border-radius: 20px 20px 0 0; max-height: 95vh; }
  .trial-modal__form-card { border-radius: 20px 20px 0 0; }
}
