:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #16161f;
  --fg: #e8e6e3;
  --fg-muted: #8a8693;
  --fg-dim: #5a5666;
  --accent: #e84393;
  --accent-glow: rgba(232, 67, 147, 0.3);
  --accent-secondary: #fd79a8;
  --gradient: linear-gradient(135deg, #e84393 0%, #fd79a8 40%, #fab1a0 100%);
  --radius: 16px;
  --radius-sm: 10px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem clamp(1.5rem, 6vw, 8rem);
  overflow: hidden;
}

.hero-grain {
  position: absolute;
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  bottom: -40%;
  right: -20%;
  width: 80vw;
  height: 80vw;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-nav {
  position: absolute;
  top: 2rem;
  left: clamp(1.5rem, 6vw, 8rem);
  right: clamp(1.5rem, 6vw, 8rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  border: 1px solid rgba(138, 134, 147, 0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ---- METRICS ---- */
.metrics {
  padding: 4rem clamp(1.5rem, 6vw, 8rem);
  position: relative;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid rgba(138, 134, 147, 0.08);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.metric-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 600;
}

.metric-value {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.metric-detail {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ---- FEATURES ---- */
.features {
  padding: 6rem clamp(1.5rem, 6vw, 8rem);
}

.features-header {
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

.features-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(138, 134, 147, 0.08);
  border-radius: var(--radius);
  padding: 2.2rem;
  transition: border-color 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(232, 67, 147, 0.25);
}

.feature-large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 3rem;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(232, 67, 147, 0.04) 100%);
}

.feature-large .feature-icon {
  font-size: 2.5rem;
}

.feature-large h3 {
  font-size: 1.5rem;
}

.feature-large p {
  grid-column: 2;
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-secondary);
}

.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ---- MARKET ---- */
.market {
  padding: 6rem clamp(1.5rem, 6vw, 8rem);
  background: var(--bg-elevated);
}

.market-content {
  max-width: 800px;
}

.market h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

.market-points {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.market-point {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.point-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--fg-dim);
  line-height: 1.4;
}

.market-point h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.market-point p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ---- CLOSING ---- */
.closing {
  padding: 8rem clamp(1.5rem, 6vw, 8rem);
  text-align: center;
  position: relative;
}

.closing-content {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 2.5rem clamp(1.5rem, 6vw, 8rem);
  border-top: 1px solid rgba(138, 134, 147, 0.08);
}

.footer-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--fg);
}

.footer-divider {
  width: 1px;
  height: 14px;
  background: var(--fg-dim);
}

.footer-text {
  font-size: 0.8rem;
  color: var(--fg-dim);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-large {
    grid-template-columns: 1fr;
  }

  .feature-large p {
    grid-column: 1;
  }

  .market-point {
    grid-template-columns: 40px 1fr;
    gap: 1rem;
  }

  .point-num {
    font-size: 1.4rem;
  }

  .hero {
    min-height: 90vh;
    padding-top: 5rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .footer-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .metric-value {
    font-size: 2.5rem;
  }

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

/* ---- LOGO ACCENT ---- */
.logo-accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- WAITLIST FORM ---- */
.hero-form-wrap {
  margin-top: 2.5rem;
}

.hero-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  max-width: 520px;
}

.form-input {
  flex: 1 1 220px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(138, 134, 147, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  color: var(--fg);
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}

.form-input::placeholder {
  color: var(--fg-dim);
}

.form-input:focus {
  border-color: var(--accent);
}

.form-btn {
  flex: 0 0 auto;
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  white-space: nowrap;
}

.form-btn:hover {
  opacity: 0.9;
}

.form-btn:active {
  transform: scale(0.98);
}

.form-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-msg {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  min-height: 1.2rem;
}

.form-msg--success {
  color: #6ee7b7;
}

.form-msg--error {
  color: #fca5a5;
}

.form-hint {
  margin-top: 0.65rem;
  font-size: 0.78rem;
  color: var(--fg-dim);
  letter-spacing: 0.02em;
}

/* ---- VALUES ---- */
.values {
  padding: 6rem clamp(1.5rem, 6vw, 8rem);
}

.values-header {
  margin-bottom: 3.5rem;
}

.values-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid rgba(138, 134, 147, 0.08);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  transition: border-color 0.3s ease;
}

.value-card:hover {
  border-color: rgba(232, 67, 147, 0.25);
}

.value-card--accent {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(232, 67, 147, 0.06) 100%);
  border-color: rgba(232, 67, 147, 0.15);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  line-height: 1;
}

.value-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ---- PROOF ---- */
.proof {
  padding: 6rem clamp(1.5rem, 6vw, 8rem);
  background: var(--bg-elevated);
  text-align: center;
}

.proof-content {
  max-width: 600px;
  margin: 0 auto;
}

.proof-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.proof h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
}

.proof-counter-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 2rem;
}

.counter-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.counter-label {
  font-size: 1rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.proof-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.proof-cta {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.proof-cta:hover {
  opacity: 0.75;
}

/* ---- FOOTER LINKS ---- */
.footer-link {
  color: var(--fg-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--fg);
}

.footer-mission {
  font-size: 0.8rem;
  color: var(--fg-dim);
  text-decoration: none;
  margin-left: auto;
  transition: color 0.2s;
}

.footer-mission:hover {
  color: var(--fg);
}

/* ---- RESPONSIVE (waitlist additions) ---- */
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .hero-form {
    flex-direction: column;
  }

  .form-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .counter-number {
    font-size: 3rem;
  }
}
/* CTA link below the waitlist form pointing to profile onboarding */
.profile-cta-hint {
  margin-top: 0.75rem;
  text-align: center;
}
.profile-cta-link {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
}
.profile-cta-link:hover { opacity: 0.8; }
