:root {
  --bg-deep: #0f0f0f;
  --bg-card: #1a1a1a;
  --bg-warm: #1e1915;
  --fg: #f5f0eb;
  --fg-muted: #a89b8c;
  --accent: #d4a574;
  --accent-glow: rgba(212, 165, 116, 0.15);
  --sage: #7a9e7e;
  --sage-muted: rgba(122, 158, 126, 0.12);
  --cream: #faf3eb;
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg-deep);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.hero-inner {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(212, 165, 116, 0.3);
  padding: 8px 20px;
  border-radius: 40px;
  margin-bottom: 40px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero h1 .highlight {
  color: var(--accent);
  position: relative;
}

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-icon {
  font-size: 1.8rem;
  color: var(--accent);
}

.stat-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* ===== JOURNEY ===== */
.journey {
  padding: 120px 24px;
  background: var(--bg-warm);
}

.journey-inner {
  max-width: 960px;
  margin: 0 auto;
}

.journey h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.journey-subtitle {
  text-align: center;
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 64px;
}

.phases {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.phase {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 24px;
  transition: border-color 0.3s, background 0.3s;
}

.phase:hover {
  border-color: rgba(212, 165, 116, 0.25);
  background: rgba(212, 165, 116, 0.04);
}

.phase-connector {
  width: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.phase-connector::after {
  content: '';
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(212,165,116,0.1), rgba(212,165,116,0.4), rgba(212,165,116,0.1));
}

.phase-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 16px;
  line-height: 1;
}

.phase h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}

.phase p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== FEATURES ===== */
.features {
  padding: 120px 24px;
  background: var(--bg-deep);
}

.features-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.features h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.features-subtitle {
  text-align: center;
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 64px;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 36px 28px;
  transition: transform 0.25s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 158, 126, 0.3);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: block;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}

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

/* ===== CLOSING ===== */
.closing {
  padding: 120px 24px;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-warm) 100%);
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.closing-text {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 48px;
}

.closing-quote {
  border-left: 3px solid var(--accent);
  padding: 20px 28px;
  text-align: left;
  background: rgba(212, 165, 116, 0.04);
  border-radius: 0 12px 12px 0;
}

.closing-quote p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
  font-style: italic;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 60px 24px;
  background: var(--bg-warm);
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.footer-text {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto 24px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { min-height: 80vh; padding: 60px 20px; }
  .hero-stats { gap: 20px; }
  .phases { flex-direction: column; gap: 16px; }
  .phase-connector { width: auto; height: 24px; min-width: auto; }
  .phase-connector::after { width: 2px; height: 100%; }
  .feature-grid { grid-template-columns: 1fr; gap: 16px; }
  .journey, .features, .closing { padding: 80px 20px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
