:root {
  --bg: #0f0e1a;
  --bg-surface: #14132a;
  --bg-card: #1a1933;
  --fg: #f0ece3;
  --fg-muted: #a09888;
  --fg-dim: #625c54;
  --accent: #c8a96e;
  --accent-dim: #96794e;
  --accent-subtle: rgba(200, 169, 110, 0.08);
  --border: rgba(240, 236, 227, 0.06);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  padding: 22px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.nav-tagline {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: var(--fg-dim);
  letter-spacing: 0.02em;
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: 0 48px;
  overflow: hidden;
}
.hero-bg-art {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(200, 169, 110, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(100, 80, 160, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-surface) 100%);
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  padding: 100px 0 90px;
}
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 22px);
  font-style: italic;
  font-weight: 300;
  color: var(--accent-dim);
  line-height: 1.6;
  margin-bottom: 40px;
}
.hero-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.85;
  max-width: 480px;
}

/* Hero Art */
.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}
.art-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.15);
}
.art-ring-1 { width: 340px; height: 340px; animation: ring-spin 20s linear infinite; }
.art-ring-2 { width: 260px; height: 260px; border-style: dashed; animation: ring-spin 14s linear infinite reverse; }
.art-ring-3 { width: 180px; height: 180px; border-color: rgba(200, 169, 110, 0.25); animation: ring-spin 8s linear infinite; }
@keyframes ring-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.art-core {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.25) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.art-core-inner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

/* ── WHAT IT IS ── */
.what-it-is {
  padding: 100px 48px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.what-it-is-inner { max-width: 1200px; margin: 0 auto; }
.what-it-is-mark { display: flex; align-items: center; gap: 20px; margin-bottom: 60px; }
.mark-line { width: 48px; height: 1px; background: var(--accent); }
.mark-label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); }
.what-it-is-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }
.what-card {
  background: var(--bg-card);
  padding: 40px 28px;
}
.what-icon { color: var(--accent); margin-bottom: 18px; }
.what-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.what-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.75; }

/* ── PHILOSOPHY ── */
.philosophy { padding: 120px 48px; }
.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.philosophy-quote blockquote p {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.45;
  color: var(--fg);
  font-style: italic;
}
.philosophy-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.9;
  margin-bottom: 22px;
}
.philosophy-body-accent {
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  color: var(--accent);
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 100px 48px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-header { text-align: center; margin-bottom: 72px; }
.how-eyebrow { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.how-title { font-family: var(--font-display); font-size: clamp(36px, 4vw, 52px); font-weight: 300; color: var(--fg); }
.how-steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: start;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 44px 32px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--accent-dim);
  margin-bottom: 20px;
  line-height: 1;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 14px;
}
.step p { font-size: 14px; color: var(--fg-muted); line-height: 1.8; margin-bottom: 16px; }
.step-list { list-style: none; }
.step-list li {
  font-size: 13px;
  color: var(--fg-dim);
  padding: 8px 0;
  border-top: 1px solid var(--border);
  font-style: italic;
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 44px;
}
.connector-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-dim);
  opacity: 0.4;
}

/* ── CLOSING ── */
.closing { padding: 120px 48px; }
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}
.closing-art {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.closing-art-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.12);
}
.c1 { width: 320px; height: 320px; }
.c2 { width: 220px; height: 220px; }
.c3 { width: 140px; height: 140px; border-color: rgba(200, 169, 110, 0.2); }
.closing-art-tree {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.tree-node {
  background: rgba(200, 169, 110, 0.12);
  border: 1px solid rgba(200, 169, 110, 0.25);
  border-radius: 100px;
  padding: 10px 24px;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
}
.tree-node.root { background: rgba(200, 169, 110, 0.18); border-color: var(--accent-dim); color: var(--accent); }
.tree-branch { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.tree-branch-inner { display: flex; gap: 16px; }
.tree-node.leaf { background: var(--bg-card); border-color: var(--border); font-size: 12px; }
.closing-text {}
.closing-eyebrow { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 300;
  line-height: 1.35;
  color: var(--fg);
  margin-bottom: 28px;
}
.closing-body { font-size: 15px; color: var(--fg-muted); line-height: 1.85; margin-bottom: 20px; }

/* ── FOOTER ── */
.footer {
  padding: 60px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-logo { font-family: var(--font-display); font-size: 30px; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 10px; }
.footer-tagline { font-family: var(--font-display); font-size: 15px; font-style: italic; color: var(--fg-dim); margin-bottom: 28px; }
.footer-legal { font-size: 11px; color: var(--fg-dim); line-height: 1.9; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .what-it-is-grid { grid-template-columns: 1fr 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
}
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 0 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 72px 0 64px; }
  .hero-art { height: 280px; }
  .what-it-is { padding: 80px 24px; }
  .what-it-is-grid { grid-template-columns: 1fr 1fr; }
  .philosophy { padding: 80px 24px; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 40px; }
  .how-it-works { padding: 80px 24px; }
  .closing { padding: 80px 24px; }
  .closing-inner { grid-template-columns: 1fr; gap: 48px; }
  .closing-art { height: 280px; }
  .footer { padding: 48px 24px; }
}