
/* ═══════════════════════════════════════════
   AVERO DESIGN SYSTEM — GLOBAL TOKENS
═══════════════════════════════════════════ */
:root {
  --deep:       #0F2E24;
  --forest:     #1B4332;
  --gold:       #C8A96E;
  --gold-dim:   rgba(200,169,110,0.18);
  --gold-rule:  rgba(200,169,110,0.28);
  --warm:       #FDFAF5;
  --sand:       #F5EDD8;
  --ink:        #1A1A18;
  --ink-mid:    rgba(26,26,24,0.6);
  --ink-light:  rgba(26,26,24,0.38);
  --white:      rgba(255,255,255,0.92);
  --white-dim:  rgba(255,255,255,0.48);
  --white-faint:rgba(255,255,255,0.12);

  /* Licensed fonts: Canela Light + GT America — loaded when purchased */
  /* Web fallback active until then */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.35s var(--ease);
}

/* 1. Load fonts */
@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* 2. Then variables */
:root {
  --font-body: 'Inter', system-ui, sans-serif;
}

/* 3. Then the rest of your styles */
body {
  font-family: var(--font-body);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--warm);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY SCALE ── */
.display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.display-xl { font-size: clamp(52px, 7vw, 96px); }
.display-lg { font-size: clamp(40px, 5vw, 72px); }
.display-md { font-size: clamp(32px, 4vw, 52px); }
.display-sm { font-size: clamp(24px, 3vw, 36px); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.body-lg { font-size: 18px; line-height: 1.75; font-weight: 300; }
.body-md { font-size: 15px; line-height: 1.8;  font-weight: 300; }
.body-sm { font-size: 13px; line-height: 1.75; font-weight: 300; }

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) { .container { padding: 0 24px; } }

.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }

/* ── SURFACES ── */
.bg-deep   { background: var(--deep); }
.bg-forest { background: var(--forest); }
.bg-warm   { background: var(--warm); }
.bg-sand   { background: var(--sand); }

/* ── GOLD RULE ── */
.gold-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}
.gold-rule-full {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold-rule);
}

/* Gold rule — animate in on scroll */
.js-loaded span.gold-rule { width: 0; transition: none; }
span.gold-rule.visible {
  animation: ruleDraw 1s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes ruleDraw { from { width: 0; } to { width: 48px; } }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: color 0.4s cubic-bezier(0.16,1,0.3,1);
  border-radius: 0;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
/* Left-to-right fill sweep */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.42s cubic-bezier(0.16,1,0.3,1);
  z-index: -1;
}
.btn:hover::before  { transform: translateX(0); }
.btn:hover          { color: var(--deep); background: transparent; }
.btn-dark {
  border-color: var(--deep);
  color: var(--deep);
}
.btn-dark::before   { background: var(--deep); }
.btn-dark:hover     { color: var(--warm); }
.btn-arrow::after   { content: '→'; font-size: 14px; letter-spacing: 0; }

/* ── ANIMATE ON SCROLL ── */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js-loaded .reveal {
  opacity: 0;
  transform: translateY(24px);
}
.js-loaded .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #0F2E24;
  border-bottom: 1px solid rgba(200,169,110,0.28);
  transition: background 0.35s cubic-bezier(0.16,1,0.3,1),
              backdrop-filter 0.35s cubic-bezier(0.16,1,0.3,1);
}
/* Frosted glass on scroll — triggered by JS adding .scrolled */
.nav.scrolled {
  background: rgba(15,46,36,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 48px;
}
.nav-logo-mark svg { display: block; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--white);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  flex: 1;
}
.nav-links li { position: relative; }
.nav-links a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  padding: 0 20px;
  height: 68px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active {
  color: var(--white);
  border-bottom: 1px solid var(--gold);
}
.nav-links .chevron {
  font-size: 9px;
  opacity: 0.5;
  transition: transform 0.2s;
}
.nav-links li:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 380px;
  max-width: 420px;
  background: #0F2E24;
  border: 1px solid rgba(200,169,110,0.28);
  border-top: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s cubic-bezier(0.16,1,0.3,1), transform 0.25s cubic-bezier(0.16,1,0.3,1);
  display: flex;
  flex-direction: column;
  gap: 1px;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-links li:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dd-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 20px;
  background: #0F2E24;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  border-left: 2px solid transparent;
}
.dd-item:hover {
  background: rgba(200,169,110,0.06);
  border-left-color: #C8A96E;
}
.dd-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-rule);
  overflow: hidden;
}
.dd-icon svg {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  flex-shrink: 0;
}
.dd-body strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 2px;
  white-space: nowrap;
}
.dd-body span {
  font-size: 11px;
  color: var(--white-dim);
  line-height: 1.4;
  display: none;
}

.nav-cta { margin-left: auto; }

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--deep);
  z-index: 99;
  padding: 100px 24px 48px;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--gold-rule);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--white); }

@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ════════════════════════════════════════════
   PAGE OFFSET (sticky nav)
════════════════════════════════════════════ */
.page-section { padding-top: 68px; }

/* ════════════════════════════════════════════
   HOME — HERO
════════════════════════════════════════════ */
#home { background: var(--deep); }

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg-mark {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  opacity: 0.06;
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 48%;
  background-image: url('.../assets/images/Dubai-skyline.jpeg'); /* <-- local asset */
  background-size: cover;
  background-position: center;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--deep) 0%, rgba(15,46,36,0.72) 40%, rgba(15,46,36,0.45) 100%);
}

.hero-content {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  color: var(--gold);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 7.5vw, 104px);
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 0;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.8;
  color: var(--white-dim);
  font-weight: 300;
  max-width: 480px;
  margin: 32px 0 48px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.hero-link:hover { color: var(--gold); }
.hero-link::after { content: '→'; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-faint);
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--gold-rule);
}

/* ════════════════════════════════════════════
   HOME — MARKET CONTEXT BAR
════════════════════════════════════════════ */
.stats-bar {
  background: var(--forest);
  border-top: 1px solid var(--gold-rule);
  border-bottom: 1px solid var(--gold-rule);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.stat-item {
  padding: 0 48px;
  border-right: 1px solid var(--gold-rule);
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--white-dim);
  font-weight: 300;
  line-height: 1.5;
  max-width: 200px;
}
.stats-source {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gold-rule);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.2);
  text-align: center;
}

/* ════════════════════════════════════════════
   HOME — THE PROBLEM
════════════════════════════════════════════ */
.problem-section { background: var(--warm); padding: 100px 0; }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem-left .eyebrow { color: var(--gold); margin-bottom: 24px; }
.problem-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--deep);
  line-height: 1.1;
  margin-bottom: 32px;
}
.problem-headline em { font-style: italic; color: var(--forest); }
.problem-body p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-mid);
  font-weight: 300;
  margin-bottom: 20px;
}
.tension-panels { display: flex; flex-direction: column; gap: 2px; }
.tension-panel {
  padding: 36px 40px;
  position: relative;
}
.tension-panel::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  opacity: 0.4;
}
.tension-panel.tp-a { background: var(--deep); }
.tension-panel.tp-b { background: var(--forest); }
.tension-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  opacity: 0.7;
}
.tension-text {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.7;
  font-weight: 300;
}

/* ════════════════════════════════════════════
   HOME — WHAT AVERO DOES
════════════════════════════════════════════ */
.pillars-section { background: var(--deep); padding: 100px 0; }
.pillars-header { text-align: center; margin-bottom: 72px; }
.pillars-header .eyebrow { color: var(--gold); margin-bottom: 24px; }
.pillars-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--white);
  line-height: 1.1;
}
.pillars-headline em { font-style: italic; color: var(--gold); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-rule);
}
.pillar-card {
  background: var(--deep);
  padding: 48px 40px;
  transition: background 0.3s;
}
.pillar-card:hover { background: rgba(200,169,110,0.05); }
.pillar-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 24px;
}
.pillar-icon { width: 40px; height: 40px; min-width: 40px; max-width: 40px; margin-bottom: 24px; display: block; overflow: hidden; }
.pillar-icon svg { width: 40px !important; height: 40px !important; }
.pillar-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.pillar-body {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.8;
  font-weight: 300;
}

/* ════════════════════════════════════════════
   HOME — VERTEX FRAMEWORK BLOCK
════════════════════════════════════════════ */
.vertex-block { background: var(--sand); padding: 100px 0; }
.vertex-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.vertex-eyebrow { color: var(--gold); margin-bottom: 24px; }
.vertex-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--deep);
  line-height: 1.1;
  margin-bottom: 28px;
}
.vertex-headline em { font-style: italic; }
.vertex-body {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 20px;
}
.vertex-stats {
  display: flex;
  gap: 40px;
  margin: 36px 0 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(15,46,36,0.12);
}
.vertex-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--deep);
  line-height: 1;
  margin-bottom: 4px;
}
.vertex-stat-label {
  font-size: 11px;
  color: var(--ink-light);
  font-weight: 300;
  line-height: 1.4;
}
.vertex-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.vertex-mark svg {
  width: 100%;
  max-width: 360px;
  opacity: 0.85;
}
/* TM label on vertex mark */
.vertex-tm {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* ════════════════════════════════════════════
   HOME — SIX COMMITMENTS
════════════════════════════════════════════ */
.commitments-section { background: var(--forest); padding: 100px 0; }
.commitments-header { margin-bottom: 64px; }
.commitments-header .eyebrow { color: var(--gold); margin-bottom: 20px; }
.commitments-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--white);
  line-height: 1.1;
  max-width: 600px;
}
.commitments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-rule);
}
.commitment-card {
  background: var(--forest);
  padding: 40px 36px;
  border-top: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.commitment-card:hover {
  border-top-color: var(--gold);
  background: rgba(200,169,110,0.04);
}
.commitment-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.commitment-body {
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.8;
  font-weight: 300;
}

/* ════════════════════════════════════════════
   HOME — CTA BANNER
════════════════════════════════════════════ */
.cta-banner {
  background: var(--deep);
  padding: 100px 0;
  border-top: 1px solid var(--gold-rule);
  border-bottom: 1px solid var(--gold-rule);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner-headline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(30px, 4vw, 56px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner-body {
  font-size: 15px;
  color: rgba(255,255,255,0.34);
  font-weight: 300;
  line-height: 1.85;
  max-width: 520px;
  margin: 0 auto 40px;
}

/* ════════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════════ */
#about { background: var(--deep); }

.about-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--deep);
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
}
.about-hero-bg {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  opacity: 0.05;
}
.about-hero-content { position: relative; z-index: 2; max-width: 720px; }
.about-hero-content .eyebrow { color: var(--gold); margin-bottom: 28px; }
.about-hero-content .gold-rule { margin: 28px 0; }

/* Founding Story */
.founding { background: var(--sand); padding: 100px 0; }
.founding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.founding-eyebrow { color: var(--gold); margin-bottom: 24px; }
.founding-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--deep);
  line-height: 1.1;
  margin-bottom: 36px;
}
.founding-body p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink-mid);
  font-weight: 300;
  margin-bottom: 22px;
}
.founding-body p:last-child { margin-bottom: 0; }
.founding-pull {
  background: var(--deep);
  padding: 48px 44px;
  border-left: 3px solid var(--gold);
  margin-bottom: 32px;
}
.founding-pull blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 20px;
}
.founding-pull-sub {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
}
.founding-commitments {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 32px;
}
.founding-commitment {
  background: var(--forest);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.founding-commitment-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.founding-commitment span {
  font-size: 13px;
  color: var(--white-dim);
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* Market Moment */
.market-moment { background: var(--forest); padding: 100px 0; }
.market-header { margin-bottom: 64px; }
.market-header .eyebrow { color: var(--gold); margin-bottom: 20px; }
.market-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--white);
  line-height: 1.1;
}
.market-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-rule);
}
.market-card {
  background: var(--forest);
  padding: 48px 36px;
}
.market-stat {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
}
.market-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}
.market-card-body {
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.8;
  font-weight: 300;
}

/* Personality */
.personality { background: var(--warm); padding: 100px 0; }
.personality-header { margin-bottom: 64px; }
.personality-header .eyebrow { color: var(--gold); margin-bottom: 20px; }
.personality-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--deep);
  line-height: 1.1;
}
.personality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(15,46,36,0.1);
}
.personality-card {
  background: var(--warm);
  padding: 48px 44px;
  transition: background 0.3s;
}
.personality-card:hover { background: rgba(15,46,36,0.03); }
.personality-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 28px;
  color: var(--deep);
  line-height: 1.2;
  margin-bottom: 20px;
}
.personality-title em { font-style: italic; color: var(--forest); }
.personality-body {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.85;
  font-weight: 300;
}

/* Vision */
.vision { background: var(--deep); padding: 100px 0; }
.vision-header { margin-bottom: 72px; }
.vision-header .eyebrow { color: var(--gold); margin-bottom: 24px; }
.vision-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--white);
  line-height: 1.1;
}
.vision-headline em { font-style: italic; color: var(--gold); }
.vision-stages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gold-rule);
}
.vision-stage {
  background: rgba(200,169,110,0.04);
  padding: 56px 48px;
  border-top: 2px solid var(--gold-rule);
}
.vision-stage-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 600;
}
.vision-stage-period {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--white-dim);
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0.5;
}
.vision-stage-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 28px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.vision-stage-body {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.8;
  font-weight: 300;
}

/* Leadership placeholder */
.leadership { background: var(--sand); padding: 100px 0; }
.leadership-header { margin-bottom: 56px; }
.leadership-header .eyebrow { color: var(--gold); margin-bottom: 20px; }
.leadership-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--deep);
  line-height: 1.1;
  margin-bottom: 20px;
}
.leadership-sub {
  font-size: 15px;
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.8;
  max-width: 600px;
}
.leadership-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(15,46,36,0.1);
}
.leadership-card {
  background: var(--sand);
  padding: 40px 36px;
}
.leadership-avatar {
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold-rule);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.leadership-avatar svg { width: 28px; height: 28px; opacity: 0.3; }
.leadership-role {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}
.leadership-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--deep);
  margin-bottom: 12px;
}
.leadership-coming {
  font-size: 12px;
  color: var(--ink-light);
  font-weight: 300;
  letter-spacing: 0.06em;
}

/* ════════════════════════════════════════════
   SERVICES HUB
════════════════════════════════════════════ */
#services { background: var(--deep); }

.services-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: var(--deep);
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}
.services-hero-bg {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  opacity: 0.04;
  pointer-events: none;
}

.service-cards {
  background: var(--warm);
  padding: 80px 0;
}
.service-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(15,46,36,0.1);
}
.service-card {
  background: var(--warm);
  padding: 64px 56px;
  text-decoration: none;
  display: block;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover { background: rgba(15,46,36,0.03); }
.service-card:hover::after { transform: scaleX(1); }
.sc-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 20px;
}
.sc-icon { width: 44px; height: 44px; min-width: 44px; min-height: 44px; max-width: 44px; max-height: 44px; margin-bottom: 24px; display: block; overflow: hidden; }
.sc-icon svg { width: 44px !important; height: 44px !important; }
.sc-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--deep);
  margin-bottom: 12px;
}
.sc-desc {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
}
.sc-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--deep);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sc-link::after { content: '→'; }

/* Engagement model */
.engagement { background: var(--sand); padding: 100px 0; }
.engagement-header { margin-bottom: 72px; text-align: center; }
.engagement-header .eyebrow { color: var(--gold); margin-bottom: 20px; }
.engagement-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--deep);
  line-height: 1.1;
}
.engagement-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.engagement-phases::after {
  content: '';
  position: absolute;
  top: 28px;
  left: 16.67%;
  right: 16.67%;
  height: 1px;
  background: var(--gold-rule);
  pointer-events: none;
}
.phase-card { padding: 0 40px; text-align: center; }
.phase-dot {
  width: 16px;
  height: 16px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  margin: 0 auto 32px;
  background: var(--sand);
  position: relative;
  z-index: 1;
}
.phase-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--deep);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 16px;
}
.phase-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 6px;
}
.phase-subtitle {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}
.phase-body {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.8;
  font-weight: 300;
}

/* ════════════════════════════════════════════
   GBS SOLUTIONS
════════════════════════════════════════════ */
#gbs { background: var(--deep); }
.domains { background: var(--warm); padding: 100px 0; }


/* Execution Excellence – domains intro narrative (light surface) */
.domains .maturity-stage-body {
  color: var(--ink-mid);
}


/* Domains intro paragraph – light surface */
.domains .maturity-stage-body {
  color: var(--ink-mid);
}


.domains-header { margin-bottom: 64px; }
.domains-header .eyebrow { color: var(--gold); margin-bottom: 20px; }
.domains-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--deep);
  line-height: 1.1;
}
.domains-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(15,46,36,0.1);
}
.domain-card {
  background: var(--warm);
  padding: 36px 28px;
  transition: background 0.3s;
}
.domain-card:hover { background: rgba(15,46,36,0.03); }
.domain-icon { width: 36px; height: 36px; min-width: 36px; max-width: 36px; margin-bottom: 20px; display: block; overflow: hidden; }
.domain-icon svg { width: 36px !important; height: 36px !important; }
.domain-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 8px;
}
.domain-cluster {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}
.domain-body {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.75;
  font-weight: 300;
}


/* Maturity Model */
.maturity { background: var(--deep); padding: 100px 0; }
.maturity-header { margin-bottom: 64px; }
.maturity-header .eyebrow { color: var(--gold); margin-bottom: 20px; }
.maturity-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--white);
  line-height: 1.1;
}
.maturity-stages {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--gold-rule);
  margin-bottom: 2px;
}
.maturity-stage {
  background: var(--deep);
  padding: 36px 24px;
  border-top: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.maturity-stage:hover {
  border-top-color: var(--gold);
  background: rgba(200,169,110,0.04);
}
.maturity-stage-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 12px;
  line-height: 1;
}
.maturity-stage-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.maturity-stage-delivers {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 10px;
  opacity: 0.7;
}
.maturity-stage-body {
  font-size: 12px;
  color: var(--white-dim);
  line-height: 1.75;
  font-weight: 300;
}


.domains .maturity-stage-body {
  color: var(--ink-mid) !important;
}

.maturity-bar {
  background: var(--forest);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.maturity-bar-arrow { color: var(--gold); opacity: 0.5; font-size: 14px; }
.maturity-bar-text {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white-dim);
  font-weight: 500;
}

/* Platform table */
.platform-table-section { background: var(--sand); padding: 80px 0; overflow-x: auto; }
.platform-table-header { margin-bottom: 40px; }
.platform-table-header .eyebrow { color: var(--gold); margin-bottom: 16px; }
.platform-table-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--deep);
  line-height: 1.1;
  margin-bottom: 16px;
}
.platform-table-sub {
  font-size: 14px;
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.7;
  max-width: 600px;
}
.ptable {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}
.ptable th {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--deep);
  padding: 14px 20px;
  text-align: left;
  border-bottom: 2px solid rgba(15,46,36,0.15);
}
.ptable th:first-child { color: var(--gold); }
.ptable td {
  font-size: 12px;
  color: var(--ink-mid);
  font-weight: 300;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(15,46,36,0.08);
  vertical-align: top;
  line-height: 1.6;
}
.ptable tr:last-child td { border-bottom: none; }
.ptable td:first-child {
  font-weight: 600;
  color: var(--deep);
  font-size: 13px;
  white-space: nowrap;
}
.ptable td.dash { color: var(--ink-light); }

/* ════════════════════════════════════════════
   AI SOLUTIONS
════════════════════════════════════════════ */
#ai { background: var(--deep); }

/* Governance Gap */
.gov-gap { background: var(--sand); padding: 100px 0; }
.gov-gap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.gov-gap-left .eyebrow { color: var(--gold); margin-bottom: 24px; }
.gov-gap-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--deep);
  line-height: 1.15;
  margin-bottom: 28px;
}
.gov-gap-body p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 18px;
}
.maturity-scale {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ms-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.ms-num {
  width: 48px;
  background: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  padding: 16px 0;
}
.ms-content {
  flex: 1;
  padding: 16px 20px;
  border-left: 1px solid var(--gold-rule);
}
.ms-row.ms-active .ms-content { background: rgba(200,169,110,0.1); }
.ms-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 3px;
}
.ms-desc {
  font-size: 12px;
  color: var(--ink-mid);
  font-weight: 300;
}
.ms-active .ms-label { color: var(--deep); }
.ms-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.7;
  font-style: italic;
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  opacity: 0.7;
}
/* ══════════════════════════════════════════
   AI CONTROL — FOUR BOX HOVER CARDS
══════════════════════════════════════════ */
.four-layers { background: var(--deep); padding: 100px 0; }
.four-layers-header { margin-bottom: 32px; }
.four-layers-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(30px, 3.5vw, 46px);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.layer-intro {
  font-size: 15px;
  color: rgba(255,255,255,0.42);
  font-weight: 300;
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 32px;
}

.layers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(200,169,110,0.12);
}

.layer-card {
  background: rgba(200,169,110,0.03);
  padding: 34px 30px 0;
  border-top: 2px solid transparent;
  cursor: default;
  position: relative;
  min-height: 260px;
  transition:
    background 0.4s cubic-bezier(0.16,1,0.3,1),
    border-top-color 0.3s;
}

.layer-card:hover {
  border-top-color: var(--gold);
  background: rgba(200,169,110,0.08);
}

.layer-num {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.layer-tag {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.layer-name {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 10px;
}

.layer-kicker {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  font-weight: 500;
  margin: 0;
  padding-bottom: 34px;
  transition: padding-bottom 0.35s cubic-bezier(0.16,1,0.3,1), color 0.3s ease;
}

.layer-card:hover .layer-kicker {
  padding-bottom: 14px;
  color: rgba(200,169,110,0.76);
}

.layer-kicker::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--gold);
  margin-top: 14px;
  opacity: 0;
  transition:
    width 0.45s cubic-bezier(0.16,1,0.3,1),
    opacity 0.35s;
}

.layer-card:hover .layer-kicker::after {
  width: 28px;
  opacity: 0.7;
}


.layer-reveal {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.5s cubic-bezier(0.16,1,0.3,1),
    opacity 0.35s 0.06s;
}

.layer-card:hover .layer-reveal {
  max-height: 520px;
  opacity: 1;
}


.layer-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.55;
  margin: 0 0 12px;
}

.layer-body {
  font-size: 13px;
  color: rgba(255,255,255,0.46);
  line-height: 1.78;
  font-weight: 300;
  padding-bottom: 30px;
  margin: 0;
}

@media (max-width: 1024px) {
  .layers-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .layers-grid {
    grid-template-columns: 1fr;
  }

  .layer-card {
    padding: 24px 24px 0;
    min-height: auto;
  }

  .layer-name {
    font-size: 18px;
  }

  .layer-kicker {
    font-size: 9px;
  }

  .layer-title {
    font-size: 15px;
  }

  .layer-body {
    font-size: 12px;
    padding-bottom: 24px;
  }
}

/* Five-phase journey */
.five-phase { background: var(--warm); padding: 100px 0; }
.five-phase-header { margin-bottom: 64px; }
.five-phase-header .eyebrow { color: var(--gold); margin-bottom: 20px; }
.five-phase-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--deep);
  line-height: 1.1;
}
.phases-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(15,46,36,0.1);
}
.phase-item {
  background: var(--warm);
  padding: 36px 28px;
  border-top: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.phase-item:hover {
  border-top-color: var(--gold);
  background: rgba(200,169,110,0.04);
}
.pi-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}
.pi-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 12px;
}
.pi-instruments {
  list-style: none;
  margin-bottom: 16px;
}
.pi-instruments li {
  font-size: 12px;
  color: var(--ink-mid);
  font-weight: 300;
  padding: 4px 0;
  border-bottom: 1px solid rgba(15,46,36,0.06);
  line-height: 1.5;
}
.pi-output-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 6px;
  opacity: 0.7;
}
.pi-output {
  font-size: 12px;
  color: var(--ink-mid);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
}

/* Five questions */
.five-questions { background: var(--forest); padding: 80px 0; }
.five-questions-headline {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 48px;
  text-align: center;
}
.questions-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--gold-rule);
  margin-bottom: 48px;
}
.question-item {
  background: var(--forest);
  padding: 32px 24px;
  text-align: center;
}
.q-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}
.q-text {
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.7;
  font-weight: 300;
}

/* ════════════════════════════════════════════
   DATA SOLUTIONS
════════════════════════════════════════════ */
#data { background: var(--deep); }

.data-problem { background: var(--warm); padding: 100px 0; }
.data-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.data-problem-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--deep);
  line-height: 1.15;
  margin-bottom: 32px;
}
.data-problem-body p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 18px;
}
.data-warning {
  background: var(--deep);
  padding: 36px 40px;
  border-left: 3px solid var(--gold);
}
.data-warning p {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.8;
  font-weight: 300;
  font-style: italic;
}

/* Four phases */
.four-phases { background: var(--deep); padding: 100px 0; }
.four-phases-header { margin-bottom: 64px; }
.four-phases-header .eyebrow { color: var(--gold); margin-bottom: 20px; }
.four-phases-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--white);
  line-height: 1.1;
}
.phases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gold-rule);
}
.data-phase {
  background: var(--deep);
  padding: 44px 36px;
  border-top: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.data-phase:hover {
  border-top-color: var(--gold);
  background: rgba(200,169,110,0.04);
}
.dp-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 16px;
  line-height: 1;
}
.dp-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}
.dp-body {
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.8;
  font-weight: 300;
}

/* Workflow Data Fabric */
.data-fabric { background: var(--sand); padding: 100px 0; }
.data-fabric-header { margin-bottom: 64px; }
.data-fabric-header .eyebrow { color: var(--gold); margin-bottom: 20px; }
.data-fabric-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--deep);
  line-height: 1.15;
  margin-bottom: 16px;
}
.data-fabric-sub {
  font-size: 14px;
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.8;
  max-width: 560px;
}
.fabric-components {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(15,46,36,0.1);
}
.fabric-component {
  background: var(--sand);
  padding: 36px 32px;
  transition: background 0.3s;
}
.fabric-component:hover { background: rgba(200,169,110,0.08); }
.fc-num {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.fc-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 10px;
}
.fc-body {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.75;
  font-weight: 300;
}

/* ════════════════════════════════════════════
   INDUSTRY ALIGNMENT
════════════════════════════════════════════ */
#industry { background: var(--deep); }

.sectors { background: var(--warm); padding: 100px 0; }
.sectors-header { margin-bottom: 64px; }
.sectors-header .eyebrow { color: var(--gold); margin-bottom: 20px; }
.sectors-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--deep);
  line-height: 1.1;
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(15,46,36,0.1);
}
.sector-card {
  background: var(--warm);
  overflow: hidden;
}
.sector-photo {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.sector-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,46,36,0.3), rgba(15,46,36,0.7));
}
.sector-photo-label {
  position: absolute;
  bottom: 20px;
  left: 24px;
  z-index: 1;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.sector-body { padding: 36px 32px; }
.sector-cluster {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}
.sector-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 14px;
}
.sector-text {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.8;
  font-weight: 300;
}

/* Regulatory */
.regulatory { background: var(--deep); padding: 100px 0; }
.regulatory-header { margin-bottom: 64px; }
.regulatory-header .eyebrow { color: var(--gold); margin-bottom: 20px; }
.regulatory-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--white);
  line-height: 1.1;
}
.reg-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-rule);
}
.reg-card {
  background: var(--deep);
  padding: 44px 40px;
  transition: background 0.3s;
}
.reg-card:hover { background: rgba(200,169,110,0.04); }
.reg-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--deep);
  background: var(--gold);
  padding: 4px 10px;
  margin-bottom: 20px;
}
.reg-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}
.reg-body {
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.8;
  font-weight: 300;
}

/* GCC Context */
.gcc-context { background: var(--sand); padding: 80px 0; }
.gcc-context-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.gcc-context-headline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--deep);
  line-height: 1.2;
  margin-bottom: 24px;
}
.gcc-context-body {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.85;
  font-weight: 300;
}
.gcc-points { display: flex; flex-direction: column; gap: 1px; }
.gcc-point {
  background: var(--deep);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.gcc-point-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}
.gcc-point span {
  font-size: 13px;
  color: var(--white-dim);
  font-weight: 300;
  line-height: 1.6;
}

/* ════════════════════════════════════════════
   INSIGHTS
════════════════════════════════════════════ */
#insights { background: var(--deep); }

.insights-hero {
  background: var(--deep);
  padding: 140px 0 80px;
  border-bottom: 1px solid var(--gold-rule);
}
.insights-hero .eyebrow { color: var(--gold); margin-bottom: 24px; }
.insights-hero-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
}
.insights-hero-sub {
  font-size: 16px;
  color: var(--white-dim);
  font-weight: 300;
  line-height: 1.7;
  max-width: 540px;
}

.insights-grid-section { background: var(--warm); padding: 80px 0; }
.insights-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(15,46,36,0.1);
}
.insight-card {
  background: var(--warm);
  text-decoration: none;
  display: block;
  transition: background 0.3s;
}
.insight-card:hover { background: rgba(15,46,36,0.03); }
.insight-card-header {
  background: var(--deep);
  padding: 48px 36px;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.insight-card-header.forest-header { background: var(--forest); }
.insight-category {
  position: absolute;
  top: 24px;
  left: 36px;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.insight-card-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  color: var(--white);
  line-height: 1.2;
}
.insight-card-body { padding: 32px 36px; }
.insight-card-sub {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 20px;
}
.insight-read {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--deep);
  display: flex;
  align-items: center;
  gap: 8px;
}
.insight-read::after { content: '→'; }
.coming-soon-card .insight-card-header {
  opacity: 0.4;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
}
.coming-soon-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  opacity: 0.6;
}
.coming-soon-card .insight-card-body { opacity: 0.4; }

/* ════════════════════════════════════════════
   ARTICLE: IS YOUR AI GOVERNED?
════════════════════════════════════════════ */
#article { background: var(--deep); }

.article-header {
  background: var(--deep);
  padding: 140px 0 80px;
  border-bottom: 1px solid var(--gold-rule);
}
.article-breadcrumb {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--white-dim);
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.article-breadcrumb span { opacity: 0.4; }
.article-category {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}
.article-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  line-height: 1.08;
  max-width: 820px;
  margin-bottom: 24px;
}
.article-subtitle {
  font-size: 18px;
  color: var(--white-dim);
  font-weight: 300;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 28px;
}
.article-meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--white-faint);
  text-transform: uppercase;
}

.article-body { background: var(--warm); padding: 80px 0; }
.article-content { max-width: 740px; margin: 0 auto; }
.article-content h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 32px;
  color: var(--deep);
  line-height: 1.2;
  margin: 48px 0 20px;
}
.article-content p {
  font-size: 17px;
  color: var(--ink-mid);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 22px;
}
.article-content strong {
  font-weight: 600;
  color: var(--ink);
}
.article-pull {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 28px;
  margin: 36px 0;
}
.article-pull p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--deep);
  line-height: 1.5;
  margin: 0;
}

/* Maturity scale in article */
.article-maturity { background: var(--sand); padding: 60px 0; }
.am-inner { max-width: 740px; margin: 0 auto; }
.am-scale {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 24px;
}
.am-row {
  display: flex;
  align-items: stretch;
}
.am-num {
  width: 52px;
  background: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
}
.am-content {
  flex: 1;
  padding: 14px 20px;
  border-left: 1px solid var(--gold-rule);
  background: rgba(200,169,110,0.05);
}
.am-active .am-content { background: rgba(200,169,110,0.12); }
.am-label { font-size: 14px; font-weight: 600; color: var(--deep); margin-bottom: 2px; }
.am-desc { font-size: 12px; color: var(--ink-mid); font-weight: 300; }
.am-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-mid);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
}

/* Article governance journey */
.journey-list { background: var(--warm); }
.journey-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(15,46,36,0.08);
  max-width: 740px;
  margin: 0 auto;
}
.journey-item:last-child { border-bottom: none; }
.journey-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.35;
  flex-shrink: 0;
  width: 48px;
  line-height: 1;
  padding-top: 4px;
}
.journey-content strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 6px;
}
.journey-content p {
  font-size: 14px;
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.75;
  margin: 0;
}

/* ════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════ */
#contact { background: var(--deep); }

.contact-hero {
  background: var(--deep);
  padding: 140px 0 80px;
  border-bottom: 1px solid var(--gold-rule);
}
.contact-hero .eyebrow { color: var(--gold); margin-bottom: 24px; }
.contact-hero-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
}
.contact-hero-sub {
  font-size: 16px;
  color: var(--white-dim);
  font-weight: 300;
  line-height: 1.8;
  max-width: 560px;
}

.contact-body { background: var(--warm); padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 8px;
}
.contact-field {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  background: var(--warm);
  border: 1px solid rgba(15,46,36,0.18);
  padding: 14px 18px;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 24px;
}
.contact-field:focus { border-color: var(--gold); }
.contact-field.error { border-color: #c0392b; }
textarea.contact-field {
  min-height: 160px;
  resize: vertical;
  font-family: var(--font-body);
}
.contact-submit {
  width: 100%;
  font-family: var(--font-body);
}
.contact-success {
  display: none;
  background: rgba(200,169,110,0.1);
  border: 1px solid var(--gold-rule);
  padding: 24px 28px;
  margin-top: 24px;
}
.contact-success p {
  font-size: 14px;
  color: var(--deep);
  font-weight: 300;
  line-height: 1.7;
}
.contact-error-msg {
  display: none;
  font-size: 12px;
  color: #c0392b;
  margin-top: -16px;
  margin-bottom: 16px;
}

.contact-right { }
.contact-direct {
  background: var(--forest);
  padding: 48px 44px;
  margin-bottom: 1px;
}
.contact-direct-label {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 0.7;
}
.contact-email-link {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 32px;
  transition: opacity 0.2s;
}
.contact-email-link:hover { opacity: 0.7; }
.contact-divider {
  height: 1px;
  background: var(--gold-rule);
  margin: 28px 0;
}
.contact-location-label {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white-dim);
  font-weight: 500;
  margin-bottom: 8px;
  opacity: 0.5;
}
.contact-location {
  font-size: 14px;
  color: var(--white-dim);
  font-weight: 300;
}
.contact-mark {
  background: var(--deep);
  padding: 32px 44px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-mark-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--white-dim);
  font-weight: 300;
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  background: var(--forest);
  border-top: 1px solid var(--gold-rule);
  padding: 64px 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin: 0 0 20px 0; }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  color: var(--white-dim);
}
.footer-col-label {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0.7;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13px;
  color: var(--white-dim);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--gold-rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-tm {
  font-size: 11px;
  color: var(--white-faint);
  font-weight: 300;
  letter-spacing: 0.08em;
}
.footer-domain {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.14em;
  opacity: 0.5;
}

/* ════════════════════════════════════════════
   PAGE SECTION HERO — REUSABLE
════════════════════════════════════════════ */
.page-hero {
  min-height: 68vh;
  display: flex;
  align-items: center;
  background: var(--deep);
  position: relative;
  overflow: hidden;
  padding: 140px 0 90px;
}
.page-hero-content { position: relative; z-index: 2; max-width: 760px; }
.page-hero-content .eyebrow { color: var(--gold); margin-bottom: 28px; }
.page-hero-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 6.5vw, 92px);
  color: var(--white);
  line-height: 1.04;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.page-hero-headline em { font-style: italic; color: var(--gold); }
.page-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.42);
  font-weight: 300;
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 40px;
}
.page-hero-photo {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
}
.page-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--deep) 0%, rgba(15,46,36,0.65) 50%, rgba(15,46,36,0.3) 100%);
}

/* Ambient watermark slot — used on pages without photography */
.page-hero-watermark {
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  width: 44%;
  max-width: 600px;
  opacity: 0.055;
  pointer-events: none;
  z-index: 1;
}

/* Grain texture on all dark hero sections */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* ════════════════════════════════════════════
   UTILITIES
════════════════════════════════════════════ */
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-deep { color: var(--deep); }
.mb-0 { margin-bottom: 0; }
.mt-40 { margin-top: 40px; }
.center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }

.domain-body,
.sector-text,
.maturity-stage-body {
  color: var(--ink-mid);
}


/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-photo { display: none; }
  .problem-grid, .founding-grid, .vertex-grid, .gov-gap-grid,
  .data-problem-grid, .gcc-context-inner, .contact-grid,
  .vision-stages, .personality-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gold-rule); padding: 0 0 32px 0; }
  .stat-item:last-child { border-bottom: none; }
  .pillars-grid, .commitments-grid, .market-cards { grid-template-columns: 1fr 1fr; }
  .domains-grid, .maturity-stages, .phases-timeline, .questions-row { grid-template-columns: 1fr 1fr; }
  .service-cards-grid, .sectors-grid, .reg-cards, .insights-cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .phases-grid { grid-template-columns: 1fr 1fr; }
  .fabric-components { grid-template-columns: 1fr 1fr; }
  .leadership-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .pillars-grid, .commitments-grid, .market-cards, .domains-grid,
  .maturity-stages, .phases-timeline, .questions-row,
  .service-cards-grid, .sectors-grid, .reg-cards, .insights-cards,
  .phases-grid, .fabric-components, .leadership-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 60px 0; }
  .engagement-phases { grid-template-columns: 1fr; }
  .engagement-phases::after { display: none; }
  .layers-grid { grid-template-columns: 1fr; }
}

/* Dropdown summary header row */
.dd-item-header {
  background: rgba(200,169,110,0.07);
  border-bottom: 1px solid rgba(200,169,110,0.2);
}
.dd-item-header:hover {
  background: rgba(200,169,110,0.12);
}
.dd-item-header .dd-body strong {
  color: #C8A96E;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.dd-item-header .dd-body span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}
.dd-icon-header {
  border-color: rgba(200,169,110,0.4);
}
.dd-divider {
  height: 1px;
  background: rgba(200,169,110,0.15);
  margin: 0;
}
