
/* ────────────────────────────────────────────────────────────────
   Tokens (copiados tal cual de static/css/style.css — dark + light)
   ──────────────────────────────────────────────────────────────── */
:root {
  --font-heading: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --bg:        #0C0A0E;
  --bg2:       #12101A;
  --bg3:       #181620;
  --surface:   #1c1c30;
  --surface2:  #22223a;
  --border:    #2a2a44;
  --border2:   #33335a;
  --text:      #f0f0f8;
  --text2:     #a8a8c0;
  --text3:     #6e6e8a;
  --accent:    #E4007C;
  --accent2:   #F0339A;
  --accent-bg: rgba(228,0,124,0.10);
  --gold:      #FBCA0B;
  --gold-bg:   rgba(251,202,11,0.1);
  --green:     #22c55e;
  --green-bg:  rgba(34,197,94,0.12);
  --blue:      #3b82f6;
  --radius:    12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.4);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --card-bg:   var(--surface);
}

/* Canvas page */
html, body { margin: 0; padding: 0; background: #060509; font-family: var(--font-body); color: var(--text); }
body { min-height: 100vh; }

/* ════════════════════════════════════════════════════════════════
   Reset scoped to .cart — to not clash with design-canvas chrome
   ════════════════════════════════════════════════════════════════ */
.cart, .cart *, .cart *::before, .cart *::after { box-sizing: border-box; }
.cart a { color: inherit; text-decoration: none; }
.cart button { font-family: inherit; border: 0; background: transparent; color: inherit; cursor: pointer; padding: 0; }
.cart img { display: block; max-width: 100%; }

/* Phone-viewport container — sized to the IOSDevice inner area, scrollable */
.cart {
  width: 100%;
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
.cart::-webkit-scrollbar { width: 4px; }
.cart::-webkit-scrollbar-track { background: transparent; }
.cart::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* ════════════════════════════════════════════════════════════════
   Shared atoms
   ════════════════════════════════════════════════════════════════ */
.cart h1, .cart h2, .cart h3, .cart h4 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
}

/* Top bar (minimal, mimics .nav from base.html compressed for mobile) */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.brand {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.brand .brand-mark { width: 22px; height: 22px; color: var(--accent); }
.brand .brand-dot { color: var(--accent); }
.topbar-right { display: flex; align-items: center; gap: 6px; }
.alpha-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  padding: 3px 8px; border-radius: 999px; line-height: 1.2;
}
.icon-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text3);
}
.icon-btn:hover { background: var(--surface); color: var(--text); }

/* Login button (visible cuando no hay sesión) — desktop topbar */
.login-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--bg);
  font-size: 13px; font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}
.login-btn:hover { opacity: 0.85; }
.login-btn svg { flex-shrink: 0; }
@media (max-width: 640px) {
  /* En móvil el bottom-nav ya tiene "Entrar" — ocultamos el del topbar para no duplicar. */
  .login-btn { display: none; }
}

/* Bottom-nav · destaque para "Entrar" cuando no hay sesión (más visible en móvil) */
.bn-cuenta {
  color: var(--accent) !important;
}
.bn-cuenta svg { stroke: var(--accent); }

/* Bottom nav (kept — ~60% traffic is mobile, thumb reach matters) */
.bottom-nav {
  position: sticky; bottom: 0; z-index: 50;
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--border);
  padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
}
.bn-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 6px 4px;
  font-size: 10px; font-weight: 500; color: var(--text3);
  min-height: 44px;
}
.bn-item.active { color: var(--accent); }
.bn-item svg { width: 22px; height: 22px; stroke-width: 2; }
.bn-item.add .bn-add {
  width: 44px; height: 44px; border-radius: 999px;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--accent) 35%, transparent);
  margin-top: -14px;
}
.bn-item.add .bn-add svg { width: 20px; height: 20px; stroke: #fff; stroke-width: 2.5; }

/* Pills (from existing .pill pattern) */
.pills {
  display: flex; gap: 8px; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
  padding: 4px 0 2px;
}
.pills::-webkit-scrollbar { display: none; }
.pill {
  flex-shrink: 0;
  padding: 8px 14px;
  font-size: 13px; font-weight: 600;
  color: var(--text2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  white-space: nowrap;
  min-height: 36px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all var(--transition);
}
.pill.active {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.pill-count {
  font-size: 11px;
  padding: 1px 6px; border-radius: 999px;
  background: color-mix(in srgb, currentColor 15%, transparent);
  font-weight: 700;
}

/* Badges */
.badge-free { color: var(--green); background: var(--green-bg); font-weight: 700; font-size: 11px; padding: 3px 8px; border-radius: 999px; letter-spacing: 0.04em; text-transform: uppercase; }
.badge-price { color: var(--gold); background: var(--gold-bg); font-weight: 700; font-size: 12px; padding: 3px 8px; border-radius: 999px; font-family: var(--font-heading); }
.badge-cat { color: var(--accent); background: var(--accent-bg); font-weight: 600; font-size: 11px; padding: 3px 8px; border-radius: 999px; letter-spacing: 0.04em; text-transform: uppercase; }
.badge-live {
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  font-weight: 700; font-size: 11px; padding: 3px 8px 3px 22px; border-radius: 999px;
  letter-spacing: 0.08em; text-transform: uppercase;
  position: relative;
}
.badge-live::before {
  content: ''; position: absolute; left: 8px; top: 50%; transform: translateY(-50%);
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 70%, transparent);
  animation: live-pulse 1.6s ease-out infinite;
}
@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 60%, transparent); }
  80% { box-shadow: 0 0 0 8px color-mix(in srgb, var(--accent) 0%, transparent); }
  100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 0%, transparent); }
}
.badge-soon {
  color: var(--gold); background: var(--gold-bg);
  font-weight: 700; font-size: 11px; padding: 3px 8px; border-radius: 999px;
  letter-spacing: 0.04em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 5px;
}

/* Avatar strip (for lineups) */
.avatar-stack { display: flex; align-items: center; }
.avatar-stack .av {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--surface2); border: 2px solid var(--bg);
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 11px;
  color: #fff;
  flex-shrink: 0;
}
.avatar-stack .av + .av { margin-left: -10px; }
.avatar-stack .av.more { background: var(--surface); color: var(--text2); font-size: 10px; }

/* ════════════════════════════════════════════════════════════════
   v1 EDITORIAL — show de esta noche como hero, tipografía grande
   ════════════════════════════════════════════════════════════════ */
.v1 { padding-bottom: 32px; }

.v1-brand-strip {
  padding: 24px 20px 4px;
}
.v1-date-label {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 6px;
}
.v1-date-label span { color: var(--accent); }
.v1-eyebrow {
  font-family: var(--font-heading);
  font-size: 32px; font-weight: 700;
  letter-spacing: -0.03em; line-height: 1;
  color: var(--text);
}
.v1-eyebrow em {
  font-style: normal;
  color: var(--text3);
  font-weight: 500;
}

/* The hero card — the ONE show of tonight */
.v1-hero {
  margin: 16px 20px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
}
.v1-hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(180deg, rgba(12,10,14,0) 40%, rgba(12,10,14,0.92) 100%),
    linear-gradient(135deg, #2a0a1e 0%, #4a0d2a 50%, #1a0611 100%);
  overflow: hidden;
}
/* Stage-light pattern simulating spotlight on the poster */
.v1-hero-media::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 35%, color-mix(in srgb, var(--accent) 28%, transparent) 0%, transparent 70%),
    radial-gradient(circle 200px at 80% 20%, color-mix(in srgb, var(--gold) 12%, transparent) 0%, transparent 70%);
  mix-blend-mode: screen;
}
.v1-hero-silhouette {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
}
.v1-hero-silhouette svg { width: 82%; height: auto; opacity: 0.88; }

.v1-hero-top {
  position: absolute; top: 16px; left: 16px; right: 16px;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 8px;
}
.v1-hero-urgency {
  display: inline-flex; align-items: center; gap: 6px;
  background: color-mix(in srgb, var(--accent) 88%, black);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 7px 12px; border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
.v1-hero-urgency svg { width: 12px; height: 12px; }
.v1-hero-capacity {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; opacity: 0.88;
  padding: 7px 10px; border-radius: 999px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.v1-hero-capacity b { color: var(--gold); font-weight: 700; margin-right: 2px; }

.v1-hero-text {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
}
.v1-hero-kicker {
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.v1-hero-title {
  font-family: var(--font-heading);
  font-size: 34px; font-weight: 700;
  letter-spacing: -0.025em; line-height: 0.98;
  color: #fff;
  margin-bottom: 10px;
  text-wrap: balance;
}
.v1-hero-lineup {
  display: flex; align-items: center; gap: 10px;
  color: var(--text2);
  font-size: 14px;
}
.v1-hero-lineup .avatar-stack .av { border-color: #1a0914; }

/* Meta row under hero */
.v1-meta {
  padding: 18px 20px 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.v1-meta-item {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.v1-meta-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 4px;
}
.v1-meta-value {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 15px;
  color: var(--text); letter-spacing: -0.01em;
}
.v1-meta-value .accent { color: var(--accent); }
.v1-meta-sub { font-size: 12px; color: var(--text3); font-weight: 500; margin-top: 2px; }

/* Timeline nav — scrollable hoy / mañana / esta semana */
.v1-section { margin-top: 36px; padding: 0 20px; }
.v1-section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 14px;
}
.v1-section-title {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.v1-section-link {
  font-size: 13px; font-weight: 600;
  color: var(--accent);
}

.v1-timeline {
  display: flex; gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0 -20px; padding: 0 20px 4px;
}
.v1-timeline::-webkit-scrollbar { display: none; }
.v1-time-day {
  flex: 0 0 64px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 6px;
  text-align: center;
  min-height: 78px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
}
.v1-time-day.today { background: var(--accent); border-color: var(--accent); color: #fff; }
.v1-time-dow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text3);
}
.v1-time-day.today .v1-time-dow { color: rgba(255,255,255,0.75); }
.v1-time-num {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}
.v1-time-day.today .v1-time-num { color: #fff; }
.v1-time-count {
  font-size: 10px; font-weight: 600;
  color: var(--text3);
}
.v1-time-day.today .v1-time-count { color: rgba(255,255,255,0.85); }

/* Editorial rail cards (big, 2 visible per viewport) */
.v1-rail {
  display: flex; gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0 -20px; padding: 0 20px 6px;
  scroll-snap-type: x mandatory;
}
.v1-rail::-webkit-scrollbar { display: none; }
.v1-rail-card {
  flex: 0 0 72%;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.v1-rail-media {
  aspect-ratio: 3 / 4;
  background-size: cover; background-position: center;
  background-color: var(--bg2);
  position: relative;
}
.v1-rail-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(12,10,14,0.75) 100%);
}
.v1-rail-body { padding: 12px 14px 14px; }
.v1-rail-meta {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.v1-rail-title {
  font-family: var(--font-heading);
  font-size: 16px; font-weight: 700; letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 6px;
  color: var(--text);
  text-wrap: balance;
}
.v1-rail-venue {
  font-size: 12px; color: var(--text3);
  display: flex; align-items: center; gap: 5px;
}
.v1-rail-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 10px;
}

/* Activity "pulse" strip */
.v1-pulse {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 8%, var(--surface)) 0%, var(--surface) 100%);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, var(--border));
  border-radius: var(--radius);
  padding: 16px 16px 12px;
  margin: 0 20px;
}
.v1-pulse-head {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}
.v1-pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px var(--green-bg); }
.v1-pulse-row {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
}
.v1-pulse-row:first-of-type { border-top: 0; padding-top: 0; }
.v1-pulse-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), #9b0058);
  color: #fff; font-family: var(--font-heading);
  font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.v1-pulse-text { flex: 1; min-width: 0; color: var(--text2); line-height: 1.35; }
.v1-pulse-text b { color: var(--text); font-weight: 600; }
.v1-pulse-text .who { color: var(--accent); font-weight: 600; }
.v1-pulse-time { font-size: 11px; color: var(--text3); flex-shrink: 0; font-variant-numeric: tabular-nums; }

/* Sticky CTA bar */
.v1-sticky {
  position: sticky; bottom: 0; z-index: 40;
  margin: 28px -0 0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.v1-sticky-info { flex: 1; min-width: 0; }
.v1-sticky-kicker {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 2px;
}
.v1-sticky-title {
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.v1-sticky-btn {
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700; font-size: 14px;
  padding: 13px 20px;
  border-radius: 999px;
  min-height: 46px;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent) 45%, transparent);
  transition: all var(--transition);
}
.v1-sticky-btn:hover { background: var(--accent2); }
.v1-sticky-btn:active { transform: scale(0.98); }



/* ════════════════════════════════════════════════════════════════
   Desktop responsive — mobile-first overrides arriba
   ════════════════════════════════════════════════════════════════ */

/* Extra nav items in topbar (hidden en mobile) */
.topbar-nav {
  display: none;
}

@media (min-width: 769px) {
  /* Container: página centrada con max-width, sin overflow propio */
  html, body { height: auto; }
  body { min-height: 100vh; background: var(--bg); }
  .cart {
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
    height: auto;
    min-height: 100vh;
    padding-bottom: 60px;
  }

  /* Topbar: ancho, con nav tradicional */
  .topbar {
    padding: 16px 32px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .brand { font-size: 20px; }
  .brand-mark { width: 26px; height: 26px; }
  .topbar-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: center;
  }
  .topbar-nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text2);
    text-decoration: none;
    transition: color var(--transition);
  }
  .topbar-nav a:hover,
  .topbar-nav a.active { color: var(--accent); }
  .topbar-right { gap: 12px; }

  /* Brand strip: más aire */
  .v1-brand-strip {
    padding: 48px 32px 24px;
    max-width: 900px;
  }
  .v1-date-label { font-size: 13px; margin-bottom: 16px; }
  .v1-eyebrow {
    font-size: 48px;
    line-height: 1.02;
  }

  /* Layout 2 columnas: hero a la izquierda, meta + también-pronto a la derecha */
  .v1-hero {
    margin: 0 32px 24px;
    aspect-ratio: 16 / 9;
    max-width: none;
  }
  .v1-hero-media { min-height: 480px; }
  .v1-hero-title { font-size: 40px; line-height: 1.05; }
  .v1-hero-kicker { font-size: 13px; }

  .v1-meta {
    padding: 0 32px 28px;
    gap: 16px;
  }
  .v1-meta-item { padding: 20px 24px; }
  .v1-meta-label { font-size: 11px; }
  .v1-meta-value { font-size: 20px; }

  /* Secciones: padding más generoso */
  .v1-section { padding: 28px 32px; margin-top: 24px; }
  .v1-section-title { font-size: 24px; }

  /* Rail: de horizontal scroll a grid 3 columnas */
  .v1-rail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow-x: visible;
    padding-bottom: 0;
  }
  .v1-rail-card {
    width: auto;
    min-width: 0;
  }
  .v1-rail-media { aspect-ratio: 4 / 3; height: auto; }
  .v1-rail-title { font-size: 18px; }

  /* Timeline: más aire entre días */
  .v1-timeline {
    gap: 10px;
    overflow-x: visible;
    justify-content: flex-start;
  }
  .v1-time-day { flex: 1; max-width: 110px; padding: 16px 12px; }
  .v1-time-num { font-size: 22px; }

  /* Pulse (comediantes destacados): 2 columnas */
  .v1-pulse {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 32px;
  }
  .v1-pulse-row { padding: 14px 16px; }

  /* Ocultar chrome móvil en desktop */
  .bottom-nav { display: none; }
  .v1-sticky { display: none; }

  /* Compensar padding bottom que antes hacía espacio para sticky */
  .v1-section:last-child { padding-bottom: 48px; }
}

/* Desktop grande (laptop+) — hero más contenido */
@media (min-width: 1100px) {
  .v1-hero { margin: 0 32px 32px; }
  .v1-hero-media { min-height: 540px; }
  .v1-hero-title { font-size: 48px; }
  .v1-eyebrow { font-size: 56px; }
}

/* Mid — tablet portrait entre 640 y 768 */
@media (min-width: 640px) and (max-width: 768px) {
  .v1-rail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    overflow-x: visible;
    padding-bottom: 0;
  }
  .v1-rail-card { width: auto; }
  .v1-pulse { padding: 0 20px; }
}
