/* ===================================================================
   TEDxDallas Website — Core Styles
   Foundation: dark mode, cinematic, premium TEDx aesthetic
   =================================================================== */

/* ---- Reset / Normalize ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ---- Design Tokens ---- */
:root {
  /* Brand colors */
  --red: #EB0028;
  --red-hover: #C4001F;
  --red-bright: #FF1A33;
  --ink: #0A0A0A;
  --ink-2: #141414;
  --ink-3: #1A1A1A;
  --paper: #FFFFFF;
  --cream: #FAF7F2;
  --gray-300: #D9D9D9;
  --gray-400: #A0A0A0;
  --gray-500: #707070;
  --gray-600: #5C5C5C;
  --gray-700: #2A2A2A;
  --success: #2C8A4A;
  --error: #C0392B;

  /* Typography */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* Layout */
  --max-width: 1280px;
  --content-width: 1080px;
  --narrow-width: 720px;
  --nav-height: 72px;
  --nav-height-mobile: 60px;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms var(--ease);
  --transition-slow: 400ms var(--ease);
}

/* ---- Base ---- */
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  background: var(--ink);
  color: var(--paper);
  overflow-x: hidden;
  min-height: 100vh;
}

::selection {
  background: var(--red);
  color: var(--paper);
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.container--narrow {
  max-width: var(--narrow-width);
}

.container--content {
  max-width: var(--content-width);
}

/* ===================================================================
   TYPOGRAPHY
   =================================================================== */

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.eyebrow--muted {
  color: var(--gray-400);
}

.display-1 {
  font-size: clamp(2.75rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.display-2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.lede {
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.55;
  color: var(--gray-400);
  font-weight: 400;
}

.meta {
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 500;
}

/* ===================================================================
   TEDx LOGO (wordmark)
   =================================================================== */
.tedx-logo {
  font-family: var(--font-sans);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
}

.tedx-logo__red {
  color: var(--red);
}

.tedx-logo__name {
  color: var(--paper);
}

.tedx-logo--dark .tedx-logo__name {
  color: var(--ink);
}

.tedx-logo--lg { font-size: 2rem; }
.tedx-logo--md { font-size: 1.5rem; }
.tedx-logo--sm { font-size: 1.125rem; }

/* Superscript "x" in the TEDx wordmark, matching the official TEDx
   logo generator output. Uses position:relative + top to control the
   baseline lift precisely, since default <sup> baselines vary by
   browser and interact with the parent inline-flex layout. */
.tedx-logo__x {
  font-size: 0.55em;
  vertical-align: baseline;
  position: relative;
  top: -0.5em;
  font-weight: 900;
  line-height: 1;
  margin-left: -0.03em;
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  text-align: center;
}

.btn--primary {
  background: var(--red);
  color: var(--paper);
}

.btn--primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}

.btn--outline:hover {
  background: var(--paper);
  color: var(--ink);
}

.btn--outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn--outline-dark:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn--ghost {
  background: transparent;
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  padding: 0.5rem 0;
}

.btn--ghost:hover {
  text-decoration-color: var(--red);
}

.btn--lg {
  padding: 1.1rem 2.25rem;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-arrow {
  transition: transform var(--transition-base);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ===================================================================
   NAVIGATION
   =================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: transparent;
  transition: background var(--transition-base), backdrop-filter var(--transition-base), border-color var(--transition-base);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 110;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--paper);
  transition: color var(--transition-base);
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--red);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__cta {
  display: flex;
  gap: 0.625rem;
  align-items: center;
}

/* Compact email signup inside the nav */
.nav__signup {
  display: inline-flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  overflow: hidden;
  transition: background var(--transition-base), border-color var(--transition-base);
}

.nav__signup:focus-within {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--red);
}

.nav__signup__input {
  background: transparent;
  border: none;
  padding: 0.45rem 0.875rem;
  color: var(--paper);
  font-size: 0.825rem;
  width: 170px;
  outline: none;
}

.nav__signup__input::placeholder {
  color: var(--gray-400);
}

.nav__signup__btn {
  background: var(--red);
  color: var(--paper);
  padding: 0 1rem;
  font-weight: 600;
  font-size: 0.825rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition-base);
  white-space: nowrap;
}

.nav__signup__btn:hover {
  background: var(--red-hover);
}

/* Tighten the nav signup at intermediate widths to prevent crowding nav links */
@media (max-width: 1280px) {
  .nav__links {
    gap: 1.25rem;
  }
  .nav__signup__input {
    width: 140px;
  }
}

@media (max-width: 1100px) {
  .nav__links {
    gap: 1rem;
  }
  .nav__signup__input {
    width: 110px;
  }
  .nav__signup__btn {
    padding: 0 0.75rem;
  }
}

@media (max-width: 1000px) {
  /* Just before mobile breakpoint, hide the inline signup to give nav links room */
  .nav__signup {
    display: none;
  }
}

.nav__toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 110;
  background: transparent;
  border: none;
}

.nav__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--paper);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav.is-open .nav__toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav.is-open .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav.is-open .nav__toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 960px) {
  /* Mobile drawer: links in top region, CTA in fixed bottom strip.
     Both get the dark background so they read as one continuous panel. */

  /* Re-show the nav signup form inside the drawer (it's hidden at >960px). */
  .nav__signup {
    display: inline-flex;
    width: 100%;
    max-width: 320px;
  }

  /* Override the desktop fixed widths so the input flexes and the
     "Notify me" button keeps its natural width instead of clipping. */
  .nav__signup__input {
    flex: 1;
    width: auto;
    min-width: 0;
  }

  .nav__signup__btn {
    flex: none;
    padding: 0 1.25rem;
    font-size: 0.85rem;
  }

  /* Top region: nav links centered between the top bar and the CTA strip. */
  .nav__links {
    position: fixed;
    inset: var(--nav-height) 0 240px 0;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    visibility: hidden;
    opacity: 0;
    transition: opacity var(--transition-base), visibility var(--transition-base);
    overflow-y: auto;
    flex: none;
  }

  /* Bottom region: CTA buttons + email signup form. */
  .nav__cta {
    position: fixed;
    inset: auto 0 0 0;
    height: 240px;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem 2rem;
    visibility: hidden;
    opacity: 0;
    transition: opacity var(--transition-base), visibility var(--transition-base);
  }

  /* Subtle separator between the two regions. */
  .nav__cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
  }

  .nav.is-open .nav__links,
  .nav.is-open .nav__cta {
    visibility: visible;
    opacity: 1;
  }

  .nav__link {
    font-size: 1.35rem;
    font-weight: 600;
  }

  .nav__toggle {
    display: flex;
  }

  .nav.is-open .nav__cta .btn {
    min-width: 220px;
  }

  .nav.is-open .nav__signup {
    display: inline-flex;
    width: 280px;
  }
  .nav.is-open .nav__signup__input {
    flex: 1;
    width: auto;
    font-size: 0.95rem;
    padding: 0.65rem 1rem;
  }
  .nav.is-open .nav__signup__btn {
    font-size: 0.875rem;
    padding: 0 1rem;
  }
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

/* Cinematic background — animated gradient + subtle noise */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(235, 0, 40, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(235, 0, 40, 0.10) 0%, transparent 55%),
    linear-gradient(135deg, #0A0A0A 0%, #1A0F12 60%, #0A0A0A 100%);
  z-index: 0;
  animation: heroBreath 20s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px, 60px 60px;
  pointer-events: none;
  z-index: 0;
}

@keyframes heroBreath {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.05) rotate(0.5deg); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem 0.5rem 0.85rem;
  background: rgba(235, 0, 40, 0.08);
  border: 1px solid rgba(235, 0, 40, 0.25);
  border-radius: var(--radius-pill);
  max-width: 100%;
}

.hero__eyebrow-text {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  line-height: 1.3;
}

@media (max-width: 600px) {
  .hero__eyebrow {
    padding: 0.4rem 0.75rem;
  }
  .hero__eyebrow-text {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
  }
}

.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ===================================================================
   COUNTDOWN TIMER
   =================================================================== */
.countdown {
  display: inline-flex;
  align-items: flex-end;
  gap: clamp(0.625rem, 1.5vw, 1rem);
  margin-block: 0.75rem 0.25rem;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.countdown::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(235, 0, 40, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  min-width: 40px;
  position: relative;
  z-index: 1;
}

.countdown__num {
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.countdown__label {
  font-size: clamp(0.55rem, 0.7vw, 0.625rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.countdown__sep {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  font-weight: 300;
  color: var(--red);
  line-height: 1;
  padding-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  opacity: 0.6;
}

@media (max-width: 540px) {
  .countdown {
    padding: 0.75rem 1rem;
    gap: 0.4rem;
  }
  .countdown__unit {
    min-width: 36px;
  }
  .countdown__sep {
    padding-bottom: 0.45rem;
  }
}

.countdown.is-ended .countdown__num {
  color: var(--red);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero__headline {
  max-width: 18ch;
  margin-block: 0.5rem;
}

.hero__headline span {
  color: var(--red);
  display: inline-block;
}

.hero__lede {
  max-width: 50ch;
  margin-inline: auto;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  padding-top: 0.5rem;
}

.hero__meta-divider {
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  justify-content: center;
}

.hero__email {
  width: 100%;
  max-width: 480px;
  padding-top: 1rem;
  align-self: center;
}

.hero__scroll {
  display: none;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

.hero__scroll svg {
  width: 16px;
  height: 16px;
}

/* ===================================================================
   SECTIONS
   =================================================================== */
.section {
  padding-block: clamp(4rem, 10vw, 8rem);
  position: relative;
}

.section--dark {
  background: var(--ink);
  color: var(--paper);
}

.section--darker {
  background: var(--ink-2);
  color: var(--paper);
}

.section--light {
  background: var(--cream);
  color: var(--ink);
}

.section--accent {
  background: var(--red);
  color: var(--paper);
}

.section__header {
  margin-bottom: 4rem;
  max-width: 720px;
}

.section__header .eyebrow {
  margin-bottom: 1rem;
}

.section__header .h2 {
  margin-bottom: 1.5rem;
}

.section__header--center {
  margin-inline: auto;
  text-align: center;
}

/* ===================================================================
   ABOUT SUMMARY
   =================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.about-grid__body p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-300);
}

.about-grid__body p:last-child {
  margin-bottom: 0;
}

.about-grid__side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.creed {
  border-left: 3px solid var(--red);
  padding: 0.5rem 0 0.5rem 1.5rem;
}

.creed__label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.creed__text {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--paper);
  font-weight: 500;
}

/* ===================================================================
   FEATURE GRID (3-col explainers)
   =================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 860px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.feature {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.feature:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(235, 0, 40, 0.4);
  transform: translateY(-4px);
}

.feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature__icon svg {
  width: 22px;
  height: 22px;
  color: var(--paper);
}

.feature__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--paper);
}

.feature__body {
  font-size: 0.975rem;
  line-height: 1.6;
  color: var(--gray-400);
}

/* ===================================================================
   STAT BAR
   =================================================================== */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 860px) {
  .stat-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat {
  text-align: left;
}

.stat__number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===================================================================
   EXPERIENCE PILLARS
   =================================================================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1100px) {
  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 460px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}

.pillar {
  text-align: left;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--red);
  transition: all var(--transition-base);
}

.pillar:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.pillar__icon {
  width: 36px;
  height: 36px;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.pillar__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pillar__body {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--gray-400);
}

/* ===================================================================
   ANCHOR PARTNERS
   =================================================================== */
.partners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 840px;
  margin-inline: auto;
}

@media (max-width: 860px) {
  .partners {
    grid-template-columns: 1fr;
  }
}

.partner {
  padding: 2.5rem 2rem;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-lg);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition-base);
}

.partner:hover {
  transform: translateY(-4px);
}

.partner__logo {
  height: 64px;
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.partner__logo img {
  max-height: 64px;
  max-width: 240px;
  width: auto;
  object-fit: contain;
}

.partner__logo-text {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.2;
}

/* "Presenting Partner Available" card — inviting placeholder */
.partner--available {
  background: transparent;
  color: var(--paper);
  border: 1.5px dashed rgba(235, 0, 40, 0.5);
  position: relative;
  transition: all var(--transition-base);
}

.partner--available:hover {
  background: rgba(235, 0, 40, 0.05);
  border-color: var(--red);
  border-style: solid;
}

.partner--available .partner__logo {
  border: 1.5px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
  width: 100%;
}

.partner--available .partner__role {
  color: var(--red);
}

.partner--available .partner__name {
  color: var(--paper);
}

.partner--available .partner__body {
  color: var(--gray-400);
}

.partner--available .partner__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--paper);
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
  align-self: flex-start;
}

.partner--available .partner__cta:hover {
  color: var(--red);
}

.partner__role {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}

.partner__name {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.partner__body {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* ===================================================================
   EMAIL CAPTURE
   =================================================================== */
.email-capture {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  max-width: 480px;
  position: relative;
}

.email-capture__input {
  flex: 1;
  padding: 0.95rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  color: var(--paper);
  font-size: 0.95rem;
  transition: all var(--transition-base);
}

.email-capture__input::placeholder {
  color: var(--gray-400);
}

.email-capture__input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--red);
}

.email-capture__btn {
  padding: 0.95rem 1.5rem;
  background: var(--red);
  color: var(--paper);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.email-capture__btn:hover {
  background: var(--red-hover);
}

.email-capture__msg {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  font-size: 0.85rem;
  color: var(--gray-400);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.email-capture__msg.is-visible {
  opacity: 1;
}

.email-capture__msg.is-success {
  color: var(--red);
}

@media (max-width: 520px) {
  .email-capture {
    flex-direction: column;
  }
  .email-capture__btn {
    width: 100%;
  }
}

/* ===================================================================
   CTA BAND (Get involved section)
   =================================================================== */
.cta-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (max-width: 860px) {
  .cta-band {
    grid-template-columns: 1fr;
  }
}

.cta-band__card {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.cta-band__card--volunteer {
  background: var(--red);
  color: var(--paper);
}

.cta-band__card--partner {
  background: var(--ink-3);
  color: var(--paper);
}

.cta-band__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-band__icon {
  width: 48px;
  height: 48px;
  color: var(--paper);
  opacity: 0.9;
}

.cta-band__title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.15;
}

.cta-band__body {
  font-size: 1rem;
  line-height: 1.55;
  opacity: 0.9;
  max-width: 380px;
}

.cta-band__card--volunteer .btn--outline {
  border-color: var(--paper);
  background: transparent;
}

.cta-band__card--volunteer .btn--outline:hover {
  background: var(--paper);
  color: var(--red);
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: #050505;
  color: var(--gray-400);
  padding-block: 4rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 860px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 520px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}

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

.footer__tagline {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
  color: var(--gray-400);
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 1.25rem;
}

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

.footer__link {
  font-size: 0.9rem;
  color: var(--gray-400);
  transition: color var(--transition-base);
}

.footer__link:hover {
  color: var(--red);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  transition: all var(--transition-base);
}

.footer__social-link:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.825rem;
  color: var(--gray-500);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__disclaimer {
  font-size: 0.825rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ===================================================================
   SCROLL ANIMATIONS
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }
.reveal--delay-4 { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===================================================================
   UTILITY
   =================================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--red);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  z-index: 200;
  font-weight: 600;
  font-size: 0.9rem;
  transition: top var(--transition-base);
}

.skip-link:focus {
  top: 1rem;
}

/* ===================================================================
   PAGE HERO (inner pages — volunteer, partner, about, etc.)
   =================================================================== */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-height) + 5rem);
  padding-bottom: 4rem;
  background: var(--ink);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(235, 0, 40, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, #0A0A0A 0%, #131015 100%);
  z-index: 0;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.page-hero__eyebrow {
  margin-bottom: 1rem;
}

.page-hero__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.page-hero__title span {
  color: var(--red);
}

.page-hero__lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  color: var(--gray-300);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.825rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: var(--gray-400);
  transition: color var(--transition-base);
}

.breadcrumb a:hover {
  color: var(--red);
}

.breadcrumb__sep {
  opacity: 0.4;
}

/* Active nav link */
.nav__link.is-active {
  color: var(--red);
}

.nav__link.is-active::after {
  transform: scaleX(1);
}

/* ===================================================================
   ROLE CARDS (volunteer page)
   =================================================================== */
.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 960px) {
  .role-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .role-grid {
    grid-template-columns: 1fr;
  }
}

.role-card {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.role-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(235, 0, 40, 0.3);
  transform: translateY(-2px);
}

.role-card__workstream {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.role-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--paper);
  line-height: 1.3;
}

.role-card__commitment {
  font-size: 0.825rem;
  color: var(--gray-400);
  margin-top: 0.25rem;
}

.role-card__body {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--gray-400);
  margin-top: 0.5rem;
}

/* ===================================================================
   PERKS / BENEFITS LIST (volunteer, partner)
   =================================================================== */
.perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 2rem;
  max-width: 800px;
}

@media (max-width: 600px) {
  .perks {
    grid-template-columns: 1fr;
  }
}

.perk {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.perk__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
}

.perk__icon svg {
  width: 16px;
  height: 16px;
}

.perk__text {
  font-size: 0.975rem;
  line-height: 1.5;
  color: var(--gray-300);
  padding-top: 0.25rem;
}

.perk__text strong {
  color: var(--paper);
  display: block;
  font-weight: 700;
  margin-bottom: 0.125rem;
}

/* ===================================================================
   SPONSOR TIER CARDS (partner page)
   =================================================================== */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

@media (max-width: 1100px) {
  .tier-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .tier-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 460px) {
  .tier-grid {
    grid-template-columns: 1fr;
  }
}

.tier {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  transition: all var(--transition-base);
  position: relative;
}

.tier:hover {
  transform: translateY(-4px);
  border-color: rgba(235, 0, 40, 0.4);
}

.tier--title {
  background: var(--red);
  border-color: var(--red);
}

.tier--title:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
}

.tier__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--paper);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
}

.tier__name {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--paper);
  opacity: 0.9;
}

.tier__price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--paper);
  line-height: 1.15;
  margin-block: 0.25rem;
}

.tier__slots {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-style: italic;
}

.tier--title .tier__slots {
  color: rgba(255, 255, 255, 0.85);
}

.tier__divider {
  width: 32px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0.625rem auto;
}

.tier__perks {
  font-size: 0.825rem;
  line-height: 1.5;
  color: var(--gray-300);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.tier--title .tier__perks {
  color: rgba(255, 255, 255, 0.95);
}

.tier__perk {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.tier__perk::before {
  content: "✓";
  flex-shrink: 0;
  color: var(--red);
  font-weight: 700;
  margin-top: 1px;
}

.tier--title .tier__perk::before {
  color: var(--paper);
}

/* ===================================================================
   FORMS
   =================================================================== */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 640px;
}

.form--wide {
  max-width: 800px;
}

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

@media (max-width: 600px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}

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

.form__label {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.form__label--optional::after {
  content: "Optional";
  font-size: 0.7rem;
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.1rem 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-pill);
}

.form__required {
  color: var(--red);
  font-weight: 700;
}

.form__input,
.form__select,
.form__textarea {
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: var(--paper);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all var(--transition-base);
  width: 100%;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--gray-500);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--red);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.55;
}

.form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='white' stroke-width='2'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form__select option {
  background: var(--ink);
  color: var(--paper);
}

.form__help {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: -0.125rem;
}

/* Checkbox group (multi-select roles) */
.form__checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1rem;
}

@media (max-width: 600px) {
  .form__checks {
    grid-template-columns: 1fr;
  }
}

.form__check {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition-base);
}

.form__check:hover {
  background: rgba(255, 255, 255, 0.04);
}

.form__check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all var(--transition-base);
  position: relative;
}

.form__check input[type="checkbox"]:checked {
  background: var(--red);
  border-color: var(--red);
}

.form__check input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form__check-text {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--gray-300);
}

.form__check-text strong {
  color: var(--paper);
  display: block;
  font-weight: 600;
}

/* Required agreement checkbox */
.form__agree {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(235, 0, 40, 0.05);
  border: 1px solid rgba(235, 0, 40, 0.2);
  border-radius: var(--radius-md);
}

.form__agree input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--transition-base);
  position: relative;
}

.form__agree input[type="checkbox"]:checked {
  background: var(--red);
  border-color: var(--red);
}

.form__agree input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form__agree-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--gray-300);
}

.form__agree-text a {
  color: var(--paper);
  border-bottom: 1px solid var(--red);
  padding-bottom: 1px;
}

/* Submit button */
.form__submit {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.form__notice {
  font-size: 0.825rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-top: 0.5rem;
}

.form__notice a {
  color: var(--gray-400);
  border-bottom: 1px solid var(--gray-500);
}

/* Form layout — side-by-side intro + form */
.form-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 860px) {
  .form-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.form-layout__intro h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.form-layout__intro p {
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.form-layout__intro p:last-child {
  margin-bottom: 0;
}

/* ===================================================================
   THANK-YOU PAGE
   =================================================================== */
.thank-you {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 4rem;
  padding-top: calc(var(--nav-height) + 3rem);
  text-align: center;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.thank-you::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(235, 0, 40, 0.12) 0%, transparent 60%);
  z-index: 0;
}

.thank-you__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}

.thank-you__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--red);
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: tyPop 700ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.thank-you__icon svg {
  width: 36px;
  height: 36px;
  color: var(--paper);
}

@keyframes tyPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.thank-you__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.thank-you__body {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--gray-300);
  margin-bottom: 2.5rem;
}

.thank-you__body strong {
  color: var(--paper);
}

.thank-you__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.thank-you__share {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.thank-you__share-label {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.thank-you__share-buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.thank-you__share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  transition: all var(--transition-base);
}

.thank-you__share-btn:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.thank-you__share-btn svg {
  width: 16px;
  height: 16px;
}

/* ===================================================================
   COMPLIANCE / DISCLOSURE BANNER (used on partner page)
   =================================================================== */
.disclosure {
  background: rgba(235, 0, 40, 0.06);
  border: 1px solid rgba(235, 0, 40, 0.25);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  margin-block: 2rem;
}

.disclosure__title {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.625rem;
}

.disclosure__body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-300);
}

/* ===================================================================
   PROSE (long-form text — about, legal)
   =================================================================== */
.prose {
  max-width: 720px;
  margin-inline: auto;
  color: var(--gray-300);
}

.prose h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--paper);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--paper);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose ul, .prose ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.prose ul {
  list-style: none;
}

.prose ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.prose ol {
  list-style: decimal;
}

.prose ol li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  padding-left: 0.5rem;
}

.prose ol li::marker {
  color: var(--red);
  font-weight: 700;
}

.prose a {
  color: var(--paper);
  border-bottom: 1px solid var(--red);
  padding-bottom: 1px;
  transition: color var(--transition-base);
}

.prose a:hover {
  color: var(--red);
}

.prose strong {
  color: var(--paper);
  font-weight: 600;
}

.prose blockquote {
  border-left: 3px solid var(--red);
  padding: 0.25rem 0 0.25rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--paper);
}

.prose hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 2.5rem 0;
}

.prose__meta {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===================================================================
   FAQ (accordion-style)
   =================================================================== */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 800px;
  margin-inline: auto;
}

.faq__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq__item[open] {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(235, 0, 40, 0.3);
}

.faq__question {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--paper);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
  transition: color var(--transition-base);
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question:hover {
  color: var(--red);
}

.faq__question::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--red);
  transition: transform var(--transition-base);
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--gray-300);
}

.faq__answer p {
  margin-bottom: 1rem;
}

.faq__answer p:last-child {
  margin-bottom: 0;
}

.faq__answer a {
  color: var(--paper);
  border-bottom: 1px solid var(--red);
}

/* ===================================================================
   TEAM GRID (about page leadership)
   =================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 860px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .team-grid { grid-template-columns: 1fr; }
}

.team-card {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
}

.team-card__role {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.team-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--paper);
}

.team-card__bio {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.55;
}

.team-card--open {
  background: transparent;
  border: 1.5px dashed rgba(255, 255, 255, 0.15);
}

.team-card--open .team-card__name {
  color: var(--gray-400);
  font-style: italic;
}

/* ===================================================================
   PRESS LIST
   =================================================================== */
.press-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 760px;
}

.press-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  align-items: flex-start;
  transition: all var(--transition-base);
}

.press-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(235, 0, 40, 0.3);
}

.press-item__date {
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-width: 100px;
  flex-shrink: 0;
  padding-top: 0.2rem;
}

.press-item__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 0.5rem;
}

.press-item__body p {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.55;
  margin-bottom: 0.5rem;
}

.press-item__body p:last-child { margin-bottom: 0; }

@media (max-width: 600px) {
  .press-item { flex-direction: column; gap: 0.5rem; }
  .press-item__date { min-width: 0; }
}

/* ===================================================================
   MEDIA KIT DOWNLOAD CARDS
   =================================================================== */
.media-kit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 700px) {
  .media-kit { grid-template-columns: 1fr; }
}

.media-card {
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all var(--transition-base);
}

.media-card:hover {
  border-color: rgba(235, 0, 40, 0.4);
  transform: translateY(-2px);
}

.media-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--paper);
}

.media-card__meta {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ===================================================================
   404
   =================================================================== */
.error-page {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
  text-align: center;
  position: relative;
  background: var(--ink);
  overflow: hidden;
}

.error-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(235, 0, 40, 0.1) 0%, transparent 60%);
}

.error-page__inner {
  position: relative;
  z-index: 1;
  max-width: 540px;
  padding: 2rem;
}

.error-page__code {
  font-size: clamp(7rem, 18vw, 12rem);
  font-weight: 900;
  line-height: 1;
  color: var(--red);
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
}

.error-page__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.error-page__body {
  font-size: 1.05rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 2rem;
}
