/* ============================================================
   TrueSlides Pro — marketing site
   Vanilla CSS, no build step. Dark "broadcast" aesthetic.
   ============================================================ */

:root {
  --bg:        #0a0b10;
  --bg-2:      #0e1018;
  --surface:   #14161f;
  --surface-2: #1a1d28;
  --line:      #262a38;
  --line-soft: #1d2130;

  --text:      #f3f5fa;
  --muted:     #9aa1b2;
  --faint:     #6b7283;

  /* Brand palette sampled from the app icon (icon128.png) */
  --iris:       #7a6bee;   /* primary, brightened a touch for dark UI */
  --iris-light: #9d90ff;   /* light periwinkle accent */
  --iris-deep:  #4f3fbb;   /* deep purple (icon bottom-right) */
  --cyan:       #38e0c8;   /* complementary cool accent */

  /* diagonal gradient mirroring the icon: light TL -> deep BR */
  --grad:      linear-gradient(135deg, #8273f0 0%, #6353d2 55%, #4f3fbb 100%);
  --grad-cyan: linear-gradient(100deg, #38e0c8 0%, #5b9dff 100%);

  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 24px 60px -28px rgba(0,0,0,0.8);
  --ring:      0 0 0 1px var(--line);
  --maxw:      1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle film-grain / vignette backdrop */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 500px at 78% -8%, rgba(122,107,238,0.14), transparent 60%),
    radial-gradient(700px 500px at 8% 0%, rgba(56,224,200,0.06), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, .brand__name, .step__num, .plan__price {
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.container--narrow { max-width: 760px; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, opacity .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn__icon { width: 18px; height: 18px; }

.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(99,83,210,0.7);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(99,83,210,0.8); }

.btn--ghost {
  background: rgba(255,255,255,0.03);
  border-color: var(--line);
  color: var(--text);
}
.btn--ghost:hover { background: rgba(255,255,255,0.07); border-color: #39405380; transform: translateY(-2px); }

.btn--lg { padding: 15px 28px; font-size: 16px; }
.btn--block { width: 100%; justify-content: center; }

/* "coming soon" disabled state, toggled by JS when links aren't set */
.btn.is-pending { opacity: .62; cursor: not-allowed; position: relative; }
.btn.is-pending:hover { transform: none; box-shadow: none; }

/* ===================== NAV ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,11,16,0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; }
.brand__icon {
  width: 30px; height: 30px; border-radius: 8px;
  box-shadow: 0 4px 14px -2px rgba(79,63,187,0.6), 0 0 0 1px rgba(157,144,255,0.18);
  transition: transform .2s ease;
}
.brand:hover .brand__icon { transform: rotate(-4deg) scale(1.06); }
.brand__name { font-family:"Space Grotesk",sans-serif; font-size: 19px; }
.brand__pro {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-left: 3px;
}
.nav__links { display: flex; gap: 28px; }
.nav__links a { color: var(--muted); font-size: 15px; font-weight: 500; transition: color .15s; }
.nav__links a:hover { color: var(--text); }
.nav__cta { display: flex; gap: 10px; }

/* ===================== HERO ===================== */
.hero { position: relative; padding: 70px 0 30px; overflow: hidden; }
.hero__glow {
  position: absolute; top: -180px; right: -120px;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(130,115,242,0.26), transparent 62%);
  filter: blur(30px); pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  padding: 6px 13px; border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }

.hero__title { font-size: clamp(40px, 6vw, 68px); line-height: 1.02; margin: 0 0 20px; font-weight: 700; }
.hero__sub { font-size: 18px; color: var(--muted); max-width: 30em; margin: 0 0 30px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__note { margin-top: 18px; font-size: 13.5px; color: var(--faint); }

/* ---- interactive demo ---- */
.demo {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
  transition: transform .5s ease;
}
.demo:hover { transform: perspective(1400px) rotateY(0deg) rotateX(0deg); }
.demo__chrome {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.demo__dot { width: 11px; height: 11px; border-radius: 50%; background: #3a3f4f; }
.demo__dot:nth-child(1){ background:#ff5f57; } .demo__dot:nth-child(2){ background:#febc2e; } .demo__dot:nth-child(3){ background:#28c840; }
.demo__url {
  margin-left: 10px; font-size: 12px; color: var(--faint);
  background: var(--bg); padding: 4px 12px; border-radius: 6px; flex: 1;
  font-family: ui-monospace, monospace;
}

.stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

/* messy youtube layer */
.messy { position: absolute; inset: 0; z-index: 1; background:
    linear-gradient(135deg,#1b2a4a 0%, #122036 60%, #0c1626 100%);
  transition: opacity .22s ease; }
.messy::after { /* fake thumbnail vibe */
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 42%, rgba(120,150,210,0.25), transparent 55%);
}
.messy__title {
  position: absolute; top: 12px; left: 14px; right: 14px;
  font-size: 13px; font-weight: 600; color: #fff; text-shadow: 0 1px 4px #000;
  z-index: 2;
}
.messy__suggested {
  position: absolute; top: 12px; right: 14px;
  font-size: 11px; color: #fff; background: rgba(0,0,0,.55);
  padding: 3px 8px; border-radius: 4px; z-index: 3;
}
.messy__bigplay {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 64px; height: 46px; border-radius: 11px;
  background: rgba(220,30,30,0.92);
  display: grid; place-items: center; color: #fff; font-size: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,.5); z-index: 3;
}
.messy__bar {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 10px 12px 9px;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  z-index: 3;
}
.messy__progress { display: block; height: 4px; border-radius: 4px; background: rgba(255,255,255,.3); position: relative; margin-bottom: 8px; }
.messy__progress::before { content:""; position:absolute; left:0; top:0; bottom:0; width: 38%; background: #ff3b3b; border-radius: 4px; }
.messy__controls { font-size: 14px; letter-spacing: 4px; color: #fff; }

/* clean broadcast layer */
.clean { position: absolute; inset: 0; z-index: 2; opacity: 0; transition: opacity .22s ease; }
.clean__frame {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 45%, #20364f 0%, #0d1a2c 55%, #050b14 100%);
}
.clean__frame::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(180deg, transparent 0 3px, rgba(255,255,255,0.012) 3px 4px);
}
.clean__badge {
  position: absolute; bottom: 12px; right: 14px;
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  color: var(--cyan); border: 1px solid rgba(56,224,200,.4);
  padding: 4px 9px; border-radius: 5px; background: rgba(56,224,200,.08);
}
.stage__fade {
  position: absolute; inset: 0; z-index: 10; background: #000; opacity: 0;
  pointer-events: none; transition: opacity .28s ease;
}

/* clean state */
.stage.is-clean .messy { opacity: 0; }
.stage.is-clean .clean { opacity: 1; }

.demo__toggle {
  width: 100%; border: 0; border-top: 1px solid var(--iris);
  background: rgba(122,107,238,0.18); color: var(--text);
  padding: 15px; font-size: 15px; font-weight: 700; cursor: pointer;
  font-family: inherit; transition: background .2s, color .2s;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  letter-spacing: .01em;
}
.demo__toggle:hover { background: rgba(122,107,238,0.32); color: #fff; }
.demo__toggleIcon {
  font-size: 17px; color: var(--iris-light); line-height: 1;
  transition: transform .3s ease;
}
.demo__toggle:hover .demo__toggleIcon { transform: rotate(180deg); }

/* trust strip */
.trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  justify-content: center;
  margin-top: 56px;
  color: var(--faint); font-size: 14px;
}
.trust strong { color: var(--muted); font-weight: 600; }
.trust__sep { color: #333a4a; }

/* ===================== PROBLEM ===================== */
.problem { padding: 64px 0; }
.problem__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.problem__lead { font-size: clamp(21px, 3vw, 27px); line-height: 1.5; color: var(--muted); font-family:"Space Grotesk",sans-serif; letter-spacing:-0.01em; }
.problem__lead strong { color: var(--text); }

/* ===================== SECTIONS ===================== */
.section { padding: 84px 0; }
.section--alt { background: linear-gradient(var(--bg-2), var(--bg)); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section__head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.kicker {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--iris-light); margin-bottom: 14px;
}
.section__head h2 { font-size: clamp(28px, 4vw, 40px); margin: 0 0 14px; line-height: 1.1; }
.section__sub { color: var(--muted); font-size: 18px; margin: 0; }

/* ===================== CARDS (now) ===================== */
.grid { display: grid; gap: 20px; }
.grid--now { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .2s ease, border-color .2s ease, background .2s;
}
.card:hover { transform: translateY(-4px); border-color: #353c50; background: var(--surface-2); }
.card__ico {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; font-size: 22px;
  background: rgba(122,107,238,0.12); border: 1px solid rgba(122,107,238,0.25);
  margin-bottom: 16px;
}
.card h3 { font-size: 19px; margin: 0 0 8px; }
.card p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* ===================== HOW / STEPS ===================== */
.steps { display: flex; align-items: stretch; gap: 18px; justify-content: center; flex-wrap: wrap; }
.step {
  flex: 1; min-width: 220px; max-width: 320px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px; text-align: center;
}
.step__num {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad); color: #1a0a08; font-size: 20px; font-weight: 700;
  margin-bottom: 14px;
}
.step h3 { margin: 0 0 8px; font-size: 19px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }
.step__arrow { display: grid; place-items: center; color: var(--faint); font-size: 26px; }
.how__foot { text-align: center; color: var(--faint); margin-top: 34px; font-size: 15px; }

/* ===================== ROADMAP ===================== */
.grid--roadmap { grid-template-columns: repeat(3, 1fr); }
.feat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex; flex-direction: column;
  transition: transform .2s, border-color .2s;
}
.feat:hover { transform: translateY(-3px); border-color: #353c50; }
.feat__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.feat__emoji { font-size: 26px; }
.feat h3 { font-size: 17.5px; margin: 0 0 7px; }
.feat p { margin: 0 0 18px; color: var(--muted); font-size: 14.5px; flex: 1; }
.feat code { background: rgba(255,255,255,.06); padding: 1px 5px; border-radius: 4px; font-size: 12.5px; color: var(--cyan); }

.tag {
  font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 3px 9px;
}
.tag--soon { color: var(--cyan); border-color: rgba(56,224,200,.35); background: rgba(56,224,200,.08); }
.tag--dream { color: var(--iris-light); border-color: rgba(157,144,255,.4); background: rgba(157,144,255,.1); }

.vote {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 999px; padding: 8px 14px;
  font-family: inherit; font-size: 13.5px; font-weight: 600; cursor: pointer;
  transition: all .18s ease;
}
.vote:hover { border-color: var(--iris); color: var(--text); }
.vote__heart { font-size: 15px; transition: transform .2s; }
.vote__count { color: var(--faint); font-variant-numeric: tabular-nums; }
.vote.is-voted {
  background: rgba(122,107,238,0.16);
  border-color: var(--iris);
  color: #e7e2ff;
}
.vote.is-voted .vote__heart { color: var(--iris-light); }
.vote.is-voted .vote__count { color: #c4baff; }
.vote.bump .vote__heart { animation: heartbeat .45s ease; }
@keyframes heartbeat { 0%,100%{ transform: scale(1);} 30%{ transform: scale(1.5);} 60%{ transform: scale(.9);} }

.roadmap__foot { text-align: center; color: var(--faint); margin-top: 34px; font-size: 15px; }

/* ===================== SUGGEST A FEATURE ===================== */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
/* trigger CTA that opens the popup */
.suggest__cta {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin-top: 42px; text-align: center;
}
.suggest__cta-text { color: var(--muted); font-size: 16px; }

/* popup / modal */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.modal.is-open { display: flex; }
body.modal-open { overflow: hidden; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(6,7,12,0.72); backdrop-filter: blur(6px);
  opacity: 0; transition: opacity .25s ease;
}
.modal.is-open .modal__backdrop { opacity: 1; }
.modal__dialog {
  position: relative; z-index: 1;
  width: 100%; max-width: 520px;
  background: linear-gradient(var(--surface-2), var(--surface));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px 28px;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.85);
  overflow: hidden;
  transform: translateY(16px) scale(.98); opacity: 0;
  transition: transform .28s cubic-bezier(.2,.9,.3,1.2), opacity .25s ease;
}
.modal.is-open .modal__dialog { transform: none; opacity: 1; }
.modal__dialog::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(440px 220px at 100% 0%, rgba(122,107,238,0.18), transparent 60%);
  pointer-events: none;
}
.modal__close {
  position: absolute; top: 12px; right: 14px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid var(--line);
  color: var(--muted); font-size: 22px; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  transition: background .15s, color .15s, border-color .15s;
}
.modal__close:hover { background: rgba(255,255,255,0.1); color: var(--text); border-color: #39405380; }

.suggest__head { position: relative; text-align: center; margin: 0 0 20px; }
.suggest__title { font-size: 22px; margin: 0 0 6px; }
.suggest__sub { color: var(--muted); font-size: 15.5px; margin: 0; }
.suggest__form { position: relative; }
.suggest__input {
  width: 100%; resize: vertical; min-height: 88px;
  background: var(--bg); color: var(--text);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 16px; font-family: inherit; font-size: 15.5px; line-height: 1.5;
  transition: border-color .18s, box-shadow .18s;
}
.suggest__input::placeholder { color: var(--faint); }
.suggest__input:focus {
  outline: none; border-color: var(--iris);
  box-shadow: 0 0 0 3px rgba(122,107,238,0.22);
}
.suggest__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.suggest__turnstile { margin-top: 14px; min-height: 65px; }
.suggest__row {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  margin-top: 14px;
}
.suggest__count { color: var(--faint); font-size: 13px; font-variant-numeric: tabular-nums; }
.suggest__btn { flex-shrink: 0; }
.suggest__btn[disabled] { opacity: .6; cursor: progress; }
.suggest__status { position: relative; text-align: center; margin: 16px 0 0; font-size: 14.5px; min-height: 1.2em; }
.suggest__status.is-ok { color: var(--cyan); }
.suggest__status.is-err { color: #ff8a8a; }

/* ===================== PRICING ===================== */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan {
  position: relative;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px;
  display: flex; flex-direction: column;
}
.plan--featured {
  border-color: rgba(122,107,238,0.55);
  background: linear-gradient(var(--surface-2), var(--surface));
  box-shadow: 0 20px 50px -24px rgba(99,83,210,0.5);
}
.plan__ribbon {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #1a0a08;
  font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 999px;
  white-space: nowrap;
}
.plan__name { font-size: 16px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 0 0 8px; }
.plan__price { font-size: 40px; margin: 0 0 4px; font-weight: 700; }
.plan__period { font-size: 15px; color: var(--faint); font-weight: 500; }
.plan__tag { color: var(--muted); font-size: 14.5px; margin: 0 0 20px; }
.plan__list { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.plan__list li { padding: 8px 0 8px 26px; position: relative; color: var(--text); font-size: 15px; border-top: 1px solid var(--line-soft); }
.plan__list li:first-child { border-top: 0; }
.plan__list li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }
.pricing__note { text-align: center; color: var(--faint); margin-top: 26px; font-size: 14px; }

/* ===================== SUPPORT ===================== */
.support { padding: 96px 0; position: relative; }
.support__inner {
  position: relative;
  max-width: 760px; margin: 0 auto; text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 56px 44px;
  overflow: hidden;
}
.support__glow {
  position: absolute; inset: 0;
  background: radial-gradient(500px 280px at 50% -10%, rgba(130,115,242,0.22), transparent 65%);
  pointer-events: none;
}
.support__title { font-size: clamp(24px, 3.4vw, 34px); margin: 0 0 18px; line-height: 1.15; position: relative; }
.support__copy { color: var(--muted); font-size: 17px; margin: 0 0 30px; position: relative; }
.support__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.support__small { margin-top: 22px; font-size: 13.5px; color: var(--faint); position: relative; }

/* ===================== FAQ ===================== */
.faq { display: flex; flex-direction: column; gap: 12px; }
.qa {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 4px 22px;
  transition: border-color .2s;
}
.qa[open] { border-color: #353c50; }
.qa summary {
  cursor: pointer; list-style: none; padding: 16px 0;
  font-weight: 600; font-size: 16.5px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: "+"; color: var(--iris-light); font-size: 22px; font-weight: 400; transition: transform .2s; }
.qa[open] summary::after { transform: rotate(45deg); }
.qa p { margin: 0 0 18px; color: var(--muted); font-size: 15.5px; }

/* ===================== FOOTER ===================== */
.footer { border-top: 1px solid var(--line-soft); background: var(--bg-2); padding: 48px 0 38px; }
.footer__inner { display: grid; grid-template-columns: 1fr auto; gap: 30px 40px; align-items: start; }
.footer__tag { color: var(--faint); font-size: 14px; margin: 12px 0 0; }
.footer__links { display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center; }
.footer__links a { color: var(--muted); font-size: 14.5px; transition: color .15s; }
.footer__links a:hover { color: var(--text); }
.footer__legal { grid-column: 1 / -1; color: var(--faint); font-size: 13px; margin: 22px 0 0; border-top: 1px solid var(--line-soft); padding-top: 22px; }

/* ===================== TOAST ===================== */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 120%);
  background: var(--surface-2); border: 1px solid var(--line);
  color: var(--text); padding: 13px 20px; border-radius: 12px;
  font-size: 14.5px; box-shadow: var(--shadow); z-index: 100;
  transition: transform .35s cubic-bezier(.2,.9,.3,1.4); max-width: 90vw;
}
.toast.show { transform: translate(-50%, 0); }

/* ===================== REVEAL ANIM ===================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .demo { transform: none; max-width: 560px; }
  .grid--now, .grid--roadmap, .pricing { grid-template-columns: repeat(2, 1fr); }
  .nav__links { display: none; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav__cta .btn--ghost { display: none; }
  .grid--now, .grid--roadmap, .pricing { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step__arrow { transform: rotate(90deg); }
  .step { max-width: 100%; }
  .support__inner { padding: 40px 24px; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero { padding-top: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
