
:root {
  --font-geist-sans: 'Geist', Arial, sans-serif;
  --font-geist-mono: 'Geist Mono', 'Courier New', monospace;
  --ink: #05050b;
  --paper: #f5f1e8;
  --orange: #ff5a18;
  --acid: #d9ff43;
  --violet: #7658ff;
  --muted: #aaa7b4;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-geist-sans), Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }

.event-shell { min-height: 100vh; overflow: hidden; background: #05050b; }
.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 5vw, 78px);
  border-bottom: 1px solid rgb(255 255 255 / 14%);
  backdrop-filter: blur(10px);
}
.brand { display: inline-flex; align-items: center; gap: 13px; font: 800 14px/1 var(--font-geist-mono); letter-spacing: .16em; }
.plexo-star {
  position: relative;
  isolation: isolate;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 0 9px rgb(255 90 24 / 32%));
}
.plexo-star::before, .plexo-star::after, .plexo-star > span {
  content: '';
  position: absolute;
  clip-path: polygon(50% 0, 59% 39%, 100% 50%, 59% 61%, 50% 100%, 41% 61%, 0 50%, 41% 39%);
}
.plexo-star::before { width: 40px; height: 40px; background: conic-gradient(from 35deg, var(--acid), var(--orange) 34%, var(--violet) 68%, var(--acid)); animation: plexo-glint 4.6s ease-in-out infinite; }
.plexo-star::after { z-index: 1; width: 25px; height: 25px; background: #08070d; }
.plexo-star > span { z-index: 2; width: 7px; height: 7px; background: var(--acid); box-shadow: 0 0 13px var(--acid); }
@keyframes plexo-glint { 0%, 78%, 100% { transform: scale(1) rotate(0); filter: brightness(1); } 86% { transform: scale(1.1) rotate(7deg); filter: brightness(1.35); } }
.site-header nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 42px); font-size: 13px; font-weight: 700; letter-spacing: .05em; }
.site-header nav a { opacity: .74; transition: .2s ease; }
.site-header nav a:hover { opacity: 1; color: var(--acid); }
.site-header .admin-link { padding: 12px 17px; border: 1px solid rgb(255 255 255 / 28%); border-radius: 999px; }

.access-portal {
  isolation: isolate;
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 clamp(24px, 6vw, 94px);
  background: #030309;
}
.access-portal-background { position: absolute; z-index: -2; inset: 0; overflow: hidden; background: linear-gradient(90deg, rgb(2 3 7 / 95%) 0%, rgb(2 3 7 / 68%) 46%, rgb(2 3 7 / 17%) 100%), linear-gradient(0deg, rgb(2 3 7 / 78%), transparent 55%), url('./public/halloween-night-race-hero-v2.png') 70% center / cover no-repeat; }
.access-portal-background::before { content: ''; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgb(217 255 67 / 9%) 1px, transparent 1px), linear-gradient(90deg, rgb(217 255 67 / 9%) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(90deg, #000, transparent 75%); }
.access-portal-background::after { content: ''; position: absolute; left: 0; right: 0; top: -12%; height: 2px; background: linear-gradient(90deg, transparent, var(--acid), transparent); box-shadow: 0 0 24px var(--acid); opacity: .48; animation: access-scan 6s linear infinite; }
.access-portal-background > i { position: absolute; border-radius: 50%; filter: blur(38px); background: rgb(118 88 255 / 18%); animation: access-fog 9s ease-in-out infinite alternate; }
.access-portal-background > i:nth-child(1) { width: 64vw; height: 150px; right: -8%; bottom: 18%; }
.access-portal-background > i:nth-child(2) { width: 46vw; height: 110px; left: 4%; bottom: 4%; animation-delay: -3s; }
.access-portal-background > i:nth-child(3) { width: 24vw; aspect-ratio: 1; right: 8%; top: 12%; background: rgb(255 90 24 / 13%); animation-delay: -6s; }
.access-portal-header { min-height: 94px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgb(255 255 255 / 15%); }
.access-portal-header > span { color: var(--muted); font: 800 9px/1 var(--font-geist-mono); letter-spacing: .16em; }
.access-portal-content { align-self: center; width: min(880px, 74vw); padding: 52px 0 70px; }
.access-portal-status { display: flex; align-items: center; gap: 11px; margin: 0 0 25px; color: var(--acid); font: 800 10px/1 var(--font-geist-mono); letter-spacing: .18em; }
.access-portal-status i { width: 9px; height: 9px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 18px var(--acid); animation: signal-pulse 1.2s ease-in-out infinite; }
.access-portal h1 { margin: 0; width: max-content; max-width: 100%; font-weight: 950; letter-spacing: -.08em; text-transform: uppercase; }
.access-portal h1 b { display: block; color: var(--paper); font-size: clamp(72px, 9vw, 152px); line-height: .73; }
.access-portal h1 strong { display: block; width: max-content; margin-top: 10px; color: #24164a; font: italic 950 clamp(86px, 11vw, 184px)/.72 var(--font-geist-sans); -webkit-text-stroke: 2px var(--orange); text-shadow: 10px 10px 0 rgb(118 88 255 / 62%); }
.access-portal h1 > span { display: flex; align-items: center; gap: 15px; margin-top: 23px; color: var(--paper); font: 900 clamp(18px, 2vw, 32px)/1 var(--font-geist-mono); letter-spacing: .25em; }
.access-portal h1 > span::before { content: ''; width: clamp(38px, 5vw, 72px); height: 3px; background: var(--acid); box-shadow: 0 0 14px var(--acid); }
.access-portal-copy { max-width: 650px; margin: 34px 0 28px; color: #cbc7d2; font-size: clamp(17px, 1.5vw, 23px); line-height: 1.45; }
.access-portal-facts { display: flex; flex-wrap: wrap; margin-bottom: 29px; }
.access-portal-facts > span { min-width: 145px; padding: 13px 20px; border: 1px solid rgb(255 255 255 / 17%); background: rgb(4 4 10 / 58%); backdrop-filter: blur(12px); }
.access-portal-facts small { display: block; margin-bottom: 7px; color: var(--orange); font: 800 7px/1 var(--font-geist-mono); letter-spacing: .15em; }
.access-portal-facts b { font-size: 14px; }
.access-portal-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.access-portal-actions > button, .access-portal-actions > a { min-height: 66px; display: inline-flex; align-items: center; justify-content: space-between; gap: 35px; padding: 0 25px; border: 1px solid rgb(255 255 255 / 24%); font: 900 11px/1 var(--font-geist-mono); letter-spacing: .1em; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.access-portal-actions > button { min-width: 280px; border-color: var(--acid); color: #111307; background: var(--acid); box-shadow: 8px 8px 0 var(--orange); }
.access-portal-actions > button span { font-size: 22px; }
.access-portal-actions > a { min-width: 260px; position: relative; flex-wrap: wrap; color: var(--paper); background: rgb(5 5 13 / 72%); }
.access-portal-actions > a > span { align-self: end; }
.access-portal-actions > a small { align-self: start; flex: 0 0 100%; margin-top: -19px; color: var(--orange); font-size: 6px; letter-spacing: .16em; }
.access-portal-actions > a b { position: absolute; right: 22px; font-size: 18px; }
.access-portal-actions > button:hover, .access-portal-actions > button:focus-visible, .access-portal-actions > a:hover, .access-portal-actions > a:focus-visible { transform: translateY(-3px); outline: none; }
.access-portal-actions > a:hover, .access-portal-actions > a:focus-visible { border-color: var(--orange); background: rgb(255 90 24 / 12%); }
.access-portal-code { position: absolute; right: 28px; top: 50%; color: rgb(255 255 255 / 25%); font: 800 8px/1 var(--font-geist-mono); letter-spacing: .18em; writing-mode: vertical-rl; }
.access-portal-footer { min-height: 62px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgb(255 255 255 / 15%); color: rgb(255 255 255 / 42%); font: 800 8px/1 var(--font-geist-mono); letter-spacing: .16em; }
.password-gate { isolation: isolate; position: relative; min-height: 100svh; display: grid; grid-template-rows: auto 1fr auto; overflow-x: hidden; padding: 0 clamp(24px, 6vw, 94px); background: #030309; }
.password-gate-background { filter: saturate(.62) brightness(.7); }
.password-gate-header { position: relative; z-index: 2; }
.password-gate-content { align-self: center; display: grid; place-items: center; padding: 54px 0 68px; }
.password-gate-card { position: relative; width: min(520px, 100%); padding: clamp(30px, 4vw, 54px); border: 1px solid rgb(217 255 67 / 34%); background: linear-gradient(145deg, rgb(10 8 18 / 96%), rgb(5 5 11 / 90%)); box-shadow: 13px 13px 0 rgb(255 90 24 / 22%), 0 28px 90px rgb(0 0 0 / 52%); backdrop-filter: blur(18px); }
.password-gate-card::before, .password-gate-card::after { content: ''; position: absolute; width: 58px; height: 58px; pointer-events: none; }
.password-gate-card::before { left: 12px; top: 12px; border-left: 2px solid var(--orange); border-top: 2px solid var(--orange); }
.password-gate-card::after { right: 12px; bottom: 12px; border-right: 2px solid var(--acid); border-bottom: 2px solid var(--acid); }
.password-gate-index { position: absolute; right: 28px; top: 27px; color: rgb(255 255 255 / 22%); font: 800 7px/1 var(--font-geist-mono); letter-spacing: .17em; }
.password-gate-card h1 { margin: 0; font-weight: 950; letter-spacing: -.07em; }
.password-gate-card h1 span { display: block; color: var(--paper); font-size: clamp(52px, 6vw, 82px); line-height: .82; }
.password-gate-card h1 b { display: block; width: max-content; margin-top: 8px; color: #24164a; font-size: clamp(55px, 6.4vw, 88px); line-height: .78; -webkit-text-stroke: 1.5px var(--orange); text-shadow: 7px 7px 0 rgb(118 88 255 / 58%); }
.password-gate-card > p:not(.access-portal-status) { margin: 28px 0; color: #c2beca; font-size: 16px; line-height: 1.5; }
.password-gate-card form { position: relative; z-index: 1; }
.password-gate-card label { display: block; margin-bottom: 9px; color: var(--orange); font: 800 8px/1 var(--font-geist-mono); letter-spacing: .16em; }
.password-gate-field { position: relative; }
.password-gate-field input { width: 100%; height: 62px; padding: 0 54px 0 17px; border: 1px solid rgb(255 255 255 / 24%); border-radius: 0; outline: none; color: var(--paper); background: rgb(255 255 255 / 5%); font: 800 18px/1 var(--font-geist-mono); letter-spacing: .2em; transition: border-color .2s ease, box-shadow .2s ease; }
.password-gate-field input:focus { border-color: var(--acid); box-shadow: inset 0 0 24px rgb(217 255 67 / 5%), 0 0 0 1px rgb(217 255 67 / 24%); }
.password-gate-field > span { position: absolute; right: 17px; top: 50%; color: var(--acid); font: 950 13px/1 var(--font-geist-mono); letter-spacing: .18em; transform: translateY(-50%); }
.password-gate-card form > button { width: 100%; min-height: 62px; display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding: 0 20px; border: 1px solid var(--acid); color: #121408; background: var(--acid); box-shadow: 7px 7px 0 var(--orange); font: 900 11px/1 var(--font-geist-mono); letter-spacing: .12em; cursor: pointer; transition: transform .2s ease, filter .2s ease; }
.password-gate-card form > button:hover, .password-gate-card form > button:focus-visible { transform: translateY(-2px); filter: brightness(1.08); outline: none; }
.password-gate-card form > button:disabled { cursor: wait; filter: grayscale(.65) brightness(.7); transform: none; }
.password-gate-card form > button span { font-size: 20px; }
.password-gate-card form > p { min-height: 28px; margin: 18px 0 0; color: rgb(255 255 255 / 38%); font: 700 7px/1.45 var(--font-geist-mono); letter-spacing: .09em; }
.password-gate-card form > p.has-error { color: #ff8152; }
.password-gate-footer { position: relative; z-index: 2; }
.password-gate-checking { place-items: center; grid-template-rows: 1fr; }
.password-gate-checking > div:last-child { display: grid; justify-items: center; gap: 18px; color: var(--acid); font: 800 8px/1 var(--font-geist-mono); letter-spacing: .16em; }
@keyframes access-scan { to { transform: translateY(124vh); opacity: 0; } }
@keyframes access-fog { to { transform: translateX(8vw) scale(1.1); opacity: .52; } }

.hero {
  isolation: isolate;
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(290px, .7fr);
  align-items: center;
  gap: 6vw;
  padding: 136px clamp(22px, 7vw, 108px) 122px;
  background:
    radial-gradient(circle at 67% 35%, rgb(118 88 255 / 26%), transparent 32%),
    linear-gradient(120deg, #07070d 0%, #0b0915 42%, #130a17 100%);
}
.hero::after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .23;
  background-image: repeating-linear-gradient(100deg, transparent 0 80px, rgb(255 255 255 / 8%) 81px 82px);
}
.hero-atmosphere { position: absolute; z-index: -1; inset: 0; overflow: hidden; }
.moon {
  position: absolute;
  width: min(38vw, 540px);
  aspect-ratio: 1;
  right: 7vw;
  top: 16vh;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fffbd5 0 4%, #d8ff70 28%, #92a742 68%, #4a4b2d 100%);
  box-shadow: 0 0 90px rgb(217 255 67 / 24%);
  filter: saturate(.7);
  opacity: .65;
}
.moon::after { content: ''; position: absolute; inset: 11% 15%; border-radius: 50%; box-shadow: inset 36px -24px 0 rgb(9 7 17 / 22%), inset -22px 18px 0 rgb(255 255 255 / 7%); }
.fog { position: absolute; width: 75vw; height: 190px; border-radius: 50%; background: rgb(200 196 255 / 10%); filter: blur(32px); animation: drift 9s ease-in-out infinite alternate; }
.fog-one { right: -10vw; bottom: 18vh; }
.fog-two { left: -18vw; bottom: 3vh; animation-delay: -4s; }
.road-line { position: absolute; bottom: -14vh; height: 66vh; width: 2px; background: linear-gradient(transparent, var(--orange)); transform-origin: bottom; opacity: .55; }
.road-line-one { left: 38%; transform: rotate(25deg); }
.road-line-two { right: 12%; transform: rotate(-23deg); }

.hero-copy { position: relative; z-index: 2; max-width: 780px; }
.eyebrow { margin: 0 0 18px; color: var(--acid); font: 700 13px/1 var(--font-geist-mono); letter-spacing: .2em; }
.hero h1 { margin: 0; max-width: 8ch; font-size: clamp(76px, 10.8vw, 178px); font-weight: 950; line-height: .76; letter-spacing: -.075em; }
.hero-title-main { display: block; font: inherit; }
.hero h1 span { display: block; color: var(--orange); font-style: italic; text-shadow: 8px 8px 0 rgb(118 88 255 / 30%); }
.hero h1 .hero-city { display: flex; align-items: center; width: max-content; margin-top: 22px; color: var(--paper); font: 900 clamp(22px, 2.25vw, 38px)/1 var(--font-geist-mono); letter-spacing: .24em; text-shadow: 0 0 24px rgb(204 255 0 / 15%); }
.hero h1 .hero-city::before { content: ''; width: clamp(38px, 5vw, 72px); height: 3px; margin-right: 16px; background: var(--acid); box-shadow: 0 0 14px rgb(204 255 0 / 70%); }
.hero-lead { margin: 34px 0 32px; max-width: 540px; color: var(--muted); font-size: clamp(20px, 2.1vw, 31px); line-height: 1.25; }
.hero-lead strong { color: var(--paper); font-weight: 760; }
.race-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.race-facts div { min-width: 142px; padding: 14px 18px; border: 1px solid rgb(255 255 255 / 16%); background: rgb(255 255 255 / 5%); backdrop-filter: blur(12px); }
.race-facts small { display: block; margin-bottom: 7px; color: var(--orange); font: 700 10px/1 var(--font-geist-mono); letter-spacing: .17em; }
.race-facts b { font-size: 18px; letter-spacing: -.02em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.primary-cta, .secondary-cta, .whatsapp-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 58px; padding: 0 28px; font: 800 13px/1 var(--font-geist-mono); letter-spacing: .08em; transition: transform .2s ease, background .2s ease; }
.primary-cta { color: #15130a; background: var(--acid); box-shadow: 9px 9px 0 var(--orange); }
.secondary-cta { border: 1px solid rgb(255 255 255 / 24%); background: rgb(255 255 255 / 4%); }
.whatsapp-cta { gap: 10px; border: 1px solid #35ed77; color: #edfff3; background: rgb(13 113 53 / 38%); cursor: pointer; backdrop-filter: blur(10px); }
.whatsapp-cta i { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 50%; color: #072513; background: #35ed77; font: 950 12px/1 var(--font-geist-mono); font-style: normal; box-shadow: 0 0 20px rgb(53 237 119 / 38%); }
.primary-cta:hover, .secondary-cta:hover, .whatsapp-cta:hover { transform: translateY(-3px); }

.experience-card {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(100%, 390px);
  margin-left: auto;
  padding: 34px;
  border: 1px solid rgb(217 255 67 / 35%);
  background: rgb(5 5 11 / 78%);
  box-shadow: 18px 18px 0 rgb(255 90 24 / 14%);
  backdrop-filter: blur(18px);
}
.card-number { display: block; margin-bottom: 26px; color: var(--orange); font: 800 54px/1 var(--font-geist-mono); letter-spacing: -.08em; }
.experience-card p { margin: 0 0 24px; font-size: clamp(24px, 2.2vw, 34px); font-weight: 850; line-height: 1.05; }
.card-kicker { display: block; margin-bottom: 12px; color: var(--orange); font: 800 11px/1 var(--font-geist-mono); letter-spacing: .18em; }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-bottom: 25px; }
.countdown b { display: grid; place-items: center; min-height: 76px; border: 1px solid rgb(255 255 255 / 15%); background: rgb(255 255 255 / 5%); color: var(--acid); font: 800 25px/1 var(--font-geist-mono); }
.countdown small { display: block; margin-top: 8px; color: var(--muted); font-size: 8px; letter-spacing: .12em; }
.experience-card ul { margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: 14px; }
.experience-card li { padding: 12px 0; border-top: 1px solid rgb(255 255 255 / 12%); }
.experience-card li::before { content: '＋'; margin-right: 9px; color: var(--acid); }
.hero-ticker { position: absolute; left: 0; right: 0; bottom: 0; height: 54px; display: flex; align-items: center; gap: 26px; white-space: nowrap; overflow: hidden; color: var(--ink); background: var(--orange); font: 800 12px/1 var(--font-geist-mono); letter-spacing: .08em; padding: 0 26px; }
.hero-ticker i { width: 9px; height: 9px; background: var(--acid); transform: rotate(45deg); }
.sponsor-strip { min-height: 94px; display: flex; align-items: center; justify-content: center; gap: clamp(28px, 5vw, 80px); padding: 17px clamp(22px, 7vw, 108px); border-bottom: 1px solid rgb(255 255 255 / 11%); background: #08070c; color: var(--paper); }
.sponsor-strip > span { flex: 0 0 auto; color: var(--orange); font: 900 8px/1 var(--font-geist-mono); letter-spacing: .18em; }
.sponsor-viewport { position: relative; flex: 1 1 760px; max-width: 880px; min-width: 0; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.sponsor-logos { display: flex; align-items: center; width: max-content; animation: sponsor-marquee 18s linear infinite; will-change: transform; }
.sponsor-set { display: flex; align-items: center; gap: clamp(38px, 5vw, 72px); padding-right: clamp(38px, 5vw, 72px); }
.sponsor-set > a { display: inline-flex; align-items: center; gap: 18px; min-height: 46px; opacity: .78; transition: opacity .2s ease, transform .2s ease; }
.sponsor-set > a:hover, .sponsor-set > a:focus-visible { opacity: 1; transform: translateY(-2px); outline: none; }
.sponsor-set > a:focus-visible { box-shadow: 0 2px 0 var(--acid); }
.sponsor-set img { display: block; width: auto; max-width: 155px; max-height: 31px; object-fit: contain; }
.sponsor-set > a:first-child img { max-width: 142px; max-height: 30px; }
.sponsor-viewport:hover .sponsor-logos, .sponsor-viewport:focus-within .sponsor-logos { animation-play-state: paused; }
@keyframes sponsor-marquee { to { transform: translateX(-50%); } }
.ford-andreta-logo img:first-child { max-width: 86px; max-height: 32px; }
.ford-andreta-logo img:last-child { max-width: 118px; max-height: 27px; }
.preview-next { min-height: 52vh; padding: 100px clamp(22px, 7vw, 108px); background: var(--paper); color: var(--ink); }
.preview-next p { color: #6b34ff; font: 800 12px/1 var(--font-geist-mono); letter-spacing: .18em; }
.preview-next h2 { max-width: 940px; margin: 20px 0 0; font-size: clamp(48px, 7vw, 112px); line-height: .89; letter-spacing: -.07em; }

.section-tag { margin: 0 0 18px; color: var(--orange); font: 800 12px/1 var(--font-geist-mono); letter-spacing: .18em; }
.section-intro { display: grid; grid-template-columns: .45fr 1fr; align-items: start; gap: 50px; }
.section-intro h2, .kit-copy h2, .awards-section h2, .location-copy h2, .faq-section h2 { margin: 0; font-size: clamp(48px, 7vw, 108px); line-height: .87; letter-spacing: -.07em; }
.section-intro.light { color: var(--ink); }

.experience-section { padding: 120px clamp(22px, 7vw, 108px); background: var(--paper); color: var(--ink); }
.experience-section .section-intro h2 { max-width: 1000px; }
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 76px; background: #c9c3b8; border: 1px solid #c9c3b8; }
.experience-story { min-height: 360px; padding: 38px; background: var(--paper); }
.experience-story > span { display: block; color: var(--violet); font: 800 18px/1 var(--font-geist-mono); }
.experience-story h3 { margin: 120px 0 18px; max-width: 8ch; font-size: 36px; line-height: .95; letter-spacing: -.05em; }
.experience-story p { margin: 0; color: #625e58; font-size: 17px; line-height: 1.55; }
.experience-story.acid-card { background: var(--acid); }
.experience-story.acid-card > span { color: var(--orange); }
.experience-story.acid-card p { color: #343515; }

.modalities-section { padding: 120px clamp(22px, 7vw, 108px); background: #0d0b13; }
.modalities-section .section-intro { margin-bottom: 68px; }
.modality-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.modality-card { isolation: isolate; position: relative; overflow: hidden; min-height: 610px; padding: 46px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgb(255 255 255 / 14%); cursor: pointer; transition: transform .38s cubic-bezier(.2,.7,.2,1), border-color .3s ease, box-shadow .38s ease; }
.modality-card::after { content: ''; position: absolute; z-index: 0; right: -20%; top: -5%; width: 70%; aspect-ratio: 1; border: 55px solid currentColor; border-radius: 50%; opacity: .07; animation: modality-orbit 12s ease-in-out infinite alternate; }
.run-card { --card-accent: var(--orange); color: var(--orange); background: linear-gradient(145deg, #1a0a08, #0b090e 70%); }
.walk-card { --card-accent: var(--acid); color: var(--acid); background: linear-gradient(145deg, #111806, #080a0a 70%); }
.modality-card > div, .modality-card > ul, .modality-card > .modality-cta { position: relative; z-index: 2; }
.modality-card > div > span { font: 800 11px/1 var(--font-geist-mono); letter-spacing: .16em; }
.modality-card strong { display: block; margin-top: 70px; font-size: clamp(130px, 16vw, 250px); line-height: .65; letter-spacing: -.12em; transition: text-shadow .35s ease, transform .35s ease; }
.modality-card h3 { margin: 20px 0 0; color: var(--paper); font-size: clamp(50px, 6vw, 88px); line-height: .85; letter-spacing: -.07em; }
.modality-card ul { display: grid; gap: 13px; margin: 52px 0 32px; padding: 0; color: var(--muted); list-style: none; }
.modality-card li { padding-bottom: 13px; border-bottom: 1px solid rgb(255 255 255 / 12%); }
.modality-card li::before { content: '＋'; color: currentColor; margin-right: 10px; }
.modality-card .modality-cta { display: inline-flex; align-items: center; justify-content: space-between; gap: 18px; width: fit-content; min-height: 54px; padding: 0 20px 0 24px; border: 1px solid var(--card-accent); color: var(--card-accent); font: 800 12px/1 var(--font-geist-mono); letter-spacing: .1em; text-transform: uppercase; transition: color .28s ease, background .28s ease, box-shadow .28s ease; }
.modality-cta i { font-size: 19px; font-style: normal; transition: transform .28s ease; }
.modality-haunt { position: absolute; z-index: 0; inset: 0; overflow: hidden; pointer-events: none; }
.modality-haunt b { position: absolute; right: 9%; top: 28%; font: normal clamp(96px, 11vw, 176px)/1 "Segoe UI Emoji", "Apple Color Emoji", sans-serif; opacity: .09; filter: grayscale(.2) drop-shadow(0 0 18px var(--card-accent)); animation: modality-haunt 4.8s ease-in-out infinite; }
.modality-haunt i { position: absolute; left: -18%; bottom: 8%; width: 92%; height: 120px; border-radius: 50%; background: var(--card-accent); opacity: .08; filter: blur(34px); animation: modality-fog 7s ease-in-out infinite alternate; }
.modality-haunt i:nth-child(2) { left: 35%; bottom: -2%; width: 84%; animation-delay: -3.5s; }
.modality-card:hover, .modality-card:focus-visible { z-index: 2; border-color: var(--card-accent); transform: translateY(-10px) scale(1.012); box-shadow: 0 22px 70px rgb(0 0 0 / 45%), 0 0 34px color-mix(in srgb, var(--card-accent) 18%, transparent); outline: none; }
.modality-card:hover strong, .modality-card:focus-visible strong { text-shadow: 0 0 32px color-mix(in srgb, var(--card-accent) 46%, transparent); transform: translateX(7px); }
.modality-card:hover .modality-cta, .modality-card:focus-visible .modality-cta { color: var(--ink); background: var(--card-accent); box-shadow: 8px 8px 0 rgb(0 0 0 / 34%); }
.modality-card:hover .modality-cta i, .modality-card:focus-visible .modality-cta i { transform: translate(3px, -3px); }

.kit-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; padding: 120px clamp(22px, 7vw, 108px); background: var(--violet); }
.kit-copy { align-self: center; }
.kit-copy .section-tag { color: var(--acid); }
.kit-copy h2 { font-size: clamp(52px, 6vw, 94px); }
.kit-copy > p:last-child { max-width: 520px; margin: 32px 0 0; color: #d8d0ff; font-size: 17px; line-height: 1.6; }
.kit-grid { display: grid; grid-template-columns: repeat(2, 1fr); background: rgb(255 255 255 / 24%); border: 1px solid rgb(255 255 255 / 24%); gap: 1px; }
.kit-grid article { min-height: 180px; padding: 26px; display: flex; flex-direction: column; justify-content: space-between; background: var(--violet); }
.kit-grid span { color: var(--acid); font: 800 12px/1 var(--font-geist-mono); }
.kit-grid b { font-size: 25px; line-height: 1; }

.awards-section { padding: 120px clamp(22px, 7vw, 108px); background: var(--orange); color: var(--ink); }
.awards-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 7vw; }
.awards-section .section-tag { color: #3e1578; }
.awards-section h2 { font-size: clamp(50px, 6vw, 92px); }
.award-list { border-top: 2px solid var(--ink); }
.award-list article { display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 28px; padding: 28px 0; border-bottom: 2px solid var(--ink); }
.award-list b { font: 900 42px/1 var(--font-geist-mono); letter-spacing: -.08em; }
.award-list span { font-size: 18px; font-weight: 720; line-height: 1.3; }

.location-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; background: #08070c; }
.location-map { isolation: isolate; position: relative; overflow: hidden; min-height: 600px; border-right: 1px solid rgb(217 255 67 / 18%); background: #07070b; }
.location-map iframe { position: absolute; z-index: 0; inset: -2%; width: 104%; height: 104%; border: 0; filter: grayscale(1) invert(.9) hue-rotate(178deg) saturate(.65) contrast(1.22) brightness(.68); }
.location-map::before { content: ''; position: absolute; z-index: 2; inset: 0; background: radial-gradient(circle at 50% 48%, transparent 18%, rgb(4 3 8 / 22%) 56%, rgb(3 2 7 / 88%) 112%), linear-gradient(135deg, rgb(118 88 255 / 17%), transparent 42%, rgb(255 90 24 / 14%)); box-shadow: inset 0 0 120px rgb(0 0 0 / 72%); pointer-events: none; }
.location-map::after { content: ''; position: absolute; z-index: 3; inset: 0; background: repeating-linear-gradient(180deg, transparent 0 4px, rgb(0 0 0 / 10%) 5px), linear-gradient(90deg, rgb(217 255 67 / 10%) 1px, transparent 1px), linear-gradient(rgb(217 255 67 / 10%) 1px, transparent 1px); background-size: auto, 90px 90px, 90px 90px; opacity: .34; mix-blend-mode: screen; pointer-events: none; }
.map-cinema-layer { position: absolute; z-index: 4; inset: 0; overflow: hidden; pointer-events: none; }
.map-fog { position: absolute; width: 70%; height: 130px; border-radius: 50%; background: rgb(217 255 67 / 11%); filter: blur(34px); animation: map-fog-drift 8s ease-in-out infinite alternate; }
.map-fog-one { left: -22%; bottom: 12%; }
.map-fog-two { right: -28%; top: 15%; background: rgb(255 90 24 / 10%); animation-delay: -4s; }
.map-corner { position: absolute; width: 42px; height: 42px; border-color: var(--acid); opacity: .7; }
.corner-one { left: 24px; top: 24px; border-left: 2px solid; border-top: 2px solid; }
.corner-two { right: 24px; top: 24px; border-right: 2px solid; border-top: 2px solid; }
.corner-three { left: 24px; bottom: 24px; border-left: 2px solid; border-bottom: 2px solid; }
.corner-four { right: 24px; bottom: 24px; border-right: 2px solid; border-bottom: 2px solid; }
.event-map-marker { position: absolute; z-index: 7; left: 50%; top: 45%; display: grid; place-items: center; transform: translate(-50%, -50%); color: inherit; text-decoration: none; cursor: pointer; touch-action: manipulation; }
.marker-pin { position: relative; z-index: 2; display: grid; place-items: center; width: 62px; height: 62px; border: 3px solid var(--acid); border-radius: 50% 50% 50% 0; background: radial-gradient(circle at 62% 32%, #ffb06f 0 8%, var(--orange) 9% 68%, #b52a08 100%); box-shadow: 0 0 0 8px rgb(255 90 24 / 15%), 0 0 42px rgb(255 90 24 / 92%), 0 20px 32px rgb(0 0 0 / 70%); transform: rotate(-45deg); animation: map-marker-hover 2.4s ease-in-out infinite; transition: box-shadow .2s ease, filter .2s ease; }
.marker-pin::before { content: ''; position: absolute; width: 19px; height: 19px; border: 5px solid #140806; border-radius: 50%; background: var(--paper); box-shadow: 0 0 0 2px rgb(255 255 255 / 30%), 0 0 14px rgb(217 255 67 / 38%); }
.marker-pin::after { content: ''; position: absolute; inset: 7px; border: 1px solid rgb(255 255 255 / 35%); border-radius: inherit; }
.event-map-marker > b { position: relative; z-index: 3; margin-top: 19px; padding: 9px 12px; border: 1px solid var(--orange); background: rgb(5 5 10 / 92%); color: var(--paper); box-shadow: 6px 6px 0 rgb(217 255 67 / 18%), 0 0 22px rgb(255 90 24 / 24%); font: 900 8px/1 var(--font-geist-mono); letter-spacing: .14em; white-space: nowrap; }
.event-map-marker:hover .marker-pin, .event-map-marker:focus-visible .marker-pin { box-shadow: 0 0 0 10px rgb(255 90 24 / 19%), 0 0 56px rgb(255 90 24 / 100%), 0 20px 32px rgb(0 0 0 / 70%); filter: brightness(1.1); }
.event-map-marker:focus-visible { outline: none; }
.event-map-marker:focus-visible > b { outline: 2px solid var(--acid); outline-offset: 4px; }
.marker-pulse { position: absolute; z-index: 1; left: 50%; top: 31px; width: 84px; height: 84px; border: 1px solid var(--acid); border-radius: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 18px rgb(217 255 67 / 26%); animation: map-marker-pulse 2.4s ease-out infinite; pointer-events: none; }
.marker-pulse-two { border-color: var(--orange); animation-delay: -1.2s; }
.map-bats { position: absolute; z-index: 6; inset: 0; overflow: hidden; pointer-events: none; }
.map-bats i { position: absolute; color: #09070e; font: normal 24px/1 "Segoe UI Emoji"; filter: grayscale(1) brightness(.15) drop-shadow(0 0 8px rgb(217 255 67 / 34%)); opacity: .72; animation: map-bat-flight 4.8s ease-in-out infinite; }
.map-bats i:nth-child(1) { left: 18%; top: 24%; transform: rotate(-14deg); }
.map-bats i:nth-child(2) { right: 14%; top: 31%; animation-delay: -1.7s; transform: scale(.72) rotate(12deg); }
.map-bats i:nth-child(3) { left: 63%; top: 13%; animation-delay: -3.1s; transform: scale(.55) rotate(-8deg); }
.map-live-badge { position: absolute; z-index: 5; left: 28px; top: 27px; display: flex; align-items: center; gap: 9px; padding: 10px 12px; border: 1px solid rgb(217 255 67 / 45%); color: var(--acid); background: rgb(5 5 10 / 78%); font: 900 8px/1 var(--font-geist-mono); letter-spacing: .13em; backdrop-filter: blur(10px); pointer-events: none; }
.map-live-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 12px var(--orange); animation: signal-pulse 1.4s ease-in-out infinite; }
.map-place-card { position: absolute; z-index: 5; left: 28px; bottom: 28px; width: min(72%, 410px); padding: 22px 24px; border-left: 4px solid var(--orange); background: rgb(5 5 10 / 84%); box-shadow: 12px 12px 0 rgb(217 255 67 / 12%); backdrop-filter: blur(13px); pointer-events: none; }
.map-place-card small { display: block; color: var(--orange); font: 900 8px/1 var(--font-geist-mono); letter-spacing: .16em; }
.map-place-card b { display: block; margin: 11px 0 8px; color: var(--paper); font: 900 clamp(26px, 3vw, 46px)/.9 var(--font-geist-mono); letter-spacing: -.06em; }
.map-place-card span { color: rgb(255 255 255 / 52%); font: 800 8px/1.45 var(--font-geist-mono); letter-spacing: .09em; }
.map-cinema-code { position: absolute; z-index: 5; right: 30px; bottom: 29px; color: var(--acid); font: 900 7px/1 var(--font-geist-mono); letter-spacing: .14em; text-shadow: 0 0 10px rgb(217 255 67 / 60%); pointer-events: none; writing-mode: vertical-rl; }
.location-copy { align-self: center; padding: 80px clamp(34px, 7vw, 110px); }
.location-copy h2 { font-size: clamp(50px, 5.5vw, 86px); }
.location-copy > p:not(.section-tag) { max-width: 560px; margin: 30px 0; color: var(--muted); font-size: 18px; line-height: 1.6; }
.location-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.location-actions a { display: inline-flex; align-items: center; min-height: 52px; padding: 0 21px; border: 1px solid rgb(255 255 255 / 22%); font: 800 11px/1 var(--font-geist-mono); letter-spacing: .1em; text-transform: uppercase; }
.location-actions a:first-child { color: var(--ink); background: var(--acid); border-color: var(--acid); }


.faq-section { display: grid; grid-template-columns: .65fr 1.35fr; gap: 8vw; padding: 120px clamp(22px, 7vw, 108px); background: #0b0910; }
.faq-section h2 { font-size: clamp(48px, 5vw, 80px); }
.faq-list { border-top: 1px solid rgb(255 255 255 / 18%); }
.faq-list details { border-bottom: 1px solid rgb(255 255 255 / 18%); }
.faq-list summary { cursor: pointer; padding: 28px 46px 28px 0; font-size: 20px; font-weight: 780; list-style: none; }
.faq-list summary::after { content: '＋'; float: right; color: var(--acid); }
.faq-list details[open] summary::after { content: '−'; }
.faq-list p { max-width: 720px; margin: -10px 0 28px; color: var(--muted); line-height: 1.6; }

footer { border-top: 1px solid rgb(255 255 255 / 14%); background: #05050b; }
.footer-main { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 22px; padding: 34px clamp(22px, 5vw, 78px); }
.footer-main > p { margin: 0; color: var(--muted); font: 700 11px/1 var(--font-geist-mono); letter-spacing: .1em; }
.footer-links { display: flex; justify-content: flex-end; gap: 22px; color: var(--acid); font-size: 13px; font-weight: 700; }
.footer-signatures { display: flex; align-items: center; justify-content: center; gap: clamp(22px, 3vw, 48px); padding: 28px clamp(22px, 5vw, 78px) 34px; border-top: 1px solid rgb(255 255 255 / 9%); background: linear-gradient(90deg, transparent, rgb(118 88 255 / 8%), transparent); }
.footer-credit-label { color: rgb(255 255 255 / 30%); font: 800 8px/1 var(--font-geist-mono); letter-spacing: .18em; }
.footer-signatures > i { width: 1px; height: 42px; background: rgb(255 255 255 / 14%); }
.footer-logo { display: inline-flex; align-items: center; gap: 11px; }
.footer-logo > b { display: grid; place-items: center; width: 42px; height: 42px; color: var(--ink); font: 950 15px/1 var(--font-geist-mono); letter-spacing: -.08em; }
.footer-logo > span { display: grid; gap: 4px; }
.footer-logo strong { font: 900 14px/1 var(--font-geist-mono); letter-spacing: .1em; }
.footer-logo small { font: 800 8px/1 var(--font-geist-mono); letter-spacing: .14em; }
.plexo-momento-logo > .plexo-star { width: 46px; height: 46px; }
.plexo-momento-logo small { color: var(--acid); }
.infotech-logo > b { border: 1px solid var(--acid); color: var(--acid); box-shadow: inset 0 0 18px rgb(217 255 67 / 8%); }
.infotech-logo strong { letter-spacing: -.02em; }
.infotech-logo small { color: var(--violet); font-size: 10px; }
.whatsapp-float { position: fixed; z-index: 40; right: 20px; bottom: 20px; display: grid; grid-template-columns: 42px auto; grid-template-rows: auto auto; column-gap: 11px; align-items: center; min-width: 184px; min-height: 62px; padding: 9px 15px 9px 9px; border: 1px solid rgb(255 255 255 / 28%); border-radius: 999px; color: #fff; background: rgb(7 42 21 / 92%); box-shadow: 0 12px 38px rgb(0 0 0 / 42%), 0 0 0 0 rgb(53 237 119 / 30%); cursor: pointer; backdrop-filter: blur(14px); animation: whatsapp-pulse 2.8s ease-out infinite; transition: opacity .22s ease, transform .22s ease, background .2s ease; }
.whatsapp-float > span { grid-row: 1 / 3; display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: #062112; background: #35ed77; font: 950 15px/1 var(--font-geist-mono); }
.whatsapp-float b { align-self: end; font: 900 9px/1 var(--font-geist-mono); letter-spacing: .08em; text-align: left; }
.whatsapp-float small { align-self: start; margin-top: 5px; color: #35ed77; font: 800 7px/1 var(--font-geist-mono); letter-spacing: .16em; text-align: left; }
.whatsapp-float:hover, .whatsapp-float:focus-visible { background: #116b35; outline: 2px solid #35ed77; outline-offset: 3px; }
.whatsapp-float.is-footer-visible { opacity: 0; transform: translateY(18px) scale(.82); pointer-events: none; animation: none; }
@keyframes whatsapp-pulse { 65% { box-shadow: 0 12px 38px rgb(0 0 0 / 42%), 0 0 0 0 rgb(53 237 119 / 28%); } 100% { box-shadow: 0 12px 38px rgb(0 0 0 / 42%), 0 0 0 16px transparent; } }

/* Plexo.VIVA — pilot experience layer */
.brand i { color: var(--acid); font-style: normal; font-size: 9px; }
.site-header nav button { font: inherit; }
.sound-toggle { display: inline-flex; align-items: center; gap: 7px; min-height: 36px; padding: 0 12px; border: 1px solid rgb(255 255 255 / 20%); border-radius: 999px; background: rgb(255 255 255 / 4%); color: var(--muted); font: 800 9px/1 var(--font-geist-mono) !important; letter-spacing: .1em; cursor: pointer; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
.sound-toggle:hover, .sound-toggle:focus-visible { color: var(--paper); border-color: rgb(217 255 67 / 55%); outline: none; transform: translateY(-1px); }
.sound-toggle span { width: 7px; height: 7px; border-radius: 50%; background: #777; }
.sound-toggle.is-on { color: var(--acid); border-color: rgb(217 255 67 / 40%); }
.sound-toggle.is-on span { background: var(--acid); box-shadow: 0 0 14px var(--acid); animation: signal-pulse 1.2s ease-in-out infinite; }
.hero-viva { --mx: 74%; --my: 42%; background: radial-gradient(circle at 76% 31%, rgb(110 65 255 / 32%), transparent 27%), linear-gradient(118deg, #030409 0%, #0a0712 48%, #140716 100%); }
.hero-viva::before { content: ''; position: absolute; z-index: -1; inset: 0; background: radial-gradient(420px circle at var(--mx) var(--my), rgb(217 255 67 / 12%), transparent 65%); pointer-events: none; }
.hero-viva::after { opacity: .34; background-image: linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(90deg, #000, transparent 72%); }
.cursor-ghost { position: fixed; z-index: 120; left: 0; top: 0; width: 18px; height: 20px; border-radius: 9px 9px 5px 5px; opacity: 0; background: var(--acid); box-shadow: 0 0 0 8px rgb(217 255 67 / 5%), 0 0 24px rgb(217 255 67 / 34%); transition: opacity .18s ease, transform .07s linear; pointer-events: none; will-change: transform; }
.cursor-ghost.is-visible { opacity: .92; }
.cursor-ghost::after { content: ''; position: absolute; left: 0; right: 0; bottom: -3px; height: 7px; background: radial-gradient(circle at 3px 0, transparent 3px, var(--acid) 3.5px) 0 0 / 6px 7px repeat-x; }
.cursor-ghost i { position: absolute; z-index: 1; top: 7px; width: 3px; height: 4px; border-radius: 50%; background: #10120b; }
.cursor-ghost i:first-child { left: 4px; }
.cursor-ghost i:last-child { right: 4px; }
.scan-line { position: absolute; left: 0; right: 0; height: 1px; top: 14%; background: linear-gradient(90deg, transparent, var(--acid), transparent); box-shadow: 0 0 12px var(--acid); opacity: .32; animation: scanner 7s linear infinite; }
.system-status { display: flex; align-items: center; gap: 9px; margin-bottom: 18px; color: var(--acid); font: 800 9px/1 var(--font-geist-mono); letter-spacing: .12em; }
.system-status span { width: 8px; height: 8px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 15px var(--acid); animation: signal-pulse 1.4s ease-in-out infinite; }
.system-status i { margin-left: 6px; color: rgb(255 255 255 / 45%); font-style: normal; }
.hero-viva h1 { max-width: 7.6ch; text-shadow: 0 0 42px rgb(255 255 255 / 5%); }
.hero-viva h1 span { color: transparent; -webkit-text-stroke: 2px var(--orange); text-shadow: 9px 9px 0 rgb(118 88 255 / 38%); }
.hero-viva .hero-lead { max-width: 680px; }
.night-console { overflow: hidden; border-color: rgb(217 255 67 / 42%); background: linear-gradient(160deg, rgb(9 10 17 / 86%), rgb(24 8 29 / 82%)); box-shadow: 18px 18px 0 rgb(255 90 24 / 16%), inset 0 0 60px rgb(118 88 255 / 8%); }
.night-console::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent 0 4px, rgb(255 255 255 / 2%) 5px); pointer-events: none; }
.console-head, .console-foot { display: flex; justify-content: space-between; align-items: center; color: var(--acid); font: 800 8px/1 var(--font-geist-mono); letter-spacing: .13em; }
.console-head { margin-bottom: 18px; padding-bottom: 13px; border-bottom: 1px solid rgb(255 255 255 / 12%); }
.console-head i { color: rgb(255 255 255 / 38%); font-style: normal; }
.halloween-clock { position: relative; display: grid; place-items: center; margin: -4px 0 18px; }
.clock-face { position: relative; width: min(100%, 260px); aspect-ratio: 1; background: url('./public/halloween-race-clock-frame-v1.png') center / contain no-repeat; filter: drop-shadow(0 0 18px rgb(217 255 67 / 18%)) drop-shadow(0 10px 20px rgb(0 0 0 / 42%)); }
.clock-face::before { content: ''; position: absolute; inset: 25%; border: 1px solid rgb(217 255 67 / 16%); border-radius: 50%; background: radial-gradient(circle, rgb(11 13 14 / 96%) 0 58%, rgb(6 8 9 / 80%) 72%, transparent 73%); box-shadow: inset 0 0 24px rgb(0 0 0 / 90%), 0 0 20px rgb(217 255 67 / 8%); }
.clock-digital { position: absolute; z-index: 2; inset: 29%; display: grid; grid-template-columns: 1fr auto; align-content: center; justify-content: center; gap: 4px 1px; text-align: center; }
.clock-digital small { grid-column: 1 / 3; color: var(--orange); font: 900 6px/1 var(--font-geist-mono); letter-spacing: .2em; }
.clock-digital strong { align-self: end; color: var(--acid); font: 950 30px/.9 var(--font-geist-mono); letter-spacing: -.1em; text-shadow: 0 0 12px rgb(217 255 67 / 34%); }
.clock-digital em { align-self: end; color: var(--orange); font: 900 12px/1 var(--font-geist-mono); font-style: normal; }
.clock-digital span { grid-column: 1 / 3; margin-top: 5px; color: rgb(255 255 255 / 40%); font: 800 5px/1.3 var(--font-geist-mono); letter-spacing: .11em; }
.clock-digital span i { display: inline-block; width: 5px; height: 5px; margin-right: 3px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 8px var(--acid); animation: signal-pulse 1s ease-in-out infinite; }
.night-console p { margin-bottom: 18px; font-size: clamp(21px, 2vw, 29px); }
.night-console p em { color: var(--acid); font-style: normal; }
.console-foot { padding-top: 13px; border-top: 1px solid rgb(255 255 255 / 12%); color: rgb(255 255 255 / 38%); }
.console-foot span:first-child { color: var(--orange); }

@keyframes scanner { 0% { transform: translateY(-18vh); opacity: 0; } 15%, 80% { opacity: .32; } 100% { transform: translateY(84vh); opacity: 0; } }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes signal-pulse { 50% { opacity: .35; transform: scale(.72); } }
@keyframes map-fog-drift { to { transform: translateX(34%) scale(1.12); opacity: .16; } }
@keyframes map-marker-pulse { 0% { opacity: .9; transform: translate(-50%, -50%) scale(.56); } 80%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(2.05); } }
@keyframes map-marker-hover { 0%, 100% { translate: 0 0; } 50% { translate: 0 -7px; } }
@keyframes map-bat-flight { 0%, 100% { margin-top: 0; margin-left: 0; opacity: .5; } 50% { margin-top: -13px; margin-left: 18px; opacity: .92; } }

.promo-carousel {
  isolation: isolate;
  position: relative;
  overflow: hidden;
  min-height: min(720px, 82svh);
  border-top: 1px solid rgb(255 255 255 / 12%);
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  background: #030307;
}
.promo-track { display: flex; min-height: inherit; transition: transform .9s cubic-bezier(.22, .74, .18, 1); will-change: transform; }
.promo-slide {
  --promo-accent: var(--orange);
  isolation: isolate;
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
  min-height: inherit;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px clamp(22px, 7vw, 108px) 116px;
  background: #05050b;
}
.promo-slide-fantasias { --promo-accent: var(--violet); }
.promo-slide-percursos { --promo-accent: var(--acid); }
.promo-slide-trofeus { --promo-accent: #f0be48; }
.promo-slide::before {
  content: '';
  position: absolute;
  z-index: 3;
  inset: 0;
  opacity: .17;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 94px, rgb(255 255 255 / 10%) 95px),
    repeating-linear-gradient(0deg, transparent 0 5px, rgb(255 255 255 / 4%) 6px);
  pointer-events: none;
}
.promo-slide::after {
  content: '';
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background: var(--promo-accent);
  box-shadow: 0 0 32px var(--promo-accent);
}
.promo-slide > img { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 46%; filter: saturate(.98) contrast(1.06); transform: scale(1.015); }
.promo-slide-beloto { background: radial-gradient(circle at 78% 44%, rgb(118 88 255 / 25%), transparent 28%), #05050b; }
.promo-slide-beloto > img { left: auto; width: min(64vw, 980px); object-position: 50% 52%; }
.promo-slide-fantasias > img { object-position: center 40%; }
.promo-slide-trofeus > img { object-position: center 45%; }
.promo-shadow { position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgb(3 3 7 / 98%) 0%, rgb(3 3 7 / 91%) 35%, rgb(3 3 7 / 35%) 70%, rgb(3 3 7 / 18%) 100%), linear-gradient(0deg, rgb(3 3 7 / 72%) 0%, transparent 48%); }
.promo-slide-beloto .promo-shadow { background: linear-gradient(90deg, rgb(3 3 7 / 99%) 0%, rgb(3 3 7 / 93%) 38%, rgb(17 5 29 / 35%) 73%, rgb(17 5 29 / 9%) 100%), linear-gradient(0deg, rgb(3 3 7 / 68%) 0%, transparent 48%); }
.promo-fog { position: absolute; z-index: 2; left: 35%; bottom: -20%; width: 78%; height: 42%; border-radius: 50%; background: color-mix(in srgb, var(--promo-accent) 16%, transparent); filter: blur(44px); opacity: .55; animation: promo-fog-drift 8s ease-in-out infinite alternate; pointer-events: none; }
.promo-copy { position: relative; z-index: 4; width: min(64vw, 980px); }
.promo-copy small { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; color: var(--promo-accent); font: 900 11px/1 var(--font-geist-mono); letter-spacing: .17em; }
.promo-copy small::before { content: ''; width: 42px; height: 2px; background: currentColor; box-shadow: 0 0 12px currentColor; }
.promo-copy h2 { max-width: 11ch; margin: 0; font-size: clamp(60px, 8.4vw, 132px); line-height: .79; letter-spacing: -.075em; text-wrap: balance; }
.promo-copy p { max-width: 680px; margin: 28px 0 30px; color: rgb(245 241 232 / 76%); font-size: clamp(16px, 1.45vw, 21px); line-height: 1.55; }
.promo-copy > a { display: inline-flex; align-items: center; gap: 28px; min-height: 58px; padding: 0 20px 0 25px; border: 1px solid var(--promo-accent); color: var(--paper); background: rgb(5 5 11 / 42%); box-shadow: 7px 7px 0 color-mix(in srgb, var(--promo-accent) 58%, transparent); font: 900 10px/1 var(--font-geist-mono); letter-spacing: .12em; transition: color .25s ease, background .25s ease, transform .25s ease; backdrop-filter: blur(10px); }
.promo-copy > a i { display: grid; place-items: center; width: 31px; height: 31px; color: var(--ink); background: var(--promo-accent); font: normal 18px/1 Arial, sans-serif; }
.promo-copy > a:hover, .promo-copy > a:focus-visible { color: var(--ink); background: var(--promo-accent); transform: translateY(-3px); outline: none; }
.promo-watermark { position: absolute; z-index: 2; right: -1.5vw; bottom: -2.5vw; color: transparent; font: 950 clamp(80px, 13vw, 220px)/.72 var(--font-geist-mono); letter-spacing: -.1em; -webkit-text-stroke: 1px rgb(255 255 255 / 13%); white-space: nowrap; pointer-events: none; }
.promo-controls { position: absolute; z-index: 7; right: clamp(22px, 7vw, 108px); bottom: 38px; display: flex; align-items: center; gap: 13px; }
.promo-controls > button { display: grid; place-items: center; width: 46px; height: 46px; padding: 0; border: 1px solid rgb(255 255 255 / 34%); color: var(--paper); background: rgb(5 5 11 / 60%); font-size: 20px; cursor: pointer; backdrop-filter: blur(10px); transition: color .2s ease, border-color .2s ease, background .2s ease; }
.promo-controls > button:hover, .promo-controls > button:focus-visible { color: var(--ink); border-color: var(--acid); background: var(--acid); outline: none; }
.promo-dots { display: flex; align-items: center; gap: 8px; }
.promo-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: rgb(255 255 255 / 34%); cursor: pointer; transition: width .25s ease, border-radius .25s ease, background .25s ease; }
.promo-dots button.active { width: 28px; border-radius: 999px; background: var(--acid); }
.promo-progress { overflow: hidden; width: clamp(76px, 9vw, 148px); height: 3px; background: rgb(255 255 255 / 18%); }
.promo-progress i { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--orange), var(--acid)); transform-origin: left; animation: promo-progress 10s linear both; }

@keyframes promo-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes promo-fog-drift { to { transform: translateX(10%) scale(1.12); opacity: .72; } }

.live-system { padding: 120px clamp(22px, 6vw, 96px); background: radial-gradient(circle at 15% 20%, rgb(118 88 255 / 20%), transparent 32%), #080710; }
.live-system-head { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 8vw; margin-bottom: 64px; }
.live-system-head h2 { max-width: 9ch; margin: 0; font-size: clamp(58px, 8vw, 126px); line-height: .82; letter-spacing: -.075em; }
.live-system-head > p { max-width: 540px; margin: 0 0 8px; color: var(--muted); font-size: 18px; line-height: 1.6; }
.system-grid { display: grid; grid-template-columns: .9fr 1.25fr .85fr; gap: 14px; }
.tech-card { position: relative; min-width: 0; padding: 28px; border: 1px solid rgb(255 255 255 / 13%); background: rgb(255 255 255 / 3%); box-shadow: inset 0 0 50px rgb(118 88 255 / 4%); }
.tech-card-head { display: flex; justify-content: space-between; gap: 14px; padding-bottom: 14px; border-bottom: 1px solid rgb(255 255 255 / 10%); color: var(--acid); font: 800 8px/1 var(--font-geist-mono); letter-spacing: .13em; }
.tech-card-head i { color: rgb(255 255 255 / 32%); font-style: normal; text-align: right; }
.tech-card h3 { margin: 23px 0 10px; font-size: clamp(29px, 3vw, 44px); line-height: .93; letter-spacing: -.055em; }
.tech-card > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.pulse-visual { isolation: isolate; position: relative; display: grid; place-items: center; overflow: hidden; width: min(100%, 340px); aspect-ratio: 1; margin: 30px auto 34px; border: 1px solid rgb(217 255 67 / 46%); border-radius: 50%; background: repeating-radial-gradient(circle, transparent 0 18%, rgb(217 255 67 / 16%) 18.4% 18.8%, transparent 19.2% 25%), radial-gradient(circle, rgb(217 255 67 / 17%) 0, rgb(118 88 255 / 10%) 38%, #070810 72%); box-shadow: 0 0 0 10px rgb(217 255 67 / 3%), 0 0 55px rgb(217 255 67 / 13%), inset 0 0 48px rgb(0 0 0 / 78%); }
.pulse-visual::before { content: ''; position: absolute; z-index: 1; inset: 7%; border: 1px solid rgb(217 255 67 / 22%); border-radius: 50%; box-shadow: inset 0 0 0 1px rgb(118 88 255 / 12%), 0 0 30px rgb(217 255 67 / 7%); }
.pulse-visual::after { content: none; }
.pulse-grid { position: absolute; z-index: -1; inset: 0; background-image: linear-gradient(rgb(217 255 67 / 7%) 1px, transparent 1px), linear-gradient(90deg, rgb(217 255 67 / 7%) 1px, transparent 1px); background-size: 28px 28px; mask-image: radial-gradient(circle, #000 42%, transparent 73%); }
.pulse-sweep { position: absolute; z-index: 0; inset: 2%; border-radius: 50%; background: conic-gradient(from -42deg, transparent 0 72%, rgb(217 255 67 / 3%) 80%, rgb(217 255 67 / 43%) 99%, transparent 100%); animation: event-radar-spin 4.8s linear infinite; }
.pulse-sweep::after { content: ''; position: absolute; left: 50%; top: 50%; width: 44%; height: 1px; background: linear-gradient(90deg, var(--acid), transparent); box-shadow: 0 0 9px var(--acid); transform-origin: left; transform: rotate(-90deg); }
.pulse-axis { position: absolute; z-index: 0; opacity: .22; background: linear-gradient(90deg, transparent, var(--acid), transparent); }
.pulse-axis-x { left: 7%; right: 7%; top: 50%; height: 1px; }
.pulse-axis-y { top: 7%; bottom: 7%; left: 50%; width: 1px; background: linear-gradient(transparent, var(--acid), transparent); }
.pulse-blip { position: absolute; z-index: 3; display: grid; place-items: center; width: 38px; height: 38px; color: var(--acid); font: normal 24px/1 "Segoe UI Emoji", "Apple Color Emoji", sans-serif; filter: drop-shadow(0 0 7px rgb(217 255 67 / 65%)); animation: monster-blip 2.4s ease-in-out infinite; }
.pulse-blip::after { content: ''; position: absolute; inset: 2px; z-index: -1; border: 1px solid currentColor; border-radius: 50%; background: rgb(5 8 10 / 54%); box-shadow: 0 0 14px currentColor; animation: monster-signal 2.4s ease-out infinite; }
.blip-one { left: 16%; top: 20%; color: var(--orange); }
.blip-two { right: 12%; top: 35%; color: var(--acid); animation-delay: -.7s; }
.blip-two::after { animation-delay: -.7s; }
.blip-three { left: 17%; bottom: 20%; color: var(--violet); animation-delay: -1.2s; }
.blip-three::after { animation-delay: -1.2s; }
.blip-four { right: 22%; bottom: 12%; color: var(--orange); animation-delay: -1.8s; }
.blip-four::after { animation-delay: -1.8s; }
.blip-five { left: 41%; top: 7%; animation-delay: -2.1s; }
.blip-five::after { animation-delay: -2.1s; }
.pulse-core { z-index: 4; display: grid; grid-template-rows: auto auto auto; place-items: center; align-content: center; gap: 8px; width: 158px; aspect-ratio: 1; border: 2px solid rgb(217 255 67 / 68%); border-radius: 50%; background: radial-gradient(circle at 50% 32%, #2b3617, #07090c 66%); box-shadow: 0 0 0 8px rgb(5 8 10 / 82%), 0 0 42px rgb(217 255 67 / 24%), inset 0 0 28px rgb(0 0 0 / 88%); }
.pulse-core small, .pulse-core em { color: rgb(255 255 255 / 64%); font: 900 8px/1 var(--font-geist-mono); letter-spacing: .15em; }
.pulse-core b { margin: 0; color: #e6ff75; font: 950 64px/.82 var(--font-geist-mono); font-variant-numeric: tabular-nums; letter-spacing: -.02em; text-shadow: 0 0 12px rgb(217 255 67 / 38%); }
.pulse-core em { color: var(--orange); font-style: normal; }
.pulse-coordinates { position: absolute; z-index: 4; bottom: 9%; color: rgb(255 255 255 / 32%); font: 800 7px/1 var(--font-geist-mono); letter-spacing: .14em; }
.live-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 28px; background: rgb(255 255 255 / 13%); }
.live-metrics div { padding: 17px 10px; background: #0b0a12; }
.live-metrics b { display: block; color: var(--orange); font: 900 25px/1 var(--font-geist-mono); }
.live-metrics span { display: block; margin-top: 8px; color: rgb(255 255 255 / 38%); font: 800 7px/1.2 var(--font-geist-mono); letter-spacing: .09em; }
.planner-card { background: linear-gradient(150deg, rgb(118 88 255 / 14%), rgb(255 255 255 / 3%)); }
.mode-switch { display: grid; grid-template-columns: 1fr 1fr; margin-top: 28px; border: 1px solid rgb(255 255 255 / 13%); }
.mode-switch button { min-height: 48px; border: 0; background: transparent; color: var(--muted); font: 800 11px/1 var(--font-geist-mono); cursor: pointer; }
.mode-switch button.active { background: var(--acid); color: var(--ink); }
.pace-control { display: grid; grid-template-columns: 1fr auto; gap: 15px; margin: 30px 0; color: var(--muted); font: 800 9px/1 var(--font-geist-mono); letter-spacing: .1em; }
.pace-control b { color: var(--orange); font-size: 13px; }
.pace-control input { grid-column: 1 / -1; width: 100%; accent-color: var(--acid); }
.planner-action { width: 100%; min-height: 52px; border: 1px solid var(--acid); background: transparent; color: var(--acid); font: 900 10px/1 var(--font-geist-mono); letter-spacing: .12em; cursor: pointer; }
.planner-action:hover { background: var(--acid); color: var(--ink); }
.plan-result { display: grid; margin-top: 28px; padding: 24px; border-left: 4px solid var(--orange); background: rgb(0 0 0 / 24%); }
.plan-result small { color: var(--orange); font: 800 8px/1 var(--font-geist-mono); letter-spacing: .12em; }
.plan-result strong { margin: 12px 0; color: var(--acid); font: 900 clamp(50px, 5vw, 72px)/.9 var(--font-geist-mono); letter-spacing: -.09em; }
.plan-result span { color: var(--muted); font-size: 11px; line-height: 1.5; }
.photo-card { overflow: hidden; background: radial-gradient(circle at 78% 23%, rgb(217 255 67 / 10%), transparent 27%), linear-gradient(155deg, rgb(255 90 24 / 8%), rgb(118 88 255 / 7%)); }
.photo-booth-preview { isolation: isolate; position: relative; overflow: hidden; width: min(100%, 300px); aspect-ratio: 4 / 5; margin: 28px auto; border: 8px solid var(--acid); background: #07070b; box-shadow: 10px 10px 0 rgb(255 90 24 / 28%), 0 0 45px rgb(217 255 67 / 10%); }
.photo-booth-preview::before { content: ''; position: absolute; z-index: 1; inset: 14px; border: 3px solid var(--orange); box-shadow: inset 0 0 34px rgb(0 0 0 / 30%); }
.photo-booth-preview::after { content: ''; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgb(3 3 8 / 76%), transparent 32%, transparent 58%, rgb(3 3 8 / 88%)); }
.photo-booth-preview img { width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(.82) contrast(1.08); }
.photo-booth-preview > div { position: absolute; z-index: 2; inset: 24px; display: flex; flex-direction: column; align-items: flex-start; pointer-events: none; }
.photo-booth-preview b { color: var(--paper); font: 950 22px/.9 var(--font-geist-sans); letter-spacing: -.06em; text-shadow: 0 3px 14px #000; }
.photo-booth-preview strong { margin-top: 3px; color: #24164a; font: italic 950 47px/.78 var(--font-geist-sans); letter-spacing: -.08em; -webkit-text-stroke: 1.5px var(--orange); text-shadow: 5px 5px 0 rgb(118 88 255 / 74%), 0 4px 16px #000; }
.photo-booth-preview span { margin-top: 9px; color: var(--acid); font: 900 8px/1 var(--font-geist-mono); letter-spacing: .19em; }
.photo-booth-preview em { margin-top: auto; align-self: center; color: var(--paper); font: 900 9px/1 var(--font-geist-mono); font-style: normal; letter-spacing: .1em; }
.photo-booth-launch { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 54px; margin-top: 24px; padding: 0 18px; border: 1px solid var(--acid); color: var(--ink); background: var(--acid); box-shadow: 7px 7px 0 var(--orange); font: 950 9px/1 var(--font-geist-mono); letter-spacing: .1em; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.photo-booth-launch:hover, .photo-booth-launch:focus-visible { outline: none; transform: translateY(-3px); box-shadow: 10px 10px 0 var(--orange); }
.photo-booth-launch i { font: normal 20px/1 Arial, sans-serif; }
.photo-privacy { display: block; margin-top: 17px; color: rgb(255 255 255 / 38%); font: 800 7px/1.5 var(--font-geist-mono); letter-spacing: .09em; }

.event-gallery { position: relative; overflow: hidden; padding: 120px clamp(22px, 5vw, 84px); background: radial-gradient(circle at 88% 12%, rgb(118 88 255 / 22%), transparent 28%), #07070b; color: var(--paper); }
.event-gallery::before { content: 'PHOTO ARCHIVE // CERQUILHO'; position: absolute; right: -118px; top: 330px; color: rgb(217 255 67 / 12%); font: 900 12px/1 var(--font-geist-mono); letter-spacing: .22em; transform: rotate(90deg); }
.event-gallery-head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 7vw; margin-bottom: 62px; }
.event-gallery-head .section-tag { color: var(--acid); }
.event-gallery-head h2 { max-width: 10ch; margin: 0; font-size: clamp(58px, 8.2vw, 132px); line-height: .8; letter-spacing: -.075em; }
.gallery-counter { width: min(100%, 280px); padding-left: 24px; border-left: 2px solid var(--orange); }
.gallery-counter strong { color: var(--acid); font: 950 74px/.8 var(--font-geist-mono); letter-spacing: -.08em; }
.gallery-counter span { display: inline-block; margin-left: 15px; color: var(--paper); font: 900 9px/1.35 var(--font-geist-mono); letter-spacing: .12em; }
.gallery-counter p { margin: 19px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.event-gallery-grid { display: grid; grid-template-columns: repeat(15, 1fr); grid-template-rows: repeat(2, minmax(330px, 42vh)); gap: 10px; }
.event-gallery-shot { isolation: isolate; position: relative; overflow: hidden; min-width: 0; min-height: 0; padding: 0; border: 0; background: #0c0b11; color: var(--paper); text-align: left; cursor: zoom-in; }
.gallery-frame-1 { grid-column: 1 / 8; grid-row: 1 / 3; }
.gallery-frame-2 { grid-column: 8 / 12; grid-row: 1; }
.gallery-frame-3 { grid-column: 12 / 16; grid-row: 1; }
.gallery-frame-4 { grid-column: 8 / 12; grid-row: 2; }
.gallery-frame-5 { grid-column: 12 / 16; grid-row: 2; }
.event-gallery-shot::after { content: ''; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, transparent 22%, rgb(2 2 7 / 18%) 48%, rgb(2 2 7 / 96%) 100%); transition: background .35s ease; }
.event-gallery-shot img { width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(.92) contrast(1.03); transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.gallery-frame-1 img { object-position: 53% center; }
.gallery-frame-2 img { object-position: center 42%; }
.gallery-frame-3 img { object-position: center 45%; }
.gallery-frame-4 img { object-position: center; }
.gallery-frame-5 img { object-position: center 42%; }
.event-gallery-shot:hover img, .event-gallery-shot:focus-visible img { transform: scale(1.045); filter: saturate(1.1) contrast(1.04); }
.event-gallery-shot:focus-visible { outline: 3px solid var(--acid); outline-offset: -3px; }
.event-gallery-shot > div { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 23px; }
.event-gallery-shot small { display: inline-flex; padding: 7px 9px; color: var(--ink); background: var(--acid); font: 900 8px/1 var(--font-geist-mono); letter-spacing: .13em; }
.event-gallery-shot h3 { max-width: 12ch; margin: 13px 0 0; font-size: clamp(25px, 2.6vw, 43px); line-height: .9; letter-spacing: -.05em; }
.gallery-frame-1 h3 { max-width: 10ch; font-size: clamp(46px, 5.5vw, 88px); }
.event-gallery-shot p { max-width: 500px; margin: 12px 0 0; color: rgb(245 241 232 / 70%); font-size: 12px; line-height: 1.45; }
.gallery-frame-2 p, .gallery-frame-3 p, .gallery-frame-4 p, .gallery-frame-5 p { display: none; }
.gallery-expand { position: absolute; z-index: 3; right: 18px; top: 18px; display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgb(255 255 255 / 40%); border-radius: 50%; background: rgb(5 5 10 / 42%); font-size: 19px; backdrop-filter: blur(8px); transition: color .25s ease, background .25s ease, transform .25s ease; }
.event-gallery-shot:hover .gallery-expand { color: var(--ink); background: var(--acid); border-color: var(--acid); transform: rotate(45deg); }
.event-gallery-foot { display: flex; align-items: center; justify-content: space-between; gap: 26px; margin-top: 34px; }
.event-gallery-foot small { color: rgb(255 255 255 / 35%); font: 800 8px/1.4 var(--font-geist-mono); letter-spacing: .15em; }
.event-gallery-foot > div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.event-gallery-foot a, .event-gallery-foot button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; font: 900 10px/1 var(--font-geist-mono); letter-spacing: .1em; cursor: pointer; }
.event-gallery-foot a { color: var(--ink); background: var(--acid); box-shadow: 7px 7px 0 var(--orange); }
.event-gallery-foot button { border: 1px solid #35ed77; color: #35ed77; background: transparent; }
.gallery-lightbox { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 62px 8vw; background: rgb(2 2 6 / 94%); backdrop-filter: blur(18px); }
.gallery-lightbox::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent 0 79px, rgb(217 255 67 / 3%) 80px); pointer-events: none; }
.gallery-lightbox figure { position: relative; z-index: 1; width: min(1180px, 80vw); height: min(78vh, 790px); margin: 0; border: 1px solid rgb(255 255 255 / 18%); background: #06060a; box-shadow: 22px 22px 0 rgb(255 90 24 / 18%); }
.gallery-lightbox figure::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgb(3 3 8 / 92%) 100%); pointer-events: none; }
.gallery-lightbox figure img { width: 100%; height: 100%; display: block; object-fit: cover; }
.gallery-lightbox figcaption { position: absolute; z-index: 2; left: 38px; right: 38px; bottom: 34px; }
.gallery-lightbox figcaption small { color: var(--acid); font: 900 9px/1 var(--font-geist-mono); letter-spacing: .15em; }
.gallery-lightbox figcaption h3 { max-width: 14ch; margin: 13px 0 10px; font-size: clamp(38px, 5vw, 76px); line-height: .86; letter-spacing: -.06em; }
.gallery-lightbox figcaption p { max-width: 620px; margin: 0; color: rgb(245 241 232 / 72%); line-height: 1.5; }
.gallery-close, .gallery-nav { position: absolute; z-index: 3; border: 1px solid rgb(255 255 255 / 25%); background: rgb(8 8 13 / 76%); color: var(--paper); cursor: pointer; backdrop-filter: blur(10px); }
.gallery-close { right: 28px; top: 24px; min-height: 44px; padding: 0 16px; font: 900 9px/1 var(--font-geist-mono); letter-spacing: .12em; }
.gallery-nav { top: 50%; width: 58px; height: 58px; border-radius: 50%; font-size: 25px; transform: translateY(-50%); }
.gallery-prev { left: 24px; }
.gallery-next { right: 24px; }
.gallery-close:hover, .gallery-nav:hover { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.gallery-position { position: absolute; z-index: 3; right: 30px; bottom: 23px; color: var(--acid); font: 900 10px/1 var(--font-geist-mono); letter-spacing: .14em; }


.photo-booth { position: fixed; z-index: 100; inset: 0; overflow: auto; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 76px 24px 24px; background: radial-gradient(circle at 50% 42%, rgb(118 88 255 / 18%), transparent 35%), repeating-linear-gradient(90deg, transparent 0 79px, rgb(217 255 67 / 3%) 80px), rgb(2 2 6 / 97%); backdrop-filter: blur(16px); }
.photo-booth-head { position: fixed; z-index: 5; left: 24px; right: 24px; top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.photo-booth-head small { color: var(--acid); font: 900 7px/1 var(--font-geist-mono); letter-spacing: .15em; }
.photo-booth-head h2 { margin: 5px 0 0; font: 950 24px/.9 var(--font-geist-mono); letter-spacing: -.06em; }
.photo-booth-head button { min-height: 42px; padding: 0 14px; border: 1px solid rgb(255 255 255 / 25%); color: var(--paper); background: rgb(8 8 13 / 76%); font: 900 8px/1 var(--font-geist-mono); letter-spacing: .12em; cursor: pointer; }
.photo-booth-stage { isolation: isolate; position: relative; overflow: hidden; width: min(88vw, calc((100svh - 260px) * .8), 520px); aspect-ratio: 4 / 5; border: 10px solid var(--acid); background: radial-gradient(circle, #1b1223, #040408 70%); box-shadow: 14px 14px 0 rgb(255 90 24 / 28%), 0 0 70px rgb(217 255 67 / 10%); }
.photo-booth-stage::before { content: ''; position: absolute; z-index: 3; inset: 16px; border: 4px solid var(--orange); pointer-events: none; }
.photo-booth-stage::after { content: ''; position: absolute; z-index: 2; inset: 0; background: linear-gradient(180deg, rgb(3 3 8 / 72%), transparent 28%, transparent 63%, rgb(3 3 8 / 88%)), repeating-linear-gradient(0deg, transparent 0 4px, rgb(255 255 255 / 3%) 5px); pointer-events: none; }
.photo-booth-stage video, .photo-booth-stage .photo-result { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-booth-stage video.is-user { transform: scaleX(-1); }
.stage-largada video { filter: saturate(.94) contrast(1.07); }
.stage-fantasma video { filter: saturate(.62) contrast(1.08) hue-rotate(18deg); }
.stage-vampira video { filter: saturate(.88) contrast(1.16) sepia(.12) hue-rotate(318deg); }
.photo-booth-stage .photo-result { z-index: 4; }
.photo-frame-overlay { position: absolute; z-index: 5; inset: 33px; color: var(--paper); pointer-events: none; }
.photo-frame-overlay::before { content: ''; position: absolute; z-index: -1; inset: -33px; opacity: .72; }
.frame-logo { position: absolute; left: 0; top: 0; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.frame-logo b { color: var(--paper); font: 950 clamp(22px, 4.2vw, 36px)/.88 var(--font-geist-sans); letter-spacing: -.07em; text-shadow: 0 3px 14px #000; }
.frame-logo strong { margin-top: 3px; color: #24164a; font: italic 950 clamp(45px, 9vw, 76px)/.76 var(--font-geist-sans); letter-spacing: -.09em; -webkit-text-stroke: clamp(1px, .3vw, 2px) var(--orange); text-shadow: clamp(5px, 1vw, 9px) clamp(5px, 1vw, 9px) 0 rgb(118 88 255 / 76%), 0 4px 16px #000; }
.frame-logo span { margin-top: 10px; color: var(--acid); font: 900 clamp(7px, 1.2vw, 10px)/1 var(--font-geist-mono); letter-spacing: .19em; text-shadow: 0 2px 9px #000; }
.frame-footer { position: absolute; left: 0; right: 0; bottom: 0; display: grid; justify-items: center; gap: 6px; text-align: center; }
.frame-footer small { color: var(--acid); font: 900 clamp(7px, 1.2vw, 10px)/1 var(--font-geist-mono); letter-spacing: .16em; text-shadow: 0 2px 9px #000; }
.frame-footer b { font: 950 clamp(13px, 2.4vw, 20px)/1 var(--font-geist-mono); text-shadow: 0 2px 14px #000; }
.frame-footer i { color: var(--orange); font: 900 clamp(6px, 1vw, 9px)/1 var(--font-geist-mono); font-style: normal; letter-spacing: .08em; text-shadow: 0 2px 9px #000; }
.photo-frame-overlay em { position: absolute; top: 46%; display: none; font: normal clamp(26px, 5vw, 44px)/1 "Segoe UI Emoji", sans-serif; filter: drop-shadow(0 0 12px rgb(217 255 67 / 40%)); opacity: .86; }
.photo-frame-overlay em:nth-of-type(1) { left: -13px; transform: rotate(-12deg); }
.photo-frame-overlay em:nth-of-type(2) { right: -13px; top: 60%; transform: rotate(14deg); }
.frame-largada::before { background: repeating-linear-gradient(118deg, transparent 0 36px, rgb(255 90 24 / 12%) 37px 39px, transparent 40px 76px); mask-image: linear-gradient(90deg, transparent 36%, #000); }
.frame-fantasma::before { background: radial-gradient(ellipse at 22% 68%, rgb(217 255 67 / 20%), transparent 34%), radial-gradient(ellipse at 82% 78%, rgb(215 219 255 / 15%), transparent 38%); animation: photo-fog 4.8s ease-in-out infinite alternate; }
.frame-fantasma em { display: block; }
.frame-vampira::before { background: radial-gradient(circle at 82% 34%, rgb(255 230 210 / 38%) 0 10%, rgb(255 90 24 / 12%) 20%, transparent 35%), linear-gradient(180deg, rgb(97 0 30 / 14%), transparent 60%); }
.frame-vampira em:nth-of-type(2) { display: block; }
.frame-vampira .frame-footer small { color: #ff8a5c; }
.frame-vampira .frame-footer b { text-shadow: 0 0 12px rgb(179 60 255 / 62%), 0 2px 12px #000; }
.photo-frame-picker { display: flex; justify-content: center; gap: 7px; width: min(94vw, 600px); }
.photo-frame-picker button { flex: 1; min-height: 38px; padding: 0 10px; border: 1px solid rgb(255 255 255 / 19%); color: rgb(255 255 255 / 56%); background: rgb(255 255 255 / 4%); font: 900 7px/1.2 var(--font-geist-mono); letter-spacing: .08em; cursor: pointer; }
.photo-frame-picker button.active { border-color: var(--acid); color: var(--ink); background: var(--acid); box-shadow: 4px 4px 0 rgb(255 90 24 / 40%); }
.camera-wait { position: absolute; z-index: 6; inset: 0; display: grid; place-items: center; align-content: center; gap: 16px; padding: 40px; color: var(--acid); background: rgb(3 3 8 / 72%); text-align: center; }
.camera-wait span { width: 20px; height: 20px; border: 2px solid rgb(217 255 67 / 25%); border-top-color: var(--acid); border-radius: 50%; animation: radar-spin 1s linear infinite; }
.camera-wait b { font: 900 8px/1.45 var(--font-geist-mono); letter-spacing: .12em; }
.photo-booth-status { min-height: 13px; margin: 0; color: rgb(255 255 255 / 50%); font: 800 7px/1.4 var(--font-geist-mono); letter-spacing: .12em; text-align: center; }
.photo-booth-controls { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; }
.photo-booth-controls > button { min-height: 45px; padding: 0 16px; border: 1px solid rgb(255 255 255 / 24%); color: var(--paper); background: rgb(255 255 255 / 5%); font: 900 8px/1 var(--font-geist-mono); letter-spacing: .1em; cursor: pointer; }
.photo-booth-controls > button:first-child:not(.photo-shutter) { border-color: var(--acid); color: var(--ink); background: var(--acid); }
.photo-booth-controls .photo-shutter { display: grid; width: 66px; min-height: 66px; padding: 7px; place-items: center; border: 2px solid var(--paper); border-radius: 50%; background: transparent; }
.photo-shutter span { width: 100%; height: 100%; border-radius: 50%; background: var(--orange); box-shadow: 0 0 24px rgb(255 90 24 / 38%); transition: transform .15s ease; }
.photo-shutter:hover span, .photo-shutter:focus-visible span { transform: scale(.88); }
.photo-shutter:disabled { opacity: .35; cursor: wait; }

@keyframes pulse-ring { 0% { transform: scale(.4); opacity: 0; } 35% { opacity: 1; } 100% { transform: scale(2.3); opacity: 0; } }
@keyframes radar-spin { to { transform: rotate(360deg); } }
@keyframes event-radar-spin { to { transform: rotate(360deg); } }
@keyframes photo-fog { to { transform: translateX(5%) scale(1.08); opacity: .92; } }
@keyframes monster-blip { 50% { transform: translateY(-4px) scale(1.08); filter: drop-shadow(0 0 12px currentColor); } }
@keyframes monster-signal { 0% { transform: scale(.6); opacity: 0; } 28% { opacity: .7; } 100% { transform: scale(1.8); opacity: 0; } }
@keyframes target-beat { 50% { transform: translate(-50%, -50%) scale(.84); opacity: .72; } }

.admin-shell { min-height: 100vh; padding: 36px clamp(18px, 4vw, 64px) 80px; background: #f2efe7; color: #16131a; }
.admin-header { display: flex; justify-content: space-between; align-items: end; gap: 24px; padding-bottom: 28px; border-bottom: 2px solid #17141b; }
.admin-header span, .card-heading small, .funnel-card > small, .registrations-card small { color: #6a38e8; font: 800 10px/1 var(--font-geist-mono); letter-spacing: .16em; }
.admin-header h1 { margin: 7px 0 0; font-size: clamp(34px, 4vw, 64px); letter-spacing: -.06em; }
.admin-user { display: grid; grid-template-columns: auto auto; align-items: center; gap: 6px 12px; text-align: right; }
.admin-user small { color: #77706a; font: 800 9px/1 var(--font-geist-mono); letter-spacing: .12em; }
.admin-user b { font-size: 13px; }
.admin-user a { grid-column: 2; color: #d84013; font-size: 12px; font-weight: 800; }
.kpi-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; margin: 28px 0; border: 1px solid #ccc5ba; background: #ccc5ba; }
.kpi-grid article { padding: 26px; background: #fff; }
.kpi-grid small { display: block; color: #77706a; font: 800 9px/1 var(--font-geist-mono); letter-spacing: .14em; }
.kpi-grid strong { display: block; margin: 28px 0 12px; font: 900 clamp(42px, 5vw, 78px)/.8 var(--font-geist-mono); letter-spacing: -.1em; }
.kpi-grid span { color: #77706a; font-size: 13px; }
.admin-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 20px; }
.chart-card, .funnel-card, .interaction-card, .registrations-card { border: 1px solid #d1cabf; background: #fff; padding: 28px; }
.card-heading { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.card-heading h2, .funnel-card h2 { margin: 7px 0 0; font-size: 25px; letter-spacing: -.04em; }
.card-heading > span { color: #77706a; font-size: 11px; }
.bar-chart { height: 250px; display: flex; align-items: end; gap: 14px; margin-top: 34px; padding-top: 25px; border-bottom: 1px solid #d8d1c7; }
.bar-column { flex: 1; height: 100%; display: grid; grid-template-rows: 24px 1fr 28px; align-items: end; text-align: center; }
.bar-column b { color: #665d59; font-size: 11px; }
.bar-column > span { justify-self: center; width: min(100%, 46px); min-height: 5px; background: linear-gradient(#d9ff43, #7658ff); }
.bar-column small { align-self: center; color: #77706a; font-size: 10px; text-transform: uppercase; }
.funnel-card > div { display: flex; justify-content: space-between; padding: 19px 0; border-bottom: 1px solid #e0dad1; }
.funnel-card > div span { color: #67615c; }
.funnel-card > div b { font: 800 22px/1 var(--font-geist-mono); }
.interaction-card { grid-column: 1 / -1; background: #17131e; color: #fff; border-color: #17131e; }
.interaction-card .card-heading strong { color: #d9ff43; font: 900 52px/.8 var(--font-geist-mono); letter-spacing: -.1em; }
.interaction-bars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px 30px; margin-top: 28px; }
.interaction-bars > div { display: grid; grid-template-columns: 150px 1fr 30px; gap: 12px; align-items: center; }
.interaction-bars span { color: #c4bdca; font-size: 11px; }
.interaction-bars i { overflow: hidden; height: 7px; background: rgb(255 255 255 / 10%); }
.interaction-bars i b { display: block; height: 100%; min-width: 2px; background: linear-gradient(90deg, #7658ff, #d9ff43); }
.interaction-bars > div > strong { text-align: right; font: 800 13px/1 var(--font-geist-mono); }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
.audience-grid > article { padding: 28px; border: 1px solid #d1cabf; background: #fff; }
.insight-list { margin-top: 24px; border-top: 1px solid #e1dbd2; }
.insight-list > div { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 15px 0; border-bottom: 1px solid #e1dbd2; }
.insight-list span { color: #67615c; font-size: 13px; text-transform: capitalize; }
.insight-list b { font: 850 18px/1 var(--font-geist-mono); }
.content-studio { margin-top: 20px; padding: 28px; border: 1px solid #221d29; background: #17131e; color: #fff; }
.content-studio-head { display: flex; align-items: start; justify-content: space-between; gap: 28px; }
.content-studio-head small { color: #d9ff43; font: 800 10px/1 var(--font-geist-mono); letter-spacing: .16em; }
.content-studio-head h2 { margin: 8px 0 10px; font-size: clamp(28px, 4vw, 46px); letter-spacing: -.05em; }
.content-studio-head p { margin: 0; color: #aaa2b2; font-size: 13px; }
.content-studio-head > a { flex: 0 0 auto; padding: 12px 16px; border: 1px solid rgb(255 255 255 / 25%); color: #d9ff43; font: 800 10px/1 var(--font-geist-mono); }
.content-tabs { display: flex; gap: 6px; margin-top: 28px; border-bottom: 1px solid rgb(255 255 255 / 13%); }
.content-tabs button { display: inline-flex; align-items: center; gap: 9px; padding: 15px 18px; border: 0; border-bottom: 3px solid transparent; background: transparent; color: #aaa2b2; font-weight: 800; cursor: pointer; }
.content-tabs button.active { border-bottom-color: #d9ff43; color: #fff; }
.content-tabs b { display: inline-grid; min-width: 22px; height: 22px; place-items: center; border-radius: 50%; background: rgb(255 255 255 / 9%); color: #d9ff43; font: 800 10px/1 var(--font-geist-mono); }
.content-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 0; }
.content-toolbar p { margin: 0; color: #aaa2b2; font-size: 12px; }
.content-toolbar button { padding: 13px 17px; border: 0; background: #ff5a18; color: #08070b; font: 850 10px/1 var(--font-geist-mono); text-transform: uppercase; cursor: pointer; }
.content-list { display: grid; gap: 12px; }
.content-editor { display: grid; grid-template-columns: 220px minmax(0, 1fr) 120px; gap: 20px; padding: 18px; border: 1px solid rgb(255 255 255 / 15%); background: #0c0a11; transition: opacity .2s ease; }
.content-editor.inactive { opacity: .55; }
.content-preview { position: relative; overflow: hidden; min-height: 190px; border: 1px solid rgb(255 255 255 / 12%); background: #050409; }
.content-preview img { width: 100%; height: 100%; min-height: 190px; display: block; object-fit: cover; }
.content-preview > span { position: absolute; inset: 0; display: grid; place-items: center; color: #716a77; font: 800 9px/1 var(--font-geist-mono); }
.content-preview > b { position: absolute; left: 10px; bottom: 10px; padding: 7px; background: #d9ff43; color: #0b0a0d; font: 900 13px/1 var(--font-geist-mono); }
.content-fields { display: grid; gap: 11px; }
.content-fields label { display: grid; gap: 6px; color: #9b939f; font: 750 8px/1 var(--font-geist-mono); letter-spacing: .11em; text-transform: uppercase; }
.content-fields input, .content-fields textarea { width: 100%; padding: 11px 12px; border: 1px solid rgb(255 255 255 / 16%); border-radius: 0; outline: 0; background: #16121c; color: #fff; font: 500 12px/1.35 var(--font-geist-sans); resize: vertical; }
.content-fields input:focus, .content-fields textarea:focus { border-color: #d9ff43; box-shadow: 0 0 0 2px rgb(217 255 67 / 10%); }
.content-field-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(120px, .45fr); gap: 11px; }
.content-editor-actions { display: flex; flex-direction: column; gap: 8px; }
.content-editor-actions button { min-height: 36px; border: 1px solid rgb(255 255 255 / 17%); background: transparent; color: #fff; font: 800 9px/1 var(--font-geist-mono); cursor: pointer; }
.content-editor-actions > div { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.content-editor-actions button:disabled { opacity: .25; cursor: default; }
.content-editor-actions .save-content { border-color: #d9ff43; background: #d9ff43; color: #09070c; }
.content-editor-actions .delete-content { color: #ff7650; }
.content-editor-actions > small { min-height: 14px; color: #d9ff43; font: 750 8px/1.2 var(--font-geist-mono); text-align: center; }
.content-editor-actions > small.error { color: #ff7650; }
.visibility-toggle { display: flex; align-items: center; gap: 8px; min-height: 36px; color: #c2bac8; font: 750 9px/1 var(--font-geist-mono); cursor: pointer; }
.visibility-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.visibility-toggle span { position: relative; width: 34px; height: 18px; border-radius: 99px; background: #48414d; }
.visibility-toggle span::after { content: ''; position: absolute; top: 3px; left: 3px; width: 12px; height: 12px; border-radius: 50%; background: #fff; transition: transform .2s ease; }
.visibility-toggle input:checked + span { background: #6a38e8; }
.visibility-toggle input:checked + span::after { transform: translateX(16px); background: #d9ff43; }
.content-empty { padding: 50px; border: 1px dashed rgb(255 255 255 / 22%); color: #aaa2b2; text-align: center; }
.registrations-card { margin-top: 20px; }
.export-button { padding: 12px 16px; background: #16131a; color: #d9ff43; font: 800 10px/1 var(--font-geist-mono); letter-spacing: .1em; }
.table-wrap { overflow-x: auto; margin-top: 26px; }
table { width: 100%; border-collapse: collapse; min-width: 900px; }
th { padding: 12px; border-bottom: 2px solid #17141b; color: #77706a; font: 800 9px/1 var(--font-geist-mono); letter-spacing: .12em; text-align: left; text-transform: uppercase; }
td { padding: 16px 12px; border-bottom: 1px solid #e1dbd2; vertical-align: middle; }
td b, td span { display: block; }
td b { font-size: 13px; }
td span { margin-top: 5px; color: #77706a; font-size: 11px; }
td form { display: flex; gap: 7px; }
td select { min-height: 34px; border: 1px solid #cfc7bd; background: #fff; }
td button { border: 0; background: #ff5a18; font-size: 10px; font-weight: 800; cursor: pointer; }
.empty-table { padding: 50px; color: #77706a; text-align: center; }
.admin-lock { min-height: 100vh; display: grid; place-items: center; padding: 20px; background: radial-gradient(circle at 70% 30%, #3e226d, transparent 35%), #07060b; }
.admin-lock-card { max-width: 620px; padding: 52px; border: 1px solid rgb(217 255 67 / 28%); background: rgb(5 5 11 / 85%); box-shadow: 18px 18px 0 rgb(255 90 24 / 18%); }
.admin-lock-card span { color: var(--acid); font: 800 11px/1 var(--font-geist-mono); letter-spacing: .16em; }
.admin-lock-card h1 { margin: 18px 0; font-size: clamp(38px, 7vw, 72px); line-height: .92; letter-spacing: -.06em; }
.admin-lock-card p { color: var(--muted); line-height: 1.6; }
.admin-lock-card a { display: inline-flex; margin-top: 20px; padding: 15px 20px; background: var(--orange); color: var(--ink); font-weight: 850; }

/* Halloween Run — night race identity */
.hero-viva {
  background:
    radial-gradient(circle at 82% 24%, rgb(255 110 24 / 18%), transparent 21%),
    radial-gradient(circle at 58% 65%, rgb(112 41 133 / 22%), transparent 30%),
    linear-gradient(118deg, #020307 0%, #08040d 48%, #16070b 100%);
}
.hero-race-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, #020307 0%, rgb(2 3 7 / 93%) 25%, rgb(2 3 7 / 42%) 55%, rgb(2 3 7 / 12%) 100%),
    linear-gradient(0deg, rgb(2 3 7 / 58%) 0%, transparent 45%),
    url('./public/halloween-night-race-hero-v2.png');
  background-position: center;
  background-size: cover;
  filter: saturate(.93) contrast(1.06);
  opacity: .88;
}
.experience-section {
  position: relative;
  background:
    linear-gradient(90deg, transparent 0 49.8%, rgb(5 5 11 / 5%) 50%, transparent 50.2%),
    var(--paper);
  background-size: 70px 70px;
}
.experience-section::before { content: 'NIGHT RACE // CERQUILHO'; position: absolute; right: -88px; top: 230px; color: rgb(5 5 11 / 9%); font: 950 18px/1 var(--font-geist-mono); letter-spacing: .24em; transform: rotate(90deg); }
.gallery-intro { margin-bottom: 68px; }
.gallery-intro > div > p { max-width: 690px; margin: 26px 0 0; color: #625e58; font-size: 18px; line-height: 1.6; }
.experience-gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: repeat(2, minmax(330px, 40vh)); gap: 14px; }
.gallery-shot { isolation: isolate; position: relative; overflow: hidden; min-height: 0; background: #09070c; color: var(--paper); box-shadow: 10px 10px 0 rgb(5 5 11 / 12%); }
.gallery-start { grid-column: 1 / 6; grid-row: 1 / 3; }
.gallery-course { grid-column: 6 / 13; grid-row: 1; }
.gallery-finish { grid-column: 6 / 13; grid-row: 2; }
.gallery-shot::after { content: ''; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgb(3 3 8 / 5%) 20%, rgb(3 3 8 / 28%) 52%, rgb(3 3 8 / 94%) 100%); pointer-events: none; }
.gallery-shot img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.gallery-start img { object-position: center; }
.gallery-course img { object-position: center 42%; }
.gallery-finish img { object-position: center 38%; }
.gallery-shot:hover img { transform: scale(1.035); filter: saturate(1.08); }
.gallery-shot > div { position: absolute; z-index: 2; left: 32px; right: 32px; bottom: 30px; }
.gallery-shot span { display: inline-flex; margin-bottom: 13px; padding: 8px 10px; color: var(--ink); background: var(--acid); font: 900 9px/1 var(--font-geist-mono); letter-spacing: .14em; }
.gallery-shot h3 { max-width: 13ch; margin: 0; font-size: clamp(32px, 3.3vw, 56px); line-height: .9; letter-spacing: -.055em; }
.gallery-start h3 { font-size: clamp(42px, 4.3vw, 70px); }
.gallery-shot p { max-width: 510px; margin: 15px 0 0; color: rgb(245 241 232 / 76%); font-size: 14px; line-height: 1.5; }
.gallery-foot { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 34px; }
.gallery-foot small { color: #716d66; font: 800 9px/1.4 var(--font-geist-mono); letter-spacing: .15em; }
.gallery-foot a { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 23px; color: var(--paper); background: var(--ink); box-shadow: 7px 7px 0 var(--orange); font: 900 10px/1 var(--font-geist-mono); letter-spacing: .1em; }
.event-brief { padding: 120px clamp(22px, 7vw, 108px); background: #0a080d; color: var(--paper); }
.event-brief-head { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 8vw; margin-bottom: 60px; }
.event-brief-head h2 { max-width: 10ch; margin: 0; font-size: clamp(54px, 7vw, 104px); line-height: .84; letter-spacing: -.07em; }
.event-brief-head > p { max-width: 530px; margin: 0 0 8px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.event-brief-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid rgb(255 255 255 / 14%); background: rgb(255 255 255 / 14%); }
.event-brief-grid article { min-height: 190px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; background: linear-gradient(145deg, rgb(255 255 255 / 5%), rgb(255 255 255 / 2%)), #0a080d; }
.event-brief-grid small { color: var(--orange); font: 800 9px/1 var(--font-geist-mono); letter-spacing: .16em; }
.event-brief-grid b { margin-top: auto; padding-top: 42px; color: var(--acid); font: 950 clamp(34px, 4vw, 58px)/.9 var(--font-geist-mono); letter-spacing: -.08em; }
.event-brief-grid span { min-height: 38px; margin-top: 14px; color: var(--muted); font-size: 14px; line-height: 1.45; }
.event-brief-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.event-brief-actions a, .section-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 0 24px; border: 1px solid rgb(255 255 255 / 24%); font: 900 11px/1 var(--font-geist-mono); letter-spacing: .1em; text-transform: uppercase; }
.event-brief-actions a:first-child, .section-cta { border-color: var(--acid); background: var(--acid); color: var(--ink); box-shadow: 7px 7px 0 var(--orange); }
.modalities-section { position: relative; background: radial-gradient(circle at 50% 22%, rgb(255 90 24 / 9%), transparent 32%), #09070c; }
.modalities-section .section-intro.light { color: var(--paper); }
.modalities-section::before { content: ''; position: absolute; inset: 0 0 auto; height: 14px; background: repeating-conic-gradient(var(--paper) 0 25%, #09070c 0 50%) 0 / 28px 28px; opacity: .75; }
.modality-card { border-color: rgb(255 255 255 / 20%); box-shadow: inset 0 0 80px rgb(0 0 0 / 26%); }
.modality-card::before { content: attr(data-bib); position: absolute; z-index: 3; right: 35px; top: 34px; padding: 12px 14px; border: 2px solid var(--card-accent); color: var(--card-accent); background: #f5f1e8; font: 950 13px/1 var(--font-geist-mono); letter-spacing: .08em; transform: rotate(3deg); box-shadow: 5px 5px 0 rgb(0 0 0 / 40%); transition: transform .3s ease, box-shadow .3s ease; }
.modality-card::after { right: -12%; top: 18%; border-width: 34px; opacity: .1; }
.modality-card:hover::before, .modality-card:focus-visible::before { transform: rotate(-2deg) translateY(-4px); box-shadow: 8px 8px 0 rgb(0 0 0 / 48%); }
.run-card { background: repeating-linear-gradient(115deg, transparent 0 76px, rgb(255 90 24 / 3%) 77px 78px), radial-gradient(circle at 82% 68%, rgb(255 90 24 / 22%), transparent 28%), linear-gradient(145deg, #260b08, #08080c 68%); }
.walk-card { background: repeating-linear-gradient(115deg, transparent 0 76px, rgb(217 255 67 / 3%) 77px 78px), radial-gradient(circle at 82% 68%, rgb(217 255 67 / 17%), transparent 28%), linear-gradient(145deg, #192009, #08080c 68%); }

@keyframes modality-orbit { to { transform: translate(-4%, 4%) scale(1.08); opacity: .15; } }
@keyframes modality-haunt { 50% { transform: translateY(-12px) rotate(-3deg) scale(1.05); opacity: .16; } }
@keyframes modality-fog { to { transform: translateX(34%) scale(1.16); opacity: .13; } }
.kit-section { align-items: start; grid-template-columns: .95fr 1.05fr; gap: 7vw; background: radial-gradient(circle at 15% 18%, rgb(255 90 24 / 18%), transparent 26%), linear-gradient(130deg, #3d166e, #170a27); }
.kit-copy { position: sticky; top: 42px; }
.kit-copy > p:last-of-type { color: #d8d0ff; }
.kit-notice { display: grid; gap: 9px; margin: 34px 0 28px; padding: 22px; border-left: 4px solid var(--acid); background: rgb(5 5 11 / 25%); }
.kit-notice small { color: var(--acid); font: 800 9px/1 var(--font-geist-mono); letter-spacing: .14em; }
.kit-notice b { font: 900 19px/1.1 var(--font-geist-mono); }
.kit-notice span { color: #d8d0ff; font-size: 13px; line-height: 1.5; }
.kit-grid { background: rgb(255 255 255 / 16%); border-color: rgb(255 255 255 / 16%); }
.kit-grid article { min-height: 190px; background: rgb(25 10 42 / 78%); }
.kit-grid article > div { display: grid; gap: 9px; }
.kit-grid b { font-size: 24px; }
.kit-grid small { color: #cfc5e8; font-size: 13px; line-height: 1.35; }
.awards-copy > p:not(.section-tag) { max-width: 570px; margin: 30px 0; font-size: 17px; font-weight: 650; line-height: 1.55; }
.section-cta.dark { border-color: var(--ink); background: var(--ink); color: var(--paper); box-shadow: 7px 7px 0 #3e1578; }
.award-list article { grid-template-columns: 145px 1fr auto; }
.award-list span { display: grid; gap: 7px; }
.award-list span strong { font: 900 11px/1 var(--font-geist-mono); letter-spacing: .11em; }
.award-list i { padding: 8px 10px; border: 1px solid var(--ink); font: 900 8px/1 var(--font-geist-mono); font-style: normal; letter-spacing: .1em; }
@keyframes drift { to { transform: translateX(9vw) scale(1.08); } }

@media (max-width: 900px) {
  .access-portal { padding-inline: 28px; }
  .access-portal-content { width: min(88vw, 760px); }
  .access-portal h1 b { font-size: clamp(60px, 11vw, 100px); }
  .access-portal h1 strong { font-size: clamp(76px, 14vw, 126px); }
  .site-header > .brand > span:last-child { display: none; }
  .site-header nav { gap: 10px; }
  .site-header nav a:not(.admin-link) { display: none; }
  .hero { grid-template-columns: 1fr; align-content: center; padding-top: 130px; }
  .experience-card { display: block; justify-self: end; align-self: auto; margin-top: 16px; }
  .moon { width: 76vw; right: -28vw; opacity: .42; }
  .section-intro, .event-brief-head, .kit-section, .awards-section, .location-section, .faq-section { grid-template-columns: 1fr; }
  .event-brief-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-story { min-height: 280px; }
  .experience-story h3 { margin-top: 70px; }
  .experience-gallery { grid-template-columns: repeat(2, 1fr); grid-template-rows: 580px 390px; }
  .gallery-start { grid-column: 1 / 3; grid-row: 1; }
  .gallery-course { grid-column: 1; grid-row: 2; }
  .gallery-finish { grid-column: 2; grid-row: 2; }
  .kit-section, .awards-section, .faq-section { gap: 60px; }
  .location-map { min-height: 500px; }
  .footer-main { grid-template-columns: 1fr; text-align: center; }
  .footer-main .brand, .footer-links { justify-content: center; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .content-editor { grid-template-columns: 170px minmax(0, 1fr); }
  .content-editor-actions { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr auto auto auto; align-items: center; }
  .sound-toggle { position: static; z-index: auto; display: inline-flex; min-height: 38px; padding: 0 11px; border-color: rgb(217 255 67 / 46%); color: var(--paper); background: rgb(7 6 12 / 88%); box-shadow: 4px 4px 0 rgb(255 90 24 / 18%); backdrop-filter: blur(12px); }
  .promo-carousel { min-height: 690px; }
  .promo-slide { align-items: end; padding-bottom: 130px; }
  .promo-copy { width: min(82vw, 760px); }
  .promo-copy h2 { font-size: clamp(58px, 10vw, 94px); }
  .promo-slide-beloto > img { width: 82vw; }
  .promo-shadow { background: linear-gradient(90deg, rgb(3 3 7 / 96%) 0%, rgb(3 3 7 / 78%) 56%, rgb(3 3 7 / 28%) 100%), linear-gradient(0deg, rgb(3 3 7 / 86%) 0%, transparent 66%); }
  .promo-slide-beloto .promo-shadow { background: linear-gradient(90deg, rgb(3 3 7 / 96%) 0%, rgb(3 3 7 / 80%) 58%, rgb(17 5 29 / 25%) 100%), linear-gradient(0deg, rgb(3 3 7 / 87%) 0%, transparent 68%); }
  .live-system-head { grid-template-columns: 1fr; }
  .system-grid { grid-template-columns: 1fr 1fr; }
  .mobile-card { grid-column: 1 / -1; }
  .event-gallery-head { grid-template-columns: 1fr; align-items: start; gap: 34px; }
  .gallery-counter { width: 100%; }
  .event-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 580px 360px 360px; }
  .gallery-frame-1 { grid-column: 1 / 3; grid-row: 1; }
  .gallery-frame-2 { grid-column: 1; grid-row: 2; }
  .gallery-frame-3 { grid-column: 2; grid-row: 2; }
  .gallery-frame-4 { grid-column: 1; grid-row: 3; }
  .gallery-frame-5 { grid-column: 2; grid-row: 3; }
  .gallery-frame-1 h3 { font-size: 68px; }
  .gallery-lightbox figure { width: 82vw; }
  .kit-copy { position: static; }
}

@media (max-width: 560px) {
  .password-gate { padding-inline: 18px; }
  .password-gate-header { min-height: 72px; }
  .password-gate-header .brand { gap: 8px; }
  .password-gate-header .brand > span:last-child { display: inline; font-size: 9px; letter-spacing: .11em; }
  .password-gate-header .brand i { display: none; }
  .password-gate-header > span { max-width: 92px; font-size: 6px; line-height: 1.4; text-align: right; }
  .password-gate-content { padding: 38px 0 47px; }
  .password-gate-card { padding: 31px 23px 28px; box-shadow: 8px 8px 0 rgb(255 90 24 / 22%); }
  .password-gate-card::before, .password-gate-card::after { width: 38px; height: 38px; }
  .password-gate-index { right: 20px; top: 20px; }
  .password-gate-card h1 span { font-size: clamp(45px, 14vw, 60px); }
  .password-gate-card h1 b { font-size: clamp(47px, 14.6vw, 63px); text-shadow: 5px 5px 0 rgb(118 88 255 / 58%); }
  .password-gate-card > p:not(.access-portal-status) { margin: 23px 0; font-size: 14px; }
  .password-gate-field input, .password-gate-card form > button { height: 58px; min-height: 58px; }
  .password-gate-footer { min-height: 52px; gap: 14px; font-size: 6px; line-height: 1.4; }
  .password-gate-footer span:last-child { text-align: right; }
  .access-portal { min-height: 100svh; grid-template-rows: auto 1fr auto; padding-inline: 18px; }
  .access-portal-background { background-position: 69% center; }
  .access-portal-header { min-height: 72px; }
  .access-portal-header .brand { gap: 8px; }
  .access-portal-header .brand > span:last-child { display: inline; font-size: 9px; letter-spacing: .11em; }
  .access-portal-header .brand i { display: none; }
  .access-portal-header > span { max-width: 94px; font-size: 6px; line-height: 1.4; text-align: right; }
  .access-portal-content { width: 100%; padding: 42px 0 48px; }
  .access-portal-status { margin-bottom: 20px; font-size: 7px; line-height: 1.35; letter-spacing: .13em; }
  .access-portal-status i { flex: 0 0 8px; width: 8px; height: 8px; }
  .access-portal h1 b { font-size: clamp(43px, 13.8vw, 60px); line-height: .82; }
  .access-portal h1 strong { margin-top: 7px; font-size: clamp(67px, 21vw, 92px); -webkit-text-stroke-width: 1px; text-shadow: 6px 6px 0 rgb(118 88 255 / 62%); }
  .access-portal h1 > span { margin-top: 17px; gap: 11px; font-size: clamp(14px, 4.2vw, 18px); letter-spacing: .16em; }
  .access-portal h1 > span::before { width: 28px; }
  .access-portal-copy { margin: 25px 0 22px; font-size: 15px; line-height: 1.42; }
  .access-portal-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 23px; }
  .access-portal-facts > span { min-width: 0; padding: 11px 8px; }
  .access-portal-facts small { font-size: 6px; }
  .access-portal-facts b { display: block; font-size: 10px; line-height: 1.25; }
  .access-portal-actions { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .access-portal-actions > button, .access-portal-actions > a { width: 100%; min-width: 0; min-height: 60px; padding-inline: 18px; }
  .access-portal-actions > a small { margin-top: -17px; }
  .access-portal-code { display: none; }
  .access-portal-footer { min-height: 52px; gap: 14px; font-size: 6px; line-height: 1.4; }
  .access-portal-footer span:last-child { text-align: right; }
  .site-header { height: 72px; padding-inline: 16px; }
  .brand > span:last-child { display: none; }
  .footer-main .brand > span:last-child { display: inline; }
  .footer-signatures { flex-wrap: wrap; gap: 20px 24px; padding-inline: 18px; }
  .footer-credit-label { flex: 0 0 100%; }
  .footer-signatures > i { height: 36px; }
  .footer-logo > b, .footer-logo > .plexo-star { width: 38px; height: 38px; }
  .footer-logo strong { font-size: 12px; }
  .site-header .admin-link { padding: 9px 10px; font-size: 9px; white-space: nowrap; }
  .hero { min-height: auto; align-content: start; gap: 34px; padding: 104px 18px 86px; overflow: hidden; }
  .hero-copy { width: 100%; min-width: 0; }
  .system-status { flex-wrap: wrap; gap: 7px; margin-bottom: 15px; font-size: 7px; line-height: 1.35; letter-spacing: .09em; }
  .system-status i { flex: 0 0 100%; margin: 1px 0 0 15px; }
  .eyebrow { margin-bottom: 13px; font-size: 9px; line-height: 1.35; letter-spacing: .14em; }
  .hero h1, .hero-viva h1 { width: 100%; max-width: none; font-size: clamp(56px, 18vw, 88px); line-height: .78; white-space: normal; }
  .hero-title-main { max-width: 100%; font-size: clamp(43px, 13.8vw, 60px); line-height: .88; letter-spacing: -.08em; white-space: nowrap; }
  .hero h1 span { width: max-content; margin-top: 5px; text-shadow: 5px 5px 0 rgb(118 88 255 / 34%); }
  .hero h1 .hero-city { margin-top: 16px; font-size: clamp(15px, 4.6vw, 20px); letter-spacing: .16em; white-space: normal; }
  .hero h1 .hero-city::before { width: 28px; margin-right: 11px; }
  .hero-lead { margin: 23px 0 24px; font-size: 17px; line-height: 1.38; }
  .race-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 5px; margin-bottom: 22px; }
  .race-facts div { min-width: 0; min-height: 72px; padding: 11px 8px; }
  .race-facts small { margin-bottom: 8px; font-size: 7px; letter-spacing: .12em; }
  .race-facts b { display: block; font-size: 11px; line-height: 1.25; overflow-wrap: anywhere; }
  .hero-actions { gap: 9px; }
  .primary-cta, .secondary-cta, .whatsapp-cta { width: 100%; }
  .experience-card { width: 100%; margin: 0; padding: 18px; box-shadow: 7px 7px 0 rgb(255 90 24 / 16%); }
  .console-head { gap: 12px; font-size: 7px; line-height: 1.3; }
  .console-head i { text-align: right; }
  .countdown { gap: 4px; margin-bottom: 16px; }
  .countdown b { min-height: 58px; font-size: 18px; }
  .countdown small { margin-top: 6px; font-size: 6px; }
  .clock-face { width: min(100%, 202px); }
  .clock-digital strong { font-size: 23px; }
  .night-console p { margin-bottom: 14px; font-size: 19px; }
  .console-foot { gap: 10px; font-size: 6px; line-height: 1.3; }
  .console-foot span:last-child { text-align: right; }
  .hero-ticker { height: 46px; gap: 17px; padding-inline: 18px; font-size: 9px; }
  .hero-ticker i { flex: 0 0 7px; width: 7px; height: 7px; }
  .experience-section, .event-brief, .modalities-section, .kit-section, .awards-section, .faq-section { padding-top: 82px; padding-bottom: 82px; }
  .sponsor-strip { min-height: 82px; justify-content: flex-start; gap: 20px; padding: 14px 18px; overflow: hidden; }
  .sponsor-viewport { flex-basis: auto; max-width: none; }
  .sponsor-set { gap: 34px; padding-right: 34px; }
  .sponsor-set img { max-width: 112px; max-height: 25px; }
  .sponsor-set > a:first-child img { max-width: 104px; max-height: 24px; }
  .sponsor-set > .ford-andreta-logo { gap: 12px; }
  .ford-andreta-logo img:first-child { max-width: 68px; max-height: 25px; }
  .ford-andreta-logo img:last-child { max-width: 93px; max-height: 22px; }
  .event-brief-head { gap: 26px; }
  .event-brief-grid { grid-template-columns: 1fr; }
  .event-brief-grid article { min-height: 155px; }
  .event-brief-actions a, .section-cta { width: 100%; }
  .promo-carousel { min-height: 720px; }
  .promo-slide { min-height: 720px; align-items: end; padding: 62px 22px 132px; }
  .promo-slide > img { object-position: 62% center; }
  .promo-slide-beloto > img { width: 100%; object-position: 57% 18%; }
  .promo-slide-fantasias > img { object-position: 58% center; }
  .promo-slide-trofeus > img { object-position: 58% center; }
  .promo-shadow, .promo-slide-beloto .promo-shadow { background: linear-gradient(0deg, rgb(3 3 7 / 99%) 0%, rgb(3 3 7 / 90%) 38%, rgb(3 3 7 / 22%) 78%, rgb(3 3 7 / 9%) 100%); }
  .promo-copy { width: 100%; }
  .promo-copy small { margin-bottom: 18px; font-size: 8px; line-height: 1.35; }
  .promo-copy small::before { width: 26px; }
  .promo-copy h2 { max-width: 12ch; font-size: clamp(47px, 14.3vw, 70px); line-height: .82; }
  .promo-copy p { margin: 19px 0 23px; font-size: 14px; line-height: 1.45; }
  .promo-copy > a { width: 100%; justify-content: space-between; }
  .promo-watermark { right: -12px; bottom: 82px; font-size: 65px; }
  .promo-controls { left: 22px; right: 22px; bottom: 24px; justify-content: space-between; gap: 9px; }
  .promo-controls > button { width: 42px; height: 42px; }
  .promo-progress { flex: 1; width: auto; }
  .section-intro { gap: 22px; }
  .gallery-intro { margin-bottom: 42px; }
  .experience-gallery { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-start, .gallery-course, .gallery-finish { grid-column: 1; grid-row: auto; min-height: 470px; }
  .gallery-start { min-height: 590px; }
  .gallery-shot > div { left: 22px; right: 22px; bottom: 22px; }
  .gallery-shot h3, .gallery-start h3 { font-size: 42px; }
  .gallery-foot { align-items: stretch; flex-direction: column; }
  .gallery-foot a { width: 100%; }
  .modality-grid { grid-template-columns: 1fr; }
  .modality-card { min-height: 520px; padding: 30px; }
  .modality-card .modality-cta { width: 100%; }
  .modality-haunt b { right: 3%; top: 31%; font-size: 108px; }
  .kit-grid { grid-template-columns: 1fr; }
  .award-list article { grid-template-columns: 100px 1fr; }
  .award-list i { display: none; }
  .site-header nav a:not(.admin-link) { display: none; }
  .kpi-grid { grid-template-columns: 1fr; }
  .admin-header { align-items: start; flex-direction: column; }
  .admin-user { text-align: left; }
  .admin-user a { grid-column: 1 / -1; }
  .interaction-bars { grid-template-columns: 1fr; }
  .interaction-bars > div { grid-template-columns: 120px 1fr 24px; }
  .content-studio { padding: 20px; }
  .content-studio-head, .content-toolbar { align-items: stretch; flex-direction: column; }
  .content-tabs { overflow-x: auto; }
  .content-tabs button { flex: 0 0 auto; }
  .content-editor { grid-template-columns: 1fr; }
  .content-preview { min-height: 230px; }
  .content-field-row { grid-template-columns: 1fr; }
  .content-editor-actions { grid-column: auto; grid-template-columns: 1fr 1fr; }
  .visibility-toggle, .content-editor-actions > div, .content-editor-actions > small { grid-column: 1 / -1; }
  .live-system { padding-top: 82px; padding-bottom: 82px; }
  .live-system-head { gap: 30px; }
  .system-grid { grid-template-columns: 1fr; }
  .mobile-card { grid-column: auto; }
  .tech-card { padding: 22px; }
  .event-gallery { padding-top: 82px; padding-bottom: 82px; }
  .event-gallery::before { display: none; }
  .event-gallery-head { margin-bottom: 42px; }
  .event-gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-frame-1, .gallery-frame-2, .gallery-frame-3, .gallery-frame-4, .gallery-frame-5 { grid-column: 1; grid-row: auto; min-height: 470px; }
  .gallery-frame-1 { min-height: 590px; }
  .gallery-frame-1 h3, .event-gallery-shot h3 { font-size: 42px; }
  .gallery-frame-2 p, .gallery-frame-3 p, .gallery-frame-4 p, .gallery-frame-5 p { display: block; }
  .event-gallery-foot { align-items: stretch; flex-direction: column; }
  .event-gallery-foot > div { width: 100%; }
  .event-gallery-foot a, .event-gallery-foot button { width: 100%; }
  .whatsapp-float { right: 14px; bottom: 14px; grid-template-columns: 42px; width: 60px; min-width: 60px; padding: 8px; }
  .whatsapp-float b, .whatsapp-float small { display: none; }
  .location-map { min-height: 560px; }
  .map-live-badge { left: 18px; top: 18px; }
  .event-map-marker { top: 44%; }
  .marker-pin { width: 52px; height: 52px; }
  .marker-pin::before { width: 16px; height: 16px; border-width: 4px; }
  .marker-pulse { top: 26px; width: 72px; height: 72px; }
  .event-map-marker > b { margin-top: 17px; padding: 8px 10px; font-size: 7px; }
  .map-bats i:nth-child(3) { display: none; }
  .map-place-card { left: 18px; bottom: 18px; width: calc(100% - 64px); padding: 19px; }
  .map-cinema-code { right: 18px; bottom: 18px; }
  .map-corner { width: 30px; height: 30px; }
  .corner-one, .corner-three { left: 13px; }
  .corner-two, .corner-four { right: 13px; }
  .corner-one, .corner-two { top: 13px; }
  .corner-three, .corner-four { bottom: 13px; }
  .gallery-lightbox { padding: 68px 14px 58px; }
  .gallery-lightbox figure { width: 100%; height: 72vh; box-shadow: 8px 8px 0 rgb(255 90 24 / 18%); }
  .gallery-lightbox figcaption { left: 20px; right: 20px; bottom: 22px; }
  .gallery-lightbox figcaption h3 { font-size: 39px; }
  .gallery-lightbox figcaption p { font-size: 13px; }
  .gallery-nav { width: 48px; height: 48px; }
  .gallery-prev { left: 21px; }
  .gallery-next { right: 21px; }
  .photo-booth { justify-content: flex-start; gap: 10px; padding: 74px 12px 18px; }
  .photo-booth-head { left: 13px; right: 13px; top: 11px; }
  .photo-booth-head h2 { font-size: 19px; }
  .photo-booth-head button { min-height: 38px; padding-inline: 11px; }
  .photo-booth-stage { width: min(calc(100vw - 34px), calc((100svh - 270px) * .8)); border-width: 7px; box-shadow: 8px 8px 0 rgb(255 90 24 / 28%); }
  .photo-booth-stage::before { inset: 11px; border-width: 3px; }
  .photo-frame-overlay { inset: 27px; }
  .photo-booth-controls { width: 100%; }
  .photo-booth-controls > button:not(.photo-shutter) { flex: 1 1 120px; padding-inline: 10px; }
  .photo-frame-picker { width: 100%; gap: 5px; }
  .photo-frame-picker button { min-height: 36px; padding-inline: 5px; font-size: 6px; }
  .hero-race-image {
    background-image:
      linear-gradient(180deg, rgb(2 3 7 / 52%) 0%, rgb(2 3 7 / 12%) 32%, rgb(2 3 7 / 42%) 72%, rgb(2 3 7 / 82%) 100%),
      linear-gradient(90deg, rgb(2 3 7 / 78%) 0%, rgb(2 3 7 / 32%) 72%, rgb(2 3 7 / 12%) 100%),
      url('./public/halloween-night-race-hero-v2.png');
    background-position: 67% center;
    opacity: .68;
  }
  .experience-section::before { display: none; }
  .experience-story h3 { margin-top: 118px; }
  .modality-card::before { right: 22px; top: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fog { animation: none; }
  .access-portal-background::after, .access-portal-background > i, .access-portal-status i, .scan-line, .sound-toggle.is-on span, .plexo-star::before, .sponsor-logos, .signal-orbit::before, .signal-orbit::after, .pulse-visual::after, .pulse-sweep, .pulse-blip, .pulse-blip::after, .radar-sweep, .ghost-target, .camera-wait span, .frame-fantasma::before, .modality-card::after, .modality-haunt b, .modality-haunt i, .map-fog, .map-live-badge i, .marker-pin, .marker-pulse, .map-bats i, .promo-fog, .promo-progress i { animation: none; }
  .sponsor-viewport { overflow-x: auto; mask-image: none; }
  .modality-card, .modality-card strong, .modality-card::before, .modality-cta, .modality-cta i, .promo-track { transition: none; }
}
