:root {
  --bg: #0a0a0a;
  --bg-2: #0f0f0f;
  --surface: #141414;
  --surface-2: #1b1b1b;
  --line: #242424;
  --line-2: #323232;
  --text: #f6f6f4;
  --muted: #a3a3a0;
  --dim: #74746f;
  --yellow: #ffd21f;
  --yellow-2: #ffe36b;
  --orange: #ff6a13;
  --ink: #0b0b0b;
  --accent-text: var(--yellow);
  --nav-bg: rgba(16, 16, 16, .75);
  --radius: 20px;
  --shell: 1120px;
  --serif: "Instrument Serif", Georgia, serif;
  color-scheme: dark;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: Figtree, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; letter-spacing: -0.035em; line-height: 1; font-weight: 500; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; color: var(--accent-text); }
.shell { width: min(var(--shell), 100% - 32px); margin-inline: auto; }
.center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.icon { width: 16px; height: 16px; flex: none; }
.icon.flip { transform: scaleX(-1); }
.icon-lg { width: 26px; height: 26px; flex: none; }

/* Framed page hairlines (Designjoy) */
.frame-lines { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.frame-lines::before, .frame-lines::after { content: ""; position: absolute; top: 0; bottom: 0; width: 1px; background: var(--line); left: calc(50% - var(--shell) / 2 - 40px); }
.frame-lines::after { left: auto; right: calc(50% - var(--shell) / 2 - 40px); }
main, .site-header { position: relative; z-index: 1; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 22px; border-radius: 10px; border: 1px solid transparent;
  font: 500 16px/1 Figtree, sans-serif; cursor: pointer; white-space: nowrap;
  transition: transform .15s, background .15s, box-shadow .2s, border-color .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--yellow); color: var(--ink); box-shadow: inset 0 -3px 0 rgba(0,0,0,.14), inset 0 1px 0 rgba(255,255,255,.5), 0 10px 28px -10px rgba(255, 210, 31, .6); }
.btn-primary:hover { background: var(--yellow-2); }
.btn-dark { background: #000; color: #f6f6f4; border-color: var(--line-2); box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
.btn-ghost, .btn-outline { background: var(--surface); color: var(--text); border-color: var(--line-2); box-shadow: inset 0 1px 0 rgba(255,255,255,.05); }
.btn-ghost:hover, .btn-outline:hover, .btn-dark:hover { border-color: #555; }
.btn-white { background: #fff; color: var(--ink); box-shadow: 0 10px 30px -12px rgba(0,0,0,.5); }
.btn-sm { height: 38px; padding: 0 16px; font-size: 15px; border-radius: 8px; }
.btn-lg { height: 56px; padding: 0 26px; font-size: 18px; border-radius: 10px; }
.btn-xs { height: 28px; padding: 0 12px; font-size: 12px; border-radius: 8px; box-shadow: none; }
.btn-block { width: 100%; }
.pill-dark { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: #000; color: #fff; font-size: 13px; font-weight: 600; }
.pill-dark i { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 8px var(--yellow); }
.round-arrow { width: 36px; height: 36px; border-radius: 50%; background: #fff; color: var(--ink); display: grid; place-items: center; flex: none; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; padding: 14px 16px 0; }
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  width: min(var(--shell), 100%); margin-inline: auto; padding: 9px 9px 9px 16px;
  background: var(--nav-bg); border: 1px solid var(--line); border-radius: 20px;
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 20px; letter-spacing: -0.03em; white-space: nowrap; }
.brand-mark { width: 34px; height: 34px; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(255, 210, 31, .25)); }
.nav-links { display: flex; gap: 28px; font-size: 15px; font-weight: 500; color: var(--muted); }
.nav-links a:hover { color: var(--text); }
.nav-end { display: flex; align-items: center; gap: 8px; }
.menu-toggle { display: none; width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--line-2); background: var(--surface); cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.theme-toggle { width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--line-2); background: var(--surface); color: var(--text); cursor: pointer; display: grid; place-items: center; padding: 0; transition: border-color .15s, color .15s; }
.theme-toggle:hover { border-color: var(--yellow); color: var(--accent-text); }
.theme-toggle .i-moon, [data-theme="light"] .theme-toggle .i-sun { display: none; }
[data-theme="light"] .theme-toggle .i-moon { display: block; }
.menu-toggle span { width: 16px; height: 2px; background: var(--text); border-radius: 2px; }
.mobile-menu { width: min(var(--shell), 100%); margin: 8px auto 0; padding: 10px; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; display: grid; }
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: 12px 14px; border-radius: 12px; font-weight: 500; }
.mobile-menu a:hover { background: var(--surface-2); }
.m-group { display: grid; padding: 6px 0; border-block: 1px solid var(--line); margin: 4px 0; }
.m-group span { padding: 8px 14px 4px; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--dim); }
.m-group a { padding: 9px 14px 9px 24px; color: var(--muted); }
.m-group + .m-group { border-top: 0; margin-top: -4px; }

/* Nav dropdowns */
.nav-links { align-items: center; }
.nav-drop { position: relative; }
.nav-drop-btn { display: inline-flex; align-items: center; gap: 5px; padding: 0; border: 0; background: none; font: inherit; color: inherit; cursor: pointer; }
.nav-drop-btn .icon { width: 15px; height: 15px; transition: transform .2s ease; }
.nav-drop-btn:hover, .nav-drop.open .nav-drop-btn { color: var(--text); }
.nav-drop.open .nav-drop-btn .icon { transform: rotate(180deg); }
.nav-drop::after { content: ""; position: absolute; left: -20px; right: -20px; top: 100%; height: 22px; } /* hover bridge */
.drop-panel {
  position: absolute; top: calc(100% + 20px); left: -24px; width: 400px; padding: 10px;
  display: none; gap: 2px; background: var(--surface); border: 1px solid var(--line); border-radius: 20px;
  box-shadow: 0 24px 60px -18px rgba(0,0,0,.55), 0 2px 8px rgba(0,0,0,.18);
  transform-origin: 40px 0;
}
.nav-drop.open .drop-panel { display: grid; }
.drop-item { display: grid; grid-template-columns: 26px 1fr; gap: 14px; align-items: start; padding: 13px 14px; border-radius: 14px; color: var(--text); transition: background .15s; }
.drop-item:hover, .drop-item:focus-visible { background: var(--surface-2); outline: none; }
.drop-item b { display: block; font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }
.drop-item small { display: block; margin-top: 3px; font-size: 14px; line-height: 1.45; color: var(--muted); }
.drop-ic { width: 24px; height: 24px; margin-top: 1px; color: var(--muted); transition: color .15s; }
.drop-item:hover .drop-ic:not(.brand-ic) { color: var(--accent-text); }
.brand-ic { fill: currentColor; }
.drop-all { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; padding: 15px 14px 9px; border-top: 1px solid var(--line); font-weight: 600; color: var(--text); }
.drop-all .icon { width: 18px; height: 18px; transition: transform .15s; }
.drop-all:hover .icon { transform: translateX(3px); }
.drop-panel .drop-item { opacity: 0; transform: translateY(-4px); transition: background .15s, opacity .2s ease, transform .25s cubic-bezier(.2,.8,.2,1); }
.nav-drop.open .drop-item { opacity: 1; transform: none; }
.nav-drop.open .drop-item:nth-child(2) { transition-delay: 0s, .03s, .03s; }
.nav-drop.open .drop-item:nth-child(3) { transition-delay: 0s, .06s, .06s; }
.nav-drop.open .drop-item:nth-child(4) { transition-delay: 0s, .09s, .09s; }
.nav-drop.open .drop-item:nth-child(5) { transition-delay: 0s, .12s, .12s; }
.nav-drop.open .drop-item:nth-child(6) { transition-delay: 0s, .15s, .15s; }
:is(.feature, .uc-card)[id] { scroll-margin-top: 110px; }
[data-theme="light"] .drop-panel { box-shadow: 0 24px 60px -20px rgba(40,30,10,.25), 0 2px 8px rgba(0,0,0,.06); }

/* Hero */
.hero { padding: 90px 0 30px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(46px, 5.7vw, 82px); font-weight: 500; letter-spacing: -3px; line-height: 78px; max-width: 620px; }
.hero h1 em { font-size: 1.04em; letter-spacing: -1px; }
.lede { margin: 26px 0 32px; font-size: 18px; color: var(--muted); max-width: 540px; line-height: 1.5; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-note { color: var(--dim); margin: 18px 0 0; font-size: 15px; }
.post-row { display: flex; align-items: center; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.post-label { font: 500 11px/1 ui-monospace, Consolas, monospace; letter-spacing: .18em; text-transform: uppercase; color: var(--dim); flex: none; }
.post-icons { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.post-ic { --bg: #111; --fg: #fff; position: relative; width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; background: var(--bg); box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 1px 2px rgba(0,0,0,.18), 0 4px 10px -4px rgba(0,0,0,.35); transition: transform .18s cubic-bezier(.2,.7,.2,1), box-shadow .18s; }
.post-ic svg { width: 17px; height: 17px; fill: var(--fg); }
.post-ic:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 8px 18px -6px rgba(0,0,0,.45); }
.post-ic::after { content: attr(data-name); position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translate(-50%, 4px); padding: 4px 8px; border-radius: 6px; font: 600 11px/1 var(--sans, inherit); white-space: nowrap; color: #fff; background: #111; opacity: 0; pointer-events: none; transition: opacity .15s, transform .15s; }
.post-ic:hover::after { opacity: 1; transform: translate(-50%, 0); }
.pi-tiktok { --bg: #000; }
.pi-youtube { --bg: #ff0033; }
.pi-instagram { --bg: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.pi-threads, .pi-x { --bg: #000; }
.pi-facebook { --bg: #1877f2; }
.pi-snapchat { --bg: #fffc00; --fg: #fff; box-shadow: inset 0 0 0 1px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.18), 0 4px 10px -4px rgba(0,0,0,.35); }
.pi-linkedin { --bg: #0a66c2; }
.pi-kick { --bg: #53fc18; --fg: #fff; }
.pi-snapchat svg,
.pi-kick svg { filter: drop-shadow(0.7px 0 0 #111) drop-shadow(-0.7px 0 0 #111) drop-shadow(0 0.7px 0 #111) drop-shadow(0 -0.7px 0 #111); }
.pi-kick svg { width: 14px; height: 14px; }
.pi-twitch { --bg: #9146ff; }

.join-card {
  position: relative; overflow: hidden; border-radius: 20px; padding: 32px; min-height: 485px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: radial-gradient(120% 70% at 80% 0%, #ffe45c 0%, #ffd21f 30%, #ff9a13 62%, #ff5a0a 100%);
  box-shadow: 0 40px 100px -40px rgba(255, 150, 20, .55), inset 0 1px 0 rgba(255,255,255,.5);
  color: var(--ink);
}
.join-mascot {
  position: absolute; right: 26px; top: 26px; width: 176px; height: 176px; object-fit: contain; transform: rotate(8deg);
  filter: drop-shadow(0 24px 30px rgba(0,0,0,.35));
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: rotate(8deg); } 50% { transform: translateY(-10px) rotate(5deg); } }
.join-top, .join-body { position: relative; z-index: 1; }
.join-card h2 { font-size: 50px; line-height: 50px; font-weight: 500; letter-spacing: -1px; }
.join-card h2 em { color: var(--ink); font-size: 1.1em; }
.join-card p { margin: 10px 0 24px; font-weight: 500; font-size: 16px; line-height: 20px; max-width: 300px; }
.join-row { display: flex; align-items: center; gap: 12px; margin-top: 18px; color: var(--ink); }
.join-row img { width: 46px; height: 46px; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(0,0,0,.25)); }
.join-row span { flex: 1; display: grid; line-height: 1.3; }
.join-row b { font-size: 15px; }
.join-row small { opacity: .65; font-size: 13px; }
.join-row .round-arrow { background: var(--ink); color: #fff; transition: transform .2s; }
.join-row:hover .round-arrow { transform: translateX(3px); }

/* Product frame */
.product { padding: 60px 0 40px; }
.app-frame { border: 1px solid var(--line-2); border-radius: 20px; background: var(--bg-2); overflow: hidden; box-shadow: 0 50px 120px -50px rgba(255, 210, 31, .25), 0 30px 80px -30px #000; }
.app-bar { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: 14px; }
.app-title { display: flex; align-items: center; gap: 10px; font-weight: 600; white-space: nowrap; }
.app-logo { width: 26px; height: 26px; object-fit: contain; }
.app-actions { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 13px; }
.app-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); animation: pulse 1.4s infinite; }
@keyframes pulse { 50% { opacity: .3; } }
.app-body { display: block; }
.app-body video { display: block; width: 100%; aspect-ratio: 16 / 9; height: auto; object-fit: cover; background: #f4f2ec; }
.app-lights { display: inline-flex; gap: 6px; margin-right: 6px; }
.app-lights i { width: 11px; height: 11px; border-radius: 50%; background: #ff5f57; }
.app-lights i:nth-child(2) { background: #febc2e; } .app-lights i:nth-child(3) { background: #28c840; }
.app-chat { border-left: 1px solid var(--line); padding: 18px; display: flex; flex-direction: column; gap: 14px; background: var(--surface); }
.msg-user { align-self: flex-end; background: var(--surface-2); border: 1px solid var(--line-2); padding: 12px 14px; border-radius: 16px 16px 4px 16px; font-size: 13px; }
.steps { display: grid; gap: 8px; }
.step { display: grid; grid-template-columns: 26px 1fr; column-gap: 10px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 14px; font-size: 13px; font-weight: 600; }
.step b { grid-row: span 2; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; background: var(--surface-2); color: var(--muted); }
.step b .icon { width: 13px; height: 13px; }
.step small { color: var(--dim); font-weight: 500; font-size: 11px; }
.step.done b { background: var(--yellow); color: var(--ink); }
.step.active { border-color: rgba(255, 210, 31, .5); }
.step.active b { background: var(--orange); color: #fff; }
.chat-input { margin-top: auto; display: flex; justify-content: space-between; align-items: center; padding: 10px 10px 10px 14px; border: 1px solid var(--line-2); border-radius: 14px; font-size: 13px; color: var(--dim); }
.send { width: 28px; height: 28px; border-radius: 9px; background: var(--yellow); color: var(--ink); display: grid; place-items: center; }
.send .icon { width: 14px; height: 14px; }

/* Sections */
.section { padding: 120px 0; }
#how { padding-bottom: 30px; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.eyebrow { font: 500 12px/1 ui-monospace, "Cascadia Code", Consolas, monospace; letter-spacing: .2em; color: var(--dim); margin-bottom: 18px; }
.section-head h2 { font-size: clamp(38px, 4.6vw, 56px); line-height: 1; letter-spacing: -2px; }
.benefits .section-head h2 { font-size: clamp(44px, 5.7vw, 82px); line-height: .95; letter-spacing: -3px; }
.section-head h2 em { font-size: 1.04em; letter-spacing: -1px; }
.section-head p { color: var(--muted); font-size: 17px; margin: 20px auto 0; max-width: 560px; }

/* How it works — gradient cards */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.how-card { position: relative; overflow: hidden; border-radius: var(--radius); padding: 0 25px 32px; min-height: 440px; display: flex; flex-direction: column; }
.how-card h3 { font-size: 24px; line-height: 26px; margin-top: auto; letter-spacing: -0.02em; }
.how-card p { margin: 12px 0 0; font-size: 16px; line-height: 20px; opacity: .8; }
.how-yellow { background: radial-gradient(90% 70% at 20% 0%, #fff08a, #ffd21f 45%, #ff9a13 100%); color: var(--ink); }
.how-orange { background: radial-gradient(100% 80% at 80% 10%, #ffb04a, #ff6a13 45%, #c2310a 100%); color: #fff; }
.how-chrome { background: radial-gradient(90% 80% at 30% 0%, #f2f4f7, #aeb6c0 38%, #4f5761 80%, #2b3037 100%); color: #fff; }
.how-art { height: 270px; margin: 0 -25px 14px; display: grid; place-items: center; }
.how-art svg { width: 100%; height: 100%; }
/* Deliver card: three real exports playing on phones (same layout as the old SVG, in viewBox %) */
.deliver-phones { position: relative; width: 100%; max-width: 352px; aspect-ratio: 320 / 200; }
.dp { position: absolute; margin: 0; padding: 6px; background: #0b0b0b; border: 2px solid #3a3a3a; border-radius: 16px; box-shadow: 0 18px 30px -14px rgba(0,0,0,.6); }
.dp video { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 10px; background: #1a1a1a; }
.dp-l { left: 19.4%; top: 15%; width: 26.25%; height: 75%; transform: rotate(-10deg); }
.dp-r { left: 64.4%; top: 15%; width: 26.25%; height: 75%; transform: rotate(10deg); }
.dp-c { left: 39.4%; top: 9%; width: 27.5%; height: 80%; border-color: #555; z-index: 1; }
.dp-badge { position: absolute; z-index: 2; left: 61.9%; top: 78.5%; padding: 6px 12px; border-radius: 999px; background: var(--yellow); color: var(--ink); font: 800 11px Figtree, sans-serif; letter-spacing: .02em; white-space: nowrap; box-shadow: 0 8px 18px -8px rgba(0,0,0,.5); }
.upload-svg .progress { animation: grow 3s ease-in-out infinite; transform-origin: 48px 0; }
@keyframes grow { 0% { transform: scaleX(.1); } 70%, 100% { transform: scaleX(1.4); } }
.chips-art { position: relative; overflow: hidden; }
.chip-marquee { display: grid; gap: 10px; width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent); mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent); }
.chip-track { display: flex; gap: 8px; width: max-content; animation: marquee 18s linear infinite; }
.chip-track.rev { animation-direction: reverse; animation-duration: 22s; }
.chip-track span { padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.3); font-size: 13.5px; font-weight: 600; white-space: nowrap; backdrop-filter: blur(6px); }
@keyframes marquee { to { transform: translateX(-50%); } }
.chip-center { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 96px; height: 96px; border-radius: 26px; overflow: hidden; box-shadow: 0 20px 40px -10px rgba(0,0,0,.6), 0 0 0 4px rgba(0,0,0,.85); }
.chip-center img { width: 100%; height: 100%; object-fit: cover; }

/* Features */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 32px; }
.feature-media { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; background: var(--surface); border: 1px solid var(--line); margin-bottom: 22px; transition: border-color .2s, transform .25s; }
.feature:hover .feature-media { border-color: rgba(255, 210, 31, .5); transform: translateY(-4px); }
.feature-media > svg:not(.kit-target) { width: 100%; height: 100%; display: block; }
.feature-video video { display: block; width: 100%; height: 100%; object-fit: cover; }
.fv-tag { position: absolute; left: 10px; bottom: 10px; padding: 4px 9px; border-radius: 999px; font: 500 11px/1.2 ui-monospace, Consolas, monospace; letter-spacing: .04em; color: #fff; background: rgba(10,10,10,.7); backdrop-filter: blur(6px); opacity: 0; transition: opacity .2s; }
.feature:hover .fv-tag { opacity: 1; }
.feature h3 { font-size: 24px; line-height: 26px; letter-spacing: -0.02em; }
.feature p { color: var(--muted); margin: 12px 0 0; font-size: 16px; line-height: 20px; }
.fx-cut .playhead { animation: sweep 4s linear infinite; }
@keyframes sweep { from { transform: translateX(0); } to { transform: translateX(310px); } }
.fx-cut .scissor { animation: pop 4s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.fx-cut .s2 { animation-delay: 1.3s; }
.fx-cut .gap { animation: fade 4s ease-in-out infinite; }
@keyframes pop { 0%, 20% { transform: scale(0); } 30%, 80% { transform: scale(1); } 100% { transform: scale(0); } }
@keyframes fade { 0%, 30% { opacity: 1; } 50%, 85% { opacity: .15; } 100% { opacity: 1; } }
.fx-cap .w { opacity: 0; animation: word 3s steps(1) infinite; }
.fx-cap .w2 { animation-delay: 1s; }
.fx-cap .w3 { animation-delay: 2s; }
@keyframes word { 0% { opacity: 1; } 33.3%, 100% { opacity: 0; } }
.fx-kf .curve { stroke-dasharray: 600; animation: draw 4s ease-in-out infinite; }
@keyframes draw { from { stroke-dashoffset: 600; } 60%, to { stroke-dashoffset: 0; } }
.playhead-2 { animation: sweep2 5s linear infinite; }
@keyframes sweep2 { from { transform: translateX(-120px); } to { transform: translateX(150px); } }
.code-card { display: flex; flex-direction: column; background: radial-gradient(120% 90% at 0% 0%, rgba(255, 210, 31, .08), transparent 60%), #0e0e0e; }
.term-bar { display: flex; align-items: center; gap: 6px; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.term-bar i { width: 10px; height: 10px; border-radius: 50%; background: #333; }
.term-bar i:first-child { background: var(--orange); }
.term-bar i:nth-child(2) { background: var(--yellow); }
.term-bar span { margin-left: auto; font: 11px ui-monospace, Consolas, monospace; color: var(--dim); }
.code-card pre { margin: 0; padding: 18px 20px; font: 500 13px/1.7 ui-monospace, "Cascadia Code", Consolas, monospace; white-space: pre-wrap; }
.code-card .c { color: var(--yellow); }
.code-card .ok { color: #7ee2a8; }
.code-card .dim { color: var(--dim); }
.caret { display: inline-block; width: 8px; height: 15px; background: var(--yellow); vertical-align: -3px; margin-left: 4px; animation: pulse 1s steps(1) infinite; }
.kit-card { display: grid; align-content: center; gap: 18px; padding: 26px; background: radial-gradient(120% 90% at 100% 0%, rgba(255, 106, 19, .12), transparent 60%), var(--surface); }
.kit-row { display: flex; gap: 10px; }
.kit-row i { width: 44px; height: 44px; border-radius: 12px; background: var(--c); border: 1px solid var(--line-2); }
.kit-type { font-size: 44px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.kit-type small { font-size: 13px; font-weight: 500; letter-spacing: 0; color: var(--dim); margin-left: 8px; }
.kit-cap { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.kit-cap b { background: var(--yellow); color: var(--ink); padding: 0 8px; border-radius: 6px; }
.kit-target { position: absolute; right: -26px; bottom: -26px; width: 130px; height: 130px; animation: spin 14s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Use cases */
.uc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.uc-card { --accent: var(--yellow); display: flex; flex-direction: column; padding: 28px; border-radius: 20px; background: var(--surface); border: 1px solid var(--line); transition: border-color .2s, transform .25s; }
.uc-card:hover { border-color: color-mix(in srgb, var(--accent) 55%, transparent); transform: translateY(-4px); }
.uc-twitch { --accent: #9146ff; }
.uc-youtube { --accent: #ff0033; }
.uc-kick { --accent: #53fc18; }
.uc-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 32px; }
.uc-wordmark { display: block; height: 30px; width: auto; color: var(--text); }
.uc-youtube .uc-wordmark { height: 26px; }
.uc-kick .uc-wordmark { height: 24px; }
.uc-eyebrow { font: 500 12px/1 ui-monospace, Consolas, monospace; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); }
.uc-media { position: relative; height: 290px; margin: 22px 0 24px; border-radius: 16px; overflow: hidden; isolation: isolate;
  background: radial-gradient(120% 90% at 50% 110%, color-mix(in srgb, var(--accent) 45%, transparent), transparent 60%), linear-gradient(180deg, #151515, #0b0b0b);
  border: 1px solid #242424; }
.uc-media::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: radial-gradient(#ffffff14 1px, transparent 1px); background-size: 14px 14px;
  mask-image: linear-gradient(180deg, #000, transparent 85%); }
.uc-phone { position: absolute; bottom: -18px; left: 50%; margin: 0; width: 132px; aspect-ratio: 9 / 16; border-radius: 18px; overflow: hidden;
  background: #000; border: 3px solid #1f1f1f; box-shadow: 0 0 0 1px #ffffff1a, 0 24px 40px -12px #000;
  transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.uc-phone video { display: block; width: 100%; height: 100%; object-fit: cover; }
.uc-phone-c { z-index: 2; bottom: 18px; transform: translateX(-50%); box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 70%, transparent), 0 30px 60px -16px #000, 0 0 50px -10px color-mix(in srgb, var(--accent) 60%, transparent); }
.uc-phone-l { transform: translateX(-128%) rotate(-8deg) scale(.86); filter: brightness(.7); }
.uc-phone-r { transform: translateX(28%) rotate(8deg) scale(.86); filter: brightness(.7); }
.uc-card:hover .uc-phone-l { transform: translateX(-138%) rotate(-11deg) scale(.86); }
.uc-card:hover .uc-phone-r { transform: translateX(38%) rotate(11deg) scale(.86); }
.uc-card:hover .uc-phone-c { transform: translateX(-50%) translateY(-6px); }
.uc-card h3 { font-size: 24px; font-weight: 500; letter-spacing: -0.03em; line-height: 1.1; }
.uc-card > p { color: var(--muted); font-size: 16px; line-height: 20px; margin: 12px 0 20px; }
.uc-steps { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 8px; font-size: 14px; }
.uc-steps li { display: flex; align-items: flex-start; gap: 10px; line-height: 22px; }
.uc-steps b { width: 22px; height: 22px; flex: none; border-radius: 50%; display: grid; place-items: center; font-size: 11px; background: var(--surface-2); border: 1px solid var(--line-2); color: var(--muted); }
.uc-link-cta { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--text); }
.uc-link-cta:hover { color: var(--accent-text); }
.uc-link-cta:hover .icon { transform: translateX(3px); }
.uc-link-cta .icon { transition: transform .2s; }

/* Feature card link */
.feature-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-weight: 600; font-size: 15px; color: var(--accent-text); }
.feature-link .icon { transition: transform .15s; }
.feature-link:hover .icon { transform: translateX(3px); }

/* MCP page */
.mcp-hero .shell { text-align: center; }
.mcp-hero-copy { max-width: 980px; margin: 0 auto; }
.mcp-hero .lede { max-width: 640px; }
.mcp-hero h1 { max-width: none; margin-inline: auto; font-size: clamp(42px, 5.4vw, 78px); line-height: .98; letter-spacing: -3px; font-weight: 500; }
.mcp-hero .lede { margin-inline: auto; }
.mcp-hero .hero-actions { justify-content: center; }
.mcp-clients { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 40px; }
.mcp-clients span { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); font-size: 14px; font-weight: 500; }
.mcp-clients svg { width: 17px; height: 17px; fill: currentColor; color: var(--text); }
.mcp-setup { padding-top: 60px; }
.seg-tabs { display: flex; width: max-content; max-width: 100%; margin: 0 auto 28px; padding: 4px; gap: 4px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--line); overflow-x: auto; }
.seg-tabs button { border: 0; background: none; padding: 9px 16px; border-radius: 9px; font: 600 14px Figtree, sans-serif; color: var(--muted); cursor: pointer; white-space: nowrap; }
.seg-tabs button[aria-selected="true"] { background: var(--surface); color: var(--text); box-shadow: 0 1px 3px rgba(0,0,0,.14); }
.mcp-panel[hidden] { display: none; }
.mcp-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 16px; counter-reset: step; }
.mcp-steps li { counter-increment: step; display: grid; align-content: start; gap: 8px; padding: 24px; border-radius: 20px; background: var(--surface); border: 1px solid var(--line); min-width: 0; }
.mcp-steps li::before { content: counter(step); width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--yellow); color: var(--ink); font-weight: 700; margin-bottom: 6px; }
.mcp-steps b { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.mcp-steps small { color: var(--muted); font-size: 14.5px; line-height: 1.5; }
.code { position: relative; margin-top: 4px; }
.code pre { margin: 0; padding: 14px 46px 14px 14px; border-radius: 12px; background: #0b0b0b; color: #f4f2ed; border: 1px solid #262626; font: 12.5px/1.55 ui-monospace, "Cascadia Code", Consolas, monospace; white-space: pre-wrap; word-break: break-all; }
.code button { position: absolute; top: 8px; right: 8px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 8px; border: 0; background: rgba(255,255,255,.1); color: #f4f2ed; cursor: pointer; }
.code button:hover { background: rgba(255,255,255,.2); }
.code button.copied { background: var(--yellow); color: var(--ink); }
.mcp-demo-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 28px; align-items: center; }
.mcp-chat { display: grid; gap: 14px; padding: 24px; border-radius: 24px; background: #0e0e0e; border: 1px solid #262626; color: #f4f2ed; box-shadow: 0 30px 60px -30px rgba(0,0,0,.45); }
.chat-head { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; color: #a3a3a0; }
.chat-head svg { width: 18px; height: 18px; fill: #d97757; }
.bubble { padding: 14px 16px; border-radius: 16px; font-size: 15px; line-height: 1.5; }
.bubble.you { justify-self: end; max-width: 88%; background: #242424; border-bottom-right-radius: 6px; }
.bubble.ai { max-width: 94%; background: #161616; border: 1px solid #262626; border-bottom-left-radius: 6px; }
.calls { display: grid; gap: 6px; }
.calls span { display: flex; align-items: center; gap: 8px; font: 13px ui-monospace, "Cascadia Code", Consolas, monospace; color: #f4f2ed; }
.calls .icon { width: 18px; height: 18px; padding: 3px; border-radius: 50%; background: var(--yellow); color: var(--ink); }
.calls small { font-family: Figtree, sans-serif; color: #74746f; }
.mcp-video { margin: 0; }
.mcp-video video { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 24px; border: 1px solid var(--line); background: #0e0e0e; }
.mcp-video figcaption { margin-top: 12px; color: var(--muted); font-size: 14px; text-align: center; }
.tool-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tool-group { padding: 24px; border-radius: 20px; background: var(--surface); border: 1px solid var(--line); }
.tool-group h3 { font-size: 20px; margin-bottom: 14px; letter-spacing: -0.02em; }
.tool-group ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.tool-group li { display: grid; gap: 3px; color: var(--muted); font-size: 14px; line-height: 1.4; }
.tool-group code { font: 600 13px ui-monospace, "Cascadia Code", Consolas, monospace; color: var(--accent-text); }
#mcp-faq .faq-title { margin-bottom: 40px; }
@media (max-width: 1000px) {
  .mcp-steps, .mcp-demo-grid { grid-template-columns: 1fr; }
  .tool-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .tool-grid { grid-template-columns: 1fr; } .mcp-hero h1 { letter-spacing: -1.5px; } }

/* Sub-pages (brand kits) */
.page-hero { padding: 80px 0 40px; }
.page-hero .eyebrow { margin-bottom: 22px; }
.kit-hero { position: relative; overflow: hidden; aspect-ratio: auto; margin: 0; min-height: 340px; border-radius: 24px; border: 1px solid var(--line); padding: 34px; gap: 22px; box-shadow: 0 30px 60px -30px rgba(0,0,0,.45); }
.kit-hero .kit-row i { width: 54px; height: 54px; border-radius: 14px; }
.kit-hero .kit-type { font-size: 64px; }
.kit-hero .kit-cap { font-size: 28px; }
.kit-label { font: 500 12px/1 ui-monospace, "Cascadia Code", Consolas, monospace; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); }
.kit-parts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 64px; }
.kit-parts div { display: grid; gap: 6px; padding: 22px; border-radius: 18px; background: var(--surface); border: 1px solid var(--line); }
.kit-parts svg { color: var(--accent-text); margin-bottom: 6px; }
.kit-parts b { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.kit-parts small { color: var(--muted); font-size: 14px; line-height: 1.45; }
.page-hero + .benefits { padding-top: 80px; }

/* Benefits carousel */
.benefits { overflow: hidden; }
.carousel { --gutter: max(16px, calc((100% - var(--shell)) / 2)); scroll-padding-inline: var(--gutter); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 4px 0 10px; }
.carousel::-webkit-scrollbar { display: none; }
.carousel-track { display: flex; gap: 24px; width: max-content; padding-inline: var(--gutter); }
.benefit { width: 240px; scroll-snap-align: start; }
.b-tile { aspect-ratio: 1; border-radius: 20px; display: grid; place-items: center; margin-bottom: 18px; position: relative; overflow: hidden; }
.b-tile svg { width: 46%; height: 46%; filter: drop-shadow(0 12px 18px rgba(0,0,0,.35)); transition: transform .3s; }
.benefit:hover .b-tile svg { transform: scale(1.08) rotate(-4deg); }
.t1 { background: radial-gradient(80% 80% at 20% 10%, #ffe45c, #ff9a13 70%, #c2310a); }
.t2 { background: radial-gradient(90% 90% at 80% 0%, #6b7480, #1e2227 80%); }
.t3 { background: radial-gradient(80% 80% at 30% 20%, #ff9a4a, #ff6a13 50%, #1a1a1a 110%); }
.t4 { background: radial-gradient(80% 80% at 70% 20%, #3a3a3a, #111 80%); }
.t5 { background: radial-gradient(80% 80% at 20% 20%, #fff08a, #ffd21f 45%, #ff9a13); }
.t6 { background: radial-gradient(80% 80% at 60% 10%, #e9edf2, #8d96a1 55%, #2b3037); }
.benefit h3 { font-size: 24px; line-height: 26px; letter-spacing: -0.02em; }
.benefit p { color: var(--muted); font-size: 16px; line-height: 20px; margin: 10px 0 0; }
.carousel-nav { display: flex; gap: 10px; margin-top: 28px; }
.circle-btn { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line-2); background: var(--surface); color: var(--text); display: grid; place-items: center; cursor: pointer; transition: border-color .15s, background .15s; }
.circle-btn:hover { border-color: var(--yellow); background: var(--surface-2); }

@media (min-width: 1001px) {
  .carousel { overflow: visible; scroll-snap-type: none; }
  .carousel-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 32px; width: min(var(--shell), 100% - 32px); margin-inline: auto; padding-inline: 0; }
  .benefit { width: auto; }
  .b-tile { aspect-ratio: 16 / 9; }
  .b-tile svg { width: 30%; height: 50%; }
  .carousel-nav { display: none; }
}

/* Manifesto quote */
.quote { padding: 100px 0; text-align: center; border-block: 1px solid var(--line); background: radial-gradient(closest-side, rgba(255, 210, 31, .07), transparent); }
.quote-target { width: 54px; height: 54px; margin: 0 auto 26px; display: block; animation: spin 10s linear infinite; }
.quote blockquote { margin: 0 auto; max-width: 900px; font-family: var(--serif); font-size: clamp(36px, 5vw, 64px); line-height: 1.05; letter-spacing: -0.02em; }
.quote p { color: var(--dim); margin-top: 22px; font: 500 12px ui-monospace, Consolas, monospace; letter-spacing: .18em; text-transform: uppercase; }

/* Work */

/* Pricing */
.pricing .section-head { max-width: 700px; margin-bottom: 60px; }
.pricing .section-head h2 { font-size: clamp(44px, 5.7vw, 82px); line-height: .95; letter-spacing: -3px; }
.pricing .section-head h2 em { font-size: 1.04em; }
.billing-toggle { display: inline-flex; align-items: center; gap: 12px; margin-top: 28px; font-weight: 600; color: var(--dim); }
.billing-toggle .on { color: var(--text); }
.switch { width: 50px; height: 28px; border-radius: 999px; border: 0; background: var(--yellow); position: relative; cursor: pointer; padding: 0; }
.switch i { position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: var(--ink); transition: transform .2s; }
.switch[aria-pressed="true"] i { transform: translateX(22px); }
.switch[aria-pressed="false"] { background: var(--line-2); }
.switch[aria-pressed="false"] i { background: var(--text); }
.save { font-family: Figtree, sans-serif; font-style: normal; font-size: 12px; font-weight: 700; color: var(--ink); background: var(--yellow); padding: 3px 9px; border-radius: 999px; margin-left: 4px; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 40px 32px 32px; border-radius: 20px; background: var(--surface); border: 1px solid var(--line); }
.plan.popular { border: 2px solid var(--yellow); box-shadow: 0 30px 70px -35px rgba(255, 170, 20, .55); }
.plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); padding: 5px 12px; border-radius: 999px; background: var(--yellow); color: var(--ink); font-size: 12px; font-weight: 700; white-space: nowrap; }
.plan h3 { font-size: 30px; font-weight: 500; letter-spacing: -0.03em; }
.price { display: flex; justify-content: center; align-items: baseline; gap: 6px; margin-top: 16px; }
.price strong { font-size: 56px; font-weight: 500; letter-spacing: -0.045em; line-height: 1; }
.price span { color: var(--muted); font-size: 14px; }
.billed { display: block; margin-top: 8px; color: var(--dim); font-size: 13.5px; }
.plan-hl { margin: 18px 0 0; font-weight: 600; font-size: 15px; color: var(--accent-text); }
.plan-desc { margin: 6px 0 0; color: var(--muted); font-size: 14.5px; }
.plan-list { list-style: none; margin: 24px 0 32px; padding: 0; display: grid; gap: 10px; width: 100%; text-align: left; font-size: 15px; }
.plan-list li { display: flex; align-items: flex-start; gap: 10px; line-height: 1.35; }
.plan-list li::before { content: ""; width: 17px; height: 17px; margin-top: 1px; flex: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%23ffd21f'/%3E%3Cpath d='M12 1a11 11 0 0 1 11 11H12Z' fill='%230b0b0b'/%3E%3Cpath d='M12 23A11 11 0 0 1 1 12h11Z' fill='%230b0b0b'/%3E%3C/svg%3E") center / contain no-repeat; }
.plan-list li.no { color: var(--dim); }
.plan-list li.no::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 7l10 10M17 7 7 17' stroke='%23999' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E"); }
.plan .btn { margin-top: auto; }
.plans-note { text-align: center; color: var(--dim); font-size: 14px; margin: 32px 0 0; }
.plans-note a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }

/* FAQ */
.faq-title { font-size: clamp(44px, 5.7vw, 82px); line-height: .95; letter-spacing: -3px; margin-bottom: 48px; text-align: center; }
.faq-title em { font-size: 1.04em; letter-spacing: -1px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 24px 2px; font-size: 20px; font-weight: 500; letter-spacing: -0.015em; transition: color .15s; }
summary:hover { color: var(--yellow); }
summary::-webkit-details-marker { display: none; }
summary i { width: 11px; height: 11px; flex: none; margin-right: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translate(-2px, -2px); transition: transform .2s; }
details[open] summary i { transform: rotate(225deg); }
details p { margin: -6px 0 22px; color: var(--muted); max-width: 720px; }

/* Closer (black band) */
.closer { position: relative; overflow: hidden; background: #000; border-top: 1px solid var(--line); padding: 100px 0 0; }
.closer-grid { display: grid; grid-template-columns: 1fr 390px; gap: 56px; align-items: start; }
.brand-lg { font-size: 24px; }
.brand-lg .brand-mark { width: 44px; height: 44px; }
.closer h2 { font-size: clamp(44px, 5.7vw, 82px); line-height: .95; letter-spacing: -3px; margin-top: 40px; }
.closer h2 em { font-size: 1.08em; }
.closer-copy p { color: var(--muted); font-size: 18px; max-width: 440px; margin-top: 22px; }
.access-panel { border-radius: 20px; background: #161616; border: 1px solid var(--line-2); padding: 22px; }
.panel-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.panel-head b { font-size: 18px; }
.panel-head span { color: var(--dim); font-size: 13px; }
.plan-pick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.plan-pick input { position: absolute; opacity: 0; pointer-events: none; }
.plan-pick span { display: grid; gap: 2px; padding: 12px; border-radius: 10px; border: 1px solid var(--line-2); background: #0e0e0e; cursor: pointer; transition: border-color .15s, background .15s; }
.plan-pick b { font-size: 14px; }
.plan-pick small { color: var(--dim); font-size: 12px; }
.plan-pick input:checked + span { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.plan-pick input:checked + span small { color: rgba(0,0,0,.6); }
.plan-pick input:focus-visible + span { outline: 2px solid var(--yellow); outline-offset: 2px; }
.access-fields { display: grid; gap: 10px; }
.access-fields[hidden] { display: none; }
.access-fields input { height: 56px; border-radius: 10px; border: 1px solid var(--line-2); background: #0e0e0e; color: var(--text); font: 500 16px Figtree, sans-serif; padding: 0 18px; outline: 0; }
.access-fields input::placeholder { color: var(--dim); }
.access-fields input:focus { border-color: var(--yellow); }
.access-error { color: #ff8a65; margin: 12px 0 0; font-size: 14px; }
.access-success { display: flex; align-items: center; gap: 8px; color: var(--yellow); font-weight: 600; margin: 4px 0 0; }
.access-success[hidden], .access-error[hidden], .access-fine[hidden] { display: none; }
.access-fine { color: var(--dim); font-size: 13px; margin: 12px 0 0; text-align: center; }
.closer-bottom { margin-top: 70px; }
.crowd { display: block; width: 100%; max-width: 780px; height: auto; margin-bottom: -1px; }
.updates { margin-bottom: 0; align-self: center; padding: 22px; border-radius: 18px; background: #0c0c0c; border: 1px solid var(--line); }
.updates-head { display: flex; align-items: center; gap: 9px; color: var(--yellow); }
.updates-head b { color: #f6f6f4; font-size: 17px; }
.updates-head .icon { width: 19px; height: 19px; }
.updates > p { color: #a3a3a0; font-size: 14px; line-height: 1.5; margin: 8px 0 16px; }
.updates-row { display: flex; gap: 8px; }
.updates-row[hidden] { display: none; }
.updates-row input { flex: 1; min-width: 0; height: 46px; border-radius: 10px; border: 1px solid #323232; background: #141414; color: #f6f6f4; font: 500 15px Figtree, sans-serif; padding: 0 14px; outline: 0; }
.updates-row input::placeholder { color: #74746f; }
.updates-row input:focus { border-color: var(--yellow); }
.updates-row .btn { height: 46px; padding: 0 16px; font-size: 15px; }
.updates .updates-fine { color: #74746f; font-size: 12.5px; margin: 12px 0 0; }
.updates .updates-fine[hidden] { display: none; }
.dummy { animation: bob 4s ease-in-out infinite; animation-delay: var(--d); transform-box: fill-box; }
@keyframes bob { 50% { transform: translateY(-8px); } }
.footer-base { position: relative; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 26px 0; border-top: 1px solid var(--line); color: var(--dim); font-size: 14px; background: #000; }
.footer-base nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-base a:hover { color: var(--yellow); }


/* Reference belt */
.refs { position: relative; margin: -56px 0 -64px; padding: 0; }
@media (max-width: 680px) { .refs { margin: -32px 0 -40px; } }
.belt { display: grid; grid-template-columns: minmax(0, 1fr); gap: 18px; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.belt-row { min-width: 0; overflow: hidden; padding-block: 8px 20px; margin-block: -8px -20px; }
.belt-track { display: flex; width: max-content; animation: belt var(--belt-dur, 70s) linear infinite; }
.belt-set { display: flex; gap: 18px; padding-right: 18px; flex: none; }
.belt-rev .belt-track { animation-direction: reverse; }
.belt:hover .belt-track { animation-play-state: paused; }
@keyframes belt { to { transform: translateX(calc(-1 * var(--belt-shift, 50%))); } }
.belt-tile { position: relative; margin: 0; flex: none; width: 360px; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden; background: #0b0b0b; border: 1px solid var(--line); box-shadow: 0 14px 30px -18px rgba(0,0,0,.45); transition: transform .3s; }
.belt-tile:hover { transform: scale(1.03); }
.belt-tile video { display: block; width: 100%; height: 100%; object-fit: cover; }
.belt-tile figcaption { position: absolute; left: 10px; bottom: 10px; padding: 5px 10px; border-radius: 999px; font-size: 12px; font-weight: 500; color: #fff; background: rgba(10,10,10,.62); backdrop-filter: blur(8px); opacity: 0; transform: translateY(4px); transition: opacity .2s, transform .2s; }
.belt-tile:hover figcaption { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .belt-track { animation: none; } .belt-row { overflow-x: auto; } }
@media (max-width: 720px) { .belt-tile { width: 240px; border-radius: 12px; } .belt { gap: 12px; } .belt-set { gap: 12px; padding-right: 12px; } }

.refs { scroll-margin-top: 110px; }
.belt-tile { cursor: zoom-in; }
.ref-modal { width: min(1040px, calc(100vw - 32px)); padding: 0; border: 1px solid #2a2a2a; border-radius: 18px; background: #0b0b0b; color: #fff; overflow: hidden; box-shadow: 0 40px 120px -20px rgba(0,0,0,.7); }
.ref-modal::backdrop { background: rgba(5,5,5,.72); backdrop-filter: blur(6px); }
.ref-modal[open] { animation: refIn .28s cubic-bezier(.2,.7,.2,1); }
@keyframes refIn { from { opacity: 0; transform: translateY(12px) scale(.97); } }
.ref-modal video { display: block; width: 100%; aspect-ratio: 16 / 9; background: #000; }
.ref-cap { margin: 0; padding: 14px 18px; font-size: 14px; color: #bdbdb8; }
.ref-cap b { color: #fff; font-weight: 600; margin-right: 8px; }
.ref-close { position: absolute; top: 10px; right: 10px; z-index: 1; width: 36px; height: 36px; border-radius: 50%; border: 0; font-size: 22px; line-height: 1; color: #fff; background: rgba(0,0,0,.6); cursor: pointer; }
.ref-close:hover { background: var(--yellow); color: #0b0b0b; }

/* Light theme — page flips; product "screens", featured plan and the closer stay dark */
[data-theme="light"] {
  --bg: #f7f5f0;
  --bg-2: #efece5;
  --surface: #ffffff;
  --surface-2: #f1eee7;
  --line: #e4e0d7;
  --line-2: #d2cdc2;
  --text: #0b0b0b;
  --muted: #55534e;
  --dim: #7a776f;
  --accent-text: #b87600;
  --nav-bg: rgba(255, 255, 255, .78);
  color-scheme: light;
}
[data-theme="light"] :is(.app-frame, .feature-media, .closer, .footer-base) {
  --bg: #0a0a0a; --bg-2: #0f0f0f; --surface: #141414; --surface-2: #1b1b1b;
  --line: #242424; --line-2: #323232; --text: #f6f6f4; --muted: #a3a3a0; --dim: #74746f;
  --accent-text: var(--yellow);
  color: var(--text); color-scheme: dark;
}
[data-theme="light"] .footer-base { color: var(--dim); }
[data-theme="light"] .app-frame { box-shadow: 0 50px 120px -50px rgba(255, 170, 20, .35), 0 30px 70px -35px rgba(0,0,0,.45); }
[data-theme="light"] .feature-media { border-color: transparent; }
[data-theme="light"] .btn-ghost, [data-theme="light"] .btn-outline { box-shadow: 0 1px 2px rgba(0,0,0,.06); }
[data-theme="light"] .btn-ghost:hover, [data-theme="light"] .btn-outline:hover { border-color: var(--dim); }
[data-theme="light"] summary:hover { color: var(--accent-text); }
[data-theme="light"] .quote { background: radial-gradient(closest-side, rgba(255, 210, 31, .18), transparent); }

/* Responsive */
@media (max-width: 1240px) { .frame-lines { display: none; } }
@media (max-width: 1000px) {
  .nav-links, .nav-demo { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero { padding-top: 50px; }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; gap: 32px; }
  .hero-grid, .closer-grid { grid-template-columns: minmax(0, 1fr); }
  .join-card { max-width: 480px; width: 100%; }
  .app-body { grid-template-columns: 1fr; }
  .app-chat { border-left: 0; border-top: 1px solid var(--line); }
  .how-grid, .feature-grid, .kit-parts { grid-template-columns: 1fr 1fr; }
  .uc-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .closer-bottom { grid-template-columns: 1fr; gap: 36px; }
  .updates { max-width: 480px; }
}
@media (max-width: 680px) {
  .hero h1 { line-height: .98; letter-spacing: -0.045em; }
  .join-card h2 { font-size: 42px; line-height: 44px; }
  .section { padding: 80px 0; }
  .lede { font-size: 17px; }
  .how-grid, .feature-grid { grid-template-columns: 1fr; }
  .how-card { min-height: 380px; }
  .join-card { min-height: 560px; padding: 24px; }
  .join-card h2 { font-size: 52px; }
  .join-mascot { width: 150px; height: 150px; right: 20px; top: 20px; }
  .app-status { display: none; }
  summary { font-size: 17px; }
  .plan-pick span { padding: 10px 8px; }
  .benefit { width: 210px; }
}
@media (max-width: 440px) {
  .nav-cta { display: none; }
  .post-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .post-icons { max-width: 100%; gap: 6px; }
  .post-ic { width: 28px; height: 28px; border-radius: 8px; }
  .post-ic svg { width: 15px; height: 15px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .fx-cap .w1 { opacity: 1; }
}
