/* ============================================================
   FAIL SUMMIT — Lidera Hub
   Underground / Neon Pub Aesthetic
   ============================================================ */

:root {
  /* Core palette */
  --bg-0: #06030f;
  --bg-1: #0d0726;
  --bg-2: #15083a;
  --ink: #f1ecff;
  --ink-70: rgba(241, 236, 255, 0.7);
  --ink-50: rgba(241, 236, 255, 0.5);
  --ink-30: rgba(241, 236, 255, 0.3);
  --ink-15: rgba(241, 236, 255, 0.15);
  --ink-08: rgba(241, 236, 255, 0.08);

  /* Neons */
  --neon-cyan: #00e5ff;
  --neon-magenta: #ff3d8b;
  --neon-violet: #b061ff;
  --neon-yellow: #ffd60a;
  --neon-cyan-glow: 0 0 24px rgba(0, 229, 255, 0.6), 0 0 48px rgba(0, 229, 255, 0.3);
  --neon-magenta-glow: 0 0 24px rgba(255, 61, 139, 0.6), 0 0 48px rgba(255, 61, 139, 0.3);

  /* Fonts */
  --font-display: "Anton", "Bebas Neue", "Oswald", system-ui, sans-serif;
  --font-headline: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", monospace;

  --maxw: 1280px;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-0);
  color: var(--ink);
  font-family: var(--font-headline);
  font-size: 16px;
  line-height: 1.55;
  text-wrap: pretty;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: 0.005em;
  line-height: 0.95;
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
}

p { margin: 0; }

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

button { font-family: inherit; cursor: pointer; }

/* =========================== Backdrops =========================== */
.bg-noise::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.25;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(70% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 50%, black, transparent);
}

.bg-aurora {
  position: absolute;
  inset: -40% -10% auto -10%;
  height: 140%;
  background:
    radial-gradient(40% 50% at 18% 30%, rgba(176, 97, 255, 0.55), transparent 60%),
    radial-gradient(35% 45% at 82% 25%, rgba(0, 229, 255, 0.45), transparent 60%),
    radial-gradient(40% 50% at 55% 80%, rgba(255, 61, 139, 0.4), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

/* =========================== Container =========================== */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

/* =========================== Header =========================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  background: rgba(6, 3, 15, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-08);
}
.site-header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.site-header .brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-header .logo { height: 30px; width: auto; filter: brightness(0) invert(1); opacity: 0.95; }
.site-header .fs-logo {
  height: 40px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 14px rgba(0, 229, 255, 0.35));
}
.site-header .lockup {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  padding: 5px 10px;
  border: 1px solid var(--neon-cyan);
  border-radius: 4px;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
}
.site-header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.site-header nav a {
  font-size: 13px;
  color: var(--ink-70);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.site-header nav a:hover { color: var(--neon-cyan); }

/* =========================== Buttons =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-family: var(--font-headline);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, color 0.2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--neon-cyan);
  color: var(--bg-0);
  box-shadow: var(--neon-cyan-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: white;
  box-shadow: 0 0 32px rgba(0, 229, 255, 0.9), 0 0 64px rgba(0, 229, 255, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink-30);
}
.btn-ghost:hover { border-color: var(--neon-cyan); color: var(--neon-cyan); }
.btn-magenta {
  background: var(--neon-magenta);
  color: white;
  box-shadow: var(--neon-magenta-glow);
}
.btn-magenta:hover {
  background: white;
  color: var(--neon-magenta);
  box-shadow: 0 0 32px rgba(255, 61, 139, 0.9);
  transform: translateY(-2px);
}

/* =========================== Hero =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 130px 0 90px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  background:
    radial-gradient(50% 60% at 50% 0%, rgba(176, 97, 255, 0.35), transparent 70%),
    var(--bg-0);
}
.hero .bg-aurora { z-index: -2; }
.hero .bg-grid { z-index: -1; }

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

.hero .tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 32px;
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.6);
}
.hero .tagline::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
}
.hero .tagline .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 12px var(--neon-cyan);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(72px, 11vw, 168px);
  line-height: 0.85;
  letter-spacing: 0.002em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero h1 .word {
  display: inline-block;
  position: relative;
}
.hero h1 .fail {
  background: linear-gradient(180deg, var(--neon-magenta), var(--neon-violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(255, 61, 139, 0.55));
}
.hero h1 .summit {
  color: var(--ink);
  -webkit-text-stroke: 1px var(--neon-cyan);
}

.hero .strap {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.2;
  color: var(--ink);
  max-width: 540px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.hero .strap em {
  font-style: normal;
  color: var(--neon-cyan);
  text-shadow: 0 0 16px rgba(0, 229, 255, 0.5);
}
.hero .lede {
  font-size: 16px;
  color: var(--ink-70);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero .ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero .meta-row {
  margin-top: 56px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--ink-15);
}
.hero .meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero .meta .k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-50);
}
.hero .meta .v {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.hero .meta .v.neon { color: var(--neon-cyan); }

/* Hero right — Poster card */
.hero-poster {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-1);
  border: 1px solid var(--ink-15);
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.7),
    0 0 60px -20px rgba(176, 97, 255, 0.55);
  aspect-ratio: 16 / 9;
  transform: rotate(-1deg);
}
.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0, 229, 255, 0.18));
  pointer-events: none;
  z-index: 2;
}
.hero-poster .scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 3px,
    rgba(255, 255, 255, 0.025) 3px,
    rgba(255, 255, 255, 0.025) 4px
  );
  pointer-events: none;
  z-index: 3;
}

.hero-corners {
  position: absolute;
  inset: -8px;
  pointer-events: none;
  z-index: 4;
}
.hero-corners span {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}
.hero-corners span:nth-child(1) { top: 0; left: 0; border-right: none; border-bottom: none; }
.hero-corners span:nth-child(2) { top: 0; right: 0; border-left: none; border-bottom: none; }
.hero-corners span:nth-child(3) { bottom: 0; left: 0; border-right: none; border-top: none; }
.hero-corners span:nth-child(4) { bottom: 0; right: 0; border-left: none; border-top: none; }

.vacancies-badge {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--neon-magenta);
  color: white;
  padding: 14px 26px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 30px -8px rgba(255, 61, 139, 0.7), 0 0 24px rgba(255, 61, 139, 0.35);
  z-index: 5;
  white-space: nowrap;
}
.vacancies-badge .small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  opacity: 0.85;
  font-weight: 400;
}

/* =========================== Marquee =========================== */
.marquee {
  background: var(--bg-1);
  color: var(--ink);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid var(--ink-08);
  border-bottom: 1px solid var(--ink-08);
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 38s linear infinite;
  width: max-content;
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.04em;
  align-items: center;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track .dot {
  width: 10px; height: 10px;
  background: var(--neon-cyan);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--neon-cyan);
}
.marquee-track em {
  color: var(--neon-magenta);
  font-style: normal;
  text-shadow: 0 0 12px rgba(255, 61, 139, 0.5);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================== Section base =========================== */
section {
  position: relative;
  padding: 110px 0;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--neon-cyan);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
}
.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--neon-cyan);
  box-shadow: 0 0 6px var(--neon-cyan);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 84px);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.08;
  max-width: 1000px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.section-title .mag { color: var(--neon-magenta); text-shadow: 0 0 22px rgba(255, 61, 139, 0.5); }
.section-title .cyn { color: var(--neon-cyan); text-shadow: 0 0 22px rgba(0, 229, 255, 0.45); }

.section-lede {
  font-size: 17px;
  color: var(--ink-70);
  max-width: 680px;
  line-height: 1.6;
}

/* =========================== About =========================== */
.about {
  background: var(--bg-0);
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 70% at 0% 100%, rgba(176, 97, 255, 0.18), transparent 60%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
  margin-top: 40px;
}
.stat {
  border-top: 1.5px solid var(--neon-cyan);
  padding-top: 16px;
  position: relative;
}
.stat::after {
  content: "";
  position: absolute;
  top: -1.5px;
  left: 0;
  width: 32px;
  height: 1.5px;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
}
.stat .n {
  font-family: var(--font-display);
  font-size: 56px;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1;
}
.stat .label {
  font-size: 13px;
  color: var(--ink-70);
  margin-top: 6px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
}

/* =========================== Speaker =========================== */
.speaker {
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}
.speaker::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(45% 55% at 20% 50%, rgba(0, 229, 255, 0.18), transparent 60%),
    radial-gradient(40% 50% at 90% 50%, rgba(255, 61, 139, 0.18), transparent 60%);
  pointer-events: none;
}
.speaker-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.speaker-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-2);
  border: 1px solid var(--ink-15);
  box-shadow:
    0 40px 80px -30px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(0, 229, 255, 0.2) inset;
}
.speaker-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 28% 35%;
}
.speaker-card .name-block {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(6, 3, 15, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--ink-15);
  padding: 16px 18px;
  border-radius: 10px;
  z-index: 2;
}
.speaker-card .name-block .who {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.speaker-card .name-block .role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-top: 6px;
}

.speaker-info .quote-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--neon-magenta);
  color: var(--neon-magenta);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
  text-shadow: 0 0 8px rgba(255, 61, 139, 0.4);
}

.speaker-info h2 {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  margin-bottom: 24px;
}
.speaker-info p {
  font-size: 17px;
  color: var(--ink-70);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 520px;
}
.speaker-info p strong {
  color: var(--ink);
  font-weight: 600;
}
.speaker-questions {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.speaker-questions .q {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-family: var(--font-headline);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.45;
  padding: 14px 18px;
  background: rgba(0, 229, 255, 0.04);
  border-left: 3px solid var(--neon-cyan);
  border-radius: 4px;
}
.speaker-questions .q .arrow {
  color: var(--neon-cyan);
  font-family: var(--font-mono);
  font-size: 14px;
  text-shadow: 0 0 8px var(--neon-cyan);
}

/* =========================== Pillars (why infiltrado) =========================== */
.pillars {
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
}
.pillars .bg-grid { z-index: 0; opacity: 0.5; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.pillar {
  background: var(--bg-1);
  border: 1px solid var(--ink-15);
  border-radius: 14px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--neon-cyan);
  box-shadow: 0 18px 60px -20px rgba(0, 229, 255, 0.35);
}
.pillar .n {
  font-family: var(--font-display);
  font-size: 88px;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--neon-cyan);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
  opacity: 0.85;
}
.pillar h3 {
  font-size: 26px;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.pillar p {
  font-size: 15px;
  color: var(--ink-70);
  line-height: 1.55;
}

/* =========================== Klava quote (big pull quote) =========================== */
.pullquote {
  background: var(--bg-0);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.pullquote::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 50% 50%, rgba(255, 61, 139, 0.2), transparent 70%);
}
.pullquote blockquote {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.4vw, 84px);
  line-height: 1.06;
  color: var(--ink);
  max-width: 1100px;
  margin: 0 auto;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.pullquote blockquote .hl {
  color: var(--neon-magenta);
  text-shadow: 0 0 28px rgba(255, 61, 139, 0.6);
}
.pullquote .attr {
  margin-top: 32px;
  font-family: var(--font-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--ink-50);
}

/* =========================== Code of honor =========================== */
.honor {
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}
.honor::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 50% at 100% 0%, rgba(176, 97, 255, 0.22), transparent 60%);
  pointer-events: none;
}
.honor-rules {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rule {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--ink-15);
  padding: 32px 28px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.rule .stamp {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--neon-cyan);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.rule h3 {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.01em;
  line-height: 0.98;
  color: var(--ink);
}
.rule p {
  font-size: 14px;
  color: var(--ink-70);
  margin-top: 14px;
  line-height: 1.55;
}

/* =========================== Tickets =========================== */
.tickets {
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
}
.tickets::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 50% 100%, rgba(0, 229, 255, 0.2), transparent 60%);
  pointer-events: none;
}
.tickets .heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}
.tickets-status {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-70);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--ink-15);
  border-radius: 999px;
}
.tickets-status .dot {
  width: 8px; height: 8px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-cyan);
  animation: pulse 1.6s ease-in-out infinite;
}

.tickets-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Lote banner */
.lote-banner {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px 24px;
  border: 1px solid var(--ink-15);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.07), rgba(0, 229, 255, 0));
}
.lote-banner .now {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-transform: uppercase;
}
.lote-banner .now .live {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 12px var(--neon-cyan);
  animation: pulse 1.6s ease-in-out infinite;
}
.lote-banner .rise {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-70);
}
.lote-banner .rise b { color: var(--neon-magenta); }

.lote-pill {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 229, 255, 0.4);
  padding: 5px 10px;
  border-radius: 999px;
  margin-top: -4px;
}
.ticket.featured .lote-pill {
  color: var(--neon-magenta);
  border-color: rgba(255, 61, 139, 0.45);
}
.next-hint {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-50);
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: -4px;
}
.next-hint b { color: var(--neon-magenta); }

/* ===================== Intro overlay (police / suspense) ===================== */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #04020a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.intro-overlay.closing { animation: introOut 0.8s ease forwards; }
.intro-overlay.done { display: none; }
@keyframes introOut { to { opacity: 0; visibility: hidden; } }

.intro-police { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.intro-police .lamp {
  position: absolute;
  top: -25%;
  width: 65vw;
  height: 95vh;
  border-radius: 50%;
  filter: blur(130px);
}
.intro-police .lamp.red {
  left: -25vw;
  background: radial-gradient(circle, rgba(255, 40, 75, 0.9), transparent 60%);
  animation: flashRed 1.1s steps(1, end) infinite;
}
.intro-police .lamp.blue {
  right: -25vw;
  background: radial-gradient(circle, rgba(50, 120, 255, 0.9), transparent 60%);
  animation: flashBlue 1.1s steps(1, end) infinite;
}
@keyframes flashRed { 0%, 45% { opacity: 0.85; } 46%, 100% { opacity: 0.07; } }
@keyframes flashBlue { 0%, 45% { opacity: 0.07; } 46%, 100% { opacity: 0.85; } }

/* on "access granted" calm the strobe to cyan */
.intro-overlay[data-stage="2"] .lamp.red { animation: none; opacity: 0.12; background: radial-gradient(circle, rgba(0, 229, 255, 0.6), transparent 60%); }
.intro-overlay[data-stage="2"] .lamp.blue { animation: none; opacity: 0.5; background: radial-gradient(circle, rgba(0, 229, 255, 0.7), transparent 60%); }

.intro-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(60% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(60% 60% at 50% 50%, black, transparent);
  pointer-events: none;
}
.intro-scanline {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.85), transparent);
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.7);
  animation: scanMove 2.4s linear infinite;
  pointer-events: none;
}
@keyframes scanMove { 0% { top: 0; } 100% { top: 100%; } }

.intro-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
}
.intro-tag {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 22px;
}
.intro-title {
  font-family: var(--font-display);
  font-size: clamp(46px, 8.5vw, 128px);
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
}
.intro-sub {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--ink-70);
  min-height: 20px;
}
.intro-progress {
  margin: 36px auto 0;
  width: min(440px, 80vw);
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  overflow: hidden;
}
.intro-progress i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--neon-cyan);
  box-shadow: 0 0 12px var(--neon-cyan);
  animation: introFill 10.9s linear forwards;
}
@keyframes introFill { to { width: 100%; } }

/* Stage-1 alert: red glitch */
.intro-overlay[data-stage="1"] .intro-tag { color: #ff5470; }
.intro-overlay[data-stage="1"] .intro-title {
  color: #fff;
  text-shadow: 0 0 26px rgba(255, 40, 75, 0.85), 3px 0 rgba(255, 40, 75, 0.6), -3px 0 rgba(50, 120, 255, 0.6);
  animation: introGlitch 0.16s steps(2, end) infinite;
}
@keyframes introGlitch {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2px, 1px); }
  50% { transform: translate(2px, -1px); }
  75% { transform: translate(-1px, -1px); }
  100% { transform: translate(0, 0); }
}
.intro-overlay[data-stage="1"] .intro-progress i { background: #ff5470; box-shadow: 0 0 12px #ff5470; }

/* Stage-2 granted: cyan */
.intro-overlay[data-stage="2"] .intro-tag { color: var(--neon-cyan); }
.intro-overlay[data-stage="2"] .intro-title {
  color: var(--neon-cyan);
  text-shadow: 0 0 32px rgba(0, 229, 255, 0.7);
}

.intro-skip {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 4;
  background: transparent;
  border: 1px solid var(--ink-30);
  color: var(--ink-70);
  padding: 10px 16px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.intro-skip:hover { border-color: var(--neon-cyan); color: var(--neon-cyan); }

@media (prefers-reduced-motion: reduce) {
  .intro-police .lamp, .intro-scanline, .intro-overlay[data-stage="1"] .intro-title { animation: none; }
}
.ticket {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.0));
  border: 1px solid var(--ink-15);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.ticket:hover {
  transform: translateY(-4px);
  border-color: var(--neon-cyan);
  box-shadow: 0 18px 60px -16px rgba(0, 229, 255, 0.4);
}
.ticket.featured {
  border-color: var(--neon-magenta);
  box-shadow: 0 0 0 1px var(--neon-magenta) inset, 0 18px 60px -16px rgba(255, 61, 139, 0.45);
}
.ticket.featured:hover { box-shadow: 0 0 0 1px var(--neon-magenta) inset, 0 28px 80px -16px rgba(255, 61, 139, 0.6); }

.ticket .ribbon {
  position: absolute;
  top: 18px;
  right: -32px;
  background: var(--neon-magenta);
  color: white;
  padding: 6px 36px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: rotate(40deg);
  box-shadow: 0 4px 16px rgba(255, 61, 139, 0.45);
}

.ticket .tier {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-50);
}
.ticket .name {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1;
}
.ticket.featured .name { color: var(--neon-magenta); text-shadow: 0 0 18px rgba(255, 61, 139, 0.5); }

.ticket .price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}
.ticket .price .currency {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-70);
}
.ticket .price .amount {
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.ticket .price .cents {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--ink-70);
}
.ticket .installments {
  font-size: 13px;
  color: var(--neon-cyan);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.ticket .perks {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ticket .perks li {
  font-size: 14px;
  color: var(--ink);
  display: flex;
  gap: 10px;
  line-height: 1.45;
}
.ticket .perks li::before {
  content: "+";
  color: var(--neon-cyan);
  font-family: var(--font-mono);
  font-weight: 700;
  flex: none;
  text-shadow: 0 0 6px var(--neon-cyan);
}
.ticket.featured .perks li::before { color: var(--neon-magenta); text-shadow: 0 0 6px var(--neon-magenta); }

.ticket .deadline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-top: 8px;
}
.ticket .cta {
  margin-top: 12px;
}
.ticket .cta .btn {
  width: 100%;
  justify-content: center;
}

/* =========================== Venue =========================== */
.venue {
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}
.venue::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 100% 50%, rgba(0, 229, 255, 0.16), transparent 60%);
  pointer-events: none;
}
.venue-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.venue-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--ink-15);
  aspect-ratio: 4 / 3;
  position: relative;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--neon-cyan) inset;
}
.venue-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 60% at 50% 70%, rgba(255, 214, 10, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
  z-index: 1;
}
.venue-card .glyph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 200px);
  color: var(--neon-cyan);
  letter-spacing: 0.02em;
  text-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
  z-index: 2;
  opacity: 0.92;
}
.venue-card .venue-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  mix-blend-mode: screen;
}
.venue-card .glyph .sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--ink);
  margin-top: 8px;
  text-shadow: none;
  opacity: 0.7;
}
.venue-card .bricks {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 60px 18px;
  z-index: 0;
}

.venue-info .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 10px;
}
.venue-info h2 {
  font-size: clamp(44px, 5.4vw, 84px);
  margin-bottom: 22px;
}
.venue-info p {
  font-size: 17px;
  color: var(--ink-70);
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 540px;
}
.venue-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}
.venue-detail {
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--ink-15);
  border-radius: 12px;
}
.venue-detail .k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 6px;
}
.venue-detail .v {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.venue-detail .v.cyn { color: var(--neon-cyan); }

/* =========================== Final CTA =========================== */
.final-cta {
  background: var(--bg-0);
  text-align: center;
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 50% at 30% 50%, rgba(176, 97, 255, 0.3), transparent 60%),
    radial-gradient(40% 50% at 70% 50%, rgba(0, 229, 255, 0.25), transparent 60%);
  pointer-events: none;
}
.final-cta h2 {
  font-size: clamp(48px, 7vw, 120px);
  margin-bottom: 28px;
  line-height: 1.05;
}
.final-cta p {
  font-size: 18px;
  color: var(--ink-70);
  max-width: 580px;
  margin: 0 auto 36px;
}
.final-cta .ctas { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.countdown {
  display: inline-flex;
  gap: 14px;
  margin-bottom: 36px;
  align-items: flex-start;
}
.countdown .unit {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ink-15);
  border-radius: 10px;
  padding: 16px 18px;
  min-width: 80px;
}
.countdown .unit .n {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  color: var(--neon-cyan);
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
}
.countdown .unit .l {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-top: 6px;
}

/* =========================== Footer =========================== */
.site-footer {
  background: #04020a;
  color: var(--ink);
  padding: 60px 0 28px;
  border-top: 1px solid var(--ink-08);
}
.site-footer .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.site-footer .logo { height: 32px; filter: brightness(0) invert(1); opacity: 0.85; }
.site-footer .copy {
  border-top: 1px solid var(--ink-08);
  padding-top: 24px;
  margin-top: 36px;
  font-size: 12px;
  color: var(--ink-50);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}
.site-footer .links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.site-footer .links a { color: var(--ink-70); transition: color 0.2s; }
.site-footer .links a:hover { color: var(--neon-cyan); }

/* =========================== Sticky CTA mobile =========================== */
.sticky-cta { display: none; }

/* =========================== Responsive =========================== */
@media (max-width: 980px) {
  .hero { padding-top: 110px; }
  .hero .grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-poster { transform: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .speaker-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .honor-rules { grid-template-columns: 1fr; }
  .tickets-grid { grid-template-columns: 1fr; }
  .venue-grid { grid-template-columns: 1fr; gap: 40px; }
  .site-header nav { gap: 12px; }
  .site-header nav a:not(.btn) { display: none; }
  section { padding: 80px 0; }
  .marquee-track { font-size: 22px; gap: 32px; }
  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 70;
  }
  .sticky-cta .btn { width: 100%; justify-content: center; }
}
@media (max-width: 540px) {
  .wrap { padding: 0 20px; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
  .stat .n { font-size: 40px; }
  .hero .ctas { flex-direction: column; }
  .hero .ctas .btn { width: 100%; justify-content: center; }
  .countdown .unit { min-width: 64px; padding: 12px; }
  .countdown .unit .n { font-size: 32px; }
}
