:root {
  --bg: #0b0f1a;
  --surface: #1a1f2e;
  --card: #141824;
  --glass: rgba(255, 255, 255, 0.04);
  --stroke: rgba(255, 255, 255, 0.08);
  --green: #38fa94;
  --green-dim: rgba(56, 250, 148, 0.14);
  --blue: #4794ff;
  --violet: #8c59ff;
  --run: #fb7533;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --faint: rgba(255, 255, 255, 0.42);
  --max: 1120px;
  --radius: 16px;
  --radius-lg: 24px;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --display: "Syne", var(--font);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* Atmosphere */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(720px 520px at 15% -5%, rgba(56, 250, 148, 0.14), transparent 70%),
    radial-gradient(560px 420px at 88% 20%, rgba(71, 148, 255, 0.1), transparent 68%),
    radial-gradient(400px 320px at 50% 100%, rgba(140, 89, 255, 0.07), transparent 70%),
    var(--bg);
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black, transparent 80%);
}

.gradient-text {
  background: linear-gradient(120deg, var(--green), #b8ffe0 40%, var(--blue) 75%, var(--green));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: none; }

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.25s, border-color 0.25s, backdrop-filter 0.25s;
}
.nav.scrolled {
  background: rgba(11, 15, 26, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--stroke);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
}
.logo em {
  font-style: normal;
  color: var(--green);
}
.nav-cta {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  background: var(--green);
  color: #041208;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(56, 250, 148, 0.35);
}

/* Hero */
.hero {
  padding: 120px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.hero-copy {
  min-width: 0;
  max-width: 100%;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 40px; }
  .hero { padding: 132px 0 80px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(56, 250, 148, 0.28);
  background: var(--green-dim);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 22px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  50% { opacity: 0.5; }
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.35rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
}

.hero-lead {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 34rem;
  margin: 0 0 28px;
  line-height: 1.65;
}

/* Intent toggle */
.intent-toggle {
  position: relative;
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--stroke);
  margin-bottom: 16px;
}
.intent-btn {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  position: relative;
  z-index: 1;
}
.intent-btn.active {
  background: var(--green);
  color: #041208;
  font-weight: 700;
}
.intent-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 4px 20px rgba(56, 250, 148, 0.35);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 0;
}
/* When JS slider is active, let the pill carry the fill */
.intent-toggle.has-slider .intent-btn.active {
  background: transparent;
}

/* Capture form */
.capture-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 440px;
  width: 100%;
}
@media (min-width: 520px) {
  .capture-form.row {
    flex-direction: row;
    align-items: stretch;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--stroke);
    backdrop-filter: blur(12px);
  }
  .capture-form.row .capture-input {
    border: 0;
    background: transparent;
    flex: 1;
    min-width: 0;
  }
  .capture-form.row .capture-btn {
    border-radius: 999px;
    white-space: nowrap;
  }
}

/* Hero waitlist: plain stack on phone, pill row + glow on desktop only */
.capture-form--hero {
  width: 100%;
  max-width: 440px;
}

.capture-form--hero .capture-input,
.capture-form--hero .capture-btn {
  min-width: 0;
  max-width: 100%;
}

@media (min-width: 520px) {
  #waitlistFormHero.capture-form--hero {
    flex-direction: row;
    align-items: stretch;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--stroke);
    backdrop-filter: blur(12px);
    position: relative;
    isolation: isolate;
  }

  #waitlistFormHero.capture-form--hero::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--green), var(--blue), var(--violet), var(--green));
    background-size: 300% 300%;
    animation: borderGlow 6s linear infinite;
    z-index: -1;
    opacity: 0.55;
    pointer-events: none;
  }

  #waitlistFormHero.capture-form--hero::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 999px;
    background: rgba(11, 15, 26, 0.92);
    z-index: -1;
    pointer-events: none;
  }

  #waitlistFormHero.capture-form--hero .capture-input {
    border: 0;
    background: transparent;
    flex: 1;
    min-width: 0;
    box-shadow: none;
  }

  #waitlistFormHero.capture-form--hero .capture-input:focus {
    box-shadow: none;
  }

  #waitlistFormHero.capture-form--hero .capture-btn {
    border-radius: 999px;
    white-space: nowrap;
    width: auto;
  }
}

.capture-input {
  width: 100%;
  padding: 15px 18px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.capture-input:focus {
  border-color: rgba(56, 250, 148, 0.45);
  box-shadow: 0 0 0 3px rgba(56, 250, 148, 0.12);
}
.capture-input::placeholder { color: var(--faint); }

.capture-btn {
  border: 0;
  border-radius: 14px;
  padding: 15px 22px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  background: var(--green);
  color: #041208;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}
.capture-btn:hover:not(:disabled) { transform: translateY(-1px); }
.capture-btn:disabled { opacity: 0.65; cursor: wait; }

.capture-meta {
  font-size: 0.8125rem;
  color: var(--faint);
  margin: 12px 0 0;
}
.capture-status {
  font-size: 0.875rem;
  margin: 10px 0 0;
  min-height: 1.25em;
}
.capture-status.ok { color: var(--green); }
.capture-status.err { color: #ff7b7b; }

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}
.avatar-stack {
  display: flex;
}
.avatar-stack span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: #041208;
}
.avatar-stack span:first-child { margin-left: 0; }
.trust-row p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
}
.trust-row strong { color: var(--text); }

/* Phone */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 12px 0 24px;
}
.phone-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,250,148,0.2), transparent 70%);
  filter: blur(40px);
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.phone {
  position: relative;
  width: min(300px, 88vw);
  aspect-ratio: 9 / 19.2;
  border-radius: 42px;
  padding: 10px;
  background: linear-gradient(145deg, #2a3040, #0e1118);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.12);
  transition: transform 0.15s ease-out;
  animation: floatPhone 5s ease-in-out infinite;
  transform-style: preserve-3d;
  will-change: transform;
}
.phone-wrap:hover .phone {
  animation: none;
}
.phone-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(56, 250, 148, 0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 4s ease-in-out infinite;
  pointer-events: none;
}
.phone-ring::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(71, 148, 255, 0.12);
  animation: ringPulse 4s ease-in-out infinite 0.6s;
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.35; transform: translate(-50%, -50%) scale(0.96); }
  50% { opacity: 0.85; transform: translate(-50%, -50%) scale(1.04); }
}
@keyframes floatPhone {
  50% { transform: translateY(-10px); }
}
.phone-screen {
  position: relative;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: var(--bg);
}
.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 24px;
  border-radius: 999px;
  background: #000;
  z-index: 5;
}
.app-ui {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 36px 12px 10px;
}
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.app-title {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 800;
}
.app-pill {
  font-size: 0.625rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(56,250,148,0.15);
  color: var(--green);
}
.app-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.app-screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.35s, transform 0.35s;
  overflow-y: auto;
  scrollbar-width: none;
}
.app-screen.active {
  opacity: 1;
  transform: none;
}
.app-screen::-webkit-scrollbar { display: none; }

.demo-card {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid var(--stroke);
  background: var(--card);
}
.demo-card-hero {
  height: 72px;
  position: relative;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.demo-card-hero.gym { background: linear-gradient(135deg, #c45c4a, #5a2830); }
.demo-card-hero.pilates { background: linear-gradient(135deg, #3d9a8a, #1e3d38); }
.demo-card-hero.run { background: linear-gradient(135deg, #fb7533, #5a3018); }
.demo-card-hero.steps { background: linear-gradient(135deg, #38fa94, #1a4a38); }
.demo-card-hero .tag {
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}
.demo-card-hero .pot {
  font-size: 1.25rem;
  font-weight: 900;
  font-family: var(--display);
}
.demo-card-body { padding: 10px 12px 12px; }
.demo-card-body h4 {
  margin: 0 0 4px;
  font-size: 0.8125rem;
  font-weight: 700;
}
.demo-card-body p {
  margin: 0;
  font-size: 0.625rem;
  color: var(--muted);
  line-height: 1.4;
}
.demo-badges {
  display: flex;
  gap: 4px;
  position: absolute;
  top: 8px;
  right: 8px;
}
.demo-badge {
  font-size: 0.5rem;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(0,0,0,0.45);
}
.demo-badge.live { color: var(--green); }
.demo-badge.free { color: #fff; }

.studio-card {
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(26,31,46,0.95), rgba(20,24,36,0.98));
  border: 1px solid var(--stroke);
}
.studio-label {
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.studio-card h3 {
  margin: 0 0 4px;
  font-size: 0.875rem;
  font-weight: 800;
  font-family: var(--display);
}
.studio-card p {
  margin: 0;
  font-size: 0.625rem;
  color: var(--muted);
  line-height: 1.45;
}
.studio-plus {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: #041208;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 800;
}

.app-tabbar {
  display: flex;
  justify-content: space-around;
  padding: 8px 4px 4px;
  border-top: 1px solid var(--stroke);
  margin-top: 6px;
}
.tab-btn {
  border: 0;
  background: transparent;
  color: var(--faint);
  font-size: 0.5625rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  padding: 4px 8px;
  font-family: inherit;
}
.tab-btn svg { width: 18px; height: 18px; }
.tab-btn.active { color: var(--green); }

/* Sections */
.section {
  padding: 72px 0;
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .bento { grid-template-columns: repeat(3, 1fr); }
}
.bento-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--stroke);
  transition: transform 0.3s, border-color 0.3s;
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 250, 148, 0.25);
}
.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--green-dim);
  color: var(--green);
  margin-bottom: 16px;
}
.bento-icon svg { width: 22px; height: 22px; }
.bento-card h3 {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 700;
}
.bento-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 860px) {
  .split-section { grid-template-columns: 1fr 1fr; }
}
.creator-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(56,250,148,0.08), transparent 50%),
    linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(56, 250, 148, 0.2);
}
.creator-panel h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  margin: 0 0 10px;
}
.creator-panel p {
  color: var(--muted);
  margin: 0 0 20px;
  line-height: 1.6;
}
.creator-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.creator-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--muted);
}
.creator-list strong { color: var(--text); display: block; font-size: 0.9375rem; margin-bottom: 4px; }
.creator-list-detail { display: block; }
.check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-dim);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.steps {
  display: grid;
  gap: 20px;
}
@media (min-width: 720px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.02);
}
.step-num {
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 12px;
}
.step h3 { margin: 0 0 8px; font-size: 1rem; }
.step p { margin: 0; font-size: 0.875rem; color: var(--muted); line-height: 1.55; }

.marquee {
  overflow: hidden;
  padding: 20px 0 8px;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

.faq {
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.faq details {
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.02);
  padding: 0 18px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: 16px 0;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.bottom-cta {
  text-align: center;
  padding: 72px 0 48px;
}
.bottom-cta h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin: 0 0 10px;
}
.bottom-cta p {
  color: var(--muted);
  margin: 0 0 24px;
}
.bottom-cta .capture-form {
  margin: 0 auto;
}

footer {
  padding: 32px 0 100px;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--faint);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
}
.modal-panel {
  position: relative;
  width: min(440px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #1a1f2e, #121620);
  border: 1px solid var(--stroke);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.modal.open .modal-panel { transform: none; }
.modal-x {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
}
.modal h2 {
  font-family: var(--display);
  margin: 0 0 6px;
  font-size: 1.35rem;
}
.modal-lead {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.9375rem;
}
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9375rem;
}
.field textarea { min-height: 72px; resize: vertical; }
.form-error {
  color: #ff7b7b;
  font-size: 0.875rem;
  margin-bottom: 12px;
}
.form-error[hidden] { display: none !important; }

.success-state { text-align: center; padding: 12px 0; }
.success-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid rgba(56,250,148,0.35);
}
.success-state h3 {
  font-family: var(--display);
  margin: 0 0 8px;
  font-size: 1.25rem;
}
.success-state p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}
.btn-ghost {
  border: 1px solid var(--stroke);
  background: transparent;
  color: var(--text);
  padding: 12px 20px;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  background: rgba(11,15,26,0.92);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--stroke);
  transform: translateY(100%);
  transition: transform 0.3s;
}
.sticky-cta.show { transform: none; }
.sticky-cta .capture-btn { width: 100%; }

@media (min-width: 768px) {
  .sticky-cta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .hero-in, .stagger-child { opacity: 1; transform: none; }
}

/* ── Motion polish ── */

.atmosphere {
  animation: auroraDrift 18s ease-in-out infinite alternate;
}
@keyframes auroraDrift {
  0% { filter: hue-rotate(0deg) saturate(1); }
  100% { filter: hue-rotate(18deg) saturate(1.08); }
}

.aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: orbFloat 14s ease-in-out infinite;
}
.orb-a {
  width: 340px;
  height: 340px;
  background: rgba(56, 250, 148, 0.22);
  top: 8%;
  left: -5%;
}
.orb-b {
  width: 280px;
  height: 280px;
  background: rgba(71, 148, 255, 0.18);
  top: 35%;
  right: -8%;
  animation-delay: -4s;
  animation-duration: 17s;
}
.orb-c {
  width: 220px;
  height: 220px;
  background: rgba(140, 89, 255, 0.14);
  bottom: 10%;
  left: 35%;
  animation-delay: -8s;
  animation-duration: 20s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(24px, -18px) scale(1.06); }
  66% { transform: translate(-16px, 12px) scale(0.94); }
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  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='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-in {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-in.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.glow-field {
  position: relative;
}
/* Legacy glow helper — desktop row layouts only */
@media (min-width: 520px) {
  .glow-field:not(.capture-form--hero)::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--green), var(--blue), var(--violet), var(--green));
    background-size: 300% 300%;
    animation: borderGlow 6s linear infinite;
    z-index: -1;
    opacity: 0.55;
  }
  .glow-field:not(.capture-form--hero)::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 999px;
    background: rgba(11, 15, 26, 0.92);
    z-index: -1;
  }
}
@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.capture-btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, opacity 0.2s, box-shadow 0.25s;
}
.capture-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}
.capture-btn:hover:not(:disabled)::after {
  transform: translateX(120%);
}
.capture-btn:hover:not(:disabled) {
  box-shadow: 0 12px 36px rgba(56, 250, 148, 0.4);
}

.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(56, 250, 148, 0.12), transparent 45%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.bento-card:hover::before { opacity: 1; }

.stagger-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.stagger-child.is-visible {
  opacity: 1;
  transform: none;
}

.creator-panel {
  animation: panelGlow 5s ease-in-out infinite;
}
@keyframes panelGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(56, 250, 148, 0); }
  50% { box-shadow: 0 0 48px rgba(56, 250, 148, 0.08); }
}

.marquee-track span::after {
  content: "◆";
  margin-left: 36px;
  color: rgba(56, 250, 148, 0.35);
  font-size: 0.5rem;
  vertical-align: middle;
}

.faq details {
  transition: border-color 0.3s, background 0.3s;
}
.faq details[open] {
  border-color: rgba(56, 250, 148, 0.28);
  background: rgba(56, 250, 148, 0.04);
}

.bottom-cta {
  position: relative;
}
.bottom-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 250, 148, 0.4), transparent);
}

.logo {
  transition: text-shadow 0.3s;
}
.logo:hover {
  text-shadow: 0 0 24px rgba(56, 250, 148, 0.35);
  text-decoration: none;
}

.avatar-stack span {
  animation: avatarPop 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.avatar-stack span:nth-child(1) { animation-delay: 0.9s; }
.avatar-stack span:nth-child(2) { animation-delay: 1s; }
.avatar-stack span:nth-child(3) { animation-delay: 1.1s; }
.avatar-stack span:nth-child(4) { animation-delay: 1.2s; }
@keyframes avatarPop {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}

.gradient-text {
  animation: shimmer 4s linear infinite;
}

.demo-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.app-screen.active .demo-card:nth-child(2) { animation: cardIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both; }
.app-screen.active .demo-card:nth-child(3) { animation: cardIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both; }
.app-screen.active .studio-card { animation: cardIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both; }
@keyframes cardIn {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

.studio-plus {
  animation: plusPulse 2.5s ease-in-out infinite;
}
@keyframes plusPulse {
  50% { box-shadow: 0 0 16px rgba(56, 250, 148, 0.5); }
}

/* ── Mobile layout ── */
@media (max-width: 767px) {
  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }

  .nav {
    padding: 12px 0;
  }

  .nav-cta {
    padding: 9px 14px;
    font-size: 0.75rem;
  }

  .hero {
    padding: 96px 0 32px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
    line-height: 1.08;
    margin-bottom: 14px;
  }

  .hero-lead {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .eyebrow {
    font-size: 0.6875rem;
    margin-bottom: 16px;
  }

  .intent-toggle {
    display: flex;
    width: 100%;
    max-width: 100%;
  }

  .intent-btn {
    flex: 1;
    padding: 11px 10px;
    font-size: 0.75rem;
    text-align: center;
  }

  .capture-form {
    max-width: none;
    width: 100%;
  }

  #waitlistFormHero.capture-form--hero {
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    isolation: auto;
  }

  #waitlistFormHero.capture-form--hero::before,
  #waitlistFormHero.capture-form--hero::after {
    content: none;
    display: none;
  }

  .capture-form.row {
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .capture-input {
    font-size: 16px;
    padding: 14px 16px;
    width: 100%;
    max-width: 100%;
    display: block;
    -webkit-appearance: none;
    appearance: none;
  }

  .capture-input:focus {
    box-shadow: inset 0 0 0 1px rgba(56, 250, 148, 0.45);
  }

  .capture-btn {
    width: 100%;
    padding: 14px 18px;
  }

  .capture-meta {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 22px;
  }

  .trust-row p {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  .phone-wrap {
    padding: 0 0 8px;
    margin-top: -4px;
  }

  .phone-ring {
    display: none;
  }

  .phone {
    width: min(248px, 72vw);
    animation: none;
    transform: none !important;
  }

  .phone-glow {
    width: 220px;
    height: 220px;
  }

  .marquee {
    margin-top: 8px;
    padding: 12px 0 0;
  }

  .section {
    padding: 52px 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-head h2 {
    font-size: clamp(1.5rem, 6.5vw, 1.85rem);
  }

  .section-head p {
    font-size: 0.9375rem;
  }

  .bento-card,
  .creator-panel,
  .step {
    padding: 20px;
  }

  .split-section {
    gap: 24px;
  }

  .creator-panel h3 {
    font-size: 1.25rem;
  }

  .bottom-cta {
    padding: 52px 0 36px;
  }

  footer {
    padding: 24px 0 calc(88px + env(safe-area-inset-bottom));
    font-size: 0.75rem;
    line-height: 1.6;
  }

  .modal-panel {
    padding: 24px 18px;
    max-height: min(92vh, 720px);
  }

  .sticky-cta {
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 380px) {
  .intent-btn {
    font-size: 0.6875rem;
    padding: 10px 8px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }
}

