/* ============================================================
   NVLOP — Landing page styles
   Dark studio aesthetic, condensed display type, neon accent
   ============================================================ */

:root {
  /* Light theme — paper background, navy ink */
  --bg: #f4f4f2;
  --bg-soft: #eceae5;
  --bg-card: #ffffff;
  --fg: #0d2346;
  --fg-dim: rgba(13, 35, 70, 0.72);
  --fg-mute: rgba(13, 35, 70, 0.45);
  --line: rgba(13, 35, 70, 0.12);
  --line-strong: rgba(13, 35, 70, 0.26);
  --accent: #0d2346;
  --accent-ink: #f4f4f2;
  --accent-soft: rgba(13, 35, 70, 0.16);
  --accent-glow: rgba(13, 35, 70, 0.32);
  /* Surfaces used inside UI mockup cards (laptops, dashboards, devices) */
  --surface: #ffffff;
  --surface-2: rgba(255, 255, 255, 0.7);
  --surface-tint: #faf9f6;
  /* Media frames (film/video) keep a dark plate for photographic contrast */
  --film: #0d1320;

  --font-display: "Barlow Condensed", "Inter Tight", "Arial Narrow", sans-serif;
  --font-body: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior: none;
}

body.route-home {
  overflow: hidden;
}

html.route-curator,
body.route-curator {
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: auto;
}

/* ---- Scroll snap container ---- */
.scroller {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.scroller::-webkit-scrollbar { display: none; }

.snap {
  position: relative;
  height: 100vh;
  width: 100vw;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
}

/* ---- Top frame (logo + nav) ---- */
.frame {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
}
.frame .top {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 44px;
  pointer-events: auto;
}
.brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.18em;
  color: #f4f4f2;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 22px; height: 22px;
  position: relative;
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #f4f4f2;
}
.brand-mark::before { transform: rotate(45deg); }
.brand-mark::after { border-radius: 50%; transform: scale(0.55); background: #f4f4f2; }

.top-nav {
  display: flex;
  gap: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f4f4f2;
}
.top-nav a { color: inherit; text-decoration: none; opacity: 0.65; transition: opacity .2s; }
.top-nav a:hover { opacity: 1; }
.top-nav {
  scrollbar-width: none;
}
.top-nav::-webkit-scrollbar {
  display: none;
}

.frame.frame-light .brand{ color: var(--fg); }
.frame.frame-light .brand-mark::before,
.frame.frame-light .brand-mark::after{
  border-color: var(--fg);
}
.frame.frame-light .brand-mark::after{
  background: var(--fg);
}
.frame.frame-light .top-nav{
  color: var(--fg);
}

.top-login-link {
  pointer-events: auto;
  border: 1px solid rgba(244, 244, 242, 0.46);
  background: rgba(4, 9, 17, 0.72);
  color: #f4f4f2;
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), 0 12px 30px rgba(0,0,0,0.25);
  transition: border-color .18s ease, transform .18s ease, background-color .18s ease;
}
.top-login-link:hover {
  border-color: rgba(244, 244, 242, 0.82);
  transform: translateY(-1px);
}

.user-menu-root {
  position: relative;
  pointer-events: auto;
  z-index: 95;
  flex: 0 0 auto;
}
.user-menu-trigger {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(244, 244, 242, 0.5);
  background:
    linear-gradient(145deg, rgba(244,244,242,0.12), rgba(244,244,242,0.02)),
    rgba(5, 10, 18, 0.82);
  color: #f4f4f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(0,0,0,0.32), inset 0 0 0 1px rgba(255,255,255,0.05);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.user-menu-trigger:hover,
.user-menu-trigger.is-open {
  border-color: #f4f4f2;
  box-shadow: 0 18px 42px rgba(0,0,0,0.42), 0 0 0 3px rgba(244,244,242,0.08);
}
.user-avatar-img,
.user-avatar-fallback {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.user-avatar-img { object-fit: cover; }
.user-avatar-fallback {
  border: 1px solid rgba(244,244,242,0.28);
  background:
    radial-gradient(circle at 35% 20%, rgba(214,240,83,0.2), transparent 38%),
    linear-gradient(160deg, #0d2346 0%, #06101d 100%);
  color: #f4f4f2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
}
.user-trigger-chevron {
  position: absolute;
  right: -2px;
  bottom: 1px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f4f4f2;
  color: #0d2346;
  border: 1px solid rgba(13,35,70,0.22);
  font-size: 8px;
  line-height: 1;
}

.user-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 14px);
  z-index: 96;
  width: min(348px, calc(100vw - 24px));
  padding: 12px;
  display: grid;
  gap: 8px;
  color: #f4f4f2;
  background:
    linear-gradient(90deg, rgba(244,244,242,0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(244,244,242,0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 17, 31, 0.98), rgba(4, 9, 17, 0.98));
  background-size: 18px 18px, 18px 18px, auto;
  border: 1px solid rgba(244,244,242,0.2);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0,0,0,0.62), inset 0 1px 0 rgba(255,255,255,0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.user-menu-panel::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 16px;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  background: #08111f;
  border-left: 1px solid rgba(244,244,242,0.2);
  border-top: 1px solid rgba(244,244,242,0.2);
}
.user-menu-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.user-menu-header {
  position: relative;
  padding: 12px 12px 11px;
  border: 1px solid rgba(244,244,242,0.13);
  border-radius: 6px;
  background: rgba(244,244,242,0.035);
  display: grid;
  gap: 4px;
}
.user-menu-header::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d6f053;
  box-shadow: 0 0 12px rgba(214,240,83,0.58);
}
.user-menu-name {
  padding-right: 18px;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #f4f4f2;
}
.user-menu-email {
  max-width: 100%;
  overflow-wrap: anywhere;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(244,244,242,0.62);
}
.user-plan-badge {
  width: fit-content;
  margin-top: 3px;
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(214,240,83,0.11);
  border: 1px solid rgba(214,240,83,0.42);
  color: #d6f053;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.user-menu-section {
  padding: 8px 0 0;
  border-top: 1px solid rgba(244,244,242,0.12);
  display: grid;
  gap: 3px;
}
.user-menu-section h4 {
  margin: 0;
  padding: 0 8px 3px;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,244,242,0.45);
}
.user-menu-section a {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 9px;
  border-radius: 4px;
  text-decoration: none;
  color: rgba(244,244,242,0.88);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: background-color .16s ease, color .16s ease, transform .16s ease;
}
.user-menu-section a::after {
  content: ">";
  color: rgba(244,244,242,0.34);
}
.user-menu-section a:hover {
  background: rgba(244,244,242,0.08);
  color: #f4f4f2;
  transform: translateX(2px);
}
.user-menu-section a.is-locked {
  color: rgba(244,244,242,0.48);
}
.user-menu-section a.is-locked span {
  margin-left: auto;
  border: 1px solid rgba(214,240,83,0.38);
  border-radius: 999px;
  padding: 2px 6px;
  color: #d6f053;
  font-size: 8px;
  letter-spacing: 0.12em;
}
.user-logout-btn {
  min-height: 38px;
  width: 100%;
  margin-top: 2px;
  border: 1px solid rgba(244,244,242,0.22);
  border-radius: 4px;
  background: rgba(244,244,242,0.06);
  color: #f4f4f2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .16s ease, background-color .16s ease;
}
.user-logout-btn:hover {
  border-color: rgba(255,190,190,0.58);
  background: rgba(180,30,30,0.2);
}

.user-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 15, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
  z-index: 90;
}
.user-menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* ---- Side dot nav ---- */
.dots {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 60;
  pointer-events: auto;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(244,244,242,0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: all .25s ease;
}
.dot.light { border-color: rgba(13,35,70,0.45); }
.dot.active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  transform: scale(1.2);
}
.dot .dot-label {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(244,244,242,0.75);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.dot.light .dot-label { color: var(--fg-dim); }
.dot:hover .dot-label { opacity: 1; }

/* ---- Progress counter (bottom-left) ---- */
.counter {
  position: fixed;
  bottom: 28px;
  left: 44px;
  z-index: 60;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #f4f4f2;
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.counter .big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0.02em;
  line-height: 1;
}

/* ============================================================
   Section common layout
   ============================================================ */

.section-inner {
  position: relative;
  z-index: 5;
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: clamp(80px, 11vh, 120px) clamp(40px, 5vw, 88px) clamp(64px, 9vh, 96px);
  gap: clamp(32px, 4vw, 64px);
}

.section-inner.right-text {
  grid-template-columns: 1.05fr 0.95fr;
}
.section-inner.full {
  grid-template-columns: 1fr;
  padding-left: clamp(40px, 6vw, 120px);
  padding-right: clamp(40px, 6vw, 120px);
}

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: clamp(14px, 2.2vh, 22px);
}
.kicker .slash { color: var(--accent); }
.section.light .kicker { color: var(--fg-mute); }
.section.light .kicker .slash { color: var(--accent); }

.title-xxl {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, min(7vw, 10vh), 116px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
  color: var(--fg);
  text-wrap: balance;
}
.section.light .title-xxl { color: var(--fg); }

.title-divider {
  width: 84px;
  height: 1px;
  background: var(--line-strong);
  margin: clamp(16px, 2.4vh, 28px) 0;
}
.section.light .title-divider { background: var(--line-strong); }

.body-copy {
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.65;
  color: var(--fg-dim);
  max-width: 480px;
  margin: 0 0 clamp(18px, 3vh, 32px);
  font-weight: 400;
}
.section.light .body-copy { color: var(--fg-dim); }

/* ---- Pill buttons (CTAs) ---- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 30px 18px 32px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--fg);
  transition: all .25s cubic-bezier(.2,.7,.2,1);
  text-decoration: none;
}
.pill:hover {
  background: var(--fg);
  color: var(--bg);
  letter-spacing: 0.26em;
}
.pill .arr {
  width: 14px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width .25s;
}
.pill .arr::after {
  content: "";
  position: absolute;
  right: -1px; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.pill:hover .arr { width: 22px; }

.pill.accent {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.pill.accent:hover {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 0 28px 0 var(--accent-glow);
  letter-spacing: 0.26em;
}

.pill.dark {
  border-color: var(--fg);
  color: var(--fg);
}
.pill.dark:hover {
  background: var(--fg);
  color: var(--bg);
}

/* ============================================================
   Atmospheric backgrounds (CSS/SVG audio motifs, no figurative)
   ============================================================ */

.bg-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.bg-grad-radial {
  background:
    radial-gradient(1200px 600px at 80% 50%, rgba(13,35,70,0.06), transparent 60%),
    radial-gradient(800px 500px at 20% 80%, rgba(13,35,70,0.04), transparent 70%),
    var(--bg);
}
.bg-dotgrid {
  background-image: radial-gradient(rgba(13,35,70,0.14) 1px, transparent 1px);
  background-size: 22px 22px;
  background-position: -1px -1px;
}
.bg-dotgrid.light { background-image: radial-gradient(rgba(13,35,70,0.14) 1px, transparent 1px); }

.bg-linegrid {
  background-image:
    linear-gradient(rgba(13,35,70,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,35,70,0.07) 1px, transparent 1px);
  background-size: 80px 80px;
}

.bg-noise {
  position: absolute; inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  pointer-events: none;
}

.bg-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(13,35,70,0.12) 100%);
  pointer-events: none;
}

/* Visual placeholder for imagery — image-slot wrapper */
.img-slot-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

/* Mono label badge */
.mono-tag {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
  background: rgba(255,255,255,0.72);
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 2px;
  backdrop-filter: blur(6px);
  z-index: 6;
}

/* ============================================================
   Section-specific scenes
   ============================================================ */

/* --- Hero --- */
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg .grid-floor {
  position: absolute;
  bottom: -10%;
  left: -10%; right: -10%;
  height: 70%;
  background-image:
    linear-gradient(rgba(13,35,70,0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,35,70,0.42) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(800px) rotateX(70deg);
  transform-origin: center bottom;
  mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  opacity: 0.55;
}
.hero-bg .glow {
  position: absolute;
  width: 70vw; height: 70vw;
  left: 50%; top: 60%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, var(--accent-glow), transparent 55%);
  filter: blur(40px);
  opacity: 0.35;
}

.eq-bars {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 280px;
  opacity: 0.85;
}
.eq-bars .bar {
  width: 4px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  animation: eq 1.4s ease-in-out infinite;
}
@keyframes eq {
  0%, 100% { height: 18%; }
  50% { height: 100%; }
}

.waveform {
  position: absolute;
  left: 0; right: 0;
  height: 200px;
  pointer-events: none;
}

/* --- EPK section: device mocks --- */
.device-stack {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.device {
  background: linear-gradient(180deg, #1c2a3d, #0b1320);
  border: 1px solid rgba(13,35,70,0.18);
  border-radius: 18px;
  box-shadow:
    0 30px 60px rgba(13,35,70,0.22),
    inset 0 1px 0 rgba(255,255,255,0.08);
  padding: 18px;
  position: relative;
}
.device-tablet {
  width: 440px;
  height: 320px;
  transform: rotate(-4deg);
  z-index: 1;
}
.device-phone {
  width: 180px;
  height: 380px;
  position: absolute;
  right: 8%;
  bottom: 6%;
  transform: rotate(6deg);
  z-index: 2;
  border-radius: 26px;
}

/* EPK screen content (abstract layout) */
.epk-screen {
  width: 100%; height: 100%;
  background: #0b1320;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
}
.epk-row { display: flex; justify-content: space-between; align-items: center; }
.epk-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a4a7f, #0b1320);
}
.epk-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.08);
}
.epk-bar.full { background: var(--accent); width: 70%; }
.epk-chip {
  display: inline-block;
  padding: 3px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 8px;
}
.epk-chip.accent { border-color: var(--accent); color: var(--accent); }
.epk-wave {
  display: flex; gap: 2px; align-items: flex-end; height: 28px;
}
.epk-wave span {
  flex: 1;
  background: var(--accent);
  border-radius: 1px;
  opacity: 0.7;
}

/* --- Charts dashboard --- */
.dashboard {
  position: relative;
  width: 100%;
  max-width: 580px;
  aspect-ratio: 4/3;
  margin: 0 auto;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 24px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-dim);
  box-shadow: 0 30px 60px rgba(13,35,70,0.14);
}
.dashboard-head {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.dashboard-chart {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 10px 0;
}
.dashboard-chart .col {
  flex: 1;
  background: linear-gradient(180deg, rgba(13,35,70,0.22), rgba(13,35,70,0.06));
  border-radius: 2px;
  position: relative;
}
.dashboard-chart .col.peak {
  background: linear-gradient(180deg, var(--accent), var(--accent-soft));
  box-shadow: 0 0 12px var(--accent-glow);
}
.dashboard-trend {
  position: absolute;
  inset: 10px 0 0 0;
  pointer-events: none;
}
.dashboard-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.dashboard-list .item {
  display: flex; justify-content: space-between;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.dashboard-list .item .v { color: var(--accent); }

/* --- Desktop app screen --- */
.laptop {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}
.laptop .lid {
  background: #0b1320;
  border: 1px solid rgba(13,35,70,0.22);
  border-radius: 14px 14px 4px 4px;
  padding: 16px;
  box-shadow: 0 30px 60px rgba(13,35,70,0.25);
  aspect-ratio: 16/10;
  overflow: hidden;
}
.laptop .base {
  height: 14px;
  background: linear-gradient(180deg, #cdccc7, #b6b4ae);
  border-radius: 0 0 24px 24px;
  margin: 0 -6%;
  position: relative;
}
.laptop .base::before {
  content: ""; position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: 80px; height: 4px;
  background: rgba(13,35,70,0.32);
  border-radius: 0 0 6px 6px;
}
.app-window {
  width: 100%; height: 100%;
  background: #0b1320;
  display: grid;
  grid-template-columns: 180px 1fr;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.72);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.app-window .sidebar {
  background: #0a1626;
  border-right: 1px solid rgba(255,255,255,0.08);
  padding: 14px 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.app-window .traffic {
  display: flex; gap: 5px; margin-bottom: 12px;
}
.app-window .traffic span {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--line-strong);
}
.app-window .nav-item {
  padding: 6px 8px;
  border-radius: 4px;
  display: flex; justify-content: space-between;
  text-transform: uppercase;
}
.app-window .nav-item.active {
  background: var(--accent-soft);
  color: var(--accent);
}
.app-window .nav-item .tag {
  font-size: 8px;
  padding: 1px 5px;
  border-radius: 2px;
  background: rgba(255,255,255,0.06);
}
.app-window .nav-item.active .tag {
  background: var(--accent);
  color: var(--accent-ink);
}
.app-window .main {
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 8px;
  overflow: hidden;
}
.track-row {
  display: grid;
  grid-template-columns: 18px 1.5fr 0.6fr 0.6fr 0.6fr 22px;
  gap: 10px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  align-items: center;
}
.track-row .bpm { color: var(--accent); }
.track-row .key {
  padding: 2px 6px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  font-size: 8px;
  text-align: center;
}
.track-row .dot-tag {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}

/* --- Video editor split --- */
.split-editor {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 18px;
  align-items: center;
}
.video-card {
  background: #0b1320;
  border: 1px solid rgba(13,35,70,0.22);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.video-card.horiz { aspect-ratio: 16/9; }
.video-card.vert { aspect-ratio: 9/16; }
.video-card .label {
  position: absolute;
  top: 10px; left: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.55);
  padding: 4px 8px;
  border-radius: 2px;
  z-index: 4;
}
.video-card .rec {
  position: absolute;
  top: 10px; right: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--accent);
  display: flex; align-items: center; gap: 6px;
  z-index: 4;
}
.video-card .rec::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}
.video-card .overlay-info {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: #fff;
  display: flex; flex-direction: column; gap: 4px;
  z-index: 4;
}
.video-card .wave-strip {
  display: flex; gap: 2px; align-items: flex-end; height: 24px;
}
.video-card .wave-strip span {
  flex: 1;
  background: var(--accent);
  border-radius: 1px;
}
.video-card .timecode {
  position: absolute;
  bottom: 10px; right: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  z-index: 4;
}
.scene-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--accent-ink);
  z-index: 6;
  box-shadow: 0 0 32px var(--accent-glow);
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

/* --- Filming (light section) --- */
.section.light {
  background: var(--bg);
  color: var(--fg);
}
.section.light .bg-noise { opacity: 0.04; mix-blend-mode: multiply; }
.section.light .body-copy { color: rgba(0,0,0,0.7); }

.film-strip {
  position: relative;
  width: 100%;
  height: 78%;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 14px;
  align-items: center;
}
.film-frame {
  position: relative;
  background: var(--film);
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(13,35,70,0.18);
}
.film-frame.tall { aspect-ratio: 3/4; height: auto; }
.film-frame.wide { aspect-ratio: 4/5; height: auto; }
.film-frame .meta {
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  display: flex; flex-direction: column; gap: 4px;
}
.film-frame .meta .small { color: rgba(255,255,255,0.55); font-size: 9px; }
.film-frame .crosshair {
  position: absolute; inset: 18px;
  border: 1px solid rgba(255,255,255,0.25);
  pointer-events: none;
}
.film-frame .crosshair::before,
.film-frame .crosshair::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,0.35);
}
.film-frame .crosshair::before {
  left: 50%; top: -6px; bottom: -6px; width: 1px;
}
.film-frame .crosshair::after {
  top: 50%; left: -6px; right: -6px; height: 1px;
}

/* --- Newsletter --- */
.mail-mock {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: clamp(14px, 2.4vh, 22px);
  display: flex; flex-direction: column;
  gap: clamp(8px, 1.4vh, 12px);
  box-shadow: 0 30px 60px rgba(13,35,70,0.10);
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-dim);
}
.mail-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.mail-item {
  display: grid;
  grid-template-columns: 28px 1fr 60px;
  gap: 12px;
  align-items: center;
  padding: clamp(7px, 1.2vh, 10px) 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: background .2s;
}
.mail-item:hover { background: rgba(255,255,255,0.04); }
.mail-item .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.mail-item.read .dot { background: var(--line-strong); }
.mail-item .subj { color: var(--fg); letter-spacing: 0.04em; }
.mail-item .time { font-size: 9px; text-align: right; }

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(20px, 3vh, 32px) clamp(20px, 2.2vw, 30px);
  display: flex; flex-direction: column;
  min-height: 0;
}
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(13,35,70,0.06), var(--bg-card));
  box-shadow: 0 0 0 1px var(--accent), 0 30px 60px rgba(13,35,70,0.16);
}
.price-card .tier-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.price-card .tier-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4.4vh, 52px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.price-card .tier-tagline {
  font-size: 12px;
  color: var(--fg-dim);
  margin-bottom: clamp(14px, 2.4vh, 22px);
  max-width: 260px;
  line-height: 1.45;
}
.price-card .tier-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5.4vh, 60px);
  line-height: 1;
  margin-bottom: 4px;
}
.price-card .tier-price .per {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  color: var(--fg-mute);
  letter-spacing: 0.16em;
  margin-left: 6px;
}
.price-card .tier-sub {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  color: var(--fg-mute);
  text-transform: uppercase;
  margin-bottom: clamp(14px, 2.6vh, 24px);
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(16px, 2.8vh, 28px);
  display: flex; flex-direction: column;
  gap: clamp(6px, 1vh, 10px);
  flex: 1;
}
.price-card ul li {
  font-size: 12.5px;
  color: var(--fg-dim);
  display: flex; align-items: flex-start; gap: 10px;
  padding-bottom: clamp(6px, 1vh, 10px);
  border-bottom: 1px solid var(--line);
  line-height: 1.4;
}
.price-card ul li:last-child { border-bottom: 0; }
.price-card ul li::before {
  content: "+";
  font-family: var(--font-mono);
  color: var(--accent);
  font-weight: 600;
  margin-top: 1px;
}
.price-card .recommend-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
}

/* --- Checkout --- */
.checkout-card {
  width: 100%;
  max-width: 560px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: clamp(20px, 3vh, 32px);
  display: flex; flex-direction: column;
  gap: clamp(10px, 1.6vh, 16px);
  box-shadow: 0 30px 60px rgba(13,35,70,0.12);
}
.checkout-row { display: flex; justify-content: space-between; align-items: baseline; }
.checkout-summary {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(12px, 2vh, 18px) clamp(14px, 2vw, 20px);
  display: flex; flex-direction: column; gap: 8px;
}
.checkout-summary .summary-tier {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
}
.checkout-summary .summary-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.checkout-summary .total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.checkout-summary .total .amt {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field {
  display: flex; flex-direction: column; gap: 6px;
}
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.field .input {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: clamp(8px, 1.4vh, 12px) 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg);
  letter-spacing: 0.04em;
}
.field .input.placeholder { color: var(--fg-mute); }
.field .input .accent-cursor {
  display: inline-block;
  width: 6px; height: 12px;
  background: var(--accent);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 1s infinite;
}
@keyframes blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

.payment-methods {
  display: flex; align-items: center; gap: 18px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.payment-methods .label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.method-pill {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--fg);
  background: var(--bg);
  display: inline-flex; align-items: center; gap: 6px;
}
.method-pill .lock {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--accent);
  font-weight: 400;
}

/* ============================================================
   Modal overlay (service detail)
   ============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(244,244,242,0.78);
  backdrop-filter: blur(14px);
  z-index: 200;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-panel {
  position: absolute;
  inset: 4% 5%;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  overflow: hidden;
  transform: scale(0.96) translateY(20px);
  opacity: 0;
  transition: all .45s cubic-bezier(.2,.7,.2,1);
  display: grid;
  grid-template-rows: auto 1fr;
}
.modal-backdrop.open .modal-panel {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.modal-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 32px;
  border-bottom: 1px solid var(--line);
}
.modal-head .modal-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.modal-close {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--fg);
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 18px;
  transition: all .2s;
}
.modal-close:hover {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.modal-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  overflow: hidden;
}
.modal-body .modal-visual {
  background: var(--bg-soft);
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 36px;
}
.modal-body .modal-text {
  padding: clamp(24px, 4vh, 44px) clamp(28px, 3.5vw, 48px);
  overflow-y: auto;
  display: flex; flex-direction: column;
  gap: clamp(14px, 2vh, 22px);
}
.modal-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}
.modal-lead {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-dim);
  margin: 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 1.6vh, 16px);
  margin-top: 4px;
}
.feature-item {
  padding: clamp(12px, 2vh, 16px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
}
.feature-item .num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 8px;
}
.feature-item .feat-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.feature-item .feat-desc {
  font-size: 12px;
  line-height: 1.5;
  color: var(--fg-dim);
  margin: 0;
}

.spec-list {
  display: flex; flex-direction: column;
  gap: 0;
  margin-top: 8px;
  border-top: 1px solid var(--line);
}
.spec-list .spec {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}
.spec-list .spec .k {
  color: var(--fg-mute);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.spec-list .spec .v {
  color: var(--fg);
}

.modal-cta-row {
  display: flex; gap: 12px;
  margin-top: 8px;
}

.auth-google-bridge {
  position: relative;
  display: grid;
  grid-template-columns: minmax(104px, 0.46fr) minmax(0, 1fr) 52px;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 99, 118, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 99, 118, 0.10), rgba(255,255,255,0.72) 46%, rgba(8, 39, 69, 0.07)),
    repeating-linear-gradient(90deg, rgba(8,39,69,0.07) 0 1px, transparent 1px 14px);
  overflow: hidden;
}
.auth-google-bridge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 42%, rgba(0, 99, 118, 0.12) 46%, transparent 52% 100%);
  pointer-events: none;
}
.auth-usb-visual {
  position: relative;
  z-index: 1;
  height: 42px;
}
.auth-usb-cable {
  position: absolute;
  left: 0;
  right: 44px;
  top: 20px;
  height: 2px;
  background: rgb(8, 39, 69);
}
.auth-usb-plug {
  position: absolute;
  right: 42px;
  top: 9px;
  width: 34px;
  height: 24px;
  border: 2px solid rgb(8, 39, 69);
  background: var(--bg-card);
}
.auth-usb-plug::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 5px;
  width: 7px;
  height: 10px;
  border: 2px solid rgb(8, 39, 69);
  border-left: 0;
}
.auth-usb-plug span {
  position: absolute;
  top: 7px;
  width: 4px;
  height: 4px;
  background: rgb(0, 99, 118);
}
.auth-usb-plug span:first-child { left: 8px; }
.auth-usb-plug span:last-child { right: 8px; }
.auth-usb-port {
  position: absolute;
  right: 0;
  top: 7px;
  width: 34px;
  height: 28px;
  border: 2px solid rgb(0, 99, 118);
  border-radius: 3px;
  box-shadow: inset 0 0 0 6px rgba(0, 99, 118, 0.08), 0 0 18px rgba(0, 99, 118, 0.16);
}
.auth-google-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.auth-google-copy strong {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--fg);
}
.auth-google-copy span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.auth-google-socket {
  position: relative;
  z-index: 1;
  width: 44px;
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 640px) {
  .frame .top {
    padding: 18px 16px;
    align-items: flex-start;
    gap: 10px;
  }
  .top-nav {
    gap: 14px;
    font-size: 9px;
    letter-spacing: 0.14em;
    max-width: calc(100vw - 170px);
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 2px;
  }
  .brand {
    font-size: 18px;
    letter-spacing: 0.13em;
  }
  .user-menu-panel.mobile {
    position: fixed;
    left: 10px;
    right: 10px;
    top: auto;
    bottom: 8px;
    width: auto;
    border-radius: 18px;
    transform: translateY(30px);
    max-height: 74vh;
    overflow-y: auto;
  }
  .user-menu-panel.mobile.open {
    transform: translateY(0);
  }
  .auth-google-bridge {
    grid-template-columns: minmax(0, 1fr) 50px;
    min-height: 76px;
  }
  .auth-usb-visual {
    display: none;
  }
}

/* ============================================================
   Reveal animation on snap-in (driven by JS)
   ============================================================ */
.snap [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--rd, 0ms);
}
.snap.in-view [data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Footer-ish content for last section
   ============================================================ */
.legal-bar {
  position: absolute;
  bottom: 28px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 44px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
}

/* Image-slot subtle integration */
image-slot {
  background: var(--bg-soft);
}

/* Selection */
::selection { background: var(--accent); color: var(--accent-ink); }

/* ============================================================
   Within dark "screen" surfaces (epk-screen, app-window),
   the navy accent is invisible — boost it to an icy tint.
   ============================================================ */
.epk-screen .epk-chip {
  border-color: rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.7);
}
.epk-screen .epk-chip.accent {
  border-color: rgba(180,210,255,0.55);
  color: #cfe0ff;
}
.app-window {
  color: rgba(255,255,255,0.72);
}
.app-window .nav-item.active {
  background: rgba(180,210,255,0.10);
  color: #cfe0ff;
}
.app-window .nav-item.active .tag {
  background: #cfe0ff;
  color: #0b1320;
}
.app-window .nav-item .tag {
  background: rgba(255,255,255,0.07);
}
.app-window .track-row {
  border-color: rgba(255,255,255,0.10);
}
.app-window .track-row .bpm {
  color: #cfe0ff;
}
.app-window .track-row .key {
  border-color: rgba(255,255,255,0.22);
}
.video-card .rec::before {
  background: #006376;
  box-shadow: 0 0 8px rgba(0,99,118,0.55);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .eq-bars .bar { animation: none; }
  .snap [data-reveal] { transition-duration: .2s; }
}

/* ============================================================
   Per-section background images
   Each section ID gets its own background-image (cover, center)
   with a dark gradient overlay on top so text stays readable.
   To swap an image: replace the url(...) value in that section's
   rule with your file path (e.g. url("assets/hero.jpg")).
   ============================================================ */

#hero, #epk, #charts, #desktop, #videoai,
#filming, #newsletter, #pricing, #checkout {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Shared dark overlay tokens — adjust to taste */
:root {
  --bg-overlay: linear-gradient(
    180deg,
    rgba(13, 35, 70, 0.62) 0%,
    rgba(13, 35, 70, 0.78) 60%,
    rgba(8, 18, 38, 0.92) 100%
  );
}

#hero {
  background-image:
    var(--bg-overlay),
    url("assets/bg-hero.png");
}
#epk {
  background-image:
    var(--bg-overlay),
    url("assets/bg-epk.png");
}
#charts {
  background-image:
    var(--bg-overlay),
    url("assets/bg-charts.png");
}
#desktop {
  background-image:
    var(--bg-overlay),
    url("assets/bg-desktop.png");
}
#videoai {
  background-image:
    var(--bg-overlay),
    url("assets/bg-videoai.png");
}
#filming {
  background-image:
    var(--bg-overlay),
    url("assets/bg-filming.png");
}
#newsletter {
  background-image:
    var(--bg-overlay),
    url("assets/bg-newsletter.png");
}
#pricing {
  background-image: var(--bg-overlay);
  background-color: #0d2346;
}
#checkout {
  background-image: var(--bg-overlay);
  background-color: #0d2346;
}

/* When a section has a dark image background, flip text to light so it stays readable */
#hero, #epk, #charts, #desktop, #videoai,
#filming, #newsletter, #pricing, #checkout {
  color: #f4f4f2;
}
#hero .title-xxl,
#epk .title-xxl,
#charts .title-xxl,
#desktop .title-xxl,
#videoai .title-xxl,
#filming .title-xxl,
#newsletter .title-xxl,
#pricing .title-xxl,
#checkout .title-xxl {
  color: #f4f4f2;
}
#hero .body-copy,
#epk .body-copy,
#charts .body-copy,
#desktop .body-copy,
#videoai .body-copy,
#filming .body-copy,
#newsletter .body-copy,
#pricing .body-copy,
#checkout .body-copy {
  color: rgba(244, 244, 242, 0.78);
}
#hero .kicker,
#epk .kicker,
#charts .kicker,
#desktop .kicker,
#videoai .kicker,
#filming .kicker,
#newsletter .kicker,
#pricing .kicker,
#checkout .kicker {
  color: rgba(244, 244, 242, 0.72);
}
#hero .title-divider,
#epk .title-divider,
#charts .title-divider,
#desktop .title-divider,
#videoai .title-divider,
#filming .title-divider,
#newsletter .title-divider,
#pricing .title-divider,
#checkout .title-divider {
  background: rgba(244, 244, 242, 0.32);
}

/* Pill CTAs over dark bg: white border + white text */
#hero .pill,
#epk .pill,
#charts .pill,
#desktop .pill,
#videoai .pill,
#filming .pill,
#newsletter .pill,
#pricing .pill,
#checkout .pill {
  border-color: #f4f4f2;
  color: #f4f4f2;
}
#hero .pill:hover,
#epk .pill:hover,
#charts .pill:hover,
#desktop .pill:hover,
#videoai .pill:hover,
#filming .pill:hover,
#newsletter .pill:hover,
#pricing .pill:hover,
#checkout .pill:hover {
  background: #f4f4f2;
  color: #0d2346;
}
#hero .pill.accent,
#epk .pill.accent,
#charts .pill.accent,
#desktop .pill.accent,
#videoai .pill.accent,
#filming .pill.accent,
#newsletter .pill.accent,
#pricing .pill.accent,
#checkout .pill.accent {
  background: #f4f4f2;
  color: #0d2346;
  border-color: #f4f4f2;
}
#hero .pill.accent:hover,
#epk .pill.accent:hover,
#charts .pill.accent:hover,
#desktop .pill.accent:hover,
#videoai .pill.accent:hover,
#filming .pill.accent:hover,
#newsletter .pill.accent:hover,
#pricing .pill.accent:hover,
#checkout .pill.accent:hover {
  background: #ffffff;
  color: #0d2346;
}


/* =====================================================
   NVLOP Design refresh — ported from Claude Design final
   (EPK devices, charts, video-AI, filming, pricing, checkout)
   ===================================================== */
/* ---- EPK devices (premium mockups) ---- */
.device-stack{
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.epk-device{
  position: relative;
  background:
    linear-gradient(160deg, #1c2638 0%, #0a1220 55%, #050a14 100%);
  box-shadow:
    0 60px 110px rgba(0,0,0,0.55),
    0 22px 44px rgba(0,0,0,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.06),
    inset 0 1.5px 0 rgba(255,255,255,0.08);
}
.epk-device.tablet{
  width: min(580px, 96%);
  aspect-ratio: 4 / 3;
  border-radius: 26px;
  padding: 12px;
  transform: rotate(-3deg) translateX(-4%);
  z-index: 1;
}
.epk-device.phone{
  position: absolute;
  width: clamp(150px, 32%, 200px);
  aspect-ratio: 9 / 19;
  border-radius: 30px;
  padding: 6px;
  right: 2%;
  bottom: 4%;
  transform: rotate(6deg);
  z-index: 3;
}
.epk-device.phone::before{
  content: "";
  position: absolute;
  top: 11px; left: 50%;
  transform: translateX(-50%);
  width: 46px; height: 13px;
  background: #04080f;
  border-radius: 999px;
  z-index: 5;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.epk-screen-v2{
  position: relative;
  width: 100%; height: 100%;
  background: #0a1424;
  border-radius: 16px;
  overflow: hidden;
  color: rgba(244,244,242,0.92);
  font-family: var(--font-body);
}
.epk-device.phone .epk-screen-v2{
  border-radius: 26px;
}
/* Legacy .epk-screen kept for any other reference */
.epk-screen{
  width: 100%; height: 100%; background: #0b1320;
  border-radius: 10px; padding: 14px;
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.7);
}
/* EPK content building blocks */
.epk-tag-fluor{
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 7.5px;
  letter-spacing: 0.22em;
  padding: 4px 9px;
  border-radius: 999px;
  background: #d6f053;
  color: #0a1424;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
.epk-section-label{
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244,244,242,0.42);
}
.epk-photo-frame{
  position: relative;
  background:
    linear-gradient(160deg, #1f2c44 0%, #0a1424 55%, #050a14 100%);
  border-radius: 6px;
  overflow: hidden;
}
.epk-photo-frame::after{
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 35% at 65% 22%, rgba(180, 200, 230, 0.18) 0%, transparent 60%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 7px);
  pointer-events: none;
}
.epk-photo-silhouette{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 28% 22% at 50% 28%, rgba(190,205,230,0.42) 0%, transparent 70%),
    radial-gradient(ellipse 55% 55% at 50% 88%, rgba(110,130,160,0.38) 0%, transparent 65%);
  filter: blur(1.5px);
}
.epk-mini-card{
  background: linear-gradient(135deg, #2a3a55 0%, #0d1424 100%);
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.epk-mini-card::after{
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(214,240,83,0.18), transparent 55%);
}
.epk-press-logo{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(244,244,242,0.55);
}
.epk-platform-btn{
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,244,242,0.68);
}
.epk-platform-dot{
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(244,244,242,0.08);
  border: 1px solid rgba(244,244,242,0.28);
  flex-shrink: 0;
}
.epk-platform-dot.fluor{
  background: #d6f053;
  border-color: #d6f053;
}
.epk-photo-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.epk-photo-cell{
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1c2840 0%, #0a1424 100%);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.epk-photo-cell::after{
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 35% 40%, rgba(214, 240, 83, 0.14), transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(150, 180, 220, 0.18), transparent 60%);
}
.epk-connect-icon{
  width: 24px; height: 24px;
  border-radius: 7px;
  background: rgba(244,244,242,0.05);
  border: 1px solid rgba(244,244,242,0.12);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.04em;
  color: rgba(244,244,242,0.62);
  flex-shrink: 0;
}
.epk-connect-icon.accent{
  background: rgba(214,240,83,0.12);
  border-color: rgba(214,240,83,0.45);
  color: #d6f053;
}
/* ---- Video AI · Device mockups ---- */
.va-stage{
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(18px, 2.6vw, 36px);
  padding: 2% 1%;
}
/* Laptop (open clamshell) */
.va-laptop{
  position: relative;
  width: clamp(380px, 38vw, 560px);
  flex: 0 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
}
.va-laptop .lid{
  position: relative;
  background: linear-gradient(180deg, #1a232f 0%, #0e1620 100%);
  padding: 10px 10px 14px;
  border-radius: 14px 14px 4px 4px;
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.va-laptop .cam{
  position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: #2a3340; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.6);
}
.va-laptop .screen{
  position: relative;
  aspect-ratio: 16/10;
  background: #0a1020;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.va-laptop .hinge{
  position: relative;
  height: 12px;
  background: linear-gradient(180deg, #0b121b 0%, #161e2a 35%, #0a0f17 100%);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset;
}
.va-laptop .base{
  position: relative;
  height: 8px;
  margin: 0 -3%;
  background: linear-gradient(180deg, #1c2632 0%, #0a1019 100%);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 18px 28px rgba(0,0,0,0.45);
}
.va-laptop .base::before{
  content: ""; position: absolute;
  left: 50%; top: 0; transform: translateX(-50%);
  width: 18%; height: 4px;
  background: #060a11;
  border-radius: 0 0 8px 8px;
}
/* Tablet (vertical) */
.va-tablet{
  position: relative;
  width: clamp(180px, 17vw, 240px);
  flex: 0 0 auto;
  background: linear-gradient(180deg, #1a232f 0%, #0d1520 100%);
  padding: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 30px 60px rgba(0,0,0,0.55);
}
.va-tablet .cam{
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%;
  background: #2a3340; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.6);
}
.va-tablet .screen{
  position: relative;
  aspect-ratio: 3/4;
  background: #0a1020;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
/* Shared screen UI */
.va-screen-pad{
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  padding: clamp(8px, 1.2vw, 14px);
  gap: clamp(6px, 0.9vw, 10px);
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.85);
}
.va-topbar{
  display: flex; align-items: center; justify-content: space-between;
  font-size: 8.5px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.va-topbar .left{ display: flex; align-items: center; gap: 6px; }
.va-topbar .dot{ width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.va-topbar .dot.live{ background: #d6f053; box-shadow: 0 0 6px rgba(214,240,83,0.7); }
.va-drop{
  flex: 1; position: relative;
  border: 1.5px dashed rgba(255,255,255,0.22);
  border-radius: 6px;
  background:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,0.025) 0 8px,
      rgba(255,255,255,0) 8px 16px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 9px; letter-spacing: 0.22em;
  text-transform: uppercase;
}
.va-drop .drop-glyph{
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.7);
}
.va-drop .drop-sub{ font-size: 7.5px; color: rgba(255,255,255,0.35); letter-spacing: 0.18em; }
.va-meta-row{
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; font-size: 8px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.va-meta-row .src{ color: rgba(255,255,255,0.78); }
.va-tag-yellow{
  display: inline-block;
  background: #d6f053; color: #0a1424;
  font-family: var(--font-mono); font-weight: 700;
  font-size: 7.5px; letter-spacing: 0.22em;
  padding: 3px 7px; border-radius: 999px;
  text-transform: uppercase;
}
.va-tag-ghost{
  display: inline-flex; align-items: center; gap: 5px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.02);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-mono); font-size: 7.5px;
  letter-spacing: 0.22em; padding: 3px 7px; border-radius: 999px;
  text-transform: uppercase;
}
.va-wave{
  display: flex; align-items: center; gap: 2px;
  width: 100%;
}
.va-wave.detail{ height: 38px; }
.va-wave.compact{ height: 22px; }
.va-wave span{
  flex: 1; min-width: 1px;
  background: rgba(255,255,255,0.85);
  border-radius: 1px;
}
.va-wave span.peak{ background: #d6f053; box-shadow: 0 0 6px rgba(214,240,83,0.5); }
.va-progress{
  display: flex; align-items: center; gap: 8px;
  font-size: 8px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.va-progress .bar{
  flex: 1; height: 2px; background: rgba(255,255,255,0.12);
  border-radius: 999px; overflow: hidden; position: relative;
}
.va-progress .bar::before{
  content: ""; position: absolute; inset: 0 62% 0 0;
  background: #d6f053;
}
.va-now{
  display: flex; flex-direction: column; gap: 3px;
  padding-top: 2px;
}
.va-now .alias{
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(14px, 1.6vw, 22px);
  letter-spacing: 0.06em; color: #fff; line-height: 1;
}
.va-now .track{
  font-size: 7.5px; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
/* ---- Filming ---- */
.film-strip{
  position: relative; width: 100%; height: 100%;
  display: grid; grid-template-columns: 0.85fr 1.5fr;
  gap: clamp(16px, 1.6vw, 28px);
  align-items: center; justify-items: center;
}
/* --- Phone device (portrait) --- */
.fl-phone{
  position: relative;
  width: 100%;
  max-width: clamp(180px, 18vw, 240px);
  aspect-ratio: 9 / 19;
  background: linear-gradient(180deg, #1a1d22 0%, #0a0c10 100%);
  border-radius: 28px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    inset 0 -1px 0 rgba(0,0,0,0.6),
    0 30px 60px rgba(0,0,0,0.55),
    0 12px 24px rgba(0,0,0,0.45);
}
.fl-phone::before{
  /* side button */
  content: ""; position: absolute;
  right: -2px; top: 22%; width: 2px; height: 48px;
  background: #1a1d22; border-radius: 0 2px 2px 0;
}
.fl-phone .screen{
  position: relative; width: 100%; height: 100%;
  border-radius: 22px; overflow: hidden;
  background: #05070b;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.fl-phone .notch{
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 38%; height: 18px; background: #05070b;
  border-radius: 0 0 12px 12px; z-index: 5;
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: 8px; gap: 4px;
}
.fl-phone .notch::after{
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: #1a232f; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.fl-phone .statusbar{
  position: absolute; top: 6px; left: 14px; right: 14px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7); z-index: 6;
}
.fl-phone .photo{
  position: absolute; inset: 0;
}
.fl-phone .lower-overlay{
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 12px 14px 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 60%, rgba(0,0,0,0.92) 100%);
  display: flex; flex-direction: column; gap: 6px;
  z-index: 4;
}
.fl-phone .upper-overlay{
  position: absolute; left: 0; right: 0; top: 0;
  padding: 30px 14px 14px;
  display: flex; justify-content: space-between; align-items: flex-start;
  font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.85); text-transform: uppercase;
  z-index: 4;
}
.fl-cap{
  font-family: var(--font-mono); text-transform: uppercase;
  color: rgba(255,255,255,0.92); font-weight: 300;
}
.fl-cap.lg{ font-size: 10px; letter-spacing: 0.22em; }
.fl-cap.sm{ font-size: 8px; letter-spacing: 0.18em; color: rgba(255,255,255,0.55); }
.fl-tag{
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-mono); font-size: 8px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 3px 6px; border-radius: 2px;
  background: var(--accent); color: var(--accent-ink);
  font-weight: 700;
}
.fl-tag.dot::before{
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent-ink); animation: fl-pulse 1.6s infinite;
}
.fl-tag.ghost{
  background: rgba(0,0,0,0.6); color: #f4f4f2;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}
@keyframes fl-pulse{
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
/* --- Tablet device (landscape) --- */
.fl-tablet{
  position: relative;
  width: 100%;
  max-width: clamp(380px, 38vw, 540px);
  aspect-ratio: 16 / 11;
  background: linear-gradient(180deg, #1a1d22 0%, #0a0c10 100%);
  border-radius: 18px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    inset 0 -1px 0 rgba(0,0,0,0.6),
    0 40px 80px rgba(0,0,0,0.6),
    0 15px 30px rgba(0,0,0,0.45);
}
.fl-tablet .cam{
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: #1a232f; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.fl-tablet .screen{
  position: relative; width: 100%; height: 100%;
  border-radius: 8px; overflow: hidden;
  background: #05070b;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.fl-tablet .grid{
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 6px; padding: 8px;
}
.fl-cell{
  position: relative; overflow: hidden;
  border-radius: 3px;
  background: #0d1520;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.fl-cell.main{
  grid-column: 1 / span 4;
  grid-row: 1 / span 2;
}
.fl-cell.mini{
  grid-row: 3 / span 1;
}
.fl-cell .cap{
  position: absolute; left: 6px; bottom: 6px;
  font-family: var(--font-mono); font-size: 7.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.fl-cell .corner-tag{
  position: absolute; top: 6px; left: 6px;
  font-family: var(--font-mono); font-size: 7px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 2px 4px; border-radius: 2px;
  background: var(--accent); color: var(--accent-ink);
  font-weight: 700;
}
.fl-cell .corner-tag.right{ left: auto; right: 6px; }
.fl-cell .crosshair-mini{
  position: absolute; inset: 12%;
  border: 1px solid rgba(255,255,255,0.18);
  pointer-events: none;
}
.fl-cell .crosshair-mini::before,
.fl-cell .crosshair-mini::after{
  content: ""; position: absolute; background: rgba(255,255,255,0.22);
}
.fl-cell .crosshair-mini::before{ left: 50%; top: -4px; bottom: -4px; width: 1px; }
.fl-cell .crosshair-mini::after{ top: 50%; left: -4px; right: -4px; height: 1px; }
.fl-cell .hud-top{
  position: absolute; top: 6px; left: 6px; right: 6px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 7px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.fl-cell .hud-top .rec-dot{
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--accent);
}
.fl-cell .hud-top .rec-dot::before{
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  animation: fl-pulse 1.6s infinite;
}
/* --- Placeholder photos (SVG-style striped backdrops) --- */
.fl-img-dj{
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,180,80,0.35), transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(0,150,180,0.4), transparent 60%),
    radial-gradient(ellipse at 60% 50%, rgba(0,99,118,0.3), transparent 70%),
    linear-gradient(180deg, #0a1428 0%, #060912 100%);
  position: relative;
}
.fl-img-dj::before{
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 3px);
  pointer-events: none;
}
.fl-img-dj::after{
  content: "DJ SET";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.4em;
  color: rgba(255,255,255,0.18);
}
.fl-img-stage{
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255,200,100,0.25), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(180,60,200,0.25), transparent 55%),
    radial-gradient(ellipse at 85% 75%, rgba(0,180,200,0.25), transparent 55%),
    linear-gradient(180deg, #0c1020 0%, #050709 100%);
  position: relative;
}
.fl-img-stage::before{
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 6px);
}
.fl-img-stage::after{
  content: "MAIN STAGE";
  position: absolute; left: 50%; bottom: 14%;
  transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.4em;
  color: rgba(255,255,255,0.2);
}
.fl-img-drone{
  background:
    radial-gradient(circle at 50% 50%, rgba(120,180,210,0.18), transparent 60%),
    linear-gradient(135deg, #0a1428 0%, #060912 100%);
  position: relative;
}
.fl-img-drone::before{
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 8px);
}
.fl-img-drone::after{
  content: "AERIAL";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 7px; letter-spacing: 0.3em;
  color: rgba(255,255,255,0.22);
}
.fl-img-op{
  background:
    radial-gradient(circle at 30% 40%, rgba(255,180,90,0.2), transparent 55%),
    linear-gradient(180deg, #1a1410 0%, #060403 100%);
  position: relative;
}
.fl-img-op::before{
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 4px);
}
.fl-img-op::after{
  content: "OPERATOR";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 7px; letter-spacing: 0.3em;
  color: rgba(255,255,255,0.22);
}
.fl-img-cam{
  background:
    radial-gradient(circle at 60% 60%, rgba(0,150,180,0.18), transparent 55%),
    linear-gradient(180deg, #0d1218 0%, #050709 100%);
  position: relative;
}
.fl-img-cam::before{
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 5px);
}
.fl-img-cam::after{
  content: "GIMBAL";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 7px; letter-spacing: 0.3em;
  color: rgba(255,255,255,0.22);
}
.price-card.featured{
  border-color: #1a202c;
  background: #1a202c;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 30px 60px rgba(0,0,0,0.35);
}
/* Featured card — high-contrast text on dark slate */
.price-card.featured .tier-label{
  color: rgba(255,255,255,0.78);
}
.price-card.featured .tier-name{ color: #ffffff !important; }
.price-card.featured .tier-tagline{ color: rgba(255,255,255,0.82); }
.price-card.featured .tier-price{ color: #ffffff; }
.price-card.featured .tier-price .per{ color: rgba(255,255,255,0.7); }
.price-card.featured .tier-sub{ color: rgba(255,255,255,0.7); }
.price-card.featured ul li{
  color: #f1f5f9;
  border-bottom-color: rgba(255,255,255,0.12);
}
.price-card.featured ul li::before{ color: #ffffff; }
.price-card.featured .recommend-badge{
  background: #ffffff; color: #1a202c;
}
/* "● ACTIVO" indicator on featured card */
.price-card.featured .tier-label span:last-child{
  color: #ffffff !important;
}
/* Bottom button on featured card: dark blue with white text, high contrast */
#pricing .price-card.featured .pill.accent{
  background: #0d2346;
  color: #ffffff;
  border-color: #0d2346;
}
#pricing .price-card.featured .pill.accent:hover{
  background: #14315f;
  color: #ffffff;
  border-color: #14315f;
}
/* ---- Checkout · DARK OVERRIDE (cyberpunk premium) ---- */
.checkout-card{
  background: #0a0f1d !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 1px 0 rgba(255,255,255,0.04) inset !important;
  color: #ffffff;
}
.checkout-card .checkout-summary{
  background: #111827;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
}
.checkout-card .checkout-summary .summary-tier{
  color: #ffffff;
  text-shadow: 0 0 24px rgba(255,255,255,0.08);
}
.checkout-card .checkout-summary .summary-meta{
  color: rgba(255,255,255,0.55);
}
.checkout-card .checkout-summary .total{
  border-top: 1px solid rgba(255,255,255,0.08);
}
.checkout-card .checkout-summary .total .amt{
  color: #ffffff;
}
/* Inline "SELECCIONADO" tag inside summary */
.checkout-card .checkout-summary .checkout-row > span:last-child{
  color: rgba(255,255,255,0.70) !important;
}
/* Field labels */
.checkout-card .field label{
  color: rgba(255,255,255,0.55);
}
/* Input fields */
.checkout-card .field .input{
  background: #111827 !important;
  border: 1px solid rgba(255,255,255,0.05) !important;
  color: rgba(255,255,255,0.92);
  box-shadow: 0 1px 0 rgba(255,255,255,0.02) inset;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.checkout-card .field .input:focus-within,
.checkout-card .field .input input:focus{
  border-color: rgba(255,255,255,0.18) !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset;
  outline: none;
}
.checkout-card .field .input input,
.checkout-card .field .input input::placeholder{
  color: rgba(255,255,255,0.88);
}
.checkout-card .field .input input::placeholder{
  color: rgba(255,255,255,0.32);
}
.checkout-card .field .input.placeholder{
  color: rgba(255,255,255,0.55) !important;
}
/* Method pills inside the checkout card (Nueva cuenta / Ya tengo cuenta) */
.checkout-card .method-pill{
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  color: rgba(255,255,255,0.85) !important;
}
.checkout-card .method-pill[style*="rgb(0, 99, 118)"]{
  border-color: rgba(255,255,255,0.45) !important;
  color: #ffffff !important;
  background: rgba(255,255,255,0.04) !important;
}
.checkout-card .method-pill .lock{
  color: rgba(255,255,255,0.55) !important;
}
/* Main CTA — dark blue (accent) bg with crisp white text/arrow */
.checkout-card .pill,
.checkout-card .pill *{
  color: #ffffff !important;
}
.checkout-card .pill.accent{
  background: #0d2346 !important;
  border-color: rgba(255,255,255,0.14) !important;
  box-shadow:
    0 12px 32px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.06) inset !important;
}
.checkout-card .pill.accent:hover{
  background: #14315f !important;
  color: #ffffff !important;
}
/* Footer: Stripe • Secure + PCI-DSS L1 */
.checkout-card .payment-methods{
  border-top: 1px solid rgba(255,255,255,0.08);
}
.checkout-card .payment-methods .label{
  color: rgba(255,255,255,0.55);
}
.checkout-card .payment-methods .method-pill{
  color: rgba(255,255,255,0.85) !important;
}
.checkout-card .payment-methods .method-pill .lock{
  color: rgba(255,255,255,0.55) !important;
}
.checkout-card .payment-methods > span:last-child{
  color: rgba(255,255,255,0.55) !important;
}

/* ---- Curator panel ---- */
.curator-page{
  min-height: 100vh;
  padding: 120px 24px 40px;
  background: var(--bg);
  color: var(--fg);
}
.curator-shell{
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.curator-card{
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  background: var(--bg-card);
  box-shadow: 0 12px 28px rgba(13,35,70,0.08);
}
.curator-title{
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.2vw, 46px);
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--fg);
}
.curator-heading{
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--fg);
}
.curator-copy{
  margin: 8px 0 0;
  max-width: 70ch;
  color: var(--fg-dim);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
}
.curator-meta{
  margin: 0;
  color: var(--fg-dim);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.curator-meta.strong{
  color: var(--fg);
}
.curator-grid{
  margin-top: 12px;
  display: grid;
  gap: 10px;
}
.curator-grid-sm{
  display: grid;
  gap: 6px;
}
.curator-row{
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.curator-chip-row{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.curator-chip{
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 8px;
  color: var(--fg-dim);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.curator-time{
  margin-left: 10px;
  font-family: var(--font-mono);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--fg);
  padding: 4px 8px;
}
.curator-list{
  margin-top: 10px;
  display: grid;
  gap: 8px;
}
.curator-report-row{
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.curator-msg{
  margin: 10px 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.curator-msg.success{
  color: var(--accent);
}
.curator-msg.error{
  color: #b42318;
}

/* ============================================================
   Responsive — móvil y tablet portrait (≤ 820px)
   Convierte el scroll-snap fullscreen en scroll vertical normal
   y apila las columnas de cada sección para evitar desborde.
   ============================================================ */
@media (max-width: 820px) {
  /* Guard: ninguna escena decorativa (ej. va-stage de Video IA) debe
     generar scroll horizontal global */
  html, body { overflow-x: hidden; max-width: 100%; }
  body { overflow-y: auto; }
  .scroller {
    height: auto;
    overflow-y: visible;
    scroll-snap-type: none;
  }
  .snap {
    height: auto;
    min-height: 100vh;
    width: 100%;
    overflow: visible;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  /* Apilar columnas en todas las secciones (!important pisa
     los inline-style gridTemplateColumns de algunas secciones, ej. checkout) */
  .section-inner,
  .section-inner.right-text,
  .section-inner.full {
    grid-template-columns: 1fr !important;
    height: auto;
    min-height: 100vh;
    padding: 92px 20px 80px;
    gap: 28px;
    align-content: center;
  }

  /* Títulos grandes: reducir para que palabras largas no desborden */
  .title-xxl {
    font-size: clamp(34px, 11vw, 60px) !important;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  /* Planes: apilar las 3 tarjetas verticalmente */
  .pricing-grid { grid-template-columns: 1fr !important; max-width: 100%; }

  /* Escena Video IA (laptop+teléfono): apilar y centrar */
  .va-stage { flex-direction: column; max-width: 100%; }

  /* Campos lado a lado → uno por fila */
  .field-grid { grid-template-columns: 1fr; }

  /* Nav superior compacto */
  .frame .top { padding: 16px 18px; }
  .brand { font-size: 17px; }
  .top-nav {
    gap: 12px;
    font-size: 9px;
    letter-spacing: 0.1em;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  /* El dot-nav lateral se reemplaza por scroll vertical normal */
  .dots { display: none; }
  .counter { left: 18px; bottom: 16px; }
}
