/* ===== SPLASH INTRO ===== */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease;
}
.splash-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
}
#splash.splash-hidden {
  opacity: 0;
  pointer-events: none;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  overflow: hidden;
  background: #0a0a0a;
  color: #fff;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }

:root {
  --white: #ffffff;
  --black: #0a0a0a;
  --border: rgba(255,255,255,0.08);
  --nav-h: 56px;
  --transition-dur: 1100ms;
  --transition-ease: cubic-bezier(0.76, 0, 0.24, 1);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 36px;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  transition: opacity 0.2s;
}
.nav-left:hover { opacity: 0.55; }
body.menu-open .nav-left { visibility: hidden; pointer-events: none; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 22px;
}
.hamburger span {
  display: block;
  height: 1px;
  background: #fff;
}
.nav-menu-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.nav-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.3vw, 18px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  justify-self: center;
  white-space: nowrap;
}
.nav-right {
  display: flex;
  justify-content: flex-end;
}
.nav-store-link {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-store-link:hover { color: #fff; }

/* ===== FULLPAGE SCROLL CONTAINER ===== */
.fp-container {
  position: fixed;
  inset: 0;
  will-change: transform;
  transition: transform var(--transition-dur) var(--transition-ease);
}

/* ===== SECTIONS ===== */
.fp-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.fp-section--footer {
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  align-items: unset;
}

/* ===== VIDEO BACKGROUND ===== */
.section-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.section-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.48);
}
.section-video-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, transparent 100%);
  z-index: 1;
}

/* ===== HERO CONTENT ===== */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 56px 88px;
  will-change: transform, opacity;
  transition: transform 0.9s var(--transition-ease), opacity 0.9s var(--transition-ease);
}
.hero-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}
.j-svg {
  height: 1cap;
  width: auto;
  display: inline-block;
  vertical-align: baseline;
}
.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.01em;
}

/* ===== SCROLL INDICATOR (RM circle button) ===== */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 56px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(15,15,15,0.75);
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
.scroll-indicator:hover { background: rgba(40,40,40,0.9); }

/* ===== PANEL CONTENT ===== */
.panel-content {
  position: relative;
  z-index: 2;
  padding: 0 56px 88px;
  max-width: 1200px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.25, 0, 0.1, 1) 0.1s,
              transform 0.85s cubic-bezier(0.25, 0, 0.1, 1) 0.1s;
}
.fp-section.is-active .panel-content {
  opacity: 1;
  transform: translateY(0);
}
.panel-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.panel-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4.2vw, 62px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.panel-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  max-width: 440px;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-breadcrumb {
  padding: 14px 56px;
  border-bottom: 1px solid var(--border);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-breadcrumb span { color: rgba(255,255,255,0.14); }

.footer-main {
  padding: 56px 56px 40px;
  display: grid;
  grid-template-columns: 1.1fr 1.8fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-nav a {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 26px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #fff; }

.footer-secondary {
  display: flex;
  flex-direction: column;
}
.footer-secondary a {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-secondary a:hover { color: #fff; }
.footer-sec-divider {
  height: 1px;
  background: var(--border);
  margin: 14px 0 18px;
}
.footer-contact-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 10px;
}

.footer-legal {
  display: flex;
  flex-direction: column;
}
.footer-legal a {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

.footer-bottom {
  padding: 20px 56px;
}
.footer-copy {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.06em;
}

/* ===== SIDE DRAWER ===== */
.drawer-overlay {
  position: fixed; inset: 0;
  z-index: 900;
  background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

.drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 1100;
  width: min(520px, 88vw);
  background: #0a0a0a;
  padding: 0 48px 48px;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }

.drawer-top {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
  color: rgba(255,255,255,0.8);
  transition: opacity 0.2s;
}
.drawer-top:hover { opacity: 0.5; }
.drawer-close-x {
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}

.drawer-primary-nav {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  padding-bottom: 4px;
}
.drawer-primary-nav a {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 38px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.22;
  color: #fff;
  display: block;
  padding: 2px 0;
  transition: color 0.12s;
}

.drawer-divider {
  height: 1px;
  background: var(--border);
  margin: 22px 0;
  flex-shrink: 0;
}
.drawer-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 4px;
}
.drawer-secondary a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  transition: color 0.18s;
}
.drawer-secondary a:hover { color: #fff; }
.drawer-social {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 4px;
}
.drawer-social a {
  color: rgba(255,255,255,0.4);
  transition: color 0.18s;
  display: flex;
  align-items: center;
}
.drawer-social a:hover { color: #fff; }

.drawer-legal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.drawer-legal a {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.28);
  transition: color 0.18s;
}
.drawer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ===== FOOTER SOCIAL ===== */
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 4px;
}
.footer-social a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer-social a:hover { color: #fff; }

/* ===== SECTION DOTS — removed, RM has none ===== */
.section-dots { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 800px) {
  .navbar { padding: 0 24px; }
  .hero-content, .panel-content { padding-left: 28px; padding-right: 28px; padding-bottom: 72px; }
  .scroll-indicator { left: 28px; }
  .footer-main { grid-template-columns: 1fr; padding: 40px 28px; }
  .footer-breadcrumb, .footer-bottom { padding-left: 28px; padding-right: 28px; }
  .drawer { padding: 0 28px 44px; }
}
