/* =========================================================
   AUA TECHNOLOGIES v2 — Complete Stylesheet
   All white-on-white issues fixed. Clean, professional.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

/* ── Variables ── */
:root {
  --navy:       #0A1628;
  --navy-mid:   #112240;
  --navy-soft:  #1B3A6B;
  --gold:       #C89B3C;
  --gold-lt:    #E4B95A;
  --gold-pale:  #F5E8C7;
  --white:      #FFFFFF;
  --off-white:  #F7F5F0;
  --mist:       #EEF1F7;
  --text:       #1A1A2E;
  --muted:      #5A6580;
  --border:     rgba(10,22,40,0.10);

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;
  --ff-mono:    'DM Mono', monospace;

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 28px;
  --t: 0.32s cubic-bezier(0.25,0.46,0.45,0.94);
  --shadow: 0 4px 30px rgba(10,22,40,0.10);
  --shadow-h: 0 12px 50px rgba(10,22,40,0.18);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-body); color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ── Section backgrounds ── */
.bg-white    { background: var(--white); }
.bg-offwhite { background: var(--off-white); }
.bg-navy     { background: var(--navy); }
.bg-navymid  { background: var(--navy-mid); }
.pad-xl  { padding: 100px 0; }
.pad-lg  { padding: 80px 0; }

/* ── Typography helpers ── */
.title-dark {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}
.title-light {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}
.italic-gold { font-style: italic; color: var(--gold); }

.text-lg-dark { font-size: 1.08rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.4rem; }
.text-md-dark { font-size: 0.96rem; color: var(--muted); line-height: 1.78; margin-bottom: 1.2rem; }

.label-dark {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-mono); font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.label-dark::before { content:''; display:block; width:22px; height:1px; background:var(--gold); }

.label-light {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-mono); font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 1rem; justify-content: center;
}
.label-light::before { content:''; display:block; width:22px; height:1px; background:rgba(255,255,255,0.4); }

.label-gold {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-mono); font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.label-gold::before { content:''; display:block; width:22px; height:1px; background:var(--gold); }

.gold-rule { width: 56px; height: 3px; background: linear-gradient(90deg,var(--gold),var(--gold-lt)); border-radius: 2px; margin: 1.4rem 0 2rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-body); font-size: 0.9rem; font-weight: 500;
  padding: 13px 28px; border-radius: 50px; border: none; cursor: pointer;
  transition: var(--t); white-space: nowrap; text-decoration: none;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,155,60,0.35); }

.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-dark { background: transparent; color: var(--navy); border: 1.5px solid rgba(10,22,40,0.22); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-soft); transform: translateY(-2px); }

.full-w { width: 100%; justify-content: center; }

/* ─────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 0 2rem; transition: background var(--t), box-shadow var(--t);
}
#navbar.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem; color: var(--navy);
  flex-shrink: 0;
}
.logo-name { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 600; color: var(--white); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.86rem; color: rgba(255,255,255,0.7); transition: color var(--t); }
.nav-links a:hover { color: var(--gold-lt); }

.nav-cta-btn {
  background: var(--gold); color: var(--navy);
  font-size: 0.82rem; font-weight: 500; padding: 9px 20px;
  border-radius: 50px; transition: var(--t);
}
.nav-cta-btn:hover { background: var(--gold-lt); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--t); }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  background: var(--navy); overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(200,155,60,0.04) 1px,transparent 1px), linear-gradient(90deg,rgba(200,155,60,0.04) 1px,transparent 1px);
  background-size: 60px 60px;
}
.hero-glow-1 {
  position: absolute; width: 650px; height: 650px; border-radius: 50%;
  background: radial-gradient(circle,rgba(27,58,107,0.65) 0%,transparent 70%);
  right: -120px; top: -120px; pointer-events: none;
}
.hero-glow-2 {
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle,rgba(200,155,60,0.07) 0%,transparent 70%);
  left: 8%; bottom: 12%; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 120px 2rem 70px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem;
  flex: 1;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(200,155,60,0.1); border: 1px solid rgba(200,155,60,0.22);
  border-radius: 50px; padding: 6px 16px;
  font-size: 0.76rem; font-family: var(--ff-mono); letter-spacing: 0.12em;
  color: var(--gold-lt); text-transform: uppercase; margin-bottom: 1.8rem;
}
.hero-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

.hero-title {
  font-family: var(--ff-display); font-size: clamp(2.6rem,5.2vw,4.5rem);
  font-weight: 600; color: var(--white); line-height: 1.08;
  letter-spacing: -0.02em; margin-bottom: 1.6rem;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 1.02rem; color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 500px; margin-bottom: 2.5rem; }
.hero-btns { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* Hero cards */
.hero-cards { display: flex; flex-direction: column; gap: 1.1rem; }
.hcard {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-md); padding: 1.4rem 1.6rem;
  display: flex; align-items: flex-start; gap: 1.1rem;
  transition: var(--t); cursor: pointer;
}
.hcard:hover { border-color: rgba(200,155,60,0.38); transform: translateX(5px); background: rgba(255,255,255,0.07); }
.hcard-dim { opacity: 0.65; }
.hcard-icon { font-size: 1.3rem; width: 44px; height: 44px; background: rgba(200,155,60,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hcard-tag { font-family: var(--ff-mono); font-size: 0.66rem; letter-spacing: 0.14em; color: var(--gold); text-transform: uppercase; margin-bottom: 3px; }
.hcard-name { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.hcard-desc { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.55; }
.hcard-link { font-size: 0.8rem; color: var(--gold); margin-top: 8px; font-weight: 500; }

/* Stats bar */
.stats-bar {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  display: flex;
}
.stat-item {
  flex: 1; padding: 1.4rem 0;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.sn { font-family: var(--ff-display); font-size: 1.7rem; font-weight: 700; color: var(--gold-lt); line-height: 1; }
.sl { font-size: 0.73rem; color: rgba(255,255,255,0.42); letter-spacing: 0.06em; text-align: center; }

/* ─────────────────────────────────────────────
   INTRO
───────────────────────────────────────────── */
.split-grid {
  display: grid; grid-template-columns: 1fr 1.55fr; gap: 5rem; align-items: start;
}
.split-sticky { position: sticky; top: 96px; }
.split-body p { margin-bottom: 1.3rem; }
.split-body p:last-child { margin-bottom: 0; }

/* ─────────────────────────────────────────────
   ABOUT
───────────────────────────────────────────── */
.center-header { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.sub-light { font-size: 1rem; color: rgba(255,255,255,0.52); line-height: 1.8; margin-top: 0.8rem; }

.two-up { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-bottom: 3.5rem; }
.navy-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md); padding: 2rem 2.2rem; transition: var(--t);
}
.navy-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(200,155,60,0.28); transform: translateY(-4px); }
.nc-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1.2rem; }
.gold-icon { background: rgba(200,155,60,0.15); }
.blue-icon { background: rgba(100,140,220,0.15); }
.nc-title { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600; color: var(--white); margin-bottom: 0.8rem; }
.nc-text { font-size: 0.93rem; color: rgba(255,255,255,0.58); line-height: 1.75; }

/* Values */
.values-wrap { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 3rem; }
.values-eyebrow { font-family: var(--ff-mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.8rem; }
.four-up { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.val-card { border: 1px solid rgba(255,255,255,0.07); border-radius: var(--r-md); padding: 1.5rem; transition: var(--t); }
.val-card:hover { border-color: var(--gold); background: rgba(200,155,60,0.05); }
.val-num { font-family: var(--ff-mono); font-size: 0.66rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.8rem; }
.val-title { font-family: var(--ff-display); font-size: 1.2rem; color: var(--white); font-weight: 600; margin-bottom: 0.5rem; }
.val-text { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ─────────────────────────────────────────────
   VENTURES
───────────────────────────────────────────── */
.vent-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: end; margin-bottom: 4rem;
}
.vc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-bottom: 1.4rem; }
.vc-card {
  border-radius: var(--r-lg); min-height: 400px;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden; transition: var(--t);
  text-decoration: none;
}
.vc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-h); }
.vc-navy { background: linear-gradient(155deg,#0A1628 0%,#1B3A6B 60%,#0F2844 100%); }
.vc-deep { background: linear-gradient(155deg,#1A1A2E 0%,#16213E 60%,#0F3460 100%); }
.vc-shine {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 20%, rgba(200,155,60,0.1) 0%, transparent 55%);
}
.vc-body { position: relative; z-index: 2; padding: 2rem 2.2rem; }
.vc-badge {
  display: inline-block; background: rgba(200,155,60,0.16);
  border: 1px solid rgba(200,155,60,0.28); color: var(--gold-lt);
  font-size: 0.68rem; font-family: var(--ff-mono); letter-spacing: 0.14em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 50px; margin-bottom: 1.1rem;
}
.vc-badge-dark {
  display: inline-block; background: rgba(10,22,40,0.07);
  border: 1px solid rgba(10,22,40,0.14); color: var(--navy-soft);
  font-size: 0.68rem; font-family: var(--ff-mono); letter-spacing: 0.14em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 50px; margin-bottom: 1.1rem;
}
.vc-title { font-family: var(--ff-display); font-size: 1.9rem; font-weight: 600; color: var(--white); margin-bottom: 0.8rem; line-height: 1.15; }
.vc-desc { font-size: 0.88rem; color: rgba(255,255,255,0.58); line-height: 1.72; margin-bottom: 1.4rem; }
.vc-link-btn { font-size: 0.85rem; color: var(--gold-lt); font-weight: 500; }
.vc-card:hover .vc-link-btn::after { content: ''; }

/* Future strip */
.future-strip {
  background: var(--off-white); border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--r-lg); padding: 2.8rem;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center;
  transition: var(--t);
}
.future-strip:hover { box-shadow: var(--shadow-h); transform: translateY(-3px); }
.future-h { font-family: var(--ff-display); font-size: 1.7rem; font-weight: 600; color: var(--navy); line-height: 1.2; margin: 0.8rem 0; }
.future-p { font-size: 0.92rem; color: var(--muted); line-height: 1.78; }
.ftags { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.ftag {
  background: var(--white); border: 1px solid rgba(10,22,40,0.1);
  border-radius: 50px; padding: 7px 14px; font-size: 0.8rem;
  color: var(--navy); font-weight: 500; transition: var(--t);
}
.ftag:hover { border-color: var(--navy-soft); background: rgba(27,58,107,0.05); }

/* ─────────────────────────────────────────────
   RESEARCH
───────────────────────────────────────────── */
.gira-block {
  background: var(--navy); border-radius: var(--r-lg); padding: 4rem;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center;
  margin: 1.5rem 0 1.5rem; position: relative; overflow: hidden;
}
.gira-block::after {
  content: 'GIRA'; position: absolute; right: -1.5rem; top: 50%; transform: translateY(-50%);
  font-family: var(--ff-display); font-size: 13rem; font-weight: 700;
  color: rgba(255,255,255,0.025); line-height: 1; pointer-events: none;
}
.gira-l .title-dark { color: var(--white); }
.gira-emblem {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md); padding: 2.5rem; text-align: center; position: relative; z-index: 2;
}
.gira-big { display: block; font-family: var(--ff-display); font-size: 3.8rem; font-weight: 700; color: var(--gold); letter-spacing: 0.18em; }
.gira-fullname { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.42); letter-spacing: 0.06em; text-transform: uppercase; font-family: var(--ff-mono); margin-top: 0.4rem; }
.gira-line { width: 40px; height: 1px; background: rgba(255,255,255,0.15); margin: 1.2rem auto; }
.gira-sub { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.35); font-family: var(--ff-mono); letter-spacing: 0.04em; }

.gkmc-block {
  background: var(--white); border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--r-lg); padding: 3rem;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center;
}
.gkmc-title { font-family: var(--ff-display); font-size: 1.9rem; font-weight: 600; color: var(--navy); line-height: 1.2; margin: 0.6rem 0 1rem; }
.regions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.region-item {
  background: var(--off-white); border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--r-sm); padding: 1rem 1.1rem;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 500; color: var(--navy); transition: var(--t);
}
.region-item:hover { border-color: var(--navy-soft); background: rgba(27,58,107,0.05); }

/* ─────────────────────────────────────────────
   LEADERSHIP
───────────────────────────────────────────── */
.leader-wrap {
  display: flex; align-items: center; gap: 3.5rem;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg); padding: 3rem 3.5rem;
}
.leader-ava {
  width: 96px; height: 96px; border-radius: 50%;
  background: linear-gradient(135deg,var(--gold),var(--gold-lt));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 2.2rem; font-weight: 700; color: var(--navy);
  flex-shrink: 0;
}
.leader-role { font-family: var(--ff-mono); font-size: 0.7rem; letter-spacing: 0.15em; color: var(--gold); text-transform: uppercase; margin-bottom: 0.4rem; }
.leader-name { font-family: var(--ff-display); font-size: 1.8rem; font-weight: 600; color: var(--white); margin-bottom: 0.7rem; }
.leader-bio { font-size: 0.93rem; color: rgba(255,255,255,0.55); line-height: 1.76; }
.leader-quote {
  font-family: var(--ff-display); font-size: 1.25rem; font-style: italic;
  color: rgba(255,255,255,0.42); border-left: 3px solid var(--gold);
  padding-left: 1.4rem; line-height: 1.55; max-width: 280px; flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────── */
.cinfo-list { display: flex; flex-direction: column; gap: 1rem; }
.cinfo-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem; background: var(--off-white); border-radius: var(--r-sm);
  transition: var(--t);
}
.cinfo-item:hover { background: var(--mist); }
.cinfo-icon {
  width: 38px; height: 38px; background: var(--navy); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0;
}
.cinfo-lbl { font-family: var(--ff-mono); font-size: 0.66rem; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; margin-bottom: 2px; }
.cinfo-val { font-size: 0.93rem; color: var(--navy); font-weight: 500; }
.link-navy { color: var(--navy-soft); text-decoration: underline; text-underline-offset: 3px; }

.form-wrap {
  background: var(--off-white); border-radius: var(--r-lg); padding: 2.5rem;
  border: 1px solid rgba(10,22,40,0.07);
}
.form-heading { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 600; color: var(--navy); margin-bottom: 1.8rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 5px; margin-bottom: 1rem; }
.fg label { font-size: 0.78rem; font-weight: 600; color: var(--navy); letter-spacing: 0.04em; }
.fg input, .fg select, .fg textarea {
  font-family: var(--ff-body); font-size: 0.91rem; color: var(--text);
  background: var(--white); border: 1.5px solid rgba(10,22,40,0.12);
  border-radius: var(--r-sm); padding: 10px 13px; outline: none; width: 100%;
  transition: border-color var(--t);
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--navy-soft); }
.fg textarea { resize: vertical; min-height: 108px; }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
#footer { background: var(--navy); color: rgba(255,255,255,0.5); padding: 60px 0 28px; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem;
}
.footer-logo-row { display: flex; align-items: center; gap: 11px; margin-bottom: 0.8rem; }
.footer-logo-name { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 600; color: var(--white); }
.footer-tagline { font-size: 0.86rem; line-height: 1.72; color: rgba(255,255,255,0.45); }
.fcol h4 { font-family: var(--ff-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); margin-bottom: 1.1rem; }
.fcol ul { display: flex; flex-direction: column; gap: 0.6rem; }
.fcol ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.48); transition: color var(--t); }
.fcol ul li a:hover { color: var(--gold-lt); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 0.79rem; flex-wrap: wrap; gap: 1rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.38); transition: color var(--t); }
.footer-legal a:hover { color: var(--gold); }

/* ─────────────────────────────────────────────
   REVEAL ANIMATIONS
───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-cards { display: none; }
  .split-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-sticky { position: static; }
  .two-up { grid-template-columns: 1fr; }
  .four-up { grid-template-columns: 1fr 1fr; }
  .vent-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .vc-row { grid-template-columns: 1fr; }
  .future-strip { grid-template-columns: 1fr; gap: 2rem; }
  .gira-block { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem; }
  .gira-block::after { display: none; }
  .gkmc-block { grid-template-columns: 1fr; gap: 2rem; }
  .leader-wrap { flex-direction: column; text-align: center; padding: 2rem; }
  .leader-quote { border-left: none; border-top: 3px solid var(--gold); padding-left: 0; padding-top: 1rem; max-width: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .pad-xl { padding: 70px 0; }
  .nav-links, .nav-cta-btn { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 78px; left: 0; right: 0;
    background: rgba(10,22,40,0.98); padding: 2rem;
    gap: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); z-index: 999;
  }
  .hamburger { display: flex; }
  .four-up { grid-template-columns: 1fr 1fr; }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row-2 { grid-template-columns: 1fr; }
  .regions { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .four-up { grid-template-columns: 1fr; }
}
