/* =========================================================
   StreamOverlay — coming soon landing
   ========================================================= */

*,
*::before,
*::after { box-sizing: border-box; }

:root {
  --bg:           #0a0a0c;
  --bg-2:         #0e0e12;
  --surface:      #14141a;
  --surface-2:    #1a1a22;
  --line:         rgba(255,255,255,0.08);
  --line-strong:  rgba(255,255,255,0.14);

  --text:         #ecedef;
  --text-dim:     #a4a6ac;
  --text-mute:    #6e7077;

  --accent:       #86ffb1;       /* mint */
  --accent-2:     #7dd3fc;       /* sky  */
  --accent-3:     #c4b5fd;       /* lilac */
  --accent-warm:  #fbbf24;       /* amber */

  --grad-1:       linear-gradient(135deg, #86ffb1 0%, #7dd3fc 60%, #c4b5fd 100%);
  --grad-soft:    linear-gradient(180deg, rgba(134,255,177,.10), rgba(124,211,252,.04) 60%, transparent);

  --shadow-1:     0 1px 0 rgba(255,255,255,.04) inset, 0 0 0 1px var(--line);
  --shadow-2:     0 30px 60px -20px rgba(0,0,0,.6), 0 0 0 1px var(--line);
  --shadow-glow:  0 0 0 1px rgba(134,255,177,.3), 0 20px 60px -15px rgba(134,255,177,.25);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --ease:      cubic-bezier(.2,.7,.2,1);
  --ease-out:  cubic-bezier(.16,1,.3,1);

  --container:  1180px;
  --gutter:     clamp(20px, 4vw, 40px);

  --font-sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono:  'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-serif: 'Instrument Serif', Georgia, serif;
}

html { -webkit-text-size-adjust: 100%; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
input, button { font-family: inherit; }

::selection { background: rgba(134,255,177,.32); color: #051409; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: 12px; top: -100px;
  background: var(--accent); color: #051409;
  padding: 8px 12px; border-radius: 8px; font-weight: 600;
  z-index: 100; transition: top .2s var(--ease);
}
.skip:focus { top: 12px; }

/* =========================================================
   Background
   ========================================================= */
.bg {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(1000px 600px at 80% -10%, rgba(124,211,252,.08), transparent 60%),
              radial-gradient(800px 600px at -10% 30%, rgba(134,255,177,.07), transparent 60%),
              var(--bg);
}
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
}
.bg-glow {
  position: absolute; width: 720px; height: 720px; border-radius: 50%;
  filter: blur(120px); opacity: .55; mix-blend-mode: screen;
  animation: drift 28s ease-in-out infinite alternate;
}
.bg-glow-1 { top: -240px; left: -160px; background: radial-gradient(circle, rgba(134,255,177,.55), transparent 60%); }
.bg-glow-2 { top: 200px;  right: -240px; background: radial-gradient(circle, rgba(124,211,252,.45), transparent 60%); animation-delay: -12s; }

@keyframes drift {
  0%   { transform: translate3d(0,0,0); }
  100% { transform: translate3d(60px,40px,0); }
}

.bg-noise {
  position: absolute; inset: 0; opacity: .04; mix-blend-mode: overlay; pointer-events: none;
  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.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* =========================================================
   Nav
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 16px var(--gutter);
  max-width: var(--container); margin: 0 auto;
  backdrop-filter: blur(10px);
}
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,12,.7), rgba(10,10,12,.2));
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
body.scrolled .nav::before { border-bottom-color: var(--line); }

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; letter-spacing: -0.01em;
}
.brand-mark { display: inline-flex; }
.brand-name { font-size: 17px; }

.nav-links {
  display: flex; gap: 28px; margin-left: auto; margin-right: 8px;
  font-size: 14px; color: var(--text-dim);
}
.nav-links a {
  position: relative;
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--grad-1); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav { gap: 12px; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--text);
  font-weight: 600; font-size: 14.5px; letter-spacing: -0.005em;
  transition: transform .15s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); border-color: rgba(255,255,255,.22); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.btn-sm { padding: 8px 14px; font-size: 13.5px; border-radius: 8px; }

.btn-primary {
  background: var(--grad-1);
  color: #051409;
  border-color: transparent;
  box-shadow: 0 8px 24px -8px rgba(134,255,177,.45), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn-primary:hover { box-shadow: 0 12px 30px -8px rgba(134,255,177,.6), inset 0 1px 0 rgba(255,255,255,.45); }
.btn-primary .btn-arrow { transition: transform .25s var(--ease); }
.btn-primary:hover .btn-arrow { transform: translateX(3px); }

.btn-ghost { background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,.04); }

/* =========================================================
   Layout helpers
   ========================================================= */
.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 140px) var(--gutter);
}
.section-head {
  max-width: 720px;
  margin: 0 auto clamp(48px, 7vw, 80px);
  text-align: center;
}
.section-head h2 {
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 12px 0 16px;
}
.section-head h2 i { font-style: italic; font-family: var(--font-serif); font-weight: 400; }
.section-head p {
  color: var(--text-dim);
  font-size: 17px;
  margin: 0;
}
.muted { color: var(--text-mute); font-weight: 400; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid rgba(134,255,177,.25);
  border-radius: 999px;
  background: rgba(134,255,177,.06);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 80px) var(--gutter) clamp(60px, 8vw, 120px);
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
}

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  font-size: 13px; color: var(--text-dim);
  font-feature-settings: 'tnum';
}
.pill-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(134,255,177,.18), 0 0 12px rgba(134,255,177,.6);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(134,255,177,.18), 0 0 12px rgba(134,255,177,.6); }
  50%      { box-shadow: 0 0 0 6px rgba(134,255,177,.05), 0 0 18px rgba(134,255,177,.85); }
}

.hero h1 {
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 18px 0 22px;
}

.word-loop {
  position: relative;
  background: var(--grad-1);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  display: inline-block;
}
.loop-arc {
  position: absolute;
  left: -2%; right: -2%;
  bottom: -0.18em;
  width: 104%; height: auto;
  pointer-events: none;
  stroke-dasharray: 480;
  stroke-dashoffset: 480;
  animation: drawArc 2.2s var(--ease-out) .6s forwards;
}
@keyframes drawArc {
  to { stroke-dashoffset: 0; }
}

.lede {
  color: var(--text-dim);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  max-width: 560px;
  margin: 0 0 32px;
}

/* Signup */
.signup {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  max-width: 520px;
  scroll-margin-top: 96px;
  transition: border-color .2s var(--ease), box-shadow .25s var(--ease);
}
.signup:focus-within {
  border-color: rgba(134,255,177,.35);
  box-shadow: 0 0 0 4px rgba(134,255,177,.08), 0 12px 30px -10px rgba(0,0,0,.5);
}
.signup input {
  appearance: none; -webkit-appearance: none;
  background: transparent;
  border: 0;
  padding: 12px 14px;
  color: var(--text);
  font-size: 15.5px;
  outline: none;
  min-width: 0;
}
.signup input::placeholder { color: var(--text-mute); }
.signup .btn { padding: 12px 18px; }
.signup-meta {
  grid-column: 1 / -1;
  font-size: 12.5px;
  color: var(--text-mute);
  margin: 4px 6px 2px;
  font-family: var(--font-mono);
  letter-spacing: 0.01em;
}
.signup.is-success .signup-meta { color: var(--accent); }
.signup.is-error  .signup-meta { color: #ff8b8b; }

@media (max-width: 480px) {
  .signup { grid-template-columns: 1fr; }
  .signup .btn { width: 100%; }
}

.trust {
  display: flex; flex-wrap: wrap; gap: 18px 22px;
  list-style: none; padding: 0; margin: 26px 0 0;
  color: var(--text-dim);
  font-size: 13.5px;
}
.trust li { display: inline-flex; align-items: center; gap: 8px; }
.trust svg { color: var(--accent); flex: 0 0 auto; }

/* =========================================================
   Hero preview — fake OBS scene with looping overlays
   ========================================================= */
.hero-preview { position: relative; }

.scene {
  position: relative;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
  transition: transform .6s var(--ease);
  aspect-ratio: 16 / 10;
}
.hero-preview:hover .scene { transform: perspective(1400px) rotateY(-2deg) rotateX(0deg); }

.scene-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-mute);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.scene-title { margin-left: 6px; }
.scene-rec {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 8px;
  color: #ff8b8b;
  font-weight: 600; letter-spacing: .04em;
}
.rec-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff5d5d;
  box-shadow: 0 0 0 0 rgba(255,93,93,.6);
  animation: rec 1.6s ease-in-out infinite;
}
@keyframes rec {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,93,93,.55); }
  50%      { box-shadow: 0 0 0 8px rgba(255,93,93,0); }
}

.scene-stage {
  position: relative;
  height: calc(100% - 38px);
  background:
    radial-gradient(60% 60% at 30% 35%, rgba(124,211,252,.18), transparent 60%),
    radial-gradient(50% 50% at 75% 60%, rgba(196,181,253,.15), transparent 60%),
    linear-gradient(180deg, #14202a 0%, #0c1219 100%);
  overflow: hidden;
}
.scene-cam {
  position: absolute; inset: 14% 18% 18% 14%;
  border-radius: 12px;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(255,255,255,.18), transparent 60%),
    linear-gradient(135deg, #2a3142 0%, #161922 100%);
  border: 1px solid rgba(255,255,255,.06);
}

/* Cam frame overlay */
.ov-cam {
  position: absolute; inset: 9% 13% 13% 9%;
  pointer-events: none;
}
.ov-cam-frame {
  position: absolute; inset: 0;
  border-radius: 14px;
  border: 2px solid rgba(134,255,177,.55);
  box-shadow: 0 0 0 3px rgba(134,255,177,.06), inset 0 0 30px rgba(134,255,177,.06);
  animation: camFrame 6s linear infinite;
}
@keyframes camFrame {
  0%, 100% {
    border-color: rgba(134,255,177,.55);
    box-shadow: 0 0 0 3px rgba(134,255,177,.06), inset 0 0 30px rgba(134,255,177,.06);
  }
  50% {
    border-color: rgba(124,211,252,.7);
    box-shadow: 0 0 0 4px rgba(124,211,252,.10), inset 0 0 50px rgba(124,211,252,.10);
  }
}
.ov-cam-corner {
  position: absolute; width: 28px; height: 28px;
  border: 2px solid var(--accent);
  animation: cornerPulse 6s linear infinite;
}
.ov-cam-corner-tl { top: -2px;    left: -2px;    border-right: 0; border-bottom: 0; border-top-left-radius: 14px; }
.ov-cam-corner-tr { top: -2px;    right: -2px;   border-left: 0;  border-bottom: 0; border-top-right-radius: 14px; }
.ov-cam-corner-bl { bottom: -2px; left: -2px;    border-right: 0; border-top: 0;    border-bottom-left-radius: 14px; }
.ov-cam-corner-br { bottom: -2px; right: -2px;   border-left: 0;  border-top: 0;    border-bottom-right-radius: 14px; }
@keyframes cornerPulse {
  0%, 100% { border-color: var(--accent); }
  50%      { border-color: var(--accent-2); }
}
.ov-cam-pulse {
  position: absolute; inset: -8px;
  border-radius: 18px;
  border: 1px solid rgba(134,255,177,.4);
  opacity: 0;
  animation: camRing 6s linear infinite;
}
@keyframes camRing {
  0%   { opacity: 0; transform: scale(.96); }
  50%  { opacity: .65; transform: scale(1.02); }
  100% { opacity: 0; transform: scale(1.06); }
}

/* Lower third overlay */
.ov-lower {
  position: absolute;
  left: 6%; right: 6%; bottom: 8%;
  pointer-events: none;
}
.ov-lower-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  background: linear-gradient(90deg, rgba(10,10,12,.85), rgba(10,10,12,.55) 70%, transparent);
  border-left: 3px solid var(--accent);
  backdrop-filter: blur(6px);
  border-radius: 4px;
  max-width: 70%;
}
.ov-lower-eq {
  display: inline-flex; align-items: flex-end; gap: 3px;
  height: 22px;
}
.ov-lower-eq i {
  width: 3px; background: var(--accent); border-radius: 1px;
  animation: eq 1.2s ease-in-out infinite;
}
.ov-lower-eq i:nth-child(1) { height: 40%;  animation-delay: -0.10s; }
.ov-lower-eq i:nth-child(2) { height: 80%;  animation-delay: -0.30s; }
.ov-lower-eq i:nth-child(3) { height: 60%;  animation-delay: -0.55s; }
.ov-lower-eq i:nth-child(4) { height: 100%; animation-delay: -0.80s; }
.ov-lower-eq i:nth-child(5) { height: 50%;  animation-delay: -1.05s; }
@keyframes eq {
  0%, 100% { transform: scaleY(.4); }
  50%      { transform: scaleY(1); }
}
.ov-lower-text { display: grid; }
.ov-lower-text strong {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--accent);
}
.ov-lower-text em {
  font-style: normal;
  font-size: 13px;
  color: #fff;
  font-weight: 600;
}
.ov-lower-progress {
  height: 2px;
  background: rgba(255,255,255,.08);
  margin-top: 4px;
  border-radius: 2px;
  overflow: hidden;
  max-width: 70%;
}
.ov-lower-progress span {
  display: block; height: 100%;
  background: var(--grad-1);
  width: 30%;
  animation: progress 6s linear infinite;
}
@keyframes progress {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(380%); }
}

/* Toast */
.ov-toast {
  position: absolute;
  top: 8%; right: 6%;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 12px 8px 8px;
  background: rgba(10,10,12,.78);
  border: 1px solid rgba(134,255,177,.3);
  border-radius: 999px;
  font-size: 12.5px;
  color: #fff;
  backdrop-filter: blur(6px);
  animation: toast 6s ease-in-out infinite;
  transform: translateX(120%);
  opacity: 0;
}
.ov-toast-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-1);
  color: #051409;
  font-size: 12px; font-weight: 700;
}
.ov-toast-text b { color: var(--accent); margin-right: 4px; }
@keyframes toast {
  0%   { transform: translateX(120%); opacity: 0; }
  10%  { transform: translateX(0);    opacity: 1; }
  60%  { transform: translateX(0);    opacity: 1; }
  75%  { transform: translateX(120%); opacity: 0; }
  100% { transform: translateX(120%); opacity: 0; }
}

.ov-loop-badge {
  position: absolute;
  top: 8%; left: 6%;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10,10,12,.8);
  border: 1px solid var(--line-strong);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  backdrop-filter: blur(6px);
}

/* =========================================================
   Logo strip
   ========================================================= */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.015), transparent);
}
.strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px var(--gutter);
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px 32px;
}
.strip-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.strip-logos {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 18px 32px;
  color: var(--text-dim);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
}
.strip-logos li {
  opacity: .8;
  transition: opacity .2s var(--ease), color .2s var(--ease);
}
.strip-logos li:hover { opacity: 1; color: var(--text); }

/* =========================================================
   Feature grid
   ========================================================= */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  overflow: hidden;
  transition: border-color .25s var(--ease), transform .25s var(--ease), background .3s var(--ease);
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-soft);
  opacity: 0; transition: opacity .3s var(--ease);
  pointer-events: none;
}
.card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}
.card:hover::before { opacity: 1; }

.card-feat h3 {
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 18px 0 6px;
  font-weight: 600;
}
.card-feat p {
  margin: 0;
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.55;
}

.card-icon {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px;
  background: linear-gradient(180deg, rgba(134,255,177,.14), rgba(124,211,252,.06));
  border: 1px solid rgba(134,255,177,.18);
  color: var(--accent);
}

/* =========================================================
   How it works
   ========================================================= */
.section-how { background:
  radial-gradient(900px 400px at 50% 0%, rgba(124,211,252,.05), transparent 60%); }

.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  counter-reset: step;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px 26px;
  overflow: hidden;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 14px;
}
.step h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.step p {
  margin: 0;
  color: var(--text-dim);
  font-size: 14.5px;
}
.step-art {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px dashed var(--line);
}
.chip, .tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .02em;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.02);
  color: var(--text-dim);
}
.chip:hover, .tag:hover { color: var(--text); border-color: rgba(134,255,177,.35); }

.swatch {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15);
}
.s1 { background: linear-gradient(135deg, #86ffb1, #45c97a); }
.s2 { background: linear-gradient(135deg, #7dd3fc, #2563eb); }
.s3 { background: linear-gradient(135deg, #c4b5fd, #7c3aed); }
.s4 { background: linear-gradient(135deg, #fbbf24, #ef4444); }
.s5 { background: linear-gradient(135deg, #f472b6, #be185d); }

/* =========================================================
   Showcase
   ========================================================= */
.showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .showcase { grid-template-columns: 1fr; } }

.show {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--surface);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.show:hover { border-color: var(--line-strong); transform: translateY(-3px); }

.show-canvas {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(60% 60% at 30% 30%, rgba(124,211,252,.16), transparent 60%),
    radial-gradient(50% 50% at 75% 65%, rgba(196,181,253,.14), transparent 60%),
    linear-gradient(180deg, #131a26 0%, #0a0d12 100%);
  overflow: hidden;
}

/* Cam frame demo */
.show-cam-bg {
  position: absolute; inset: 14%;
  border-radius: 14px;
  background: linear-gradient(135deg, #232938, #11141c);
  border: 1px solid rgba(255,255,255,.06);
}
.show-cam-ring {
  position: absolute; inset: 11%;
  border-radius: 18px;
  border: 2px solid rgba(134,255,177,.6);
  animation: showRing 6s linear infinite;
}
@keyframes showRing {
  0%, 100% { border-color: rgba(134,255,177,.6);  box-shadow: inset 0 0 30px rgba(134,255,177,.05); }
  50%      { border-color: rgba(124,211,252,.75); box-shadow: inset 0 0 50px rgba(124,211,252,.10); }
}
.show-cam-glow {
  position: absolute; inset: 11%;
  border-radius: 18px;
  border: 1px solid rgba(134,255,177,.5);
  animation: showRing2 6s linear infinite;
  opacity: 0;
}
@keyframes showRing2 {
  0%   { opacity: 0; transform: scale(.96); }
  50%  { opacity: .6; transform: scale(1.02); }
  100% { opacity: 0; transform: scale(1.08); }
}
.show-cam-tag {
  position: absolute;
  top: 8%; left: 8%;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,77,77,.15);
  color: #ff8b8b;
  border: 1px solid rgba(255,77,77,.4);
}

/* Lower third demo */
.show-lower-bar {
  position: absolute;
  left: 8%; right: 16%; bottom: 18%;
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  background: linear-gradient(90deg, rgba(10,10,12,.88), rgba(10,10,12,.4));
  border-left: 3px solid var(--accent-2);
}
.show-lower-eq {
  display: inline-flex; align-items: flex-end; gap: 3px;
  height: 22px;
}
.show-lower-eq i {
  width: 3px; background: var(--accent-2); border-radius: 1px;
  animation: eq 1.2s ease-in-out infinite;
}
.show-lower-eq i:nth-child(1) { height: 50%;  animation-delay: -0.10s; }
.show-lower-eq i:nth-child(2) { height: 90%;  animation-delay: -0.40s; }
.show-lower-eq i:nth-child(3) { height: 70%;  animation-delay: -0.70s; }
.show-lower-eq i:nth-child(4) { height: 100%; animation-delay: -1.00s; }
.show-lower-eq i:nth-child(5) { height: 60%;  animation-delay: -1.30s; }
.show-lower-eq i:nth-child(6) { height: 80%;  animation-delay: -1.60s; }
.show-lower-text strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--accent-2);
}
.show-lower-text em {
  font-style: normal;
  font-size: 12.5px;
  color: #fff;
  font-weight: 600;
}
.show-lower-line {
  position: absolute;
  left: 8%; right: 16%; bottom: 14%;
  height: 2px; border-radius: 2px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
.show-lower-line span {
  display: block; height: 100%;
  width: 30%;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  animation: progress 4s linear infinite;
}

/* Transition demo */
.show-trans-stripe {
  position: absolute; left: -20%; top: 0; bottom: 0; width: 30%;
  transform: skewX(-22deg);
  animation: stripe 2s linear infinite;
}
.show-trans-stripe-1 { background: linear-gradient(180deg, rgba(134,255,177,.4), rgba(134,255,177,.05)); animation-delay: 0s; }
.show-trans-stripe-2 { background: linear-gradient(180deg, rgba(124,211,252,.4), rgba(124,211,252,.05)); animation-delay: -0.66s; }
.show-trans-stripe-3 { background: linear-gradient(180deg, rgba(196,181,253,.4), rgba(196,181,253,.05)); animation-delay: -1.33s; }
@keyframes stripe {
  0%   { transform: translateX(0)      skewX(-22deg); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateX(560%)   skewX(-22deg); opacity: 0; }
}
.show-trans-text {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: .3em;
  color: rgba(255,255,255,.85);
  font-size: clamp(18px, 3vw, 28px);
  text-shadow: 0 1px 24px rgba(0,0,0,.5);
}

.show-meta {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.015);
}
.show-name { font-weight: 600; font-size: 14.5px; }
.show-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--text-mute);
}

/* =========================================================
   Quote
   ========================================================= */
.section-quote {
  padding-top: 0;
  max-width: 880px;
}
.quote {
  margin: 0;
  padding: clamp(28px, 4vw, 44px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.quote::before {
  content: "\201C";
  position: absolute;
  font-family: var(--font-serif);
  font-size: 220px;
  line-height: 1;
  top: -30px; left: 12px;
  color: rgba(134,255,177,.06);
  pointer-events: none;
}
.quote blockquote {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
}
.quote blockquote em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.quote figcaption {
  display: flex; align-items: center; gap: 14px;
  margin-top: 22px;
  font-size: 14px;
  color: var(--text-dim);
}
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; color: #051409;
  background: var(--grad-1);
}
.quote figcaption b { color: #fff; }
.quote figcaption em { font-style: normal; color: var(--text-mute); }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  max-width: 760px; margin: 0 auto;
  display: grid; gap: 8px;
}
details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 22px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
details[open] { border-color: var(--line-strong); background: var(--surface-2); }
summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "";
  width: 20px; height: 20px;
  border-radius: 50%;
  background:
    linear-gradient(currentColor, currentColor) center / 10px 1.5px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1.5px 10px no-repeat;
  color: var(--text-mute);
  transition: transform .25s var(--ease), color .25s var(--ease);
  flex: 0 0 auto;
}
details[open] summary::after {
  transform: rotate(45deg);
  color: var(--accent);
}
details p {
  margin: 0 0 18px;
  color: var(--text-dim);
  font-size: 15px;
  max-width: 65ch;
}

/* =========================================================
   Bottom CTA
   ========================================================= */
.cta {
  padding: clamp(60px, 9vw, 120px) var(--gutter);
}
.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(36px, 5vw, 56px);
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(134,255,177,.10), transparent 70%),
    var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: ""; position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(134,255,177,.4), transparent 40%, rgba(124,211,252,.4));
  -webkit-mask:
    linear-gradient(#000, #000) content-box,
    linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: .6;
}
.cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  font-weight: 700;
}
.cta p {
  color: var(--text-dim);
  margin: 0 auto 28px;
  max-width: 520px;
}
.signup-lg { margin: 0 auto; max-width: 520px; }

/* =========================================================
   Footer
   ========================================================= */
.footer {
  border-top: 1px solid var(--line);
  padding: 40px var(--gutter) 56px;
  background: var(--bg-2);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px 28px;
  align-items: center;
}
.footer-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700;
}
.footer-tag {
  margin: 0;
  color: var(--text-mute);
  font-size: 14px;
}
.footer-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 22px;
  font-size: 14px;
  color: var(--text-dim);
}
.footer-links a:hover { color: var(--text); }
.footer-fine {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  color: var(--text-mute);
  font-size: 12.5px;
  font-family: var(--font-mono);
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
  .footer-links { flex-wrap: wrap; }
}

/* =========================================================
   Reveal on scroll
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
