/* INVADERZ — Paleta logo (verde lima + teal + azul). Fuentes: display = títulos/CTAs, body = texto. */

:root {
  /* Base: azul del logo (#2B3B52) — fondos azulados en lugar de negro/gris */
  --bg-dark: #0c1016;
  --bg-dark-top: #0a0e14;
  --bg-dark-bottom: #0e131a;
  --bg-card: #111820;
  --bg-card-alt: #0f151c;
  --bg-elevated: #161d26;
  --bg-elevated-hover: #1a2230;
  --text: #e8ecf0;
  --text-muted: #8b96a3;
  --accent: #66FF66;
  --accent-dim: #5FDD5F;
  --accent-soft: rgba(102, 255, 102, 0.08);
  --teal: #2A6F60;
  --blue: #2B3B52;
  --blue-soft: rgba(43, 59, 82, 0.35);
  --blue-tint: rgba(43, 59, 82, 0.15);
  --border: rgba(43, 59, 82, 0.4);
  --border-strong: rgba(102, 255, 102, 0.12);
  --font-display: 'DynaPuff', cursive;
  --font-body: 'Outfit', sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --radius: 12px;
  --radius-lg: 16px;
  --transition: 0.2s ease;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-dark-top) 0%, var(--bg-dark) 40%, var(--bg-dark-bottom) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition), outline-color var(--transition);
}
a:hover {
  color: var(--accent-dim);
}
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Bootstrap Icons: tamaño y espaciado cuando van con texto */
.bi {
  display: inline-block;
  vertical-align: -0.15em;
}
.btn .bi {
  font-size: 1.1em;
  margin-right: 0.4em;
}
.btn .bi:last-child {
  margin-right: 0;
  margin-left: 0.4em;
}
.section__title .bi {
  margin-right: 0.35rem;
  opacity: 0.9;
}
.footer__link .bi {
  margin-right: 0.35rem;
}
.roadmap__icon .bi {
  font-size: 1rem;
}
.metric .bi {
  display: block;
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
  opacity: 0.9;
}

.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;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: 640px;
}

.section {
  padding: var(--space-2xl) 0;
}

.section--dark {
  background: linear-gradient(180deg, var(--bg-card-alt) 0%, var(--bg-dark) 100%);
}

.section--alt {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--blue-tint) 50%, var(--bg-card-alt) 100%);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.section__title--small {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.section__subtitle {
  font-family: var(--font-body);
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  font-size: 1rem;
}

.section__lead {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 auto;
}

.section__lead.text--narrative {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text);
}

.section__cta {
  margin-top: var(--space-xl);
  text-align: center;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  background: rgba(12, 16, 22, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
  transition: transform var(--transition), filter var(--transition);
}
.nav__logo:hover .nav__logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 0 8px rgba(102, 255, 102, 0.25));
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text);
}
.nav__toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: var(--transition);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav__links {
  display: none;
  list-style: none;
  gap: var(--space-md);
}
.nav__links.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.nav__links a {
  font-family: var(--font-body);
  color: var(--text);
  padding: var(--space-xs) 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav__links a:hover {
  color: var(--accent);
  text-shadow: 0 0 12px rgba(102, 255, 102, 0.4), 0 0 24px rgba(42, 111, 96, 0.2);
}
.nav__links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
}
.nav__lang-btn {
  font-family: var(--font-body);
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 8px 10px;
  min-height: 44px;
  min-width: 44px;
  transition: color var(--transition);
  border-radius: var(--radius);
}
.nav__lang-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.nav__lang-btn:hover,
.nav__lang-btn.is-active {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(102, 255, 102, 0.35);
}
.nav__lang-sep {
  color: var(--text-muted);
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }
  .nav__links {
    display: flex;
    flex-direction: row;
    position: static;
    padding: 0;
    background: transparent;
    border: none;
  }
  .nav__links a {
    padding: var(--space-xs) var(--space-sm);
  }
  .nav__lang {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    margin-left: var(--space-sm);
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(80px + var(--space-xl)) var(--space-md) var(--space-xl);
  position: relative;
}

/* Luz bajo el navbar que ilumina el texto principal del hero */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 75%;
  contain: paint;
  background: linear-gradient(180deg, rgba(102, 255, 102, 0.6) 0%, rgba(102, 255, 102, 0.24) 20%, rgba(42, 111, 96, 0.18) 45%, rgba(42, 111, 96, 0.08) 65%, transparent 100%);
  pointer-events: none;
  z-index: 0;
  animation: abduction-glow 4s ease-in-out infinite 0.5s;
}

/* Bloom ambiental del hero en azul del logo (#2B3B52). Luces (conos ::before y ::after) siguen en verde/teal. */
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(43, 59, 82, 0.12) 0%, rgba(43, 59, 82, 0.05) 30%, transparent 55%);
  animation: abduction-glow 4s ease-in-out infinite;
}
.hero__bg::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 80%;
  height: 85%;
  transform: translateX(-50%);
  contain: paint;
  background: linear-gradient(180deg, rgba(102, 255, 102, 0.78) 0%, rgba(42, 111, 96, 0.42) 35%, transparent 65%);
  clip-path: polygon(30% 0, 70% 0, 55% 100%, 45% 100%);
  animation: abduction-glow 4s ease-in-out infinite 0.3s;
}
.hero__bg::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 50%;
  height: 75%;
  transform: translateX(-50%);
  contain: paint;
  background: linear-gradient(180deg, rgba(42, 111, 96, 0.6) 0%, transparent 50%);
  clip-path: polygon(38% 0, 62% 0, 52% 100%, 48% 100%);
  animation: abduction-glow 4s ease-in-out infinite 1s;
}

@keyframes abduction-glow {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--text);
  -webkit-text-stroke: 2.5px #3d5270;
  paint-order: stroke fill;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 32ch;
  margin: 0 auto var(--space-lg);
}

.hero .btn--secondary {
  margin-bottom: var(--space-xl);
}

.hero__visual {
  margin-top: var(--space-lg);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__visual::before {
  content: '';
  position: absolute;
  width: 120%;
  max-width: 420px;
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle at center,
    rgba(102, 255, 102, 0.66) 0%,
    rgba(102, 255, 102, 0.24) 30%,
    rgba(42, 111, 96, 0.18) 50%,
    transparent 75%
  );
  border-radius: 50%;
  animation: logo-halo-breathe-1 5.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero__visual::after {
  content: '';
  position: absolute;
  width: 140%;
  max-width: 480px;
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle at center,
    transparent 0%,
    rgba(102, 255, 102, 0.18) 40%,
    rgba(42, 111, 96, 0.12) 65%,
    transparent 85%
  );
  border-radius: 50%;
  animation: logo-halo-breathe-2 6s ease-in-out infinite 0.8s;
  pointer-events: none;
  z-index: 0;
}

.hero__logo-main {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 0 20px rgba(102, 255, 102, 0.9))
    drop-shadow(0 0 36px rgba(102, 255, 102, 0.45))
    drop-shadow(0 0 48px rgba(42, 111, 96, 0.3))
    drop-shadow(0 4px 20px rgba(0, 0, 0, 0.35));
  animation: logo-float 5s ease-in-out infinite, logo-glow-breathe 5s ease-in-out infinite;
}

/* Respiración irregular — aureolas que parpadean lento, no simétrico */
@keyframes logo-halo-breathe-1 {
  0%, 100% { transform: translate(-50%, -50%) scale(0.88); opacity: 0.45; }
  22% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.9; }
  45% { transform: translate(-50%, -50%) scale(1.14); opacity: 1; }
  62% { transform: translate(-50%, -50%) scale(1.02); opacity: 0.65; }
  78% { transform: translate(-50%, -50%) scale(0.92); opacity: 0.5; }
}

@keyframes logo-halo-breathe-2 {
  0%, 100% { transform: translate(-50%, -50%) scale(0.92); opacity: 0.3; }
  30% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.7; }
  55% { transform: translate(-50%, -50%) scale(1.06); opacity: 0.5; }
  75% { transform: translate(-50%, -50%) scale(1.12); opacity: 0.85; }
}

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

@keyframes logo-glow-breathe {
  0%, 100% { opacity: 0.88; }
  20% { opacity: 0.96; }
  45% { opacity: 1; }
  70% { opacity: 0.92; }
  85% { opacity: 0.94; }
}

.hero__scroll-hint {
  font-family: var(--font-body);
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--text-muted);
  font-size: 0.8rem;
}

.hero__scroll-line {
  width: 2px;
  height: 24px;
  background: var(--text-muted);
  border-radius: 2px;
  opacity: 0.6;
}

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
  padding: 0.875rem 1.75rem;
  min-height: 48px;
  min-width: 44px;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg-dark);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--accent-dim);
  color: #fff;
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
}
.btn--secondary:hover,
.btn--secondary:focus-visible {
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.chars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

@media (min-width: 600px) {
  .chars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .chars-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.char-card {
  position: relative;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.char-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 75%;
  background: linear-gradient(180deg, rgba(102, 255, 102, 0.6) 0%, rgba(42, 111, 96, 0.3) 25%, transparent 65%);
  pointer-events: none;
  border-radius: var(--radius-lg);
  z-index: 0;
  transition: background 0.35s ease, opacity 0.35s ease;
}
.char-card:hover {
  transform: translateY(-3px);
  background: var(--bg-elevated-hover);
  border-color: var(--border-strong);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 0 36px rgba(102, 255, 102, 0.75), 0 0 64px rgba(42, 111, 96, 0.4);
}
.char-card:hover::before {
  background: linear-gradient(180deg, rgba(102, 255, 102, 1) 0%, rgba(102, 255, 102, 0.66) 20%, rgba(42, 111, 96, 0.48) 45%, transparent 70%);
}
.char-card:focus-within {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 2px var(--bg-elevated), 0 0 12px rgba(102, 255, 102, 0.06);
}

.char-card__img {
  position: relative;
  z-index: 1;
  aspect-ratio: 1;
  overflow: hidden;
}
.char-card__name,
.char-card__desc {
  position: relative;
  z-index: 1;
}

.char-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--blue-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.char-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.char-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: var(--space-sm) var(--space-md) 0;
  color: var(--text);
}

.char-card__desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: var(--space-xs) var(--space-md) var(--space-md);
}

.roadmap {
  list-style: none;
  margin-top: var(--space-lg);
}

.roadmap__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background var(--transition), box-shadow var(--transition);
}
.roadmap__item:hover {
  background: linear-gradient(90deg, transparent 0%, rgba(102, 255, 102, 0.18) 30%, rgba(42, 111, 96, 0.12) 70%, transparent 100%);
  box-shadow: inset 0 0 30px rgba(102, 255, 102, 0.18);
}
.roadmap__item:last-child {
  border-bottom: none;
}

.roadmap__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 50%;
  font-size: 0.9rem;
}

.roadmap__item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.roadmap__item strong {
  font-family: var(--font-display);
  color: var(--text);
  font-size: 1rem;
}
.roadmap__item span {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.transmisiones-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

@media (min-width: 700px) {
  .transmisiones-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trans-card {
  position: relative;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.trans-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(180deg, rgba(102, 255, 102, 0.6) 0%, rgba(42, 111, 96, 0.3) 25%, transparent 60%);
  pointer-events: none;
  border-radius: var(--radius-lg);
  z-index: 0;
  transition: background 0.35s ease, opacity 0.35s ease;
}
.trans-card:hover {
  transform: translateY(-2px);
  background: var(--bg-elevated-hover);
  border-color: var(--border-strong);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 0 36px rgba(102, 255, 102, 0.75), 0 0 64px rgba(42, 111, 96, 0.4);
}
.trans-card:hover::before {
  background: linear-gradient(180deg, rgba(102, 255, 102, 1) 0%, rgba(102, 255, 102, 0.66) 20%, rgba(42, 111, 96, 0.48) 45%, transparent 70%);
}
.trans-card:focus-within {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 2px var(--bg-elevated), 0 0 12px rgba(102, 255, 102, 0.06);
}

.trans-card__img {
  position: relative;
  z-index: 1;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.trans-card__title,
.trans-card__excerpt {
  position: relative;
  z-index: 1;
}

.trans-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--blue-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-align: center;
  padding: var(--space-sm);
}

.trans-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trans-card__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  padding: var(--space-sm) var(--space-md) 0;
  color: var(--text);
}

.trans-card__excerpt {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: var(--space-xs) var(--space-md) var(--space-md);
  line-height: 1.5;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.metric {
  text-align: center;
}

.metric__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
}

.metric__label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.section--cta {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--blue-tint) 50%, var(--bg-dark) 100%);
  padding: var(--space-2xl) 0;
}

.form-capture {
  margin-top: var(--space-lg);
}

.form-capture__row {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .form-capture__row {
    flex-direction: row;
    max-width: 100%;
  }
  .form-capture__input {
    flex: 1;
  }
}

.form-capture__input {
  padding: var(--space-sm) var(--space-md);
  min-height: 48px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-elevated);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.form-capture__input::placeholder {
  color: var(--text-muted);
}
.form-capture__input:focus {
  outline: none;
  border-color: rgba(102, 255, 102, 0.6);
}
.form-capture__input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.form-capture__btn {
  flex-shrink: 0;
}

.form-capture__hint {
  font-family: var(--font-body);
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.faq {
  margin-top: var(--space-lg);
}

.faq__item {
  border-bottom: 1px solid var(--border);
  padding: var(--space-md) 0;
}
.faq__item:first-child {
  padding-top: 0;
}

.faq__question {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}
.faq__question:hover {
  color: var(--accent);
  text-shadow: 0 0 12px rgba(102, 255, 102, 0.35), 0 0 20px rgba(42, 111, 96, 0.15);
}
.faq__question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}
.faq__item.is-open .faq__question::after {
  content: '−';
}

.faq__answer {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  padding-top: var(--space-sm);
  line-height: 1.6;
}

.footer {
  padding: var(--space-xl) var(--space-md);
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-bottom) 100%);
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-md);
}

.footer__link {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: var(--space-xs) var(--space-sm);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}
.footer__link:hover {
  color: var(--accent);
  text-shadow: 0 0 12px rgba(102, 255, 102, 0.4), 0 0 24px rgba(42, 111, 96, 0.2);
}
.footer__link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius);
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

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