:root {
  --bg: #07080d;
  --bg-2: #0d0f18;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --text: #e8eaf2;
  --text-2: #8b92a8;
  --text-3: #5a6078;
  --gold: #e8b86a;
  --gold-dim: rgba(232,184,106,0.15);
  --teal: #5bbfaa;
  --teal-dim: rgba(91,191,170,0.12);
  --rose: #e07a8a;
  --rose-dim: rgba(224,122,138,0.12);
  --radius: 16px;
  --radius-lg: 24px;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

.glass-card {
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-lg);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 80px 24px 60px;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(91,191,170,0.18) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,184,106,0.12) 0%, transparent 70%);
  bottom: -50px; left: -80px;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(224,122,138,0.08) 0%, transparent 70%);
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  width: 100%;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 28px;
}

.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-headline {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--teal) 60%, #8b9eff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* CTA Row */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: linear-gradient(135deg, rgba(91,191,170,0.18) 0%, rgba(91,191,170,0.06) 100%);
  border: 1px solid rgba(91,191,170,0.35);
  border-radius: var(--radius);
  color: var(--teal);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 0 24px rgba(91,191,170,0.08);
}
.cta-btn:hover {
  background: rgba(91,191,170,0.24);
  box-shadow: 0 0 32px rgba(91,191,170,0.18);
  transform: translateY(-1px);
}

.cta-note {
  font-size: 13px;
  color: var(--text-3);
}

/* Preview Card */
.hero-preview {
  max-width: 560px;
  margin: 0 auto;
  padding: 28px;
  text-align: left;
  background: rgba(255,255,255,0.03);
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.preview-dots {
  display: flex;
  gap: 6px;
}
.preview-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.preview-dots span:nth-child(1) { background: rgba(224,122,138,0.5); }
.preview-dots span:nth-child(2) { background: rgba(232,184,106,0.5); }
.preview-dots span:nth-child(3) { background: rgba(91,191,170,0.5); }

.preview-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}

.briefing-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brief-section {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.brief-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.brief-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 2px;
}

.brief-value {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}

.highlight-warm .brief-icon { background: var(--gold-dim); }
.highlight-warm .brief-value { color: var(--gold); }
.highlight-calm .brief-icon { background: var(--teal-dim); }
.highlight-calm .brief-value { color: var(--teal); }

.mental-load-badge {
  margin-top: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--surface);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ml-label { font-size: 12px; color: var(--text-3); }
.ml-score { font-size: 14px; font-weight: 600; color: var(--gold); }

/* FEATURES */
.features {
  padding: 120px 24px;
  position: relative;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 64px;
  max-width: 600px;
  line-height: 1.2;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
}

.feature-card {
  padding: 32px;
  transition: background 0.3s, transform 0.3s;
}

.feature-card:hover {
  background: var(--surface-hover);
  transform: translateY(-2px);
}

.feature-card.wide {
  grid-column: span 2;
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}

/* DASHBOARD SECTION */
.dashboard-section {
  padding: 120px 24px;
  position: relative;
  text-align: center;
}

.orb-dash {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(91,191,170,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.section-desc {
  font-size: 18px;
  color: var(--text-2);
  max-width: 500px;
  margin: 0 auto 64px;
  line-height: 1.7;
}

.scores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.score-card {
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.score-ring {
  width: 64px; height: 64px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.score-ring::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    var(--teal) calc(var(--pct) * 1%),
    rgba(255,255,255,0.06) calc(var(--pct) * 1%)
  );
}

.score-ring::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--bg);
}

.score-num {
  position: relative;
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  z-index: 1;
}

.score-info {
  display: flex;
  flex-direction: column;
}

.score-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
}

.score-sub {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 2px;
}

/* CLOSING / PRICING */
.closing {
  padding: 120px 24px;
  position: relative;
  text-align: center;
}

.orb-close {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,184,106,0.08) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  pointer-events: none;
}

.closing-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 24px;
  line-height: 1.15;
}

.closing > .closing-content > p {
  font-size: 18px;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 72px;
  line-height: 1.7;
}

.pricing-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.price-tier {
  padding: 32px 28px;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: left;
  position: relative;
  transition: transform 0.3s;
}

.price-tier:hover { transform: translateY(-3px); }

.price-tier.featured {
  border-color: rgba(232,184,106,0.25);
  background: rgba(232,184,106,0.04);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #07080d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.tier-name {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}

.tier-price {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
}

.tier-price small {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-3);
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tier-features li {
  font-size: 14px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tier-features li::before {
  content: '✓';
  color: var(--teal);
  font-size: 12px;
}

/* FOOTER */
footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  font-size: 12px;
  color: var(--text-3);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-3);
}

/* VALUE PROPS (new features section) */
.features-inner {
  max-width: 800px;
  margin: 0 auto;
}

.features .section-title {
  max-width: none;
}

.value-props {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.value-prop {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.value-prop:first-child { border-top: 1px solid var(--border); }

.vp-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vp-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.vp-body p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
}

/* POSITIONING */
.positioning {
  padding: 64px 0 0;
  text-align: center;
}

.positioning-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  color: var(--text-2);
  font-style: italic;
  letter-spacing: -0.01em;
}

/* SCROLL ANIMATIONS */
.reveal,
.reveal-hero {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible,
.reveal-hero.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-hero { transition-delay: 0.1s; }

/* CLOSING SECTION */
.closing-desc {
  font-size: 18px;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.cta-final {
  font-size: 18px;
  padding: 16px 40px;
  margin-bottom: 16px;
}

.cta-subtext {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 4px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-card.wide {
    grid-column: span 2;
  }
  .scores-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .feature-grid,
  .scores-grid {
    grid-template-columns: 1fr;
  }
  .feature-card.wide {
    grid-column: span 1;
  }
  .pricing-row {
    flex-direction: column;
    align-items: center;
  }
  .price-tier {
    max-width: 100%;
    width: 100%;
  }
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .hero { padding: 60px 20px 48px; }
  .hero-preview { padding: 20px; }
  .score-card { padding: 20px; }
  .value-prop {
    flex-direction: column;
    gap: 16px;
    padding: 28px 0;
  }
  .vp-icon {
    width: 44px;
    height: 44px;
  }
  .vp-body h3 { font-size: 20px; }
  .vp-body p { font-size: 15px; }
}