/* ========== Reset ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
#__bundler_thumbnail { display: none !important; }
html { scroll-behavior: smooth; }
:root {
  --morado: #7417c6;
  --morado-deep: #4a14a8;
  --azul: #005cff;
  --azul-light: #2d7aff;
  --negro: #1a1a1d;
  --bg-deep: #0e0626;
  --rojo-live: #e2222e;
  --blanco: #fff;
}
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #fff;
  background: var(--bg-deep);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ========== Background variants ========== */
.app { position: relative; min-height: 100vh; }

.brand-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
}
.dir-refined .brand-bg {
  background:
    radial-gradient(ellipse at 25% 30%, rgba(116,23,198,0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 75%, rgba(0,92,255,0.32) 0%, transparent 50%),
    linear-gradient(135deg, #4a14a8 0%, #6217b8 40%, #3a1097 80%, #1f1465 100%);
}
.dir-editorial body,
.app.dir-editorial { background: #08021a; }
.dir-editorial .brand-bg {
  background:
    radial-gradient(ellipse at 70% -10%, rgba(116,23,198,0.55) 0%, transparent 60%),
    radial-gradient(ellipse at 25% 95%, rgba(0,92,255,0.18) 0%, transparent 60%),
    linear-gradient(180deg, #14072e 0%, #0a0322 60%, #050111 100%);
}

.deco-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero, .player-section { position: relative; z-index: 1; }

/* ========== Header ========== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  backdrop-filter: blur(14px);
  background: rgba(14, 6, 38, 0.55);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dir-editorial header { background: rgba(8, 2, 26, 0.7); }

.logo {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  height: 32px;
  max-height: 32px;
  flex-shrink: 0;
}
.logo img {
  display: block;
  height: 24px !important;
  max-height: 24px !important;
  width: auto !important;
  max-width: 160px !important;
}
@media (max-width: 640px) {
  .logo { height: 40px; max-height: 40px; }
  .logo img { height: 20px !important; max-height: 20px !important; max-width: 130px !important; }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-status {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.header-status .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--azul);
}
.header-status.live .dot { background: var(--rojo-live); animation: blinkDot 1s infinite; }
.header-status.live { color: #fff; }

.header-cta {
  background: var(--azul);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 10px 18px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s, box-shadow .2s, background .2s;
  box-shadow: 0 6px 18px rgba(0,92,255,0.4);
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(0,92,255,0.55); }
.header-cta.live { background: var(--rojo-live); box-shadow: 0 6px 18px rgba(226,34,46,0.4); }
.header-cta.live::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: blinkDot 1s infinite;
}

/* ========== Hero ========== */
.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 32px 32px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  grid-template-areas:
    "text image"
    "actions image";
  column-gap: 56px;
  row-gap: 18px;
  align-items: start;
}
.hero-text { grid-area: text; align-self: end; }
.hero-image { grid-area: image; align-self: stretch; }
.hero-actions { grid-area: actions; align-self: start; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azul), var(--morado));
}

.hero h1 {
  font-weight: 800;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -2px;
  margin-bottom: 18px;
}
.hero-logo-wrap {
  display: block;
  margin-bottom: 18px;
  color: #fff;
}
.hero-logo {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  color: #fff;
}
.dir-editorial .hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(54px, 7.5vw, 110px);
  line-height: 0.9;
  letter-spacing: -3.5px;
  margin-bottom: 24px;
}
.hero h1 .i { font-style: italic; font-weight: 700; }
.hero h1 sup {
  font-size: 0.32em;
  vertical-align: super;
  font-weight: 500;
  opacity: 0.85;
}

.tagline {
  font-weight: 400;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.4;
  color: rgba(255,255,255,0.92);
  margin-bottom: 28px;
  max-width: 520px;
  text-wrap: pretty;
}
.tagline strong { font-weight: 700; }

/* meta items */
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.meta-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(6px);
}
.dir-editorial .meta-item { border-radius: 4px; }
.meta-item svg {
  width: 22px; height: 22px;
  color: #fff;
  opacity: 0.85;
  flex-shrink: 0;
}
.meta-item .lbl {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.meta-item .val {
  display: block;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.2px;
}

/* CTA area */
.cta-area {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cta-primary {
  background: var(--azul);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 32px rgba(0,92,255,0.45);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.cta-primary:hover {
  transform: translateY(-2px);
  background: #1a6dff;
  box-shadow: 0 16px 40px rgba(0,92,255,0.6);
}
.cta-primary.live { background: var(--rojo-live); box-shadow: 0 12px 32px rgba(226,34,46,0.45); }
.cta-primary.live:hover { background: #ff3641; box-shadow: 0 16px 40px rgba(226,34,46,0.6); }
.cta-primary.live::before {
  content: '';
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #fff;
  animation: blinkDot 1s infinite;
}
.cta-primary svg { width: 18px; height: 18px; }

.cta-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 15px 22px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.18);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s;
}
.cta-secondary:hover { background: rgba(255,255,255,0.14); }
.cta-secondary svg { width: 16px; height: 16px; }

.cta-helper {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* LIVE STREAMING row (entre H1 y tagline) */
.live-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 6px 0 22px;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rojo-live);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1.5px;
  padding: 7px 14px 7px 16px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(226, 34, 46, 0.45);
  animation: pulseGlow 1.6s ease-in-out infinite;
}
.live-badge::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: blinkDot 1s ease-in-out infinite;
}
.live-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #fff;
  display: inline-grid;
  place-items: center;
  position: relative;
}
.live-icon::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--rojo-live);
  border-radius: 50%;
  animation: blinkDot 1s ease-in-out infinite;
}
.live-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0;
  animation: wavePulse 1.6s ease-out infinite;
}
.streaming-text {
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: 1.5px;
  color: #fff;
}
.dir-editorial .streaming-text { font-family: 'Space Grotesk', sans-serif; }

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 6px 20px rgba(226, 34, 46, 0.45); }
  50%      { box-shadow: 0 6px 28px rgba(226, 34, 46, 0.85); }
}
@keyframes wavePulse {
  0%   { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.6);  opacity: 0;   }
}

/* speakers image */
.hero-image { position: relative; }
.speakers-frame {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.speakers-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(.22,.61,.36,1);
  transform-origin: center;
}
.speakers-frame:hover .speakers-img {
  transform: scale(1.06);
}

/* ========== Player section ========== */
.player-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 32px 80px;
}

/* countdown */
.countdown-block {
  text-align: center;
  margin-top: 35px;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.countdown-eyebrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  margin: 0;
}
.countdown-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--azul-light);
  animation: blinkDot 1.2s infinite;
  box-shadow: 0 0 10px rgba(45,122,255,0.7);
}
.countdown-eyebrow.soon .dot { background: var(--rojo-live); box-shadow: 0 0 12px rgba(226,34,46,0.7); }
.countdown-eyebrow.soon { color: #fff; }

.countdown {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.cd-cell {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 18px 14px 14px;
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  backdrop-filter: blur(8px);
}
.dir-editorial .cd-cell { border-radius: 4px; }

.cd-num {
  font-variant-numeric: tabular-nums;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.5px;
  display: flex;
  align-items: center;
  flex: 1;
  color: #fff;
}
.dir-editorial .cd-num { font-family: 'Space Grotesk', sans-serif; font-weight: 700; }
.cd-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 8px;
  display: block;
}

/* Player title */
.player-title {
  text-align: center;
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}
.dir-editorial .player-title { font-family: 'Space Grotesk', sans-serif; }
.player-title .en-vivo {
  color: var(--azul);
  font-weight: 800;
  letter-spacing: 1px;
  display: inline-block;
  animation: blinkEnVivo 2.4s ease-in-out infinite;
}
@keyframes blinkEnVivo {
  0%, 100% { opacity: 1;    transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.98); }
}

.player-wrap {
  position: relative;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  max-width: 1180px;
  margin: 0 auto;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.08);
}
.dir-editorial .player-wrap { border-radius: 6px; }
.player-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Player poster (pre/ended) */
.player-poster {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  color: #fff;
  background:
    radial-gradient(ellipse at center, rgba(116,23,198,0.35) 0%, transparent 70%),
    linear-gradient(135deg, #2a0d6b 0%, #0e0626 100%);
  overflow: hidden;
}
.player-poster .poster-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
}
.player-poster .ic {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.player-poster .ic svg { width: 26px; height: 26px; }
.player-poster h4 {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.player-poster p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  max-width: 480px;
  position: relative;
  z-index: 1;
}
.player-poster.ended .ic { background: rgba(0,92,255,0.15); border-color: rgba(0,92,255,0.4); }

/* Mock live player (proposal preview only) */
.player-fake-live {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.7) 100%),
    linear-gradient(135deg, #1a0838 0%, #2a0d6b 60%, #1f1465 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
}
.player-fake-live::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('speakers.png');
  background-position: center;
  background-size: cover;
  opacity: 0.65;
}
.player-fake-live > * { position: relative; }

.fake-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.live-badge-real {
  background: var(--rojo-live);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.live-badge-real::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: blinkDot 1s infinite;
}
.viewers {
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.viewers::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #5ee36e;
}

.fake-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}
.now-playing {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
}
.now-playing small {
  display: block;
  font-weight: 500;
  opacity: 0.75;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.player-controls { display: flex; gap: 6px; }
.player-controls button {
  width: 34px; height: 34px;
  border-radius: 6px;
  background: rgba(0,0,0,0.55);
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  color: #fff;
  transition: background .15s;
}
.player-controls button svg { width: 16px; height: 16px; }
.player-controls button:hover { background: rgba(0,0,0,0.8); }

/* Help text below player */
.player-help {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 18px;
}

/* ========== Footer ========== */
footer {
  background: rgba(0,0,0,0.45);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 22px 20px;
  font-size: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
footer a { color: rgba(255,255,255,0.85); font-weight: 600; }
footer em { font-style: italic; }
@media (max-width: 640px) {
  footer { font-size: 10.5px; padding: 18px 10px; letter-spacing: -0.1px; }
}

/* ========== Calendar dropdown menu ========== */
.cal-menu-wrap { position: relative; display: inline-flex; }
.cal-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  font: inherit;
  color: #fff;
}
.cal-trigger .caret {
  font-size: 11px;
  opacity: 0.85;
  transition: transform 0.18s ease;
  margin-left: 2px;
}
.cal-trigger .caret.open { transform: rotate(-180deg); }
.cal-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: #1f0b46;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  z-index: 50;
  display: flex;
  flex-direction: column;
  animation: calMenuIn 0.16s ease both;
}
@keyframes calMenuIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cal-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s ease;
}
.cal-menu a:hover,
.cal-menu a:focus-visible {
  background: rgba(255,255,255,0.08);
  outline: none;
}
@media (max-width: 640px) {
  .cal-menu { right: 0; left: auto; min-width: 180px; }
}

/* ========== Mobile bottom bar ========== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  background: rgba(14, 6, 38, 0.92);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 16px calc(env(safe-area-inset-bottom, 0px) + 12px);
}
.mobile-bar a {
  background: var(--azul);
  color: #fff;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(0,92,255,0.4);
}
.mobile-bar a.live { background: var(--rojo-live); box-shadow: 0 6px 18px rgba(226,34,46,0.4); }
.mobile-bar a.live::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: blinkDot 1s infinite;
}

/* ========== Animations ========== */
@keyframes blinkDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.85); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up.delay-1 { animation-delay: 0.1s; }
.fade-up.delay-2 { animation-delay: 0.2s; }

/* ========== Responsive ========== */
@media (max-width: 960px) {
  .hero-grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    grid-template-areas: none;
    gap: 18px;
  }
  /* Disolver hero-text para poder intercalar la imagen entre el eyebrow y el resto */
  .hero-text { display: contents; }
  .hero-text .eyebrow { order: 1; align-self: flex-start; margin-bottom: -4px; }
  .hero-text .live-row { order: 2; margin-top: 0; }
  .hero-text h1 { order: 3; margin-bottom: 4px; }
  .hero-logo { max-width: 320px; }
  .hero-text .tagline { order: 4; margin-top: 0; }
  .hero-image { order: 5; margin: 4px 0; width: 100%; display: block; padding: 0; }
  .hero-image .speakers-frame { border-radius: 0; width: 100%; margin: 0; padding: 0; display: block; }
  .hero-image .speakers-frame img { display: block; width: 100%; margin: 0 auto; padding: 0; }
  .hero-actions { order: 6; }

  .hero { padding: 20px 20px 28px; }
  .player-section { padding: 16px 20px 100px; }

  .mobile-bar.enabled { display: block; }
  body.has-mobile-bar { padding-bottom: 92px; }

  .header-cta-desktop { display: none; }
  header { padding: 12px 18px; }
}
@media (max-width: 640px) {
  .meta-row { gap: 8px; }
  .meta-item { padding: 10px 14px; flex: 1; min-width: 0; }
  .meta-item .val { font-size: 13px; }
  .cta-row { width: 100%; flex-wrap: nowrap; }
  .cta-primary, .cta-secondary {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: 14px 12px;
    font-size: 12px;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }
  .cta-primary .cta-label-long { display: none; }
  .cta-primary .cta-label-short { display: inline; }
  .countdown { gap: 8px; flex-wrap: nowrap; width: auto; justify-content: center; }
  .cd-cell {
    flex: 0 0 auto;
    width: 64px;
    min-width: 0;
    padding: 8px 4px 6px;
    border-radius: 10px;
  }
  .cd-num { font-size: clamp(18px, 5.5vw, 24px); letter-spacing: -0.5px; }
  .cd-lbl { font-size: 8px; letter-spacing: 0.8px; margin-top: 4px; }
  .header-status { display: none; }
}
.cta-label-short { display: none; }
