*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0e0e10;
  --surface: #161618;
  --cream: #e8e0d0;
  --muted: #7a756c;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --border: rgba(232, 224, 208, 0.08);
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ── Navigation ── */
.nav {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 28px 60px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--cream);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 60px 100px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.hero-sub {
  margin-top: 28px;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.7;
}

/* Waveform panel */
.waveform-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  position: relative;
}
.waveform-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.waveform {
  width: 100%;
  height: 80px;
  display: block;
}
.bar {
  fill: var(--accent);
  animation: pulse 1.4s ease-in-out infinite alternate;
}
.bar:nth-child(odd) { animation-delay: 0.2s; }
.bar:nth-child(3n) { animation-delay: 0.4s; }
.bar:nth-child(4n) { animation-delay: 0.1s; }
.bar:nth-child(5n) { animation-delay: 0.6s; }

@keyframes pulse {
  from { opacity: 0.4; transform: scaleY(0.6); }
  to   { opacity: 1;   transform: scaleY(1);   }
}

.track-info {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--muted);
}
.track-name { color: var(--cream); font-weight: 500; }

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 16px;
}
.stat {
  background: var(--surface);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-num {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--cream);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Manifesto ── */
.manifesto {
  padding: 80px 60px;
  border-bottom: 1px solid var(--border);
}
.manifesto-rule {
  height: 1px;
  background: var(--accent);
  width: 60px;
  margin-bottom: 40px;
  opacity: 0.6;
}
.manifesto-content {
  max-width: 760px;
}
.manifesto-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--cream);
  margin-bottom: 24px;
  font-weight: 300;
}
.manifesto-text:last-child {
  color: var(--accent);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
}

/* ── Features ── */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}
.feature {
  padding: 56px 60px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature:nth-child(even) { border-right: none; }
.feature:nth-child(3),
.feature:nth-child(4) { border-bottom: none; }

.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--cream);
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── How ── */
.how {
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
}
.how-headline {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 60px;
  color: var(--cream);
}
.process {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.process-step {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
}
.step-num {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 16px;
  line-height: 1;
}
.step-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
}
.process-arrow {
  color: var(--muted);
  flex-shrink: 0;
  margin-top: 40px;
  opacity: 0.5;
}

/* ── Closing ── */
.closing {
  padding: 100px 60px;
}
.closing-text {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--cream);
  max-width: 720px;
}

/* ── Footer ── */
.footer {
  padding: 40px 60px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--cream);
}
.footer-note {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav, .hero, .manifesto, .features, .how, .closing, .footer {
    padding-left: 28px;
    padding-right: 28px;
  }
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 48px; }
  .features { grid-template-columns: 1fr; }
  .feature { border-right: none; }
  .feature:nth-child(3), .feature:nth-child(4) { border-bottom: 1px solid var(--border); }
  .feature:last-child { border-bottom: none; }
  .process { flex-direction: column; }
  .process-arrow { transform: rotate(90deg); margin-top: 0; margin-left: 16px; align-self: center; }
}

@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat:last-child { grid-column: 1 / -1; }
  .nav { padding: 20px 20px; }
  .hero, .manifesto, .features, .how, .closing, .footer { padding-left: 20px; padding-right: 20px; }
  .how-headline { font-size: 1.6rem; }
}

/* ── Waitlist form ── */
.waitlist-form {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.waitlist-input {
  flex: 1;
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.18s;
}
.waitlist-input:focus { border-color: var(--accent); }
.waitlist-input::placeholder { color: var(--muted); }
.waitlist-btn {
  background: var(--accent);
  color: #0e0e10;
  border: none;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 13px 24px;
  cursor: pointer;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.waitlist-btn:hover { opacity: 0.88; }
.waitlist-note { margin-top: 14px; font-size: 0.88rem; }

/* ── Interactive Demo ── */
.demo {
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, rgba(245,166,35,0.03) 50%, var(--bg) 100%);
}
.demo-inner { max-width: 800px; margin: 0 auto; }

.demo-header { margin-bottom: 52px; }
.demo-rule {
  height: 1px;
  background: var(--accent);
  width: 60px;
  margin-bottom: 20px;
  opacity: 0.6;
}
.demo-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 18px;
}
.demo-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 16px;
}
.demo-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

/* Form */
.demo-form { display: flex; flex-direction: column; gap: 24px; }
.demo-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.demo-field { display: flex; flex-direction: column; gap: 8px; }
.demo-field--full { grid-column: 1 / -1; }
.demo-field-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 500;
}
.demo-input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.18s;
  width: 100%;
}
.demo-input:focus { border-color: var(--accent); }
.demo-input::placeholder { color: var(--muted); }
.demo-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a756c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.demo-select option { background: #1e1e20; color: var(--cream); }
.demo-textarea { resize: vertical; min-height: 90px; line-height: 1.6; }

/* Submit button */
.demo-form-footer { display: flex; align-items: center; gap: 20px; }
.demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #0e0e10;
  border: none;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 28px;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.12s;
  letter-spacing: 0.02em;
}
.demo-btn:hover:not(:disabled) { opacity: 0.88; transform: translateY(-1px); }
.demo-btn:disabled { opacity: 0.55; cursor: not-allowed; }
.demo-btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,0.25);
  border-top-color: #0e0e10;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.demo-btn--loading .demo-btn-text { opacity: 0.7; }
.demo-btn--loading .demo-btn-spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }
.demo-rate-note { font-size: 0.75rem; color: var(--muted); }

/* Explicit hidden attribute fallback — browsers vary in native support */
[hidden] { display: none !important; }

/* Error */
.demo-error {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(255,80,80,0.07);
  border: 1px solid rgba(255,80,80,0.2);
  border-radius: 8px;
  font-size: 0.9rem;
  color: #f87171;
}
.demo-error-icon { font-size: 1rem; flex-shrink: 0; }

/* Result card */
.demo-result {
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
}
.demo-result-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  background: rgba(245,166,35,0.05);
}
.demo-result-badge {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.demo-result-artist {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--cream);
  font-style: italic;
}

/* AI-generated cover art in demo result */
.demo-cover-wrap {
  display: flex;
  justify-content: center;
  padding: 28px 28px 0;
}
.demo-cover-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
  display: block;
}

/* Plan blocks inside result */
.demo-result-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-height: 600px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.demo-result-body::-webkit-scrollbar { width: 4px; }
.demo-result-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.plan-block { display: flex; flex-direction: column; gap: 12px; }
.plan-block-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.plan-track-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--cream);
  font-style: italic;
}
.plan-track-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.plan-tag {
  font-size: 0.75rem;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--muted);
}
.plan-influences { font-size: 0.85rem; color: var(--muted); }
.plan-influences em { color: var(--cream); font-style: normal; }

/* Weekly milestones */
.plan-weeks { display: flex; flex-direction: column; gap: 12px; }
.plan-week {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
}
.plan-week-header { display: flex; align-items: baseline; gap: 12px; margin-bottom: 10px; }
.plan-week-num {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 500;
  flex-shrink: 0;
}
.plan-week-focus { font-size: 0.9rem; color: var(--cream); font-weight: 400; }
.plan-tasks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.plan-tasks li {
  font-size: 0.82rem;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.plan-tasks li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  opacity: 0.5;
  font-size: 0.7rem;
  top: 1px;
}

/* Release day checklist */
.plan-checklist { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.plan-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--cream); line-height: 1.5; }
.plan-check { color: var(--accent); flex-shrink: 0; font-size: 0.75rem; margin-top: 2px; }

/* Promo angles */
.plan-promo { display: flex; flex-direction: column; gap: 14px; }
.plan-promo-item {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
}
.plan-promo-platform {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 8px;
}
.plan-promo-item p { font-size: 0.88rem; color: var(--cream); line-height: 1.6; }

/* Pitch targets */
.plan-pitches { display: flex; flex-direction: column; gap: 12px; }
.plan-pitch {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
}
.plan-pitch-name { font-size: 0.9rem; color: var(--cream); font-weight: 500; margin-bottom: 6px; }
.plan-pitch-why { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* CTA at bottom of result */
.demo-result-cta {
  padding: 24px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: rgba(245,166,35,0.04);
}
.demo-cta-copy {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 380px;
  line-height: 1.6;
}
.demo-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #0e0e10;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 22px;
  white-space: nowrap;
  transition: opacity 0.15s;
  flex-shrink: 0;
}
.demo-cta-btn:hover { opacity: 0.85; }

/* Demo responsive */
@media (max-width: 900px) {
  .demo { padding: 72px 28px; }
}
@media (max-width: 600px) {
  .demo { padding: 60px 20px; }
  .demo-fields { grid-template-columns: 1fr; }
  .demo-form-footer { flex-direction: column; align-items: flex-start; gap: 12px; }
  .demo-result-cta { flex-direction: column; align-items: flex-start; }
  .demo-result-header { flex-direction: column; gap: 6px; }
}

/* ── Share bar ── */
.share-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  background: rgba(245,166,35,0.05);
  border: 1px solid rgba(245,166,35,0.12);
  border-radius: 8px;
  margin: 20px 0 24px;
  flex-wrap: wrap;
}
.share-label { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-right: 4px; }
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(232,224,208,0.1);
  border-radius: 6px; color: var(--cream); font-family: var(--sans);
  font-size: 0.8rem; font-weight: 500; padding: 7px 12px;
  cursor: pointer; text-decoration: none; transition: background 0.15s, border-color 0.15s;
  font-family: var(--sans);
}
.share-btn:hover { background: rgba(255,255,255,0.11); border-color: rgba(232,224,208,0.18); }
.copy-toast {
  font-size: 0.78rem; color: #6ee7b7; display: none;
  padding: 5px 10px; background: rgba(110,231,179,0.08);
  border: 1px solid rgba(110,231,179,0.18); border-radius: 6px;
}
.copy-toast.show { display: block; }

/* ── Demo result inline signup ── */
.demo-signup {
  margin-top: 32px;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.demo-signup-headline {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 18px;
}
.demo-signup-fields {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.demo-signup-input {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.15s;
}
.demo-signup-input:focus { border-color: var(--accent); }
.demo-signup-input::placeholder { color: var(--muted); }
.demo-signup-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0e0e10;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.demo-signup-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.demo-signup-btn:hover:not(:disabled) { opacity: 0.88; }
.demo-signup-btn-spinner {
  display: none;
  width: 14px; height: 14px;
  border: 2px solid rgba(0,0,0,0.3);
  border-top-color: #0e0e10;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.demo-signup-btn--loading .demo-signup-btn-text { display: none; }
.demo-signup-btn--loading .demo-signup-btn-spinner { display: block; }
.demo-signup-success {
  margin-top: 12px;
  color: #6ee7b7;
  font-size: 0.9rem;
}
.demo-signup-error {
  margin-top: 12px;
  color: #f87171;
  font-size: 0.9rem;
}

/* ── Standalone waitlist section ── */
.waitlist {
  padding: 100px 60px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.waitlist-inner {
  max-width: 640px;
  margin: 0 auto;
}
.waitlist-rule {
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 20px;
}
.waitlist-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 12px;
}
.waitlist-sub {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 36px;
}
.waitlist-form { display: flex; flex-direction: column; gap: 0; }
.waitlist-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.waitlist-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.15s;
}
.waitlist-input:focus { border-color: var(--accent); }
.waitlist-input::placeholder { color: var(--muted); }
.waitlist-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: var(--accent);
  color: #0e0e10;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  padding: 13px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.15s;
}
.waitlist-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.waitlist-btn:hover:not(:disabled) { opacity: 0.88; }
.waitlist-btn-spinner {
  display: none;
  width: 15px; height: 15px;
  border: 2px solid rgba(0,0,0,0.3);
  border-top-color: #0e0e10;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.waitlist-btn--loading .waitlist-btn-text { display: none; }
.waitlist-btn--loading .waitlist-btn-spinner { display: block; }
.waitlist-success {
  margin-top: 16px;
  color: #6ee7b7;
  font-size: 0.95rem;
}
.waitlist-error {
  margin-top: 16px;
  color: #f87171;
  font-size: 0.95rem;
}
@media (max-width: 700px) {
  .waitlist { padding: 72px 24px; }
  .waitlist-fields { grid-template-columns: 1fr; }
}

/* ── Hero inline signup ── */
.hero-signup-form { margin-top: 28px; }
.hero-signup-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.hero-signup-input {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 11px 16px;
  outline: none;
  transition: border-color 0.15s;
}
.hero-signup-input:focus { border-color: var(--accent); }
.hero-signup-input::placeholder { color: var(--muted); }
.hero-signup-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0e0e10;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 11px 22px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.hero-signup-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.hero-signup-btn:hover:not(:disabled) { opacity: 0.88; }
.hero-signup-btn-spinner {
  display: none;
  width: 13px; height: 13px;
  border: 2px solid rgba(0,0,0,0.25);
  border-top-color: #0e0e10;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.hero-signup-btn--loading .hero-signup-btn-text { display: none; }
.hero-signup-btn--loading .hero-signup-btn-spinner { display: block; }
.hero-signup-success {
  color: #6ee7b7;
  font-size: 0.88rem;
  margin-bottom: 6px;
}
.hero-signup-error {
  color: #f87171;
  font-size: 0.88rem;
  margin-bottom: 6px;
}
.hero-signup-note {
  color: var(--muted);
  font-size: 0.78rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}