:root {
  --bg-deep: #0a0f1a;
  --bg-section: #0e1424;
  --bg-card: #141c2e;
  --fg: #e8e4df;
  --fg-muted: #9a9590;
  --fg-dim: #5c5955;
  --accent-gold: #d4a853;
  --accent-warm: #e8c06a;
  --accent-teal: #3d9e8f;
  --accent-glow: rgba(212, 168, 83, 0.15);
  --accent-teal-glow: rgba(61, 158, 143, 0.1);
  --radius: 16px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

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

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-teal) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
}

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

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

.hero-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

/* === PHILOSOPHY === */
.philosophy {
  padding: 120px 24px;
  background: var(--bg-section);
}

.philosophy-inner {
  max-width: 760px;
  margin: 0 auto;
}

.philosophy-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 20px;
}

.philosophy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: 20px;
}

.philosophy-text {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.85;
}

.philosophy-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-teal));
  margin: 60px 0;
}

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

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

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.features-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.features-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--fg);
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 83, 0.08);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: rgba(212, 168, 83, 0.25);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border-radius: 12px;
  margin-bottom: 20px;
  color: var(--accent-gold);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--fg);
  margin-bottom: 12px;
}

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

/* === VISION === */
.vision {
  position: relative;
  padding: 140px 24px;
  background: var(--bg-section);
  text-align: center;
  overflow: hidden;
}

.vision-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.vision-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.vision h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 24px;
}

.vision-text {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.85;
  margin-bottom: 48px;
}

.vision-sig {
  font-size: 0.9rem;
  color: var(--fg-dim);
  font-style: italic;
}

.vision-role {
  color: var(--accent-gold);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

/* === FOOTER === */
.site-footer {
  padding: 48px 24px;
  background: var(--bg-deep);
  border-top: 1px solid rgba(212, 168, 83, 0.06);
  text-align: center;
}

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

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-dim);
  margin-bottom: 16px;
}

.footer-powered {
  font-size: 0.75rem;
  color: var(--fg-dim);
  opacity: 0.5;
}

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

  .hero {
    padding: 80px 20px 60px;
    min-height: 90vh;
  }

  .philosophy {
    padding: 80px 20px;
  }

  .features {
    padding: 80px 20px;
  }

  .vision {
    padding: 80px 20px;
  }

  .feature-card {
    padding: 32px 24px;
  }

  .hero-orb-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -80px;
  }

  .hero-orb-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -60px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .philosophy h2,
  .features-header h2,
  .vision h2 {
    font-size: 1.4rem;
  }
}