/* =========================================================
   Operación Limón — Stylesheet
   Aesthetic: Misión Secreta (black + lemon neon)
   ========================================================= */

:root {
  --bg: #0a0a0a;
  --bg-2: #121212;
  --bg-3: #181818;
  --ink: #f4f1e8;
  --ink-dim: #9a978f;
  --ink-soft: #6e6a60;
  --line: rgba(244, 241, 232, 0.12);
  --line-strong: rgba(244, 241, 232, 0.22);

  --accent: #e7ff3a;        /* lemon neon */
  --accent-2: #b9d324;
  --accent-soft: rgba(231, 255, 58, 0.12);
  --danger: #ff5b3a;

  --font-display: "Anton", "Bebas Neue", "Helvetica Neue", Impact, sans-serif;
  --font-body: "Inter Tight", "Helvetica Neue", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

  --radius: 4px;
  --container: 1240px;
}

/* ---- Reset-ish ---- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input { font: inherit; }

/* ---- Utilities ---- */
.ol-mono { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-dim); }
.ol-eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--ink-dim); }
.ol-bar { display: inline-block; width: 32px; height: 1px; background: var(--accent); }
.ol-accent { color: var(--accent); }
.ol-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); margin-right: 6px; vertical-align: 1px; }
.ol-dot--green { background: #5cd083; box-shadow: 0 0 8px #5cd083; }
.ol-blink { animation: blink 1.4s steps(2, end) infinite; color: var(--danger); }
@keyframes blink { 50% { opacity: .15; } }

/* ---- Stamps ---- */
.ol-stamp {
  display: inline-block;
  padding: 6px 12px;
  border: 2px solid var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: transparent;
  border-radius: 2px;
  white-space: nowrap;
  text-shadow: 0 0 6px rgba(231, 255, 58, 0.3);
  position: relative;
  user-select: none;
}
.ol-stamp::before, .ol-stamp::after {
  content: "";
  position: absolute;
  inset: -3px;
  border: 1px solid currentColor;
  opacity: 0.25;
  border-radius: 2px;
  pointer-events: none;
}

/* ---- Buttons ---- */
.ol-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--line-strong);
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.ol-btn:hover { transform: translateY(-1px); }
.ol-btn--primary {
  background: var(--accent);
  color: #0b0b0b;
  border-color: var(--accent);
  box-shadow: 0 0 0 0 rgba(231, 255, 58, 0);
}
.ol-btn--primary:hover { box-shadow: 0 0 28px rgba(231, 255, 58, 0.35); }
.ol-btn--primary.is-on { background: #5cd083; border-color: #5cd083; color: #0b0b0b; }
.ol-btn--ghost { background: transparent; color: var(--ink); }
.ol-btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.ol-btn--mini { padding: 8px 14px; font-size: 11px; background: var(--accent); color: #0b0b0b; border-color: var(--accent); }

/* ---- Inputs ---- */
.ol-input {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink);
  padding: 14px 16px;
  width: 100%;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.ol-input:focus { border-color: var(--accent); background: rgba(231,255,58,0.04); }
.ol-input--inline { padding: 10px 12px; font-size: 12px; }

/* =========================================================
   GATE
   ========================================================= */
.ol-gate {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  overflow: hidden;
  isolation: isolate;
}
.ol-gate__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: -1px -1px;
  pointer-events: none;
  z-index: -1;
}
.ol-gate__noise {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(231,255,58,0.08), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(231,255,58,0.06), transparent 50%);
  pointer-events: none;
  z-index: -1;
}
.ol-gate__topbar, .ol-gate__bottombar {
  position: absolute;
  left: 24px; right: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.ol-gate__topbar { top: 24px; }
.ol-gate__bottombar { bottom: 24px; }

.ol-gate__card {
  position: relative;
  width: min(520px, 100%);
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  padding: 36px 36px 28px;
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0,0,0,.6), inset 0 0 0 1px rgba(231,255,58,0.04);
  overflow: hidden;
}
.ol-gate__card::before, .ol-gate__card::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border: 1.5px solid var(--accent);
}
.ol-gate__card::before { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.ol-gate__card::after { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }
.ol-gate__card.is-shake { animation: shake .45s ease; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-7px); }
  40% { transform: translateX(7px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}
.ol-gate__card.is-scan { animation: cardScan 1.1s ease forwards; }
@keyframes cardScan {
  0% { box-shadow: 0 20px 80px rgba(0,0,0,.6), inset 0 0 0 1px rgba(231,255,58,0.04); }
  60% { box-shadow: 0 0 0 4px var(--accent), 0 0 80px rgba(231,255,58,0.5); }
  100% { box-shadow: 0 0 0 0 var(--accent), 0 0 200px rgba(231,255,58,0); opacity: 0; transform: scale(1.02); }
}

.ol-gate__head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.ol-gate__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(52px, 8vw, 72px);
  line-height: .92;
  letter-spacing: -0.01em;
  margin: 4px 0 0;
  text-transform: uppercase;
}
.ol-gate__sub {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin: 6px 0 0;
}
.ol-gate__divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 28px 0 22px;
}
.ol-gate__divider span { height: 1px; background: var(--line-strong); display: block; }
.ol-gate__divider b {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--accent);
}

.ol-gate__form { display: flex; flex-direction: column; gap: 12px; }
.ol-gate__label { color: var(--ink-dim); }
.ol-gate__inputwrap { position: relative; }
.ol-gate__input { letter-spacing: 0.4em; padding: 16px 18px; font-size: 18px; }
.ol-gate__inputline {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.ol-gate__input:focus + .ol-gate__inputline { transform: scaleX(1); }
.ol-gate__submit { margin-top: 8px; justify-content: center; }
.ol-gate__feedback { min-height: 22px; padding: 2px 2px 0; }
.ol-gate__err { color: var(--danger); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em; }
.ol-gate__hint { color: var(--accent); display: block; margin-top: 4px; }

.ol-gate__foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 26px; padding-top: 18px; border-top: 1px dashed var(--line);
}
.ol-gate__seal { display: flex; gap: 18px; align-items: center; }
.ol-gate__intent { color: var(--ink-soft); }

/* =========================================================
   APP CHROME
   ========================================================= */
.ol-app { min-height: 100vh; }
.ol-app__nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.ol-app__brand { display: flex; align-items: center; gap: 12px; }
.ol-app__brand b { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 400; }
.ol-app__brand small { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--ink-dim); text-transform: uppercase; }
.ol-app__navlinks { display: flex; gap: 6px; }
.ol-app__navlinks a {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 8px 12px; color: var(--ink-dim); border-radius: 4px;
}
.ol-app__navlinks a:hover { color: var(--accent); background: var(--accent-soft); }
.ol-app__navrt { display: flex; align-items: center; gap: 16px; }
.ol-app__sess { color: var(--ink-dim); }
.ol-app__sess .ol-dot--green { animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .35; } }

.ol-section__head { max-width: var(--container); margin: 0 auto 36px; padding: 0 28px; }
.ol-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 64px);
  line-height: .96;
  margin: 12px 0 0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.ol-h2 em { font-style: normal; color: var(--accent); }
.ol-section__desc { color: var(--ink-dim); max-width: 60ch; margin-top: 14px; font-size: 16px; }

/* =========================================================
   HERO
   ========================================================= */
.ol-hero {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
  isolation: isolate;
}
.ol-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: -1;
}
.ol-hero__corner {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 10px;
}
.ol-hero__corner--tl { top: 18px; left: 28px; }
.ol-hero__corner--tr { top: 18px; right: 28px; align-items: flex-end; }

.ol-hero__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 28px 60px;
}
.ol-display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(90px, 16vw, 220px);
  line-height: .82;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 24px 0;
}
.ol-display__word { display: block; }
.ol-display__word--accent { color: var(--accent); text-shadow: 0 0 60px rgba(231,255,58,0.25); }

.ol-hero__meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: end;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.ol-hero__dates {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1;
}
.ol-hero__dates i { color: var(--accent); font-style: normal; font-size: 0.6em; }
.ol-hero__dates em {
  font-family: var(--font-mono); font-size: 14px; font-style: normal;
  letter-spacing: 0.2em; color: var(--ink-dim); text-transform: uppercase;
  margin-left: 12px;
}
.ol-hero__tagline {
  font-size: clamp(18px, 2vw, 22px); line-height: 1.4; color: var(--ink); text-wrap: pretty;
  max-width: 32ch;
  justify-self: end;
}
.ol-hero__tagline strong { color: var(--accent); font-weight: 600; }

.ol-hero__cta { display: flex; gap: 14px; margin-top: 50px; flex-wrap: wrap; }

/* Marquee */
.ol-marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #050505;
  overflow: hidden;
  padding: 16px 0;
  margin-top: 60px;
}
.ol-marquee__track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: scroll 60s linear infinite;
}
.ol-marquee__item {
  display: inline-flex; align-items: center;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-dim);
}
@keyframes scroll { to { transform: translateX(-33.333%); } }

/* =========================================================
   NARRATIVE
   ========================================================= */
.ol-narrative {
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 28px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
.ol-narrative .ol-section__head { margin: 0; padding: 0; }
.ol-narrative__body { font-size: 20px; line-height: 1.55; color: var(--ink); text-wrap: pretty; }
.ol-narrative__body p { margin: 0 0 22px; }
.ol-narrative__body .ol-lede { font-size: 26px; line-height: 1.4; color: var(--ink); }
.ol-narrative__body mark { background: var(--accent); color: #0b0b0b; padding: 0 6px; border-radius: 2px; }
.ol-narrative__body s { color: var(--ink-soft); text-decoration-color: var(--danger); text-decoration-thickness: 2px; }
.ol-narrative__signoff {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 36px; padding-top: 26px; border-top: 1px dashed var(--line);
}

/* =========================================================
   ITINERARIO
   ========================================================= */
.ol-itin { padding: 80px 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ol-days { max-width: var(--container); margin: 0 auto; padding: 0 28px; display: flex; flex-direction: column; gap: 12px; }
.ol-day {
  border: 1px solid var(--line-strong);
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease;
}
.ol-day.is-open { border-color: var(--accent); }
.ol-day__head {
  display: grid;
  grid-template-columns: 200px 160px 1fr 40px;
  align-items: center;
  gap: 24px;
  padding: 26px 28px;
  width: 100%;
  text-align: left;
  transition: background .2s ease;
}
.ol-day__head:hover { background: rgba(255,255,255,0.02); }
.ol-day__codecol { display: flex; flex-direction: column; gap: 4px; }
.ol-day__code { color: var(--accent); }
.ol-day__weekday { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-dim); }
.ol-day__date { font-family: var(--font-display); font-size: 48px; line-height: 1; letter-spacing: -0.01em; color: var(--ink); }
.ol-day.is-open .ol-day__date { color: var(--accent); }
.ol-day__title { font-family: var(--font-display); font-weight: 400; font-size: 32px; line-height: 1; margin: 0 0 6px; text-transform: uppercase; letter-spacing: -0.005em; }
.ol-day__tone { font-size: 14px; color: var(--ink-dim); }
.ol-day__chev { color: var(--ink-dim); transition: transform .3s ease, color .2s ease; justify-self: end; }
.ol-day.is-open .ol-day__chev { transform: rotate(180deg); color: var(--accent); }
.ol-day__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.4, 0, .2, 1);
}
.ol-timeline {
  list-style: none;
  margin: 0;
  padding: 8px 28px 32px;
  position: relative;
}
.ol-timeline::before {
  content: "";
  position: absolute;
  left: 88px;
  top: 8px;
  bottom: 28px;
  width: 1px;
  background: var(--line-strong);
}
.ol-timeline__row {
  display: grid;
  grid-template-columns: 70px 18px 1fr;
  gap: 16px;
  padding: 14px 0;
  align-items: start;
}
.ol-timeline__time { color: var(--accent); padding-top: 2px; }
.ol-timeline__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  margin-top: 6px;
  margin-left: 4px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 12px rgba(231,255,58,0.4);
}
.ol-timeline__text { display: flex; flex-direction: column; gap: 4px; }
.ol-timeline__label { font-size: 17px; line-height: 1.4; color: var(--ink); }
.ol-timeline__note { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--ink-dim); text-transform: uppercase; }

/* =========================================================
   RESERVA
   ========================================================= */
.ol-reserva { padding: 120px 28px; max-width: var(--container); margin: 0 auto; }
.ol-reserva__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: start;
}
.ol-reserva__title { font-size: clamp(48px, 7vw, 84px); }
.ol-reserva__body { font-size: 18px; color: var(--ink-dim); max-width: 50ch; margin: 22px 0 36px; }

.ol-countdown {
  display: flex;
  gap: 16px;
  margin: 36px 0;
}
.ol-countdown__cell {
  flex: 1;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  padding: 22px 18px;
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 8px; align-items: flex-start;
}
.ol-countdown__cell--soft .ol-countdown__num { color: var(--ink-dim); }
.ol-countdown__num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
  text-shadow: 0 0 24px rgba(231,255,58,0.25);
}
.ol-reserva__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.ol-reserva__card {
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.ol-reserva__card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent);
}
.ol-card__head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px dashed var(--line); }
.ol-card__dl { margin: 0; }
.ol-card__dl > div { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px dashed var(--line); gap: 18px; }
.ol-card__dl > div:last-child { border-bottom: 0; }
.ol-card__dl dt { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--ink-dim); text-transform: uppercase; }
.ol-card__dl dd { margin: 0; font-size: 14px; text-align: right; color: var(--ink); }
.ol-card__highlight { color: var(--accent) !important; font-family: var(--font-mono); letter-spacing: 0.12em; }
.ol-card__foot { display: flex; justify-content: flex-end; margin-top: 18px; }

/* =========================================================
   PERFIL
   ========================================================= */
.ol-perfil { padding: 80px 28px 120px; max-width: var(--container); margin: 0 auto; }
.ol-perfil .ol-section__head { padding: 0; }
.ol-roster {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}
.ol-card-id {
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s ease, transform .15s ease;
}
.ol-card-id:hover { transform: translateY(-2px); border-color: var(--accent); }
.ol-card-id.is-done { border-color: var(--accent); background: linear-gradient(180deg, rgba(231,255,58,0.04), var(--bg-2)); }
.ol-card-id__head { display: flex; justify-content: space-between; align-items: center; }
.ol-status { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; padding: 3px 7px; border-radius: 2px; }
.ol-status--pend { color: var(--danger); border: 1px solid var(--danger); }
.ol-status--ok { color: #0b0b0b; background: var(--accent); border: 1px solid var(--accent); }
.ol-card-id__photo {
  aspect-ratio: 3/4;
  width: 100%;
  background: var(--bg);
  border: 1px dashed var(--line-strong);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  color: var(--ink-soft);
}
.ol-card-id__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.4) contrast(1.05); }
.ol-card-id.is-done .ol-card-id__photo { border-style: solid; border-color: var(--accent); }
.ol-photo-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--ink-soft); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
}
.ol-card-id__corner {
  position: absolute; width: 10px; height: 10px; border: 1.5px solid var(--accent); pointer-events: none;
}
.ol-card-id__corner--tl { top: 6px; left: 6px; border-right: 0; border-bottom: 0; }
.ol-card-id__corner--tr { top: 6px; right: 6px; border-left: 0; border-bottom: 0; }
.ol-card-id__corner--bl { bottom: 6px; left: 6px; border-right: 0; border-top: 0; }
.ol-card-id__corner--br { bottom: 6px; right: 6px; border-left: 0; border-top: 0; }
.ol-card-id__name { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 0 2px; }
.ol-card-id--add { border-style: dashed; border-color: var(--line); }
.ol-card-id--add:hover { border-color: var(--accent); }
.ol-card-id__photo--add { cursor: default; border-style: dashed; color: var(--accent); }

/* =========================================================
   FOOTER
   ========================================================= */
.ol-footer { border-top: 1px solid var(--line); padding: 40px 28px 28px; background: #050505; }
.ol-footer__row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.ol-footer__big {
  display: flex; align-items: center; justify-content: center; gap: 28px;
  padding: 60px 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 92px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
}
.ol-footer__redaction span { color: var(--ink-soft); }

/* =========================================================
   VARIANT: B — Verano Premium
   ========================================================= */
body.variant-b {
  --bg: #ece7da;
  --bg-2: #f5f1e6;
  --bg-3: #ffffff;
  --ink: #18180f;
  --ink-dim: #6b6655;
  --ink-soft: #99957f;
  --line: rgba(24,24,15,0.10);
  --line-strong: rgba(24,24,15,0.20);
  --accent: #d4c200;
  --accent-2: #f0e15a;
  --accent-soft: rgba(212,194,0,0.14);
}
body.variant-b .ol-display__word--accent { text-shadow: none; }
body.variant-b .ol-marquee { background: #1a1810; color: var(--accent-2); }
body.variant-b .ol-marquee__item { color: rgba(255,255,255,0.7); }
body.variant-b .ol-itin { background: #f5f1e6; }
body.variant-b .ol-footer { background: #18180f; color: #f5f1e6; }
body.variant-b .ol-footer .ol-mono { color: rgba(255,255,255,0.5); }
body.variant-b .ol-footer__big { color: #ffffff; }
body.variant-b .ol-btn--primary { color: #18180f; }
body.variant-b .ol-app__nav { background: rgba(236,231,218,0.85); }
body.variant-b .ol-hero__grid, body.variant-b .ol-gate__grid { opacity: .4; }
body.variant-b .ol-gate__noise {
  background:
    radial-gradient(circle at 20% 10%, rgba(212,194,0,0.18), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(212,194,0,0.12), transparent 50%);
}
body.variant-b .ol-blink { color: #c64a2c; }

/* =========================================================
   VARIANT: C — Caos Organizado
   ========================================================= */
body.variant-c {
  --bg: #fff8c8;
  --bg-2: #fff3a8;
  --bg-3: #ffffff;
  --ink: #161208;
  --ink-dim: #5b5226;
  --ink-soft: #8b7e3e;
  --line: rgba(22,18,8,0.14);
  --line-strong: rgba(22,18,8,0.26);
  --accent: #1a1208;
  --accent-2: #ff2d55;
  --accent-soft: rgba(26,18,8,0.08);
  --font-display: "Anton", Impact, sans-serif;
}
body.variant-c .ol-display__word--accent { color: var(--accent-2); text-shadow: 4px 4px 0 var(--accent); }
body.variant-c .ol-h2 em { color: var(--accent-2); }
body.variant-c .ol-btn--primary { background: var(--accent-2); border-color: var(--accent-2); color: #fff; }
body.variant-c .ol-btn--ghost:hover { color: var(--accent-2); border-color: var(--accent-2); }
body.variant-c .ol-marquee { background: var(--accent); color: var(--bg); }
body.variant-c .ol-marquee__item { color: var(--bg); }
body.variant-c .ol-day.is-open { border-color: var(--accent-2); }
body.variant-c .ol-day.is-open .ol-day__date,
body.variant-c .ol-day__code,
body.variant-c .ol-timeline__time { color: var(--accent-2); }
body.variant-c .ol-timeline__dot { border-color: var(--accent-2); box-shadow: 0 0 12px rgba(255,45,85,0.4); }
body.variant-c .ol-countdown__num { color: var(--accent-2); text-shadow: 3px 3px 0 var(--accent); }
body.variant-c .ol-stamp { color: var(--accent-2); border-color: var(--accent-2); text-shadow: none; }
body.variant-c .ol-app__nav { background: rgba(255,248,200,0.92); }
body.variant-c .ol-itin { background: var(--bg-2); }
body.variant-c .ol-card__highlight { color: var(--accent-2) !important; }
body.variant-c .ol-card-id.is-done { border-color: var(--accent-2); background: linear-gradient(180deg, rgba(255,45,85,0.06), var(--bg-2)); }
body.variant-c .ol-card-id__corner { border-color: var(--accent-2); }
body.variant-c .ol-status--ok { background: var(--accent-2); border-color: var(--accent-2); color: #fff; }
body.variant-c .ol-status--pend { color: var(--accent); border-color: var(--accent); }
body.variant-c .ol-narrative__body mark { background: var(--accent-2); color: #fff; }
body.variant-c .ol-gate__noise {
  background:
    radial-gradient(circle at 20% 10%, rgba(255,45,85,0.18), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(26,18,8,0.10), transparent 50%);
}
body.variant-c .ol-footer { background: var(--accent); color: var(--bg); }
body.variant-c .ol-footer .ol-mono { color: rgba(255,248,200,0.6); }
body.variant-c .ol-footer__big { color: var(--accent-2); }
body.variant-c .ol-hero__grid, body.variant-c .ol-gate__grid { opacity: .25; }

/* =========================================================
   MODAL
   ========================================================= */
.ol-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: modalFade .25s ease;
}
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
.ol-modal__card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 38px 36px 30px;
  width: min(480px, 100%);
  text-align: center;
  box-shadow: 0 0 0 1px rgba(231,255,58,0.2), 0 30px 80px rgba(0,0,0,0.7), 0 0 80px rgba(231,255,58,0.15);
  animation: modalPop .35s cubic-bezier(.2,.9,.3,1.2);
  overflow: visible;
}
@keyframes modalPop {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.ol-modal__card::before, .ol-modal__card::after {
  content: ""; position: absolute; width: 14px; height: 14px; border: 1.5px solid var(--accent);
}
.ol-modal__card::before { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.ol-modal__card::after { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }
.ol-modal__close {
  position: absolute; top: 12px; right: 14px;
  font-size: 24px; line-height: 1; color: var(--ink-dim);
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: color .15s ease, background .15s ease;
}
.ol-modal__close:hover { color: var(--accent); background: var(--accent-soft); }
.ol-modal__head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 18px; border-bottom: 1px dashed var(--line); margin-bottom: 22px;
}
.ol-modal__check {
  display: flex; justify-content: center; color: var(--accent);
  margin-bottom: 18px;
  filter: drop-shadow(0 0 12px rgba(231,255,58,0.5));
}
.ol-modal__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.05;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.ol-modal__body {
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 26px;
}
.ol-modal__body strong { color: var(--accent); font-weight: 600; }
.ol-modal__cta { display: flex; justify-content: center; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .ol-app__navlinks { display: none; }
  .ol-hero__inner { padding: 60px 22px 40px; }
  .ol-hero__meta { grid-template-columns: 1fr; gap: 30px; }
  .ol-hero__tagline { justify-self: start; }
  .ol-narrative { grid-template-columns: 1fr; padding: 80px 22px; gap: 40px; }
  .ol-day__head { grid-template-columns: 1fr 1fr 32px; gap: 12px; padding: 20px; }
  .ol-day__datecol { order: 2; }
  .ol-day__codecol { order: 1; }
  .ol-day__titlecol { grid-column: 1 / -1; order: 3; }
  .ol-day__date { font-size: 32px; text-align: right; }
  .ol-day__title { font-size: 24px; }
  .ol-timeline { padding: 8px 18px 24px; }
  .ol-timeline::before { left: 64px; }
  .ol-timeline__row { grid-template-columns: 50px 14px 1fr; gap: 10px; }
  .ol-reserva { padding: 80px 22px; }
  .ol-reserva__inner { grid-template-columns: 1fr; gap: 30px; }
  .ol-countdown { gap: 8px; }
  .ol-countdown__cell { padding: 14px 12px; }
  .ol-gate__topbar, .ol-gate__bottombar { font-size: 9px; }
  .ol-gate__card { padding: 28px 22px 20px; }
  .ol-hero__corner--tl, .ol-hero__corner--tr { font-size: 9px; }
  .ol-footer__big { font-size: 36px; gap: 12px; }
  .ol-footer__big svg { width: 40px; height: 40px; }
}

@media (max-width: 520px) {
  .ol-app__nav { padding: 12px 18px; }
  .ol-app__brand small { display: none; }
  .ol-display { font-size: 72px; }
  .ol-hero__dates { font-size: 48px; gap: 8px; }
  .ol-hero__dates em { display: block; margin: 8px 0 0; }
  .ol-roster { grid-template-columns: repeat(2, 1fr); }
  .ol-gate__topbar { font-size: 8px; flex-direction: column; gap: 4px; align-items: center; text-align: center; }
  .ol-gate__bottombar { font-size: 8px; flex-direction: column; gap: 4px; align-items: center; text-align: center; }
}
