:root {
  --bg: #0c0a14;
  --bg-subtle: #14111f;
  --fg: #e8e4f0;
  --fg-muted: #9990ad;
  --accent: #d4a84b;
  --accent-glow: rgba(212, 168, 75, 0.15);
  --accent-soft: #c49a3f;
  --card-bg: #1a1628;
  --card-border: rgba(212, 168, 75, 0.12);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 40%, rgba(212, 168, 75, 0.06) 0%, transparent 70%),
              radial-gradient(ellipse 50% 50% at 80% 60%, rgba(100, 60, 180, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

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

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

.hero-lede {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--fg-muted);
  max-width: 560px;
}

.hero-accent {
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.accent-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 75, 0.08) 0%, transparent 70%);
  top: 20%;
  right: 10%;
  animation: float 8s ease-in-out infinite;
}

.accent-orb-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(140, 90, 200, 0.06) 0%, transparent 70%);
  top: 50%;
  right: 30%;
  animation-delay: -4s;
  animation-duration: 10s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* ---- PROCESS ---- */
.process {
  padding: 8rem 2rem;
  background: var(--bg-subtle);
  border-top: 1px solid rgba(212, 168, 75, 0.06);
}

.process-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
}

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

.process-step {
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.5rem;
  color: rgba(212, 168, 75, 0.1);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ---- FEATURES ---- */
.features {
  padding: 8rem 2rem;
}

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

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

.features-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
}

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

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2.5rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(212, 168, 75, 0.3);
  transform: translateY(-2px);
}

.feature-card-large {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(212, 168, 75, 0.04) 100%);
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  opacity: 0.8;
}

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

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

/* ---- CLOSING ---- */
.closing {
  padding: 10rem 2rem;
  text-align: center;
  background: var(--bg-subtle);
  border-top: 1px solid rgba(212, 168, 75, 0.06);
  position: relative;
}

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

.closing-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.15;
  margin-bottom: 2rem;
  line-height: 1;
}

.closing h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.closing-text {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.closing-subtle {
  font-style: italic;
  color: rgba(212, 168, 75, 0.5);
  font-size: 0.95rem;
  margin-top: 2rem;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(212, 168, 75, 0.08);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fg);
}

.footer-divider {
  width: 1px;
  height: 14px;
  background: rgba(212, 168, 75, 0.2);
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 5rem 1.5rem 4rem;
  }

  .hero-accent {
    display: none;
  }

  .process {
    padding: 5rem 1.5rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .features {
    padding: 5rem 1.5rem;
  }

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

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

  .closing {
    padding: 6rem 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .footer-divider {
    display: none;
  }
}