/* ═══════════════════════════════════════════════════════════════
   ZENITH — Landing Page Design System
   Premium dark aesthetic · Aurora gradients · Bento layout
   ═══════════════════════════════════════════════════════════════ */

/* ─── Tokens ──────────────────────────────────────────────────── */
:root {
  /* Surfaces */
  --bg-0: #05060C;
  --bg-1: #090A14;
  --bg-2: #0E0F1D;
  --bg-3: #14152A;

  /* Ink */
  --ink-0: #F5F5FF;
  --ink-1: #B9BAD4;
  --ink-2: #7E7F9E;
  --ink-3: #4B4C68;

  /* Brand */
  --brand:      #4F8FF7;
  --brand-deep: #2F6FD8;
  --violet:     #6BA6FF;
  --blue:       #38BDF8;
  --amber:      #FFC24B;
  --green:      #34D399;
  --red:        #F87171;

  --grad-brand: linear-gradient(92deg, #2F6FD8 0%, #4F8FF7 55%, #7FB2FF 100%);
  --grad-text:  linear-gradient(94deg, #9EC3FF 0%, #6BA6FF 45%, #4F8FF7 100%);

  /* Lines & glows */
  --line:        rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.16);
  --brand-line:  rgba(79,143,247,.42);
  --glow:        rgba(79,143,247,.32);

  /* Type */
  --font-display: Arial, 'Helvetica Neue', Helvetica, system-ui, sans-serif;
  --font-body:    Arial, 'Helvetica Neue', Helvetica, system-ui, sans-serif;
  --font-serif:   Arial, 'Helvetica Neue', Helvetica, system-ui, sans-serif;
  --font-mono:    'Cascadia Code', Consolas, monospace;

  /* Motion */
  --ease:   cubic-bezier(.22,.61,.36,1);
  --t-fast: .25s var(--ease);
  --t-med:  .45s var(--ease);

  /* Shape */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
}

/* ─── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--ink-0);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: rgba(226,61,180,.35); color: #fff; }

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: #23243E; border-radius: 6px; border: 3px solid var(--bg-0); }
::-webkit-scrollbar-thumb:hover { background: #33355A; }

/* ─── Utilities ───────────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.section { padding: 128px 0; position: relative; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 22px;
}
.kicker::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--grad-brand);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.6vw, 3.7rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.03em;
  margin-bottom: 22px;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--ink-2);
  max-width: 620px;
  line-height: 1.8;
}
.section-head--center { text-align: center; }
.section-head--center .section-lead { margin: 0 auto; }
.section-head--center .kicker::before { display: none; }
.section-head--center .kicker::after { display: none; }

.fx-serif {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
}
.fx-grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Noise overlay */
.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

main { position: relative; z-index: 2; }

/* ─── Reveal animations ───────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0s);
}
[data-reveal].revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01s !important; transition-duration: .01s !important; }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  background: var(--grad-brand);
  color: #fff;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .01em;
  border-radius: 100px;
  overflow: hidden;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  box-shadow: 0 6px 32px var(--glow), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  transition: left .6s var(--ease);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 44px var(--glow), inset 0 1px 0 rgba(255,255,255,.25); }
.btn-primary:hover::after { left: 120%; }
.btn-primary .arr { transition: transform var(--t-fast); }
.btn-primary:hover .arr { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  color: var(--ink-1);
  font-weight: 500;
  font-size: .92rem;
  backdrop-filter: blur(8px);
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.btn-ghost:hover { border-color: var(--brand-line); color: var(--ink-0); background: rgba(226,61,180,.06); }

/* ─── Announce bar ────────────────────────────────────────────── */
.announce {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 120;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 120px 0 24px;
  background: linear-gradient(90deg, rgba(139,92,246,.14), rgba(226,61,180,.14) 50%, rgba(139,92,246,.14));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  font-size: .78rem;
  color: var(--ink-1);
}
.announce-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 3px 12px;
  border-radius: 100px;
  background: rgba(226,61,180,.14);
  border: 1px solid var(--brand-line);
  color: #FF9AD8;
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.announce-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(226,61,180,.6); }
  50%      { box-shadow: 0 0 0 5px rgba(226,61,180,0); }
}
.announce-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.announce-link {
  color: #FF9AD8;
  font-weight: 600;
  white-space: nowrap;
  transition: color var(--t-fast);
}
.announce-link:hover { color: #fff; }

/* ─── Header / Nav ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 44px; left: 0; right: 0;
  z-index: 110;
  padding: 18px 0;
  transition: padding var(--t-med), background var(--t-med), border-color var(--t-med);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(5,6,12,.82);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px) saturate(1.4);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.logo svg { width: 30px; height: 30px; filter: drop-shadow(0 0 12px rgba(226,61,180,.45)); }
.logo .z-accent { color: var(--brand); }

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-links a:hover { color: var(--ink-0); background: rgba(255,255,255,.05); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--grad-brand);
  color: #fff;
  font-weight: 600;
  font-size: .82rem;
  border-radius: 100px;
  box-shadow: 0 4px 22px var(--glow);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 32px var(--glow); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.nav-burger span {
  width: 22px; height: 2px;
  background: var(--ink-0);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: rgba(5,6,12,.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
}
.nav-drawer.open { opacity: 1; pointer-events: auto; }
.nav-drawer a {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  padding: 10px 24px;
  color: var(--ink-1);
  transition: color var(--t-fast);
}
.nav-drawer a:hover { color: var(--brand); }

/* ─── Hero ────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 190px 0 110px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
  will-change: transform;
}
.blob.b1 {
  width: 640px; height: 640px;
  top: -220px; right: -120px;
  background: radial-gradient(circle, rgba(139,92,246,.5), transparent 65%);
  animation: drift1 18s ease-in-out infinite alternate;
}
.blob.b2 {
  width: 540px; height: 540px;
  bottom: -260px; left: -160px;
  background: radial-gradient(circle, rgba(226,61,180,.42), transparent 65%);
  animation: drift2 22s ease-in-out infinite alternate;
}
.blob.b3 {
  width: 380px; height: 380px;
  top: 34%; left: 42%;
  background: radial-gradient(circle, rgba(56,189,248,.22), transparent 65%);
  animation: drift3 26s ease-in-out infinite alternate;
}
@keyframes drift1 { to { transform: translate(-70px, 60px) scale(1.1); } }
@keyframes drift2 { to { transform: translate(60px, -50px) scale(1.05); } }
@keyframes drift3 { to { transform: translate(-50px, -60px) scale(1.15); } }

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 72px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(8px);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--ink-1);
  margin-bottom: 34px;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5.6vw, 4.6rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.035em;
  margin-bottom: 28px;
}
.hero-title .fx-serif { font-size: 1.04em; }

.hero-sub {
  font-size: 1.08rem;
  color: var(--ink-2);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 42px;
}
.hero-sub strong { color: var(--ink-1); font-weight: 600; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 46px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  font-size: .82rem;
  color: var(--ink-2);
}
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }

/* Hero demo window */
.hero-demo { position: relative; }
.demo-window {
  position: relative;
  background: linear-gradient(160deg, rgba(20,21,42,.92), rgba(9,10,20,.96));
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  box-shadow:
    0 40px 90px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.02) inset,
    0 24px 80px rgba(139,92,246,.10);
  backdrop-filter: blur(20px);
  overflow: hidden;
}
.demo-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.demo-titlebar .td { width: 11px; height: 11px; border-radius: 50%; }
.demo-titlebar .td:nth-child(1) { background: #FF5F57; }
.demo-titlebar .td:nth-child(2) { background: #FEBC2E; }
.demo-titlebar .td:nth-child(3) { background: #28C840; }
.demo-titlebar .demo-title {
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: .68rem;
  color: var(--ink-2);
  letter-spacing: .04em;
}
.demo-chat { padding: 22px 20px 24px; display: flex; flex-direction: column; gap: 16px; min-height: 320px; }
.msg { max-width: 88%; font-size: .84rem; line-height: 1.65; }
.msg-user {
  align-self: flex-end;
  background: linear-gradient(120deg, rgba(139,92,246,.32), rgba(226,61,180,.32));
  border: 1px solid rgba(226,61,180,.35);
  padding: 11px 16px;
  border-radius: 16px 16px 4px 16px;
  color: var(--ink-0);
}
.msg-ai {
  align-self: flex-start;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  padding: 13px 16px;
  border-radius: 16px 16px 16px 4px;
  color: var(--ink-1);
}
.msg-ai .hl { color: #FF9AD8; font-weight: 600; }
.src-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 11px; }
.src-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: 100px;
  background: rgba(139,92,246,.12);
  border: 1px solid rgba(139,92,246,.35);
  font-family: var(--font-mono);
  font-size: .62rem;
  color: #C4B5FD;
  white-space: nowrap;
}
.src-chip svg { width: 11px; height: 11px; }
.typing { display: inline-flex; gap: 4px; padding: 6px 0 2px; }
.typing i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink-2);
  animation: bounce 1.2s infinite;
}
.typing i:nth-child(2) { animation-delay: .15s; }
.typing i:nth-child(3) { animation-delay: .3s; }
@keyframes bounce { 0%, 60%, 100% { transform: none; opacity: .4; } 30% { transform: translateY(-5px); opacity: 1; } }

.float-card {
  position: absolute;
  z-index: 3;
  background: rgba(14,15,29,.92);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  padding: 14px 18px;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  animation: floaty 7s ease-in-out infinite;
}
.float-card .fc-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.float-card .fc-head svg { width: 13px; height: 13px; color: var(--brand); }
.float-card .fc-body { font-size: .78rem; color: var(--ink-1); line-height: 1.5; }
.float-card .fc-body strong { color: var(--ink-0); }
.fc-cal { top: -34px; right: -18px; animation-delay: .8s; }
.fc-ent { bottom: -30px; left: -26px; }
.fc-tag {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 9px;
  border-radius: 100px;
  font-size: .62rem;
  font-weight: 600;
  background: rgba(52,211,153,.14);
  border: 1px solid rgba(52,211,153,.4);
  color: var(--green);
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ─── Stats band ──────────────────────────────────────────────── */
.stats-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.015), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 56px 28px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
}
.stat-num .unit { color: var(--brand); font-size: .6em; font-weight: 600; margin-left: 2px; }
.stat-lbl {
  margin-top: 12px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-2);
}

/* ─── Marquee ─────────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 54px;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--ink-3);
  white-space: nowrap;
}
.marquee-item::after { content: '✦'; color: var(--brand); font-size: .7rem; margin-left: 40px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ─── Compare (Problem/Solution) ─────────────────────────────── */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 64px;
}
.compare-card {
  position: relative;
  border-radius: var(--r-lg);
  padding: 44px 40px;
  overflow: hidden;
}
.compare-card--risk {
  background: linear-gradient(165deg, rgba(248,113,113,.06), rgba(9,10,20,.4));
  border: 1px solid rgba(248,113,113,.22);
}
.compare-card--safe {
  background: linear-gradient(165deg, rgba(226,61,180,.09), rgba(139,92,246,.05));
  border: 1px solid var(--brand-line);
  box-shadow: 0 24px 70px rgba(226,61,180,.09);
}
.compare-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 15px;
  border-radius: 100px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.compare-card--risk .compare-badge { background: rgba(248,113,113,.12); border: 1px solid rgba(248,113,113,.4); color: var(--red); }
.compare-card--safe .compare-badge { background: rgba(52,211,153,.12); border: 1px solid rgba(52,211,153,.4); color: var(--green); }
.compare-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 28px;
}
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.compare-list li {
  display: flex;
  gap: 14px;
  font-size: .9rem;
  color: var(--ink-1);
  line-height: 1.65;
}
.ic {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  margin-top: 2px;
}
.ic--x  { background: rgba(248,113,113,.12); border: 1px solid rgba(248,113,113,.35); color: var(--red); }
.ic--ok { background: rgba(52,211,153,.12); border: 1px solid rgba(52,211,153,.35); color: var(--green); }

/* ─── Pipeline (How it works) ─────────────────────────────────── */
.pipe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 72px;
  counter-reset: pipe;
  position: relative;
}
.pipe-step {
  position: relative;
  background: linear-gradient(170deg, rgba(255,255,255,.03), transparent 60%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  transition: border-color var(--t-med), transform var(--t-med), background var(--t-med);
}
.pipe-step:hover { border-color: var(--brand-line); transform: translateY(-6px); background: linear-gradient(170deg, rgba(226,61,180,.05), transparent 60%); }
.pipe-num {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--brand);
  letter-spacing: .12em;
  margin-bottom: 18px;
  display: block;
}
.pipe-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: linear-gradient(140deg, rgba(139,92,246,.18), rgba(226,61,180,.18));
  border: 1px solid var(--brand-line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pipe-icon svg { width: 22px; height: 22px; color: #FF9AD8; }
.pipe-step h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.pipe-step p { font-size: .84rem; color: var(--ink-2); line-height: 1.7; }
.pipe-step .pipe-tech {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: .62rem;
  color: var(--ink-3);
  letter-spacing: .03em;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
}

/* ─── Bento features ──────────────────────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 72px;
}
.bento-card {
  position: relative;
  grid-column: span 2;
  background: linear-gradient(170deg, rgba(255,255,255,.028), rgba(255,255,255,.006));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  overflow: hidden;
  transition: border-color var(--t-med), transform var(--t-med);
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(226,61,180,.08), transparent 65%);
  opacity: 0;
  transition: opacity var(--t-med);
  pointer-events: none;
}
.bento-card:hover { border-color: var(--brand-line); transform: translateY(-4px); }
.bento-card:hover::before { opacity: 1; }
.bento-card.span-3 { grid-column: span 3; }
.bento-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(139,92,246,.16), rgba(226,61,180,.16));
  border: 1px solid var(--brand-line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.bento-icon svg { width: 21px; height: 21px; color: #FF9AD8; }
.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.bento-card p { font-size: .86rem; color: var(--ink-2); line-height: 1.75; }
.bento-tag {
  display: inline-block;
  margin-top: 18px;
  padding: 5px 13px;
  border-radius: 100px;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .06em;
  background: rgba(139,92,246,.1);
  border: 1px solid rgba(139,92,246,.32);
  color: #C4B5FD;
}

/* ─── Screenshots ─────────────────────────────────────────────── */
.shots-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 56px 0 34px;
}
.shot-tab {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: all var(--t-fast);
}
.shot-tab:hover { color: var(--ink-0); border-color: var(--line-strong); }
.shot-tab.active {
  color: #fff;
  background: linear-gradient(120deg, rgba(139,92,246,.25), rgba(226,61,180,.25));
  border-color: var(--brand-line);
}

.browser {
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-strong);
  background: var(--bg-2);
  overflow: hidden;
  box-shadow: 0 50px 120px rgba(0,0,0,.55), 0 20px 70px rgba(139,92,246,.08);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  background: rgba(255,255,255,.025);
  border-bottom: 1px solid var(--line);
}
.browser-bar .td { width: 11px; height: 11px; border-radius: 50%; }
.browser-bar .td:nth-child(1) { background: #FF5F57; }
.browser-bar .td:nth-child(2) { background: #FEBC2E; }
.browser-bar .td:nth-child(3) { background: #28C840; }
.browser-url {
  flex: 1;
  max-width: 380px;
  margin: 0 auto;
  padding: 5px 16px;
  border-radius: 100px;
  background: rgba(0,0,0,.35);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: .66rem;
  color: var(--ink-2);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.browser-url svg { width: 10px; height: 10px; color: var(--green); }
.shot-stage { position: relative; aspect-ratio: 16 / 9.6; background: var(--bg-1); }
.shot-stage img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0;
  transition: opacity .5s var(--ease);
  cursor: zoom-in;
}
.shot-stage img.active { opacity: 1; }

.phones {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-top: 76px;
  flex-wrap: wrap;
}
.phone {
  width: 232px;
  border-radius: 34px;
  border: 1px solid var(--line-strong);
  background: var(--bg-2);
  padding: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.phone:hover { transform: translateY(-10px); box-shadow: 0 40px 90px rgba(0,0,0,.6), 0 16px 60px rgba(226,61,180,.12); }
.phone-screen {
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 9 / 19;
  background: var(--bg-1);
  position: relative;
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; cursor: zoom-in; }
.phone-notch {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 74px; height: 18px;
  background: #000;
  border-radius: 100px;
  z-index: 2;
}
.phone-caption {
  text-align: center;
  padding: 14px 6px 6px;
  font-size: .74rem;
  color: var(--ink-2);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(3,3,8,.92);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  padding: 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 82vh;
  border-radius: var(--r-md);
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 120px rgba(0,0,0,.7);
  object-fit: contain;
}
.lightbox-caption { font-size: .84rem; color: var(--ink-1); }
.lightbox-close {
  position: absolute;
  top: 26px; right: 30px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.05);
  color: var(--ink-0);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), transform var(--t-fast);
}
.lightbox-close:hover { background: rgba(226,61,180,.2); transform: rotate(90deg); }

/* ─── Technology ──────────────────────────────────────────────── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 72px;
}
.tech-card {
  display: flex;
  gap: 22px;
  padding: 32px 30px;
  background: linear-gradient(170deg, rgba(255,255,255,.025), transparent);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color var(--t-med), transform var(--t-med);
}
.tech-card:hover { border-color: var(--brand-line); transform: translateY(-3px); }
.tech-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: linear-gradient(140deg, rgba(56,189,248,.14), rgba(139,92,246,.18));
  border: 1px solid rgba(139,92,246,.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tech-icon svg { width: 22px; height: 22px; color: #A5B4FC; }
.tech-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.tech-card p { font-size: .85rem; color: var(--ink-2); line-height: 1.7; }

.spec-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 52px;
}
.spec-chip {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .02em;
  color: var(--ink-1);
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.spec-chip:hover { border-color: var(--brand-line); color: var(--ink-0); }

/* ─── Use cases ───────────────────────────────────────────────── */
.uc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 72px;
}
.uc-card {
  padding: 34px 30px;
  background: linear-gradient(170deg, rgba(255,255,255,.025), transparent);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color var(--t-med), transform var(--t-med);
}
.uc-card:hover { border-color: var(--brand-line); transform: translateY(-5px); }
.uc-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,194,75,.09);
  border: 1px solid rgba(255,194,75,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.uc-icon svg { width: 21px; height: 21px; color: var(--amber); }
.uc-sector {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.uc-card h4 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.uc-card p { font-size: .84rem; color: var(--ink-2); line-height: 1.7; }

/* ─── Pricing ─────────────────────────────────────────────────── */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 72px;
  align-items: stretch;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 42px 36px;
  background: linear-gradient(175deg, rgba(255,255,255,.025), transparent);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  transition: border-color var(--t-med), transform var(--t-med);
}
.plan:hover { border-color: var(--line-strong); transform: translateY(-5px); }
.plan--featured {
  background:
    linear-gradient(175deg, rgba(226,61,180,.10), rgba(139,92,246,.05)),
    linear-gradient(175deg, rgba(255,255,255,.02), transparent);
  border: 1px solid var(--brand-line);
  box-shadow: 0 30px 90px rgba(226,61,180,.13);
}
.plan--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
  box-shadow: 0 0 22px var(--glow);
}
.plan--featured:hover { border-color: var(--brand); }
.plan-flag {
  position: absolute;
  top: -14px; right: 28px;
  padding: 5px 16px;
  border-radius: 100px;
  background: var(--grad-brand);
  color: #fff;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 6px 24px var(--glow);
}
.plan-tier {
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.plan--featured .plan-tier { color: #FF9AD8; }
.plan-name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
}
.plan--featured .plan-price {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.plan-note {
  font-size: .74rem;
  color: var(--ink-2);
  margin: 10px 0 28px;
}
.plan-divider { height: 1px; background: var(--line); margin-bottom: 28px; }
.plan-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 36px;
  flex: 1;
}
.plan-feats li {
  display: flex;
  gap: 12px;
  font-size: .86rem;
  color: var(--ink-1);
  line-height: 1.6;
}
.plan-feats .ic--ok { width: 20px; height: 20px; font-size: .62rem; }
.plan-cta {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .88rem;
  border: 1px solid var(--line-strong);
  color: var(--ink-0);
  transition: all var(--t-fast);
}
.plan-cta:hover { border-color: var(--brand-line); background: rgba(226,61,180,.08); }
.plan--featured .plan-cta {
  background: var(--grad-brand);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 30px var(--glow);
}
.plan--featured .plan-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 42px var(--glow); }

/* TCO */
.tco {
  margin-top: 88px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent);
}
.tco-head {
  padding: 34px 40px 26px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.tco-head h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.02em;
}
.tco-head span { display: block; margin-top: 6px; font-size: .82rem; color: var(--ink-2); font-weight: 400; }
.tco-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
}
.tco-col { padding: 42px 44px; }
.tco-col--cloud { background: rgba(248,113,113,.03); }
.tco-col--zenith { background: rgba(52,211,153,.03); }
.tco-label {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.tco-col--cloud .tco-label { color: var(--red); }
.tco-col--zenith .tco-label { color: var(--green); }
.tco-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.tco-calc {
  font-size: .86rem;
  color: var(--ink-2);
  line-height: 2.05;
  margin-bottom: 24px;
}
.tco-calc code {
  font-family: var(--font-mono);
  font-size: .78rem;
  background: rgba(255,255,255,.05);
  padding: 2px 8px;
  border-radius: 6px;
  color: var(--ink-1);
}
.tco-total {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
}
.tco-col--cloud .tco-total { color: var(--red); }
.tco-col--zenith .tco-total { color: var(--green); }
.tco-verdict { margin-top: 12px; font-size: .8rem; color: var(--ink-2); }
.tco-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink-3);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.pricing-footnote {
  margin-top: 36px;
  text-align: center;
  font-size: .76rem;
  color: var(--ink-3);
  line-height: 1.8;
}

/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq-list {
  max-width: 780px;
  margin: 64px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: linear-gradient(170deg, rgba(255,255,255,.02), transparent);
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.faq-item[open] { border-color: var(--brand-line); }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  transition: color var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: #FF9AD8; }
.faq-plus {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--ink-2);
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast);
}
.faq-item[open] .faq-plus { transform: rotate(45deg); background: rgba(226,61,180,.15); color: #FF9AD8; border-color: var(--brand-line); }
.faq-a {
  padding: 0 26px 24px;
  font-size: .88rem;
  color: var(--ink-2);
  line-height: 1.8;
  max-width: 660px;
}

/* ─── CTA ─────────────────────────────────────────────────────── */
#cta { padding: 128px 0; }
.cta-panel {
  position: relative;
  border-radius: var(--r-xl);
  padding: 96px 64px;
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--brand-line);
  background:
    radial-gradient(ellipse 80% 120% at 50% -20%, rgba(139,92,246,.28), transparent 60%),
    radial-gradient(ellipse 60% 100% at 50% 120%, rgba(226,61,180,.24), transparent 60%),
    var(--bg-2);
}
.cta-panel .grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 20%, transparent 75%);
}
.cta-panel > * { position: relative; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.8vw, 3.9rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.06;
  margin-bottom: 22px;
}
.cta-sub {
  font-size: 1.02rem;
  color: var(--ink-1);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.8;
}
.cta-sub strong { color: var(--ink-0); }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 30px;
}
.cta-note { font-size: .78rem; color: var(--ink-2); }

/* ─── Footer ──────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 72px 0 40px;
  background: var(--bg-1);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.foot-brand .logo { margin-bottom: 18px; }
.foot-brand p {
  font-size: .84rem;
  color: var(--ink-2);
  line-height: 1.75;
  max-width: 300px;
}
.foot-col h5 {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.foot-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.foot-links a {
  font-size: .86rem;
  color: var(--ink-2);
  transition: color var(--t-fast);
}
.foot-links a:hover { color: var(--ink-0); }
.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  font-size: .76rem;
  color: var(--ink-3);
}

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 88px; }
  .hero-demo { max-width: 560px; margin: 0 auto; }
  .bento-card, .bento-card.span-3 { grid-column: span 3; }
  .pipe-grid { grid-template-columns: repeat(2, 1fr); }
  .uc-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--line); }
  .stat:nth-child(2n) { border-right: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links, .site-header .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .compare-grid { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .tech-grid { grid-template-columns: 1fr; }
  .tco-grid { grid-template-columns: 1fr; }
  .tco-vs { border: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 14px 0; }
  .section { padding: 96px 0; }
  .bento-card, .bento-card.span-3 { grid-column: span 6; }
  .announce { padding-right: 110px; font-size: .7rem; }
  .announce-text { display: none; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .announce { padding: 0 88px 0 10px; gap: 0; }
  .announce-link { display: none; }
  .announce-badge { max-width: 100%; padding: 3px 8px; font-size: .56rem; overflow: hidden; text-overflow: ellipsis; }
  #hero { padding-top: 160px; }
  .hero-ctas .btn-primary, .hero-ctas .btn-ghost { width: 100%; justify-content: center; }
  .pipe-grid { grid-template-columns: 1fr; }
  .uc-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .fc-cal { display: none; }
  .fc-ent { display: none; }
  .cta-panel { padding: 64px 28px; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .tco-col { padding: 32px 26px; }
}

/* ─── Feature list (top) ───────────────────────────────────────── */
.flist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  max-width: 980px;
  margin: 0 auto;
}
.flist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: .95rem;
  color: var(--ink-1);
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.flist-item:hover { border-color: var(--brand-line); transform: translateY(-2px); }
.flist-item svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--brand); margin-top: 2px; }
.flist-item strong { color: var(--ink-0); }
@media (max-width: 760px) { .flist-grid { grid-template-columns: 1fr; } }

/* ─── Early-bird price display ─────────────────────────────────── */
.plan-price-old {
  display: inline-block;
  margin-right: 8px;
  font-size: .55em;
  font-weight: 400;
  color: var(--ink-2);
  text-decoration: line-through;
  vertical-align: middle;
}
