/* ============================================
   AMAZÔNIA SAÚDE 360° — DESIGN SYSTEM v2
   Inspired by Empreende Brazil's brand piece
   Sans-serif (Montserrat) · Verde + Creme · Dark/Light
   ============================================ */

:root,
body.theme-dark {
  /* DARK (default) — Proposta C: Maximalismo verde */
  --bg: #08120c;
  --bg-elev: #0f1f15;
  --bg-deep: #050a07;
  --bg-dark: #050a07;

  --fg: #f3ead4;
  --fg-mute: #b5c8bb;
  --fg-dim: #6a7d72;

  --green: #2da856;
  --green-deep: #14502a;
  --green-bright: #4ecf78;
  --green-glow: #6dff9b;
  --green-soft: #1f4d2d;
  --green-tint: rgba(78, 207, 120, 0.10);

  --gold: #d4a84b;
  --gold-deep: #8b6e2c;

  --line: rgba(243, 234, 212, 0.10);
  --line-strong: rgba(243, 234, 212, 0.22);

  --paper: #08120c;
  --ink: #f3ead4;

  --display: 'Montserrat', -apple-system, system-ui, sans-serif;
  --sans: 'Inter', -apple-system, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, Consolas, monospace;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --container: 1320px;
  --container-pad: clamp(20px, 4vw, 56px);

  --shadow-sm: 0 2px 8px rgba(14, 42, 28, 0.06);
  --shadow-md: 0 8px 32px rgba(14, 42, 28, 0.08);
  --shadow-lg: 0 24px 60px rgba(14, 42, 28, 0.14);
}

body.theme-light {
  --bg: #faf8f1;
  --bg-elev: #ffffff;
  --bg-deep: #f0ebde;
  --bg-dark: #0e2a1c;

  --fg: #0e2a1c;
  --fg-mute: #4a5a4f;
  --fg-dim: #8a958e;

  --green: #1f7a3a;
  --green-deep: #14502a;
  --green-bright: #2da856;
  --green-glow: #1f7a3a;
  --green-soft: #c9e0d0;
  --green-tint: #e9f3ec;

  --gold: #c8a14e;
  --gold-deep: #8b6e2c;

  --line: rgba(14, 42, 28, 0.10);
  --line-strong: rgba(14, 42, 28, 0.22);

  --paper: #faf8f1;
  --ink: #0e2a1c;

  --shadow-sm: 0 2px 8px rgba(14, 42, 28, 0.06);
  --shadow-md: 0 8px 32px rgba(14, 42, 28, 0.08);
  --shadow-lg: 0 24px 60px rgba(14, 42, 28, 0.14);
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background-color 0.3s, color 0.3s;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
}

.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.h1, .h2, .h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.h1 { font-size: clamp(48px, 7.5vw, 104px); line-height: 1; }
.h2 { font-size: clamp(36px, 5vw, 72px); line-height: 1.05; }
.h3 { font-size: clamp(24px, 3vw, 40px); line-height: 1.1; }

.h1 .accent, .h2 .accent { color: var(--green); }
.h1 .deg, .h2 .deg {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--green);
  font-weight: 600;
  margin-left: 4px;
}

.lead {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--fg-mute);
  max-width: 62ch;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: color-mix(in srgb, var(--bg) 75%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
}
.nav-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  object-fit: cover;
}
.nav-brand .nav-brand-name { line-height: 1.1; }
.nav-brand .nav-brand-name strong { color: var(--green); display: block; font-weight: 700; }
.nav-brand .nav-brand-name small { font-weight: 500; color: var(--fg-mute); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-mute);
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 2px;
  background: var(--green);
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 11px 22px;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--green-deep); transform: translateY(-1px); }

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--fg);
  transition: all 0.2s;
}
.theme-toggle:hover { border-color: var(--green); color: var(--green); }
.theme-toggle .sun { display: none; }
.theme-toggle .moon { display: block; }
body.theme-dark .theme-toggle .sun { display: block; }
body.theme-dark .theme-toggle .moon { display: none; }

/* Hamburger toggle — visible only on narrow viewports */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  place-items: center;
  background: transparent;
  color: var(--fg);
  transition: border-color 0.2s, color 0.2s;
}
.nav-toggle:hover { border-color: var(--green); color: var(--green); }
.nav-toggle .bars { display: grid; gap: 4px; }
.nav-toggle .bar {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s;
}
body.nav-open .nav-toggle .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle .bar:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: grid; }
  .nav-links {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: var(--bg);
    z-index: 99;
    padding: 96px var(--container-pad) 56px;
    overflow-y: auto;
    font-size: 22px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  body.nav-open .nav-links { transform: translateY(0); }
  body.nav-open { overflow: hidden; }
  .nav-links a {
    width: 100%;
    max-width: 420px;
    text-align: center;
    padding: 16px 24px;
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--fg);
    border-bottom: 1px solid var(--line);
  }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { color: var(--green); }
}

@media (max-width: 600px) {
  .nav { padding: 10px var(--container-pad); }
  .nav-brand img { width: 36px; height: 36px; }
  .nav-brand .nav-brand-name strong { font-size: 13px; }
  .nav-brand .nav-brand-name small { font-size: 9px; }
  .nav-cta { padding: 9px 16px; font-size: 11px; }
  .hero { padding-top: 100px; padding-bottom: 56px; }
  .hero-foliage { display: none; }
  .scroll-cue { display: none; }
  section { padding: clamp(64px, 12vw, 100px) 0; }
  .countdown { padding: 18px 12px; gap: 8px; }
  .cd-sep { font-size: 22px; }
  .cd-unit { min-width: 44px; }
  .day-num { font-size: 64px; }
  .ticket-card.featured { transform: none; }
  .footer { padding: 64px 0 32px; }
  .footer-top { padding-bottom: 40px; gap: 32px; }
}

@media (max-width: 420px) {
  .nav-brand .nav-brand-name { display: none; }
  .speakers-filter { gap: 6px; }
  .filter-chip { padding: 8px 14px; font-size: 11px; }
}

/* Respect users who prefer reduced motion */
@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;
  }
  .particles { display: none; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover { background: var(--green-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost {
  border-color: var(--line-strong);
  color: var(--fg);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-light {
  background: var(--bg-elev);
  color: var(--fg);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover { background: var(--green-tint); }
.btn .arrow { transition: transform 0.25s; display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* Botão com tinta espalhando — sobrescreve .btn-primary acima */
.btn-primary {
  background: var(--green);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--ink-x, 50%) var(--ink-y, 50%), var(--green-bright) 0%, var(--green-bright) 30%, transparent 70%);
  transform: scale(0);
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: -1;
}
.btn-primary:hover::before { transform: scale(2.5); }
.btn-primary:hover { color: #fff; box-shadow: 0 8px 32px rgba(78, 207, 120, 0.4); }

/* ============================================
   HERO — Proposta C: maximalismo verde
   moiré + ruído + glitch + ink spread
   ============================================ */
.hero {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
}

/* Moiré orgânico animado */
.hero-moire {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
  mix-blend-mode: screen;
  animation: none;
}
body.theme-light .hero-moire { opacity: 0.22; mix-blend-mode: multiply; }
@keyframes moire-drift {
  0%   { transform: translate3d(-2%, 0, 0) rotate(0deg) scale(1); }
  50%  { transform: translate3d(3%, -2%, 0) rotate(2deg) scale(1.04); }
  100% { transform: translate3d(-1%, 1%, 0) rotate(-1.5deg) scale(1.02); }
}
.hero-moire .wave {
  animation: none;
  transform-origin: 50% 50%;
}
.hero-moire .wave-2 { animation: none; }
.hero-moire .wave-3 { animation: none; }
@keyframes wave-drift {
  0%   { transform: translateX(0) rotate(0deg); }
  100% { transform: translateX(-12%) rotate(360deg); }
}

/* Ruído procedural (grão de filme) */
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.38;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.7 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  animation: none;
  opacity: 0.04;
}
body.theme-light .hero-noise { opacity: 0.18; mix-blend-mode: multiply; }
@keyframes noise-shift {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-8%, 5%); }
  40%  { transform: translate(6%, -3%); }
  60%  { transform: translate(-4%, -6%); }
  80%  { transform: translate(7%, 4%); }
  100% { transform: translate(0, 0); }
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
body.theme-light .hero-bg {
  background:
    radial-gradient(ellipse at 85% 15%, rgba(45, 168, 86, 0.12), transparent 50%),
    radial-gradient(ellipse at 5% 90%, rgba(200, 161, 78, 0.06), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}
body.theme-dark .hero-bg {
  background:
    radial-gradient(ellipse at 85% 15%, rgba(45, 168, 86, 0.18), transparent 55%),
    radial-gradient(ellipse at 5% 90%, rgba(212, 168, 75, 0.08), transparent 50%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 60%);
}

.hero-foliage {
  position: absolute;
  pointer-events: none;
  opacity: 0.7;
}
body.theme-dark .hero-foliage { opacity: 0.45; }
.hero-foliage.tr { top: -40px; right: -60px; width: 380px; transform: rotate(15deg); }
.hero-foliage.bl { bottom: -80px; left: -80px; width: 420px; transform: rotate(-165deg); }

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: var(--green-tint);
  border: 1px solid var(--green-soft);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 32px;
}
body.theme-dark .hero-meta { background: var(--green-tint); color: var(--green-bright); border-color: var(--green-soft); }
.hero-meta .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title-eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(38px, 5.6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  color: var(--fg);
  position: relative;
  text-wrap: balance;
}
.hero-title .line { display: block; position: relative; }
.hero-title .line-2 { color: var(--fg); }
.hero-title .accent-word {
  color: var(--green-bright);
  position: relative;
  display: inline-block;
}
/* Glitch print riso — sombra verde 1px atrás */
.hero-title .glitch {
  position: relative;
  display: inline-block;
  text-shadow:
    1px 0 0 rgba(110, 255, 155, 0.5),
    -1px 0 0 rgba(45, 168, 86, 0.35);
  animation: none;
}
body.theme-light .hero-title .glitch {
  text-shadow:
    1px 0 0 rgba(31, 122, 58, 0.45),
    -1px 0 0 rgba(200, 161, 78, 0.25);
}
@keyframes glitch-shift {
  0%, 92%, 100% { transform: translate(0, 0); }
  93%   { transform: translate(-2px, 1px); }
  94%   { transform: translate(2px, -1px); }
  95%   { transform: translate(-1px, 0); }
  96%   { transform: translate(0, 0); }
}
.hero-title .deg {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--green-bright);
  font-weight: 700;
  margin-left: 4px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  margin-top: 48px;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero-lede {
  max-width: 56ch;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--fg-mute);
}
.hero-lede strong { color: var(--fg); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* Countdown */
.countdown {
  display: flex;
  gap: 14px;
  padding: 24px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.cd-unit { text-align: center; min-width: 56px; flex: 1; }
.cd-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}
.cd-label {
  font-family: var(--display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-top: 8px;
}
.cd-sep {
  font-family: var(--display);
  font-weight: 700;
  font-size: 32px;
  color: var(--line-strong);
  align-self: center;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.scroll-cue::after {
  content: '';
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--green), transparent);
  animation: drip 2.4s infinite;
}
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   FEATURE STRIP (4 pillars from official piece)
   ============================================ */
.features {
  background: var(--bg-elev);
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 880px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature-ico {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-tint);
  border: 1px solid var(--green-soft);
  display: grid;
  place-items: center;
  color: var(--green);
  flex-shrink: 0;
}
.feature h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin: 4px 0 6px;
}
.feature p {
  font-size: 14px;
  color: var(--fg-mute);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}
@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================
   ABOUT / 360°
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: repeat(2, 1fr); } }
.about-card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-elev);
  transition: all 0.3s;
}
.about-card:hover {
  border-color: var(--green-soft);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.about-card .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: var(--green);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.about-card .num small { font-size: 0.4em; color: var(--fg-mute); font-weight: 600; }
.about-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 8px;
}
.about-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-mute);
  margin: 0;
}

.about-visual {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  margin-top: 80px;
  align-items: center;
}
@media (max-width: 880px) { .about-visual { grid-template-columns: 1fr; } }
.about-pillars {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
}
.about-pillars li {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 24px;
  background: var(--bg-elev);
  font-size: 16px;
  transition: all 0.3s;
}
.about-pillars li:hover { background: var(--green-tint); }
.about-pillars li .pno {
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  color: var(--green);
  letter-spacing: 0.1em;
}
.about-pillars li .ptitle {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  color: var(--fg);
}
.about-pillars li .pmeta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
}

.circle-360 {
  aspect-ratio: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle-360 svg { width: 100%; height: 100%; }
.circle-360-center {
  position: absolute;
  text-align: center;
  font-family: var(--display);
}
.circle-360-center .big {
  font-weight: 700;
  font-size: clamp(80px, 12vw, 140px);
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.04em;
}
.circle-360-center .label {
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-top: 8px;
}

/* ============================================
   PROGRAMA — 3 DIAS
   ============================================ */
.program {
  background: var(--bg-deep);
}
.program-days {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .program-days { grid-template-columns: 1fr; } }
.day-card {
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-elev);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.day-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.day-card:hover::before { transform: scaleX(1); }
.day-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.day-date {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--green);
  text-transform: uppercase;
}
.day-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 84px;
  line-height: 1;
  color: var(--fg);
  margin: 16px 0 24px;
  letter-spacing: -0.04em;
}
.day-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--green);
}
.day-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.day-card ul li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  font-size: 14px;
  color: var(--fg-mute);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  line-height: 1.4;
}
.day-card ul li:last-child { border-bottom: 0; padding-bottom: 0; }
.day-card ul li time {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ============================================
   PALESTRANTES (carrossel + filtros)
   ============================================ */
.speakers { background: var(--bg); overflow: hidden; }
.speakers-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 32px 0 16px;
  padding: 0 var(--container-pad);
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.filter-chip {
  padding: 9px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-mute);
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
}
.filter-chip:hover { border-color: var(--green); color: var(--green); }
.filter-chip.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.speakers-track {
  display: flex;
  gap: 24px;
  padding: 16px var(--container-pad) 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--green) transparent;
}
.speakers-track::-webkit-scrollbar { height: 4px; }
.speakers-track::-webkit-scrollbar-thumb { background: var(--green); border-radius: 2px; }
.speaker-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  position: relative;
  cursor: pointer;
}
.speaker-photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background:
    linear-gradient(180deg, transparent 50%, rgba(14,42,28,0.85)),
    linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  transition: transform 0.4s ease;
  box-shadow: var(--shadow-sm);
}
.speaker-photo svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.speaker-card:hover .speaker-photo { transform: scale(1.02); box-shadow: var(--shadow-md); }
.speaker-photo .placeholder-init {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-weight: 700;
  font-size: 60px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1;
  letter-spacing: -0.03em;
}
.speaker-tag {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 1;
}
.speaker-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 4px;
  color: var(--fg);
  line-height: 1.2;
}
.speaker-role {
  font-size: 13px;
  color: var(--fg-mute);
  line-height: 1.3;
}

.speakers-controls {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding: 0 var(--container-pad);
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}
.speakers-controls button.arr {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  transition: all 0.25s;
  color: var(--fg);
  background: var(--bg-elev);
}
.speakers-controls button.arr:hover { background: var(--green); color: #fff; border-color: var(--green); }

/* ============================================
   VIDEO SHOWCASE — Reviva 2025
   ============================================ */
.video-showcase {
  background: var(--bg-deep);
  padding: clamp(80px, 10vw, 120px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  isolation: isolate;
}
.video-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 18, 12, 0.7) 100%);
  pointer-events: none;
  z-index: 1;
}
.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.video-frame video,
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 3;
  background: #000;
}
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  color: var(--green-deep);
  border-radius: 999px;
  padding: 18px 28px 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.video-play:hover {
  background: var(--green);
  color: #fff;
  transform: translate(-50%, -50%) scale(1.06);
}
.video-play-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.25s;
}
.video-play:hover .video-play-icon { background: #fff; color: var(--green); }
.video-play-icon svg { transform: translateX(2px); }
.video-play::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  background: rgba(78, 207, 120, 0.35);
  z-index: -1;
  animation: video-pulse 2.4s infinite;
}
@keyframes video-pulse {
  0%   { transform: scale(0.9); opacity: 0.7; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(0.9); opacity: 0; }
}
.video-meta {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  z-index: 2;
  color: #fff;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.video-stats {
  display: flex;
  gap: 32px;
  font-family: var(--display);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.video-stats div { display: flex; flex-direction: column; gap: 2px; }
.video-stats strong { color: #fff; font-weight: 800; font-size: 22px; line-height: 1; }
.video-stats span { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; }
.video-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}
@media (max-width: 600px) {
  .video-stats { font-size: 12px; gap: 18px; }
  .video-stats strong { font-size: 18px; }
  .video-meta { bottom: 18px; left: 18px; right: 18px; gap: 12px; }
  .video-play { padding: 14px 22px 14px 18px; font-size: 12px; gap: 10px; }
  .video-play-icon { width: 26px; height: 26px; }
  .video-tag { font-size: 9px; padding: 6px 10px; }
}

/* ============================================
   EDIÇÕES ANTERIORES
   ============================================ */
.editions { background: var(--bg-elev); }
.editions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 880px) { .editions-grid { grid-template-columns: 1fr; } }
.edition-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-deep);
  border: 1px solid var(--line);
  transition: all 0.3s;
  cursor: pointer;
}
.edition-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.edition-image {
  aspect-ratio: 4/3;
  background:
    linear-gradient(180deg, transparent 50%, rgba(14, 42, 28, 0.7)),
    linear-gradient(135deg, var(--green-deep), var(--green));
  position: relative;
  display: flex;
  align-items: end;
  padding: 24px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.edition-image > svg.edition-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.85;
}
.edition-image .year { position: relative; z-index: 1; }
.edition-image .year {
  font-family: var(--display);
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.edition-info {
  padding: 28px;
}
.edition-info h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 8px;
}
.edition-info p {
  font-size: 14px;
  color: var(--fg-mute);
  line-height: 1.5;
  margin: 0 0 20px;
}
.edition-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.edition-stat .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  color: var(--green);
  line-height: 1;
}
.edition-stat .lbl {
  font-size: 11px;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
  font-weight: 600;
}

/* ============================================
   INGRESSOS
   ============================================ */
.tickets { background: var(--bg-deep); }
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 880px) { .tickets-grid { grid-template-columns: 1fr; } }
.ticket-card {
  padding: 36px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-elev);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
}
.ticket-card.featured {
  border: 2px solid var(--green);
  background: var(--bg-elev);
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}
.ticket-card.featured::before {
  content: 'MAIS POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.ticket-tier {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
}
.ticket-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 30px;
  margin: 12px 0 8px;
  line-height: 1.1;
}
.ticket-tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-dim);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.ticket-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.ticket-price .currency { font-size: 16px; color: var(--fg-mute); font-weight: 600; }
.ticket-price .value {
  font-family: var(--display);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: var(--fg);
  letter-spacing: -0.04em;
}
.ticket-price-note {
  font-size: 12px;
  color: var(--fg-dim);
  margin-bottom: 28px;
  font-weight: 500;
}
.ticket-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  flex-grow: 1;
}
.ticket-features li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--fg-mute);
}
.ticket-features li::before {
  content: '';
  width: 16px; height: 16px;
  background: var(--green-tint);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231f7a3a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}
.ticket-card .btn { width: 100%; justify-content: center; }

.tickets-disclaimer {
  margin-top: 48px;
  font-size: 12px;
  color: var(--fg-dim);
  text-align: center;
  font-family: var(--mono);
}

/* ============================================
   LOCAL
   ============================================ */
.venue { background: var(--bg); overflow: hidden; }
.venue-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) { .venue-grid { grid-template-columns: 1fr; } }
.venue-image {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(135deg, var(--green-deep), var(--green));
  display: flex;
  align-items: end;
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.venue-image svg.bg,
.venue-image img.bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.venue-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8, 18, 12, 0.55) 100%);
  z-index: 1;
}
.venue-image::after {
  content: 'HANGAR · BELÉM/PA';
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #fff;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 6px;
}
.venue-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.venue-stat .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.03em;
}
.venue-stat .num small { font-size: 0.4em; color: var(--fg-mute); font-weight: 600; }
.venue-stat .lbl {
  font-family: var(--display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--fg-mute);
  text-transform: uppercase;
  margin-top: 8px;
}

/* ============================================
   PARCEIROS
   ============================================ */
.partners { background: var(--bg-deep); }
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .partner-grid { grid-template-columns: repeat(2, 1fr); } }
.partner-cell {
  background: var(--bg-elev);
  aspect-ratio: 5/3;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--fg-mute);
  transition: all 0.25s;
}
.partner-cell:hover { background: var(--green-tint); color: var(--green); }

.partner-cta {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  border-radius: var(--radius-md);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.partner-cta::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
}
@media (max-width: 880px) { .partner-cta { grid-template-columns: 1fr; padding: 32px; } }
.partner-cta h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.15;
  position: relative;
}
.partner-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  position: relative;
}
.partner-cta .btn { position: relative; }
.partner-cta .btn-light { background: #fff; }
.partner-cta .btn-ghost { border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.partner-cta .btn-ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; color: #fff; }

/* ============================================
   PAPERS
   ============================================ */
.papers {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.papers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 880px) { .papers-grid { grid-template-columns: 1fr; gap: 32px; } }
.papers-steps {
  display: grid;
  gap: 16px;
}
.papers-step {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  transition: all 0.3s;
}
.papers-step:hover { transform: translateX(4px); border-color: var(--green-soft); }
.papers-step .step-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  color: var(--green);
  line-height: 1;
  background: var(--green-tint);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.papers-step h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
}
.papers-step p {
  font-size: 14px;
  color: var(--fg-mute);
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--bg-elev); }
.faq-list {
  border-top: 1px solid var(--line);
  margin-top: 48px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  gap: 24px;
  cursor: pointer;
  transition: padding 0.25s;
}
.faq-item:hover { padding-left: 12px; }
.faq-item .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.16em;
  padding-top: 4px;
}
.faq-q {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
}
.faq-a {
  font-size: 14.5px;
  color: var(--fg-mute);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, margin-top 0.3s;
  grid-column: 2;
}
.faq-item.open .faq-a { max-height: 400px; margin-top: 14px; }
.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-tint);
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--green);
  font-weight: 600;
  align-self: start;
  transition: transform 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-dark);
  color: #c5d4cc;
  padding: 96px 0 48px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; } }
.footer-brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.footer-brand span { color: var(--green-bright); }
.footer-tag {
  font-size: 14px;
  line-height: 1.6;
  max-width: 36ch;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.footer-col h5 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin: 0 0 20px;
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--green-bright); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}
@media (max-width: 600px) { .footer-bottom { flex-direction: column; gap: 12px; text-align: center; } }

/* ============================================
   REVEAL
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ============================================
   PARTICLES
   ============================================ */
.particles {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--green);
  animation: float linear infinite;
}
@keyframes float {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-10vh) translateX(40px); opacity: 0; }
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 100%);
}
.page-header h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 24px 0 24px;
  max-width: 18ch;
}
.page-header h1 .accent { color: var(--green); }

.breadcrumbs {
  font-family: var(--display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-mute);
  display: flex;
  gap: 10px;
  align-items: center;
}
.breadcrumbs a:hover { color: var(--green); }
.breadcrumbs .sep { color: var(--line-strong); }

/* ============================================
   MODAL (lineup)
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 42, 28, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--bg);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 1080px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.modal-close {
  position: sticky;
  top: 16px;
  margin-left: auto;
  margin-right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  z-index: 2;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: var(--green); color: #fff; border-color: var(--green); }
