/* ============================================================
   SARAH BINT YOUSEF AL AMIRI — FUTURISTIC LEADERSHIP WEBSITE
   Core Styles — Creaa Designs / Digant Sharma
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Rajdhani:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --bg-primary: #020a18;
  --bg-secondary: #050e22;
  --bg-tertiary: #081428;
  --accent-gold: #c9a227;
  --accent-gold-light: #f0c942;
  --accent-blue: #00b4d8;
  --accent-blue-bright: #00d4ff;
  --accent-purple: #7b2fbe;
  --accent-teal: #0dd3b1;
  --accent-red: #e74c6a;
  --text-primary: #e8f4fd;
  --text-secondary: #7fa8c9;
  --text-muted: #3d5a7a;
  --glass-bg: rgba(8, 20, 40, 0.6);
  --glass-bg-light: rgba(0, 180, 216, 0.05);
  --glass-border: rgba(0, 180, 216, 0.18);
  --glass-border-gold: rgba(201, 162, 39, 0.35);
  --glow-blue: 0 0 25px rgba(0, 180, 216, 0.35);
  --glow-gold: 0 0 25px rgba(201, 162, 39, 0.35);
  --glow-purple: 0 0 25px rgba(123, 47, 190, 0.35);
  --nav-height: 80px;
  --font-display: 'Orbitron', monospace;
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- Stars Canvas ---- */
#stars-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ---- Page Wrapper ---- */
.page-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

/* ============================================================
   PASSWORD / ENTRY SCREEN
   ============================================================ */
.entry-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #010810;
  overflow: hidden;
}

.entry-screen.unlocking {
  animation: portalUnlock 1.4s var(--ease-smooth) forwards;
}
.entry-screen.hidden { display: none; }

@keyframes portalUnlock {
  0%   { opacity: 1; clip-path: circle(100%); }
  60%  { clip-path: circle(5% at 50% 50%); }
  80%  { clip-path: circle(0% at 50% 50%); opacity: 1; }
  100% { opacity: 0; clip-path: circle(0%); pointer-events: none; }
}

.entry-nebula {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 30% 60%, rgba(123, 47, 190, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 70% 30%, rgba(0, 180, 216, 0.10) 0%, transparent 60%);
  pointer-events: none;
}

.terminal-panel {
  position: relative;
  z-index: 2;
  width: min(500px, 92vw);
  padding: 50px 40px 40px;
  background: rgba(2, 12, 28, 0.85);
  border: 1px solid rgba(0, 180, 216, 0.25);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(0, 180, 216, 0.12), inset 0 0 60px rgba(0, 0, 0, 0.5);
}

.terminal-corner {
  position: absolute;
  width: 12px; height: 12px;
  border-color: var(--accent-blue);
  border-style: solid;
}
.terminal-corner.tl { top: 10px; left: 10px; border-width: 2px 0 0 2px; }
.terminal-corner.tr { top: 10px; right: 10px; border-width: 2px 2px 0 0; }
.terminal-corner.bl { bottom: 10px; left: 10px; border-width: 0 0 2px 2px; }
.terminal-corner.br { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }

.terminal-header {
  text-align: center;
  margin-bottom: 36px;
}

.terminal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--accent-blue);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.terminal-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: 0 0 8px var(--accent-blue);
  animation: blink 1.4s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

.terminal-title {
  font-family: var(--font-display);
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
}
.terminal-title span { color: var(--accent-gold); }

.terminal-subtitle {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 3px;
  margin-top: 8px;
  text-transform: uppercase;
}

.password-field {
  position: relative;
  margin-bottom: 16px;
}

.password-label {
  display: block;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--accent-blue);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.password-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input {
  width: 100%;
  padding: 14px 50px 14px 18px;
  background: rgba(0, 10, 22, 0.8);
  border: 1px solid rgba(0, 180, 216, 0.25);
  color: var(--accent-blue-bright);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 4px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.password-input:focus {
  border-color: var(--accent-blue);
  box-shadow: var(--glow-blue);
}
.password-input.error {
  border-color: var(--accent-red);
  box-shadow: 0 0 20px rgba(231, 76, 106, 0.4);
  animation: shake 0.5s ease;
}
.password-input.success {
  border-color: var(--accent-teal);
  box-shadow: 0 0 20px rgba(13, 211, 177, 0.4);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(-8px); }
  30% { transform: translateX(8px); }
  45% { transform: translateX(-6px); }
  60% { transform: translateX(6px); }
  75% { transform: translateX(-3px); }
  90% { transform: translateX(3px); }
}

.pw-icon {
  position: absolute;
  right: 14px;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  transition: color 0.2s;
}
.pw-icon:hover { color: var(--accent-blue); }

.pw-status {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 2px;
  text-align: center;
  min-height: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.pw-status.error { color: var(--accent-red); }
.pw-status.success { color: var(--accent-teal); }

.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(0, 180, 216, 0.05));
  border: 1px solid rgba(0, 180, 216, 0.4);
  color: var(--accent-blue-bright);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.submit-btn:hover::before { transform: translateX(100%); }
.submit-btn:hover {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.25), rgba(0, 180, 216, 0.1));
  box-shadow: var(--glow-blue);
}

.terminal-scan-line {
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.5), transparent);
  animation: scanLine 4s linear infinite;
}
@keyframes scanLine { 0% { top: 0; } 100% { top: 100%; } }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 clamp(16px, 4vw, 50px);
  background: rgba(2, 8, 20, 0.75);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 180, 216, 0.1);
  transition: background 0.4s;
}
.nav.scrolled {
  background: rgba(2, 8, 20, 0.95);
  border-bottom-color: rgba(0, 180, 216, 0.18);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-emblem {
  width: 42px; height: 42px;
  border: 1.5px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(135deg, rgba(201,162,39,0.12), rgba(0,180,216,0.08));
}
.nav-logo-emblem span {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-gold);
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: 0.5px;
}
.nav-logo-title {
  font-family: var(--font-display);
  font-size: 8px;
  color: var(--accent-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  position: relative;
  padding: 8px 12px;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 1px;
  background: var(--accent-blue);
  transform: translateX(-50%);
  transition: width 0.3s var(--ease-smooth);
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 60%; }
.nav-link.active {
  color: var(--accent-blue-bright);
}
.nav-link.active::after { width: 60%; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--accent-blue);
  transition: all 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: rgba(2, 8, 20, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 180, 216, 0.15);
  padding: 16px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link {
  display: block;
  padding: 12px 16px;
  font-size: 10px;
  border-left: 2px solid transparent;
  transition: all 0.3s;
}
.nav-mobile .nav-link:hover,
.nav-mobile .nav-link.active {
  border-left-color: var(--accent-blue);
  background: rgba(0, 180, 216, 0.06);
  color: var(--accent-blue-bright);
}
.nav-mobile .nav-link::after { display: none; }

/* ============================================================
   PAGE HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(0, 180, 216, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(201, 162, 39, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 80%, rgba(123, 47, 190, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,180,216,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,216,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px clamp(16px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { order: 1; }
.hero-visual { order: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(201, 162, 39, 0.4);
  background: rgba(201, 162, 39, 0.06);
  margin-bottom: 28px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.hero-badge span {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--accent-gold);
  text-transform: uppercase;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: clamp(9px, 1.2vw, 11px);
  letter-spacing: 5px;
  color: var(--accent-blue);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.hero-title .accent-gold { color: var(--accent-gold); }
.hero-title .accent-blue { color: var(--accent-blue-bright); }

.hero-subtitle {
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- Image Container ---- */
.hero-image-frame {
  position: relative;
}
.hero-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 32px 100%, 0 calc(100% - 32px));
  background: var(--bg-secondary);
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}

.hero-image-glow {
  position: absolute;
  inset: -2px;
  border: 1px solid rgba(0, 180, 216, 0.25);
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 32px 100%, 0 calc(100% - 32px));
  pointer-events: none;
}

.hero-image-tag {
  position: absolute;
  bottom: -1px; right: -1px;
  background: rgba(2, 8, 20, 0.9);
  border-top: 1px solid rgba(0, 180, 216, 0.25);
  border-left: 1px solid rgba(0, 180, 216, 0.25);
  padding: 10px 16px;
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--accent-blue);
  text-transform: uppercase;
}

.hero-stats {
  position: absolute;
  left: -20px;
  bottom: 30%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-stat-pill {
  background: rgba(2, 8, 20, 0.9);
  border: 1px solid rgba(201, 162, 39, 0.3);
  padding: 10px 16px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}
.hero-stat-pill .num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-gold);
  display: block;
  line-height: 1;
}
.hero-stat-pill .lbl {
  font-family: var(--font-heading);
  font-size: 10px;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(60px, 8vw, 120px) clamp(16px, 5vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
}
.section-full { max-width: none; padding-left: 0; padding-right: 0; }
.section-full .section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 80px);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 70px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 16px;
}
.section-label::before, .section-label::after {
  content: '';
  width: 30px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-blue));
}
.section-label::after {
  background: linear-gradient(90deg, var(--accent-blue), transparent);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title .gold { color: var(--accent-gold); }
.section-title .blue { color: var(--accent-blue-bright); }

.section-desc {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================================
   GLASS CARDS
   ============================================================ */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease-smooth);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border-top: 1.5px solid rgba(0, 180, 216, 0.4);
  border-left: 1.5px solid rgba(0, 180, 216, 0.4);
}
.glass-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 40px; height: 40px;
  border-bottom: 1.5px solid rgba(201, 162, 39, 0.3);
  border-right: 1.5px solid rgba(201, 162, 39, 0.3);
}
.glass-card:hover {
  border-color: rgba(0, 180, 216, 0.35);
  box-shadow: var(--glow-blue);
  transform: translateY(-4px);
}

.card-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.2);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--accent-blue);
  transition: all 0.3s;
}
.glass-card:hover .card-icon {
  background: rgba(0, 180, 216, 0.15);
  color: var(--accent-blue-bright);
}

.card-title {
  font-family: var(--font-heading);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.card-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* Gold card variant */
.glass-card.gold-variant { border-color: rgba(201, 162, 39, 0.2); }
.glass-card.gold-variant::before { border-color: rgba(201, 162, 39, 0.4); }
.glass-card.gold-variant:hover { border-color: rgba(201, 162, 39, 0.4); box-shadow: var(--glow-gold); }
.glass-card.gold-variant .card-icon {
  background: rgba(201, 162, 39, 0.08);
  border-color: rgba(201, 162, 39, 0.2);
  color: var(--accent-gold);
}
.glass-card.gold-variant:hover .card-icon { background: rgba(201, 162, 39, 0.15); color: var(--accent-gold-light); }

/* ============================================================
   GRIDS
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

/* ============================================================
   STATS ROW
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2px;
  background: rgba(0, 180, 216, 0.06);
  border: 1px solid var(--glass-border);
}
.stat-block {
  padding: 32px 24px;
  text-align: center;
  background: var(--bg-primary);
  transition: background 0.3s;
}
.stat-block:hover { background: rgba(0, 180, 216, 0.04); }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stat-label {
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 50px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 18px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--accent-blue) 10%, var(--accent-blue) 90%, transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s var(--ease-smooth);
}
.timeline-item.visible { opacity: 1; transform: translateX(0); }

.timeline-dot {
  position: absolute;
  left: -40px; top: 4px;
  width: 18px; height: 18px;
  border: 2px solid var(--accent-blue);
  border-radius: 50%;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.timeline-dot::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-blue);
  transition: all 0.3s;
}
.timeline-item:hover .timeline-dot {
  border-color: var(--accent-gold);
  box-shadow: var(--glow-gold);
}
.timeline-item:hover .timeline-dot::after { background: var(--accent-gold); }

.timeline-year {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--accent-blue);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.timeline-org {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--accent-gold);
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.timeline-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================================
   QUOTE BLOCK
   ============================================================ */
.quote-block {
  position: relative;
  padding: 48px clamp(24px, 5vw, 80px);
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.05), rgba(201, 162, 39, 0.04));
  border-left: 3px solid var(--accent-gold);
  border-top: 1px solid rgba(201, 162, 39, 0.15);
  border-right: 1px solid rgba(0, 180, 216, 0.1);
  border-bottom: 1px solid rgba(0, 180, 216, 0.1);
}
.quote-block::before {
  content: '"';
  position: absolute;
  top: -30px; left: 40px;
  font-size: 160px;
  font-family: Georgia, serif;
  color: rgba(201, 162, 39, 0.08);
  line-height: 1;
}
.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 300;
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}
.quote-author {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--accent-gold);
  text-transform: uppercase;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(0, 180, 216, 0.08));
  border: 1px solid rgba(0, 180, 216, 0.45);
  color: var(--accent-blue-bright);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-primary:hover {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.35), rgba(0, 180, 216, 0.15));
  box-shadow: var(--glow-blue);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.06));
  border: 1px solid rgba(201, 162, 39, 0.45);
  color: var(--accent-gold-light);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-gold:hover {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.3), rgba(201, 162, 39, 0.12));
  box-shadow: var(--glow-gold);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
}
.btn-ghost:hover { border-color: rgba(0, 180, 216, 0.3); color: var(--text-primary); }

.btn svg, .btn .btn-icon { font-size: 14px; transition: transform 0.3s; }
.btn:hover .btn-icon { transform: translateX(4px); }

/* ============================================================
   SECTION DIVIDERS / ACCENTS
   ============================================================ */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.2), rgba(201, 162, 39, 0.2), transparent);
  margin: 0;
}

.section-accent {
  position: absolute;
  pointer-events: none;
}
.accent-circle {
  border-radius: 50%;
  border: 1px solid;
  opacity: 0.05;
}

/* ============================================================
   IMAGE SECTIONS
   ============================================================ */
.img-contain-frame {
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}
.img-contain-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.img-cover-frame {
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}
.img-cover-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  position: relative;
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 60px;
  padding-left: clamp(16px, 5vw, 80px);
  padding-right: clamp(16px, 5vw, 80px);
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(0, 180, 216, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 30%, rgba(201, 162, 39, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.page-header-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.page-header-content .eyebrow {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--accent-blue);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-header-content .eyebrow::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--accent-blue);
}
.page-header-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.page-header-content p {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 520px;
}
.page-header-image {
  position: relative;
}
.page-header-image .img-contain-frame {
  aspect-ratio: 3/4;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}
.page-header-image-border {
  position: absolute;
  inset: -1px;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  border: 1px solid rgba(0, 180, 216, 0.25);
  pointer-events: none;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.breadcrumb a { color: var(--accent-blue); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent-blue-bright); }
.breadcrumb span { color: var(--text-muted); }

/* ============================================================
   INFOGRAPHIC PANELS
   ============================================================ */
.infographic-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.infographic-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.infographic-label {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--text-secondary);
  min-width: 180px;
  flex-shrink: 0;
}
.infographic-track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}
.infographic-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-blue-bright));
  box-shadow: 0 0 8px rgba(0, 180, 216, 0.4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease-smooth);
}
.infographic-fill.gold {
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
  box-shadow: 0 0 8px rgba(201, 162, 39, 0.4);
}
.infographic-fill.animated { transform: scaleX(1); }
.infographic-value {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--accent-blue);
  min-width: 40px;
  text-align: right;
}

/* ============================================================
   MISSION TIMELINE (Horizontal)
   ============================================================ */
.mission-timeline {
  position: relative;
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 60px 0 20px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,180,216,0.3) transparent;
}
.mission-timeline::before {
  content: '';
  position: absolute;
  top: 24px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-blue) 10%, var(--accent-blue) 90%, transparent);
}
.mission-node {
  flex-shrink: 0;
  text-align: center;
  width: 200px;
  position: relative;
  padding-top: 40px;
}
.mission-node-dot {
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 16px;
  border: 2px solid var(--accent-blue);
  border-radius: 50%;
  background: var(--bg-primary);
  transition: all 0.3s;
}
.mission-node-dot::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--accent-blue);
  opacity: 0.5;
}
.mission-node.highlight .mission-node-dot {
  border-color: var(--accent-gold);
  box-shadow: var(--glow-gold);
}
.mission-node.highlight .mission-node-dot::after { background: var(--accent-gold); opacity: 1; }
.mission-node-year {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--accent-blue);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.mission-node-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  padding: 0 10px;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--accent-blue);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0, 10, 22, 0.6);
  border: 1px solid rgba(0, 180, 216, 0.18);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: rgba(0, 180, 216, 0.5);
  box-shadow: 0 0 16px rgba(0, 180, 216, 0.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-select option { background: var(--bg-secondary); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  z-index: 1;
  background: rgba(2, 8, 20, 0.95);
  border-top: 1px solid rgba(0, 180, 216, 0.1);
  padding: 60px clamp(16px, 5vw, 80px) 32px;
  margin-top: auto;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo-name {
  font-size: 18px;
  margin-bottom: 6px;
}
.footer-brand .nav-logo-title {
  font-size: 9px;
  margin-bottom: 16px;
}
.footer-brand-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--accent-blue);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 180, 216, 0.12);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-link::before {
  content: '▸';
  font-size: 8px;
  color: rgba(0, 180, 216, 0.4);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--text-secondary); }
.footer-link:hover::before { color: var(--accent-blue); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-contact-icon {
  font-size: 16px;
  color: var(--accent-blue);
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-credit {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-credit a {
  color: var(--accent-gold);
  transition: color 0.2s;
}
.footer-credit a:hover { color: var(--accent-gold-light); }

.social-icons {
  display: flex;
  gap: 10px;
}
.social-icon {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 180, 216, 0.15);
  color: var(--text-muted);
  font-size: 14px;
  transition: all 0.3s;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.social-icon:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue-bright);
  background: rgba(0, 180, 216, 0.08);
  box-shadow: 0 0 12px rgba(0, 180, 216, 0.25);
}

/* ============================================================
   INSIGHT / QUOTE CARDS
   ============================================================ */
.insight-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
}
.insight-card::before {
  content: '"';
  position: absolute;
  top: 10px; right: 20px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(0, 180, 216, 0.06);
  line-height: 1;
}
.insight-card:hover {
  border-color: rgba(0, 180, 216, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--glow-blue);
}
.insight-text {
  font-family: var(--font-heading);
  font-size: clamp(14px, 1.5vw, 16px);
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.insight-context {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--accent-gold);
  text-transform: uppercase;
}

/* ============================================================
   PAGE NAVIGATION GRID (home previews)
   ============================================================ */
.pages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  background: rgba(0, 180, 216, 0.04);
}
.page-nav-card {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 36px 28px;
  background: var(--bg-primary);
  border: 1px solid transparent;
  transition: all 0.4s var(--ease-smooth);
  text-decoration: none;
}
.page-nav-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
}
.page-nav-card:hover {
  background: rgba(0, 180, 216, 0.04);
  border-color: rgba(0, 180, 216, 0.12);
}
.page-nav-card:hover::before { transform: scaleX(1); }
.page-nav-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.3s var(--ease-bounce);
}
.page-nav-card:hover .page-nav-icon { transform: scale(1.1); }
.page-nav-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.page-nav-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.page-nav-arrow {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 18px;
  color: var(--text-muted);
  transition: all 0.3s;
}
.page-nav-card:hover .page-nav-arrow {
  color: var(--accent-blue);
  transform: translate(3px, -3px);
}

/* ============================================================
   ROLE BADGES
   ============================================================ */
.role-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(0, 180, 216, 0.06);
  border: 1px solid rgba(0, 180, 216, 0.2);
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-secondary);
  text-transform: uppercase;
  transition: all 0.3s;
}
.role-badge:hover {
  background: rgba(0, 180, 216, 0.12);
  color: var(--accent-blue-bright);
  border-color: rgba(0, 180, 216, 0.4);
}
.role-badge.gold {
  background: rgba(201, 162, 39, 0.06);
  border-color: rgba(201, 162, 39, 0.2);
  color: var(--accent-gold);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-gold { color: var(--accent-gold); }
.text-blue { color: var(--accent-blue-bright); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-auto { margin-top: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* Featured image (landscape) */
.featured-img-frame {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-secondary);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}
.featured-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s var(--ease-smooth);
}
.featured-img-frame:hover img { transform: scale(1.03); }

/* Small portrait */
.portrait-frame {
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: var(--bg-secondary);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}

/* Neon line decorations */
.neon-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
  margin: 60px 0;
  opacity: 0.3;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .hero-stats { display: none; }
  .page-header-inner { grid-template-columns: 1fr; }
  .page-header-image { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2.keep-2 { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section { padding: 60px clamp(16px, 4vw, 32px); }
  .terminal-panel { padding: 36px 24px 28px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .mission-node { width: 150px; }
  .infographic-label { min-width: 120px; font-size: 11px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(28px, 8vw, 40px); }
  .glass-card { padding: 24px 20px; }
  .quote-block { padding: 36px 20px; }
  .grid-2.keep-2 { grid-template-columns: 1fr; }
}
