/* ============================================================
   Aurora — A Movement in Talent
   Production stylesheet (recreated from the design handoff)
   ============================================================ */

:root {
  /* Surfaces */
  --bg: #0d0b12;
  --card: #14111c;
  --card-soft: rgba(20, 17, 28, .6);
  --card-gradient: linear-gradient(140deg, #16131c, #1d1720);

  /* Text */
  --fg: #f4f2ee;
  --fg-82: rgba(244, 242, 238, .82);
  --fg-78: rgba(244, 242, 238, .78);
  --fg-75: rgba(244, 242, 238, .75);
  --fg-72: rgba(244, 242, 238, .72);
  --fg-60: rgba(244, 242, 238, .60);
  --fg-55: rgba(244, 242, 238, .55);
  --fg-50: rgba(244, 242, 238, .50);

  /* Accents */
  --purple: #a855f7;
  --pink: #ff2d87;
  --orange: #ff9a3d;
  --brand-gradient: linear-gradient(90deg, #a855f7, #ff2d87, #ff9a3d);

  /* Lines */
  --line: rgba(244, 242, 238, .12);
  --line-16: rgba(244, 242, 238, .16);
  --line-18: rgba(244, 242, 238, .18);

  /* Fonts */
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Rhythm */
  --pad-x: 56px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--pink); }

img { display: block; max-width: 100%; }

.gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Shared horizontal padding for full-width sections */
.pad { padding-left: var(--pad-x); padding-right: var(--pad-x); }

/* ---------- Keyframes ---------- */
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes beam {
  0%, 100% { opacity: .75; transform: translateX(-6%) skewX(-12deg); }
  50%      { opacity: 1;   transform: translateX(6%) skewX(-12deg); }
}
@keyframes kenburns { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.14); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px var(--pad-x);
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; flex-direction: column; gap: 3px; }
.brand__row { display: flex; align-items: flex-start; gap: 7px; }
.brand__word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: .04em;
  line-height: 1;
}
.brand__mark { margin-top: -5px; }
.brand__tag {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 7.5px;
  letter-spacing: .34em;
  color: var(--fg-60);
}

.nav__links {
  display: flex;
  gap: 36px;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-78);
}
.nav__links a { padding-bottom: 3px; }
.nav__links a.is-active {
  color: var(--fg);
  border-bottom: 2px solid var(--pink);
}

.btn {
  display: inline-block;
  border-radius: 100px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}
.btn:hover { color: inherit; }

.btn--pill-gradient {
  padding: 12px 24px;
  background: var(--brand-gradient);
  color: var(--bg);
  font-size: 14.5px;
}
.btn--pill-gradient:hover { color: var(--bg); box-shadow: 0 10px 30px rgba(255, 45, 135, .28); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 110px var(--pad-x) 96px;
  overflow: hidden;
}
.hero__beam {
  position: absolute;
  top: -140px;
  right: -60px;
  width: 560px;
  height: 700px;
  background: linear-gradient(160deg, rgba(168, 85, 247, .55), rgba(255, 45, 135, .4) 45%, rgba(255, 154, 61, .3));
  filter: blur(95px);
  animation: beam 9s ease-in-out infinite;
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 980px; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .3em;
}
.hero .eyebrow { margin-bottom: 30px; }

.h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 82px;
  line-height: 1.02;
  letter-spacing: -.01em;
  margin: 0;
}
.hero__lede {
  margin-top: 36px;
  max-width: 540px;
  font-size: 20px;
  line-height: 1.55;
  color: var(--fg-72);
}
.hero__btns { display: flex; gap: 16px; margin-top: 44px; }

.btn--lg-light {
  padding: 17px 34px;
  background: var(--fg);
  color: var(--bg);
  font-size: 17.5px;
}
.btn--lg-light:hover { color: var(--bg); transform: translateY(-2px); }
.btn--lg-outline {
  padding: 17px 34px;
  border: 1px solid rgba(244, 242, 238, .35);
  font-size: 17.5px;
  color: var(--fg);
}
.btn--lg-outline:hover { color: var(--fg); border-color: var(--fg); transform: translateY(-2px); }

/* ============================================================
   STAGE MARQUEE
   ============================================================ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 56px;
  align-items: center;
  animation: marquee 34s linear infinite;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .14em;
  color: var(--fg-55);
}
.marquee__star { font-size: 21px; }

/* ============================================================
   ROSTER PREVIEW + MOSAIC
   ============================================================ */
.roster { padding: 88px var(--pad-x) 80px; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}
.mono-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .22em;
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 38px;
  margin: 0;
}
.link-underline {
  font-weight: 600;
  font-size: 15px;
  color: var(--fg);
  border-bottom: 2px solid var(--pink);
  padding-bottom: 3px;
  white-space: nowrap;
}
.link-underline:hover { color: var(--fg); }

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 36px;
}
.pill {
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid rgba(244, 242, 238, .22);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--fg-75);
  cursor: pointer;
  transition: border-color .25s ease, color .25s ease;
}
.pill:hover { border-color: var(--pink); color: var(--fg); }

.mosaic {
  display: flex;
  justify-content: center;
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 0;
}
.mosaic__col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
  animation: floaty var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.tile {
  position: relative;
  width: 100%;
  height: var(--h, 190px);
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line-16);
  background: repeating-linear-gradient(135deg, #1c1826 0 10px, #211c2e 10px 20px);
  transition: transform .35s cubic-bezier(.34, 1.4, .5, 1), box-shadow .35s ease, border-color .35s ease;
  cursor: pointer;
}
.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tile:hover {
  transform: scale(1.12);
  z-index: 10;
  border-color: var(--tile-color, var(--pink));
  box-shadow: 0 18px 48px rgba(0, 0, 0, .6);
}

/* ============================================================
   THE MOVEMENT
   ============================================================ */
.movement {
  padding: 88px var(--pad-x);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.movement__glow {
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, .25), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.movement__inner { position: relative; }
.movement h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 52px;
  line-height: 1.1;
  max-width: 900px;
  margin-top: 26px;
}
.movement h2 .italic { font-style: italic; }
.movement h2 .subline {
  color: var(--fg-50);
  font-size: 28px;
  font-weight: 600;
  display: block;
  margin-top: 16px;
  line-height: 1.15;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.pillar {
  border: 1px solid rgba(244, 242, 238, .14);
  border-radius: 20px;
  padding: 34px;
  background: var(--card-soft);
}
.pillar__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .06em;
}
.pillar__body {
  margin-top: 14px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--fg-72);
}

/* ============================================================
   SPLIT PATHS
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 0 var(--pad-x) 88px;
}
.split-card {
  border-radius: 22px;
  padding: 48px;
  background: var(--card-gradient);
  border: 1px solid var(--line-16);
}
.split-card__eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--orange);
  margin-bottom: 18px;
}
.split-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  margin: 0;
}
.split-card p {
  margin-top: 16px;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--fg-75);
}
.btn--md {
  margin-top: 28px;
  padding: 14px 28px;
  font-size: 15.5px;
}
.btn--orange { background: var(--orange); color: var(--bg); }
.btn--orange:hover { color: var(--bg); transform: translateY(-2px); }
.btn--light { background: var(--fg); color: var(--bg); }
.btn--light:hover { color: var(--bg); transform: translateY(-2px); }

/* ============================================================
   FOOTER CTA + FOOTER
   ============================================================ */
.foot-wrap {
  padding: 80px var(--pad-x) 40px;
  border-top: 1px solid var(--line);
}
.cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.cta-row h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.15;
  max-width: 620px;
  margin: 0;
}
.btn--cta {
  padding: 18px 36px;
  background: var(--brand-gradient);
  color: var(--bg);
  font-size: 16px;
  flex: none;
}
.btn--cta:hover { color: var(--bg); box-shadow: 0 12px 34px rgba(255, 45, 135, .3); }

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--fg-50);
}
.footer__brand-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--fg);
  line-height: 1;
}
.footer__brand-tag {
  font-family: var(--font-display);
  font-size: 6.5px;
  letter-spacing: .34em;
  color: var(--fg-55);
}
.footer__links { display: flex; gap: 28px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --pad-x: 36px; }
  .h1 { font-size: 52px; }
}

@media (max-width: 760px) {
  :root { --pad-x: 20px; }

  .nav { flex-wrap: wrap; row-gap: 16px; }
  .nav__links {
    order: 3;
    width: 100%;
    gap: 16px 20px;
    flex-wrap: wrap;
    font-size: 13.5px;
  }

  .h1 { font-size: 38px; line-height: 1.1; }

  .pillars, .split { grid-template-columns: 1fr; }

  .section-head, .cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .hero__btns { flex-wrap: wrap; }
  .footer { flex-direction: column; align-items: flex-start; gap: 18px; }

  .mosaic { flex-wrap: wrap; }
  .mosaic__col { flex: 0 0 30%; }
}

/* ============================================================
   INTERIOR PAGES (Roster / Partners / Speakers / Movement)
   ============================================================ */

/* ---- Interior hero variants ---- */
.hero--interior { padding: 96px var(--pad-x) 72px; }
.hero--roster { padding: 84px var(--pad-x) 56px; }
.hero--movement { padding: 110px var(--pad-x) 96px; }

.hero__eyebrow-sm {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .3em;
  margin-bottom: 24px;
}
.h1--62 { font-size: 62px; line-height: 1.05; }
.h1--64 { font-size: 64px; line-height: 1.05; }
.hero__lede--interior { margin-top: 26px; font-size: 19px; }

/* Smaller / repositioned beams for interior heroes */
.beam--sm {
  position: absolute; top: -180px; right: -80px;
  width: 520px; height: 560px;
  background: linear-gradient(160deg, rgba(168,85,247,.4), rgba(255,45,135,.3) 45%, rgba(255,154,61,.22));
  filter: blur(95px); animation: beam 9s ease-in-out infinite; pointer-events: none;
}
.beam--left {
  position: absolute; top: -180px; left: -80px;
  width: 520px; height: 560px;
  background: linear-gradient(200deg, rgba(255,154,61,.32), rgba(255,45,135,.3) 45%, rgba(168,85,247,.35));
  filter: blur(95px); animation: beam 9s ease-in-out infinite; pointer-events: none;
}
.beam--movement {
  position: absolute; top: -160px; left: 20%;
  width: 640px; height: 720px;
  background: linear-gradient(170deg, rgba(168,85,247,.5), rgba(255,45,135,.38) 45%, rgba(255,154,61,.28));
  filter: blur(100px); animation: beam 10s ease-in-out infinite; pointer-events: none;
}

/* ---- Generic 3-up card grid (promises / pillars) ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 var(--pad-x) 72px;
}

/* ---- Roster filters ---- */
.filters {
  padding: 0 var(--pad-x) 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter {
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid rgba(244, 242, 238, .22);
  background: transparent;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--fg-75);
  cursor: pointer;
  transition: border-color .25s ease, color .25s ease, background .25s ease;
}
.filter:hover { border-color: var(--pink); color: var(--fg); }
.filter.is-active {
  border-color: var(--pink);
  background: rgba(255, 45, 135, .15);
  color: var(--fg);
}

/* ---- Roster grid + cards ---- */
.roster-grid {
  padding: 0 var(--pad-x) 88px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.speaker-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(244, 242, 238, .14);
  background: var(--card);
  cursor: pointer;
  transition: transform .3s ease, border-color .3s ease;
}
.speaker-card:hover { border-color: rgba(255, 45, 135, .5); transform: translateY(-4px); }
.speaker-card__photo {
  position: relative;
  height: 280px;
  background: repeating-linear-gradient(135deg, #1c1826 0 10px, #211c2e 10px 20px);
}
.speaker-card__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.speaker-card__body { padding: 18px 18px 22px; }
.speaker-card__name { font-weight: 600; font-size: 17px; }
.speaker-card__tag { margin-top: 5px; font-size: 13px; }
.speaker-card__fees { margin-top: 12px; font-size: 13px; color: var(--fg-55); }
.speaker-card[hidden] { display: none; }

/* ---- CTA band (roster) ---- */
.cta-band {
  padding: 72px var(--pad-x);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.cta-band__text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  line-height: 1.05;
  flex: 1;
  min-width: 0;
}
.cta-band__text .sub {
  color: var(--fg-50);
  font-size: 24px;
  line-height: 1.3;
  display: inline-block;
  max-width: 1100px;
}
.btn--cta-band {
  padding: 17px 32px;
  background: var(--brand-gradient);
  color: var(--bg);
  font-size: 16px;
  flex: none;
}
.btn--cta-band:hover { color: var(--bg); box-shadow: 0 12px 34px rgba(255, 45, 135, .3); }

/* ---- Standalone footer (interior pages, no CTA row) ---- */
.footer--standalone {
  padding: 28px var(--pad-x);
  border-top: 1px solid var(--line);
  margin-top: 0;
  padding-top: 28px;
}

/* ---- Stages band (speakers) ---- */
.stages-band {
  margin: 0 var(--pad-x) 72px;
  border-radius: 22px;
  padding: 48px;
  background: var(--card-gradient);
  border: 1px solid var(--line-16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.stages-band__text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  line-height: 1.2;
  max-width: 620px;
}
.stages-band__text .sub { color: var(--fg-50); }
.btn--outline {
  padding: 15px 30px;
  border: 1px solid rgba(244, 242, 238, .35);
  color: var(--fg);
  font-size: 15.5px;
  flex: none;
}
.btn--outline:hover { color: var(--fg); border-color: var(--fg); }

/* ============================================================
   FORMS (Partners / Speakers)
   ============================================================ */
.form-section {
  padding: 72px var(--pad-x) 88px;
  border-top: 1px solid var(--line);
}
.form-shell { max-width: 820px; margin: 0 auto; }
.form-shell h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  line-height: 1.15;
  margin: 0;
}
.form-shell__intro {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-72);
}

.form-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field__label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .18em;
  color: var(--fg-60);
}
.field input,
.field select,
.field textarea {
  background: var(--card);
  border: 1px solid var(--line-18);
  border-radius: 12px;
  padding: 15px 16px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--pink); }
.field input::placeholder,
.field textarea::placeholder { color: rgba(244, 242, 238, .35); }
.field select { appearance: none; }
.field select:invalid { color: rgba(244, 242, 238, .35); }
.field input[type="date"] { color-scheme: dark; }
.field textarea { resize: vertical; }

.form-submit {
  margin-top: 28px;
  padding: 17px 36px;
  border: none;
  border-radius: 100px;
  background: var(--brand-gradient);
  color: var(--bg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: box-shadow .25s ease, opacity .2s ease;
}
.form-submit:hover { box-shadow: 0 12px 34px rgba(255, 45, 135, .3); }
.form-submit[disabled] { opacity: .6; cursor: default; box-shadow: none; }

.form-error {
  margin-top: 16px;
  font-size: 14px;
  color: #ff6b6b;
  display: none;
}
.form-error.is-visible { display: block; }

/* Confirmation card */
.confirm-card {
  margin-top: 40px;
  border: 1px solid var(--line-16);
  border-radius: 20px;
  padding: 56px 48px;
  background: var(--card-gradient);
}
.confirm-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
}
.confirm-card__body {
  margin-top: 14px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--fg-75);
  max-width: 520px;
}
.confirm-card__sign {
  margin-top: 26px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--fg-50);
}
[hidden] { display: none !important; }

/* ============================================================
   THE MOVEMENT page
   ============================================================ */
.story { padding: 0 var(--pad-x) 88px; }
.story__col { max-width: 820px; margin: 0 auto; }
.story__p {
  font-size: 21px;
  line-height: 1.7;
  color: var(--fg-82);
}
.story__p + .story__p { margin-top: 28px; }
.story__kicker {
  margin-top: 48px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.25;
}

.beliefs { padding: 72px var(--pad-x); border-top: 1px solid var(--line); }
.beliefs__eyebrow {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: .22em;
  color: var(--pink);
  margin-bottom: 36px;
}
.belief {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr;
  gap: 32px;
  align-items: baseline;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.belief__num { font-family: var(--font-display); font-weight: 800; font-size: 22px; }
.belief__title { font-family: var(--font-display); font-weight: 600; font-size: 24px; line-height: 1.25; }
.belief__body { font-size: 16.5px; line-height: 1.65; color: var(--fg-72); }

.community { position: relative; padding: 88px var(--pad-x); overflow: hidden; }
.community__aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.community__aurora > span { position: absolute; display: block; }
.aurora-1 { bottom: -200px; left: 30%; width: 620px; height: 520px; background: radial-gradient(ellipse 60% 50% at 50% 55%, rgba(255,45,135,.28), transparent 70%); filter: blur(48px); animation: auroraSweep 14s ease-in-out infinite alternate; }
.aurora-2 { bottom: -160px; left: 45%; width: 520px; height: 440px; background: radial-gradient(ellipse 55% 45% at 50% 50%, rgba(168,85,247,.2), transparent 70%); filter: blur(56px); animation: auroraSweep2 18s ease-in-out infinite; }
.aurora-3 { bottom: -220px; right: -120px; width: 560px; height: 560px; background: radial-gradient(circle, rgba(255,45,135,.18), transparent 70%); filter: blur(40px); animation: auroraPulse 13s ease-in-out infinite; }
.aurora-4 { bottom: 80px; right: 6%; width: 420px; height: 380px; background: radial-gradient(ellipse 55% 48% at 50% 50%, rgba(255,45,135,.22), rgba(168,85,247,.12) 55%, transparent 72%); filter: blur(46px); animation: auroraDance 11s ease-in-out infinite; }
.aurora-5 { bottom: -40px; right: 18%; width: 340px; height: 300px; background: radial-gradient(ellipse 55% 45% at 50% 50%, rgba(255,154,61,.14), transparent 70%); filter: blur(50px); animation: auroraDance 16s ease-in-out -6s infinite reverse; }

.community__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.community__title { font-family: var(--font-display); font-weight: 800; font-size: 40px; line-height: 1.15; }
.community__body { margin-top: 20px; font-size: 17px; line-height: 1.65; color: var(--fg-72); }
.community__btns { display: flex; gap: 14px; margin-top: 32px; }
.btn--md-light { padding: 15px 28px; background: var(--fg); color: var(--bg); font-size: 15.5px; }
.btn--md-light:hover { color: var(--bg); transform: translateY(-2px); }
.btn--md-outline { padding: 15px 28px; border: 1px solid rgba(244, 242, 238, .35); color: var(--fg); font-size: 15.5px; }
.btn--md-outline:hover { color: var(--fg); border-color: var(--fg); transform: translateY(-2px); }

@keyframes drift { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes auroraSweep {
  0% { transform: translateX(-40vw) translateY(60px) scaleY(.85) skewX(-14deg); opacity: .55; }
  25% { transform: translateX(-10vw) translateY(-180px) scaleY(1.1) skewX(-4deg); opacity: .95; }
  50% { transform: translateX(15vw) translateY(-340px) scaleY(1.2) skewX(8deg); opacity: .8; }
  75% { transform: translateX(35vw) translateY(-150px) scaleY(1) skewX(-8deg); opacity: 1; }
  100% { transform: translateX(45vw) translateY(40px) scaleY(.9) skewX(-16deg); opacity: .55; }
}
@keyframes auroraSweep2 {
  0% { transform: translateX(30vw) translateY(-260px) scaleY(1.15) skewX(12deg); opacity: .5; }
  33% { transform: translateX(5vw) translateY(-60px) scaleY(.9) skewX(-6deg); opacity: .85; }
  66% { transform: translateX(-20vw) translateY(-320px) scaleY(1.05) skewX(6deg); opacity: .9; }
  100% { transform: translateX(30vw) translateY(-260px) scaleY(1.15) skewX(12deg); opacity: .5; }
}
@keyframes auroraDance {
  0% { transform: translate(0,0) rotate(-8deg) scale(1); opacity: .4; }
  20% { transform: translate(-90px,-280px) rotate(6deg) scale(1.15); opacity: .85; }
  45% { transform: translate(60px,-420px) rotate(-4deg) scale(.95); opacity: .95; }
  70% { transform: translate(-140px,-160px) rotate(10deg) scale(1.2); opacity: .7; }
  100% { transform: translate(0,0) rotate(-8deg) scale(1); opacity: .4; }
}
@keyframes auroraPulse {
  0%, 100% { opacity: .5; transform: translateY(0) scale(1); }
  35% { opacity: .9; transform: translateY(-240px) scale(1.15); }
  65% { opacity: .95; transform: translateY(-380px) translateX(-80px) scale(1.05); }
}

/* ============================================================
   RESPONSIVE — interior additions
   ============================================================ */
@media (max-width: 1024px) {
  .h1--62, .h1--64 { font-size: 52px; }
  .roster-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .h1--62, .h1--64 { font-size: 38px; line-height: 1.1; }
  .hero__lede--interior { font-size: 17px; }

  .card-grid,
  .roster-grid,
  .form-grid,
  .community__grid { grid-template-columns: 1fr; }

  .cta-band,
  .stages-band { flex-direction: column; align-items: flex-start; gap: 24px; }

  .footer--standalone { flex-direction: column; align-items: flex-start; gap: 18px; }

  .belief { grid-template-columns: 1fr; gap: 10px; padding: 26px 0; }

  .community__btns { flex-wrap: wrap; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero__beam, .beam--sm, .beam--left, .beam--movement,
  .marquee__track, .mosaic__col,
  .aurora-1, .aurora-2, .aurora-3, .aurora-4, .aurora-5 { animation: none !important; }
  html { scroll-behavior: auto; }
}
