:root {
  --ink: #070711;
  --surface: #101020;
  --surface-2: #17172c;
  --line: #2b2b47;
  --blue: #3432e6;
  --blue-bright: #6675ff;
  --blue-deep: #1c1ab7;
  --coral: #e85d70;
  --coral-bright: #ff7586;
  --text: #ffffff;
  --muted: #b9b9d0;
  --dim: #82829b;
  --paper: #f5f3ec;
  --font-display: "Google Sans", "Product Sans", system-ui, sans-serif;
  --font-body: "Google Sans", "Product Sans", system-ui, sans-serif;
  --max: 1180px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(52, 50, 230, 0.2), transparent 30rem),
    var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 120;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
}

.skip-link:focus {
  transform: none;
}

.eyebrow {
  margin: 0;
  color: var(--blue-bright);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-wrap: balance;
}

p {
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 4px;
}

.button--primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 14px 34px rgba(232, 93, 112, 0.22);
}

.button--primary:hover {
  background: var(--coral-bright);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.button--secondary:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.1);
}

.button--small {
  min-height: 40px;
  padding-inline: 17px;
  font-size: 0.9rem;
}

.announce {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 38px;
  padding: 8px 18px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  text-align: center;
}

.announce__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral-bright);
  animation: pulse 1.8s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(7, 7, 17, 0.86);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 96px;
  height: auto;
}

.eq {
  display: inline-flex;
  align-items: end;
  gap: 3px;
  height: 27px;
}

.eq span {
  width: 4px;
  border-radius: 99px;
  background: var(--blue-bright);
  transform-origin: bottom;
  animation: eq 1.1s ease-in-out infinite;
}

.eq span:nth-child(1) { height: 10px; }
.eq span:nth-child(2) { height: 23px; background: var(--coral); animation-delay: 110ms; }
.eq span:nth-child(3) { height: 15px; animation-delay: 220ms; }
.eq span:nth-child(4) { height: 26px; animation-delay: 330ms; }
.eq span:nth-child(5) { height: 12px; background: var(--coral); animation-delay: 440ms; }

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.desktop-nav a {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: #fff;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  padding: 0 20px 22px;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
}

.mobile-menu .button {
  margin-top: 16px;
  color: #fff;
}

.hero {
  position: relative;
  min-height: clamp(520px, 72dvh, 700px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(7, 7, 17, 0.96) 0%, rgba(7, 7, 17, 0.75) 43%, rgba(7, 7, 17, 0.22) 100%),
    linear-gradient(0deg, var(--ink) 0%, transparent 38%);
}

.signal-field {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background:
    repeating-radial-gradient(circle at 78% 28%, transparent 0 58px, rgba(255, 255, 255, 0.09) 59px 60px),
    linear-gradient(90deg, rgba(52, 50, 230, 0.16), transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: clamp(68px, 8dvh, 96px) clamp(76px, 9dvh, 108px);
}

.hero h1 {
  max-width: 15ch;
  margin-top: 18px;
  font-size: clamp(3rem, 5.7vw, 5.25rem);
  font-weight: 900;
}

.hero__lead {
  max-width: 58ch;
  margin-top: 16px;
  color: #ececf7;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.stats-band {
  border-bottom: 1px solid var(--line);
  background: var(--blue);
}

.stats-band dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 30px 0;
}

.stats-band div {
  padding-right: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.stats-band div:last-child {
  border-right: 0;
}

.stats-band dt {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stats-band dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.free-band {
  background: var(--blue);
}

.free-band__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-block: 20px;
  text-align: center;
}

.free-band span {
  flex: none;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  padding: 5px 12px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.free-band p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.section {
  padding-block: clamp(61px, 7.65vw, 104px);
  scroll-margin-top: 118px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-head h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4.4vw, 4rem);
  font-weight: 900;
}

.section-head p:not(.eyebrow) {
  max-width: 62ch;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-head--row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: 32px;
  max-width: none;
}

.event-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
}

.section--events {
  padding-bottom: clamp(42px, 4.6vw, 62px);
}

.section--past {
  padding-top: clamp(42px, 4.6vw, 62px);
}

.event-card {
  display: flex;
  min-height: 370px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(52, 50, 230, 0.28), rgba(16, 16, 32, 0.96)),
    var(--surface);
  box-shadow: var(--shadow);
}

.event-card--quiet {
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.event-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: var(--blue-bright);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 800;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding-inline: 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag--coral {
  border-color: transparent;
  background: var(--coral);
  color: #fff;
}

.event-card h3 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 900;
}

.event-card__topic {
  margin-top: 12px;
  color: var(--coral-bright);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
}

.event-card p:not(.event-card__topic) {
  max-width: 56ch;
  margin-top: 18px;
  color: var(--muted);
}

.event-card .button {
  margin-top: auto;
}

.past-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.past-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.past-card img,
.past-card__placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.past-card__placeholder {
  display: grid;
  place-items: center;
  background:
    repeating-radial-gradient(circle at center, transparent 0 36px, rgba(255, 255, 255, 0.08) 37px 38px),
    linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
}

.past-card__body {
  padding: 18px;
}

.past-card__body p {
  color: var(--blue-bright);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.past-card__body h3 {
  margin-top: 8px;
  font-size: 1.25rem;
}

.past-card__body span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  padding-inline: 8px;
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  filter: saturate(0.92) contrast(1.04);
}

.community-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 8vw, 90px);
  align-items: center;
}

.pillars {
  display: grid;
  gap: 12px;
}

.pillar {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 8px 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.pillar:last-child {
  border-bottom: 1px solid var(--line);
}

.pillar span {
  grid-row: span 2;
  color: var(--coral-bright);
  font-family: var(--font-display);
  font-weight: 900;
}

.pillar h3 {
  font-size: 1.5rem;
}

.pillar p {
  max-width: 48ch;
  color: var(--muted);
}

.feature-band {
  position: relative;
  min-height: clamp(500px, 62dvh, 580px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

#comunidad,
#patrocinios {
  padding-bottom: clamp(46px, 5.8vw, 74px);
}

#equipo {
  padding-top: clamp(46px, 5.8vw, 74px);
}

.feature-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(7, 7, 17, 0.96), rgba(7, 7, 17, 0.18) 58%, rgba(7, 7, 17, 0.84)),
    linear-gradient(90deg, rgba(7, 7, 17, 0.92), transparent 72%);
}

.feature-band__content {
  position: relative;
  z-index: 1;
  padding-block: clamp(62px, 7vw, 84px);
}

.feature-band h2 {
  max-width: 14ch;
  margin-top: 12px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 900;
}

.feature-band p:not(.eyebrow) {
  max-width: 56ch;
  margin-top: 18px;
  color: #eeeeff;
  font-size: 1.12rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  padding: 34px 28px 0 0;
  border-top: 2px solid var(--line);
}

.timeline li::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 7px var(--ink);
}

.timeline span {
  color: var(--blue-bright);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.timeline h3 {
  margin-top: 8px;
  font-size: 1.2rem;
}

.timeline p {
  max-width: 24ch;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.section--resources {
  background: var(--surface);
}

.resource-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 14px;
}

.resource-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(180deg, transparent, rgba(7, 7, 17, 0.52)),
    radial-gradient(circle at top right, rgba(102, 117, 255, 0.2), transparent 15rem),
    rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease;
}

.resource-card:hover {
  transform: translateY(-3px);
  border-color: rgba(102, 117, 255, 0.72);
}

.resource-card span {
  color: var(--coral-bright);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.resource-card h3 {
  max-width: 15ch;
  margin-top: 12px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.resource-card p {
  margin-top: 12px;
  color: var(--muted);
}

.participate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.participate-panel {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.participate-panel--blue {
  background:
    repeating-radial-gradient(circle at 80% 20%, transparent 0 50px, rgba(255, 255, 255, 0.08) 51px 52px),
    linear-gradient(135deg, var(--blue), var(--blue-deep));
  border-color: transparent;
}

.participate-panel h2 {
  max-width: 14ch;
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
}

.participate-panel p:not(.eyebrow) {
  max-width: 48ch;
  margin-top: 18px;
  color: var(--muted);
}

.participate-panel--blue p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
}

.participate-panel .button {
  margin-top: auto;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.benefit {
  min-height: 250px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit span {
  color: var(--coral-bright);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.benefit h3 {
  margin-top: 36px;
  font-size: 1.3rem;
}

.benefit p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.96rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.team-member {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.team-member:hover {
  transform: translateY(-3px);
  border-color: rgba(102, 117, 255, 0.58);
  background: rgba(255, 255, 255, 0.06);
}

.team-member img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 22%;
  border-bottom: 1px solid var(--line);
  filter: saturate(0.92) contrast(1.02);
}

.team-member__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.team-member__role {
  color: var(--coral-bright);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-member h3 {
  margin-top: 10px;
  font-size: 1.24rem;
}

.team-member__meta {
  margin-top: 10px;
  color: #eeeeff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.team-member__bio {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.team-member__link {
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue-bright);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 900;
}

.team-member__link::after {
  content: " ->";
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 50px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 24px 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--coral-bright);
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 62ch;
  padding-bottom: 24px;
  color: var(--muted);
}

.final-cta {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.final-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 26, 183, 0.94), rgba(7, 7, 17, 0.78)),
    radial-gradient(circle at 72% 48%, rgba(232, 93, 112, 0.34), transparent 22rem);
}

.final-cta__content {
  position: relative;
  z-index: 1;
  padding-block: 86px;
}

.final-cta h2 {
  max-width: 13ch;
  margin-top: 14px;
  font-size: clamp(2.4rem, 5.4vw, 5.6rem);
  font-weight: 900;
}

.final-cta p:not(.eyebrow) {
  max-width: 54ch;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.signup-form {
  max-width: 660px;
  margin-top: 34px;
}

.signup-form label {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
}

.signup-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.signup-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(7, 7, 17, 0.54);
  color: #fff;
  padding: 0 20px;
}

.signup-form input::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.form-note {
  min-height: 26px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.form-note.is-error {
  color: #fff;
  font-weight: 800;
}

.form-note.is-success {
  color: #fff;
  font-weight: 800;
}

.footer {
  padding-block: 58px 28px;
  border-top: 1px solid var(--line);
  background: #080812;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(2, minmax(160px, 0.55fr));
  gap: 36px;
}

.footer-brand img {
  width: 86px;
}

.footer p {
  max-width: 36ch;
  margin-top: 16px;
  color: var(--muted);
}

.footer h2 {
  margin-bottom: 12px;
  color: var(--dim);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer nav a {
  display: block;
  padding-block: 5px;
  color: var(--muted);
}

.footer nav a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes eq {
  0%, 100% { transform: scaleY(0.36); }
  50% { transform: scaleY(1); }
}

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

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-menu.is-open {
    display: block;
  }

  .header-grid {
    grid-template-columns: auto 1fr auto;
  }

  .event-grid,
  .community-layout,
  .participate-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .past-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-grid,
  .section-head--row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 740px) {
  .announce {
    display: none;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: 600px;
  }

  .hero__content {
    padding-block: 64px 72px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.35rem);
  }

  .stats-band dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-band div:nth-child(2) {
    border-right: 0;
  }

  .free-band__inner {
    display: grid;
  }

  .event-card {
    min-height: 340px;
    border-radius: 18px;
  }

  .past-grid,
  .team-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .gallery-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-band,
  .final-cta {
    min-height: 520px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .timeline li {
    border-top: 0;
    border-left: 2px solid var(--line);
    padding: 0 0 0 24px;
  }

  .timeline li::before {
    top: 2px;
    left: -8px;
  }

  .signup-form__row {
    grid-template-columns: 1fr;
  }

  .signup-form input,
  .signup-form .button {
    border-radius: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}

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

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