:root {
  --bg: #0d090f;
  --bg-2: #150f18;
  --surface: rgba(255, 255, 255, .045);
  --surface-2: rgba(255, 255, 255, .08);
  --stroke: rgba(255, 255, 255, .11);
  --text: #f8eff4;
  --muted: #b8a6b2;
  --hot: #ff5fa2;
  --hot-2: #ff8fc0;
  --good: #7ef0b5;
  --bad: #ff7a7a;
  --ink: #170d15;
  --chrome: linear-gradient(100deg, #ffd6ea 0%, #d9c4ff 28%, #a8ecff 52%, #fff0c2 74%, #ffc2df 100%);
  --radius: 22px;
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--bg); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}
/* film grain */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 100; opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg { max-width: 100%; display: block; }
a { color: var(--hot-2); }
a:hover { color: #fff; }
::selection { background: var(--hot); color: #fff; }
:focus-visible { outline: 3px solid var(--hot-2); outline-offset: 3px; border-radius: 8px; }
[id] { scroll-margin-top: 84px; }

.skip { position: absolute; left: -9999px; top: 8px; background: #fff; color: var(--ink); padding: 8px 14px; border-radius: 8px; z-index: 200; }
.skip:focus { left: 8px; }

.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }

.chrome-text {
  background: var(--chrome); background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 8s linear infinite;
}
@keyframes shimmer { to { background-position: -200% 0; } }

.serif { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: 0; }

/* Cursor glow (desktop only, set up in JS) */
.glow {
  position: fixed; left: 0; top: 0; width: 520px; height: 520px; margin: -260px 0 0 -260px;
  border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(255, 95, 162, .16), rgba(168, 236, 255, .06) 45%, transparent 70%);
  transform: translate3d(-999px, -999px, 0); transition: opacity .3s;
}

/* Header */
.site-header { position: fixed; inset: 0 0 auto; z-index: 50; padding: 14px 0; transition: background .3s, backdrop-filter .3s; }
.site-header.scrolled { background: rgba(13, 9, 15, .72); backdrop-filter: blur(14px) saturate(1.3); border-bottom: 1px solid var(--stroke); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; }
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; }
.logo:hover { color: var(--text); }
.logo-mark { width: 38px; height: 38px; flex: none; overflow: visible; transition: transform .4s cubic-bezier(.2,.9,.3,1.5);
  filter: drop-shadow(0 6px 16px rgba(255, 95, 162, .5)); animation: polishHue 7s ease-in-out infinite alternate; }
@keyframes polishHue { to { filter: drop-shadow(0 6px 18px rgba(168, 236, 255, .45)) hue-rotate(-28deg); } }
.logo:hover .logo-mark { transform: rotate(-10deg) scale(1.08); }
.lm-spark, .lm-glint { transform-box: fill-box; transform-origin: center; }
.lm-spark { animation: twinkle 3.2s ease-in-out infinite; }
.lm-glint { animation: glint 2.6s ease-in-out infinite; }
.logo:hover .lm-spark { animation-duration: .9s; }
@keyframes twinkle { 0%, 100% { transform: scale(1) rotate(0); } 50% { transform: scale(.74) rotate(45deg); } }
@keyframes glint { 0%, 100% { opacity: .15; transform: scale(.4) rotate(0); } 50% { opacity: 1; transform: scale(1.15) rotate(90deg); } }
.logo-word { font: 800 21px/1 var(--display); letter-spacing: -.035em; white-space: nowrap; }
.logo-ai { margin-left: 2px; font: italic 400 1.22em/1 var(--serif); letter-spacing: 0; padding-right: .08em;
  background: var(--chrome); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 6s linear infinite; }
@media (max-width: 380px) { .logo-word { font-size: 18px; } .logo-mark { width: 32px; height: 32px; } }

.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px; border-radius: 999px; border: 0; cursor: pointer;
  font: 800 16px/1 var(--sans); text-decoration: none; color: var(--ink);
  background: var(--chrome); background-size: 200% 100%;
  box-shadow: 0 10px 40px -10px rgba(255, 95, 162, .55), inset 0 1px 0 rgba(255,255,255,.6);
  transition: transform .2s ease, box-shadow .2s ease, background-position .6s ease;
}
.btn:hover { color: var(--ink); background-position: 100% 0; transform: translateY(-2px); box-shadow: 0 16px 50px -10px rgba(255, 95, 162, .75), inset 0 1px 0 rgba(255,255,255,.6); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-small { min-height: 42px; padding: 0 18px; font-size: 14px; }
.btn-ghost { background: transparent; color: var(--text); box-shadow: inset 0 0 0 1.5px var(--stroke); }
.btn-ghost:hover { color: var(--text); background: var(--surface-2); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.3); }

/* Hero */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: 120px 0 80px; overflow: hidden; isolation: isolate; }
.aurora { position: absolute; inset: -20% -10% auto; height: 120%; z-index: -1; filter: blur(70px) saturate(1.3); opacity: .75; }
.aurora span { position: absolute; border-radius: 50%; mix-blend-mode: screen; animation: drift 18s ease-in-out infinite alternate; }
.aurora span:nth-child(1) { width: 46vw; height: 46vw; left: 48%; top: 6%; background: #b0306f; }
.aurora span:nth-child(2) { width: 36vw; height: 36vw; left: 66%; top: 34%; background: #3b3aa8; animation-delay: -6s; }
.aurora span:nth-child(3) { width: 30vw; height: 30vw; left: 30%; top: 40%; background: #5e1f58; animation-delay: -12s; }
@keyframes drift { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-6vw, 4vh) scale(1.15); } 100% { transform: translate(4vw, -3vh) scale(.95); } }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 200px; background: linear-gradient(transparent, var(--bg)); z-index: -1; }

.hero .wrap { display: grid; gap: 64px; align-items: center; }
@media (min-width: 960px) { .hero .wrap { grid-template-columns: 1.12fr .88fr; } }

.pill {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 28px;
  padding: 7px 14px 7px 8px; border-radius: 999px; background: var(--surface); border: 1px solid var(--stroke);
  font-size: 14px; font-weight: 700; color: var(--muted); backdrop-filter: blur(8px);
}
.pill .dot { width: 22px; height: 22px; border-radius: 50%; background: var(--hot); display: grid; place-items: center; }
.pill .dot::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 50% { transform: scale(.55); opacity: .6; } }

h1, h2, h3 { margin: 0; font-weight: 800; }
h1 {
  font-family: var(--display); font-size: clamp(50px, 8.6vw, 96px);
  line-height: .92; letter-spacing: -.045em;
}
h1 .serif { font-size: 1.08em; letter-spacing: -.02em; }
.lead { font-size: clamp(18px, 2vw, 21px); color: var(--muted); max-width: 32em; margin: 28px 0 36px; }
.lead strong { color: var(--text); font-weight: 700; }
.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.hero-meta {
  list-style: none; margin: 34px auto 0; padding: 6px; width: fit-content; max-width: 100%;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-radius: 22px; border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  backdrop-filter: blur(12px); box-shadow: 0 20px 50px -30px rgba(255,95,162,.5), inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-meta li { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 12px 18px; position: relative; }
.hero-meta li + li::before { content: ""; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px; background: var(--stroke); }
.hero-meta b { display: block; font: 800 17px/1.15 var(--display); letter-spacing: -.01em; color: var(--text); white-space: nowrap; }
.hero-meta small { display: block; font-size: 13px; line-height: 1.3; color: var(--muted); white-space: nowrap; }
.mi { flex: none; width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
  background: var(--chrome); background-size: 200% 100%; animation: shimmer 7s linear infinite;
  box-shadow: 0 6px 18px -6px rgba(255,95,162,.6), inset 0 1px 0 rgba(255,255,255,.7); }
.hero-meta li:nth-child(2) .mi { animation-delay: -2.3s; }
.hero-meta li:nth-child(3) .mi { animation-delay: -4.6s; }
.mi svg { width: 20px; height: 20px; fill: none; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero-meta li:hover .mi { transform: rotate(-8deg) scale(1.08); transition: transform .3s cubic-bezier(.2,.9,.3,1.5); }
@media (max-width: 600px) {
  .hero-meta { width: 100%; grid-template-columns: repeat(3, 1fr); }
  .hero-meta li { flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 12px 8px; }
  .hero-meta b { font-size: 15px; }
  .hero-meta small { font-size: 12px; white-space: normal; }
  .mi { width: 32px; height: 32px; border-radius: 10px; }
  .mi svg { width: 17px; height: 17px; }
}

/* Phone */
.stage { position: relative; perspective: 1400px; display: grid; place-items: center; padding: 20px 0; }
.phone {
  position: relative; width: min(330px, 86vw); aspect-ratio: 9 / 18.5;
  border-radius: 48px; padding: 11px;
  background: linear-gradient(145deg, #3a2b36, #120c11 40%, #2a1f28);
  box-shadow: 0 60px 120px -30px rgba(255, 95, 162, .45), 0 0 0 1.5px rgba(255,255,255,.12), inset 0 0 0 1.5px rgba(255,255,255,.06);
  transform: rotateY(-14deg) rotateX(6deg) rotateZ(1deg);
  transform-style: preserve-3d; transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.phone::before { content: ""; position: absolute; top: 20px; left: 50%; width: 92px; height: 26px; margin-left: -46px; background: #000; border-radius: 999px; z-index: 3; }
.screen { position: relative; height: 100%; border-radius: 38px; overflow: hidden; background: linear-gradient(180deg, #fff 0, #fbf4f7 100%); color: var(--ink); display: flex; flex-direction: column; }
.chat-top { display: flex; align-items: center; gap: 10px; padding: 58px 16px 12px; border-bottom: 1px solid #efe3ea; }
.avatar { width: 36px; height: 36px; border-radius: 50%; flex: none; padding: 2px; background: conic-gradient(#ffb347, #ff5fa2, #8a5cff, #ffb347); }
.avatar::after { content: ""; display: block; width: 100%; height: 100%; border-radius: 50%; border: 2px solid #fff; background: linear-gradient(135deg, #f7c6d9, #c9a6ff); }
.chat-top b { display: block; font-size: 14px; line-height: 1.2; }
.chat-top small { font-size: 12px; color: #1c9c5b; font-weight: 700; }
.chat { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; gap: 7px; padding: 14px 12px 18px; overflow: hidden; }
.msg { max-width: 84%; padding: 9px 13px; border-radius: 20px; font-size: 13.5px; line-height: 1.38; animation: msgIn .35s cubic-bezier(.2,.9,.3,1.2) both; }
.msg.in { align-self: flex-start; background: #efe6eb; border-bottom-left-radius: 6px; }
.msg.out { align-self: flex-end; color: #fff; background: linear-gradient(135deg, #ff5fa2, #8a5cff); border-bottom-right-radius: 6px; }
.msg.typing { display: inline-flex; gap: 4px; padding: 13px 14px; }
.msg.typing i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.9); animation: bounce 1s infinite; }
.msg.typing i:nth-child(2) { animation-delay: .15s; }
.msg.typing i:nth-child(3) { animation-delay: .3s; }
@keyframes bounce { 30% { transform: translateY(-4px); opacity: .6; } }
@keyframes msgIn { from { opacity: 0; transform: translateY(10px) scale(.96); } }

.float {
  position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 16px; font-size: 13px; font-weight: 700; line-height: 1.25; white-space: nowrap;
  background: rgba(24, 16, 23, .72); border: 1px solid var(--stroke); backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.8);
  animation: bob 6s ease-in-out infinite;
}
.float small { display: block; font-weight: 500; color: var(--muted); }
.float .ico { width: 30px; height: 30px; border-radius: 10px; display: grid; place-items: center; font-size: 15px; background: var(--surface-2); }
.f1 { top: 12%; left: -2%; }
.f2 { top: 46%; right: -4%; animation-delay: -2s; }
.f3 { bottom: 8%; left: 2%; animation-delay: -4s; }
@keyframes bob { 50% { transform: translateY(-10px); } }
@media (max-width: 560px) { .f1 { left: -4px; top: 4%; } .f2 { right: -4px; } .f3 { left: 0; bottom: 2%; } .float { font-size: 12px; padding: 8px 11px; } }

.toast {
  position: absolute; z-index: 5; left: 50%; top: 21%;
  display: flex; align-items: center; gap: 12px; padding: 12px 16px 12px 12px; border-radius: 18px;
  background: #fff; color: var(--ink); font-size: 14px; font-weight: 800; white-space: nowrap;
  box-shadow: 0 30px 60px -20px rgba(126, 240, 181, .55), 0 0 0 1px rgba(0,0,0,.05);
  opacity: 0; transform: translate(-50%, -24px) scale(.9); transition: opacity .4s, transform .5s cubic-bezier(.2,.9,.3,1.3);
  pointer-events: none;
}
.toast small { display: block; color: #6f5c69; font-weight: 600; font-size: 12px; }
.toast .ico { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; background: #d8fbe8; font-size: 17px; }
.toast.show { opacity: 1; transform: translate(-50%, 0) scale(1); }
.mock-caption { text-align: center; font-size: 13px; color: var(--muted); margin-top: 18px; }

/* Marquee */
.marquee { padding: 36px 0 28px; border-block: 1px solid var(--stroke); overflow: hidden; }
.marquee p.caption { text-align: center; color: var(--muted); font-size: 15px; margin: 18px 20px 0; }
.track { display: flex; gap: 14px; width: max-content; animation: scroll 50s linear infinite; }
.track + .track { margin-top: 14px; animation-direction: reverse; animation-duration: 60s; }
.track .dup { display: contents; }
.marquee:hover .track { animation-play-state: paused; }
.bubble { flex: none; padding: 12px 20px; border-radius: 999px; background: var(--surface); border: 1px solid var(--stroke); font-weight: 600; white-space: nowrap; }
.bubble.hot { background: rgba(255, 95, 162, .14); border-color: rgba(255, 95, 162, .35); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* Sections */
section { position: relative; padding: 110px 0; }
.kicker { font: 800 13px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--hot-2); margin: 0 0 18px; }
h2 { font-family: var(--display); font-size: clamp(38px, 5.6vw, 72px); line-height: .98; letter-spacing: -.04em; }
.section-head { max-width: 780px; margin-bottom: 56px; }
.section-head p:not(.kicker) { color: var(--muted); font-size: 19px; margin: 20px 0 0; max-width: 36em; }

/* Before / after */
.compare { display: grid; gap: 20px; }
@media (min-width: 880px) { .compare { grid-template-columns: 1fr 1fr; } }
.lane { position: relative; border-radius: 28px; padding: 30px 26px 26px; border: 1px solid var(--stroke); background: var(--surface); overflow: hidden; }
.lane.with { background: linear-gradient(160deg, rgba(255,95,162,.14), rgba(138,92,255,.08) 60%, rgba(255,255,255,.03)); border-color: rgba(255,95,162,.3); }
.lane h3 { font: 800 20px/1.2 var(--display); letter-spacing: -.01em; display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.lane h3 .tag { font: 800 11px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; padding: 6px 9px; border-radius: 999px; background: var(--surface-2); color: var(--muted); }
.lane.with h3 .tag { background: var(--hot); color: #fff; }
.events { list-style: none; margin: 0; padding: 0 0 0 22px; border-left: 2px dashed var(--stroke); display: grid; gap: 18px; }
.lane.with .events { border-left-style: solid; border-left-color: rgba(255,95,162,.5); }
.events li { position: relative; }
.events li::before { content: ""; position: absolute; left: -29px; top: 7px; width: 12px; height: 12px; border-radius: 50%; background: var(--bg-2); border: 2px solid var(--muted); }
.lane.with .events li::before { border-color: var(--hot); background: var(--hot); }
.events time { font: 800 14px/1 var(--display); color: var(--muted); letter-spacing: .02em; }
.events p { margin: 4px 0 0; }
.events .q { font-style: italic; color: var(--text); }
.result { margin-top: 26px; padding: 14px 18px; border-radius: 16px; font: 800 18px/1.3 var(--display); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.result small { font: 600 14px/1.3 var(--sans); opacity: .8; }
.result.bad { background: rgba(255,122,122,.1); color: var(--bad); }
.result.good { background: rgba(126,240,181,.12); color: var(--good); }
.compare-note { color: var(--muted); font-size: 14px; margin-top: 16px; }

/* Steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; counter-reset: s; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li { counter-increment: s; position: relative; padding: 34px 28px 30px; border-radius: 28px; background: var(--surface); border: 1px solid var(--stroke); overflow: hidden; transition: transform .3s, border-color .3s; }
.steps li:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.22); }
.steps li::before {
  content: "0" counter(s); display: block; margin-bottom: 40px;
  font: 800 76px/.8 var(--display); letter-spacing: -.05em;
  background: var(--chrome); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent;
}
.steps h3 { font: 800 22px/1.2 var(--display); letter-spacing: -.01em; margin-bottom: 10px; }
.steps p { margin: 0; color: var(--muted); }

/* Scope */
.scope { display: grid; gap: 20px; }
@media (min-width: 860px) { .scope { grid-template-columns: 1.2fr 1fr; } }
.scope-card { border-radius: 28px; padding: 32px 28px; border: 1px solid var(--stroke); background: var(--surface); }
.scope-card h3 { font: 800 22px/1.2 var(--display); margin-bottom: 18px; }
.scope-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.scope-card li { display: grid; grid-template-columns: 26px 1fr; gap: 10px; color: var(--muted); }
.scope-card li b { color: var(--text); font-weight: 700; }
.scope-card li::before { content: "✓"; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; font-weight: 800; font-size: 13px; background: rgba(126,240,181,.14); color: var(--good); }
.scope-card.handoff li::before { content: "↗"; background: rgba(255,95,162,.14); color: var(--hot-2); }

/* Join */
.join .wrap { display: grid; gap: 48px; }
@media (min-width: 980px) { .join .wrap { grid-template-columns: .9fr 1.1fr; align-items: start; } .join .sticky { position: sticky; top: 110px; } }
.price { display: flex; align-items: baseline; gap: 12px; margin: 34px 0 6px; }
.price b { font: 800 clamp(96px, 12vw, 150px)/.8 var(--display); letter-spacing: -.06em; }
.price > span { color: var(--muted); font-size: 18px; font-weight: 600; }
.includes { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 12px; }
.includes li { display: flex; gap: 12px; align-items: center; font-weight: 600; }
.includes li::before { content: "✓"; flex: none; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 800; background: var(--chrome); color: var(--ink); }
.fine { color: var(--muted); font-size: 15px; margin-top: 28px; max-width: 30em; }

.form-card {
  position: relative; border-radius: 32px; padding: 30px 22px; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.03));
  border: 1px solid var(--stroke); backdrop-filter: blur(20px);
  box-shadow: 0 50px 100px -40px rgba(255,95,162,.35);
}
.form-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: var(--chrome); background-size: 200% 100%; animation: shimmer 6s linear infinite; }
@media (min-width: 560px) { .form-card { padding: 40px 38px; } }
.form-card h3 { font: 800 32px/1.05 var(--display); letter-spacing: -.03em; margin-bottom: 6px; }
.form-card > p { margin: 0 0 26px; color: var(--muted); }

.field { margin: 0 0 20px; padding: 0; border: 0; min-width: 0; }
.field > label, .field legend { display: block; font-weight: 700; font-size: 15px; margin-bottom: 8px; padding: 0; }
.hint { font-weight: 500; color: var(--muted); }
.field input[type=text], .field input[type=email] {
  width: 100%; min-height: 52px; font: 600 16px/1.3 var(--sans); color: var(--text);
  padding: 0 16px; border-radius: 14px; border: 1.5px solid var(--stroke); background: rgba(0,0,0,.25);
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder { color: #7f6d79; }
.field input:focus { border-color: var(--hot); outline: none; box-shadow: 0 0 0 4px rgba(255,95,162,.2); }
.field [aria-invalid=true], .field[aria-invalid=true] .chips { border-color: var(--bad); }
.field[aria-invalid=true] legend { color: var(--bad); }
.row-2 { display: grid; gap: 0 14px; }
@media (min-width: 560px) { .row-2 { grid-template-columns: 1fr 1fr; } }

.chips { display: flex; flex-wrap: wrap; gap: 8px; border-radius: 16px; border: 1.5px solid transparent; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.chip span {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 16px; border-radius: 999px;
  border: 1.5px solid var(--stroke); background: rgba(0,0,0,.2); font-size: 15px; font-weight: 600; color: var(--muted);
  transition: all .15s ease; user-select: none;
}
.chip:hover span { border-color: rgba(255,255,255,.3); color: var(--text); }
.chip input:checked + span { background: var(--chrome); background-size: 200% 100%; color: var(--ink); border-color: transparent; font-weight: 800; }
.chip input:focus-visible + span { outline: 3px solid var(--hot-2); outline-offset: 2px; }

.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--muted); margin: 4px 0 22px; cursor: pointer; }
.consent input { width: 22px; height: 22px; margin: 1px 0 0; accent-color: var(--hot); flex: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-card .btn { width: 100%; min-height: 58px; font-size: 17px; }
.form-card .btn[disabled] { opacity: .6; cursor: progress; transform: none; }
.form-status { margin: 14px 0 0; font-weight: 700; min-height: 1.4em; }
.form-status.error { color: var(--bad); }

.success { text-align: center; padding: 30px 0 10px; }
.success .burst { width: 84px; height: 84px; margin: 0 auto 22px; border-radius: 28px; display: grid; place-items: center; font-size: 40px; background: var(--chrome); animation: pop .6s cubic-bezier(.2,.9,.3,1.4) both; }
.success .big { font: 800 40px/1.05 var(--display); letter-spacing: -.03em; margin: 0 0 12px; }
.success p { color: var(--muted); }
@keyframes pop { from { transform: scale(.3) rotate(-20deg); opacity: 0; } }

/* FAQ */
.faq-list { display: grid; gap: 12px; max-width: 860px; }
.faq-list details { border-radius: 20px; border: 1px solid var(--stroke); background: var(--surface); transition: background .2s, border-color .2s; }
.faq-list details[open] { background: var(--surface-2); border-color: rgba(255,255,255,.2); }
.faq-list summary { cursor: pointer; list-style: none; padding: 22px 60px 22px 24px; position: relative; font: 700 18px/1.35 var(--display); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; width: 30px; height: 30px; margin-top: -15px; border-radius: 50%;
  display: grid; place-items: center; font: 400 22px/1 var(--sans); background: var(--surface-2); transition: transform .25s ease, background .25s;
}
.faq-list details[open] summary::after { transform: rotate(45deg); background: var(--hot); }
.faq-list details p { margin: 0; padding: 0 24px 22px; color: var(--muted); }

/* Final CTA */
.final { text-align: center; padding: 120px 0 130px; overflow: hidden; isolation: isolate; }
.final::before { content: ""; position: absolute; left: 50%; top: 50%; width: 900px; height: 500px; margin: -250px 0 0 -450px; z-index: -1; background: radial-gradient(closest-side, rgba(255,95,162,.3), transparent); filter: blur(30px); }
.final h2 { font-size: clamp(44px, 8vw, 110px); margin-bottom: 36px; }

/* Footer */
.site-footer { padding: 32px 0 44px; border-top: 1px solid var(--stroke); font-size: 15px; color: var(--muted); }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; align-items: center; }
.site-footer nav { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.site-footer a:not(.btn) { color: var(--muted); }
.site-footer a:not(.btn):hover { color: var(--text); }

/* Reveal on scroll (only when JS runs) */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.js .reveal.in { opacity: 1; transform: none; }

/* Simple pages */
.page { padding: 56px 0 90px; }
.page .wrap { max-width: 760px; }
.page h1 { font-size: clamp(42px, 7vw, 72px); margin: 48px 0 24px; }
.page h2 { font-size: 28px; margin: 40px 0 10px; letter-spacing: -.02em; }
.page p, .page li { color: var(--muted); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  .track { flex-wrap: wrap; width: auto; justify-content: center; padding: 0 20px; }
  .track .dup { display: none; }
  .glow { display: none; }
}

/* ===== Themed motion ===== */

/* Nail-polish brush stroke under a headline word */
.brush { position: relative; display: inline-block; }
.brush svg { position: absolute; left: -3%; bottom: -.1em; width: 106%; height: .32em; overflow: visible; pointer-events: none; }
.brush path { fill: none; stroke: url(#polish); stroke-width: 9; stroke-linecap: round; stroke-dasharray: 420; stroke-dashoffset: 420; }
.js .brush.go path { animation: paint 1.1s cubic-bezier(.6,.1,.2,1) forwards; }
@keyframes paint { to { stroke-dashoffset: 0; } }

/* Glitter particles */
.glitter { position: fixed; left: 0; top: 0; width: var(--s, 8px); height: var(--s, 8px); pointer-events: none; z-index: 150;
  background: var(--c, #fff); clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  animation: glitter var(--t, .9s) cubic-bezier(.15,.7,.3,1) forwards; }
@keyframes glitter {
  from { transform: translate(-50%, -50%) scale(.4) rotate(0); opacity: 1; }
  to { transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1) rotate(var(--r, 180deg)); opacity: 0; }
}

/* Instagram-style reaction on a chat bubble */
.msg { position: relative; }
.react { position: absolute; right: -6px; bottom: -12px; font-size: 13px; line-height: 1; padding: 3px 5px; border-radius: 999px;
  background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.15); animation: reactIn .5s cubic-bezier(.2,.9,.3,1.6) both; }
@keyframes reactIn { from { transform: scale(0) rotate(-30deg); } }

/* Marquee: questions get "answered" as they pass */
.bubble { position: relative; transition: background .4s, border-color .4s, color .4s; }
.bubble::after { content: "✓ atsakyta"; position: absolute; top: -10px; right: 10px; padding: 3px 8px; border-radius: 999px;
  font: 800 10px/1 var(--sans); letter-spacing: .04em; background: var(--good); color: var(--ink);
  opacity: 0; transform: translateY(6px) scale(.8); transition: opacity .3s, transform .4s cubic-bezier(.2,.9,.3,1.5); }
.bubble.answered { border-color: rgba(126,240,181,.5); color: var(--text); }
.bubble.answered::after { opacity: 1; transform: none; }

/* Before/after timeline plays at different speeds */
.compare.anim .events li { opacity: 0; transform: translateX(-12px); transition: opacity .5s ease, transform .5s ease; }
.compare.anim .events li.on { opacity: 1; transform: none; }
.compare.anim .events li::before { transform: scale(0); transition: transform .4s cubic-bezier(.2,.9,.3,1.6); }
.compare.anim .events li.on::before { transform: scale(1); }
.compare.anim .result { opacity: 0; transform: scale(.92); transition: opacity .5s, transform .5s cubic-bezier(.2,.9,.3,1.4); }
.compare.anim .result.on { opacity: 1; transform: none; }
.result.bad.on { animation: shake .5s .5s both; }
@keyframes shake { 20%, 60% { transform: translateX(-6px); } 40%, 80% { transform: translateX(6px); } }
.wait { display: flex; align-items: center; gap: 8px; margin: -8px 0 22px; font-size: 14px; color: var(--muted); }
.wait b { font: 800 16px/1 var(--display); color: var(--text); font-variant-numeric: tabular-nums; }
.wait .clock { width: 18px; height: 18px; border-radius: 50%; border: 2px solid currentColor; position: relative; flex: none; }
.wait .clock::before, .wait .clock::after { content: ""; position: absolute; left: 50%; top: 50%; width: 2px; background: currentColor; transform-origin: 50% 0; border-radius: 2px; }
.wait .clock::before { height: 5px; transform: translate(-50%, 0) rotate(180deg); }
.wait .clock::after { height: 6px; transform: translate(-50%, 0) rotate(180deg); }
.wait.spin .clock::after { animation: tick .6s linear infinite; }
.wait.spin.slow .clock::before { animation: tick 4s linear infinite; }
@keyframes tick { from { transform: translate(-50%, 0) rotate(180deg); } to { transform: translate(-50%, 0) rotate(540deg); } }
.lane:not(.with) .wait { color: var(--bad); }
.lane.with .wait { color: var(--good); }

/* Staggered reveals */
.steps li.reveal:nth-child(2), .scope-card.reveal:nth-child(2), .lane.reveal:nth-child(2) { transition-delay: .12s; }
.steps li.reveal:nth-child(3) { transition-delay: .24s; }
.includes li { opacity: 1; }
.js .sticky:not(.in) .includes li { opacity: 0; transform: translateX(-10px); }
.js .sticky .includes li { transition: opacity .5s, transform .5s; }
.js .sticky.in .includes li:nth-child(2) { transition-delay: .1s; }
.js .sticky.in .includes li:nth-child(3) { transition-delay: .2s; }
.js .sticky.in .includes li:nth-child(4) { transition-delay: .3s; }
.js .sticky.in .includes li:nth-child(5) { transition-delay: .4s; }

/* Step numbers shimmer on hover */
.steps li:hover::before { animation: shimmer 2s linear infinite; }

/* Final CTA: floating polish bottles & sparkles */
.final .deco { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.final .deco span { position: absolute; font-size: 28px; opacity: .55; animation: bob 7s ease-in-out infinite; filter: drop-shadow(0 10px 20px rgba(255,95,162,.4)); }
.final .deco span:nth-child(1) { left: 10%; top: 22%; }
.final .deco span:nth-child(2) { right: 12%; top: 30%; animation-delay: -2s; font-size: 34px; }
.final .deco span:nth-child(3) { left: 18%; bottom: 18%; animation-delay: -4s; font-size: 22px; }
.final .deco span:nth-child(4) { right: 20%; bottom: 14%; animation-delay: -1s; }
@media (max-width: 640px) { .final .deco span { font-size: 20px !important; } }

@media (prefers-reduced-motion: reduce) {
  .brush path { stroke-dashoffset: 0; }
  .bubble::after { display: none; }
  .js .sticky:not(.in) .includes li { opacity: 1; transform: none; }
}

/* BETA pricing */
.beta-badge { display: inline-flex; align-items: center; gap: 8px; margin: 30px 0 0; padding: 7px 14px 7px 10px; border-radius: 999px;
  font: 800 13px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
  background: var(--chrome); background-size: 200% 100%; animation: shimmer 6s linear infinite;
  box-shadow: 0 8px 24px -8px rgba(255,95,162,.6); }
.beta-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--hot); animation: pulse 1.6s ease-in-out infinite; }
.price { margin-top: 18px; flex-wrap: wrap; }
.js .sticky:not(.in) .js .sticky .beta-note { margin: 10px 0 0; font-size: 15px; color: var(--muted); max-width: 28em; }
.beta-note b { color: var(--text); }

/* Contact button (email assembled by JS, not in page source) */
.mail-btn { gap: 8px; }
.mail-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s cubic-bezier(.2,.9,.3,1.5); }
.mail-btn:hover svg { transform: rotate(-10deg) translateY(-1px); }
.mail-btn::before { content: ""; position: absolute; inset: -1.5px; border-radius: inherit; padding: 1.5px; pointer-events: none;
  background: var(--chrome); background-size: 200% 100%; animation: shimmer 6s linear infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: .7; transition: opacity .2s; }
.mail-btn:hover::before { opacity: 1; }

/* ===== Centered layout ===== */
.hero .wrap > div:first-child { text-align: center; }
.hero .lead { margin-left: auto; margin-right: auto; }

.section-head { text-align: center; margin-left: auto; margin-right: auto; }
.section-head p:not(.kicker) { margin-left: auto; margin-right: auto; }
.compare-note { text-align: center; }

.steps li { text-align: center; }
.scope-card h3 { text-align: center; }
.scope-card ul { width: fit-content; max-width: 100%; margin: 0 auto; }
.lane h3, .lane .wait { justify-content: center; }

.join .sticky { text-align: center; }
.join .price { justify-content: center; }
.join .includes { width: fit-content; max-width: 100%; margin-left: auto; margin-right: auto; text-align: left; }
.join .beta-note, .join .fine { margin-left: auto; margin-right: auto; }
.form-card > h3, .form-card > p { text-align: center; }

.faq-list { margin: 0 auto; }

.site-footer .wrap { justify-content: center; text-align: center; flex-direction: column; gap: 16px; }
.site-footer nav { justify-content: center; }

.page h1 { text-align: center; }
.page .logo { display: flex; width: fit-content; margin: 0 auto; }
.page .wrap > p:has(> .btn) { text-align: center; }

/* FAQ extras */
.faq-list details p a { color: var(--hot-2); }
.faq-list details p b { color: var(--text); }
.faq-more { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 40px; text-align: center; }
.faq-more p { margin: 0; color: var(--muted); font-weight: 600; }
