:root {
  --bg: #000;
  --text: #fff;
  --muted: #a6a6a6;
  --soft: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.12);
  --frost: rgba(255,255,255,.09);
  --frost-strong: rgba(255,255,255,.16);
  --blue: #0099ff;
  --pink: #ff4fd8;
  --violet: #8b5cf6;
  --green: #9cff6b;
  --radius: 28px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(0,153,255,.24), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(255,79,216,.22), transparent 28%),
    radial-gradient(circle at 50% 55%, rgba(139,92,246,.16), transparent 34%),
    #000;
  min-height: 100vh;
  overflow-x: hidden;
}
.noise { position: fixed; inset: 0; pointer-events: none; opacity: .18; z-index: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; }
a { color: inherit; text-decoration: none; }
.section-shell { width: min(calc(100% - 36px), var(--max)); margin: 0 auto; position: relative; z-index: 1; }
.nav {
  position: sticky; top: 14px; z-index: 10; width: min(calc(100% - 36px), var(--max)); margin: 14px auto 0;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 10px 12px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(0,0,0,.62); backdrop-filter: blur(18px); box-shadow: 0 20px 80px rgba(0,0,0,.34);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.04em; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--pink)); font-family: 'Azeret Mono', monospace; font-size: 12px; letter-spacing: -.08em; }
.vip { color: var(--blue); }
.nav nav { display: flex; gap: 8px; align-items: center; }
.nav nav a { padding: 11px 14px; color: var(--soft); border-radius: 999px; font-size: 14px; transition: .2s ease; }
.nav nav a:hover { color: #fff; background: var(--frost); }
.hero { min-height: calc(100vh - 72px); display: grid; grid-template-columns: 1.02fr .98fr; gap: 48px; align-items: center; padding: 70px 0 96px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--soft); font: 600 12px/1 'Azeret Mono', monospace; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 22px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 24px var(--green); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(58px, 9vw, 118px); line-height: .82; letter-spacing: -.075em; margin: 0 0 28px; max-width: 860px; text-wrap: balance; }
h2 { font-size: clamp(38px, 6vw, 76px); line-height: .9; letter-spacing: -.06em; margin-bottom: 22px; text-wrap: balance; }
h3 { font-size: 24px; letter-spacing: -.04em; margin-bottom: 10px; }
.lede { color: var(--soft); font-size: clamp(18px, 2vw, 22px); line-height: 1.45; max-width: 680px; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.button { border: 0; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border-radius: 999px; font-weight: 700; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: #000; background: #fff; box-shadow: 0 0 0 1px rgba(255,255,255,.18), 0 20px 80px rgba(255,255,255,.12); }
.button.ghost { color: #fff; background: var(--frost); border: 1px solid var(--line); }
.microcopy { color: var(--muted); font-size: 14px; line-height: 1.5; }
.hero-card { position: relative; border-radius: 32px; border: 1px solid rgba(255,255,255,.16); background: linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.045)); box-shadow: inset 0 1px rgba(255,255,255,.2), 0 40px 140px rgba(0,0,0,.7); padding: 14px; overflow: hidden; }
.hero-card::before { content: ''; position: absolute; inset: -40%; background: conic-gradient(from 180deg, transparent, rgba(0,153,255,.28), transparent, rgba(255,79,216,.24), transparent); animation: spin 14s linear infinite; opacity: .7; }
.hero-card > * { position: relative; z-index: 1; }
.mock-toolbar { display: flex; align-items: center; gap: 7px; padding: 10px 12px 14px; color: var(--muted); font: 500 11px/1 'Azeret Mono', monospace; }
.mock-toolbar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.24); }
.mock-toolbar span:first-child { background: #ff5f57; } .mock-toolbar span:nth-child(2) { background: #ffbd2e; } .mock-toolbar span:nth-child(3) { background: #28c840; }
.mock-toolbar p { margin: 0 0 0 8px; }
.photo-stage { min-height: 520px; border-radius: 24px; border: 1px solid rgba(255,255,255,.12); background: radial-gradient(circle at 50% 25%, rgba(255,79,216,.34), transparent 28%), radial-gradient(circle at 50% 75%, rgba(0,153,255,.3), transparent 35%), linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.02)); position: relative; overflow: hidden; }
.person { position: absolute; display: grid; place-items: center; gap: 8px; padding: 12px; border-radius: 24px; background: rgba(0,0,0,.52); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(12px); box-shadow: 0 18px 70px rgba(0,0,0,.38); }
.face { display: grid; place-items: center; width: 82px; height: 82px; border-radius: 24px; font-size: 36px; background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.52)); color: #111; }
.person span { font: 600 11px/1 'Azeret Mono', monospace; color: var(--soft); text-transform: uppercase; }
.original { left: 50%; top: 42%; transform: translate(-50%, -50%) scale(1.18); z-index: 3; }
.p1 { left: 7%; top: 24%; transform: rotate(-9deg); } .p2 { right: 7%; top: 20%; transform: rotate(8deg); } .p3 { left: 50%; bottom: 8%; transform: translateX(-50%) rotate(2deg); }
.flash { position: absolute; border-radius: 50%; filter: blur(16px); opacity: .85; }
.flash-a { width: 120px; height: 120px; background: var(--blue); left: 12%; bottom: 18%; } .flash-b { width: 110px; height: 110px; background: var(--pink); right: 10%; bottom: 25%; }
.prompt-box { margin-top: 12px; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: rgba(0,0,0,.58); padding: 18px; }
.prompt-label { color: var(--blue); font: 600 11px/1 'Azeret Mono', monospace; text-transform: uppercase; }
.prompt-box p { margin: 8px 0 0; color: var(--soft); line-height: 1.45; }
.steps, .vibe, .subscribe { padding: 96px 0; }
.steps > h2 { max-width: 860px; }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.step-grid article, .vibe-list div, .subscribe-panel { border: 1px solid var(--line); background: rgba(255,255,255,.06); border-radius: var(--radius); padding: 28px; box-shadow: inset 0 1px rgba(255,255,255,.1); }
.step-grid span { color: var(--blue); font: 600 12px/1 'Azeret Mono', monospace; }
.step-grid p, .vibe-list span, .subscribe p { color: var(--muted); line-height: 1.55; }
.vibe { display: grid; grid-template-columns: .95fr 1.05fr; gap: 30px; align-items: start; }
.vibe-list { display: grid; gap: 14px; }
.vibe-list div { display: grid; gap: 8px; }
.vibe-list strong { font-size: 20px; letter-spacing: -.03em; }
.subscribe-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; align-items: center; background: radial-gradient(circle at 15% 0%, rgba(0,153,255,.18), transparent 38%), rgba(255,255,255,.07); }
.subscribe-form label { display: block; color: var(--soft); font-weight: 700; margin-bottom: 12px; }
.input-row { display: flex; gap: 10px; padding: 8px; border: 1px solid rgba(255,255,255,.15); background: rgba(0,0,0,.55); border-radius: 999px; }
input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; color: #fff; padding: 0 16px; font: 500 16px/1 'Inter', sans-serif; }
input::placeholder { color: rgba(255,255,255,.4); }
.status { min-height: 22px; margin: 12px 10px 0; font-size: 13px; }
.status.success { color: var(--green); }
.status.error { color: #ff7a90; }
button:disabled { opacity: .62; cursor: wait; transform: none !important; }
.footer { display: flex; justify-content: space-between; gap: 16px; padding: 48px 0 36px; color: var(--muted); border-top: 1px solid var(--line); }
.reveal { opacity: 0; transform: translateY(24px); animation: reveal .75s ease forwards; }
.hero-card.reveal { animation-delay: .12s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 860px) {
  .nav nav { display: none; }
  .hero, .vibe, .subscribe-panel { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; gap: 28px; }
  .photo-stage { min-height: 430px; }
  .step-grid { grid-template-columns: 1fr; }
  .input-row { border-radius: 28px; flex-direction: column; }
  input { min-height: 48px; }
  .footer { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition: none !important; }
}
