: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: 24px;
  --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: Inter, 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.04em; line-height: 1.02; font-weight: 600; }
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: 14px; border: 1px solid transparent;
  font: 600 15px/1 Inter, 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 14px; font-size: 14px; border-radius: 11px; }
.btn-lg { height: 56px; padding: 0 26px; font-size: 16px; border-radius: 16px; }
.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: 700; font-size: 18px; letter-spacing: -0.03em; white-space: nowrap; }
.brand-mark { width: 32px; height: 32px; border-radius: 9px; object-fit: cover; }
.nav-links { display: flex; gap: 28px; font-size: 14.5px; 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: 11px; 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: 11px; 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); }

/* Hero */
.hero { padding: 90px 0 30px; }
.hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(46px, 6.4vw, 84px); font-weight: 600; letter-spacing: -0.05em; line-height: .98; }
.hero h1 em { font-size: 1.08em; }
.lede { margin: 26px 0 32px; font-size: 19px; 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: 18px; margin-top: 34px; color: var(--muted); }
.post-row span { font: 500 11px/1 ui-monospace, Consolas, monospace; letter-spacing: .18em; color: var(--dim); }
.post-row svg { width: 20px; height: 20px; fill: currentColor; transition: color .15s, transform .15s; }
.post-row svg:hover { color: var(--yellow); transform: translateY(-2px); }

.join-card {
  position: relative; overflow: hidden; border-radius: 28px; padding: 28px; min-height: 600px;
  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: -40px; top: -16px; width: 340px; height: 340px; object-fit: cover; border-radius: 50%;
  -webkit-mask-image: radial-gradient(closest-side, #000 62%, transparent 100%); mask-image: radial-gradient(closest-side, #000 62%, transparent 100%);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 50% { transform: translateY(-10px) rotate(-1deg); } }
.join-top, .join-body { position: relative; z-index: 1; }
.join-card h2 { font-size: 64px; font-weight: 600; letter-spacing: -0.05em; }
.join-card h2 em { color: var(--ink); font-size: 1.1em; }
.join-card p { margin: 8px 0 22px; font-weight: 500; font-size: 16px; max-width: 300px; }
.join-row { display: flex; align-items: center; gap: 12px; margin-top: 18px; color: var(--ink); }
.join-row img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(0,0,0,.2); }
.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: 26px; 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; border-radius: 8px; object-fit: cover; }
.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: grid; grid-template-columns: 1fr 320px; }
.app-body video { width: 100%; height: 100%; object-fit: cover; background: #000; min-height: 280px; }
.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: 110px 0; }
.section-head { text-align: center; max-width: 780px; margin: 0 auto 56px; }
.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, 5.4vw, 66px); }
.section-head h2 em { font-size: 1.08em; }
.section-head p { color: var(--muted); font-size: 18px; margin: 20px auto 0; max-width: 560px; }

/* How it works — gradient cards */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.how-card { position: relative; overflow: hidden; border-radius: var(--radius); padding: 0 28px 30px; min-height: 420px; display: flex; flex-direction: column; }
.how-card h3 { font-size: 28px; margin-top: auto; letter-spacing: -0.03em; }
.how-card p { margin: 8px 0 0; font-size: 15.5px; 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: 250px; margin: 0 -28px 14px; display: grid; place-items: center; }
.how-art svg { width: 100%; height: 100%; }
.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; }
.logo-strip { display: flex; align-items: center; justify-content: center; gap: 36px; margin-top: 56px; color: var(--muted); flex-wrap: wrap; }
.logo-strip span { font-size: 14px; color: var(--dim); }
.logo-strip svg { width: 28px; height: 28px; fill: currentColor; opacity: .8; }

/* Features */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px 24px; }
.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 h3 { font-size: 25px; letter-spacing: -0.03em; }
.feature p { color: var(--muted); margin: 10px 0 0; font-size: 15.5px; }
.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); } }

/* 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: 24px; 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: 21px; letter-spacing: -0.02em; }
.benefit p { color: var(--muted); font-size: 14.5px; margin: 6px 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); }

/* Integrations */
.orbit { position: relative; width: min(760px, 100%); aspect-ratio: 2 / 1.2; margin: 0 auto; overflow: hidden; -webkit-mask-image: linear-gradient(transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(transparent, #000 10%, #000 90%, transparent); }
.ring { position: absolute; left: 50%; top: 52%; border: 1px solid var(--line-2); border-radius: 50%; translate: -50% -50%; aspect-ratio: 1; }
.r1 { width: 30%; }
.r2 { width: 58%; border-color: #2e2e2e; border-style: dashed; animation: spin 60s linear infinite; }
.r3 { width: 86%; border-color: #1f1f1f; }
.orbit-core { position: absolute; left: 50%; top: 52%; transform: translate(-50%, -50%); width: 116px; height: 116px; border-radius: 30px; overflow: hidden; border: 2px solid var(--yellow); box-shadow: 0 0 70px -6px rgba(255, 210, 31, .55); }
.orbit-core img { width: 100%; height: 100%; object-fit: cover; }
.tile {
  position: absolute; z-index: 1; left: var(--x); top: var(--y); transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 18px; background: var(--surface); border: 1px solid var(--line-2);
  display: grid; place-items: center; box-shadow: 0 14px 30px -12px #000, inset 0 1px 0 rgba(255,255,255,.06); transition: border-color .2s, transform .2s;
}
.tile svg { width: 28px; height: 28px; fill: var(--text); }
.tile small { position: absolute; top: calc(100% + 6px); font-size: 11.5px; color: var(--dim); white-space: nowrap; font-weight: 500; }
.tile:hover { border-color: var(--yellow); transform: translate(-50%, -54%); }
.tile:hover svg { fill: var(--yellow); }
.center-note { text-align: center; color: var(--muted); margin: 30px auto 22px; max-width: 640px; }

/* Manifesto quote */
.quote { padding: 100px 0; text-align: center; border-block: 1px solid var(--line); background: radial-gradient(50% 80% at 50% 50%, rgba(255, 210, 31, .06), transparent 70%); }
.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 */
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.work-grid figure { margin: 0; }
.work-grid video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); background: #000; }
.work-grid figcaption { margin-top: 16px; color: var(--muted); }
.work-grid figcaption b { display: block; color: var(--text); font-size: 20px; letter-spacing: -0.02em; font-weight: 600; }

/* Pricing */
.pricing .section-head { max-width: 700px; margin-bottom: 60px; }
.pricing .section-head h2 { font-size: clamp(44px, 5.7vw, 82px); line-height: .95; font-weight: 500; }
.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: Inter, 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; }
.price-hero { display: grid; grid-template-columns: 448px 1fr; gap: 32px; align-items: stretch; }
.member-wrap { position: relative; border-radius: 20px; background: #f3f1ec; color: var(--ink); padding: 40px; min-height: 590px; display: flex; flex-direction: column; justify-content: flex-end; }
.member-card { position: absolute; width: 108%; left: -10%; top: 10px; transform: rotate(-14deg); filter: drop-shadow(0 30px 40px rgba(0,0,0,.35)); transition: transform .4s; }
.member-wrap:hover .member-card { transform: rotate(-10deg) translateY(-6px); }
.member-copy { position: relative; }
.member-copy h3 { font-size: 50px; line-height: 1; font-weight: 500; margin-top: 22px; letter-spacing: -0.04em; }
.member-copy h3 em { color: var(--ink); font-size: 1.08em; }
.plan-main { position: relative; overflow: hidden; border-radius: 20px; background: #000; border: 1px solid var(--line-2); padding: 40px; box-shadow: 0 30px 80px -30px rgba(255, 210, 31, .25); }
.plan-main-head { display: flex; justify-content: space-between; align-items: center; }
.plan-main-head h3 { font-size: 30px; font-weight: 500; letter-spacing: -0.03em; }
.tag { font: 600 9.5px ui-monospace, Consolas, monospace; letter-spacing: .12em; color: var(--muted); border: 1px solid var(--line-2); border-radius: 8px; padding: 7px 10px; }
.plan-sep { border-top: 1px dashed var(--line-2); margin: 32px 0 20px; }
.deal { display: inline-block; padding: 8px 12px; border-radius: 999px; background: rgba(255, 106, 19, .12); color: var(--orange); font-size: 14px; font-weight: 500; }
.price { display: flex; align-items: baseline; gap: 6px; margin-top: 20px; }
.price strong { font-size: 56px; font-weight: 500; letter-spacing: -0.045em; line-height: 1; }
.price span { color: var(--muted); font-size: 14px; }
.price s { color: var(--dim); font-size: 38px; font-weight: 500; margin-left: 8px; letter-spacing: -0.03em; }
.price.sm strong { font-size: 40px; }
.plan-sm .price span { font-size: 14px; }
.billed { display: block; margin-top: 8px; color: var(--dim); font-size: 14px; }
.included { position: relative; margin-top: 32px; border: 1px solid var(--line-2); border-radius: 10px; background: linear-gradient(180deg, #1f1f1f, #161616); padding: 32px; }
.inc-tag { position: absolute; top: -11px; left: 22px; background: #222; border: 1px solid var(--line-2); border-radius: 6px; padding: 3px 8px; font: 600 9.5px ui-monospace, Consolas, monospace; letter-spacing: .1em; color: var(--muted); }
.included ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px; font-size: 14px; line-height: 20px; }
.included li, .plan-sm li { display: flex; align-items: center; gap: 10px; }
.included li::before, .plan-sm li::before { content: ""; width: 16px; height: 16px; 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; }
.join-btn { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 16px; margin-top: 32px; padding: 8px 24px 8px 8px; border-radius: 10px; background: #1c1c1c; border: 1px solid var(--line-2); font-weight: 500; font-size: 17px; transition: background .15s, border-color .15s; }
.join-btn:hover { background: #262626; border-color: var(--yellow); }
.jb-icon { width: 54px; height: 54px; border-radius: 12px; overflow: hidden; background: var(--yellow); }
.jb-icon img { width: 100%; height: 100%; object-fit: cover; }
.plan-corner { position: absolute; right: -2px; bottom: -2px; width: 150px; height: 150px; }
.plans-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }
.plan-sm { display: grid; grid-template-columns: 1fr auto; gap: 18px 20px; align-items: center; padding: 40px; border-radius: 20px; background: var(--surface); border: 1px solid var(--line); }
.plan-sm h3 { font-size: 24px; font-weight: 500; }
.plan-sm p { color: var(--muted); margin: 6px 0 0; font-size: 14.5px; }
.plan-sm .price { margin: 0; }
.plan-sm ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px; font-size: 14px; line-height: 20px; color: var(--muted); grid-column: 1 / -1; }
.plan-sm .btn { grid-column: 1 / -1; }
.mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }
.mini { display: flex; gap: 12px; padding: 40px; min-height: 160px; border: 1px dashed var(--line-2); border-radius: 20px; color: var(--muted); }
.mini .icon-lg { color: var(--yellow); }
.mini b { color: var(--text); font-size: 24px; line-height: 26px; font-weight: 500; letter-spacing: -0.02em; }
.mini p { margin: 12px 0 0; font-size: 16px; line-height: 20px; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; }
.faq-title { font-size: clamp(44px, 6vw, 76px); letter-spacing: -0.05em; margin-bottom: 40px; }
.faq-title em { font-size: 1.1em; }
.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: 22px 2px; font-size: 19px; 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: 620px; }
.faq-card { position: sticky; top: 110px; overflow: hidden; border-radius: 28px; padding: 28px; color: #fff; background: radial-gradient(120% 80% at 80% 0%, #ffd21f 0%, #ff9a13 30%, #ff5a0a 60%, #8a1d06 110%); box-shadow: 0 30px 80px -30px rgba(255, 106, 19, .5); }
.faq-avatar { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; object-position: 50% 20%; border: 4px solid rgba(0,0,0,.85); margin-bottom: 28px; }
.faq-card h3 { font-size: 38px; letter-spacing: -0.04em; margin-bottom: 24px; }
.join-row.light { color: #fff; }
.join-row.light .round-arrow { background: #fff; color: var(--ink); }
.join-row.light small { opacity: .8; }

/* 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 420px; gap: 56px; align-items: start; }
.brand-lg { font-size: 24px; }
.brand-lg .brand-mark { width: 40px; height: 40px; border-radius: 11px; }
.closer h2 { font-size: clamp(42px, 5.6vw, 72px); letter-spacing: -0.05em; 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: 24px; 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: 14px; 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: 16px; border: 1px solid var(--line-2); background: #0e0e0e; color: var(--text); font: 500 16px Inter, 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; }
.crowd { display: block; width: min(820px, 100%); margin: 70px 0 -8px calc(50% - var(--shell) / 2); height: auto; }
.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); }

/* 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, .plan-main, .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"] .plan-main { box-shadow: 0 30px 80px -30px rgba(0,0,0,.4); }
[data-theme="light"] .r2 { border-color: var(--line-2); }
[data-theme="light"] .r3 { border-color: var(--line); }
[data-theme="light"] .tile { box-shadow: 0 14px 30px -14px rgba(0,0,0,.22), inset 0 1px 0 #fff; }
[data-theme="light"] .member-wrap { background: #ece6d8; }
[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"] :is(summary:hover, .post-row svg:hover) { color: var(--accent-text); }
[data-theme="light"] .quote { background: radial-gradient(50% 80% at 50% 50%, rgba(255, 210, 31, .16), transparent 70%); }

/* 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; }
  .hero-grid, .closer-grid, .faq-layout, .price-hero { grid-template-columns: 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 { grid-template-columns: 1fr 1fr; }
  .faq-card { position: relative; top: 0; max-width: 480px; }
  .crowd { margin-left: 16px; }
}
@media (max-width: 680px) {
  .section { padding: 80px 0; }
  .lede { font-size: 17px; }
  .how-grid, .feature-grid, .work-grid, .plans-row, .mini-cards { 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: 300px; height: 300px; right: -50px; }
  .member-wrap { min-height: 440px; padding: 24px; }
  .plan-sm, .mini { padding: 26px 22px; min-height: 0; }
  .member-copy h3 { font-size: 42px; }
  .plan-main { padding: 26px 22px; }
  .included ul { grid-template-columns: 1fr; }
  .plan-sm ul { grid-template-columns: 1fr; }
  .price s { font-size: 22px; }
  .tile { width: 48px; height: 48px; border-radius: 14px; }
  .tile svg { width: 22px; height: 22px; }
  .tile small { display: none; }
  .orbit { aspect-ratio: 1 / 1; }
  .orbit-core { width: 80px; height: 80px; border-radius: 22px; }
  .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; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .fx-cap .w1 { opacity: 1; }
}
