/* ── HARD RESET — kill every WP default ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a, a:link, a:visited, a:hover, a:focus, a:active { color: inherit; text-decoration: none; outline: none; }
img { border: 0; box-shadow: none; vertical-align: middle; }
button { font-family: inherit; cursor: pointer; }
svg { overflow: visible; }
#wpadminbar { display: none !important; }
html { margin-top: 0 !important; }

/* ── FONTS ── */
/* Van Der Leck Archi Type is a paid/licensed Foundry typeface (used on the
   live Wix site through their font license) and has no legitimate free CDN
   source, so we do not embed a pirated copy. Oswald is a free, open-source
   geometric condensed sans that shares the blocky, stencil-like character
   of Van Der Leck and reads almost identically at the sizes used here. */
@font-face {
  font-family: 'VanDerLeck';
  src: local('Oswald');
  font-weight: normal; font-style: normal; font-display: swap;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --bar-h: 84px;
  --dur: 1000ms;
  --nav-h: 116px;
}

html, body {
  width: 100%;
  background: var(--black);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}
body { -webkit-user-select: none; user-select: none; }
/* Non-home pages (coming soon) stay locked full-screen */
body.no-scroll, body.no-scroll html { height: 100%; overflow: hidden; }

/* ═══════════════════════════════
   NAVBAR  — matches original exactly
═══════════════════════════════ */
#svcv-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 100;
  display: flex; align-items: center;
  padding: 40px 32px 0;
  box-sizing: border-box;
  /* no background — sits over video */
}

/* hamburger */
#nav-hamburger {
  background: none; border: none; padding: 8px;
  display: flex; flex-direction: column; gap: 5px; cursor: pointer; flex-shrink: 0;
  margin-right: 18px;
}
#nav-hamburger span {
  display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,0.85);
}

/* logo PNG */
#nav-logo { display: flex; align-items: center; flex-shrink: 0; }
#nav-logo img { height: 26px; width: auto; display: block; }

/* SHOP + STREAM pills — centered absolutely in the button row */
#nav-center {
  position: absolute; left: 50%; top: 40px; transform: translateX(-50%);
  display: flex; gap: 12px; align-items: center;
}
.nav-pill {
  display: inline-flex; align-items: center;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.38);
  color: rgba(255,255,255,0.95) !important;
  text-decoration: none !important;
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 9px 26px; border-radius: 40px;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transition: background 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.nav-pill:hover { background: rgba(255,255,255,0.16) !important; border-color: rgba(255,255,255,0.7) !important; }

/* right: EN + INVESTOR — counter sits to the LEFT of this group, same row, own spacing */
#nav-right { margin-left: auto; display: flex; align-items: center; gap: 22px; flex-shrink: 0; }

#nav-lang {
  display: flex; align-items: center; gap: 4px;
  color: rgba(255,255,255,0.8) !important; font-family: 'Inter', sans-serif;
  font-size: 10px; letter-spacing: 0.16em; cursor: pointer;
}
#nav-lang svg { width: 9px; height: 5px; stroke: rgba(255,255,255,0.6); fill: none; flex-shrink: 0; }

/* INVESTOR — white bordered rectangle, no blue */
.nav-investor-btn {
  display: inline-block;
  color: rgba(255,255,255,0.92) !important;
  text-decoration: none !important;
  border: 1px solid rgba(255,255,255,0.65);
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 400;
  letter-spacing: 0.24em; text-transform: uppercase;
  padding: 8px 22px;
  transition: background 0.25s, border-color 0.25s;
  white-space: nowrap; background: transparent;
}
.nav-investor-btn:hover { background: rgba(255,255,255,0.1) !important; border-color: white !important; color: white !important; }

/* ═══════════════════════════════
   SIDE MENU
═══════════════════════════════ */
#side-menu {
  position: fixed; top: 0; left: 0; bottom: 0; width: 345px;
  z-index: 200; background: #fff;
  display: flex; flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.76,0,0.24,1);
  overflow-y: auto; padding: 18px 24px 28px;
}
#side-menu.open { transform: translateX(0); }

#side-overlay {
  position: fixed; inset: 0; z-index: 190;
  background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
#side-overlay.open { opacity: 1; pointer-events: all; }

/* top row */
.sm-top { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; }
#sm-close {
  background: none; border: none; font-size: 17px; color: #000;
  line-height: 1; padding: 2px; cursor: pointer; flex-shrink: 0;
}
.sm-tagline {
  font-family: 'Inter', sans-serif; font-size: 9.5px; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: underline !important;
  text-underline-offset: 3px; text-decoration-color: rgba(0,0,0,0.3) !important;
  color: #000 !important; cursor: pointer; margin-top: 3px;
}
.sm-logo-box {
  width: 60px; height: 60px; background: #000; overflow: hidden;
  flex-shrink: 0; margin-left: auto;
}
.sm-logo-box img { width: 60px !important; height: 60px !important; object-fit: cover !important; display: block !important; }

.sm-inc {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(0,0,0,0.45) !important; text-decoration: underline !important;
  text-underline-offset: 2px; text-decoration-color: rgba(0,0,0,0.2) !important;
  margin-bottom: 16px; cursor: pointer;
}

/* nav items — Van Der Leck font, large */
.sm-links { flex: 1; }
.sm-item { border-top: 1px solid rgba(0,0,0,0.09); }
.sm-item:last-of-type { border-bottom: 1px solid rgba(0,0,0,0.09); }

.sm-item > .sm-row {
  display: flex !important; align-items: center !important; justify-content: space-between !important;
  font-family: 'VanDerLeck', 'Oswald', 'Cormorant Garamond', sans-serif !important;
  font-size: clamp(22px, 2.6vw, 30px) !important;
  letter-spacing: 0.03em !important; color: #000 !important;
  text-decoration: none !important; padding: 11px 0 !important;
  cursor: pointer !important; line-height: 1.1 !important;
  background: none !important; border: none !important; width: 100% !important;
  text-align: left !important;
}
/* chevron — strictly sized */
.sm-item > .sm-row > svg {
  width: 12px !important; height: 7px !important;
  min-width: 12px !important; max-width: 12px !important;
  min-height: 7px !important; max-height: 7px !important;
  flex-shrink: 0 !important; stroke: #000 !important; fill: none !important;
  stroke-width: 1.6 !important; display: inline-block !important;
  transition: transform 0.28s !important;
}
.sm-item.open > .sm-row > svg { transform: rotate(180deg) !important; }

.sm-sub { display: none; padding-bottom: 10px; }
.sm-item.open .sm-sub { display: block; }
.sm-sub a {
  display: block !important;
  font-family: 'Inter', sans-serif !important; font-size: 10px !important;
  letter-spacing: 0.11em !important; text-transform: uppercase !important;
  color: rgba(0,0,0,0.6) !important; text-decoration: none !important;
  padding: 5px 0 !important; transition: color 0.2s !important;
}
.sm-sub a:hover { color: #000 !important; }

/* socials */
.sm-socials { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 20px; margin-bottom: 12px; }
.sm-soc {
  width: 31px; height: 31px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.22);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; transition: border-color 0.2s; flex-shrink: 0;
}
.sm-soc:hover { border-color: #000; }
.sm-soc img { width: 19px !important; height: 19px !important; object-fit: contain !important; display: block !important; filter: none !important; }

.sm-investor {
  display: inline-block !important; margin-top: 14px;
  border: 1.5px solid #000 !important; color: #000 !important;
  text-decoration: none !important; font-family: 'Inter', sans-serif !important;
  font-size: 10px !important; letter-spacing: 0.22em !important;
  padding: 9px 22px !important; background: transparent !important;
  transition: background 0.2s !important;
}
.sm-investor:hover { background: rgba(0,0,0,0.05) !important; }

.sm-nexroc {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 8.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(0,0,0,0.38) !important; margin-top: 10px;
  text-decoration: underline !important; text-underline-offset: 2px;
  text-decoration-color: rgba(0,0,0,0.18) !important; cursor: pointer;
}

/* ═══════════════════════════════
   STAGE + SLIDES — exact from provided source
═══════════════════════════════ */
#stage { position: relative; width: 100%; height: 100vh; height: 100dvh; overflow: hidden; }
#book  { position: absolute; inset: 0; }

.slide {
  position: absolute; inset: 0;
  overflow: hidden; background: #000;
  will-change: transform;
}
.slide.video-slide video {
  position: absolute; top: 50%; left: 50%;
  width: 100%; height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover; border: none; pointer-events: none;
}
.slide.video-slide::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to right, rgba(0,0,0,0.32) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.32) 100%),
    linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 32%);
}

/* ═══════════════════════════════
   MARQUEE — infinite sliding title rows, below the hero stage
═══════════════════════════════ */
.marquee-section {
  position: relative;
  background: #000;
  padding: clamp(24px,5vw,64px) 0;
  overflow: hidden;
}
.marquee-row {
  display: flex; white-space: nowrap;
  will-change: transform;
}
.marquee-row.dir-left  { animation: marqueeLeft 26s linear infinite; }
.marquee-row.dir-right { animation: marqueeRight 26s linear infinite; margin-top: clamp(4px,1vw,12px); }
.marquee-row span {
  font-family: 'VanDerLeck', 'Oswald', 'Cormorant Garamond', sans-serif;
  font-size: clamp(48px, 9vw, 130px);
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.92);
  text-stroke: 1.5px rgba(255,255,255,0.92);
  padding: 0 clamp(24px,3vw,48px);
  text-transform: uppercase;
  flex-shrink: 0;
}
.marquee-row.dir-right span {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.92);
  color: rgba(255,255,255,0.92);
}
@keyframes marqueeLeft  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes marqueeRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ═══════════════════════════════
   HYPNOSIS REVEAL — pinned video with scroll-revealed text
═══════════════════════════════ */
.hypno-section {
  position: relative;
  height: 260vh; /* scroll distance for the reveal + hold + release */
  background: #000;
}
.hypno-sticky {
  position: sticky; top: 0; left: 0;
  width: 100%; height: 100vh;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hypno-sticky::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: rgba(0,0,0,0.35);
  pointer-events: none;
}
.hypno-text {
  position: relative; z-index: 2;
  font-family: 'VanDerLeck', 'Oswald', 'Cormorant Garamond', sans-serif;
  font-size: clamp(32px, 6.5vw, 96px);
  letter-spacing: 0.12em;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 0 24px;
  will-change: opacity, transform, filter;
}
.hypno-text .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px) scale(0.92);
  filter: blur(6px);
  will-change: opacity, transform, filter;
}
.hypno-text .word + .word { margin-left: 0.28em; }

.hypno-sticky video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ═══════════════════════════════
   NEW FOOTER — matches the reference screenshot layout
═══════════════════════════════ */
.site-footer {
  position: relative;
  background: #000;
  padding: clamp(48px,7vw,90px) clamp(24px,6vw,90px) clamp(28px,4vw,40px);
}
.site-footer .sf-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: clamp(24px,4vw,60px);
  max-width: 1400px; margin: 0 auto clamp(48px,7vw,90px);
}
.site-footer .sf-col { display: flex; flex-direction: column; gap: 14px; }
.site-footer .sf-col a {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400;
  font-size: clamp(13px,1vw,16px);
  color: rgba(255,255,255,0.85) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.4) !important;
  transition: color 0.2s;
}
.site-footer .sf-col a:hover { color: #fff !important; }

.sf-bottom {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: clamp(28px,4vw,44px);
}
.sf-bottom-center {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.sf-emblem {
  width: clamp(56px,6vw,88px); height: auto;
  margin-bottom: clamp(10px,1.4vw,16px);
}
.sf-company-name {
  color: rgba(255,255,255,0.85) !important; text-decoration: underline !important;
  text-underline-offset: 3px; font-size: clamp(13px,1vw,16px); font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}
.sf-reg {
  font-family: 'Inter', sans-serif; font-size: 10px; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4); margin-top: 6px;
}
.sf-cities {
  font-size: 9px; letter-spacing: 0.2em; color: rgba(255,255,255,0.3);
  text-transform: uppercase; margin-top: 4px;
}
.sf-btn {
  font-family: 'Inter', sans-serif; font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: #fff !important; text-decoration: none !important;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 12px 28px; display: inline-block; white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
  justify-self: start;
}
.sf-bottom .sf-btn.sf-alert { justify-self: end; }
.sf-btn:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

@media (max-width: 900px) {
  .site-footer .sf-grid { grid-template-columns: repeat(2,1fr); }
  .sf-bottom { grid-template-columns: 1fr; text-align: center; }
  .sf-bottom .sf-btn { justify-self: center; }
}

/* ─── FOOTER SLIDE (legacy — unused, kept for reference only) ─── */
.slide.footer-slide {
  background: #0b0b0b;
  display: flex; flex-direction: column;
  justify-content: space-between; overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* ghost watermark */
.f-ghost-bg {
  position: absolute; inset: 0; z-index: 0;
  display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: repeat(2,1fr);
  align-items: center; justify-items: center;
  pointer-events: none; user-select: none;
}
.f-ghost-bg span {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(60px,10vw,160px); letter-spacing: 0.3em;
  color: rgba(255,255,255,0.045); white-space: nowrap; transform: scaleY(1.1);
}

/* dashed dividers */
.f-dividers {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  display: flex; justify-content: space-around;
}
.f-divider {
  width: 1px; height: 100%;
  background: repeating-linear-gradient(
    to bottom, rgba(255,255,255,0.18) 0px, rgba(255,255,255,0.18) 6px, transparent 6px, transparent 14px
  );
}

/* 4-col link grid */
.f-top {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4,1fr);
  padding: clamp(28px,4vw,52px) clamp(24px,4vw,60px) 0;
  align-items: start;
}
.f-col { display: flex; flex-direction: column; gap: 14px; }
.f-col a {
  font-size: clamp(11px,0.95vw,15px) !important;
  color: rgba(255,255,255,0.72) !important;
  text-decoration: underline !important; text-underline-offset: 4px !important;
  text-decoration-color: rgba(255,255,255,0.3) !important;
  letter-spacing: 0.03em !important; line-height: 1.4 !important;
  transition: color 0.2s, text-decoration-color 0.2s !important;
}
.f-col a:hover { color: #fff !important; text-decoration-color: rgba(255,255,255,0.7) !important; }

/* middle: brand | emblem | buttons */
.f-mid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 220px 1fr 220px;
  align-items: center;
  padding: clamp(16px,2.5vw,32px) clamp(24px,4vw,60px);
  gap: 16px;
}
.f-mid-left  { display: flex; flex-direction: column; align-items: flex-start;  gap: 18px; }
.f-mid-right { display: flex; flex-direction: column; align-items: flex-end;    gap: 18px; }
.f-mid-center { display: flex; flex-direction: column; align-items: center; gap: 10px; }

.f-brand-name {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(13px,1.2vw,18px); letter-spacing: 0.3em;
  color: rgba(255,255,255,0.75);
}
.f-emblem {
  width: clamp(64px,7vw,100px); height: clamp(64px,7vw,100px);
  margin-bottom: 6px;
  display: flex; align-items: center; justify-content: center;
}
.f-emblem img { width: 100% !important; height: 100% !important; object-fit: contain !important; display: block !important; }

.f-company {
  font-size: clamp(11px,0.95vw,14px) !important; color: rgba(255,255,255,0.7) !important;
  text-decoration: underline !important; text-underline-offset: 3px !important;
  text-decoration-color: rgba(255,255,255,0.25) !important; letter-spacing: 0.06em !important;
}
.f-reg    { font-size: clamp(9px,0.72vw,11px); color: rgba(255,255,255,0.38); letter-spacing: 0.12em; }
.f-cities { font-size: clamp(8px,0.65vw,10px); letter-spacing: 0.25em; color: rgba(255,255,255,0.25); text-transform: uppercase; }
.f-addr   { font-size: clamp(8px,0.65vw,10px); color: rgba(255,255,255,0.22); letter-spacing: 0.06em; line-height: 1.8; text-align: center; }
.f-addr a { color: rgba(255,255,255,0.38) !important; text-decoration: underline !important; text-underline-offset: 3px !important; }
.f-addr a:hover { color: rgba(255,255,255,0.75) !important; }
.f-tel    { font-size: clamp(9px,0.72vw,11px); color: rgba(255,255,255,0.4); letter-spacing: 0.1em; text-align: center; line-height: 1.7; }

.f-action-btn {
  font-size: clamp(9px,0.72vw,11px) !important; letter-spacing: 0.24em !important;
  text-transform: uppercase !important; color: rgba(255,255,255,0.85) !important;
  border: 1px solid rgba(255,255,255,0.45) !important; background: transparent !important;
  padding: 10px 32px !important; cursor: pointer !important; font-family: 'Inter', sans-serif !important;
  transition: all 0.25s !important; white-space: nowrap !important;
}
.f-action-btn:hover { border-color: #fff !important; background: rgba(255,255,255,0.07) !important; color: #fff !important; }

/* bottom bar */
.f-bottom {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: clamp(10px,1.5vw,18px) clamp(24px,4vw,60px);
  flex-shrink: 0;
}
.f-socials { display: flex; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.f-social-icon {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color 0.2s, background 0.2s;
  color: rgba(255,255,255,0.55); overflow: hidden;
}
.f-social-icon:hover { border-color: white; background: rgba(255,255,255,0.08); }
.f-social-icon img { width: 17px !important; height: 17px !important; object-fit: contain !important; display: block !important; }

.f-bottom-grid { display: grid; grid-template-columns: auto 1fr auto; align-items: end; gap: 24px; }
.f-legal-block { display: flex; flex-direction: column; gap: 5px; align-items: center; }
.f-legal-row {
  display: flex; flex-wrap: wrap; gap: 3px 0; justify-content: center;
  font-size: clamp(7px,0.58vw,9px); color: rgba(255,255,255,0.22); letter-spacing: 0.06em;
}
.f-legal-row a { color: inherit !important; cursor: pointer; padding: 0 6px; border-right: 1px solid rgba(255,255,255,0.15); transition: color 0.2s; text-decoration: none !important; }
.f-legal-row a:last-child { border-right: none; }
.f-legal-row a:hover { color: rgba(255,255,255,0.6) !important; }
.f-legal-sub {
  display: flex; flex-wrap: wrap; gap: 3px 0; justify-content: center;
  font-size: clamp(6px,0.52vw,8px); color: rgba(255,255,255,0.14); letter-spacing: 0.06em;
}
.f-legal-sub a { color: inherit !important; padding: 0 5px; border-right: 1px solid rgba(255,255,255,0.1); text-decoration: none !important; }
.f-legal-sub a:last-child { border-right: none; }
.f-copy-line { font-size: clamp(6px,0.52vw,8px); color: rgba(255,255,255,0.14); letter-spacing: 0.1em; text-align: center; }

.f-lang-block { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.f-lang-select {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.6); font-family: 'Inter', sans-serif;
  font-size: clamp(9px,0.7vw,11px); letter-spacing: 0.1em;
  padding: 6px 28px 6px 10px; cursor: pointer; outline: none;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpolyline points='0,0 5,6 10,0' stroke='rgba(255,255,255,0.4)' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 8px center;
}
.f-back-link {
  font-size: clamp(8px,0.65vw,10px); letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.2); background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; display: flex; align-items: center; gap: 6px; transition: color 0.25s;
}
.f-back-link:hover { color: rgba(255,255,255,0.65); }
.f-back-link svg { stroke: currentColor; fill: none; width: 9px !important; height: 9px !important; stroke-width: 1.6; }

/* glass overlay */
.f-glass {
  position: absolute; inset: 0; z-index: 20; pointer-events: none;
  background:
    repeating-linear-gradient(0deg,  rgba(255,255,255,0.012) 0px, rgba(255,255,255,0.012) 1px, transparent 1px, transparent 3px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.006) 0px, rgba(255,255,255,0.006) 1px, transparent 1px, transparent 3px);
  backdrop-filter: blur(0.4px) brightness(1.04);
  -webkit-backdrop-filter: blur(0.4px) brightness(1.04);
}
.f-glass::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px 256px; opacity: 0.45; mix-blend-mode: overlay;
}

/* ═══════════════════════════════
   TRANSITIONS — exact from source
═══════════════════════════════ */
.slide.slide-in-up    { animation: slideInUp   var(--dur) cubic-bezier(0.76,0,0.24,1) forwards; z-index: 10; }
.slide.slide-out-up   { animation: slideOutUp  var(--dur) cubic-bezier(0.76,0,0.24,1) forwards; z-index: 5;  }
.slide.slide-in-down  { animation: slideInDown var(--dur) cubic-bezier(0.76,0,0.24,1) forwards; z-index: 10; }
.slide.slide-out-down { animation: slideOutDown var(--dur) cubic-bezier(0.76,0,0.24,1) forwards; z-index: 5;  }

@keyframes slideInUp    { from { transform: translateY(100%); }  to { transform: translateY(0); } }
@keyframes slideOutUp   { from { transform: translateY(0); opacity:1; } to { transform: translateY(-8%); opacity:0.25; } }
@keyframes slideInDown  { from { transform: translateY(-100%); } to { transform: translateY(0); } }
@keyframes slideOutDown { from { transform: translateY(0); opacity:1; } to { transform: translateY(8%); opacity:0.25; } }

/* ═══════════════════════════════
   ARROWS — exact from source
═══════════════════════════════ */
.arrow {
  position: fixed; top: 50%; transform: translateY(-50%);
  z-index: 50; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: 1px solid rgba(255,255,255,0.5); border-radius: 50%;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.25s, background 0.25s, transform 0.25s, opacity 0.4s;
  user-select: none;
}
.arrow:hover { border-color: white; background: rgba(255,255,255,0.14); transform: translateY(-50%) scale(1.08); }
.arrow svg { stroke: white; fill: none; stroke-width: 1.8; width: 16px !important; height: 16px !important; }
#arrow-prev { left: 24px; }
#arrow-next { right: 24px; }
.arrow.hero-hidden,
#progress-bar.hero-hidden,
#counter.hero-hidden,
#pause-btn.hero-hidden,
#scroll-hint.hero-hidden { opacity: 0 !important; pointer-events: none !important; }

/* ═══════════════════════════════
   PROGRESS BAR — exact from source
═══════════════════════════════ */
#progress-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: var(--bar-h); z-index: 50;
  display: flex; align-items: center; padding: 0 90px;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
  transition: opacity 0.5s;
}
.track-item {
  flex: 1; display: flex; flex-direction: column;
  gap: 9px; cursor: pointer; padding: 0 10px; transition: opacity 0.3s;
}
.track-item:hover { opacity: 0.8; }
.track-line { height: 2px; background: rgba(255,255,255,0.25); position: relative; overflow: hidden; border-radius: 2px; }
.track-fill { position: absolute; top: 0; left: 0; height: 100%; background: var(--white); width: 0%; border-radius: 2px; box-shadow: 0 0 8px rgba(255,255,255,0.6); }
.track-label { display: flex; align-items: baseline; gap: 7px; }
.track-num  { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-style: italic; font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.12em; min-width: 18px; }
.track-name { font-family: 'Inter', sans-serif; font-weight: 400; font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.45); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color 0.3s; }
.track-item.active .track-num,
.track-item.active .track-name { color: rgba(255,255,255,1); }
.track-item.active .track-line  { background: rgba(255,255,255,0.35); }
.track-item.active .track-fill  { box-shadow: 0 0 12px rgba(255,255,255,0.8); }

/* ═══════════════════════════════
   COUNTER
═══════════════════════════════ */
#counter {
  position: fixed; top: 26px; right: 36px; z-index: 45;
  font-family: 'Cormorant Garamond', serif; font-weight: 300; font-style: italic;
  font-size: clamp(11px,1vw,14px); letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45); pointer-events: none; transition: opacity 0.5s;
}
#counter span { color: rgba(255,255,255,0.85); }

/* ═══════════════════════════════
   PAUSE
═══════════════════════════════ */
#pause-btn {
  position: fixed; bottom: calc(var(--bar-h) + 18px); right: 24px;
  z-index: 50; width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.45); background: rgba(0,0,0,0.3);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, background 0.3s, transform 0.2s, opacity 0.4s;
}
#pause-btn:hover { border-color: white; background: rgba(255,255,255,0.12); transform: scale(1.08); }
#pause-btn svg { width: 12px !important; height: 12px !important; fill: white; }

/* ═══════════════════════════════
   SCROLL HINT
═══════════════════════════════ */
#scroll-hint {
  position: fixed; left: 50%; transform: translateX(-50%);
  bottom: calc(var(--bar-h) + 22px); z-index: 49;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0.5; animation: hintPulse 2.8s ease-in-out infinite; transition: opacity 0.6s;
  pointer-events: none;
}
#scroll-hint span { font-family: 'Inter', sans-serif; font-weight: 300; font-size: 8px; letter-spacing: 0.22em; text-transform: uppercase; color: white; }
#scroll-hint svg { stroke: white; fill: none; width: 14px !important; height: 14px !important; }
@keyframes hintPulse {
  0%,100% { opacity:0.4; transform:translateX(-50%) translateY(0); }
  50%      { opacity:0.7; transform:translateX(-50%) translateY(5px); }
}

/* ═══════════════════════════════
   COMING SOON PAGE
═══════════════════════════════ */
.cs-wrap {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: #000; overflow: hidden;
}
.cs-wrap video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.cs-wrap::after { content: ''; position: absolute; inset: 0; z-index: 1; background: rgba(0,0,0,0.45); }
.cs-text { position: relative; z-index: 2; text-align: center; }
.cs-text h1 {
  font-family: 'VanDerLeck', 'Oswald', 'Cormorant Garamond', sans-serif;
  font-size: clamp(36px,7vw,90px); letter-spacing: 0.32em;
  color: white; text-transform: uppercase;
  opacity: 0; animation: revealUp 1.4s cubic-bezier(0.22,1,0.36,1) 0.4s forwards;
}
.cs-text p {
  font-family: 'Inter', sans-serif; font-weight: 300;
  font-size: clamp(10px,1vw,13px); letter-spacing: 0.4em;
  color: rgba(255,255,255,0.5); margin-top: 18px; text-transform: uppercase;
  opacity: 0; animation: revealUp 1.4s cubic-bezier(0.22,1,0.36,1) 0.75s forwards;
}
@keyframes revealUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
