:root {
  --bg-deep: #0d0820;
  --bg-card: #150f2e;
  --bg-card-hover: #1c1438;
  --accent: #e8849a;
  --accent-warm: #f5a97f;
  --accent-violet: #b39ddb;
  --accent-glow: rgba(232, 132, 154, 0.18);
  --text-primary: #f0eaf8;
  --text-secondary: #a095b8;
  --text-muted: #6b5e82;
  --border: rgba(179, 157, 219, 0.12);
  --border-accent: rgba(232, 132, 154, 0.3);
}

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

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 8vw 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(179,157,219,0.15) 0%, transparent 70%);
  top: -100px; right: -50px;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,132,154,0.12) 0%, transparent 70%);
  bottom: 0; left: 10%;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,169,127,0.08) 0%, transparent 70%);
  top: 40%; right: 30%;
}

.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 15%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 25%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 60%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 70%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 45% 45%, rgba(255,255,255,0.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 80%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 85%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 35%, rgba(255,255,255,0.25) 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 40px;
  background: rgba(179, 157, 219, 0.06);
}
.hero-badge svg { color: var(--accent); flex-shrink: 0; }

/* ── FLOW ──────────────────────────────────────────── */
.flow {
  padding: 100px 8vw;
  position: relative;
}
.flow::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.flow-inner { max-width: 1100px; margin: 0 auto; }

.flow-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 16px;
}

.flow-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 64px;
  line-height: 1.3;
}
.flow-headline em { font-style: italic; color: var(--accent-warm); }

.flow-steps {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: none;
}
.flow-steps::-webkit-scrollbar { display: none; }

.flow-step {
  flex: 1;
  min-width: 160px;
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.flow-step:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
}

.step-icon { color: var(--accent); margin-bottom: 20px; }

.step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.flow-connector {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  padding-top: 32px;
  flex-shrink: 0;
}

/* ── FEATURES ──────────────────────────────────────── */
.features {
  padding: 100px 8vw;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #110a24 100%);
}
.features-inner { max-width: 1100px; margin: 0 auto; }

.features-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-violet);
  margin-bottom: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-card {
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: border-color 0.3s ease;
}
.feature-card:hover { border-color: rgba(179, 157, 219, 0.25); }

.feat-icon {
  width: 48px; height: 48px;
  background: var(--accent-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── MANIFESTO ─────────────────────────────────────── */
.manifesto {
  padding: 100px 8vw;
  background: var(--bg-deep);
}
.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-quote-mark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 6rem;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 32px;
}

.manifesto blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 36px;
}

.manifesto-body {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ── CLOSING ───────────────────────────────────────── */
.closing {
  padding: 120px 8vw 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.closing-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,132,154,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.closing-inner { position: relative; z-index: 1; }

.closing-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
  max-width: 600px;
  margin: 0 auto 28px;
  letter-spacing: -0.01em;
}

.closing-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 28px;
}

.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
}
.cta-btn:hover { background: #d06d7f; transform: translateY(-2px); }

/* ── FOOTER ────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 8vw;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}
.footer-logo svg { color: var(--accent); }

.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.footer-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 300px;
  text-align: right;
  line-height: 1.6;
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 80px 6vw 80px; }
  .flow { padding: 80px 6vw; }
  .features { padding: 80px 6vw; }
  .manifesto { padding: 80px 6vw; }
  .closing { padding: 80px 6vw; }
  .footer { padding: 40px 6vw; }

  .flow-steps { gap: 0; }
  .flow-step { min-width: 200px; }
  .flow-connector { padding-top: 32px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-note { text-align: left; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.2rem; }
  .footer-note { display: none; }
}
