@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/inter-latin-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("../fonts/space-grotesk-latin-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  
  --bg: #0B0E16;
  --bg-2: #090C13;
  
  --surface: #141C2A;
  --surface-2: #18212F;
  --surface-3: #1E2838;
  --line: #25324a;
  --line-soft: rgba(255, 255, 255, .06);
  
  --title: #E8EEF5;
  --body: #A9B5C6;
  --muted: #8290A5;
  
  --brand: #29D3AE;
  --brand-2: #19c8a2;
  --brand-ink: #04130f;
  --brand-glow: rgba(41, 211, 174, .35);
  
  --cta: #FF8A3D;
  --cta-2: #ff7a22;
  --cta-ink: #2a1402;
  --cta-glow: rgba(255, 138, 61, .40);
  
  --violet: #9A8BFF;
  --violet-glow: rgba(154, 139, 255, .30);
  
  --red: #FF5C5C;
  
  --blue: #3D5AFE;

  --font-title: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-mono: ui-monospace, "Cascadia Mono", Consolas, "Liberation Mono", monospace;

  --maxw: 1180px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, .65);
  --shadow-soft: 0 10px 30px -12px rgba(0, 0, 0, .55);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 70px;
}


*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  overflow-x: hidden;
  overflow-x: clip;
}
[id][tabindex="-1"]:focus { outline: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  background-image:
    radial-gradient(1100px 620px at 12% -8%, rgba(41, 211, 174, .10), transparent 60%),
    radial-gradient(900px 600px at 95% 4%, rgba(154, 139, 255, .08), transparent 55%);
  background-repeat: no-repeat;
  color: var(--body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--brand-2); }
ul { padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }


h1, h2, h3, h4 { font-family: var(--font-title); color: var(--title); line-height: 1.12; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2.25rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); letter-spacing: -.025em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); letter-spacing: -.015em; }
.pricing-title { font-size: calc(clamp(1.7rem, 3.6vw, 2.7rem) + 3px); }
h4 { font-size: 1.06rem; }
p { max-width: 68ch; }
strong { color: var(--title); font-weight: 600; }
.mono { font-family: var(--font-mono); font-feature-settings: "tnum" 1; }


.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding-block: clamp(56px, 8vw, 110px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.center { text-align: center; }
.measure { max-width: 720px; margin-inline: auto; }
.eyebrow {
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .18em;
  font-size: .76rem; font-weight: 600; color: var(--brand);
  display: inline-flex; align-items: center; gap: 8px;
}
.section-head { margin-bottom: clamp(34px, 5vw, 56px); }
.section-head p { color: var(--body); font-size: 1.08rem; margin-top: 14px; }
.section-head.center p { margin-inline: auto; }
.lead { font-size: 1.18rem; color: var(--body); }

@media (min-width: 881px) {
  .section-head .eyebrow { font-size: calc(.76rem + 5px); }
}


.accent { color: var(--brand); }
.accent-cta { color: var(--cta); }
.accent-violet { color: var(--violet); }
.grad {
  background: linear-gradient(100deg, var(--brand), #54e0ff 60%, var(--violet));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}


.btn {
  --b: var(--surface-3);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-title); font-weight: 700; font-size: 1rem; letter-spacing: -.01em;
  padding: 15px 26px; border-radius: 12px; border: 1px solid transparent;
  background: var(--b); color: var(--title);
  transition: transform .16s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s;
  text-align: center; line-height: 1.1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }
.btn .sub { display: block; font-size: .72rem; font-weight: 500; opacity: .85; font-family: var(--font-body); margin-top: 2px; }


.btn--cta {
  background: linear-gradient(180deg, var(--cta), var(--cta-2));
  color: #1c0d02; border-color: rgba(255, 180, 130, .5);
  box-shadow: 0 10px 26px -8px var(--cta-glow), inset 0 1px 0 rgba(255, 255, 255, .35);
}
.btn--cta:hover { box-shadow: 0 16px 38px -8px var(--cta-glow), inset 0 1px 0 rgba(255, 255, 255, .4); }
.btn svg { width: 20px; height: 20px; flex: none; }

.btn--pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(255, 138, 61, .34);
  border-radius: inherit;
  opacity: 0;
  transform: scale(.98);
  pointer-events: none;
  animation: ctaPulse 2.6s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { opacity: 0; transform: scale(.98); }
  45% { opacity: .65; transform: scale(1.035); }
}
.btn--brand {
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  color: var(--brand-ink); border-color: rgba(120, 240, 210, .45);
  box-shadow: 0 10px 26px -10px var(--brand-glow);
}
.btn--ghost { background: rgba(255, 255, 255, .03); border-color: var(--line); color: var(--title); }
.btn--ghost:hover { border-color: var(--brand); background: rgba(41, 211, 174, .08); }
.btn--lg { padding: 18px 34px; font-size: 1.1rem; border-radius: 14px; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-row.center { justify-content: center; }

.btn-note { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: .86rem; margin-top: 12px; }
.btn-note svg { width: 15px; height: 15px; color: var(--brand); flex: none; }


.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 600; letter-spacing: .01em;
  padding: 7px 14px; border-radius: 100px;
  background: rgba(41, 211, 174, .10); color: var(--brand);
  border: 1px solid rgba(41, 211, 174, .28);
}
.pill svg { width: 14px; height: 14px; }
.pill--violet { background: rgba(154, 139, 255, .12); color: var(--violet); border-color: rgba(154, 139, 255, .3); }
.pill--cta { background: rgba(255, 138, 61, .12); color: var(--cta); border-color: rgba(255, 138, 61, .3); }
.pill--red { background: rgba(255, 92, 92, .12); color: var(--red); border-color: rgba(255, 92, 92, .32); }
.pill--ghost { background: rgba(255, 255, 255, .04); color: var(--body); border-color: var(--line); }
.dot { position: relative; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid currentColor;
  border-radius: inherit;
  opacity: .2;
  pointer-events: none;
}
.dot.pulse::after { animation: pulse 2.2s infinite; }
@keyframes pulse {
  0%, 100% { opacity: .22; transform: scale(.72); }
  50% { opacity: 0; transform: scale(1.85); }
}


.site-header {
  position: sticky; top: 0; z-index: 80; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(11, 14, 22, .72);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(9, 12, 19, .9); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-title); }
.brand img { display: block; }
.brand-logo { height: 46px; width: auto; }
.site-footer .brand-logo { height: 50px; }
.app-card .brand img, .app-top .brand img { width: 22px; height: 22px; }
@media (max-width: 940px) { .brand-logo { height: 42px; } }
@media (max-width: 480px) { .brand-logo, .site-footer .brand-logo { height: 38px; } }
.brand .wm { font-size: 1.32rem; font-weight: 700; letter-spacing: -.02em; line-height: 1; }
.brand .wm .s { color: var(--brand); }
.brand .wm .b { color: var(--cta); }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a { color: var(--body); font-weight: 500; font-size: .96rem; padding: 9px 13px; border-radius: 9px; }
.nav a:hover { color: var(--title); background: rgba(255, 255, 255, .04); }
.nav a[aria-current="page"] { color: var(--title); }
.header-cta { display: flex; align-items: center; gap: 12px; }
@media (min-width: 941px) { .header-cta--empty { width: 230px; justify-content: flex-end; } }
.nav-toggle { display: none; background: transparent; border: 1px solid var(--line); border-radius: 10px; width: 44px; height: 44px; color: var(--title); align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 940px) {
  .nav, .header-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
}


.mobile-nav {
  position: fixed; inset: 0; z-index: 90; display: none;
  background: rgba(7, 10, 16, .96); backdrop-filter: blur(8px);
  padding:
    calc(84px + env(safe-area-inset-top))
    max(22px, env(safe-area-inset-right))
    calc(32px + env(safe-area-inset-bottom))
    max(22px, env(safe-area-inset-left));
  flex-direction: column; gap: 6px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open { display: flex; animation: fade .2s var(--ease); }
.mobile-nav a { color: var(--title); font-family: var(--font-title); font-weight: 600; font-size: 1.3rem; padding: 16px 8px; border-bottom: 1px solid var(--line-soft); }
.mobile-nav .btn { margin-top: 18px; }
.mobile-nav .close { position: fixed; top: max(16px, env(safe-area-inset-top)); right: max(18px, env(safe-area-inset-right)); width: 46px; height: 46px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; color: var(--title); display: inline-flex; align-items: center; justify-content: center; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }


.hero { position: relative; padding-top: clamp(40px, 7vw, 86px); padding-bottom: clamp(40px, 6vw, 70px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.hero .pill {
  position: relative;
  isolation: isolate;
  font-size: .9rem;
  padding: 8px 16px;
  box-shadow: 0 0 0 1px rgba(255, 138, 61, .14), 0 0 18px rgba(255, 138, 61, .18);
}
.hero .pill::after {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -1;
  border: 1px solid rgba(255, 138, 61, .28);
  border-radius: inherit;
  opacity: .26;
  transform: scale(.98);
  pointer-events: none;
  animation: heroPillGlow 2.8s ease-in-out infinite;
}
.hero h1 {
  margin: 18px 0 0;
  font-size: clamp(2.25rem, 4.1vw, 3.5rem);
  line-height: 1.08;
}
.hero .lead { margin-top: 22px; max-width: 34ch; }
.hero .btn-row { margin-top: 32px; }
.hero-points { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px 20px; }
.hero-points li { display: inline-flex; align-items: center; gap: 9px; color: var(--body); font-size: .95rem; }
.hero-points svg { width: 18px; height: 18px; color: var(--brand); flex: none; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero .lead { max-width: 56ch; }
}

@keyframes heroPillGlow {
  0%, 100% { opacity: .22; transform: scale(.98); }
  50% { opacity: .58; transform: scale(1.035); }
}


.hero-shot {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 10px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--surface-2), var(--bg-2));
  box-shadow: var(--shadow);
  color: var(--title);
  cursor: zoom-in;
  transform: rotate(.45deg);
}
.hero-shot::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(255, 138, 61, .62), transparent 40%, rgba(41, 211, 174, .72));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-shot img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 8px);
  border: 1px solid rgba(255, 255, 255, .08);
  background: var(--bg-2);
}
.hero-shot__top,
.hero-shot__caption {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(41, 211, 174, .35);
  background: rgba(9, 12, 19, .84);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-shot__top {
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .76rem;
  line-height: 1;
}
.hero-shot__top b {
  color: var(--cta);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.hero-shot__top span {
  color: var(--body);
  font-size: .72rem;
}
.hero-shot__caption {
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 460px;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 18px 42px -20px rgba(0, 0, 0, .9);
}
.hero-shot__caption b,
.hero-shot__caption span {
  display: block;
}
.hero-shot__caption b {
  font-family: var(--font-title);
  color: var(--title);
  font-size: clamp(1.18rem, 2.2vw, 1.55rem);
  line-height: 1.08;
  letter-spacing: -.02em;
}
.hero-shot__caption span {
  color: var(--body);
  font-size: .92rem;
  line-height: 1.42;
  margin-top: 7px;
}
.hero-shot:hover {
  color: var(--title);
  transform: rotate(0) translateY(-4px);
  box-shadow: 0 32px 80px -28px var(--cta-glow), var(--shadow);
}
@media (max-width: 880px) {
  .hero-shot { transform: none; max-width: 720px; }
}
@media (max-width: 560px) {
  .hero-shot { padding: 7px; border-radius: 16px; }
  .hero-shot img { border-radius: 11px; }
  .hero-shot__top {
    top: 14px;
    left: 14px;
    right: 14px;
    justify-content: space-between;
    padding: 8px 10px;
  }
  .hero-shot__caption {
    position: static;
    max-width: none;
    margin-top: 8px;
    border-radius: 12px;
    padding: 13px 14px;
  }
  .hero-shot__caption span { font-size: .88rem; }
}


.app-card {
  background: linear-gradient(160deg, var(--surface-2), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 22px; position: relative;
}
.app-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: linear-gradient(160deg, rgba(41, 211, 174, .5), transparent 40%, rgba(154, 139, 255, .35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.app-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.app-top .dots { display: flex; gap: 6px; }
.app-top .dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--surface-3); }
.app-tag { font-family: var(--font-mono); font-size: .7rem; color: var(--muted); letter-spacing: .1em; }
.score-ring { display: grid; place-items: center; margin: 6px auto 12px; width: 188px; height: 188px; position: relative; }
.score-ring svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.score-ring .track { fill: none; stroke: var(--surface-3); stroke-width: 12; }
.score-ring .bar { fill: none; stroke: url(#scoreGrad); stroke-width: 12; stroke-linecap: round; stroke-dasharray: 534; stroke-dashoffset: 534; transition: stroke-dashoffset 1.4s var(--ease); }
.score-val { position: absolute; text-align: center; }
.score-val b { font-family: var(--font-mono); font-size: 3.2rem; color: var(--title); font-weight: 700; line-height: 1; }
.score-val span { display: block; color: var(--muted); font-size: .72rem; margin-top: 4px; letter-spacing: .08em; text-transform: uppercase; max-width: 130px; line-height: 1.2; }
.app-rows { display: grid; gap: 9px; margin-top: 8px; }
.app-rows li { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: rgba(255, 255, 255, .025); border: 1px solid var(--line-soft); border-radius: 10px; padding: 11px 14px; font-size: .92rem; }
.app-rows .ok { color: var(--brand); display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-family: var(--font-mono); font-size: .82rem; }
.app-rows .ok svg { width: 16px; height: 16px; }
.app-cta { margin-top: 16px; }
.float-badge {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 100px;
  padding: 9px 15px; font-size: .82rem; font-weight: 600; color: var(--title);
  box-shadow: var(--shadow-soft);
}
.float-badge svg { width: 16px; height: 16px; }
.float-badge.fb-1 { top: 8px; right: -10px; color: var(--brand); animation: floaty 5s ease-in-out infinite; }
.float-badge.fb-2 { bottom: 18px; left: -14px; color: var(--violet); animation: floaty 6s ease-in-out infinite .5s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }


.trust-strip { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: rgba(255, 255, 255, .015); }
.fear-strip {
  position: relative;
  padding-block: clamp(34px, 5vw, 58px);
  border-block: 1px solid rgba(255, 92, 92, .18);
  background:
    radial-gradient(760px 220px at 50% 0%, rgba(255, 92, 92, .055), transparent 70%),
    linear-gradient(180deg, rgba(255, 92, 92, .045), rgba(255, 92, 92, .022));
}
.fear-strip .container { max-width: 1080px; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.trust-item { display: flex; gap: 14px; padding: 26px 24px; align-items: flex-start; }
.trust-item + .trust-item { border-left: 1px solid var(--line-soft); }
.trust-item .ic { flex: none; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: rgba(41, 211, 174, .1); color: var(--brand); border: 1px solid rgba(41, 211, 174, .25); }
.trust-item .ic svg { width: 22px; height: 22px; }
.trust-item :is(h3, h4) { color: var(--title); margin-bottom: 3px; }
.trust-item p { font-size: .9rem; color: var(--body); margin: 0; line-height: 1.58; }
.trust-item p + p { margin-top: 9px; }
.trust-item strong { color: var(--title); }
.trust-grid--fear {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 92, 92, .22);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .014)),
    rgba(14, 10, 16, .72);
  box-shadow: 0 24px 70px -42px rgba(255, 92, 92, .5);
}
.trust-grid--fear::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 92, 92, .045), transparent);
}
.trust-grid--fear .trust-item {
  position: relative;
  gap: 16px;
  padding: 24px 26px;
}
.trust-grid--fear .trust-item + .trust-item {
  border-left-color: rgba(255, 92, 92, .14);
}
.trust-grid--fear .trust-item .ic {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(255, 92, 92, .13);
  color: var(--red);
  border-color: rgba(255, 92, 92, .34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 10px 26px -18px rgba(255, 92, 92, .85);
}
.trust-grid--fear .trust-item .ic svg {
  width: 23px;
  height: 23px;
}
.trust-grid--fear .trust-item :is(h3, h4) {
  margin-bottom: 6px;
  font-size: 1.22rem;
  line-height: 1.2;
}
.trust-grid--fear .trust-item p {
  font-size: .98rem;
  line-height: 1.58;
}
.trust-grid--fear .trust-item strong {
  color: var(--title);
}
.trust-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .018));
}
.trust-panel .trust-item { padding: 30px 28px; }
.trust-panel .trust-item .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(41, 211, 174, .12);
  border-color: rgba(41, 211, 174, .34);
}
.trust-panel .trust-item h4 { margin-top: 1px; }
.trust-panel .trust-item p { font-size: .98rem; line-height: 1.55; }
@media (max-width: 760px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line-soft); }
  .fear-strip { padding-block: 32px; }
  .trust-grid--fear .trust-item { padding: 20px; }
  .trust-grid--fear .trust-item + .trust-item { border-top-color: rgba(255, 92, 92, .14); }
}


.meta-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 30px; color: var(--muted); font-size: .9rem; }
.meta-row .stars { color: var(--cta); letter-spacing: 2px; }
.meta-row b { color: var(--title); }


.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; position: relative; overflow: hidden;
  transition: transform .2s var(--ease), border-color .2s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(41, 211, 174, .4); box-shadow: var(--shadow-soft); }
.card .ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; background: rgba(41, 211, 174, .1); color: var(--brand); border: 1px solid rgba(41, 211, 174, .2); }
.card .ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .96rem; color: var(--body); margin: 0; }
.card p + p { margin-top: .7em; }
.feature-extra { margin: 22px auto 0; max-width: 680px; text-align: center; color: var(--title); font-family: var(--font-title); font-weight: 700; font-size: 1.05rem; }
.card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 600; font-size: .9rem; font-family: var(--font-title); }
.card .more svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.card:hover .more svg { transform: translateX(3px); }

.card.c-fps .ic { background: rgba(41, 211, 174, .1); color: var(--brand); border-color: rgba(41, 211, 174, .25); }
.card.c-aim .ic { background: rgba(154, 139, 255, .12); color: var(--violet); border-color: rgba(154, 139, 255, .25); }
.card.c-see .ic { background: rgba(122, 184, 255, .12); color: #7AB8FF; border-color: rgba(122, 184, 255, .25); }
.card.c-hear .ic { background: rgba(255, 211, 110, .12); color: #FFD36E; border-color: rgba(255, 211, 110, .25); }
.card.c-react .ic { background: rgba(255, 109, 140, .12); color: #FF6D8C; border-color: rgba(255, 109, 140, .25); }
.card.c-net .ic { background: rgba(41, 211, 174, .1); color: var(--brand); border-color: rgba(41, 211, 174, .25); }
.col-3 { grid-column: span 3; }
.col-2 { grid-column: span 2; }
.col-6 { grid-column: span 6; }
.card-feature { grid-column: span 3; }
.bento > * { min-width: 0; }
@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento > .col-3, .bento > .col-2, .bento > .card-feature { grid-column: span 1; }
  .bento > .col-6, .bento > .card-xl { grid-column: span 2; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .bento > .col-2, .bento > .col-3, .bento > .col-6, .bento > .card-feature, .bento > .card-xl { grid-column: span 1; }
}


.card-xl {
  grid-column: span 6;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: center;
  background: linear-gradient(120deg, rgba(41, 211, 174, .08), var(--surface) 55%);
  padding: clamp(24px, 4vw, 44px);
}
.card-xl .pic { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
@media (max-width: 800px) { .card-xl { grid-template-columns: 1fr; } }


.feature-flow {
  display: grid;
  gap: clamp(28px, 4vw, 52px);
  margin-top: 10px;
}
.feature-split {
  position: relative;
  display: grid;
  grid-template-columns: minmax(290px, .78fr) minmax(0, 1.22fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(620px 300px at 88% 50%, rgba(41, 211, 174, .075), transparent 72%),
    transparent;
  box-shadow: none;
}
.feature-split + .feature-split {
  padding-top: clamp(28px, 4vw, 46px);
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.feature-split--reverse {
  grid-template-columns: minmax(0, 1.22fr) minmax(290px, .78fr);
  background:
    radial-gradient(620px 300px at 12% 50%, rgba(154, 139, 255, .075), transparent 72%),
    transparent;
}
.feature-split--reverse .feature-copy { order: 2; }
.feature-split--reverse .feature-frame { order: 1; }
.feature-split--tech {
  background:
    radial-gradient(620px 300px at 12% 50%, rgba(255, 138, 61, .075), transparent 72%),
    transparent;
}
.feature-copy {
  max-width: 440px;
  padding: 4px 0;
}
.feature-split--reverse .feature-copy {
  justify-self: end;
}
.feature-copy h3 {
  max-width: 12ch;
  margin-bottom: 14px;
  font-size: 2.62rem;
  line-height: 1;
}
.feature-copy p {
  max-width: 37rem;
  color: var(--body);
  font-size: 1.03rem;
  line-height: 1.65;
  margin: 0;
}
.feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}
.feature-points li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(41, 211, 174, .22);
  background: rgba(41, 211, 174, .08);
  color: var(--title);
  font-size: .82rem;
  font-weight: 600;
}
.feature-split--tech .feature-points li {
  border-color: rgba(255, 138, 61, .24);
  background: rgba(255, 138, 61, .075);
}
.feature-frame {
  position: relative;
  overflow: hidden;
  padding: 9px;
  border: 1px solid transparent;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(11, 17, 29, .96), rgba(6, 10, 18, .92)) padding-box,
    linear-gradient(135deg, rgba(41, 211, 174, .44), rgba(154, 139, 255, .34) 42%, rgba(255, 138, 61, .18)) border-box;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, .42),
    0 0 34px rgba(41, 211, 174, .06);
  cursor: zoom-in;
}
.feature-frame::before {
  content: "";
  position: absolute;
  inset: 9px;
  z-index: 1;
  border-radius: 14px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}
.feature-frame picture { display: block; }
.feature-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  border: 0;
  filter: saturate(1.04) contrast(1.03);
}
.feature-frame .zoom-hint {
  z-index: 2;
  right: 16px;
  bottom: 16px;
}
.module-rank {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(41, 211, 174, .28);
  background: rgba(41, 211, 174, .09);
  color: var(--brand);
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.feature-split--tech .module-rank {
  border-color: rgba(255, 138, 61, .3);
  background: rgba(255, 138, 61, .1);
  color: var(--cta);
}
@media (max-width: 880px) {
  .feature-split,
  .feature-split--reverse {
    grid-template-columns: 1fr;
    gap: 20px;
    background:
      radial-gradient(520px 260px at 50% 100%, rgba(41, 211, 174, .055), transparent 72%),
      transparent;
  }
  .feature-split--reverse .feature-copy,
  .feature-split--reverse .feature-frame {
    order: initial;
  }
  .feature-split--reverse .feature-copy {
    justify-self: start;
  }
  .feature-copy h3 {
    max-width: 17ch;
    font-size: 2.22rem;
  }
}
@media (max-width: 560px) {
  .feature-split {
    padding: 0;
  }
  .feature-copy { padding: 0 2px; }
  .feature-copy h3 {
    max-width: 14ch;
    font-size: 1.86rem;
  }
  .feature-copy p { font-size: .98rem; }
  .feature-frame {
    padding: 6px;
    border-radius: 16px;
  }
  .feature-frame::before {
    inset: 6px;
    border-radius: 11px;
  }
  .feature-frame img {
    border-radius: 11px;
  }
  .feature-frame .zoom-hint { display: none; }
}


.boost-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(41, 211, 174, .08), rgba(154, 139, 255, .055) 54%, rgba(255, 138, 61, .04)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}
.boost-copy .pill { margin-bottom: 22px; }
.boost-copy h2 {
  font-size: 3rem;
  max-width: 680px;
  margin-bottom: 14px;
}
.boost-copy p {
  color: var(--body);
  font-size: 1.07rem;
  line-height: 1.68;
  margin: 0;
}
.boost-copy p + p { margin-top: 8px; }
.duel-benefits {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.duel-benefit {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: rgba(255, 255, 255, .025);
}
.duel-benefit .ic {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(41, 211, 174, .1);
  color: var(--brand);
  border: 1px solid rgba(41, 211, 174, .24);
}
.duel-benefit .ic svg {
  width: 24px;
  height: 24px;
}
.duel-benefit.c-aim .ic { background: rgba(154, 139, 255, .12); color: var(--violet); border-color: rgba(154, 139, 255, .28); }
.duel-benefit.c-see .ic { background: rgba(122, 184, 255, .12); color: #7AB8FF; border-color: rgba(122, 184, 255, .28); }
.duel-benefit.c-hear .ic { background: rgba(255, 211, 110, .12); color: #FFD36E; border-color: rgba(255, 211, 110, .28); }
.duel-benefit h3 {
  font-size: 1.12rem;
  margin-bottom: 4px;
}
.duel-benefit p {
  font-size: .95rem;
  line-height: 1.48;
}
.boost-note {
  margin-top: 18px !important;
  color: var(--title) !important;
  font-weight: 600;
}
.boost-checks {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.boost-checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--body);
  font-size: 1rem;
}
.boost-checks svg {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  flex: none;
  color: var(--brand);
}
.boost-score-card {
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 18px;
  padding: clamp(18px, 3vw, 34px);
  background: rgba(6, 10, 17, .72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 24px 60px -36px rgba(0, 0, 0, .9);
}
.boost-score-card .score-kicker {
  font-family: var(--font-mono);
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  margin-bottom: 10px;
}
.boost-score-card > h3 {
  margin-bottom: 8px;
}
.boost-score-card > p {
  margin: 0 0 18px;
  color: var(--body);
  font-size: .95rem;
  line-height: 1.55;
}
.boost-ba {
  max-width: none;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
}
.boost-ba .ba-card {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 22px 18px;
  background: rgba(19, 27, 42, .78);
}
.boost-ba .ba-card .big {
  display: block;
  font-size: 3.8rem;
  margin-top: 8px;
}
.boost-ba .ba-arrow {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.9rem;
}
@media (max-width: 900px) {
  .boost-panel { grid-template-columns: 1fr; }
  .boost-copy h2 { font-size: 2.55rem; }
}
@media (max-width: 620px) {
  .boost-panel { padding: 26px 20px; }
  .boost-copy h2 { font-size: 2.1rem; }
  .boost-copy p, .boost-checks li { font-size: .97rem; }
  .boost-ba { grid-template-columns: 1fr; }
  .boost-ba .ba-arrow { transform: rotate(90deg); justify-self: center; }
}


.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; position: relative; }
.step .n { font-family: var(--font-mono); font-weight: 700; font-size: .9rem; color: var(--brand-ink); background: var(--brand); width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 16px; }
.step h3 { margin-bottom: 8px; }
.step p { font-size: .95rem; margin: 0; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }


.ba { display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: center; max-width: 760px; margin-inline: auto; }
.ba-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; text-align: center; }
.ba-card.after { border-color: rgba(41, 211, 174, .45); box-shadow: 0 0 0 1px rgba(41, 211, 174, .15), var(--shadow-soft); }
.ba-card .lbl { text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; color: var(--muted); }
.ba-card .big { font-family: var(--font-mono); font-size: clamp(3rem, 8vw, 4.6rem); font-weight: 700; line-height: 1; margin: 8px 0 4px; }
.ba-card.before .big { color: var(--muted); }
.ba-card.after .big { color: var(--brand); }
.ba-arrow { color: var(--cta); font-size: 2rem; }
@media (max-width: 620px) { .ba { grid-template-columns: 1fr; } .ba-arrow { transform: rotate(90deg); } }


.compare { overflow-x: auto; overflow-y: hidden; overscroll-behavior-inline: contain; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.compare table { width: 100%; min-width: 600px; border-collapse: collapse; }
.compare:focus-visible { outline: 3px solid rgba(41, 211, 174, .75); outline-offset: 4px; }
.compare th, .compare td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line-soft); font-size: .97rem; vertical-align: middle; }
.compare thead th { font-family: var(--font-title); color: var(--title); font-size: 1rem; background: rgba(255, 255, 255, .02); }
.compare thead th.us { color: var(--brand); }
.compare thead th.them { color: var(--red); }
.compare td:first-child { color: var(--body); }
.compare tr:last-child td { border-bottom: 0; }
.compare .yes { color: var(--brand); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.compare .no { color: var(--red); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.compare svg { width: 18px; height: 18px; flex: none; }
.compare .col-us { background: rgba(41, 211, 174, .04); }
@media (max-width: 640px) {
  .compare[tabindex]::before { content: "Balaye horizontalement →"; position: sticky; left: 0; z-index: 1; display: block; width: max-content; padding: 8px 12px; color: var(--brand); background: var(--surface); border-bottom: 1px solid var(--line-soft); font-family: var(--font-mono); font-size: .72rem; font-weight: 800; letter-spacing: .05em; }
  .compare th, .compare td { padding: 12px 12px; font-size: .86rem; }
}


.price-wrap { display: grid; grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
.price-card {
  background: linear-gradient(170deg, var(--surface-2), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px);
  position: relative; box-shadow: var(--shadow);
}
.price-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1.5px;
  background: linear-gradient(160deg, var(--cta), transparent 35%, var(--brand));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: .8;
}
.price-flag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); }
.price-card h3 { font-size: 1.4rem; }
.price-amount { display: flex; align-items: baseline; gap: 12px; margin: 16px 0 6px; }
.price-amount .now { font-family: var(--font-mono); font-size: clamp(3rem, 9vw, 4.2rem); font-weight: 700; color: var(--title); line-height: 1; }
.price-amount .cur { font-family: var(--font-mono); font-size: 1.6rem; color: var(--title); }
.price-amount .was { font-family: var(--font-mono); font-size: 1.4rem; color: var(--muted); text-decoration: line-through; text-decoration-color: var(--red); }
.price-once { color: var(--brand); font-weight: 600; font-size: .95rem; }
.price-list { display: grid; gap: 12px; margin: 24px 0; }
.price-list li { display: flex; gap: 11px; align-items: flex-start; font-size: .98rem; color: var(--body); }
.price-list svg { width: 20px; height: 20px; color: var(--brand); flex: none; margin-top: 2px; }
.price-list li b { color: var(--title); }
.guarantee { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding: 14px 16px; border: 1px dashed rgba(41, 211, 174, .4); border-radius: 12px; background: rgba(41, 211, 174, .05); }
.guarantee svg { width: 30px; height: 30px; color: var(--brand); flex: none; }
.guarantee p { font-size: .88rem; margin: 0; color: var(--body); }
.guarantee b { color: var(--title); }


.value-stack { display: grid; gap: 8px; margin: 18px 0; }
.value-stack li { display: flex; justify-content: space-between; gap: 12px; font-size: .92rem; color: var(--body); padding-bottom: 8px; border-bottom: 1px dashed var(--line-soft); }
.value-stack li span:last-child { font-family: var(--font-mono); color: var(--muted); white-space: nowrap; }
.value-stack .total { border-bottom: 0; color: var(--title); font-weight: 700; padding-top: 4px; }
.value-stack .total span:last-child { color: var(--cta); }


.pricing { display: grid; grid-template-columns: 0.92fr 1.5fr 0.92fr; gap: 22px; align-items: start; max-width: 1160px; margin: 22px auto 0; }
.tier { position: relative; overflow: visible; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; }
.tier--pop { background: linear-gradient(180deg, var(--surface-2), var(--bg-2)); border-color: rgba(255, 138, 61, .65); box-shadow: 0 40px 90px -34px var(--cta-glow), var(--shadow); transform: translateY(-16px); transform-origin: center top; z-index: 2; padding: 46px 36px 28px; }
.tier--pop::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 2px; background: linear-gradient(160deg, var(--cta), transparent 42%, var(--brand)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.tier--pop h3 { font-size: calc(1.95rem + 2px); }
.tier-flag { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); white-space: nowrap; z-index: 4; background: linear-gradient(180deg, var(--cta), var(--cta-2)); color: #1c0d02; border-color: rgba(255, 190, 140, .75); box-shadow: 0 8px 20px -8px var(--cta-glow); }
.tier h3 { font-size: 1.3rem; }
.tier.tier--pop h3 { font-size: 1.82rem; }
.tier .who { color: var(--muted); font-size: .88rem; margin: 6px 0 0; min-height: 40px; }
.tier--pop .who { color: var(--body); font-size: 1.05rem; line-height: 1.5; }
.tier .amt { display: flex; align-items: baseline; gap: 8px; margin: 16px 0 2px; flex-wrap: wrap; }
.tier .amt .now { font-family: var(--font-mono); font-size: 2.7rem; font-weight: 700; color: var(--title); line-height: 1; }
.tier--pop .amt .now { font-size: calc(4.05rem - 15px); }
.tier .amt .cur { font-family: var(--font-mono); font-size: 1.2rem; color: var(--title); }
.tier .amt .was { font-family: var(--font-mono); font-size: 1rem; color: var(--muted); text-decoration: line-through; text-decoration-color: var(--red); }
.tier .amt .per { font-family: var(--font-mono); font-size: 1rem; color: var(--muted); align-self: flex-end; margin-bottom: 6px; }
.tier .once { color: var(--brand); font-size: .85rem; font-weight: 600; margin: 0; }
.tier .note { font-size: .82rem; color: var(--muted); margin: 6px 0 0; }
.tier--pop .note { color: var(--cta); font-weight: 600; }


.pay-trust { max-width: 1060px; margin: 44px auto 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 22px; text-align: center; }
.pay-trust .secure { display: inline-flex; align-items: center; gap: 8px; color: var(--body); font-size: .9rem; font-weight: 500; }
.pay-trust .secure svg { width: 18px; height: 18px; color: var(--brand); flex: none; }
.pay-cards { display: inline-flex; gap: 8px; align-items: center; }
.card-badge { height: 30px; min-width: 46px; padding: 0 9px; border-radius: 6px; background: #fff; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-title); font-weight: 800; font-size: .72rem; border: 1px solid rgba(255, 255, 255, .14); }
.cb-visa { color: #1434CB; font-style: italic; letter-spacing: .02em; }
.cb-amex { background: #1F72CD; color: #fff; }
.cb-stripe { background: #635BFF; color: #fff; text-transform: lowercase; }
.pay-note { flex-basis: 100%; color: var(--muted); font-size: .82rem; margin-top: 2px; }
.tier .pay-note { text-align: center; margin: 10px 0 0; }
.offer-anchor { max-width: 720px; margin: 0 auto 50px; text-align: center; background: rgba(255, 138, 61, .08); border: 1px solid rgba(255, 138, 61, .3); border-radius: 14px; padding: 14px 20px; color: var(--body); font-size: .98rem; }
.offer-anchor b { color: var(--cta); }
.tier ul { display: grid; gap: 11px; margin: 22px 0 26px; }
.tier li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--body); }
.tier li svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--brand); }
.tier li b { color: var(--title); }
.tier li.off { color: var(--muted); }
.tier li.off svg { color: var(--muted); }
.tier .btn { margin-top: auto; }
.pricing-foot { max-width: 1060px; margin: 26px auto 0; }
@media (max-width: 860px) {
  .pricing { grid-template-columns: 1fr; max-width: 460px; }
  .tier--pop { transform: none; order: -1; }
}


.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.quote .stars { color: var(--cta); letter-spacing: 2px; font-size: .95rem; }
.quote p { font-size: .98rem; color: var(--title); margin: 0; line-height: 1.6; }
.quote .who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.quote .av { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; flex: none; padding: 2px; overflow: hidden; font-family: var(--font-title); font-weight: 700; color: var(--brand-ink); background: linear-gradient(140deg, var(--brand), var(--cta)); box-shadow: 0 12px 26px -14px var(--brand-glow), 0 0 0 1px rgba(255,255,255,.08); font-size: .95rem; }
.quote .av picture { width: 100%; height: 100%; display: block; }
.quote .av img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 2px solid var(--surface); background: var(--bg-2); }
.quote .who b { color: var(--title); display: block; font-size: .92rem; }
.quote .who span { color: var(--muted); font-size: .82rem; }
@media (max-width: 880px) { .quotes { grid-template-columns: 1fr; } }

.home-guide-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; max-width: 980px; margin-inline: auto; }
.home-guide-card { position: relative; min-height: 100%; background: linear-gradient(155deg, rgba(24, 33, 47, .98), rgba(12, 16, 25, .98)); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-soft); overflow: hidden; transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease); }
.home-guide-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 2px; background: linear-gradient(90deg, rgba(41, 211, 174, .9), rgba(154, 139, 255, .35), transparent); opacity: .8; }
.home-guide-card .guide-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: rgba(41, 211, 174, .1); border: 1px solid rgba(41, 211, 174, .26); color: var(--brand); font-family: var(--font-title); font-weight: 800; font-size: .82rem; margin-bottom: 18px; }
.home-guide-card .guide-chip { display: inline-flex; align-items: center; width: fit-content; margin-bottom: 10px; color: var(--brand); font-family: var(--font-mono); font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.home-guide-card h3 { font-size: clamp(1.35rem, 2.4vw, 1.72rem); margin-bottom: 12px; letter-spacing: 0; }
.home-guide-card h3 a { color: inherit; text-decoration: none; }
.home-guide-card p { color: var(--body); font-size: 1rem; line-height: 1.62; margin: 0; max-width: 52ch; }
.home-guide-card .guide-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 20px; font-family: var(--font-title); font-weight: 700; color: var(--title); }
.home-guide-card .guide-link svg { width: 17px; height: 17px; color: var(--brand); transition: transform .2s var(--ease); }
.home-guide-card:hover { border-color: rgba(41, 211, 174, .42); transform: translateY(-3px); box-shadow: 0 18px 46px -24px rgba(41, 211, 174, .38), var(--shadow-soft); }
.home-guide-card:hover .guide-link svg { transform: translateX(3px); }
@media (max-width: 760px) {
  .home-guide-grid { grid-template-columns: 1fr; }
  .home-guide-card { padding: 22px; }
}

.home-v2 .home-hero { padding-bottom: clamp(46px, 7vw, 82px); }
.home-v2 a:not(.btn):focus-visible { outline: 3px solid rgba(41, 211, 174, .75); outline-offset: 4px; border-radius: 6px; }
.home-hero .hero-grid { grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr); gap: clamp(30px, 4vw, 58px); }
.home-hero h1 { max-width: 18ch; margin-top: 0; font-size: clamp(2rem, 3.2vw, 3rem); text-wrap: balance; }
.home-hero .lead { max-width: 48ch; }
.home-product-shot,
.home-product-shot:hover { margin: 0; padding: 8px; cursor: default; transform: none; box-shadow: var(--shadow); }
.home-product-shot picture { display: block; }
.home-product-shot img { width: 100%; aspect-ratio: 1100 / 689; object-fit: cover; object-position: top left; }
.home-product-shot figcaption { padding: 10px 8px 3px; color: var(--muted); font-size: .76rem; line-height: 1.45; }

.home-support-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.home-support-card { --support: var(--brand); position: relative; display: flex; flex-direction: column; min-width: 0; min-height: 100%; padding: clamp(22px, 3vw, 30px); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(155deg, rgba(24, 33, 47, .98), rgba(12, 16, 25, .98)); box-shadow: var(--shadow-soft); }
.home-support-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 2px; background: linear-gradient(90deg, var(--support), transparent 72%); }
.home-support-card--console { --support: var(--violet); }
.home-support-card--mobile { --support: #7AB8FF; }
.home-support-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 20px; }
.home-support-mark { display: grid; place-items: center; width: 52px; height: 52px; flex: none; border: 1px solid rgba(41, 211, 174, .3); border-color: color-mix(in srgb, var(--support) 34%, transparent); border-radius: 14px; background: rgba(41, 211, 174, .09); background: color-mix(in srgb, var(--support) 11%, transparent); color: var(--support); }
.home-support-mark svg { width: 27px; height: 27px; }
.home-support-kicker { color: var(--support); font-family: var(--font-mono); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-align: right; text-transform: uppercase; }
.home-support-card h3 { margin-bottom: 10px; }
.home-support-card p { flex: 1; color: var(--body); font-size: .96rem; line-height: 1.62; }
.home-support-card .more { display: inline-flex; align-items: center; width: fit-content; min-height: 44px; margin-top: 18px; color: var(--title); font-family: var(--font-title); font-size: .9rem; font-weight: 700; }
.home-support-card .more span { margin-left: 7px; color: var(--support); }

.home-definition { border-block: 1px solid var(--line-soft); background: radial-gradient(720px 420px at 6% 20%, rgba(41, 211, 174, .08), transparent 70%), rgba(255, 255, 255, .012); }
.home-definition-grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: clamp(30px, 5vw, 68px); align-items: center; }
.home-definition-copy h2 { margin-top: 12px; text-wrap: balance; }
.home-definition-copy p { margin-top: 18px; color: var(--body); }
.home-text-link { display: inline-flex; align-items: center; min-height: 44px; margin-top: 18px; color: var(--title); font-family: var(--font-title); font-size: .92rem; font-weight: 700; }
.home-text-link span { margin-left: 8px; color: var(--brand); }
.home-content-visual { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #0F1521; box-shadow: var(--shadow-soft); }
.home-content-visual img { display: block; width: 100%; height: auto; }
.home-content-visual--control { width: min(100%, 900px); margin: 28px auto 22px; }
.home-boundary-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.home-boundary-card { min-width: 0; padding: clamp(21px, 3vw, 28px); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(9, 12, 19, .76); }
.home-boundary-card--yes { border-color: rgba(41, 211, 174, .28); }
.home-boundary-card--no { border-color: rgba(255, 92, 92, .24); }
.home-boundary-label { display: block; margin-bottom: 14px; font-family: var(--font-mono); font-size: .7rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.home-boundary-card--yes .home-boundary-label { color: var(--brand); }
.home-boundary-card--no .home-boundary-label { color: #FF8585; }
.home-boundary-card h3 { margin-bottom: 16px; font-size: 1.2rem; }
.home-boundary-card ul { display: grid; gap: 11px; }
.home-boundary-card li { position: relative; padding-left: 22px; color: var(--body); font-size: .91rem; line-height: 1.52; }
.home-boundary-card li::before { position: absolute; top: 0; left: 0; font-family: var(--font-mono); font-weight: 800; }
.home-boundary-card--yes li::before { content: "✓"; color: var(--brand); }
.home-boundary-card--no li::before { content: "×"; color: #FF8585; }

.home-method-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; max-width: 1020px; margin-inline: auto; padding: 0; list-style: none; }
.home-method-card { min-width: 0; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.home-method-number { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 18px; border: 1px solid rgba(41, 211, 174, .3); border-radius: 11px; background: rgba(41, 211, 174, .09); color: var(--brand); font-family: var(--font-mono); font-weight: 800; }
.home-method-card h3 { margin-bottom: 8px; }
.home-method-card p { color: var(--body); font-size: .94rem; line-height: 1.58; }
.home-method-note { max-width: 820px; margin: 20px auto 0; padding: 13px 16px; border-left: 2px solid var(--brand); background: rgba(41, 211, 174, .045); color: var(--muted); font-size: .82rem; line-height: 1.55; }

.home-route-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.home-route-card { position: relative; display: flex; flex-direction: column; min-width: 0; min-height: 100%; padding: clamp(22px, 3vw, 28px); border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(155deg, rgba(24, 33, 47, .92), rgba(12, 16, 25, .96)); color: var(--body); transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease); }
.home-route-card:hover { transform: translateY(-3px); border-color: rgba(41, 211, 174, .42); box-shadow: var(--shadow-soft); }
.home-route-card:focus-visible { outline: 3px solid rgba(41, 211, 174, .75); outline-offset: 4px; }
.home-route-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 22px; }
.home-route-icon { display: grid; place-items: center; width: 48px; height: 48px; flex: none; border: 1px solid rgba(41, 211, 174, .3); border-radius: 13px; background: rgba(41, 211, 174, .08); color: var(--brand); }
.home-route-icon svg { width: 25px; height: 25px; }
.home-route-index { color: var(--brand); font-family: var(--font-mono); font-size: .75rem; font-weight: 800; letter-spacing: .08em; }
.home-route-card h3 { margin-bottom: 10px; color: var(--title); }
.home-route-card p { flex: 1; font-size: .94rem; line-height: 1.58; }
.home-route-link { display: inline-flex; align-items: center; min-height: 44px; margin-top: 16px; color: var(--title); font-family: var(--font-title); font-size: .9rem; font-weight: 700; }
.home-route-link span { margin-left: 7px; color: var(--brand); }

.home-trust-shell { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 18px; align-items: stretch; padding: clamp(24px, 4vw, 38px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: radial-gradient(520px 260px at 0% 0%, rgba(41, 211, 174, .09), transparent 72%), var(--surface); box-shadow: var(--shadow-soft); }
.home-trust-copy,
.home-trust-position { min-width: 0; }
.home-trust-copy h2 { margin-top: 10px; text-wrap: balance; }
.home-trust-copy p { margin-top: 16px; color: var(--body); }
.home-trust-links { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 18px; }
.home-trust-links a { display: inline-flex; align-items: center; min-height: 44px; color: var(--body); font-size: .88rem; font-weight: 600; text-decoration: underline; text-decoration-color: rgba(41, 211, 174, .34); text-underline-offset: 3px; }
.home-trust-links a:hover { color: var(--brand); text-decoration-color: currentColor; }
.home-trust-position { display: flex; flex-direction: column; justify-content: center; padding: 22px; border: 1px solid rgba(41, 211, 174, .25); border-radius: var(--radius); background: rgba(9, 12, 19, .72); }
.home-trust-position-label { margin-bottom: 12px; color: var(--brand); font-family: var(--font-mono); font-size: .7rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.home-trust-position p { color: var(--body); font-size: .94rem; line-height: 1.62; }
.home-qa-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 18px; }
.home-qa-card { min-width: 0; padding: 22px; border: 1px solid var(--line-soft); border-radius: 14px; background: rgba(255, 255, 255, .018); }
.home-qa-card h3 { margin-bottom: 9px; font-size: 1.03rem; letter-spacing: 0; }
.home-qa-card p { color: var(--muted); font-size: .88rem; line-height: 1.58; }

@media (max-width: 980px) {
  .home-hero .hero-grid { grid-template-columns: 1fr; }
  .home-product-shot { width: min(100%, 760px); margin-inline: auto; }
  .home-definition-grid { grid-template-columns: 1fr; }
  .home-trust-shell { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .home-support-grid,
  .home-method-grid,
  .home-route-grid,
  .home-qa-grid { grid-template-columns: 1fr; }
  .home-support-card,
  .home-method-card,
  .home-route-card { padding: 22px; }
}
@media (max-width: 640px) {
  .home-hero h1 { font-size: clamp(1.9rem, 9vw, 2.5rem); }
  .home-boundary-grid { grid-template-columns: 1fr; }
  .home-product-shot { padding: 5px; }
  .home-product-shot figcaption { padding-inline: 6px; }
  .home-content-visual { border-radius: 14px; }
  .home-trust-shell { padding: 22px; }
}

.glossary-hub-hero { padding-bottom: clamp(22px, 4vw, 42px); }
.glossary-hub-hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr); gap: clamp(24px, 5vw, 68px); align-items: center; }
.glossary-hub .section-head { margin-bottom: 28px; }
.glossary-risk-cta { margin-top: 12px; }
.glossary-fast-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.glossary-fast-links a { display: inline-flex; align-items: center; min-height: 42px; padding: 10px 15px; border: 1px solid rgba(41, 211, 174, .28); border-radius: 999px; background: rgba(41, 211, 174, .07); color: var(--title); font-family: var(--font-title); font-weight: 800; text-decoration: none; }
.glossary-hero-visual { width: min(100%, 520px); margin: 0; justify-self: end; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.glossary-hero-visual img { display: block; width: 100%; height: auto; }
.glossary-feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.glossary-feature-card { position: relative; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3.2vw, 34px); background: linear-gradient(155deg, rgba(24, 33, 47, .98), rgba(12, 16, 25, .98)); box-shadow: var(--shadow-soft); overflow: hidden; }
.glossary-feature-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, rgba(255, 92, 92, .9), rgba(41, 211, 174, .7), transparent); }
.glossary-feature-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 20px; }
.glossary-feature-card .guide-icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 15px; background: rgba(41, 211, 174, .1); border: 1px solid rgba(41, 211, 174, .26); color: var(--brand); font-family: var(--font-title); font-weight: 900; }
.glossary-feature-card .guide-chip { color: var(--brand); font-family: var(--font-mono); font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.glossary-feature-card .guide-chip.danger { color: #ff7a7a; }
.glossary-feature-card h3 { font-size: clamp(1.45rem, 2.6vw, 2rem); margin-bottom: 12px; }
.glossary-feature-card h3 a { color: inherit; text-decoration: none; }
.glossary-feature-card p { color: var(--body); line-height: 1.62; max-width: 58ch; }
.glossary-feature-card ul { display: grid; gap: 8px; margin: 18px 0 0; color: var(--body); }
.glossary-feature-card li { position: relative; padding-left: 22px; }
.glossary-feature-card li::before { content: ""; position: absolute; left: 0; top: .68em; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(41, 211, 174, .12); }
.glossary-feature-card .guide-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; color: var(--brand); font-family: var(--font-title); font-weight: 800; text-decoration: none; }
.glossary-feature-card .guide-link svg { width: 17px; height: 17px; flex: 0 0 17px; color: currentColor; transition: transform .2s var(--ease); }
.glossary-feature-card .guide-link:hover svg { transform: translateX(3px); }
.glossary-term-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.glossary-term { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: rgba(255,255,255,.025); }
.glossary-term span { display: block; margin-bottom: 10px; color: var(--brand); font-family: var(--font-mono); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.glossary-term h3 { font-size: 1.35rem; margin-bottom: 8px; }
.glossary-term h3 a { color: inherit; text-decoration: none; }
.glossary-term p { color: var(--body); line-height: 1.55; margin: 0; }
.glossary-clean-box { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(22px, 4vw, 48px); align-items: start; border: 1px solid rgba(41, 211, 174, .22); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); background: radial-gradient(520px 240px at 0% 0%, rgba(41, 211, 174, .11), transparent 70%), rgba(255,255,255,.02); }
.glossary-clean-box h2 { margin-top: 10px; }
.glossary-clean-box h2 + p { margin-top: 12px; }
.glossary-clean-list { display: grid; gap: 12px; }
.glossary-clean-list p { margin: 0; color: var(--body); line-height: 1.6; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.glossary-clean-list p:last-child { border-bottom: 0; }
.glossary-clean-list strong { color: var(--title); }
.glossary-control-head h2 { max-width: 760px; margin: 10px auto 0; }
.glossary-control-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; max-width: 1000px; margin: 28px auto 0; }
.glossary-control-card { --rule-color: var(--brand); display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: 18px; align-items: center; min-width: 0; padding: clamp(20px, 3vw, 28px); border: 1px solid color-mix(in srgb, var(--rule-color) 36%, transparent); border-radius: var(--radius); background: linear-gradient(145deg, color-mix(in srgb, var(--rule-color) 10%, transparent), rgba(12, 16, 25, .94)); box-shadow: var(--shadow-soft); }
.glossary-control-card--danger { --rule-color: #FF737D; }
.glossary-control-icon { display: grid; place-items: center; width: 58px; height: 58px; border: 1px solid color-mix(in srgb, var(--rule-color) 48%, transparent); border-radius: 50%; background: color-mix(in srgb, var(--rule-color) 11%, transparent); color: var(--rule-color); }
.glossary-control-icon svg { width: 28px; height: 28px; }
.glossary-control-label { display: block; margin-bottom: 7px; color: var(--rule-color); font-family: var(--font-mono); font-size: .72rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.glossary-control-card h3 { margin: 0; font-size: clamp(1.15rem, 2vw, 1.4rem); }
.glossary-control-card p { margin: 8px 0 0; color: var(--body); line-height: 1.55; }
@media (max-width: 880px) {
  .glossary-hub-hero-grid, .glossary-feature-grid, .glossary-clean-box { grid-template-columns: 1fr; }
  .glossary-hero-visual { justify-self: center; }
  .glossary-term-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .glossary-control-options { grid-template-columns: 1fr; }
}
@media (min-width: 881px) and (max-width: 1040px) {
  .glossary-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 580px) {
  .glossary-fast-links a { flex: 1 1 calc(50% - 8px); justify-content: center; }
  .glossary-feature-top { align-items: flex-start; flex-direction: column; }
  .glossary-term-grid { grid-template-columns: 1fr; }
}


.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color .2s; }
.faq details[open] { border-color: rgba(41, 211, 174, .4); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 22px; display: flex; justify-content: space-between; gap: 16px; align-items: center; font-family: var(--font-title); font-weight: 600; color: var(--title); font-size: 1.06rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex: none; width: 22px; height: 22px; color: var(--brand); transition: transform .25s var(--ease); }
.faq details[open] summary .chev { transform: rotate(45deg); }
.faq .ans { padding: 0 22px 20px; color: var(--body); font-size: .98rem; }
.faq .ans p { margin-bottom: 10px; }
.faq .ans p:last-child { margin-bottom: 0; }


.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 70px) clamp(24px, 5vw, 60px); text-align: center;
  background: radial-gradient(700px 320px at 50% -20%, rgba(41, 211, 174, .18), transparent 70%), linear-gradient(180deg, var(--surface-2), var(--bg-2));
  border: 1px solid var(--line); }
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { margin: 0 auto 28px; color: var(--body); }
.cta-band--left { text-align: left; padding: clamp(28px, 4vw, 44px) clamp(22px, 4vw, 44px);
  background: radial-gradient(520px 260px at 12% 0%, rgba(41, 211, 174, .14), transparent 68%), linear-gradient(180deg, var(--surface-2), var(--bg-2)); }
.cta-band--left p { margin-left: 0; margin-right: 0; max-width: 720px; }
.cta-band--left .btn-row { justify-content: flex-start; }


.prose { max-width: 760px; }
.guide-body-section { padding-top: clamp(20px, 3vw, 34px); }
.guide-body-section .callout:first-child { margin-top: 0; }
.prose h2 { margin-top: 48px; margin-bottom: 14px; }
.prose h3 { margin-top: 32px; margin-bottom: 10px; }
.prose p { margin-bottom: 16px; }
.prose ul.bullets { margin: 0 0 18px; display: grid; gap: 10px; }
.prose ul.bullets li { position: relative; padding-left: 30px; color: var(--body); }
.prose ul.bullets li::before { content: ""; position: absolute; left: 6px; top: 9px; width: 9px; height: 9px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(41, 211, 174, .14); }
.prose ol { margin: 0 0 18px 20px; color: var(--body); display: grid; gap: 10px; }
.prose a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(41, 211, 174, .45); }
.callout { background: rgba(41, 211, 174, .06); border: 1px solid rgba(41, 211, 174, .3); border-left: 3px solid var(--brand); border-radius: 12px; padding: 18px 20px; margin: 24px 0; }
.callout.warn { background: rgba(255, 92, 92, .06); border-color: rgba(255, 92, 92, .3); border-left-color: var(--red); }
.callout p { margin: 0; }
.callout strong { color: var(--title); }
.guide-visual {
  margin: 28px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--surface-2), var(--bg-2));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.guide-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--bg-2);
}
.guide-visual figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-size: .9rem;
  border-top: 1px solid var(--line-soft);
}
.guide-action {
  margin: 26px 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .025);
}
.guide-action h3 { margin-top: 0; }
.compact-heading { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.guide-action .compact-heading { margin-top: 0; }
.guide-action ul { margin-bottom: 0; }
.guide-action--cta { margin: clamp(26px, 4vw, 42px) 0; padding: clamp(20px, 3vw, 28px); background: radial-gradient(420px 180px at 0% 0%, rgba(41, 211, 174, .12), transparent 70%), rgba(255, 255, 255, .025); }
.guide-action--cta p { max-width: 660px; }
.guide-action--cta .btn-row { margin-top: 18px; }
.guide-action--danger { background: radial-gradient(420px 180px at 0% 0%, rgba(255, 92, 92, .12), transparent 70%), rgba(255, 255, 255, .025); border-color: rgba(255, 92, 92, .28); }
.glossary-article .section-head { margin-bottom: 0; }
.glossary-article-hero { padding-block: clamp(34px, 5vw, 70px) clamp(22px, 4vw, 44px); }
.glossary-hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr); gap: clamp(24px, 5vw, 68px); align-items: center; }
.glossary-hero-grid .lead { max-width: 56ch; }
.glossary-hero-grid .btn-row { margin-top: clamp(20px, 3vw, 28px); }
.glossary-hero-visual { margin: 0; border: 1px solid rgba(41, 211, 174, .35); border-radius: var(--radius-lg); background: linear-gradient(160deg, var(--surface-2), var(--bg-2)); box-shadow: 0 22px 70px -42px rgba(41, 211, 174, .7), var(--shadow-soft); overflow: hidden; }
.glossary-hero-visual img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: contain; background: #070A12; }
.glossary-hero-visual figcaption { padding: 12px 16px; color: var(--body); font-size: .9rem; border-top: 1px solid var(--line-soft); }
.glossary-after-hero { padding-top: clamp(18px, 3vw, 32px); }
.glossary-prose { max-width: 860px; }
.glossary-prose h2 { margin-top: clamp(42px, 6vw, 68px); margin-bottom: 16px; }
.glossary-prose h2::before { content: ""; display: block; width: 52px; height: 3px; border-radius: 999px; margin-bottom: 14px; background: linear-gradient(90deg, var(--brand), var(--accent)); box-shadow: 0 0 22px rgba(41, 211, 174, .24); }
.glossary-prose h2:first-of-type { margin-top: 34px; }
.prose .cta-band h2,
.glossary-prose .cta-band h2 { margin-top: 0; }
.glossary-prose .cta-band h2::before { content: none; display: none; }
.glossary-prose .guide-visual { margin: clamp(28px, 5vw, 48px) 0; }
.glossary-prose .compare { margin: 24px 0 34px; }
.guide-visual--svg img { object-fit: contain; }
@media (max-width: 640px) {
  .guide-visual { border-radius: 14px; margin: 22px 0; }
  .guide-visual figcaption { font-size: .84rem; padding: 10px 12px; }
  .guide-action { padding: 16px; }
}
@media (max-width: 880px) {
  .glossary-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .glossary-article-hero { padding-block: 30px 22px; }
}
@media (max-width: 640px) {
  .glossary-prose h2 { margin-top: 38px; }
  .glossary-prose h2::before { margin-bottom: 12px; }
  .glossary-hero-visual figcaption { font-size: .84rem; padding: 10px 12px; }
}
.toc { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px; margin-bottom: 36px; }
.toc b { color: var(--title); font-family: var(--font-title); display: block; margin-bottom: 10px; }
.toc summary { color: var(--title); font-family: var(--font-title); font-weight: 700; display: flex; align-items: center; justify-content: space-between; gap: 14px; cursor: pointer; list-style: none; margin: -2px 0 10px; }
.toc summary::-webkit-details-marker { display: none; }
.toc summary::after { content: ""; width: 9px; height: 9px; border-right: 2px solid var(--brand); border-bottom: 2px solid var(--brand); transform: rotate(45deg); transition: transform .18s var(--ease); flex: 0 0 auto; }
.toc summary:focus-visible { outline: 2px solid rgba(41, 211, 174, .7); outline-offset: 4px; border-radius: 8px; }
.toc[open] summary::after { transform: rotate(225deg); }
.toc:not([open]) summary { margin-bottom: 0; }
.toc ol { margin: 0 0 0 18px; display: grid; gap: 7px; }
.page-toc-wrap { padding-top: clamp(20px, 3vw, 32px); }
.page-toc-wrap .toc { margin-bottom: 0; }
.back-to-toc { margin-top: 24px; font-size: .86rem; }
.back-to-toc a { display: inline-flex; align-items: center; min-height: 28px; color: var(--muted); }
.back-to-toc a:hover { color: var(--brand); }
.article-byline { margin: 34px 0 18px; padding-top: 16px; border-top: 1px solid var(--line-soft); color: var(--muted); font-size: .86rem; }
@media (max-width: 820px) {
  .toc { padding: 16px 18px; margin-bottom: 28px; }
}


.crumb { font-size: .85rem; color: var(--muted); display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.crumb a { color: var(--body); }
.crumb span { color: var(--muted); }

main p a:not(.btn) { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .18em; }
main p a:not(.btn):hover { text-decoration-thickness: 2px; }


.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; text-align: center; }
.stat b { font-family: var(--font-mono); font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--brand); display: block; line-height: 1; }
.stat span { color: var(--body); font-size: .9rem; margin-top: 8px; display: block; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }


.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding-block: 56px 24px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
.footer-grid .brand { margin-bottom: 14px; }
.footer-about p { font-size: .92rem; color: var(--body); max-width: 34ch; text-wrap: pretty; }
.footer-col h4,
.footer-heading { color: var(--title); font-size: .92rem; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .08em; font-family: var(--font-body); font-weight: 700; }
.footer-col a { display: block; color: var(--body); font-size: .94rem; padding: 5px 0; }
.footer-col a:hover { color: var(--brand); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; margin-top: 40px; padding-top: 18px; border-top: 1px solid var(--line-soft); color: var(--muted); font-size: .78rem; letter-spacing: .01em; }
.footer-bottom .legal-mini { display: flex; gap: 8px 18px; flex-wrap: wrap; }
.footer-bottom .legal-mini a { color: var(--muted); }
.footer-bottom .legal-mini a:hover { color: var(--body); }
.footer-legal { display: block; margin-top: 12px; }
.footer-grid + .footer-legal { margin-top: 40px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.footer-disclaimer { font-size: .74rem; color: var(--muted); margin-top: 12px; max-width: 110ch; line-height: 1.55; }
.footer-legal .footer-disclaimer { max-width: 110ch; margin: 0; padding: 0; border: 0; border-radius: 0; background: none; }
.footer-copyright { color: var(--body); }
.footer-disclaimer strong { color: var(--body); font-weight: 600; }
.footer-id { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 0; font-size: .74rem; color: var(--muted); margin-top: 9px; line-height: 1.5; }
.footer-legal .footer-id { margin-top: 8px; }
.footer-id > span,
.footer-id > a { display: inline-flex; align-items: center; min-height: 0; max-width: 100%; padding: 0; border: 0; border-radius: 0; background: none; color: inherit; }
.footer-id > * + *::before { content: "\00b7"; margin: 0 10px; color: rgba(169,181,198,.38); }
.footer-id > a { color: var(--body); text-decoration: underline; text-decoration-color: rgba(41,211,174,.32); text-underline-offset: 3px; }
.footer-id > a:hover { color: var(--brand); text-decoration-color: currentColor; }
.footer-siren { margin-left: 4px; color: var(--body); font-family: var(--font-mono); font-weight: 600; user-select: all; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .site-footer { padding-block: 44px 22px; }
  .footer-grid .brand { min-height: 44px; align-items: center; }
  .footer-col a { display: flex; align-items: center; min-height: 44px; padding-block: 8px; }
  .footer-bottom .legal-mini a { display: inline-flex; align-items: center; min-width: 44px; min-height: 44px; }
  .footer-bottom { align-items: flex-start; margin-top: 32px; padding-top: 16px; }
  .footer-legal { margin-top: 12px; }
  .footer-grid + .footer-legal { margin-top: 32px; padding-top: 16px; }
  .footer-id { display: block; line-height: 1.6; }
  .footer-id > span,
  .footer-id > a { display: inline; }
  .footer-id > span:first-child,
  .footer-id > span:nth-child(4),
  .footer-id > span:nth-child(5),
  .footer-id > a { display: block; }
  .footer-id > span:nth-child(2)::before,
  .footer-id > span:nth-child(4)::before,
  .footer-id > span:nth-child(5)::before,
  .footer-id > a::before { content: none; }
  .footer-id > span:first-child { margin-bottom: 3px; }
  .footer-id > span:nth-child(4),
  .footer-id > span:nth-child(5),
  .footer-id > a { display: flex; align-items: center; min-height: 44px; margin-top: 3px; }
}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }


.buybar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none; gap: 12px; align-items: center; justify-content: space-between;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(9, 12, 19, .95); backdrop-filter: blur(12px); border-top: 1px solid var(--line);
  visibility: hidden; opacity: 0; transform: translateY(100%); pointer-events: none; transition: opacity .22s var(--ease), transform .22s var(--ease), visibility 0s linear .22s; }
.buybar .px { line-height: 1.1; min-width: 0; }
.buybar .px b { font-family: var(--font-title); color: var(--title); font-size: 1rem; white-space: nowrap; }
.buybar .px span { display: block; font-size: .72rem; color: var(--muted); }
.buybar .btn { padding: 13px 18px; flex: none; white-space: nowrap; }
@media (max-width: 940px) {
  .buybar { display: flex; }
  body.has-buybar-visible .buybar { visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto; transition-delay: 0s; }
  body.has-buybar-visible { padding-bottom: 78px; }
}
@media (max-width: 380px) {
  .buybar { gap: 9px; padding-inline: 12px; }
  .buybar .px b { font-size: .92rem; }
  .buybar .btn { padding-inline: 13px; font-size: .92rem; }
}


.reveal { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.reveal-pending { opacity: 0; transform: translateY(18px); }
.reveal.in { opacity: 1; transform: none; }
.reveal.reveal-pending[data-d="1"] { transition-delay: .08s; }
.reveal.reveal-pending[data-d="2"] { transition-delay: .16s; }
.reveal.reveal-pending[data-d="3"] { transition-delay: .24s; }


.hr { height: 1px; background: var(--line-soft); border: 0; margin-block: 0; }
.tac { text-align: center; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 48px; }
.nowrap { white-space: nowrap; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--brand); color: var(--brand-ink); padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 200; font-weight: 700; }
.skip-link:focus { left: 0; }
