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

:root {
  --bg:         #0E0E0E;
  --bg-2:       #131313;
  --bg-3:       #1A1A1A;
  --surface:    #181818;
  --surface-2:  #212121;
  --border:     rgba(201,168,76,0.12);
  --border-2:   rgba(201,168,76,0.25);
  --accent:     #C9A84C;
  --accent-dim: rgba(201,168,76,0.15);
  --text:       #E5D9C3;
  --text-2:     #9A8F7E;
  --text-3:     #6B6256;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ─────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; }
em { font-style: italic; color: var(--accent); }

/* ─── Layout Helpers ────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.section-headline {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--text);
  margin-bottom: 3.5rem;
  line-height: 1.1;
}

/* ─── Hero ───────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: center;
  min-height: 90vh;
  padding: 6rem 8vw 5rem;
  max-width: 1400px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.hero-kicker { margin-bottom: 1.5rem; }

.pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  padding: 6px 16px;
  background: var(--accent-dim);
}

.hero-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.75rem;
  color: var(--text);
}

.hero-lede {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-stat { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.3;
  max-width: 80px;
}

.hero-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Mentor Card */
.hero-visual { position: relative; }

.mentor-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 0 60px rgba(201,168,76,0.06), 0 30px 60px rgba(0,0,0,0.5);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.25rem;
}

.ai-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}

.card-msg {
  font-family: var(--font-head);
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

.card-footer {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
}

.sub-card {
  position: absolute;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.sub-card-1 { bottom: -20px; left: -40px; }
.sub-card-2 { top: -20px; right: -30px; }

.sub-icon {
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
}

/* ─── Features ───────────────────────────────────── */
.features {
  padding: 7rem 8vw;
  max-width: 1400px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.feature-card {
  background: var(--bg);
  padding: 2.5rem;
  transition: background 0.3s ease;
}

.feature-card:hover { background: var(--surface); }

.feature-icon {
  margin-bottom: 1.25rem;
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ─── How ────────────────────────────────────────── */
.how {
  padding: 7rem 8vw;
  max-width: 1400px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.steps {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: start;
  gap: 0;
}

.step { padding: 0 2rem; }

.step-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}

.step-connector {
  display: flex;
  justify-content: center;
  padding-top: 2rem;
}

/* ─── Outputs ────────────────────────────────────── */
.outputs {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7rem 8vw;
}

.outputs-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.outputs-headline {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.outputs-body {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
}

.outputs-list { display: flex; flex-direction: column; gap: 0; }

.output-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.output-item:last-child { border-bottom: none; }

.output-check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.output-name {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 4px;
}

.output-desc {
  display: block;
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ─── Backing ────────────────────────────────────── */
.backing {
  padding: 7rem 8vw;
  border-bottom: 1px solid var(--border);
}

.backing-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.pull-quote {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 1.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.pull-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.quote-attr { display: flex; flex-direction: column; gap: 4px; }

.attr-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.attr-title { font-size: 0.8rem; color: var(--text-3); }

.cred-group { margin-bottom: 2.5rem; }

.cred-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.cred-items {
  display: flex;
  gap: 2rem;
}

.cred-item { display: flex; flex-direction: column; gap: 4px; }

.cred-val {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.cred-lbl {
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.4;
}

.cred-note {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ─── Closing ────────────────────────────────────── */
.closing {
  padding: 8rem 8vw;
  text-align: center;
}

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

.closing-headline {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 2rem;
  line-height: 1.15;
}

.closing-body {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Footer ─────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 4rem 8vw 2.5rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-3);
  max-width: 240px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }

.col-head {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.5rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--text); }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-3);
}

.footer-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--text-3);
}

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 4rem 6vw 5rem; min-height: auto; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .step-connector { display: none; }
  .outputs-inner { grid-template-columns: 1fr; gap: 4rem; }
  .backing-inner { grid-template-columns: 1fr; gap: 4rem; }
}

@media (max-width: 640px) {
  .hero { padding: 3rem 5vw 4rem; }
  .features, .how, .backing { padding: 5rem 5vw; }
  .closing { padding: 5rem 5vw; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 2.5rem; }
  .footer-links { gap: 2rem; }
  .hero-meta { gap: 1.5rem; }
}
