/* ===========================================================================
   Sejour Status Checker — landing page
   Pure CSS design system. No build step.
   =========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --purple: #6B60EF;
  --purple-600: #5a4fe0;
  --purple-100: #ECEAFD;
  --fr-blue: #2536A7;
  --fr-blue-deep: #273B7A;
  --fr-red: #EF4135;

  /* Status palette (from the extension) */
  --green: #2BB673;
  --green-soft: #E4F7EE;
  --yellow: #E8A52B;
  --yellow-soft: #FCF1DC;
  --red: #E5484D;
  --red-soft: #FCE7E8;

  /* Neutrals */
  --ink: #0E1116;
  --ink-700: #303744;
  --ink-500: #5A6473;
  --ink-400: #828c9b;
  --line: #E7E9EF;
  --bg: #FBFBFE;
  --bg-soft: #F4F5FB;
  --card: #FFFFFF;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(16, 17, 22, .05), 0 1px 3px rgba(16, 17, 22, .06);
  --shadow-md: 0 8px 24px -8px rgba(37, 54, 167, .14), 0 4px 10px -4px rgba(16, 17, 22, .06);
  --shadow-lg: 0 30px 60px -20px rgba(37, 54, 167, .28), 0 12px 28px -12px rgba(16, 17, 22, .10);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --maxw: 1140px;
  --ease: cubic-bezier(.22, 1, .36, 1);

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--purple); outline-offset: 3px; border-radius: 6px; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--purple); opacity: .6; }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

h1, h2, h3 { line-height: 1.1; letter-spacing: -.02em; font-weight: 700; }
h2 { font-size: clamp(30px, 4.4vw, 46px); }
h3 { font-size: 21px; letter-spacing: -.01em; }
.lead { font-size: clamp(17px, 2.1vw, 20px); color: var(--ink-500); margin-top: 18px; }
.serif { font-family: var(--font-display); font-weight: 600; letter-spacing: -.02em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; font-weight: 600; font-size: 16px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn-primary {
  background: var(--purple); color: #fff;
  box-shadow: 0 10px 24px -8px rgba(107, 96, 239, .6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -8px rgba(107, 96, 239, .7); background: var(--purple-600); }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: #d7dae4; }
.btn-lg { padding: 17px 30px; font-size: 17px; }

/* ===========================================================================
   Navbar
   =========================================================================== */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 251, 254, .72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 20px -12px rgba(16,17,22,.18); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 17px; letter-spacing: -.01em; }
.brand img { width: 34px; height: 34px; border-radius: 9px; box-shadow: var(--shadow-sm); }
.nav-links { display: flex; flex: 1 1 auto; align-items: center; justify-content: center; gap: 22px; }
.nav-links a { color: var(--ink-500); font-size: 15px; font-weight: 500; transition: color .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; flex: none; align-items: center; gap: 12px; }
.nav-toggle { display: none; }

/* Language switcher */
.lang-switch { position: relative; }
.lang-switch summary {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 13px; border-radius: 999px; border: 1px solid var(--line); background: #fff;
  font-size: 14.5px; font-weight: 600; color: var(--ink-700); box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s;
}
.lang-switch summary::-webkit-details-marker { display: none; }
.lang-switch summary:hover { border-color: #d7dae4; box-shadow: var(--shadow-md); }
.lang-switch summary svg { width: 17px; height: 17px; color: var(--ink-400); }
.lang-switch[open] summary { border-color: var(--purple); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 168px; z-index: 70;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 7px;
  box-shadow: var(--shadow-lg); display: grid; gap: 2px;
}
.lang-menu a {
  display: flex; align-items: center; padding: 9px 13px; border-radius: 9px;
  font-size: 14.5px; font-weight: 500; color: var(--ink-700); transition: background .15s, color .15s;
}
.lang-menu a:hover { background: var(--bg-soft); color: var(--ink); }
.lang-menu a[aria-current="true"] { background: var(--purple-100); color: var(--purple); font-weight: 600; }

/* ===========================================================================
   Hero
   =========================================================================== */
.hero { position: relative; padding-top: clamp(48px, 7vw, 90px); padding-bottom: clamp(64px, 9vw, 120px); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.badge-store {
  display: inline-flex; align-items: center; flex-wrap: wrap; gap: 7px 13px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 18px; font-size: 13.5px; font-weight: 600; color: var(--ink-700);
  box-shadow: var(--shadow-sm); margin-bottom: 26px;
}
.badge-store .bs-part { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.badge-store .bs-sep { width: 1px; height: 15px; background: var(--line); }
.badge-store .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-soft); flex: none; }
.badge-store .stars { color: var(--yellow); letter-spacing: 1px; }
.hero h1 {
  font-size: clamp(40px, 6.2vw, 68px);
  letter-spacing: -.03em; line-height: 1.04;
}
.hero h1 .accent { color: var(--purple); }
.hero h1 .serif { color: var(--fr-blue); }
.hero-sub { font-size: clamp(17px, 2.2vw, 20px); color: var(--ink-500); margin-top: 24px; max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust { display: flex; align-items: center; gap: 22px; margin-top: 30px; flex-wrap: wrap; color: var(--ink-500); font-size: 14.5px; }
.hero-trust .t { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 18px; height: 18px; color: var(--green); flex: none; }

/* tricolore hairline under hero stats */
.tricolore { display: flex; height: 4px; width: 64px; border-radius: 4px; overflow: hidden; }
.tricolore i { flex: 1; }
.tricolore i:nth-child(1) { background: var(--fr-blue); }
.tricolore i:nth-child(2) { background: #fff; box-shadow: inset 0 0 0 1px var(--line); }
.tricolore i:nth-child(3) { background: var(--fr-red); }

/* Hero background mesh */
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }
.blob.b1 { width: 520px; height: 520px; background: #BFC0F7; top: -160px; right: -120px; }
.blob.b2 { width: 460px; height: 460px; background: #D7E0FF; bottom: -180px; left: -140px; opacity: .7; }
.blob.b3 { width: 320px; height: 320px; background: #FBD3D1; top: 120px; right: 28%; opacity: .35; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 0%, transparent 75%);
  opacity: .5;
}

/* ---------- Extension popup mockup ---------- */
.hero-visual { position: relative; z-index: 2; display: flex; justify-content: center; }
.popup-float { position: relative; }
.popup {
  position: relative; z-index: 1;
  width: 340px; background: #fff; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.7);
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.popup-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.popup-bar .tl { width: 11px; height: 11px; border-radius: 50%; }
.popup-bar .tl.r { background: #FF5F57; } .popup-bar .tl.y { background: #FEBC2E; } .popup-bar .tl.g { background: #28C840; }
.popup-bar .pu-title { margin-left: auto; font-size: 12px; color: var(--ink-400); font-weight: 600; }
.popup-body { padding: 26px 22px 24px; text-align: center; }
.popup-body .pu-icon { width: 88px; height: 88px; margin: 4px auto 18px; }
.popup-status-label { font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-400); }
.popup-status { font-size: 23px; font-weight: 700; letter-spacing: -.01em; margin-top: 4px; color: var(--green); }
.popup-rows { margin-top: 22px; text-align: left; display: grid; gap: 10px; }
.pu-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 14px; background: var(--bg-soft); border-radius: 11px; font-size: 13.5px; }
.pu-row .k { color: var(--ink-500); }
.pu-row .v { font-weight: 600; color: var(--ink); }
.pu-pill { font-size: 11.5px; font-weight: 700; padding: 3px 9px; border-radius: 999px; }
.pu-pill.ok { background: var(--green-soft); color: var(--green); }
.popup-cta { margin-top: 20px; width: 100%; padding: 13px; border-radius: 12px; background: var(--purple); color: #fff; font-weight: 600; font-size: 15px; }

/* hero popup — mirrors the real plugin's green "ready" screen */
.popup .hp-accent { display: block; height: 5px; background: var(--green); }
.hp-body { padding: 20px 20px 22px; text-align: center; }
.hp-emoji { width: 56px; height: 56px; margin: 0 auto 10px; }
.hp-pill { display: inline-block; background: var(--green-soft); color: #117a4d; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.hp-name { margin-top: 11px; font-size: 16px; font-weight: 700; letter-spacing: .02em; color: var(--ink); }
.hp-desc { margin-top: 7px; font-size: 13px; color: var(--ink-500); line-height: 1.4; }
.hp-step-label { margin-top: 14px; font-size: 11px; font-weight: 600; color: var(--ink-400); }
.hp-dots { display: flex; align-items: center; margin-top: 9px; padding: 0 4px; }
.hp-dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--green); flex: none; }
.hp-dots span { flex: 1; height: 3px; background: var(--green); }
.hp-dots i.cur { transform: scale(1.4); box-shadow: 0 0 0 4px rgba(43, 182, 115, .15); }
.hp-metric { margin-top: 14px; background: var(--green-soft); border-radius: 13px; padding: 13px; }
.hp-num { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: #117a4d; line-height: 1; letter-spacing: -.02em; }
.hp-cap { margin-top: 5px; font-size: 11.5px; font-weight: 600; color: var(--ink-500); }
.hp-row { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; padding: 9px 12px; background: var(--bg-soft); border-radius: 10px; font-size: 12.5px; }
.hp-row span { color: var(--ink-500); }
.hp-row b { color: var(--ink); }
.hp-row b.warn { color: var(--red); }

/* floating chips around the popup */
.chip {
  position: absolute; z-index: 4; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-md);
  border-radius: 14px; padding: 11px 14px; display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 600;
}
.chip .ci { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; flex: none; }
.chip small { display: block; font-weight: 500; color: var(--ink-400); font-size: 11.5px; }
.chip.c1 { top: -16px; left: -34px; animation: floaty 6s ease-in-out infinite .5s; }
.chip.c1 .ci { background: var(--green-soft); color: var(--green); }
.chip.c2 { bottom: -16px; right: -24px; animation: floaty 6.5s ease-in-out infinite 1.2s; }
.chip.c2 .ci { background: var(--purple-100); color: var(--purple); }

/* ===========================================================================
   Marquee / logo-ish strip (search phrases)
   =========================================================================== */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; padding: 22px 0; overflow: hidden; }
.strip-label { text-align: center; font-size: 13px; color: var(--ink-400); font-weight: 600; letter-spacing: .04em; margin-bottom: 16px; text-transform: uppercase; }
.marquee { display: flex; gap: 14px; width: max-content; animation: scroll 38s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee .q { display: inline-flex; align-items: center; gap: 9px; padding: 9px 17px; border: 1px solid var(--line); border-radius: 999px; font-size: 14.5px; color: var(--ink-700); background: var(--bg); white-space: nowrap; }
.marquee .q svg { width: 15px; height: 15px; color: var(--ink-400); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ===========================================================================
   Stats band
   =========================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 28px 16px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.stat .num { font-size: clamp(32px, 4vw, 44px); font-weight: 700; letter-spacing: -.03em; color: var(--fr-blue); font-family: var(--font-display); }
.stat .lbl { font-size: 14px; color: var(--ink-500); margin-top: 6px; }

/* ===========================================================================
   Problem section
   =========================================================================== */
.problem { background: var(--bg-soft); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.quotes { display: grid; gap: 16px; }
.quote {
  background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--fr-red);
  border-radius: 14px; padding: 18px 20px; box-shadow: var(--shadow-sm);
}
.quote p { font-size: 15.5px; color: var(--ink-700); }
.quote .src { font-size: 13px; color: var(--ink-400); margin-top: 9px; font-weight: 500; }
.pain-list { display: grid; gap: 14px; margin-top: 28px; }
.pain-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; color: var(--ink-700); }
.pain-list .x { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--red-soft); color: var(--red); display: grid; place-items: center; font-weight: 700; }
.pain-list .x svg { width: 15px; height: 15px; }

/* ===========================================================================
   How it works
   =========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step {
  position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step .n {
  counter-increment: step; width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--purple), var(--fr-blue)); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: 18px; margin-bottom: 20px;
}
.step .n::after { content: counter(step); }
.step h3 { margin-bottom: 10px; }
.step p { color: var(--ink-500); font-size: 15.5px; }
.step .code { display: inline-block; max-width: 100%; overflow-wrap: anywhere; margin-top: 14px; font-family: ui-monospace, Menlo, monospace; font-size: 12.5px; color: var(--fr-blue); background: var(--bg-soft); padding: 4px 9px; border-radius: 7px; border: 1px solid var(--line); }

/* ===========================================================================
   Journey map (also used on /preview/)
   =========================================================================== */
.journey { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px,3.5vw,40px); box-shadow: var(--shadow-sm); }
.jmap { display: flex; align-items: flex-start; gap: 0; }
.jstep { flex: 1; text-align: center; position: relative; padding-top: 32px; }
.jstep .jdot { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 3px solid var(--purple); display: grid; place-items: center; z-index: 2; }
.jstep .jdot::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--purple); }
.jstep::before { content: ""; position: absolute; top: 11px; left: -50%; width: 100%; height: 3px; background: var(--line); z-index: 1; }
.jstep:first-child::before { display: none; }
.jstep .jt { font-weight: 700; font-size: 15px; letter-spacing: -.01em; }
.jstep .jd { font-size: 13px; color: var(--ink-400); margin-top: 4px; }
.jstep.j-ready .jdot { border-color: var(--green); }
.jstep.j-ready .jdot::after { background: var(--green); }
.jstep.j-refused .jdot { border-color: var(--red); }
.jstep.j-refused .jdot::after { background: var(--red); }
@media (max-width: 720px) {
  .jmap { flex-direction: column; gap: 20px; align-items: stretch; }
  .jstep { text-align: left; padding: 0 0 0 40px; }
  .jstep .jdot { left: 0; transform: none; top: 0; }
  .jstep::before { top: -20px; left: 11px; width: 3px; height: 20px; }
  .jstep:first-child::before { display: none; }
}

/* ===========================================================================
   Status decoder
   =========================================================================== */
.decoder { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%); }
.status-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sg {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.sg-head { padding: 24px 26px 20px; display: flex; align-items: center; gap: 14px; border-bottom: 1px solid var(--line); }
.sg-head .ico { width: 48px; height: 48px; flex: none; }
.sg-head h3 { font-size: 19px; }
.sg-head .cnt { font-size: 13px; color: var(--ink-400); font-weight: 600; margin-top: 2px; }
.sg.progress { border-top: 4px solid var(--yellow); }
.sg.ready { border-top: 4px solid var(--green); }
.sg.refused { border-top: 4px solid var(--red); }
.sg-list { padding: 14px 16px 20px; display: grid; gap: 6px; }
.sg-list li { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; padding: 10px 12px; border-radius: 10px; transition: background .2s; }
.sg-list li:hover { background: var(--bg-soft); }
.sg-list code { font-family: var(--font-sans); font-size: 11.5px; font-weight: 700; letter-spacing: .04em; padding: 3px 9px; border-radius: 7px; }
.sg.progress code { background: var(--yellow-soft); color: #9a6b13; }
.sg.ready code { background: var(--green-soft); color: #117a4d; }
.sg.refused code { background: var(--red-soft); color: #b1252a; }
.sg-list .desc { font-size: 13.5px; color: var(--ink-500); }
.decoder-note { text-align: center; margin-top: 34px; color: var(--ink-400); font-size: 14.5px; }

/* ===========================================================================
   Trust / safety
   =========================================================================== */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.trust-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.trust-card .ti { width: 46px; height: 46px; border-radius: 12px; background: var(--purple-100); color: var(--purple); display: grid; place-items: center; margin-bottom: 18px; }
.trust-card .ti svg { width: 24px; height: 24px; }
.trust-card h3 { font-size: 17px; margin-bottom: 8px; }
.trust-card p { font-size: 14.5px; color: var(--ink-500); }

/* ===========================================================================
   Story
   =========================================================================== */
.story { background: var(--fr-blue-deep); color: #fff; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px); position: relative; overflow: hidden; }
.story::before { content: ""; position: absolute; width: 380px; height: 380px; background: radial-gradient(circle, rgba(107,96,239,.5), transparent 70%); top: -120px; right: -80px; }
.story .eyebrow { color: #B9C0FF; }
.story .eyebrow::before { background: #B9C0FF; }
.story-inner { position: relative; z-index: 1; max-width: 760px; }
.story h2 { color: #fff; }
.story p { color: #C9D2F0; margin-top: 20px; font-size: 17.5px; }
.story .big { font-family: var(--font-display); font-weight: 600; letter-spacing: -.02em; font-size: clamp(23px, 3.1vw, 31px); color: #fff; line-height: 1.28; margin-top: 24px; }
.story-meta { display: flex; gap: 36px; margin-top: 36px; flex-wrap: wrap; }
.story-meta .m .v { font-size: 34px; font-weight: 700; font-family: var(--font-display); letter-spacing: -.02em; }
.story-meta .m .l { color: #A6B0DA; font-size: 14px; margin-top: 2px; }

/* ===========================================================================
   FAQ
   =========================================================================== */
.faq-grid { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.faq-item[open] { box-shadow: var(--shadow-md); border-color: #d7dae4; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 24px; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; font-weight: 600; font-size: 17px; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex: none; width: 26px; height: 26px; position: relative; transition: transform .3s var(--ease); }
.faq-item summary .plus::before, .faq-item summary .plus::after { content: ""; position: absolute; background: var(--purple); border-radius: 2px; }
.faq-item summary .plus::before { width: 14px; height: 2px; top: 12px; left: 6px; }
.faq-item summary .plus::after { width: 2px; height: 14px; top: 6px; left: 12px; transition: transform .3s var(--ease); }
.faq-item[open] summary .plus::after { transform: rotate(90deg); }
.faq-item .faq-body { padding: 0 24px 24px; color: var(--ink-500); font-size: 15.5px; }
.faq-item .faq-body a { color: var(--purple); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ===========================================================================
   CTA band
   =========================================================================== */
.cta-band { text-align: center; background: linear-gradient(135deg, var(--purple) 0%, var(--fr-blue) 100%); color: #fff; border-radius: var(--radius-lg); padding: clamp(48px, 7vw, 84px) 24px; position: relative; overflow: hidden; }
.cta-band::before, .cta-band::after { content: ""; position: absolute; border-radius: 50%; filter: blur(60px); }
.cta-band::before { width: 300px; height: 300px; background: rgba(255,255,255,.18); top: -100px; left: -60px; }
.cta-band::after { width: 280px; height: 280px; background: rgba(239,65,53,.25); bottom: -120px; right: -40px; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); margin-top: 16px; font-size: 19px; max-width: 560px; margin-inline: auto; }
.cta-band .btn-primary { background: #fff; color: var(--fr-blue); margin-top: 32px; box-shadow: 0 14px 30px -10px rgba(0,0,0,.4); }
.cta-band .btn-primary:hover { background: #fff; }
.cta-sub { margin-top: 18px; font-size: 14px; color: rgba(255,255,255,.75); }

/* ===========================================================================
   Footer
   =========================================================================== */
.footer { background: #fff; border-top: 1px solid var(--line); padding: 64px 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--ink-500); font-size: 15px; max-width: 340px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-400); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--ink-700); font-size: 15px; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: var(--purple); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.footer-bottom p { color: var(--ink-400); font-size: 13.5px; }
.footer-bottom .disclaimer { max-width: 620px; }

/* ===========================================================================
   Reveal-on-scroll
   =========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .popup, .chip, .marquee { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ===========================================================================
   Responsive
   =========================================================================== */
.brand { flex: none; }
@media (max-width: 1180px) {
  .nav-links { display: none; }
  .nav-toggle { display: grid; }
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .steps, .status-groups { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 18px; }
  .nav-links { display: none; }
  .nav-toggle { display: grid; }
  .nav-inner { gap: 10px; }
  .nav-cta { gap: 8px; }
  .nav-cta > .btn-primary { display: none; }      /* hero already has the CTA */
  .brand { font-size: 16px; gap: 9px; }
  .brand img { width: 30px; height: 30px; }
  .hero { padding-top: 22px; padding-bottom: 40px; }
  .hero h1 { font-size: clamp(38px, 10vw, 50px); font-weight: 800; line-height: 1.03; letter-spacing: -.035em; }
  .hero-sub { margin-top: 18px; font-size: 16px; }
  .hero-cta { margin-top: 24px; }
  /* compact left-aligned rating chip */
  .badge-store { justify-content: flex-start; flex-wrap: nowrap; gap: 7px; padding: 7px 14px; font-size: 12px; margin-bottom: 20px; }
  .badge-store .bs-sep, .badge-store .bs-users { display: none; }
  .hero-trust { display: none; }   /* declutter the first mobile screen */
  .chip { display: none; }
  .lang-switch summary span { display: none; }
  .lang-switch summary { padding: 9px 11px; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .story-meta { gap: 24px; }
}
@media (max-width: 420px) {
  .stats { grid-template-columns: 1fr; }
  .popup { width: 300px; }
}
