/* ============================================
   ArizonaW1NS — Brand Stylesheet
   Font: Albert Sans | Colors from report
   ============================================ */

:root {
  --navy:       #1c3645;
  --navy-dark:  #142830;
  --orange:     #d17623;
  --orange-hover:#b8671e;
  --red:        #8e0821;
  --gold:       #c0b5a1;
  --cream:      #f2f0ec;
  --light-gray: #F8F6F3;
  --white:      #FFFFFF;
  --text:       #333333;
  --text-light: #666666;
  --border:     #E0D8CF;

  --font: 'Albert Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-height: 72px;
  --container: 1200px;
  --container-narrow: 800px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ---- Utilities ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--container-narrow); }
.text-bold { font-weight: 800; }
.mt-lg { margin-top: 1.5rem; }
.lead { font-size: 1.25rem; line-height: 1.6; color: var(--text); margin-bottom: 1.25rem; font-weight: 300; }

/* ---- Sections ---- */
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: var(--white); }
.section--cta { padding: 120px 0; }

.section__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.section__title--center { text-align: center; }
.section__title--light { color: var(--white); }
.section__subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
  font-weight: 300;
}
.section__subtitle--light { color: rgba(255,255,255,0.8); }

.section__grid { display: grid; gap: 60px; align-items: start; }
.section__grid--2col { grid-template-columns: 1fr 1fr; }
.section__grid--reverse > :first-child { order: 1; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
}
.btn--primary:hover { background: var(--orange-hover); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--outline {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn--lg { padding: 18px 40px; font-size: 1.1rem; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(28,54,69,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav--scrolled { background: rgba(20,40,48,0.98); box-shadow: var(--shadow); }
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo {
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  display: flex;
  align-items: baseline;
  color: var(--white);
}
.logo-arizona { font-weight: 300; letter-spacing: 0.14em; }
.logo-w1ns { font-weight: 800; letter-spacing: 0.14em; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__links a.active { color: var(--white); }
.nav__cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
}
.nav__cta:hover { background: var(--orange-hover) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 1px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(60deg, transparent, transparent 40px, rgba(255,255,255,0.15) 40px, rgba(255,255,255,0.15) 41px),
    repeating-linear-gradient(-60deg, transparent, transparent 40px, rgba(255,255,255,0.15) 40px, rgba(255,255,255,0.15) 41px),
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.1) 40px, rgba(255,255,255,0.1) 41px);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 80px 40px 80px 24px;
  margin-left: max(24px, calc((100vw - var(--container)) / 2));
}
.hero__tag {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.hero__title em {
  font-style: normal;
  color: var(--orange);
}
.hero__sub {
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.hero__partners { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 2rem; }
.partner-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 1rem;
}
.partner-logos { display: flex; align-items: center; gap: 24px; }
.partner-logo { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.partner-logo:hover { color: var(--white); }
.partner-logo__img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity var(--transition);
}
.partner-logo:hover .partner-logo__img { opacity: 1; }
.partner-logo__img--nofilter {
  filter: none;
  opacity: 0.9;
  mix-blend-mode: screen;
}
.partner-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

.hero__photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
}

/* ---- Photos ---- */
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
}
.section__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}
.tab-hero {
  width: 100%;
  height: 340px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  margin-bottom: 2rem;
}
.section--bg {
  background-size: cover;
  background-position: center;
}
.section--bg__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 54, 69, 0.82);
  z-index: 1;
}

/* ============================================
   HIGHLIGHT CARDS
   ============================================ */
.highlight-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.highlight-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg);
}
.highlight-card--orange { background: var(--orange); }
.highlight-card--red { background: var(--red); }
.highlight-card__number { font-size: 2.5rem; font-weight: 800; line-height: 1; margin-bottom: 8px; }
.highlight-card__text { font-size: 1rem; font-weight: 400; opacity: 0.9; line-height: 1.5; }

/* ============================================
   STATS GRID
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  color: var(--white);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.stats-grid .stat-card:nth-child(1) { transition-delay: 0s; }
.stats-grid .stat-card:nth-child(2) { transition-delay: 0.05s; }
.stats-grid .stat-card:nth-child(3) { transition-delay: 0.1s; }
.stats-grid .stat-card:nth-child(4) { transition-delay: 0.15s; }
.stats-grid .stat-card:nth-child(5) { transition-delay: 0.2s; }
.stats-grid .stat-card:nth-child(6) { transition-delay: 0.25s; }
.stats-grid .stat-card:nth-child(7) { transition-delay: 0.3s; }
.stats-grid .stat-card:nth-child(8) { transition-delay: 0.35s; }
.stat-card .stat-card__value {
  transition: transform 0.3s ease;
}
.stat-card:hover .stat-card__value {
  transform: scale(1.08);
}
.stat-card__icon svg {
  transition: transform 0.4s ease;
}
.stat-card:hover .stat-card__icon svg {
  transform: scale(1.15) rotate(-5deg);
}
.stat-card--navy { background: var(--navy); }
.stat-card--orange { background: var(--orange); }
.stat-card--red { background: var(--red); }
.stat-card--gold { background: var(--gold); }
.stat-card {
  opacity: 0;
  transform: translateY(30px);
}
.stat-card.stat-card--visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.4s ease;
}
.stat-card__icon { margin-bottom: 16px; opacity: 0.6; }
.stat-card__icon svg { width: 40px; height: 40px; }
.stat-card__value { font-size: 2.25rem; font-weight: 800; line-height: 1.1; margin-bottom: 4px; }
.stat-card__label { font-size: 1rem; font-weight: 600; opacity: 0.95; margin-bottom: 8px; }
.stat-card__source { font-size: 0.8rem; opacity: 0.8; font-weight: 400; }

/* ============================================
   CALLOUT
   ============================================ */
.callout {
  display: flex;
  gap: 20px;
  margin: 2rem 0;
  padding: 1.5rem 0;
}
.callout__bar { width: 4px; background: var(--orange); border-radius: 2px; flex-shrink: 0; }
.callout__text { font-size: 1.15rem; font-weight: 400; line-height: 1.6; color: var(--navy); }

/* ---- Awards ---- */
.awards-row { display: flex; gap: 20px; margin-top: 2rem; }
.award {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px 24px;
  flex: 1;
}
.award__year { font-size: 0.8rem; font-weight: 600; color: var(--orange); letter-spacing: 0.05em; }
.award__title { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 4px 0 2px; }
.award__org { font-size: 0.85rem; color: var(--text-light); }

/* ============================================
   FRAMEWORK
   ============================================ */
.framework-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 1rem;
}
.framework-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  text-align: center;
}
.framework-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.framework-card__icon svg {
  transition: transform 0.4s ease;
}
.framework-card:hover .framework-card__icon svg {
  transform: scale(1.15);
}
.framework-card__icon { margin-bottom: 20px; }
.framework-card__icon svg { width: 48px; height: 48px; stroke: var(--orange); }
.framework-card__title { font-size: 1.15rem; font-weight: 700; margin-bottom: 16px; }
.framework-card__list { text-align: left; }
.framework-card__list li {
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
}
.framework-card__list li:last-child { border-bottom: none; }

/* ============================================
   PRIORITIES
   ============================================ */
.priorities-list { max-width: 800px; margin: 0 auto; }
.priority {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.priority:last-child { border-bottom: none; }
.priority {
  transition: transform 0.3s ease;
}
.priority:hover {
  transform: translateX(8px);
}
.priority__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 800;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.priority:hover .priority__num {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(209,118,35,0.4);
}
.priority__title { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.priority__content p { color: var(--text-light); font-size: 1rem; }

/* ============================================
   TABS (Playbook)
   ============================================ */
.tabs__nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 3rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tabs__btn {
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all var(--transition);
}
.tabs__btn:hover { color: var(--navy); }
.tabs__btn--active {
  color: var(--navy);
  border-bottom-color: var(--orange);
}
.tabs__panel { display: none; }
.tabs__panel--active { display: block; }

.tab-intro { margin-bottom: 2rem; }
.tab-intro h3 { font-size: 1.75rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.tab-intro p { font-size: 1.1rem; color: var(--text-light); }

/* ---- Goals Grid ---- */
.goals-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 2.5rem; }
.goal-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow var(--transition);
}
.goal-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.goal-card {
  transition: box-shadow var(--transition), transform var(--transition);
}
.goal-card__icon { flex-shrink: 0; color: var(--orange); }
.goal-card__icon svg { width: 24px; height: 24px; }
.goal-card p { font-size: 0.95rem; line-height: 1.6; }

.actions-heading {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

/* ---- Accordion ---- */
.accordion { margin-bottom: 1rem; }
.accordion__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  background: var(--white);
  overflow: hidden;
}
.accordion__trigger {
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background var(--transition);
}
.accordion__trigger:hover { background: var(--light-gray); }
.accordion__trigger svg { flex-shrink: 0; transition: transform var(--transition); color: var(--orange); }
.accordion__trigger.open svg { transform: rotate(180deg); }
.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.accordion__content.open {
  max-height: 600px;
  padding: 0 24px 20px;
}
.accordion__content ul { list-style: disc; padding-left: 20px; }
.accordion__content li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  padding: 4px 0;
}

/* ============================================
   KPI LIST
   ============================================ */
.kpi-list { display: flex; flex-direction: column; gap: 12px; }
.kpi-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.kpi-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
}
.kpi-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   LEADERSHIP
   ============================================ */
.leaders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 1rem;
}
.leader-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.leader-card__avatar {
  transition: transform 0.3s ease;
}
.leader-card:hover .leader-card__avatar {
  transform: scale(1.05);
}
.leader-card__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  background: var(--cream);
}
.leader-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.intern-credit {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.95rem;
}
.leader-card__name { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.leader-card__role { font-size: 0.9rem; font-weight: 600; color: var(--orange); margin-bottom: 8px; }
.leader-card__org { font-size: 0.9rem; color: var(--text-light); line-height: 1.5; }

/* ============================================
   SUPPORTERS
   ============================================ */
.supporters-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.supporter {
  padding: 20px 32px;
  background: var(--cream);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.supporter {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.supporter:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.supporter img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}
.supporter--text { min-height: 80px; }
.logo-transparent { mix-blend-mode: multiply; }

/* ============================================
   CTA
   ============================================ */
.cta-buttons { text-align: center; margin-top: 2rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 32px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.footer__brand .logo-arizona,
.footer__brand .logo-w1ns { color: var(--white); font-size: 1.2rem; }
.footer__tagline { font-size: 0.8rem; margin-top: 4px; opacity: 0.5; letter-spacing: 0.06em; }
.footer__links { display: flex; gap: 32px; }
.footer__links a { font-size: 0.9rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__bottom { font-size: 0.8rem; opacity: 0.4; }

/* ============================================
   ANIMATIONS
   ============================================ */
/* ---- Focus visible ---- */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 3px;
}
.btn:focus-visible { outline-offset: 4px; }

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in--delay { transition-delay: 0.15s; }
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .section__grid--2col { grid-template-columns: 1fr; }
  .section__grid--reverse > :first-child { order: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .framework-grid { grid-template-columns: repeat(2, 1fr); }
  .goals-grid { grid-template-columns: 1fr; }
  .leaders-grid { grid-template-columns: repeat(3, 1fr); }
  .hero__content { max-width: 440px; margin-left: 24px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .section--cta { padding: 80px 0; }

  /* Nav mobile */
  .nav__toggle { display: flex; width: 32px; height: 32px; align-items: center; justify-content: center; padding: 4px; }
  .nav__toggle span { height: 2.5px; border-radius: 2px; }
  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.25s ease;
    border-bottom: 2px solid var(--orange);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 999;
  }
  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav__links li { width: 100%; }
  .nav__links a {
    padding: 16px 0;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .nav__links li:last-child a { border-bottom: none; }
  .nav__cta {
    text-align: center;
    margin-top: 12px;
    padding: 14px 22px !important;
    border-radius: 6px;
    display: block !important;
    width: 100%;
  }

  /* Hero mobile */
  .hero { min-height: auto; flex-direction: column; }
  .hero__content { max-width: 100%; margin-left: 0; padding: 60px 24px 40px; box-sizing: border-box; width: 100%; }
  .hero__tag { font-size: 0.75rem; letter-spacing: 0.06em; }
  .hero__photo { position: relative; width: 100%; height: 300px; }
  .hero__photo img { object-position: center 20%; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; text-align: center; padding: 14px 20px; font-size: 0.95rem; }
  .hero__partners { overflow: hidden; }
  .partner-logos { flex-wrap: wrap; gap: 12px; }
  .partner-logo__img { height: 32px; }

  /* Grids */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-card { padding: 24px 20px; }
  .stat-card__value { font-size: 1.75rem; }
  .framework-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .leaders-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }

  /* Tabs */
  .tabs__nav { gap: 0; }
  .tabs__btn { padding: 12px 16px; font-size: 0.85rem; }

  /* Misc */
  .awards-row { flex-direction: column; }
  .priority { gap: 20px; }
  .priority__num { width: 44px; height: 44px; font-size: 1.1rem; }

  .footer__inner { flex-direction: column; text-align: center; gap: 24px; }
  .footer__links { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .framework-grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 2rem; }
}

/* ============================================
   POPUP
   ============================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.popup-overlay--visible {
  opacity: 1;
  pointer-events: all;
}
.popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s ease;
}
.popup-overlay--visible .popup {
  transform: translateY(0) scale(1);
}
.popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  font-size: 1.5rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}
.popup__close:hover { background: var(--cream); }
.popup__icon {
  margin-bottom: 20px;
  color: var(--orange);
}
.popup__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.popup__text {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.6;
}
.popup__btn {
  width: 100%;
  margin-bottom: 12px;
}
.popup__dismiss {
  font-size: 0.9rem;
  color: var(--text-light);
  transition: color var(--transition);
}
.popup__dismiss:hover { color: var(--navy); }
