/* ═══════════════════════════════════════════════════════
   DENACOM 4.1 — main.css
   Design tokens from CLAUDE.md §7
   ═══════════════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  /* Backgrounds */
  --bg-page:    #0D1117;
  --bg-card:    #1B2A3C;
  --bg-section: #111820;

  /* Text */
  --text-primary:  #E8E8E8;
  --text-muted:    #888888;
  --text-label:    #C9A84C;

  /* Accent */
  --gold:       #C9A84C;
  --brand-dark: #0E2A47;

  /* CTAs */
  --cta-primary-bg:       #C9A84C;
  --cta-primary-text:     #0D1117;
  --cta-secondary-bg:     transparent;
  --cta-secondary-border: #C9A84C;
  --cta-secondary-text:   #C9A84C;

  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Figtree', 'Inter', sans-serif;

  /* Transitions */
  --transition: 200ms ease;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
main { padding-top: 72px; }

/* ─── TYPOGRAPHY ─── */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.display em { font-style: italic; color: var(--gold); }

.heading-1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.heading-1 em { font-style: italic; color: var(--gold); }

.heading-2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.2;
  color: var(--text-primary);
}
.heading-2 em { font-style: italic; color: var(--gold); }

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-label);
  margin-bottom: 18px;
  display: block;
}

.body-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
}
.body-text strong { color: var(--text-primary); font-weight: 500; }

/* ─── LAYOUT ─── */
.container       { max-width: 1160px; margin: 0 auto; padding: 0 48px; }
.container-narrow { max-width: 840px;  margin: 0 auto; padding: 0 48px; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cta-primary-bg);
  color: var(--cta-primary-text);
  border-radius: 999px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: filter var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 20px rgba(201,168,76,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cta-secondary-bg);
  color: var(--cta-secondary-text);
  border: 1.5px solid var(--cta-secondary-border);
  border-radius: 999px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--bg-page);
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ─── NAV ─── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  background: var(--bg-card);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  backdrop-filter: blur(12px);
}

.nav-logo img { height: 40px; display: block; }
.nav-logo { flex-shrink: 0; }

.nav-center {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* How It Works dropdown */
.nav-dropdown-wrap {
  position: relative;
}
.nav-dropdown-trigger {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 0;
  border: none;
  background: none;
  font-family: var(--font-body);
  transition: color var(--transition);
}
.nav-dropdown-trigger:hover { color: var(--text-primary); }
.nav-dropdown-trigger svg { transition: transform var(--transition); }
.nav-dropdown-wrap.open .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px;
  min-width: 180px;
  padding: 8px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-dropdown-wrap.open .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.nav-dropdown a:hover { color: var(--gold); background: rgba(201,168,76,0.06); }

.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  text-decoration: none;
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); }

.nav-link-muted {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.6;
  transition: opacity var(--transition);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link-muted:hover { opacity: 1; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-cta-primary {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--bg-page);
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: filter var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.nav-cta-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 14px rgba(201,168,76,0.3);
}

.nav-cta-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.nav-cta-secondary:hover {
  background: var(--gold);
  color: var(--bg-page);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 20px 24px 28px;
  z-index: 199;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a, .nav-mobile button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: none;
  background: none;
  font-family: var(--font-body);
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.nav-mobile a:hover, .nav-mobile button:hover { color: var(--text-primary); }
.nav-mobile .nav-mobile-sub {
  padding-left: 16px;
  font-size: 12px;
}
.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.nav-mobile-actions .btn-primary,
.nav-mobile-actions .btn-secondary {
  text-align: center;
  justify-content: center;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 60px 0 0;
  margin-top: 80px;
}

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

.footer-logo img { height: 32px; margin-bottom: 16px; }
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 200px;
}

.footer-col-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-label);
  margin-bottom: 16px;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-col-links a:hover { color: var(--text-primary); }

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 11.5px;
  color: var(--text-muted);
  opacity: 0.6;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 11.5px;
  color: var(--text-muted);
  opacity: 0.6;
  transition: opacity var(--transition);
}
.footer-bottom-links a:hover { opacity: 1; }

/* ─── SECTION SHARED ─── */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-section); }
.section-dark { background: var(--brand-dark); }

.section-header { margin-bottom: 56px; }
.section-header .eyebrow { margin-bottom: 12px; }

.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
}

/* ─── HOMEPAGE HERO ─── */
.home-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/Frame-1487663746.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,17,23,0.72);
  z-index: 1;
}
.home-hero .container { position: relative; z-index: 2; }
.home-hero .display { max-width: 800px; margin-bottom: 24px; }
.home-hero .body-text { max-width: 560px; margin-bottom: 16px; }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 200px;
  line-height: 1.5;
}

/* ─── WHO SECTION ─── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}
.who-item {
  background: var(--bg-card);
  padding: 40px 36px;
}
.who-item-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.who-item-heading {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.who-item-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.who-item-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.who-item-points li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.who-item-points li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}

/* ─── THREE CAPABILITIES STRIP ─── */
.capabilities-strip {
  background: var(--bg-section);
  padding: 80px 0;
}
.capabilities-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ─── HOW VCP WORKS ─── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
  margin-bottom: 40px;
}
.how-item {
  background: var(--bg-card);
  padding: 40px 32px;
}
.how-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  margin-bottom: 20px;
}
.how-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.how-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ─── AI CAPABILITIES ─── */
.ai-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
  margin-bottom: 40px;
}
.ai-card {
  background: var(--bg-card);
  padding: 40px 32px;
}
.ai-card-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}
.ai-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.ai-card-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.ai-card-uses {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ─── SOCIAL PROOF ─── */
.proof-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 56px;
}
.proof-logo-placeholder {
  width: 120px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
}
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.testimonial {
  background: var(--bg-card);
  padding: 40px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 24px;
}
.testimonial-attr {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* ─── WHY DENACOM ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.why-tile {
  background: var(--bg-card);
  padding: 40px 36px;
}
.why-tile-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.why-tile-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 2px;
  padding: 72px 64px;
  text-align: center;
}
.cta-banner .heading-2 { margin-bottom: 16px; }
.cta-banner .body-text { margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-banner .cta-group { justify-content: center; }

/* ─── READOUT PAGE ─── */
.readout-hero {
  padding: 100px 0 80px;
  background: var(--bg-section);
}
.readout-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.readout-card {
  background: var(--bg-card);
  padding: 44px 40px;
}
.readout-card-audience {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.readout-card-subtitle {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.readout-card-body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* ─── TRANSFORM / EXECUTE / SUSTAIN ─── */
.path-hero {
  padding: 100px 0 80px;
  background: var(--bg-section);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: 48px 0 40px;
}
.step-item {
  background: var(--bg-card);
  padding: 40px 32px;
}
.step-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.step-label {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}

.output-box {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 2px;
  padding: 24px 32px;
  margin: 0 0 40px;
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.output-box-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}

/* Sustain features */
.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin: 48px 0 40px;
}
.feature-item {
  background: var(--bg-card);
  padding: 36px 32px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ─── VCP PAGE ─── */
.vcp-hero {
  padding: 100px 0 80px;
  background: var(--bg-section);
}

.phases-intro {
  margin-bottom: 40px;
}

.phase-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  align-items: start;
}
.phase-meta {}
.phase-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 8px;
}
.phase-days {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}
.phase-content {}
.phase-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.phase-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.phase-output {
  font-size: 13px;
  color: var(--text-muted);
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  margin-top: 16px;
  line-height: 1.6;
}
.phase-output strong { color: var(--text-primary); }

.intel-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 36px;
}
.intel-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.04);
}
.intel-table td {
  padding: 18px 20px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: top;
}
.intel-table td:first-child {
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
}
.intel-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ─── AI PAGE ─── */
.ai-solution {
  padding: 72px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ai-solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.ai-solution-uses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 20px;
}
.ai-use-tag {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 3px;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.deploy-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
  margin-bottom: 40px;
}
.deploy-step {
  background: var(--bg-card);
  padding: 32px 28px;
}
.deploy-step-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.deploy-step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.deploy-step-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ─── ABOUT PAGE ─── */
.about-hero {
  padding: 100px 0 80px;
  background: var(--bg-section);
}

.founding-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.founding-block {
  background: var(--bg-card);
  padding: 40px 32px;
}
.founding-block-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.founding-block-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.founding-block-body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}

.founder-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  background: var(--bg-card);
  padding: 56px;
  margin-top: 48px;
}
.founder-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.founder-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.founder-bio {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.founder-credentials {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.founder-credentials li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.founder-credentials li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}

.quote-block {
  border-left: 2px solid var(--gold);
  padding: 20px 28px;
  margin: 24px 0;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 21px);
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.5;
}

.proof-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 36px;
}
.proof-table th {
  padding: 12px 20px;
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.04);
}
.proof-table td {
  padding: 16px 20px;
  font-size: 13.5px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: top;
}
.proof-table td:first-child { font-weight: 500; color: var(--text-primary); }

.firm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.firm-item {
  background: var(--bg-card);
  padding: 40px 32px;
}
.firm-item-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.firm-item-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ─── CONTACT PAGE ─── */
.contact-hero {
  padding: 100px 0 72px;
  background: var(--bg-section);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: start;
}
.contact-form-wrap {}
.contact-info {}
.contact-info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.contact-info-item {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Form shared styles */
.form-field { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-input,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-primary);
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus,
.form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); opacity: 0.5; }
.form-textarea { resize: vertical; min-height: 120px; }

.form-submit {
  background: var(--gold);
  color: var(--bg-page);
  border: none;
  border-radius: 999px;
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter var(--transition), box-shadow var(--transition);
}
.form-submit:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 18px rgba(201,168,76,0.3);
}
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-success {
  display: none;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 4px;
  padding: 20px 24px;
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.7;
  margin-top: 20px;
}
.form-success.visible { display: block; }
.form-error {
  display: none;
  background: rgba(200,60,60,0.1);
  border: 1px solid rgba(200,60,60,0.25);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 13px;
  color: #e07070;
  margin-bottom: 16px;
}
.form-error.visible { display: block; }

/* ─── LOGIN PAGE ─── */
body.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 24px;
}
.auth-card {
  width: 100%;
  max-width: 400px;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 6px;
  padding: 48px 44px;
}
.auth-logo {
  text-align: center;
  margin-bottom: 12px;
}
.auth-logo img { height: 56px; margin: 0 auto; }
.auth-portal-label {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 36px;
  display: block;
}
.auth-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 28px;
}
.auth-extras {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.auth-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
}
.auth-check input { accent-color: var(--gold); }
.auth-forgot {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: rgba(136,136,136,0.4);
  transition: color var(--transition);
}
.auth-forgot:hover { color: var(--text-primary); }
.btn-auth {
  width: 100%;
  background: var(--gold);
  color: var(--bg-page);
  border: none;
  border-radius: 999px;
  padding: 14px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter var(--transition), box-shadow var(--transition);
  display: block;
}
.btn-auth:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 18px rgba(201,168,76,0.3);
}
.auth-footer-link {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
}
.auth-footer-link a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(201,168,76,0.4);
}
.auth-error {
  display: none;
  font-size: 12.5px;
  color: #e07070;
  margin-bottom: 14px;
  padding: 10px 14px;
  background: rgba(200,60,60,0.1);
  border-radius: 3px;
}
.auth-error.visible { display: block; }

/* ─── PORTAL PAGE ─── */
.portal-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  background: var(--bg-card);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 100;
}
.portal-topbar img { height: 32px; }
.portal-user {
  display: flex;
  align-items: center;
  gap: 16px;
}
.portal-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.3);
}
.portal-signout {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.portal-signout:hover { color: var(--text-primary); }

.portal-main {
  padding-top: 64px;
}
.portal-welcome {
  padding: 40px 0 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.portal-welcome-text {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-primary);
}

.portal-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
}
.portal-card {
  background: var(--bg-card);
  padding: 40px 32px;
  position: relative;
}
.portal-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.badge-pending {
  background: rgba(201,168,76,0.08);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.2);
}
.badge-soon {
  background: rgba(136,136,136,0.08);
  color: var(--text-muted);
  border: 1px solid rgba(136,136,136,0.15);
}
.portal-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.portal-card-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-muted);
}
.portal-note {
  margin-top: 48px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  color: var(--text-muted);
}
.portal-note a { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(201,168,76,0.4); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .container-narrow { padding: 0 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ai-solution-inner { grid-template-columns: 1fr; gap: 40px; }
  .founder-card { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .nav-center { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  main { padding-top: 72px; }

  .container { padding: 0 20px; }
  .container-narrow { padding: 0 20px; }

  .section { padding: 60px 0; }
  .home-hero { padding: 60px 0 50px; min-height: auto; }
  .hero-stats { gap: 28px; }

  .who-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .ai-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-list { grid-template-columns: 1fr; }
  .readout-cards { grid-template-columns: 1fr; }
  .deploy-steps { grid-template-columns: 1fr 1fr; }
  .founding-blocks { grid-template-columns: 1fr; }
  .firm-grid { grid-template-columns: 1fr; }
  .portal-cards { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .capabilities-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }

  .phase-item { grid-template-columns: 1fr; gap: 16px; }
  .intel-table { font-size: 12px; }
  .intel-table th, .intel-table td { padding: 12px 14px; }

  .cta-banner { padding: 48px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .portal-topbar { padding: 0 20px; }

  .nav-cta-primary, .nav-cta-secondary { display: none; }
}

@media (max-width: 480px) {
  .deploy-steps { grid-template-columns: 1fr; }
  .auth-card { padding: 36px 24px; }
}
