/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0e1117;
  --bg-2: #141820;
  --fg: #f0ebe0;
  --fg-muted: #8a8070;
  --accent: #e8923a;
  --accent-dim: rgba(232, 146, 58, 0.12);
  --border: rgba(240, 235, 224, 0.08);
  --nav-h: 60px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid var(--border);
  background: rgba(14, 17, 23, 0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 65% 50%, rgba(232, 146, 58, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* Ambient graphic */
.hero-ambient {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ambient-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(232, 146, 58, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.7; }
}
.ambient-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232, 146, 58, 0.15);
}
.ring-1 { width: 260px; height: 260px; }
.ring-2 { width: 190px; height: 190px; animation: spin-slow 18s linear infinite; }
.ring-3 { width: 120px; height: 120px; animation: spin-slow 12s linear infinite reverse; }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.ambient-center {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.ambient-label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

/* ── Stats row ── */
.stats-row {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3rem;
}
.stat-value {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: center;
  letter-spacing: 0.02em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Features ── */
.features {
  padding: 7rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.features-header { margin-bottom: 4rem; }
.section-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}
.section-heading {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg-2);
  padding: 2.5rem;
}
.feature-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.feature-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── Philosophy ── */
.philosophy {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7rem 2rem;
}
.philosophy-inner {
  max-width: 680px;
  margin: 0 auto;
}
.philosophy-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.label-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.philosophy-heading {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.philosophy-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ── Outcomes ── */
.outcomes {
  padding: 7rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.outcomes-heading {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 3rem;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.outcome {
  padding: 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.outcome:last-child, .outcome:nth-child(3n) { border-right: none; }
.outcome:nth-child(4), .outcome:nth-child(5), .outcome:nth-child(6) { border-bottom: none; }
.outcome-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.9rem;
}
.outcome-text {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
  font-style: italic;
}

/* ── Closing ── */
.closing {
  background: var(--accent);
  padding: 7rem 2rem;
}
.closing-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.closing-decoration {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.deco-bar {
  width: 4px;
  border-radius: 2px;
  background: rgba(14, 17, 23, 0.3);
}
.bar-1 { height: 24px; }
.bar-2 { height: 40px; }
.bar-3 { height: 56px; }
.bar-4 { height: 40px; }
.closing-quote {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: #0e1117;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.closing-attr {
  font-size: 0.85rem;
  color: rgba(14, 17, 23, 0.55);
  margin-bottom: 2rem;
}
.closing-body {
  font-size: 1rem;
  color: rgba(14, 17, 23, 0.7);
  line-height: 1.75;
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.footer-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.3rem;
}
.footer-sub {
  font-size: 0.8rem;
  color: var(--fg-muted);
  display: block;
}
.footer-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-ambient { display: none; }
  .stats-row { flex-wrap: wrap; gap: 2rem; }
  .stat { padding: 0 1.5rem; }
  .stat-divider { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome { border-right: none; }
  .outcome:nth-child(4), .outcome:nth-child(5) { border-bottom: 1px solid var(--border); }
  .outcome:nth-child(6) { border-bottom: none; }
  .footer-inner { flex-direction: column; gap: 1rem; }
}
@media (max-width: 480px) {
  .hero { padding: 5rem 0 3rem; }
  .hero-headline { font-size: 2.2rem; }
  .features, .philosophy, .outcomes, .closing { padding: 4rem 1.5rem; }
}