/* Cyberion · Mobile V2 Time-first — loaded with cyberion_neon.css.
   Applies only when JS mounts `.cy-mob-root` (viewport < 768 px).
   Fonts: Inter + JetBrains Mono (already loaded by the neon stylesheet). */

@media (max-width: 767.98px) {
  html, body { overflow-x: hidden; }
}

.cy-mob-root {
  min-height: 100vh;
  background: #08060d;
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.cy-mob-root * { box-sizing: border-box; }

/* === Aurora parallax background ========================================= */
.cy-mob-root .mob-aurora {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transition: transform 140ms cubic-bezier(.2,.8,.2,1);
}
.cy-mob-root .mob-aurora-1 {
  inset: 0;
  background:
    radial-gradient(600px 400px at 20% -10%, rgba(166,107,255,0.22), transparent 60%),
    radial-gradient(500px 500px at 90% 10%, rgba(255,61,138,0.18), transparent 55%);
}
.cy-mob-root .mob-aurora-2 {
  left: 50%;
  top: 420px;
  width: 500px;
  height: 500px;
  margin-left: -250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25,240,163,0.14), transparent 65%);
  filter: blur(30px);
}
.cy-mob-root .mob-page > * {
  position: relative;
  z-index: 2;
}
.cy-mob-root .mob-headzone { flex-shrink: 0; }

/* Compression parallax hooks */
.cy-mob-root .mob-time-parallax {
  transition: opacity 120ms linear;
  will-change: transform, opacity;
}
.cy-mob-root .mob-time-card {
  will-change: transform, background;
  transition: backdrop-filter 200ms;
  transform-origin: top center;
}
.cy-mob-root .mob-filters-parallax { will-change: transform; }
.cy-mob-root .mob-cards-parallax { perspective: 900px; }

/* Sticky compressed pill */
.cy-mob-root .mob-sticky-pill {
  position: fixed;
  top: 84px;
  left: 16px;
  right: 16px;
  z-index: 4;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(10,6,16,0.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  display: none;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transition: opacity 150ms, transform 150ms;
  pointer-events: none;
}
.cy-mob-root .mob-sticky-pill .lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}
.cy-mob-root .mob-sticky-pill .rng {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: #19f0a3;
}

.cy-mob-root .mob-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* === Header ============================================================= */
.mob-header {
  padding: 10px 16px 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.mob-logo {
  height: 26px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(230,193,94,0.45));
}
.mob-title-wrap { flex: 1; min-width: 0; }
.mob-eyebrow {
  font-size: 9px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mob-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.mob-step {
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  color: #19f0a3;
}
.mob-ava {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg,#ff3d8a,#a66bff);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  color: #fff; text-decoration: none;
}

/* === Step dots ========================================================== */
.mob-dots {
  display: flex;
  gap: 4px;
  padding: 0 16px 10px;
  flex-shrink: 0;
}
.mob-dot {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.1);
}
.mob-dot.cur { background: rgba(25,240,163,0.5); }
.mob-dot.done { background: #19f0a3; }

/* === Scroll area + sticky CTA layout =================================== */
.mob-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* === Time section ======================================================= */
.mob-time-section {
  padding: 6px 16px 14px;
  flex-shrink: 0;
}
.mob-eyebrow-sec {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* --- Day strip -------------------------------------------------------- */
.mob-days {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  margin: 0 -16px;
  padding: 0 16px 2px;
  scrollbar-width: none;
}
.mob-days::-webkit-scrollbar { display: none; }
.mob-day {
  flex-shrink: 0;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  text-align: center;
  min-width: 58px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  font: inherit;
}
.mob-day .mob-day-lbl {
  font-size: 10px;
  opacity: 0.75;
}
.mob-day.weekend:not(.active) .mob-day-lbl { color: #ff3d8a; opacity: 1; }
.mob-day .mob-day-n {
  font-size: 16px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  margin-top: 2px;
}
.mob-day .mob-day-m {
  font-size: 9px;
  opacity: 0.5;
  margin-top: 1px;
}
.mob-day.active {
  background: #ff3d8a;
  border-color: #ff3d8a;
}

/* --- Time card -------------------------------------------------------- */
.mob-time-card {
  margin-top: 10px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.mob-time-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.mob-time-head-lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mob-time-head-range {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  color: #19f0a3;
  font-size: 16px;
}
.mob-hours {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.mob-hour-chip {
  padding: 7px 11px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}
.mob-hour-chip.active {
  background: rgba(25,240,163,0.14);
  border-color: #19f0a3;
  color: #19f0a3;
}
.mob-hour-chip.dashed {
  border-style: dashed;
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
}
.mob-hour-chip.disabled {
  opacity: 0.3;
  text-decoration: line-through;
  cursor: not-allowed;
}
.mob-durs {
  display: flex;
  gap: 5px;
  margin-top: 8px;
}
.mob-dur-chip {
  flex: 1;
  padding: 8px 0;
  text-align: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
.mob-dur-chip.active {
  background: rgba(255,61,138,0.15);
  border-color: #ff3d8a;
  color: #ff3d8a;
}

/* === Filters ============================================================ */
.mob-filters {
  display: flex;
  gap: 6px;
  padding: 0 16px 10px;
  overflow-x: auto;
  flex-shrink: 0;
  scrollbar-width: none;
}
.mob-filters::-webkit-scrollbar { display: none; }
.mob-filter {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 99px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  border: none;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  font-family: inherit;
}
.mob-filter.active {
  background: #19f0a3;
  color: #08060d;
}

/* === Seat cards ========================================================= */
.mob-cards {
  flex: 1;
  overflow-y: auto;
  padding: 2px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  -webkit-overflow-scrolling: touch;
}
.mob-empty {
  padding: 30px 12px;
  text-align: center;
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: 14px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}
.mob-card {
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: stretch;
  transition: border-color .15s, background .15s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  will-change: transform;
}
.mob-card.picked {
  background: linear-gradient(180deg, rgba(25,240,163,0.10), rgba(25,240,163,0.02));
  border-color: #19f0a3;
  box-shadow: 0 8px 32px -6px rgba(25,240,163,0.35);
}
.mob-card-photo {
  width: 104px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.mob-card-photo-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.20), transparent 60%);
  will-change: transform;
}
.mob-card-photo-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}
.mob-card-photo-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.08) 45%, transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
  will-change: transform;
}
.mob-card-no {
  position: absolute;
  top: 7px; left: 7px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  will-change: transform;
}
.mob-card-top {
  position: absolute;
  bottom: 7px; left: 7px;
  font-size: 8px;
  padding: 3px 7px;
  border-radius: 4px;
  background: #ff3d8a;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.12em;
  box-shadow: 0 4px 12px -2px rgba(255,61,138,0.5);
  will-change: transform;
}
.mob-card-info {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
.mob-card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.mob-card-name {
  font-size: 14px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 8px;
}
.mob-card-free {
  font-size: 10px;
  color: #19f0a3;
  font-weight: 600;
  flex-shrink: 0;
}
.mob-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}
.mob-card-spec {
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-family: 'JetBrains Mono', monospace;
}
.mob-card-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.mob-card-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
}
.mob-card-price b { font-size: 14px; font-weight: 800; }
.mob-card-price span {
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  margin-left: 4px;
  font-weight: 400;
}
.mob-card-picked {
  font-size: 10px;
  color: #19f0a3;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.mob-card-more {
  padding: 16px;
  border-radius: 12px;
  border: 1px dashed rgba(255,255,255,0.12);
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* === Sticky CTA ========================================================= */
.mob-cta {
  position: sticky;
  bottom: 0;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(10,6,16,0.6), rgba(10,6,16,0.98));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 12px 16px calc(14px + env(safe-area-inset-bottom, 0px));
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  row-gap: 10px;
}
.mob-cta-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.mob-cta-price {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  font-size: 15px;
  text-align: right;
}
.mob-cta-btn {
  grid-column: 1 / -1;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg,#ff3d8a,#a66bff);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 22px -6px rgba(255,61,138,0.5);
  cursor: pointer;
  font-family: inherit;
}
.mob-cta-btn:disabled {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.3);
  box-shadow: none;
  cursor: not-allowed;
}
.mob-cta-result {
  grid-column: 1 / -1;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 8px;
}
.mob-cta-result.ok {
  background: rgba(25,240,163,0.12);
  color: #19f0a3;
}
.mob-cta-result.ok a { color: #19f0a3; font-weight: 700; }
.mob-cta-result.err {
  background: rgba(255,61,138,0.12);
  color: #ff6f9b;
}
.mob-cta-login { color: #fff; text-decoration: underline; }

/* === Hour sheet overlay ================================================= */
.mob-sheet-back {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.mob-sheet {
  width: 100%;
  max-width: 560px;
  background: #0d0a18;
  border-top: 1px solid rgba(123,156,255,0.3);
  border-radius: 18px 18px 0 0;
  padding: 18px 16px calc(18px + env(safe-area-inset-bottom, 0px));
  max-height: 70vh;
  overflow-y: auto;
}
.mob-sheet-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  text-align: center;
}
.mob-sheet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.mob-sheet-close {
  display: block;
  margin: 16px auto 0;
  padding: 10px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
}
