/* ═══════════════════════════════════════════════════════════════════════
   VIBE.CODE — landing styles
   ─ matrix-inspired, but lived-in. green phosphor + warm amber accents
   ═══════════════════════════════════════════════════════════════════════ */

:root{
  /* base palette - deep, slightly green-tinted black */
  --bg:        #060a08;
  --bg-2:      #0a1410;
  --bg-3:      #0e1a14;
  --panel:     rgba(12,22,18,0.72);
  --panel-2:   rgba(18,28,22,0.55);
  --line:      rgba(74, 222, 128, 0.14);
  --line-2:    rgba(74, 222, 128, 0.28);

  /* type */
  --ink:       #d6f5df;
  --ink-2:     #9bbfa6;
  --ink-3:     #6a8a76;
  --ink-mute:  #4a6256;

  /* phosphor green (softer than #00ff41) */
  --green:     #4ade80;
  --green-2:   #22c55e;
  --green-3:   #86efac;
  --green-glow: rgba(74,222,128,0.55);

  /* warm amber accent (counter-balance) */
  --amber:     #fbbf24;
  --amber-2:   #f59e0b;
  --amber-glow: rgba(251,191,36,0.55);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;

  --max: 1240px;
  --pad: clamp(20px, 4vw, 56px);

  --font-display: "Unbounded", "Manrope", sans-serif;
  --font-body:    "Manrope", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;
}

*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* selection */
::selection{ background: var(--green); color:#04130a; }

/* ─────── helpers ─────── */
.wrap{ max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.mono{ font-family: var(--font-mono); letter-spacing: .02em; }
.acc{ color: var(--green); }
.acc-amber{ color: var(--amber); }
.kicker{
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green); font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(74,222,128,.04);
}

/* ═══════════════════════════════════════════════════════════════════════
   BACKGROUND LAYERS
   ═══════════════════════════════════════════════════════════════════════ */
#rain{
  position: fixed; inset:0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: .35;
  pointer-events: none;
}
.grid-overlay{
  position: fixed; inset:0; z-index: 1; pointer-events:none;
  background-image:
    linear-gradient(to right, rgba(74,222,128,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(74,222,128,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 80%);
}
.grain{
  position: fixed; inset:0; z-index: 2; pointer-events:none;
  opacity:.06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
}
.vignette{
  position: fixed; inset:0; z-index: 3; pointer-events:none;
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(74,222,128,0.10), transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(251,191,36,0.06), transparent 60%),
    radial-gradient(ellipse 100% 100% at 50% 50%, transparent 50%, rgba(0,0,0,0.55) 100%);
}

/* lift content above bg */
section, .marquee, .foot{ position: relative; z-index: 5; }

/* ═══════════════════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════════════════ */
.nav{
  position: sticky; top: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  background: rgba(6,10,8,.92);
  border-bottom: 1px solid var(--line-2);
  box-shadow:
    0 1px 0 0 rgba(74,222,128,.12),
    0 4px 24px -4px rgba(0,0,0,.6);
}
.nav__row{
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.logo{
  display:inline-flex; align-items:center; gap:4px;
  font-family: var(--font-mono); font-weight: 700;
  color: var(--ink); text-decoration: none;
  font-size: 15px; letter-spacing: .02em;
}
.logo__bracket{ color: var(--green); opacity: .7; }
.logo__name{ color: var(--ink); }
.logo__dot{ color: var(--green); }
.logo__cursor{
  color: var(--green); margin-left: 1px;
  animation: blink 1.05s steps(2) infinite;
}
@keyframes blink{ 50%{ opacity: 0; } }

.nav__links{ display: flex; gap: 26px; }
.nav__links a{
  color: var(--ink-2); text-decoration: none;
  font-size: 13px; font-weight: 500;
  font-family: var(--font-mono);
  transition: color .2s;
}
.nav__links a:hover{ color: var(--green); }

.nav__cta{
  display:inline-flex; align-items:center; gap: 8px;
  font-family: var(--font-mono); font-size: 13px; font-weight: 600;
  text-decoration: none;
  color: #04130a;
  background: var(--green);
  padding: 10px 16px;
  border-radius: 999px;
  transition: transform .2s, box-shadow .2s, background .2s;
  box-shadow: 0 0 0 1px rgba(74,222,128,.4), 0 8px 24px -8px var(--green-glow);
}
.nav__cta:hover{
  background: var(--green-3);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(74,222,128,.6), 0 14px 30px -8px var(--green-glow);
}
@media (max-width: 800px){
  .nav__links{ display:none; }
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════ */
.hero{
  padding: clamp(60px, 10vw, 130px) 0 clamp(50px, 8vw, 110px);
}

.hero__tag{
  display: inline-flex; align-items:center; gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(74,222,128,.05);
  font-size: 11px; letter-spacing: .14em;
  color: var(--green);
  margin-bottom: 28px;
  animation: fadeUp .8s .05s both;
}
.hero__tag .dot{
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(74,222,128,.15), 0 0 12px var(--green-glow);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{ box-shadow: 0 0 0 4px rgba(74,222,128,.18), 0 0 12px var(--green-glow); }
  50%{ box-shadow: 0 0 0 7px rgba(74,222,128,.05), 0 0 18px var(--green-glow); }
}

.hero__title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 7.6vw, 108px);
  line-height: .95;
  letter-spacing: -0.035em;
  margin: 0 0 32px;
  color: var(--ink);
}
.hero__title .line{
  display: block;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp .9s forwards;
}
.hero__title .line:nth-child(1){ animation-delay: .15s; }
.hero__title .line:nth-child(2){ animation-delay: .28s; }
.hero__title .line:nth-child(3){ animation-delay: .41s; }
.hero__title .line:nth-child(4){ animation-delay: .54s; }
.hero__title .line:nth-child(5){ animation-delay: .67s; }

.hero__title .line--accent{
  color: var(--green);
  font-weight: 800;
  font-style: italic;
  text-shadow: 0 0 40px rgba(74,222,128,.35);
  position: relative;
}
.hero__title .line--accent::after{
  content: "_";
  color: var(--green);
  animation: blink 1.05s steps(2) infinite;
  margin-left: .04em;
}
.hero__title .line--amber{
  color: var(--amber);
  font-weight: 800;
  text-shadow: 0 0 40px rgba(251,191,36,.3);
}

@keyframes fadeUp{
  to{ opacity: 1; transform: translateY(0); }
}

.hero__sub{
  max-width: 720px;
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 36px;
  opacity: 0;
  animation: fadeUp .9s .8s forwards;
}
.hero__sub b{ color: var(--ink); font-weight: 700; }

.hero__ctas{
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 64px;
  opacity: 0; animation: fadeUp .9s .9s forwards;
}

/* ─── buttons ─── */
.btn{
  display:inline-flex; align-items:center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s, background .2s, color .2s, box-shadow .2s, border-color .2s;
}
.btn--primary{
  background: var(--green); color: #04130a;
  box-shadow:
    0 0 0 1px rgba(74,222,128,.55),
    0 16px 40px -12px var(--green-glow),
    inset 0 0 22px rgba(255,255,255,.18);
}
.btn--primary:hover{
  background: var(--green-3);
  transform: translateY(-1px);
}
.btn--ghost{
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn--ghost:hover{
  border-color: var(--green);
  color: var(--green);
  background: rgba(74,222,128,.06);
}
.btn--amber{
  background: var(--amber); color: #1a1204;
  box-shadow:
    0 0 0 1px rgba(251,191,36,.55),
    0 16px 40px -12px var(--amber-glow),
    inset 0 0 22px rgba(255,255,255,.18);
}
.btn--amber:hover{ background: #fcd34d; transform: translateY(-1px); }

.btn--block{ display:flex; justify-content:center; width: 100%; }
.btn--big{ padding: 18px 22px; font-size: 15px; }

/* ─── urgency strip ─── */
.urgency{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(74,222,128,.04), rgba(74,222,128,0)),
    var(--panel);
  backdrop-filter: blur(8px);
  padding: 22px;
  margin-bottom: 36px;
  opacity: 0; animation: fadeUp .9s 1s forwards;
  position: relative;
  overflow: hidden;
}
.urgency::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(74,222,128,.08), transparent 70%),
    radial-gradient(ellipse 60% 100% at 100% 50%, rgba(251,191,36,.06), transparent 70%);
}
.urgency__cell{ position: relative; }
.urgency__label{
  font-size: 11px; letter-spacing: .12em;
  color: var(--ink-3); margin-bottom: 12px;
}

.timer{
  display: flex; align-items: flex-end; gap: 6px;
}
.timer__cell{
  display: flex; flex-direction: column; align-items: center;
  min-width: 64px;
  padding: 8px 10px 6px;
  background: rgba(0,0,0,.35);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
.timer__num{
  font-family: var(--font-mono);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--green);
  text-shadow: 0 0 16px rgba(74,222,128,.45);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.timer__unit{
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: .12em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-top: 4px;
}
.timer__sep{
  font-family: var(--font-mono);
  font-size: 24px;
  color: var(--green);
  opacity: .5;
  align-self: center;
  padding-bottom: 14px;
}

.seats__row{
  display:flex; align-items: baseline; gap: 8px;
  margin-bottom: 8px;
}
.seats__num{
  font-family: var(--font-mono);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--amber);
  text-shadow: 0 0 18px rgba(251,191,36,.4);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.seats__total{
  font-family: var(--font-mono);
  color: var(--ink-3);
  font-size: 16px;
}
.seats__bar{
  width: 100%; height: 6px;
  background: rgba(0,0,0,.4);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
}
.seats__bar i{
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--green), var(--amber));
  box-shadow: 0 0 12px var(--green-glow);
}
.seats__legend{
  display:flex; gap: 14px;
  font-size: 11px; color: var(--ink-3);
}
.seats__legend .dot{ width: 7px; height: 7px; border-radius: 999px; display:inline-block; margin-right: 4px; vertical-align: middle; }
.dot--green{ background: var(--green); }
.dot--amber{ background: var(--amber); }

@media (max-width: 720px){
  .urgency{ grid-template-columns: 1fr; }
  .timer__cell{ min-width: 54px; padding: 6px 8px; }
}

/* ─── meta strip ─── */
.meta{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  opacity: 0; animation: fadeUp .9s 1.1s forwards;
}
.meta__item{
  padding: 22px 12px;
  text-align: left;
  position: relative;
}
.meta__item + .meta__item{ border-left: 1px solid var(--line); }
.meta__item b{
  display:block;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.meta__item span{
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: .1em;
  text-transform: uppercase;
}
@media (max-width: 720px){
  .meta{ grid-template-columns: repeat(2, 1fr); }
  .meta__item:nth-child(3){ border-left: none; border-top: 1px solid var(--line); }
  .meta__item:nth-child(4){ border-top: 1px solid var(--line); }
}

/* ═══════════════════════════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════════════════════════ */
.marquee{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.25);
  overflow: hidden;
  padding: 18px 0;
  margin: 24px 0 0;
}
.marquee__track{
  display: flex; gap: 36px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--ink-3);
  letter-spacing: .04em;
}
.marquee__track span{ color: var(--ink-2); }
.marquee__track i{ color: var(--green); font-style: normal; opacity: .6; }
@keyframes scroll{ to{ transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════════════════════════
   SECTION DEFAULTS
   ═══════════════════════════════════════════════════════════════════════ */
.section{
  padding: clamp(70px, 10vw, 130px) 0;
}
.section__head{
  max-width: 880px;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.section__title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 14px 0 18px;
  color: var(--ink);
}
.section__lead{
  color: var(--ink-2);
  font-size: clamp(15px, 1.3vw, 18px);
  max-width: 720px;
}

/* ═══════════════════════════════════════════════════════════════════════
   OFFER CARDS
   ═══════════════════════════════════════════════════════════════════════ */
.cards{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.card{
  position: relative;
  padding: 28px 24px 30px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color .25s, transform .25s, background .25s;
  overflow: hidden;
}
.card::before{
  content:""; position:absolute; left:0; top:0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0; transition: opacity .25s;
}
.card:hover{
  border-color: var(--line-2);
  transform: translateY(-3px);
  background: var(--panel-2);
}
.card:hover::before{ opacity: 1; }
.card__num{
  font-size: 11px; letter-spacing: .1em;
  color: var(--green);
  margin-bottom: 18px;
}
.card h3{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.card p{
  font-size: 14px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 1080px){ .cards{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .cards{ grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════════════
   CASE / SLIDER
   ═══════════════════════════════════════════════════════════════════════ */
.section--case{
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(251,191,36,.05), transparent 60%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.slider{ position: relative; }
.slider__viewport{
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--panel);
}
.slider__track{
  display: flex;
  transition: transform .55s cubic-bezier(.22,.95,.3,1);
  will-change: transform;
  align-items: stretch;
}
.slider__track > *{
  flex: 0 0 100%;
  min-width: 0;
}

/* ─── proof card ─── */
.proof{
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: stretch;
  min-height: 380px;
}
.proof__head{
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: .12em;
  color: var(--ink-3);
  text-transform: uppercase;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 14px;
}
.proof__tag{ color: var(--green); }
.proof__big{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(50px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--green);
  text-shadow: 0 0 40px rgba(74,222,128,.35);
  display: flex; align-items: baseline; gap: 14px;
  flex-wrap: wrap;
}
.proof__delta{
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  text-shadow: none;
  padding: 4px 10px;
  background: rgba(74,222,128,.1);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  letter-spacing: 0;
  align-self: center;
}
.proof__delta--amber{
  background: rgba(251,191,36,.1);
  border-color: rgba(251,191,36,.3);
  color: var(--amber);
}
.proof__chart{
  width: 100%;
  height: 120px;
  margin-top: 10px;
  grid-column: 1 / 2;
}
.proof__chart svg{ width: 100%; height: 100%; display: block; }

.proof__stats{
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  align-content: start;
}
.proof__stats--3{
  grid-template-columns: 1fr 1fr 1fr;
  grid-column: 1 / -1;
}
@media (max-width: 600px){
  .proof__stats--3{ grid-template-columns: 1fr 1fr; }
}
.proof__about{
  grid-column: 1 / -1;
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 720px;
}
.inline-link{
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px dashed rgba(74,222,128,.5);
  transition: color .2s, border-color .2s;
}
.inline-link:hover{
  color: var(--green-3);
  border-bottom-color: var(--green-3);
}
.proof__stats li{
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  background: rgba(0,0,0,.25);
  display: flex; justify-content: space-between; align-items: center;
}
.proof__stats span{
  font-size: 11px; letter-spacing: .1em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.proof__stats b{
  font-family: var(--font-mono);
  font-size: 16px; color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.proof__log{
  list-style: none; padding: 0; margin: 0;
  grid-column: 1 / -1;
  display: grid; gap: 6px;
}
.proof__log li{
  display: grid; grid-template-columns: 60px 1fr auto; gap: 12px;
  padding: 10px 14px;
  background: rgba(0,0,0,.32);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 13px;
  align-items: center;
}
.proof__log li .mono{ color: var(--ink-3); font-size: 11px; }
.proof__log li b{ color: var(--green); font-family: var(--font-mono); font-size: 14px; }
.proof__log--build li{ grid-template-columns: 50px 1fr; color: var(--ink-2); }

@media (max-width: 800px){
  .proof{ grid-template-columns: 1fr; }
  .proof__chart{ grid-column: 1 / -1; }
}

/* ─── slider controls ─── */
.slider__ctrl{
  display: flex; align-items: center; gap: 14px;
  margin-top: 20px;
  justify-content: center;
}
.slider__btn{
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(0,0,0,.3);
  color: var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.slider__btn:hover{
  border-color: var(--green);
  color: var(--green);
  background: rgba(74,222,128,.08);
}
.slider__dots{ display: flex; gap: 8px; }
.slider__dots button{
  width: 8px; height: 8px; border-radius: 999px;
  border: 0; padding: 0;
  background: var(--ink-mute);
  cursor: pointer;
  transition: all .25s;
}
.slider__dots button.is-active{
  background: var(--green);
  width: 28px;
  box-shadow: 0 0 12px var(--green-glow);
}


/* ═══════════════════════════════════════════════════════════════════════
   ROADMAP
   ═══════════════════════════════════════════════════════════════════════ */
.roadmap{
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  counter-reset: rm;
}
.rm{
  position: relative;
  padding: 26px 24px 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: all .25s;
  overflow: hidden;
}
.rm:hover{
  border-color: var(--line-2);
  background: var(--panel-2);
  transform: translateY(-2px);
}
.rm::before{
  content:"";
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--green), transparent 80%);
  opacity: .4;
}
.rm--accent{
  border-color: rgba(251,191,36,.3);
  background:
    linear-gradient(180deg, rgba(251,191,36,.06), rgba(251,191,36,0)),
    var(--panel);
}
.rm--accent::before{
  background: linear-gradient(180deg, var(--amber), transparent 80%);
  opacity: .8;
  width: 3px;
}
.rm__week{
  font-size: 11px; letter-spacing: .14em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.rm--accent .rm__week{ color: var(--amber); }
.rm__title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.2;
}
.rm__desc{
  font-size: 14px;
  color: var(--ink-2);
  margin: 0 0 16px;
  line-height: 1.55;
}
.rm__list{
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 6px;
}
.rm__list li{
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--ink-2);
}
.rm__list li::before{
  content: "›";
  position: absolute; left: 0;
  color: var(--green);
  font-weight: 700;
}
.rm--accent .rm__list li::before{ color: var(--amber); }

@media (max-width: 980px){ .roadmap{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .roadmap{ grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════════════
   WHO IT'S FOR
   ═══════════════════════════════════════════════════════════════════════ */
.section--who{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(74,222,128,.04), transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 50%, rgba(251,191,36,.04), transparent 60%);
}
.who{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
}
.who__col .section__title{
  font-size: clamp(22px, 2.6vw, 32px);
  margin: 10px 0 24px;
}
.who__list{
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.who__list li{
  position: relative;
  padding: 14px 16px 14px 46px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--panel);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.45;
}
.who__list li::before{
  position: absolute;
  left: 14px; top: 14px;
  width: 22px; height: 22px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.who__list--yes li::before{
  content: "✓";
  background: rgba(74,222,128,.15);
  color: var(--green);
  border: 1px solid var(--line-2);
}
.who__list--no li::before{
  content: "×";
  background: rgba(251,191,36,.12);
  color: var(--amber);
  border: 1px solid rgba(251,191,36,.3);
  font-size: 16px;
}
@media (max-width: 800px){
  .who{ grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════════ */
.testi{
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  min-height: 320px;
}
.testi__quote{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
  position: relative;
  padding-left: 28px;
}
.testi__quote::before{
  content: "\201C";
  position: absolute;
  left: 0; top: -8px;
  font-size: 64px;
  line-height: 1;
  color: var(--green);
  opacity: .8;
  font-family: var(--font-display);
}
.testi__person{
  display: flex; align-items: center; gap: 14px;
}
.testi__avatar{
  width: 44px; height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #04130a;
  display: flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  box-shadow: 0 0 0 1px var(--line-2), 0 0 18px rgba(74,222,128,.25);
}
.testi__person b{ display: block; color: var(--ink); font-size: 15px; }
.testi__person span{ font-size: 11px; color: var(--ink-3); letter-spacing: .1em; }
.testi__metric{
  align-self: start;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 18px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(74,222,128,.06);
  width: fit-content;
}
.testi__metric span{ font-size: 11px; letter-spacing: .12em; color: var(--ink-3); text-transform: uppercase; }
.testi__metric b{
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}

/* ═══════════════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════════════ */
.section--pricing{
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(74,222,128,.05), transparent 60%);
}
.plans{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 8px;
}
.plan{
  position: relative;
  padding: clamp(28px, 3.5vw, 40px);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  background: var(--panel);
  display: flex; flex-direction: column; gap: 22px;
  overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.plan:hover{ transform: translateY(-3px); }
.plan::before{
  content:""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(74,222,128,.08), transparent 70%);
}
.plan--featured{
  border-color: rgba(251,191,36,.4);
  background:
    linear-gradient(180deg, rgba(251,191,36,.05), rgba(251,191,36,0) 30%),
    var(--panel);
  box-shadow: 0 30px 80px -30px rgba(251,191,36,.25), inset 0 0 60px rgba(251,191,36,.04);
}
.plan--featured::before{
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(251,191,36,.12), transparent 70%);
}
.plan__ribbon{
  position: absolute;
  top: 18px; right: 18px;
  font-size: 10px; letter-spacing: .14em;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--amber);
  color: #1a1204;
  font-weight: 700;
}
.plan__head{ position: relative; z-index: 1; }
.plan__tag{
  font-size: 11px; letter-spacing: .12em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.plan--featured .plan__tag{ color: var(--amber); }
.plan__name{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--ink);
}
.plan__sub{
  color: var(--ink-2);
  font-size: 14px;
  margin: 0;
  max-width: 90%;
}

.plan__price{ position: relative; z-index: 1; }
.plan__big{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(54px, 7vw, 84px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--green);
  text-shadow: 0 0 40px rgba(74,222,128,.35);
  display: flex; align-items: flex-start; gap: 6px;
}
.plan__big span{ display: inline-block; }
.plan--featured .plan__big{
  color: var(--amber);
  text-shadow: 0 0 40px rgba(251,191,36,.4);
}
.plan__rub{
  margin-top: 8px;
  color: var(--ink-3);
  font-size: 13px;
  letter-spacing: .04em;
}

.plan__list{
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
  position: relative; z-index: 1;
}
.plan__list li{
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.45;
}
.plan__list li::before{
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: rgba(74,222,128,.18);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  border: 1px solid var(--line-2);
}
.plan--featured .plan__list li::before{
  background: rgba(251,191,36,.2);
  color: var(--amber);
  border-color: rgba(251,191,36,.35);
}
.plan__list li b{ color: var(--ink); font-weight: 600; }

.plan__seats{
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px dashed var(--line);
  padding-top: 18px;
  margin-top: auto;
}
.plan__seatsbar{
  width: 100%; height: 5px;
  background: rgba(0,0,0,.35);
  border-radius: 999px;
  overflow: hidden;
}
.plan__seatsbar i{
  display: block; height: 100%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green-glow);
}
.plan--featured .plan__seatsbar i{
  background: var(--amber);
  box-shadow: 0 0 12px var(--amber-glow);
}
.plan__seats span{ font-size: 11px; color: var(--ink-3); letter-spacing: .08em; }

.pricing__note{
  margin-top: 26px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: .04em;
}

@media (max-width: 800px){ .plans{ grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════════ */
.faq{
  display: grid;
  gap: 10px;
  max-width: 880px;
}
.q{
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--panel);
  overflow: hidden;
  transition: border-color .2s;
}
.q[open]{ border-color: var(--line-2); }
.q summary{
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(15px, 1.4vw, 18px);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.q summary::-webkit-details-marker{ display:none; }
.q__plus{
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.q__plus::before, .q__plus::after{
  content:""; position: absolute; left: 50%; top: 50%;
  background: var(--green);
  transition: transform .25s;
}
.q__plus::before{ width: 14px; height: 2px; transform: translate(-50%,-50%); }
.q__plus::after{ width: 2px; height: 14px; transform: translate(-50%,-50%); }
.q[open] .q__plus::after{ transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.q p{
  margin: 0;
  padding: 0 22px 22px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════
   JOIN / FORM
   ═══════════════════════════════════════════════════════════════════════ */
.section--join{
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(74,222,128,.06), transparent 60%);
}
.join{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}
.join__bullets{
  margin-top: 30px;
  display: grid; gap: 14px;
}
.join__b{
  display: flex; align-items: flex-start; gap: 16px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--panel);
}
.join__b i{
  font-style: normal;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(74,222,128,.12);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--line-2);
}
.join__b b{ display: block; color: var(--ink); font-size: 15px; }
.join__b span{ font-size: 13px; color: var(--ink-3); }

/* ─── terminal form ─── */
.terminal{
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(74,222,128,.04), rgba(74,222,128,0)),
    rgba(4,9,7,.85);
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(74,222,128,.25);
}
.terminal__head{
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.4);
}
.terminal__dot{
  width: 11px; height: 11px; border-radius: 999px;
  background: var(--ink-mute);
}
.terminal__dot:nth-child(1){ background: #ef4444; }
.terminal__dot:nth-child(2){ background: var(--amber); }
.terminal__dot:nth-child(3){ background: var(--green); }
.terminal__title{
  margin-left: auto;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: .04em;
}
.terminal__body{
  padding: clamp(20px, 3vw, 32px);
  display: grid; gap: 16px;
}
.field{ display: grid; gap: 6px; }
.field__label{
  font-size: 11px;
  color: var(--green);
  letter-spacing: .06em;
}
.field input,
.field select,
.field textarea{
  width: 100%;
  padding: 13px 14px;
  font: inherit;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink);
  background: rgba(0,0,0,.4);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder{ color: var(--ink-mute); }
.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: var(--green);
  background: rgba(0,0,0,.55);
  box-shadow: 0 0 0 4px rgba(74,222,128,.1);
}
.field select{
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%234ade80' stroke-width='2'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.terminal__note{
  margin-top: 4px;
  text-align: center;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: .04em;
}

@media (max-width: 880px){
  .join{ grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════ */
.foot{
  border-top: 1px solid var(--line);
  padding: 56px 0 22px;
  background: rgba(0,0,0,.3);
}
.foot__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.foot__brand p{
  margin: 12px 0 0;
  color: var(--ink-3);
  font-size: 13px;
  max-width: 360px;
}
.foot__cols{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  justify-self: end;
}
.foot__cols h4{
  margin: 0 0 12px;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: .12em;
  font-weight: 500;
}
.foot__cols a{
  display: block;
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color .2s;
}
.foot__cols a:hover{ color: var(--green); }
.foot__bottom{
  padding-top: 20px;
  display: flex; justify-content: space-between; gap: 14px;
  flex-wrap: wrap;
  font-size: 11px; color: var(--ink-3);
  letter-spacing: .06em;
}

@media (max-width: 700px){
  .foot__row{ grid-template-columns: 1fr; }
  .foot__cols{ justify-self: start; }
}

/* ═══════════════════════════════════════════════════════════════════════
   MOTION-PREFERENCE
   ═══════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  #rain{ display: none; }
}
