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

/* ─── DESIGN TOKENS ─── */
:root {
  --navy:        #0D1B3D;
  --navy-deep:   #080f22;
  --navy-mid:    #112248;
  --navy-light:  #1a3160;
  --red:         #D7263D;
  --red-dark:    #b01e30;
  --red-light:   #e8455a;
  --purple:      #7B1FA2;
  --purple-light:#9c27b0;
  --blue:        #0077B6;
  --blue-light:  #0096e0;
  --green:       #1E8E3E;
  --white:       #ffffff;
  --off-white:   #f7f8fc;
  --cream:       #faf9f6;
  --grey-100:    #f0f2f7;
  --grey-200:    #dde2ed;
  --grey-400:    #8892aa;
  --grey-600:    #556080;
  --text:        #0a0f1e;
  --text-light:  #4a5470;
  --gold:        #c8972a;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --max-width:    1240px;
  --radius:       3px;
  --radius-lg:    6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── PASSWORD GATE ─── */
#password-gate {
  position: fixed; inset: 0;
  background: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; flex-direction: column; gap: 2rem;
}

.gate-mark {
  width: 48px; height: 48px;
  background: var(--red);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

#password-gate h2 {
  font-family: var(--font-display);
  color: var(--white); font-size: 1.75rem; font-weight: 600;
  letter-spacing: 0.02em;
}

#password-gate p { color: var(--grey-400); font-size: 0.875rem; text-align: center; }

.gate-form {
  display: flex; flex-direction: column; gap: 1rem;
  width: 100%; max-width: 300px; align-items: center;
}

.gate-form input {
  width: 100%; padding: 0.875rem 1.25rem;
  background: var(--navy-mid); border: 1px solid var(--navy-light);
  border-radius: var(--radius); color: var(--white);
  font-family: var(--font-body); font-size: 1rem;
  text-align: center; letter-spacing: 0.15em; outline: none;
  transition: border-color 0.2s;
}

.gate-form input:focus { border-color: var(--red); }
.gate-form input::placeholder { color: var(--grey-600); letter-spacing: 0.05em; }

.gate-form button {
  width: 100%; padding: 0.875rem;
  background: var(--red); color: var(--white); border: none;
  border-radius: var(--radius); font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 500; cursor: pointer;
  transition: background 0.2s; letter-spacing: 0.03em;
}

.gate-form button:hover { background: var(--red-dark); }
.gate-error { color: #f87171; font-size: 0.825rem; min-height: 1.2em; text-align: center; }
.gate-notice { color: var(--grey-600); font-size: 0.75rem; text-align: center; max-width: 260px; }

/* ─── NAVIGATION ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8, 15, 34, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 2.5rem; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-brand {
  display: flex; align-items: center; gap: 1rem;
  text-decoration: none;
}

.nav-mark {
  width: 28px; height: 28px; background: var(--red);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  flex-shrink: 0;
}

.nav-wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav-wordmark span:first-child {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.08em;
}
.nav-wordmark span:last-child {
  font-size: 0.6rem; color: var(--grey-400);
  letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 400; margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 0.8rem; font-weight: 400; padding: 0.5rem 1rem;
  letter-spacing: 0.04em; transition: color 0.2s;
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--red) !important; color: var(--white) !important;
  font-weight: 500 !important; border-radius: var(--radius) !important;
  margin-left: 0.5rem !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }

.nav-mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-mobile-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); border-radius: 2px; transition: all 0.3s;
}

/* ─── TYPOGRAPHY ─── */
h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 600; line-height: 1.05;
  letter-spacing: -0.01em;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600; line-height: 1.1;
}
h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 600; line-height: 1.2;
}
h4 { font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em; }

p { font-size: 0.95rem; color: var(--text-light); line-height: 1.75; }
a { color: var(--red); text-decoration: none; }

/* ─── LAYOUT ─── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2.5rem; }
.section { padding: 7rem 0; }
.section-sm { padding: 4.5rem 0; }
.section-lg { padding: 10rem 0; }

/* ─── LABEL / EYEBROW ─── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--red); margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--red);
}

.eyebrow-white { color: rgba(255,255,255,0.5); }
.eyebrow-white::before { background: rgba(255,255,255,0.3); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 0.625rem;
  padding: 0.875rem 2rem; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.825rem; font-weight: 500;
  cursor: pointer; border: none; transition: all 0.2s;
  text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase;
}

.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); color: var(--white); text-decoration: none; }

.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: var(--white); color: var(--white); text-decoration: none; }

.btn-outline-dark { background: transparent; color: var(--navy); border: 1px solid rgba(13,27,61,0.3); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); text-decoration: none; }

.btn-ghost { background: transparent; color: var(--red); padding-left: 0; padding-right: 0; }
.btn-ghost:hover { color: var(--red-dark); text-decoration: none; }
.btn-ghost::after { content: ' →'; }

.btn-lg { padding: 1.1rem 2.5rem; font-size: 0.875rem; }

/* ─── DIVIDER ─── */
.rule { width: 40px; height: 2px; background: var(--red); margin: 2rem 0; }
.rule-white { background: rgba(255,255,255,0.3); }
.rule-center { margin-left: auto; margin-right: auto; }

/* ─── DARK SECTION ─── */
.dark { background: var(--navy); }
.dark h1, .dark h2, .dark h3, .dark h4 { color: var(--white); }
.dark p { color: rgba(255,255,255,0.55); }

.darker { background: var(--navy-deep); }
.light { background: var(--off-white); }
.cream-bg { background: var(--cream); }

/* ─── HERO ─── */
.hero {
  background: var(--navy-deep);
  padding: 11rem 0 8rem;
  position: relative; overflow: hidden;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}

.hero-glow {
  position: absolute; top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(215,38,61,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute; bottom: -300px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(123,31,162,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

/* ─── HERO LARGE NUMBER ─── */
.hero-bg-text {
  position: absolute; right: -2rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display); font-size: clamp(14rem, 22vw, 26rem);
  font-weight: 700; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  pointer-events: none; user-select: none;
  letter-spacing: -0.05em;
}

/* ─── COUNTER ─── */
.counter-bar {
  background: var(--red);
  padding: 1.25rem 0;
}
.counter-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 1.25rem; flex-wrap: wrap;
}
.counter-bar span { color: rgba(255,255,255,0.85); font-size: 0.825rem; letter-spacing: 0.04em; }
.counter-num { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: white; }
.counter-bar a { color: white; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,0.4); }

/* ─── DESIGNATION BADGES ─── */
.desig {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  flex-shrink: 0;
}
.desig-aipp { background: rgba(0,119,182,0.1); color: var(--blue); border: 1.5px solid rgba(0,119,182,0.3); }
.desig-mipp { background: rgba(215,38,61,0.1); color: var(--red); border: 1.5px solid rgba(215,38,61,0.3); }
.desig-fipp { background: rgba(200,151,42,0.1); color: var(--gold); border: 1.5px solid rgba(200,151,42,0.3); }

/* ─── STAT STRIP ─── */
.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.stat-item {
  padding: 3rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 700;
  color: var(--white); line-height: 1; display: block; margin-bottom: 0.5rem;
}
.stat-num .stat-accent { color: var(--red); }
.stat-label { font-size: 0.775rem; color: var(--grey-400); letter-spacing: 0.06em; text-transform: uppercase; }

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg); padding: 2.5rem;
}

.card-dark {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg); padding: 2.5rem;
}

.card-red {
  background: var(--red); border-radius: var(--radius-lg); padding: 2.5rem;
}

/* ─── TIER CARDS ─── */
.tier-card {
  border: 1px solid var(--grey-200); border-radius: var(--radius-lg);
  padding: 2.5rem; background: var(--white);
  transition: all 0.25s; position: relative;
}
.tier-card:hover { box-shadow: 0 8px 32px rgba(13,27,61,0.1); transform: translateY(-3px); }
.tier-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red), 0 8px 32px rgba(215,38,61,0.15);
}

.tier-price {
  font-family: var(--font-display); font-size: 2.75rem;
  font-weight: 700; color: var(--navy); line-height: 1;
}
.tier-price sub {
  font-size: 1rem; font-weight: 400; color: var(--grey-400);
  font-family: var(--font-body); vertical-align: baseline;
}
.tier-desig {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  color: var(--grey-400); text-transform: uppercase; margin-top: 0.25rem;
}

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.feature-list li {
  font-size: 0.85rem; color: var(--text-light);
  display: flex; align-items: flex-start; gap: 0.75rem; line-height: 1.4;
}
.feature-list li::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--red); flex-shrink: 0; margin-top: 5px;
}

/* ─── QUALIFICATION PATHWAY ─── */
.qual-level {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.qual-level:last-child { border-bottom: none; }
.qual-number {
  display: flex; align-items: center; justify-content: center;
  padding: 3rem 1rem;
  font-family: var(--font-display); font-size: 4rem;
  font-weight: 700; color: rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.06);
  line-height: 1;
}
.qual-content { padding: 2.5rem 2.5rem; }

/* ─── TABLE ─── */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.data-table th {
  background: var(--navy); color: rgba(255,255,255,0.6);
  padding: 1rem 1.5rem; text-align: left;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
}
.data-table th:first-child { color: var(--white); }
.data-table td {
  padding: 1rem 1.5rem; border-bottom: 1px solid var(--grey-100);
  color: var(--text-light); vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--off-white); }
.data-table td.check { color: var(--green); font-weight: 600; }
.data-table td.cross { color: var(--grey-400); }

/* ─── TESTIMONIALS ─── */
.testimonial {
  padding: 3rem; background: var(--white);
  border: 1px solid var(--grey-200); border-radius: var(--radius-lg);
  position: relative;
}
.testimonial-quote {
  font-family: var(--font-display); font-size: 1.1rem; font-style: italic;
  color: var(--text); line-height: 1.65; margin-bottom: 2rem;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.85rem; font-weight: 600; color: var(--text); display: block; }
.testimonial-role { font-size: 0.775rem; color: var(--grey-400); }

/* ─── FAQ ─── */
.faq-item { border-bottom: 1px solid var(--grey-200); }
.faq-btn {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.5rem 0; cursor: pointer; display: flex;
  align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  color: var(--text); transition: color 0.2s;
}
.faq-btn:hover { color: var(--red); }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid var(--grey-200); display: flex;
  align-items: center; justify-content: center;
  font-size: 1rem; color: var(--grey-400); flex-shrink: 0;
  transition: all 0.25s;
}
.faq-item.open .faq-icon { border-color: var(--red); color: var(--red); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-body { padding: 0 0 1.5rem; font-size: 0.875rem; color: var(--text-light); line-height: 1.75; }

/* ─── VERIFY TOOL ─── */
.verify-wrap {
  background: var(--off-white); border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.verify-row { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.verify-row input {
  flex: 1; padding: 0.875rem 1.25rem;
  border: 1px solid var(--grey-200); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.9rem; outline: none;
  transition: border-color 0.2s; background: var(--white);
}
.verify-row input:focus { border-color: var(--red); }
.verify-result { margin-top: 1.25rem; padding: 1.25rem; border-radius: var(--radius); display: none; font-size: 0.875rem; }
.verify-result.found { background: rgba(30,142,62,0.07); border: 1px solid rgba(30,142,62,0.2); color: var(--green); display: block; }
.verify-result.not-found { background: rgba(215,38,61,0.06); border: 1px solid rgba(215,38,61,0.15); color: var(--red); display: block; }

/* ─── LOGO CAROUSEL ─── */
.carousel-wrap { overflow: hidden; position: relative; padding: 0.5rem 0; }
.carousel-track {
  display: flex; gap: 4rem; animation: marquee 30s linear infinite;
  width: max-content;
}
.carousel-track:hover { animation-play-state: paused; }
.logo-item {
  display: flex; align-items: center; height: 32px;
  opacity: 0.35; flex-shrink: 0; transition: opacity 0.2s;
}
.logo-item:hover { opacity: 0.6; }
.logo-pill {
  background: var(--grey-400); border-radius: 3px;
  padding: 0 1.25rem; height: 28px; display: flex; align-items: center;
}
.logo-pill span { font-size: 0.7rem; font-weight: 700; color: var(--white); letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── TIMELINE ─── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 1px; background: var(--grey-200);
}
.tl-item { position: relative; padding-bottom: 2.5rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: -2.375rem; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--red); border: 2px solid var(--white);
  box-shadow: 0 0 0 1.5px var(--red);
}
.tl-dot.future { background: var(--grey-200); box-shadow: 0 0 0 1.5px var(--grey-400); }
.tl-year { font-size: 0.7rem; font-weight: 700; color: var(--red); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.25rem; display: block; }
.tl-year.future-yr { color: var(--grey-400); }

/* ─── MEMBER LISTING DEMO ─── */
.member-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.125rem 1.5rem; background: var(--white);
  border: 1px solid var(--grey-200); border-radius: var(--radius);
  gap: 1rem;
}
.member-row + .member-row { margin-top: 0.5rem; }
.member-info { display: flex; align-items: center; gap: 1rem; }
.member-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--white); flex-shrink: 0;
}
.member-name { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.member-tier { font-size: 0.75rem; color: var(--grey-400); }
.member-status { display: flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; font-weight: 600; color: var(--green); }
.member-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.founding-badge { font-size: 0.65rem; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; }

/* ─── STEP NUMBERS ─── */
.step-num {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 700;
  color: var(--red); line-height: 1; opacity: 0.25; margin-bottom: 0.5rem;
}

/* ─── UTILITY ─── */
.text-white { color: var(--white) !important; }
.text-red { color: var(--red) !important; }
.text-gold { color: var(--gold) !important; }
.text-muted { color: var(--grey-400) !important; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; } .mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.w-full { width: 100%; }

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

/* ─── FOOTER ─── */
.footer { background: var(--navy-deep); padding: 5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand p { color: var(--grey-400); font-size: 0.825rem; margin-top: 1.25rem; line-height: 1.65; max-width: 260px; }
.footer-col h5 {
  color: rgba(255,255,255,0.4); font-family: var(--font-body);
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { color: rgba(255,255,255,0.45); font-size: 0.825rem; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--navy-deep); padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06); gap: 0;
  }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 5rem 0; }
  .hero { padding: 9rem 0 6rem; }
  .container { padding: 0 1.5rem; }
  .verify-row { flex-direction: column; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-bg-text { display: none; }
  h1 { font-size: 3rem; }
}
