/* ============================================================
   AlphaMetrics AI — style.css
   Palette: Navy #0F2B46 | Teal #2A8FBD | Gold #D4A843 | White #FFFFFF | Light #F8F9FA
   Typography: DM Serif Display (headings) + IBM Plex Sans (body)
   ============================================================ */

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

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

body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  color: #1a2e3b;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── CSS VARIABLES ───────────────────────────────────────── */
:root {
  --navy:      #0F2B46;
  --navy-mid:  #163857;
  --navy-light:#1e4a6e;
  --teal:      #2A8FBD;
  --teal-light:#3BA3D4;
  --gold:      #D4A843;
  --gold-light:#E4BF6A;
  --white:     #FFFFFF;
  --light:     #F8F9FA;
  --light-mid: #EEF2F5;
  --text-dark: #0F2B46;
  --text-mid:  #4A6278;
  --text-light:#7B94A8;
  --border:    rgba(15,43,70,0.10);
  --border-gold: rgba(212,168,67,0.35);

  --max-width: 1160px;
  --section-pad: clamp(80px, 10vw, 130px);
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(15,43,70,0.07);
  --shadow:    0 8px 32px rgba(15,43,70,0.10);
  --shadow-lg: 0 20px 60px rgba(15,43,70,0.14);
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.18;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.85rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); }

p {
  line-height: 1.72;
  color: var(--text-mid);
}

em { font-style: italic; color: var(--teal); }

strong { font-weight: 600; color: var(--text-dark); }

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--teal-light); }

/* ── UTILITY ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section-label {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.section-heading {
  margin-bottom: 1.2rem;
}

.section-subheading {
  font-size: 1.08rem;
  color: var(--text-mid);
  max-width: 640px;
  margin-bottom: 3rem;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(42,143,189,0.32);
}

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

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

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

/* ── ANIMATIONS ──────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
  padding: 0;
}

.nav-header.scrolled {
  background: rgba(15, 43, 70, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem clamp(20px, 5vw, 60px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--white);
  transition: opacity var(--transition);
}

.nav-logo:hover { opacity: 0.85; color: var(--white); }

.nav-logo-alpha {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  color: var(--gold);
  line-height: 1;
}

.nav-logo-text {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}

.nav-link:hover { color: var(--white); }

.nav-link.active { color: var(--white); border-bottom: 1.5px solid var(--teal); padding-bottom: 2px; }

.nav-cta {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  font-size: 0.87rem;
  color: var(--navy);
  background: var(--gold);
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,168,67,0.4);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.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);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.mobile-nav-link {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
}

.mobile-nav-link:hover { color: var(--gold); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(42,143,189,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 15% 80%, rgba(212,168,67,0.08) 0%, transparent 60%),
    linear-gradient(160deg, #0F2B46 0%, #163857 50%, #0F2B46 100%);
}

/* Subtle grid overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42,143,189,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,143,189,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-container {
  position: relative;
  z-index: 1;
  padding-top: 140px;
  padding-bottom: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,168,67,0.12);
  border: 1px solid rgba(212,168,67,0.28);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.hero-badge i { font-size: 0.7rem; }

.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 780px;
  margin-bottom: 1.6rem;
}

.hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  line-height: 1.65;
  margin-bottom: 0.75rem;
  font-weight: 300;
}

.hero-tagline {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stat {
  max-width: 600px;
}

.hero-stat-inner {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
}

.hero-stat-inner blockquote {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  font-style: italic;
}

.hero-stat-inner blockquote strong {
  font-weight: 600;
  color: var(--gold);
}

.hero-stat-inner cite {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.4rem;
  letter-spacing: 0.05em;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%  { opacity: 0; transform: scaleY(0) translateY(-10px); }
  50% { opacity: 1; transform: scaleY(1) translateY(0); }
  100% { opacity: 0; transform: scaleY(0) translateY(10px); }
}

/* ── PROBLEM ─────────────────────────────────────────────── */
.problem {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.problem-text {
  font-size: 1.08rem;
  max-width: 680px;
  margin-bottom: 3.5rem;
  color: var(--text-mid);
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-top: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
}

.stat-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-top-color: var(--gold);
}

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.stat-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ── FORMATS ─────────────────────────────────────────────── */
.formats {
  padding: var(--section-pad) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.formats::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.formats .section-label { color: var(--gold); }
.formats .section-heading { color: var(--white); }
.formats .section-subheading { color: rgba(255,255,255,0.6); }

.format-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.format-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.format-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.format-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,168,67,0.4);
  box-shadow: 0 12px 48px rgba(0,0,0,0.25), inset 0 0 0 1px rgba(212,168,67,0.2);
  transform: translateY(-4px);
}

.format-card:hover::before {
  transform: scaleX(1);
}

.format-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.format-icon {
  width: 48px;
  height: 48px;
  background: rgba(42,143,189,0.15);
  border: 1px solid rgba(42,143,189,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--teal);
  transition: all var(--transition);
}

.format-card:hover .format-icon {
  background: rgba(212,168,67,0.15);
  border-color: rgba(212,168,67,0.4);
  color: var(--gold);
}

.format-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.format-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  display: inline-block;
}

.format-duration {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.format-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.45rem;
  color: var(--white);
  margin-bottom: 0.9rem;
  line-height: 1.2;
}

.format-description {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.format-keyline {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--teal);
  padding: 0.85rem 1rem;
  background: rgba(42,143,189,0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  line-height: 1.45;
}

.format-keyline i {
  font-size: 0.75rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.format-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.format-price {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.01em;
}

/* ── MEASUREMENT ─────────────────────────────────────────── */
.measurement {
  padding: var(--section-pad) 0;
  background: var(--light);
}

.measurement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.measurement-col-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.measurement-col-title i { color: var(--teal); }

.measurement-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.measurement-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.4;
}

.measurement-list li i {
  color: var(--teal);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.research-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.research-stat {
  padding: 1.25rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  transition: box-shadow var(--transition);
}

.research-stat:hover { box-shadow: var(--shadow-sm); }

.research-stat-highlight {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.research-stat-text {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 0.3rem;
}

.research-stat-source {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--teal);
  text-transform: uppercase;
}

/* ── CHAMPIONS ───────────────────────────────────────────── */
.champions {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.champions-inner {
  max-width: 720px;
}

.champions-text {
  font-size: 1.08rem;
  margin-bottom: 2rem;
}

.champions-community {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.champions-community-icon {
  width: 44px;
  height: 44px;
  background: rgba(42,143,189,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.champions-community-text {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── EU AI ACT ───────────────────────────────────────────── */
.eu-act {
  padding: var(--section-pad) 0;
  background: var(--navy);
  position: relative;
}

.eu-act-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.eu-act-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
}

.eu-act-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.eu-act-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.eu-act-keyline {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: var(--radius);
  text-align: left;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
}

.eu-act-keyline i {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── GRANTS ──────────────────────────────────────────────── */
.grants {
  padding: var(--section-pad) 0;
  background: var(--light);
}

.grant-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.grant-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all var(--transition);
}

.grant-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.grant-logo {
  width: 48px;
  height: 48px;
  background: rgba(42,143,189,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.grant-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.grant-desc {
  font-size: 0.93rem;
  color: var(--text-mid);
}

.grants-footer {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: center;
  padding: 1.25rem 2rem;
  background: rgba(42,143,189,0.07);
  border: 1px solid rgba(42,143,189,0.15);
  border-radius: var(--radius-sm);
  max-width: 520px;
  margin: 0 auto;
}

/* ── AI PRAKTIKUM ────────────────────────────────────────── */
.praktikum {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.praktikum-inner {
  max-width: 680px;
}

.praktikum-text {
  font-size: 1.08rem;
  margin-bottom: 2rem;
}

.praktikum-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.praktikum-detail {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--text-mid);
}

.praktikum-detail i {
  color: var(--teal);
  width: 16px;
  text-align: center;
}

/* ── ABOUT ───────────────────────────────────────────────── */
.about {
  padding: var(--section-pad) 0;
  background: var(--navy);
}

.about .section-label { color: var(--gold); }
.about .section-heading { color: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.about-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-meta-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}

.about-meta-item i { color: var(--gold); width: 14px; }

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.credential-block {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.4rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.credential-block:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,168,67,0.25);
}

.credential-icon {
  width: 42px;
  height: 42px;
  background: rgba(212,168,67,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.credential-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.credential-text strong {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--white);
}

.credential-text span {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.48);
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact {
  padding: var(--section-pad) 0;
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-subtext {
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.contact-direct {
  margin-top: 1rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1.5px solid var(--teal);
  padding-bottom: 0.2rem;
  transition: all var(--transition);
}

.contact-email:hover {
  color: var(--teal);
}

/* FORM */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  width: 100%;
  transition: all var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(42,143,189,0.12);
}

.form-success {
  display: none;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.25rem;
  background: rgba(42,143,189,0.08);
  border: 1px solid rgba(42,143,189,0.25);
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  color: var(--teal);
  font-weight: 500;
}

.form-success.visible {
  display: flex;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-alpha {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.footer-name {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--white);
}

.footer-tagline-foot {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

.footer-location i { color: var(--teal); }

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

.footer-links a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-links a:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(42,143,189,0.1);
}

.footer-copy {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .format-cards {
    grid-template-columns: 1fr;
  }

  .measurement-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .stat-cards {
    grid-template-columns: 1fr;
  }

  .grant-cards {
    grid-template-columns: 1fr;
  }
}

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

  .hero-headline {
    font-size: clamp(2.4rem, 8vw, 3.5rem);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 1.75rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── SCROLL STAGGER DELAYS ───────────────────────────────── */
.format-card:nth-child(1) { transition-delay: 0.05s; }
.format-card:nth-child(2) { transition-delay: 0.12s; }
.format-card:nth-child(3) { transition-delay: 0.19s; }
.format-card:nth-child(4) { transition-delay: 0.26s; }

.stat-card:nth-child(1) { transition-delay: 0.05s; }
.stat-card:nth-child(2) { transition-delay: 0.12s; }
.stat-card:nth-child(3) { transition-delay: 0.19s; }
