:root {
  --navy: #10253C;
  --navy-2: #0a1a2c;
  --navy-3: #16304d;
  --blue: #0D0B9D;
  --blue-bright: #2421d9;
  --blue-glow: rgba(36, 33, 217, .35);
  --teal: #45B5A9;
  --teal-bright: #56cfc2;
  --gray: #ABABAB;
  --bone: #F5F4EE;
  --line: rgba(245, 244, 238, 0.12);
  --line-strong: rgba(245, 244, 238, 0.22);
  --max: 1240px;
}

/* Country flag emoji polyfill — only loads the flag glyph range,
   so Windows users see real flags in the DDI dropdown instead of "BR/US" letters */
@font-face {
  font-family: "Twemoji Country Flags";
  unicode-range: U+1F1E6-1F1FF, U+1F3F4, U+E0062-E0063, U+E0065, U+E0067, U+E006C, U+E006E, U+E0073-E0074, U+E0077, U+E007F;
  src: url('https://cdn.jsdelivr.net/npm/country-flag-emoji-polyfill@0.1/dist/TwemojiCountryFlags.woff2') format('woff2');
  font-display: swap;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--navy); color: var(--bone); }
html { scroll-behavior: smooth; }
body {
  font-family: "Twemoji Country Flags", 'Manrope', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ============ Type ============ */
.display, .h1, .h2, .h3, .eyebrow {
  font-family: 'Archivo', system-ui, sans-serif;
}
.display {
  font-weight: 900;
  font-size: clamp(42px, 6.2vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.h1 { font-weight: 800; font-size: clamp(36px, 4.8vw, 68px); line-height: 1.02; letter-spacing: -0.02em; text-wrap: balance; }
.h2 { font-weight: 800; font-size: clamp(28px, 3.4vw, 48px); line-height: 1.05; letter-spacing: -0.02em; text-wrap: balance; }
.h3 { font-weight: 700; font-size: clamp(22px, 2.2vw, 30px); line-height: 1.15; letter-spacing: -0.01em; }

.eyebrow {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}
.lede { font-size: clamp(17px, 1.4vw, 21px); color: rgba(245, 244, 238, 0.78); line-height: 1.55; max-width: 60ch; text-wrap: pretty; }
.muted { color: var(--gray); }
.mono { font-family: 'JetBrains Mono', monospace; font-weight: 500; }
.teal { color: var(--teal); }
.blue { color: #6c69ff; } /* lighter shade of #0D0B9D for legibility on dark */
.underline-teal { background-image: linear-gradient(var(--teal), var(--teal)); background-size: 100% 12%; background-position: 0 90%; background-repeat: no-repeat; padding: 0 .04em; }

/* Brand-signature letterspaced text: "a o v i v o 2 0 2 6" */
.spaced {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  letter-spacing: 0.55em;
  text-transform: lowercase;
  color: var(--teal);
  font-size: 12px;
}
.spaced-lg { font-size: 14px; letter-spacing: 0.62em; }

/* ============ Layout ============ */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; position: relative; }
section { position: relative; padding: clamp(72px, 9vw, 140px) 0; border-top: 1px solid var(--line); overflow: hidden; }
section:first-of-type { border-top: 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}
.section-tag .dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; box-shadow: 0 0 12px var(--teal); }

/* ============ Lines pattern (estrutura + movimento) ============ */
.lines-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.5;
  z-index: 0;
}
.lines-bg svg { width: 100%; height: 100%; display: block; }

/* ============ Top bar ============ */
.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  background: rgba(16, 37, 60, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: transform .3s ease;
}
.topbar.hidden { transform: translateY(-100%); }
.brand { display: flex; align-items: center; gap: 16px; }
.brand img { height: 32px; width: auto; display: block; }
.brand .date-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--gray);
  letter-spacing: 0.08em;
  padding-left: 16px;
  border-left: 1px solid var(--line-strong);
}
.brand .date-tag b { color: var(--bone); font-weight: 500; }
.top-cta { display: flex; align-items: center; gap: 14px; }
.live-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em; color: var(--bone);
  padding: 6px 10px; border: 1px solid var(--line-strong); border-radius: 999px;
}
.live-pill .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal); position: relative;
}
.live-pill .pulse::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%; background: var(--teal); opacity: .45;
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(0.6); opacity: .55 } 100% { transform: scale(2.4); opacity: 0 } }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Archivo', sans-serif; font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 15px;
  padding: 16px 24px;
  border: 0; cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  position: relative;
  color: var(--bone);
}
.btn-primary {
  background: var(--blue); color: var(--bone);
  box-shadow: 0 12px 38px -16px var(--blue-glow);
}
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-1px); box-shadow: 0 18px 50px -16px var(--blue-glow); }
.btn-primary .arrow { transition: transform .2s ease; }
.btn-primary:hover .arrow { transform: translateX(3px); }
.btn-teal { background: var(--teal); color: var(--navy); }
.btn-teal:hover { background: var(--teal-bright); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--bone);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--bone); background: rgba(255,255,255,.04); }
.btn-block { width: 100%; }
.btn-lg { font-size: 16px; padding: 20px 28px; }
.btn:disabled,
.btn[disabled] {
  cursor: not-allowed;
  background: transparent;
  color: var(--gray);
  border: 1px solid var(--line-strong);
  box-shadow: none;
  opacity: .75;
}
.btn:disabled:hover,
.btn[disabled]:hover { transform: none; background: transparent; border-color: var(--line-strong); box-shadow: none; }

/* ============ Hero ============ */
.hero {
  padding: 0;
  padding-bottom: 0;
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.hero-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-banner-img {
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 62%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
  border: 0;
}
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      var(--navy) 0%,
      var(--navy) 38%,
      rgba(16, 37, 60, 0.92) 48%,
      rgba(16, 37, 60, 0.55) 58%,
      rgba(16, 37, 60, 0.2) 70%,
      transparent 85%),
    linear-gradient(180deg, transparent 0%, transparent 72%, var(--navy) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 160px;
  padding-bottom: 60px;
  max-width: 620px;
}
.hero-logo {
  display: block;
  width: 100%;
  max-width: 380px;
  margin-bottom: 32px;
}
.hero-logo img { width: 100%; height: auto; display: block; }
.hero-date-band {
  display: inline-flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  background: rgba(13, 11, 157, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-date-band .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--teal); position: relative;
}
.hero-date-band .pulse::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%; background: var(--teal); opacity: .4;
  animation: pulse 1.6s ease-out infinite;
}
.hero-date-band .text {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: 0.12em; color: var(--bone);
}
.hero-date-band .text b { color: var(--teal); font-weight: 500; }
.hero h1.display {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--bone);
  text-wrap: balance;
  max-width: 22ch;
}
.hero h1 .punch { color: var(--teal); display: inline; }
.hero h1 .lede-line {
  display: inline;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: var(--bone);
  margin-bottom: 0;
  max-width: none;
}
.hero-meta {
  display: flex; gap: 24px; flex-wrap: wrap; margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--gray);
}
.hero-meta .item { display: flex; align-items: center; gap: 8px; }
.hero-meta .item b { color: var(--bone); font-weight: 500; }
.hero-actions { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }
.hero-sub { margin-top: 28px; max-width: 52ch; color: rgba(245,244,238,0.88); }
.hero-signature {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 24px;
  padding: 24px 0 32px;
  border-top: 1px solid var(--line);
}
.hero-signature .stretch { flex: 1; height: 1px; background: var(--line); }
.hero-signature .text { color: var(--bone); font-weight: 600; }

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 56px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 16px;
  letter-spacing: 0.06em;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 56px; color: var(--bone); text-transform: uppercase; }
.marquee-track .sep { color: var(--teal); }
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ============ Diagnóstico ============ */
.diag-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.diag-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  padding: 32px 28px 28px;
  position: relative;
  transition: border-color .2s ease, transform .25s ease, background .25s ease;
  overflow: hidden;
}
.diag-card:hover { border-color: var(--teal); transform: translateY(-3px); background: rgba(13, 11, 157, 0.06); }
.diag-card .stage {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.12em; color: var(--teal);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.diag-card .stage::before { content: ''; width: 8px; height: 8px; background: var(--teal); }
.diag-card h3 { margin-bottom: 22px; min-height: 2.4em; }
.diag-card ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.diag-card li {
  padding-left: 22px; position: relative;
  font-size: 15px; line-height: 1.5; color: rgba(245,244,238,.82);
}
.diag-card li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 10px; height: 1px; background: var(--gray);
}

.diag-footer { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 16px; }
.diag-footer .marker { width: 36px; height: 36px; background: var(--blue); color: var(--bone); display: grid; place-items: center; font-family: 'Archivo'; font-weight: 800; font-size: 18px; }

/* ============ Duas habilidades ============ */
.hab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 64px; border: 1px solid var(--line); }
.hab-col { padding: 56px 44px; position: relative; }
.hab-col + .hab-col { border-left: 1px solid var(--line); }
.hab-col.have { background: rgba(255,255,255,0.015); }
.hab-col.miss { background: linear-gradient(135deg, rgba(13, 11, 157, 0.22), rgba(13, 11, 157, 0.08)); }
.hab-col .num { font-family: 'Archivo'; font-weight: 900; font-size: 78px; line-height: 1; letter-spacing: -0.04em; color: var(--bone); opacity: .14; margin-bottom: 18px; }
.hab-col.miss .num { color: var(--teal); opacity: .45; }
.hab-col .badge {
  display: inline-flex; padding: 5px 10px; font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hab-col.have .badge { background: rgba(255,255,255,.06); color: var(--gray); }
.hab-col.miss .badge { background: var(--teal); color: var(--navy); }
.hab-col h3 { margin-bottom: 18px; }
.hab-col p { color: rgba(245,244,238,.82); font-size: 16px; }
.hab-col .stamp {
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line);
  font-family: 'Archivo'; font-weight: 800; font-size: 18px;
}
.hab-col.have .stamp { color: var(--bone); }
.hab-col.miss .stamp { color: var(--teal); }

.analogy {
  margin-top: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.analogy-card {
  padding: 28px 32px;
  border: 1px solid var(--line);
  font-size: 16px; color: rgba(245,244,238,.85);
}
.analogy-card b { color: var(--teal); font-weight: 700; }

.hab-conclusion {
  margin-top: 48px;
  display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: center;
}
.hab-conclusion .big {
  font-family: 'Archivo'; font-weight: 900; font-size: 22vw; line-height: 0.8;
  color: var(--teal); letter-spacing: -0.06em;
  font-size: clamp(96px, 14vw, 220px);
}

/* ============ Sobre evento + entregáveis ============ */
.deliv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 56px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.deliv-cell {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 32px;
  position: relative;
  transition: background .2s ease;
}
.deliv-cell:hover { background: rgba(13, 11, 157, .12); }
.deliv-cell .idx { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--gray); margin-bottom: 18px; }
.deliv-cell h4 { font-family: 'Archivo'; font-weight: 700; font-size: 22px; margin-bottom: 12px; letter-spacing: -0.01em; }
.deliv-cell p { color: rgba(245,244,238,.7); font-size: 15px; }
.deliv-cell .icon-mark {
  position: absolute; top: 32px; right: 32px;
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center; color: var(--teal);
}

.event-meta {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 0;
  border: 1px solid var(--line); border-top: 0;
}
.event-meta .cell {
  padding: 24px; border-right: 1px solid var(--line);
}
.event-meta .cell:last-child { border-right: 0; }
.event-meta .k { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--gray); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.event-meta .v { font-family: 'Archivo'; font-weight: 800; font-size: 22px; letter-spacing: -0.01em; }
.event-meta .v small { display: block; font-family: 'Manrope'; font-weight: 500; font-size: 13px; color: var(--gray); margin-top: 2px; letter-spacing: 0; text-transform: none; }

/* ============ 3 dias ============ */
.days-strip { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; margin-top: 64px; }
.day {
  border: 1px solid var(--line);
  padding: 40px 36px;
  position: relative;
  display: flex; flex-direction: column;
  min-height: 460px;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
  overflow: hidden;
}
.day + .day { border-left: 0; }
.day:hover { background: linear-gradient(180deg, rgba(13, 11, 157, 0.18), rgba(13, 11, 157, 0.04)); transform: translateY(-4px); border-color: var(--teal); }
.day .day-date { font-family: 'JetBrains Mono'; font-size: 12px; letter-spacing: 0.1em; color: var(--teal); margin-bottom: 10px; }
.day .day-num {
  font-family: 'Archivo'; font-weight: 900;
  font-size: 110px; line-height: 0.85; letter-spacing: -0.06em;
  color: var(--bone);
}
.day .day-label { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--gray); letter-spacing: 0.12em; margin-top: 6px; }
.day h3 { margin-top: 28px; margin-bottom: 16px; }
.day p { color: rgba(245,244,238,.78); font-size: 15px; flex: 1; }
.day .stamp { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--gray); letter-spacing: 0.08em; }
.day .stamp b { color: var(--teal); font-weight: 500; }

/* ============ Pra quem é ============ */
.for-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; margin-top: 56px; }
.for-card {
  padding: 36px 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.for-card:first-child { border-left: 1px solid var(--line); }
.for-card .pill {
  display: inline-flex; padding: 6px 12px; gap: 8px; align-items: center;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.08em;
  border: 1px solid var(--teal); color: var(--teal);
  margin-bottom: 22px;
}
.for-card h3 { margin-bottom: 18px; }
.for-card p { color: rgba(245,244,238,.78); font-size: 15px; }
.three-one {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  display: flex; gap: 28px; align-items: baseline; flex-wrap: wrap;
}
.three-one .word { font-family: 'Archivo'; font-weight: 800; font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -0.02em; }
.three-one .word.alt { color: var(--teal); }

/* ============ Autoridade ============ */
.auth-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; margin-top: 56px; align-items: start; }
.auth-photo {
  aspect-ratio: 4/5;
  background: var(--navy-2);
  border: 1px solid var(--line-strong);
  position: relative;
  overflow: hidden;
}
.auth-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.7) contrast(1.05);
}
.auth-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(16,37,60,0.6) 100%),
    linear-gradient(180deg, rgba(13,11,157,0.08) 0%, transparent 40%);
  pointer-events: none;
}
.auth-photo .lbl { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--gray); letter-spacing: 0.1em; position: absolute; bottom: 14px; left: 14px; }
.auth-photo .nameplate {
  position: absolute; top: 18px; left: 18px;
  font-family: 'Archivo'; font-weight: 900; font-size: 24px; letter-spacing: -0.02em;
  color: var(--bone);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  z-index: 2;
}
.auth-photo .nameplate small { display: block; font-family: 'JetBrains Mono'; font-size: 11px; font-weight: 500; color: var(--teal); letter-spacing: 0.1em; margin-top: 4px; }
.auth-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 32px; }
.auth-stat { border: 1px solid var(--line); padding: 22px; background: rgba(13, 11, 157, 0.06); }
.auth-stat .n { font-family: 'Archivo'; font-weight: 900; font-size: 44px; color: var(--teal); letter-spacing: -0.02em; line-height: 1; }
.auth-stat .l { font-size: 13px; color: rgba(245,244,238,.78); margin-top: 8px; }
.auth-stat .tbd { font-family: 'JetBrains Mono'; font-size: 10px; color: var(--gray); margin-top: 6px; letter-spacing: 0.1em; }

.auth-quote {
  margin-top: 32px; padding: 28px; border-left: 3px solid var(--teal); background: rgba(13,11,157,.18);
  font-family: 'Archivo'; font-weight: 600; font-size: 22px; letter-spacing: -0.01em; line-height: 1.25;
}
.auth-quote .by { display: block; font-family: 'JetBrains Mono'; font-size: 11px; font-weight: 500; color: var(--gray); letter-spacing: 0.1em; margin-top: 14px; text-transform: uppercase; }

.tbd-block { margin-top: 22px; padding: 14px 18px; border: 1px dashed var(--line-strong); font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--gray); letter-spacing: 0.04em; }
.tbd-block b { color: var(--teal); font-weight: 500; }

/* ============ Not for you ============ */
.not-for { background: rgba(0,0,0,0.22); }
.not-list { margin-top: 56px; display: grid; gap: 0; border-top: 1px solid var(--line); }
.not-row {
  display: grid; grid-template-columns: 80px 1fr;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  gap: 32px;
  transition: background .2s ease;
}
.not-row:hover { background: rgba(255,255,255,.02); }
.not-row .x {
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  color: rgba(245,244,238,.5);
  font-family: 'Archivo'; font-weight: 800; font-size: 22px;
}
.not-row p { font-family: 'Archivo'; font-weight: 600; font-size: clamp(18px, 1.7vw, 24px); letter-spacing: -0.01em; line-height: 1.25; }
.not-closer { margin-top: 56px; padding-top: 36px; border-top: 1px solid var(--line); }

/* ============ FAQ ============ */
.faq-list { margin-top: 48px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; padding: 28px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  color: var(--bone); cursor: pointer;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: clamp(18px, 1.7vw, 22px);
  text-align: left; letter-spacing: -0.01em;
  transition: color .2s ease;
}
.faq-q:hover { color: var(--teal); }
.faq-q .ico {
  width: 36px; height: 36px; border: 1px solid var(--line-strong);
  display: grid; place-items: center; flex: 0 0 36px;
  transition: transform .25s ease, background .2s, color .2s;
}
.faq-item.open .faq-q .ico { background: var(--blue); color: var(--bone); border-color: var(--blue); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 0 30px; color: rgba(245,244,238,.8); font-size: 16px; line-height: 1.6; max-width: 70ch; }

/* ============ Testimonials carousel ============ */
.testi-carousel {
  position: relative;
  margin-top: 56px;
}
.testi-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.testi-track::-webkit-scrollbar { display: none; }
.testi {
  flex: 0 0 calc(100% / 3);
  scroll-snap-align: start;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 32px;
  display: flex; flex-direction: column;
  min-height: 360px;
  box-sizing: border-box;
}
.carousel-btn {
  position: absolute;
  top: calc(50% - 60px);
  width: 48px; height: 48px;
  background: var(--navy);
  border: 1px solid var(--line-strong);
  color: var(--bone);
  display: grid; place-items: center;
  cursor: pointer;
  z-index: 3;
  transform: translateY(-50%);
  transition: background .2s ease, border-color .2s ease, color .2s ease, opacity .2s ease;
}
.carousel-btn:hover { background: var(--blue); border-color: var(--blue); }
.carousel-btn.prev { left: -24px; }
.carousel-btn.next { right: -24px; }
.carousel-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}
.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
}
.carousel-dots button {
  width: 32px; height: 4px;
  background: var(--line-strong);
  border: 0;
  cursor: pointer;
  transition: background .2s ease, width .2s ease;
  padding: 0;
}
.carousel-dots button.on { background: var(--teal); width: 48px; }
.carousel-dots button:hover:not(.on) { background: var(--gray); }
.testi .vid-slot {
  aspect-ratio: 16/10;
  background:
    repeating-linear-gradient(45deg, rgba(245,244,238,.04) 0 2px, transparent 2px 12px),
    linear-gradient(180deg, rgba(13,11,157,.1), rgba(13,11,157,.04));
  border: 1px dashed var(--line-strong);
  position: relative;
  display: grid; place-items: center;
  margin-bottom: 22px;
  filter: grayscale(0.5);
  overflow: hidden;
  cursor: pointer;
}
.testi .vid-slot[data-yt] {
  border: 1px solid var(--line-strong);
}
.testi .vid-slot[data-yt]::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
  transition: opacity .25s ease;
}
.testi .vid-slot[data-yt]:hover::after { opacity: 0.4; }
.testi .vid-slot iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.testi .vid-slot .play-mini {
  position: relative; z-index: 1;
  appearance: none; border: 0;
  cursor: pointer;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue); color: var(--bone);
  display: grid; place-items: center;
  box-shadow: 0 0 0 10px rgba(13, 11, 157, .18), 0 12px 40px rgba(0, 0, 0, .4);
  transition: transform .2s ease, background .2s ease;
}
.testi .vid-slot .play-mini:hover { transform: scale(1.08); background: var(--blue-bright); }
.testi .vid-slot .lbl { position: absolute; bottom: 10px; left: 12px; font-family: 'JetBrains Mono'; font-size: 10px; color: var(--gray); letter-spacing: 0.1em; }
.testi .headline { font-family: 'Archivo'; font-weight: 700; font-size: 18px; line-height: 1.3; margin-bottom: 14px; letter-spacing: -0.01em; }
.testi .who { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: end; font-size: 13px; color: var(--gray); }
.testi .who b { color: var(--bone); font-weight: 600; }
.testi .who .num { font-family: 'JetBrains Mono'; color: var(--teal); }

/* ============ Tickets ============ */
.anchor-value {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 60ch;
}
.tickets {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px;
  align-items: stretch;
}
.ticket {
  display: flex; flex-direction: column;
  padding: 36px 32px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line-strong);
  position: relative;
  transition: transform .2s ease, border-color .2s ease;
  overflow: hidden;
}
.ticket:hover { transform: translateY(-4px); border-color: var(--bone); }
.ticket.sold {
  background: rgba(255,255,255,0.01);
  border-style: dashed;
}
.ticket.sold:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.ticket.featured {
  background: linear-gradient(180deg, rgba(13,11,157,0.42), rgba(13,11,157,0.12));
  border-color: var(--teal);
  box-shadow: 0 30px 80px -30px var(--blue-glow);
}
.ticket .ribbon {
  position: absolute; top: -1px; right: -1px;
  background: var(--blue); color: var(--bone);
  font-family: 'Archivo'; font-weight: 800; font-size: 11px;
  letter-spacing: 0.12em; padding: 6px 12px;
}
.ticket.featured .ribbon { background: var(--teal); color: var(--navy); }
.ticket.sold .ribbon { background: transparent; color: var(--gray); border: 1px solid var(--line-strong); }
.ticket .name {
  font-family: 'Archivo'; font-weight: 900;
  font-size: 32px; letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 8px;
}
.ticket .name small { font-family: 'JetBrains Mono'; font-size: 11px; color: var(--gray); letter-spacing: 0.12em; font-weight: 500; text-transform: uppercase; }
.ticket .tagline { color: rgba(245,244,238,.7); font-size: 14px; margin-top: 8px; min-height: 2.6em; }

.ticket .price-block { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line); }
.ticket .strike { font-family: 'JetBrains Mono'; font-size: 13px; color: var(--gray); text-decoration: line-through; }
.ticket .lot-label { font-family: 'JetBrains Mono'; font-size: 11px; letter-spacing: 0.12em; color: var(--teal); margin-bottom: 6px; }
.ticket .price { font-family: 'Archivo'; font-weight: 900; font-size: 44px; letter-spacing: -0.025em; line-height: 1; }
.ticket .price .cents { font-size: 22px; font-weight: 700; opacity: .8; }
.ticket .price .pfx { font-family: 'Manrope'; font-weight: 500; font-size: 14px; color: var(--gray); margin-right: 6px; vertical-align: super; }
.ticket .installments { font-size: 13px; color: var(--gray); margin-top: 6px; }
.ticket .sold-out {
  font-family: 'Archivo'; font-weight: 900;
  font-size: clamp(20px, 1.9vw, 28px); line-height: 1.15;
  letter-spacing: 0.04em; color: var(--gray);
  padding: 10px 0;
}

.ticket .includes { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.ticket .includes li {
  list-style: none; font-size: 14px; color: rgba(245,244,238,.85);
  display: flex; gap: 12px; align-items: start; line-height: 1.45;
}
.ticket .includes li .chk {
  flex: 0 0 18px; width: 18px; height: 18px; margin-top: 2px;
  background: var(--teal); color: var(--navy);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 800;
}
.ticket.sold .includes li .chk { background: transparent; border: 1px solid var(--gray); color: var(--gray); }

.ticket .action { margin-top: 32px; }

.lot-tracker { margin-top: 18px; display: flex; gap: 4px; }
.lot-tracker .seg { flex: 1; height: 4px; background: rgba(255,255,255,.08); }
.lot-tracker .seg.active { background: var(--teal); }
.lot-tracker .seg.next { background: rgba(69,181,169,.25); }
.lot-meta { margin-top: 10px; font-family: 'JetBrains Mono'; font-size: 11px; color: var(--gray); letter-spacing: 0.06em; display: flex; justify-content: space-between; }

.kit-note {
  margin-top: 56px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  display: flex; gap: 16px; align-items: center;
  font-size: 14px; color: rgba(245,244,238,.78);
}
.kit-note .marker { width: 28px; height: 28px; background: var(--blue); color: var(--bone); display: grid; place-items: center; flex: 0 0 28px; font-family: 'Archivo'; font-weight: 800; font-size: 14px; }

/* ============ Closing ============ */
.closing {
  text-align: center;
  padding: 140px 0 120px;
  background: linear-gradient(180deg, transparent, rgba(13,11,157,0.28) 60%, rgba(13,11,157,0.42));
  position: relative;
}
.closing .eyebrow { display: inline-block; margin-bottom: 24px; }
.closing .display { max-width: 22ch; margin: 0 auto; position: relative; z-index: 1; }
.closing .lede { margin: 28px auto 0; position: relative; z-index: 1; }
.closing .three-words {
  margin: 56px auto 40px;
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  font-family: 'Archivo'; font-weight: 900; font-size: clamp(22px, 2.6vw, 36px);
  letter-spacing: -0.02em;
  position: relative; z-index: 1;
}
.closing .three-words .dot { color: var(--teal); }
.closing .signature {
  margin-top: 64px;
  font-family: 'JetBrains Mono'; font-size: 12px; color: var(--gray); letter-spacing: 0.1em;
}

/* ============ Footer ============ */
footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 40px;
  background: var(--navy-2);
}
footer .row { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; align-items: end; }
footer .legal { font-size: 12px; color: var(--gray); max-width: 56ch; line-height: 1.55; }
footer .foot-logo { width: 220px; margin-bottom: 14px; }
footer .foot-logo img { width: 100%; height: auto; display: block; }
footer .foot-date {
  font-family: 'JetBrains Mono'; font-size: 12px; color: var(--gray); letter-spacing: 0.1em;
  padding: 6px 0 0;
}
footer .foot-date b { color: var(--teal); font-weight: 500; }
footer .meta { font-family: 'JetBrains Mono'; font-size: 11px; color: var(--gray); letter-spacing: 0.1em; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ============ Sticky bottom CTA ============ */
.bottom-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 45;
  padding: 12px 20px;
  background: rgba(16,37,60,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-strong);
  transform: translateY(100%);
  transition: transform .3s ease;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.bottom-cta.visible { transform: translateY(0); }
.bottom-cta .label { font-family: 'JetBrains Mono'; font-size: 11px; letter-spacing: 0.1em; color: var(--gray); }
.bottom-cta .label b { color: var(--teal); font-weight: 500; }

/* ============ Modal ============ */
.modal-veil {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(5, 14, 24, 0.78);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease;
}
.modal-veil.open { opacity: 1; pointer-events: auto; }
.modal {
  width: min(560px, 100%);
  background: var(--navy);
  border: 1px solid var(--line-strong);
  padding: 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform .25s ease;
}
.modal-veil.open .modal { transform: translateY(0); }
.modal .close-btn {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border: 1px solid var(--line-strong); background: none; color: var(--bone);
  cursor: pointer;
}
.modal h2 { margin-bottom: 12px; }
.modal p { color: rgba(245,244,238,.78); margin-bottom: 28px; }
.modal label { display: block; font-family: 'JetBrains Mono'; font-size: 11px; letter-spacing: 0.1em; color: var(--gray); margin-bottom: 8px; }
.modal input,
.modal select {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,.03); border: 1px solid var(--line);
  color: var(--bone); font-family: "Twemoji Country Flags", 'Manrope', sans-serif; font-size: 15px; margin-bottom: 18px;
  transition: border-color .2s;
}
.modal input:focus,
.modal select:focus { outline: 0; border-color: var(--teal); }
.modal select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1l4 4 4-4' stroke='%23F5F4EE' stroke-width='1.5' stroke-linecap='square'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 36px;
  cursor: pointer;
}
.modal select option {
  background: var(--navy);
  color: var(--bone);
  font-family: "Twemoji Country Flags", 'Manrope', sans-serif;
}
.phone-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  margin-bottom: 6px;
}
.phone-row select,
.phone-row input { margin-bottom: 0; }
.form-hint {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  margin-top: 4px;
}
.form-hint.error { color: #ff7676; }
.modal input.invalid,
.modal select.invalid { border-color: #ff7676; }
.modal .confirm {
  text-align: center; padding: 24px 0 8px;
}
.modal .confirm .ico {
  width: 56px; height: 56px; background: var(--blue); color: var(--bone);
  display: grid; place-items: center; margin: 0 auto 18px;
  font-family: 'Archivo'; font-weight: 800; font-size: 28px;
}
.modal .confirm-cta { background: rgba(13,11,157,.22); border: 1px solid var(--line-strong); padding: 22px; margin-top: 22px; text-align: left; }
.modal .confirm-cta .small { font-size: 13px; color: var(--gray); margin-bottom: 10px; }
.modal .confirm-cta h3 { margin-bottom: 14px; font-size: 20px; }

/* Larger modal for success state */
.modal-veil.success .modal {
  width: min(680px, 100%);
  padding: 64px 56px;
}
.success-ico {
  width: 84px; height: 84px;
  background: var(--teal); color: var(--navy);
  display: grid; place-items: center;
  margin: 0 auto 28px;
  border-radius: 50%;
  box-shadow: 0 0 0 14px rgba(69, 181, 169, .18), 0 12px 60px rgba(69, 181, 169, .35);
}
.success-title {
  font-size: clamp(40px, 5vw, 64px) !important;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--bone);
  margin-bottom: 24px;
}
.success-body {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(245,244,238,0.85);
  max-width: 46ch;
  margin: 0 auto;
  text-wrap: pretty;
}

/* ============ Reveal animation ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ Tweaks panel (vanilla) ============ */
.twk-panel {
  position: fixed; right: 16px; bottom: 16px; z-index: 2147483646;
  width: 280px; max-height: calc(100vh - 32px);
  display: flex; flex-direction: column;
  background: rgba(250, 249, 247, .88);
  color: #29261b;
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  backdrop-filter: blur(24px) saturate(160%);
  border: .5px solid rgba(255, 255, 255, .6);
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset, 0 12px 40px rgba(0, 0, 0, .18);
  font: 11.5px/1.4 ui-sans-serif, system-ui, -apple-system, sans-serif;
  overflow: hidden;
}
.twk-panel[hidden] { display: none; }
.twk-hd {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 8px 10px 14px;
  user-select: none;
}
.twk-hd b { font-size: 12px; font-weight: 600; letter-spacing: .01em; }
.twk-x {
  appearance: none; border: 0; background: transparent;
  color: rgba(41, 38, 27, .55);
  width: 22px; height: 22px; border-radius: 6px;
  cursor: pointer; font-size: 16px; line-height: 1;
}
.twk-x:hover { background: rgba(0, 0, 0, .06); color: #29261b; }
.twk-body {
  padding: 2px 14px 14px;
  display: flex; flex-direction: column; gap: 14px;
  overflow-y: auto; overflow-x: hidden; min-height: 0;
}
.twk-sect {
  font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(41, 38, 27, .55);
  padding-top: 6px;
}
.twk-row { display: flex; flex-direction: column; gap: 8px; }
.twk-lbl {
  display: flex; justify-content: space-between; align-items: baseline;
  color: rgba(41, 38, 27, .82);
  font-weight: 500;
}
.twk-val {
  color: rgba(41, 38, 27, .45);
  font-variant-numeric: tabular-nums;
  font-family: ui-monospace, monospace;
  font-size: 10.5px;
}
.twk-swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.twk-grid {
  display: grid; gap: 10px;
}
.twk-grid-palette { grid-template-columns: repeat(3, 1fr); }
.twk-opt {
  display: flex; flex-direction: column; gap: 6px; align-items: center;
}
.twk-opt-lbl {
  font-size: 9.5px; letter-spacing: .04em; color: rgba(41, 38, 27, .55);
  text-align: center;
}
.twk-sw {
  appearance: none; border: 0; padding: 0; cursor: pointer;
  width: 28px; height: 28px; border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .15);
  transition: transform .15s ease, box-shadow .15s ease;
}
.twk-sw:hover { transform: scale(1.06); }
.twk-sw.on {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .15), 0 0 0 2px #29261b;
}
.twk-sw-palette {
  width: 100%;
  height: 44px;
  display: flex; flex-direction: column;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.twk-sw-palette .twk-sw-big {
  flex: 1;
}
.twk-sw-palette .twk-sw-strip {
  display: flex;
  height: 12px;
}
.twk-sw-palette .twk-sw-strip > div {
  flex: 1;
}

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .hero-banner-img { width: 100%; object-position: 70% center; opacity: 0.32; }
  .hero-banner-overlay { background: linear-gradient(180deg, rgba(16,37,60,0.6) 0%, var(--navy) 80%); }
  .hero-inner { max-width: 100%; padding-top: 130px; }
  .diag-grid, .testi-grid, .deliv-grid, .days-strip, .for-grid, .tickets { grid-template-columns: 1fr; }
  .hab-grid, .analogy, .auth-grid { grid-template-columns: 1fr; }
  .hab-col + .hab-col { border-left: 0; border-top: 1px solid var(--line); }
  .day + .day { border-left: 1px solid var(--line); }
  .for-card { border-left: 1px solid var(--line); }
  .for-card + .for-card { border-top: 0; }
  .event-meta { grid-template-columns: 1fr 1fr; }
  .event-meta .cell { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .top-cta .btn { display: none; }
  .top-cta .live-pill { display: none; }
  .brand .date-tag { display: none; }
  .testi { flex: 0 0 100%; }
  .testi-track { border-left: 0; }
  .carousel-btn.prev { left: 4px; }
  .carousel-btn.next { right: 4px; }
}
@media (max-width: 640px) {
  section { padding: 64px 0; }
  .hero { padding: 0; }
  .hero-inner { padding-top: 100px; padding-bottom: 40px; }
  .hero-logo { max-width: 220px; margin-bottom: 22px; }
  .hero-date-band { margin-bottom: 20px; padding: 8px 12px; }
  .hero-date-band .text { font-size: 11px; letter-spacing: 0.08em; }
  .hero h1.display { font-size: 32px !important; line-height: 1.1; }
  .hero-sub { margin-top: 18px; font-size: 15px; }
  .hero-actions { margin-top: 24px; }
  .hero-actions .btn-lg { padding: 16px 22px; font-size: 14px; }
  .hero-meta { margin-top: 24px; padding-top: 20px; }
  .wrap { padding: 0 20px; }
  .hab-col, .day, .for-card { padding: 32px 24px; }
}
