/* ============================================================
   HERO OVERLAY — Step Into Wonder
   Glassmorphism UI layer over magical background art
   ============================================================ */

:root {
  --peach: #FFB89A;
  --coral: #FF6B35;
  --ink: rgba(15, 20, 40, 0.92);
}

* { box-sizing: border-box; }

.ov-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: #fff;
  isolation: isolate;
  background: #0d1430;
  /* Design unit. At 1920px viewport → --u = 1px. Floors at 0.75px so the
     composition stays legible at typical laptop widths. */
  --u: clamp(0.75px, 100vw / 1920, 1px);

  /* Glass system — applied consistently to every translucent surface.
     Layered: high-blur backdrop, faint white wash, hairline border,
     inner-top highlight (the "edge of the glass"), and a soft drop shadow. */
  --glass-bg: rgba(255,255,255,0.09);
  --glass-bg-strong: rgba(255,255,255,0.12);
  --glass-border: rgba(255,255,255,0.22);
  --glass-border-strong: rgba(255,255,255,0.32);
  --glass-blur: blur(16px) saturate(1.5);
  --glass-blur-heavy: blur(20px) saturate(1.6);
  --glass-inner: inset 0 1px 0 rgba(255,255,255,0.32),
                 inset 0 -1px 0 rgba(255,255,255,0.06);
  --glass-shadow: 0 18px 48px -12px rgba(8,10,30,0.55),
                  0 2px 6px rgba(8,10,30,0.22);
  --glass-shadow-soft: 0 8px 24px -6px rgba(8,10,30,0.4);
}

/* ─────────────  background art  ───────────── */

.ov-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: bg-breathe 18s ease-in-out infinite alternate;
}
@keyframes bg-breathe {
  from { transform: scale(1.02); }
  to   { transform: scale(1.06); }
}

.ov-bg-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 80% at 20% 35%, rgba(10,10,40,0.32) 0%, transparent 55%),
    linear-gradient(180deg, rgba(8,10,30,0.28) 0%, rgba(8,10,30,0) 22%, rgba(8,10,30,0) 60%, rgba(8,10,30,0.45) 100%);
  pointer-events: none;
}
.ov-bg-scrim--mobile {
  background:
    linear-gradient(180deg, rgba(8,10,30,0.45) 0%, rgba(8,10,30,0.08) 18%, rgba(8,10,30,0) 50%, rgba(8,10,30,0.55) 100%);
}

/* ─────────────  header  ───────────── */

.ov-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  height: calc(96 * var(--u));
  padding: 0 calc(72 * var(--u));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: calc(32 * var(--u));
  transition: backdrop-filter 320ms cubic-bezier(.22,.61,.36,1), background-color 320ms;
}
.ov-header[data-scrolled="true"] {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-inner);
  border-bottom: 1px solid var(--glass-border);
}

.ov-nav {
  display: flex;
  gap: calc(40 * var(--u));
  align-items: center;
  min-width: 0;
}
.ov-nav--right { justify-content: flex-end; }

.ov-link {
  font-size: calc(14 * var(--u));
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  position: relative;
  padding: calc(8 * var(--u)) 2px;
  transition: color 200ms cubic-bezier(.22,.61,.36,1);
  white-space: nowrap;
}
.ov-link::after {
  content: "";
  position: absolute;
  left: 2px; right: 2px; bottom: 4px;
  height: 1px;
  background: var(--peach);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms cubic-bezier(.22,.61,.36,1);
}
.ov-link:hover { color: #fff; }
.ov-link:hover::after { transform: scaleX(1); }
.ov-link[data-active="true"] { color: #fff; }
.ov-link[data-active="true"]::after { transform: scaleX(1); background: rgba(255,255,255,0.45); }

.ov-logo {
  width: calc(52 * var(--u));
  height: calc(52 * var(--u));
  border-radius: 999px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-inner), var(--glass-shadow-soft);
  display: grid; place-items: center;
  justify-self: center;
  transition: transform 600ms cubic-bezier(.22,.61,.36,1), background 200ms;
}
.ov-logo:hover { background: var(--glass-bg-strong); }
.ov-logo svg {
  width: calc(22 * var(--u));
  height: calc(22 * var(--u));
}
.ov-logo:hover { transform: rotate(72deg); }

/* mobile header */
.ov-header--mobile {
  height: 56px;
  padding: 0 18px;
}
.ov-hamburger {
  display: flex; flex-direction: column; gap: 4px;
  padding: 8px; margin-left: -8px;
}
.ov-hamburger span {
  display: block;
  width: 18px; height: 1.2px;
  background: rgba(255,255,255,0.92);
}
.ov-hamburger span:nth-child(2) { width: 14px; }
.ov-header--mobile .ov-logo { width: 38px; height: 38px; }
.ov-pill-mobile {
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
}

/* ─────────────  stage  ───────────── */

.ov-stage {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: calc(48 * var(--u));
  padding: 0 calc(96 * var(--u));
}
.ov-stage--mobile {
  grid-template-columns: 1fr;
  padding: 92px 24px 140px;
  align-items: flex-start;
  gap: 28px;
  overflow-y: hidden;
}

.ov-side--left { padding-right: 0; max-width: calc(760 * var(--u)); min-width: 0; }
.ov-side--right { display: flex; justify-content: flex-end; min-width: 0; }

/* ─────────────  title block  ───────────── */

.ov-eyebrow {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: calc(11 * var(--u));
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.ov-eyebrow--title {
  display: inline-flex;
  align-items: center;
  gap: calc(10 * var(--u));
  padding: calc(8 * var(--u)) calc(14 * var(--u)) calc(8 * var(--u)) calc(12 * var(--u));
  border-radius: 999px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-inner), var(--glass-shadow-soft);
  color: rgba(255,255,255,0.88);
  margin-bottom: calc(28 * var(--u));
}
.ov-eyebrow-dot {
  width: calc(6 * var(--u));
  height: calc(6 * var(--u));
  border-radius: 999px;
  background: var(--peach);
  box-shadow: 0 0 8px var(--peach), 0 0 16px var(--peach);
  animation: dot-pulse 2.6s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.ov-h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: calc(120 * var(--u));
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0;
  text-align: left;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 2px 24px rgba(20,20,60,0.25);
}
.ov-h1-line {
  display: block;
}
.ov-h1-line--studio {
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.88);
}
.ov-h1-line--vesper {
  font-weight: 700;
  letter-spacing: -0.035em;
  background: linear-gradient(96deg, #fff 0%, #FFE8DA 30%, var(--peach, #FFB89A) 75%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* peach period accent */
}
.ov-h1-line--vesper::after {
  content: "";
}

.ov-desc {
  margin: calc(28 * var(--u)) 0 0;
  max-width: calc(360 * var(--u));
  font-size: calc(16 * var(--u));
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
}

.ov-cta-row {
  margin-top: calc(36 * var(--u));
  display: flex;
  gap: calc(14 * var(--u));
  align-items: center;
  flex-wrap: wrap;
}

.ov-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: calc(12 * var(--u));
  height: calc(48 * var(--u));
  padding: 0 calc(20 * var(--u)) 0 calc(22 * var(--u));
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.94);
  color: #0d0e22;
  font-family: inherit;
  font-size: calc(13 * var(--u));
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 200ms cubic-bezier(.22,.61,.36,1), background 200ms;
  box-shadow: 0 12px 32px -12px rgba(255,184,154,0.5), 0 2px 0 0 rgba(255,255,255,0.4) inset;
  white-space: nowrap;
}
.ov-btn-primary:hover {
  background: #fff;
  transform: translateY(-1px);
}
.ov-btn-arrow {
  display: inline-grid; place-items: center;
  width: calc(26 * var(--u));
  height: calc(26 * var(--u));
  border-radius: 999px;
  background: var(--peach);
  color: #2a1810;
  font-size: calc(13 * var(--u));
  transition: transform 320ms cubic-bezier(.22,.61,.36,1);
}
.ov-btn-primary:hover .ov-btn-arrow { transform: rotate(45deg); }

.ov-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: calc(10 * var(--u));
  height: calc(48 * var(--u));
  padding: 0 calc(20 * var(--u)) 0 calc(8 * var(--u));
  border-radius: 999px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-inner), var(--glass-shadow-soft);
  color: rgba(255,255,255,0.94);
  font-family: inherit;
  font-size: calc(12.5 * var(--u));
  font-weight: 400;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 200ms, border-color 200ms, transform 200ms;
  white-space: nowrap;
}
.ov-btn-ghost:hover {
  background: var(--glass-bg-strong);
  border-color: var(--glass-border-strong);
  transform: translateY(-1px);
}
.ov-play {
  width: calc(38 * var(--u));
  height: calc(38 * var(--u));
  border-radius: 999px;
  display: grid; place-items: center;
  background: #fff;
  box-shadow: 0 4px 12px rgba(255,107,53,0.35);
  flex-shrink: 0;
}
.ov-play--ghost {
  width: calc(34 * var(--u));
  height: calc(34 * var(--u));
  background: rgba(255,107,53,0.95);
  box-shadow: 0 4px 14px rgba(255,107,53,0.5);
}
.ov-play svg { width: calc(14 * var(--u)); height: calc(14 * var(--u)); }
.ov-play--ghost svg { width: calc(11 * var(--u)); height: calc(11 * var(--u)); }

/* mobile title */
.ov-title--mobile .ov-h1 { font-size: 64px; }
.ov-title--mobile .ov-desc { font-size: 15px; margin-top: 20px; max-width: 320px; }
.ov-title--mobile .ov-cta-row { margin-top: 24px; flex-wrap: wrap; gap: 10px; }
.ov-title--mobile .ov-btn-primary,
.ov-title--mobile .ov-btn-ghost { height: 46px; font-size: 12.5px; }
.ov-title--mobile .ov-eyebrow--title { font-size: 9.5px; margin-bottom: 18px; }

/* ─────────────  carousel  ───────────── */

.ov-carousel {
  width: 100%;
  /* = 3 cards (220) + 2 gaps (16) → the head arrows and 01/04 counter align
     to the cards' right edge (Aurora / Watch demo) instead of overhanging. */
  max-width: calc(692 * var(--u));
  /* shifted left so the right-edge foreground foliage only grazes the Aurora
     card (slight "in-front" overlap) instead of burying its Watch-demo button. */
  margin-right: 11%;
}
.ov-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: calc(18 * var(--u));
  padding: 0 calc(6 * var(--u));
}
.ov-arrows { display: flex; gap: calc(8 * var(--u)); }
.ov-arrow {
  width: calc(38 * var(--u));
  height: calc(38 * var(--u));
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-inner), var(--glass-shadow-soft);
  color: #fff;
  font-size: calc(14 * var(--u));
  cursor: pointer;
  transition: background 200ms, transform 200ms, border-color 200ms;
}
.ov-arrow:hover { background: var(--glass-bg-strong); border-color: var(--glass-border-strong); }
.ov-arrow:active { transform: scale(0.95); }

.ov-cards {
  display: flex;
  gap: calc(16 * var(--u));
  perspective: 1200px;
  min-width: 0;
}

.ov-card {
  flex: 1 1 0;
  min-width: 0;
  max-width: calc(220 * var(--u));
  height: calc(260 * var(--u));
  border-radius: calc(24 * var(--u));
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur-heavy);
  -webkit-backdrop-filter: var(--glass-blur-heavy);
  box-shadow: var(--glass-inner), var(--glass-shadow);
  padding: calc(14 * var(--u));
  display: flex;
  flex-direction: column;
  gap: calc(12 * var(--u));
  transition: transform 420ms cubic-bezier(.22,.61,.36,1), box-shadow 420ms, border-color 220ms, background 220ms;
  cursor: pointer;
  overflow: hidden;
}
.ov-card:hover {
  transform: translateY(-6px) scale(1.018);
  background: var(--glass-bg-strong);
  border-color: var(--glass-border-strong);
  box-shadow:
    var(--glass-inner),
    0 38px 80px -28px rgba(15,16,40,0.7),
    0 0 0 1px rgba(255,184,154,0.18),
    0 0 40px -6px rgba(255,184,154,0.35);
}

/* demo card */
.ov-card-preview {
  position: relative;
  flex: 1;
  border-radius: calc(18 * var(--u));
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: calc(12 * var(--u));
}
.ov-card-preview::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 30% 20%, rgba(255,255,255,0.45) 0%, transparent 60%);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.ov-card-preview-orb {
  position: absolute;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 999px;
  top: -18%; right: -18%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(255,255,255,0) 65%);
  filter: blur(6px);
}
.ov-card-tag {
  position: relative;
  z-index: 2;
  font-size: calc(10.5 * var(--u));
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  padding: calc(6 * var(--u)) calc(10 * var(--u));
  border-radius: 999px;
  background: rgba(15,16,40,0.32);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-inner);
}
.ov-watch {
  display: flex;
  align-items: center;
  gap: calc(10 * var(--u));
  padding: calc(8 * var(--u)) calc(14 * var(--u)) calc(8 * var(--u)) calc(8 * var(--u));
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 0;
  color: #1a1326;
  font-family: inherit;
  font-size: calc(12.5 * var(--u));
  font-weight: 500;
  cursor: pointer;
  transition: background 200ms;
  white-space: nowrap;
  overflow: hidden;
}
.ov-watch:hover { background: #fff; }
.ov-watch > span:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.ov-watch-meta {
  margin-left: auto;
  font-size: calc(10.5 * var(--u));
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  color: rgba(26,19,38,0.55);
  flex-shrink: 0;
}

/* stat card — same glass system as base card, no overrides needed */
.ov-card--stat {
  justify-content: space-between;
  padding: calc(22 * var(--u)) calc(20 * var(--u));
}
.ov-stat-eyebrow {
  font-size: calc(10 * var(--u));
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.ov-stat-value {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: calc(80 * var(--u));
  line-height: 0.9;
  letter-spacing: -0.04em;
  display: flex;
  align-items: flex-start;
  gap: calc(4 * var(--u));
}
.ov-stat-num {
  background: linear-gradient(170deg, #fff 0%, var(--peach) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ov-stat-unit {
  font-size: calc(28 * var(--u));
  color: var(--peach);
  margin-top: calc(14 * var(--u));
}
.ov-stat-label {
  font-size: calc(13 * var(--u));
  color: rgba(255,255,255,0.88);
  font-weight: 400;
  line-height: 1.3;
  max-width: 14ch;
}
.ov-stat-pulse {
  position: absolute;
  bottom: calc(16 * var(--u));
  right: calc(16 * var(--u));
  width: calc(8 * var(--u));
  height: calc(8 * var(--u));
  border-radius: 999px;
  background: var(--peach);
  box-shadow: 0 0 0 0 rgba(255,184,154,0.6);
  animation: ring-pulse 2.4s ease-out infinite;
}
@keyframes ring-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,184,154,0.6); }
  100% { box-shadow: 0 0 0 16px rgba(255,184,154,0); }
}

/* dots */
.ov-dots {
  margin-top: calc(22 * var(--u));
  display: flex;
  align-items: center;
  gap: calc(8 * var(--u));
  padding: 0 calc(6 * var(--u));
}
.ov-dot {
  width: calc(26 * var(--u));
  height: calc(4 * var(--u));
  border-radius: calc(2 * var(--u));
  border: 0;
  background: rgba(255,255,255,0.22);
  cursor: pointer;
  transition: background 200ms, width 320ms cubic-bezier(.22,.61,.36,1);
  padding: 0;
}
.ov-dot[data-active="true"] {
  width: calc(44 * var(--u));
  background: var(--peach);
}
.ov-dot:hover:not([data-active="true"]) { background: rgba(255,255,255,0.4); }
.ov-dots-meta {
  margin-left: auto;
  font-size: calc(10.5 * var(--u));
  letter-spacing: 0.18em;
  font-variant-numeric: tabular-nums;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* mobile carousel */
.ov-carousel--mobile { max-width: 100%; }
.ov-carousel--mobile .ov-cards {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin: 0 -24px;
  padding: 0 24px 12px;
  scrollbar-width: none;
}
.ov-carousel--mobile .ov-cards::-webkit-scrollbar { display: none; }
.ov-carousel--mobile .ov-card {
  flex: 0 0 200px;
  height: 240px;
  scroll-snap-align: start;
}
.ov-carousel--mobile .ov-stat-value { font-size: 72px; }

/* ─────────────  bottom row  ───────────── */

.ov-bottom {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 15;
  height: calc(140 * var(--u));
  padding: 0 calc(72 * var(--u));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  padding-bottom: calc(28 * var(--u));
}
.ov-bottom--mobile {
  height: 110px;
  padding: 0 0 24px;
  grid-template-columns: 1fr;
  justify-items: center;
}

.ov-marquee {
  display: flex;
  gap: calc(22 * var(--u));
  align-items: center;
  font-size: calc(10.5 * var(--u));
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  padding-bottom: calc(36 * var(--u));
  white-space: nowrap;
  overflow: hidden;
  min-width: 0;
}
.ov-marquee span:nth-child(odd) { color: rgba(255,255,255,0.85); }

.ov-corner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: calc(6 * var(--u));
  padding-bottom: calc(36 * var(--u));
}
.ov-time {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: calc(13 * var(--u));
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}

/* ─────────────  scroll indicator  ───────────── */

.ov-scroll {
  width: calc(100 * var(--u));
  height: calc(100 * var(--u));
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
  padding: 0;
  margin: 0 auto;
}
.ov-scroll-ring {
  position: absolute; inset: 0;
  border-radius: 999px;
  animation: spin 22s linear infinite;
}
.ov-scroll[data-motion="false"] .ov-scroll-ring { animation: none; }
@keyframes spin {
  to { transform: rotate(360deg); }
}
.ov-scroll-svg {
  width: 100%; height: 100%;
}
.ov-scroll-core {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
}
.ov-scroll-core::before {
  content: "";
  position: absolute;
  width: calc(58 * var(--u));
  height: calc(58 * var(--u));
  border-radius: 999px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-inner), var(--glass-shadow-soft);
}
.ov-scroll-core > svg {
  position: relative;
  z-index: 1;
  animation: bob 1.8s ease-in-out infinite;
}
.ov-scroll[data-motion="false"] .ov-scroll-core > svg { animation: none; }
@keyframes bob {
  0%, 100% { transform: translateY(-3px); opacity: 0.8; }
  50% { transform: translateY(3px); opacity: 1; }
}
.ov-scroll:hover .ov-scroll-core::before {
  background: rgba(255,184,154,0.12);
  border-color: rgba(255,184,154,0.5);
}

/* ─────────────  iOS chrome for mobile frame  ───────────── */

.ov-status {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 30;
  height: 44px;
  padding: 14px 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.ov-status-right {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.ov-home-bar {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 134px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  z-index: 40;
}

/* ─────────────  noise / grain  ───────────── */

.ov-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  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' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.55;
  mix-blend-mode: overlay;
}
