/* ═══════════════════════════════════════════════════════════════════
   PRIDESHOW.ORG — DESIGN SYSTEM
   Fonts: Montserrat (headings) + Open Sans (body)
   ═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Open+Sans:wght@400;600&display=swap');

/* ── TOKENS ──────────────────────────────────────────────────────── */
:root {
  /* Brand colors */
  --navy:    #1A2B49;
  --red:     #F15A5A;
  --orange:  #F7941D;
  --yellow:  #FFF200;
  --green:   #8DC63F;
  --teal:    #00AEEF;
  --purple:  #662D91;
  --cream:   #FAF9F6;
  --spectrum: linear-gradient(90deg,#FF6B6B 0%,#F7941D 22%,#8DC63F 44%,#00AEEF 72%,#662D91 100%);

  /* Dark mode (default) */
  --bg:        #111827;
  --bg-card:   rgba(255,255,255,0.05);
  --bg-card-hover: rgba(255,255,255,0.08);
  --surface:   #1A2B49;
  --border:    rgba(255,255,255,0.1);
  --text:      #F9FAFB;
  --text-muted: rgba(255,255,255,0.6);
  --text-subtle: rgba(255,255,255,0.4);
  --shadow:    0 25px 50px rgba(0,0,0,0.5);
  --invert-logo: 0;
}

[data-theme="light"] {
  --bg:        #F5F7FA;
  --bg-card:   #FFFFFF;
  --bg-card-hover: #F0F4FF;
  --surface:   #FFFFFF;
  --border:    rgba(26,43,73,0.1);
  --text:      #1A2B49;
  --text-muted: rgba(26,43,73,0.65);
  --text-subtle: rgba(26,43,73,0.4);
  --shadow:    0 10px 40px rgba(26,43,73,0.12);
  --invert-logo: 1;
}

/* ── RESET ───────────────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
}
img { max-width:100%; display:block; }
a { color: inherit; text-decoration: none; }

/* ── SPECTRUM BAR ────────────────────────────────────────────────── */
.spectrum-bar {
  height: 5px;
  background: var(--spectrum);
  width: 100%;
  flex-shrink: 0;
}
.spectrum-bar--thick { height: 8px; }
.spectrum-bar--thin  { height: 3px; }

/* ── NAV ─────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 31px; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 68px;
  background: rgba(17,24,39,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
[data-theme="light"] .nav {
  background: rgba(245,247,250,0.92);
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo img { height: 50px; width: 50px; object-fit: cover; object-position: top; transition: filter 0.3s; }
[data-theme="light"] .nav__logo img { filter: invert(var(--invert-logo)); }
.nav__logotext {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--text);
  text-transform: uppercase;
}
.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__link {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__link:hover { color: var(--text); }
.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: all 0.2s;
}
.theme-toggle:hover { background: var(--bg-card-hover); transform: scale(1.05); }

/* ── HERO (HOME) ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__glow--1 { width:500px;height:500px;background:#662D9130;top:-100px;right:-100px; }
.hero__glow--2 { width:400px;height:400px;background:#00AEEF25;bottom:-80px;left:-80px; }
.hero__glow--3 { width:300px;height:300px;background:#F7941D20;bottom:100px;right:200px; }
.hero__logo {
  height: 240px; width: 240px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.4));
}
.hero__logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 32px;
  letter-spacing: 4px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
  display: block;
}
.hero__supported {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  position: relative; z-index: 2;
}
.hero__supported-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.hero__supported-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  border-radius: 10px;
  padding: 8px 20px;
}
.hero__supported-logos img { height: 72px; object-fit: contain; }
.hero__divider { width: 1px; height: 60px; background: rgba(0,0,0,0.15); }
.hero__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  position: relative; z-index: 2;
}
.hero__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(42px, 7vw, 80px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 1.0;
  margin-bottom: 16px;
  position: relative; z-index: 2;
}
.hero__title span {
  background: var(--spectrum);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.7;
  margin: 0 auto 16px;
  position: relative; z-index: 2;
}
.hero__meta {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 56px;
  position: relative; z-index: 2;
}

/* ── ROLE GATE ───────────────────────────────────────────────────── */
.role-gate {
  padding: 80px 24px;
  background: var(--bg);
}
.role-gate__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-subtle);
  text-align: center;
  margin-bottom: 14px;
}
.role-gate__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 42px);
  text-align: center;
  margin-bottom: 8px;
}
.role-gate__sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 48px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.role-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.role-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  overflow: hidden;
  display: block;
}
.role-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s;
  transform-origin: left;
}
.role-card:hover::before { transform: scaleX(1); }
.role-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2), 0 0 0 1px var(--accent);
  border-color: var(--accent);
  background: var(--bg-card-hover);
}
.role-card__emoji { font-size: 40px; margin-bottom: 14px; display: block; }
.role-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.role-card__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}
.role-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.role-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  transition: transform 0.2s;
}
.role-card:hover .role-card__arrow { transform: translateX(4px); }

/* Segment accent vars on cards */
.role-card[data-segment="plc"] { --accent: var(--red); }
.role-card[data-segment="ngo"] { --accent: var(--orange); }
.role-card[data-segment="sme"] { --accent: var(--green); }
.role-card[data-segment="kol"] { --accent: var(--teal); }
.role-card[data-segment="pride"] { --accent: var(--purple); }

/* ── LANDING PAGE HERO ───────────────────────────────────────────── */
.lp-hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
.lp-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}
.lp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,43,73,0.96) 40%, rgba(26,43,73,0.7) 100%);
}
.lp-hero__content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 900px;
  padding: 60px 60px 40px;
}
.lp-hero__chip {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  align-self: flex-start;
}
.lp-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(38px, 6vw, 64px);
  color: #fff;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.lp-hero__tag {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  line-height: 1.7;
}
.lp-hero__footer {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  border-top: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.15);
}
.lp-hero__footer-logos {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-hero__footer-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.lp-hero__footer-imgs {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border-radius: 10px;
  padding: 8px 18px;
}
.lp-hero__footer-imgs img { height: 96px; object-fit: contain; }
.lp-hero__footer-divider { width:1px;height:72px;background:rgba(0,0,0,0.15); }
.lp-hero__footer-meta {
  text-align: right;
  font-family: 'Montserrat', sans-serif;
}
.lp-hero__footer-date {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.lp-hero__footer-venue {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* ── SECTION WRAPPERS ────────────────────────────────────────────── */
.section {
  padding: 96px 24px;
}
.section--dark {
  background: var(--navy);
}
.section--surface {
  background: var(--surface);
}
.container {
  max-width: 1080px;
  margin: 0 auto;
}
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent, var(--teal));
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 680px;
}

/* ── VIDEO SECTION ───────────────────────────────────────────────── */
.video-section {
  background: #000;
  padding: 0;
  position: relative;
}
.video-section video {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}
.video-section__caption {
  text-align: center;
  padding: 16px 24px;
  background: var(--bg);
  font-size: 13px;
  color: var(--text-subtle);
  letter-spacing: 1px;
}

/* ── STAT CARDS ──────────────────────────────────────────────────── */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent, var(--teal));
  border-radius: 12px;
  padding: 28px 24px;
}
.stat-card__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent, var(--teal));
  margin-bottom: 8px;
}
.stat-card__value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: var(--accent, var(--teal));
  line-height: 1;
  margin-bottom: 10px;
}
.stat-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.stat-card__body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── STATEMENT BLOCK ─────────────────────────────────────────────── */
.statement {
  background: var(--navy);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.statement__left-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  opacity: 0.8;
}
.statement__quote {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 4vw, 38px);
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative; z-index: 2;
  max-width: 780px;
  margin-left: auto; margin-right: auto;
}
.statement__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
  position: relative; z-index: 2;
}

/* ── BENEFIT CARDS ───────────────────────────────────────────────── */
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 20px;
  margin-top: 48px;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  border-bottom: 4px solid var(--accent, var(--teal));
  padding: 32px 24px;
  text-align: center;
}
.benefit-card__stat {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 52px;
  color: var(--accent, var(--teal));
  line-height: 1;
  margin-bottom: 10px;
}
.benefit-card__label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.benefit-card__body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── CTA SECTION ─────────────────────────────────────────────────── */
.cta-section {
  padding: 100px 24px;
  text-align: center;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.cta-section__glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-section__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent, var(--teal));
  margin-bottom: 16px;
  position: relative; z-index: 2;
}
.cta-section__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 5vw, 52px);
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative; z-index: 2;
  line-height: 1.1;
}
.cta-section__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative; z-index: 2;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  text-decoration: none;
  position: relative; z-index: 2;
}
.btn--spectrum {
  background: #fff;
  color: var(--navy);
  font-weight: 900;
  text-shadow: none;
  box-shadow: 0 8px 30px rgba(255,255,255,0.15);
}
.btn--spectrum:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255,255,255,0.25);
  background: #f8f9fa;
}
.btn--accent {
  background: var(--accent, var(--teal));
  color: #fff;
  font-weight: 900;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.btn--accent:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 14px 40px rgba(0,0,0,0.4);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 48px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent, var(--teal)); }
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; align-items:center; justify-content:center;
  font-size: 16px;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent, var(--teal));
  border-color: var(--accent, var(--teal));
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── FLYWHEEL VISUAL ─────────────────────────────────────────────── */
.flywheel-section {
  background: var(--navy);
  padding: 96px 24px;
  overflow: hidden;
}
.flywheel-wrap {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 960px;
  margin: 0 auto;
}
.flywheel-copy { flex: 0 0 40%; }
.flywheel-visual {
  flex: 1;
  position: relative;
  height: 320px;
}
.flywheel-ring {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.2);
}
.flywheel-center {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 100px; height: 100px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 5;
  display: flex; align-items:center; justify-content:center;
}
.flywheel-center img { width:100%; height:100%; object-fit: contain; }
.flywheel-node {
  position: absolute;
  text-align: center;
  transform: translate(-50%,-50%);
  z-index: 10;
}
.flywheel-node__circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items:center; justify-content:center;
  margin: 0 auto 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 11px;
  border: 2px solid;
  transition: all 0.3s;
}
.flywheel-node__circle.active {
  width: 80px; height: 80px;
  font-size: 13px;
}
.flywheel-node__label {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}

/* ── AUTHORITY STRIP ─────────────────────────────────────────────── */
.authority {
  padding: 48px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.authority__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 20px;
}
.authority__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.authority__logo-wrap {
  background: white;
  border-radius: 10px;
  padding: 10px 24px;
  display: flex; align-items:center; justify-content:center;
}
.authority__logo-wrap img {
  height: 48px;
  object-fit: contain;
  filter: grayscale(0);
}

/* ── DOWNLOAD PAGE ───────────────────────────────────────────────── */
.download-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
.footer {
  background: #0D1520;
  padding: 56px 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer__brand img { height: 44px; margin-bottom: 14px; }
.footer__brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 240px;
}
.footer__col-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__links a:hover { color: #fff; }
.footer__bottom {
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer__spectrum { height: 4px; background: var(--spectrum); }

/* ── SCROLL ANIMATIONS ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── 404 ─────────────────────────────────────────────────────────── */
.page-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--navy);
}
.page-404__code {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 160px;
  line-height: 1;
  background: var(--spectrum);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

/* ── TOP BANNER ──────────────────────────────────────────────────── */
.top-banner {
  background: var(--navy);
  color: #fff;
  text-shadow: none;
  text-align: center;
  padding: 8px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: fixed;
  top: 0; left: 0; right: 0;
  border-bottom: 2px solid transparent;
  border-image: var(--spectrum);
  border-image-slice: 1;
  z-index: 102;
  white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 0 16px; }
  .nav__link { display: none; }
  .lp-hero__content { padding: 48px 24px 32px; }
  .lp-hero__footer { flex-direction: column; gap: 20px; padding: 24px; text-align: center; }
  .lp-hero__title { font-size: 11vw; }
  .lp-hero__footer-meta { text-align: center; }
  .hero__title { font-size: 11vw; }
  .section-title { font-size: 8vw; }
  .flywheel-wrap { flex-direction: column; }
  .flywheel-visual { width: 100%; flex: none; min-height: 340px; margin-top: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .role-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
  .stat-cards, .benefit-cards { grid-template-columns: 1fr; }
  .nav__logotext { display: none; }
  .hero__logo { height: 160px; width: 160px; }
  .hero__logo-text { font-size: 24px; }
}

