/* ═══════════════════════════════════════════
   COACHMI · SAINT-BARTHÉLEMY
   Premium Wellness Booking — Cinematic Site
════════════════════════════════════════════ */

:root {
  --black:    #07070D;
  --dark:     #0D0D18;
  --navy:     #0F1A2E;
  --gold:     #C9A96E;
  --gold-lt:  #E8C98A;
  --white:    #F5F3EE;
  --grey:     #8A8A9A;
  --grey-dk:  #2A2A3A;
  --blue-e:   #00D4FF;
  --teal:     #0099AA;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --font-mono:  'Space Mono', monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.gold { color: var(--gold); }
.gold-text { color: var(--gold); }
.mono { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--grey); text-transform: uppercase; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ════════════════════════════════════════
   INTRO OVERLAY
════════════════════════════════════════ */
.intro-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 1000;
  overflow: hidden;
}

/* ── Cinematic letterbox bars ── */
.intro-lb {
  position: absolute;
  left: 0;
  right: 0;
  height: 7vh;
  background: #000;
  z-index: 20;
  pointer-events: none;
}
.intro-lb-top    { top: 0; }
.intro-lb-bottom { bottom: 0; }

/* ── Video wrapper ── */
#introVideoWrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Both videos stacked — instant opacity switch, no fade between them */
.intro-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
}
.intro-vid.iv-active { opacity: 1; }

/* Black crossfade overlay */
.intro-fade {
  position: absolute;
  inset: 0;
  background: #000;
  pointer-events: none;
  z-index: 2;
}

/* ── Reveal scene: logo + slogan + phone ── */
.intro-reveal {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* 7vh matches letterbox height; gap distributes space responsively */
  padding: 7.5vh 24px 7.5vh;
  gap: 1.5vh;
  opacity: 0;
  overflow: hidden;
}

.ir-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(201,169,110,0.08) 0%, rgba(7,7,13,0.97) 65%);
  z-index: 0;
}

.ir-logo {
  position: relative;
  z-index: 1;
  width: clamp(90px, 10vw, 160px);
  height: auto;
  filter: drop-shadow(0 0 24px rgba(201,169,110,0.35));
  flex-shrink: 0;
}

.ir-location {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: clamp(8px, 0.9vw, 10px);
  letter-spacing: 0.3em;
  color: rgba(201,169,110,0.7);
  text-transform: uppercase;
  flex-shrink: 0;
}

.ir-slogan {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.irs-line {
  font-family: var(--font-display);
  /* Cap by both viewport width AND height so it never overflows tall layouts */
  font-size: clamp(18px, min(3.5vw, 5.5vh), 52px);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.irs-line.gold {
  color: var(--gold);
  font-style: italic;
}

/* ── Phone mockup ── */
.ir-phone {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  /* Height drives size; width is a separate clamp for readable content */
  height: clamp(275px, 40vh, 360px);
}

.ir-phone-inner {
  /* Use whichever is larger — vh for short screens, vw for wide ones */
  width: clamp(155px, max(17vh, 13vw), 210px);
  height: 100%;
  background: linear-gradient(175deg, #1E1E30 0%, #0A0A16 100%);
  border-radius: clamp(26px, 3.2vh, 40px);
  border: 1.5px solid rgba(255,255,255,0.14);
  box-shadow:
    0 0 0 3px rgba(255,255,255,0.04),
    0 40px 90px rgba(0,0,0,0.85),
    inset 0 1px 0 rgba(255,255,255,0.1),
    inset 0 -1px 0 rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}

/* Dynamic Island pill */
.ir-phone-notch {
  width: 54px;
  height: 16px;
  background: #000;
  border-radius: 20px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}

.ir-phone-screen {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 14px 10px;
  gap: 12px;
}

/* Home indicator bar at bottom */
.ir-phone-inner::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
}

.ir-app-name {
  font-family: var(--font-display);
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
}

.ir-notif {
  width: 100%;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  overflow: hidden;
}

.irn-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: #07070D;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(201,169,110,0.5);
}

.irn-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.irn-title {
  font-family: var(--font-mono);
  font-size: clamp(9px, 1vw, 11px);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  line-height: 1.3;
}

.irn-detail {
  font-size: clamp(8px, 0.85vw, 10px);
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

#dataCanvas {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  pointer-events: none;
}

.scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}

.scene-label {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0.2em;
  font-size: 10px;
  opacity: 0.6;
}

/* ── Scene 1: Phone ── */
.phone-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hand-shadow {
  position: absolute;
  bottom: -60px;
  width: 160px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.iphone {
  width: 220px;
  height: 440px;
  background: linear-gradient(145deg, #1A1A2E, #0D0D1A);
  border-radius: 38px;
  border: 1.5px solid rgba(201,169,110,0.3);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 40px 80px rgba(0,0,0,0.8),
    0 0 60px rgba(201,169,110,0.08);
}

.iphone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: var(--black);
  border-radius: 12px;
  z-index: 2;
}

.iphone-screen {
  position: absolute;
  inset: 8px;
  border-radius: 30px;
  overflow: hidden;
  background: #0A0F1E;
}

.iphone-home-bar {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
}

/* App placeholder inside phone */
.app-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 40px 12px 12px;
  font-size: 10px;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.app-logo-small {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.app-status {
  font-size: 9px;
  color: #4ADE80;
  font-family: var(--font-mono);
}

.app-map-area {
  flex: 1;
  background: linear-gradient(180deg, #0F1A30 0%, #0A1220 100%);
  border-radius: 12px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.map-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}
.map-dot-1 { top: 40%; left: 30%; animation-delay: 0s; }
.map-dot-2 { top: 60%; left: 65%; animation-delay: 0.5s; }
.map-dot-3 { top: 25%; left: 55%; animation-delay: 1s; }

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

.map-line {
  position: absolute;
  top: 40%;
  left: 30%;
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: rotate(20deg);
  transform-origin: left center;
}

.app-booking-card {
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 12px;
  padding: 10px;
}

.booking-title { font-size: 11px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.booking-sub { font-size: 9px; color: var(--grey); margin-bottom: 4px; }
.booking-time { font-size: 9px; color: var(--gold); font-family: var(--font-mono); margin-bottom: 8px; }
.booking-btn {
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  text-align: center;
}

.scene-caption {
  position: absolute;
  bottom: 80px;
  font-family: var(--font-serif);
  font-size: 28px;
  font-style: italic;
  color: rgba(201,169,110,0.6);
  letter-spacing: 0.05em;
}

/* ── Scene 2: Circuits ── */
.circuit-grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}

.circuit-svg {
  width: 100%;
  height: 100%;
}

.c-path {
  fill: none;
  stroke: rgba(201,169,110,0.55);
  stroke-width: 1.5;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: draw-circuit 3s ease forwards;
}
.c-path-2 { animation-delay: 0.3s; stroke: rgba(201,169,110,0.85); stroke-width: 1; }
.c-path-3 { animation-delay: 0.6s; stroke: rgba(201,169,110,0.3); stroke-width: 1; }

@keyframes draw-circuit {
  to { stroke-dashoffset: 0; }
}

.c-node {
  fill: var(--gold);
  opacity: 0;
  animation: pop-node 0.3s ease forwards;
}
.c-node:nth-child(5) { animation-delay: 1s; }
.c-node:nth-child(6) { animation-delay: 1.2s; }
.c-node:nth-child(7) { animation-delay: 1.4s; }
.c-node:nth-child(8) { animation-delay: 1.6s; }
.c-node:nth-child(9) { animation-delay: 1.8s; }

.c-node-main {
  fill: var(--gold);
  opacity: 0;
  animation: pop-node 0.5s ease 2s forwards;
  filter: drop-shadow(0 0 8px var(--gold));
}

@keyframes pop-node {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}

.data-packets {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}

.packet {
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.3);
  color: rgba(201,169,110,0.9);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 8px 16px;
  border-radius: 4px;
  opacity: 0;
  transform: translateX(-20px);
  animation: slide-packet 0.4s ease forwards;
  letter-spacing: 0.05em;
}

.p1 { animation-delay: 0.5s; }
.p2 { animation-delay: 1s; }
.p3 { animation-delay: 1.5s; }
.p4 { animation-delay: 2s; background: rgba(201,169,110,0.15); border-color: rgba(201,169,110,0.5); color: var(--gold-lt); }

@keyframes slide-packet {
  to { opacity: 1; transform: translateX(0); }
}

.scene2-logo {
  position: absolute;
  bottom: 80px;
  text-align: center;
  z-index: 3;
}

.logo-scene2-img {
  width: clamp(180px, 22vw, 300px);
  height: auto;
  margin: 0 auto 8px;
}
.logo-tagline { font-family: var(--font-mono); font-size: 10px; color: var(--grey); letter-spacing: 0.2em; margin-top: 8px; text-transform: uppercase; }

/* ── Scene 3: Yacht ── */
.yacht-scene {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ocean-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #020B18 0%, #061830 40%, #0A3060 80%, #1A5080 100%);
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: 0;
  left: -50%;
  width: 200%;
  height: 80px;
  border-radius: 50% 50% 0 0;
  opacity: 0.15;
}
.w1 { background: var(--teal); animation: wave-anim 6s ease-in-out infinite; }
.w2 { background: #1A7090; animation: wave-anim 8s ease-in-out infinite reverse; height: 60px; bottom: 10px; }
.w3 { background: #0D5070; animation: wave-anim 10s ease-in-out infinite; height: 40px; bottom: 20px; }

@keyframes wave-anim {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-25%); }
}

.yacht-silhouette {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  opacity: 0.7;
}

.yacht-svg { width: 100%; }

.tender-boat {
  position: absolute;
  bottom: 28%;
  right: 15%;
  width: 120px;
  animation: tender-float 4s ease-in-out infinite;
}

@keyframes tender-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.yacht-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
}

.notification-bubble {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.3);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 14px 20px;
  margin-bottom: 32px;
  animation: float-notif 3s ease-in-out infinite;
}

@keyframes float-notif {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.notif-icon { font-size: 24px; }
.notif-text { text-align: left; font-size: 13px; }
.notif-text strong { display: block; color: var(--white); }
.notif-sub { color: var(--gold); font-size: 11px; font-family: var(--font-mono); }

.scene3-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--white);
}

.scene3-sub {
  font-size: 14px;
  color: var(--gold);
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
}

/* ── Scene 4: Hotel ── */
.hotel-scene {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 60px;
}

.hotel-bg-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(201,169,110,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}

.concierge-device { z-index: 2; }

.tablet-frame {
  width: 320px;
  height: 420px;
  background: linear-gradient(145deg, #1A1A2E, #0D0D1A);
  border-radius: 20px;
  border: 1.5px solid rgba(201,169,110,0.3);
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 40px rgba(201,169,110,0.08);
}

.tablet-screen {
  width: 100%;
  height: 100%;
  background: #08101E;
  border-radius: 10px;
  overflow: hidden;
}

.hotel-dashboard {
  height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dash-logo { font-family: var(--font-mono); font-size: 13px; color: var(--gold); }
.dash-role { font-size: 9px; color: var(--grey); font-family: var(--font-mono); }

.dash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.dash-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}
.dc-num { font-size: 22px; font-weight: 600; color: var(--gold); font-family: var(--font-mono); }
.dc-label { font-size: 8px; color: var(--grey); margin-top: 2px; }
.active-dot { color: #4ADE80; font-size: 16px; }

.dash-booking-row { display: flex; flex-direction: column; gap: 6px; flex: 1; }

.dbr-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  padding: 6px 8px;
  background: rgba(255,255,255,0.02);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.06);
}
.dbr-time { font-family: var(--font-mono); color: var(--grey); min-width: 32px; }
.dbr-service { flex: 1; color: var(--white); }
.dbr-status { font-size: 8px; font-family: var(--font-mono); padding: 2px 6px; border-radius: 4px; }
.dbr-status.booked { background: rgba(74,222,128,0.15); color: #4ADE80; }
.dbr-status.pending { background: rgba(201,169,110,0.15); color: var(--gold); }

.dash-add-btn {
  text-align: center;
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--gold);
  padding: 8px;
  border: 1px dashed rgba(201,169,110,0.3);
  border-radius: 6px;
  cursor: pointer;
}

.hotel-content { z-index: 2; max-width: 400px; }

.hotel-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--white);
}

.hotel-sub {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.7;
}

/* ── Skip & Progress ── */
.skip-btn {
  position: absolute;
  bottom: 32px;
  right: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--grey);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}
.skip-btn:hover { background: rgba(201,169,110,0.1); border-color: var(--gold); color: var(--gold); }

.intro-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.08);
  z-index: 10;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--blue-e));
  width: 0%;
  transition: width 0.1s linear;
}

/* ════════════════════════════════════════
   MAIN SITE
════════════════════════════════════════ */
.main-site {
  opacity: 0;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(7,7,13,0.9);
  backdrop-filter: blur(20px);
  padding: 14px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo { text-decoration: none; display: flex; align-items: center; }
.logo-nav-img {
  height: 28px;
  width: auto;
}
/* fallback text logo kept for compatibility */
.logo-text {
  font-family: var(--font-mono);
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,169,110,0.3); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(15,26,46,0.8) 0%, transparent 100%),
    linear-gradient(135deg, #07070D 0%, #0F1A2E 100%);
  z-index: 1;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.orb1 { width: 600px; height: 600px; background: var(--navy); top: -100px; right: -100px; }
.orb2 { width: 400px; height: 400px; background: rgba(201,169,110,0.3); bottom: -100px; left: 10%; }
.orb3 { width: 300px; height: 300px; background: rgba(0,212,255,0.2); top: 30%; right: 30%; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 0 40px 0 80px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.ht-line { display: block; overflow: hidden; }

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: 6px;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,169,110,0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.06);
}

.btn-xl { font-size: 16px; padding: 18px 40px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-n { font-family: var(--font-mono); font-size: 28px; color: var(--gold); }
.stat-l { font-size: 11px; color: var(--grey); line-height: 1.3; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* Hero phone */
.hero-phone-mockup {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-iphone {
  width: 260px;
  height: 520px;
  background: linear-gradient(145deg, #1E1E30, #0D0D1A);
  border-radius: 44px;
  border: 1.5px solid rgba(201,169,110,0.25);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 50px 100px rgba(0,0,0,0.7),
    0 0 80px rgba(201,169,110,0.06),
    inset 0 1px 0 rgba(255,255,255,0.08);
  animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(-2deg); }
}

.hi-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: var(--black);
  border-radius: 13px;
  z-index: 2;
}

.hi-screen {
  position: absolute;
  inset: 10px;
  border-radius: 34px;
  overflow: hidden;
  background: #06101E;
}

.hi-home {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
}

.hi-app-mock {
  height: 100%;
  padding: 48px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, #06101E 0%, #08152A 100%);
}

.hi-greeting { font-size: 10px; color: var(--grey); }
.hi-name { font-family: var(--font-serif); font-size: 18px; color: var(--white); margin-top: 2px; }

.hi-services-row {
  display: flex;
  gap: 6px;
}

.hi-svc {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  color: var(--grey);
}
.hi-svc span { font-size: 7.5px; }

.hi-featured { flex: 1; }
.hi-feat-label { font-size: 9px; color: var(--grey); font-family: var(--font-mono); margin-bottom: 6px; letter-spacing: 0.1em; }

.hi-feat-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 10px;
  padding: 10px;
}

.hi-feat-info { display: flex; flex-direction: column; gap: 2px; }
.hi-feat-info strong { font-size: 11px; color: var(--white); }
.hi-feat-info span { font-size: 8px; color: var(--grey); }
.hi-feat-tag { font-size: 7.5px; color: var(--gold); }

.hi-feat-book {
  font-size: 9px;
  color: var(--gold);
  font-family: var(--font-mono);
}

/* ════════════════════════════════════════
   SCENE 0 — CONNECTION CINÉMATIQUE
════════════════════════════════════════ */

.conn-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, #060E1C 0%, #03070E 60%, #010408 100%);
}

/* ── World map canvas ── */
.world-map-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform-origin: center center;
}

/* Reticle de ciblage Saint-Barth */
.map-reticle {
  position: absolute;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  z-index: 20;
}
.mrt-line {
  position: absolute;
  background: var(--gold);
  box-shadow: 0 0 6px rgba(201,169,110,0.8);
}
.mrt-top    { top: 0;   left: 50%; transform: translateX(-50%); width: 1px; height: 18px; }
.mrt-bottom { bottom: 0; left: 50%; transform: translateX(-50%); width: 1px; height: 18px; }
.mrt-left   { left: 0;  top: 50%; transform: translateY(-50%); height: 1px; width: 18px; }
.mrt-right  { right: 0; top: 50%; transform: translateY(-50%); height: 1px; width: 18px; }
.mrt-dot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold), 0 0 24px rgba(201,169,110,0.5);
  animation: mrt-blink 1s ease-in-out infinite;
}
@keyframes mrt-blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.mrt-label {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--gold);
  letter-spacing: 0.15em;
  background: rgba(7,7,13,0.7);
  padding: 2px 8px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 2px;
}

/* Grille tech subtile */
.conn-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-scroll 20s linear infinite;
}
@keyframes grid-scroll {
  from { background-position: 0 0; }
  to   { background-position: 60px 60px; }
}

.conn-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(1,4,8,0.9) 100%);
}

/* Globe wireframe */
.conn-globe-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.globe-svg {
  width: 320px;
  height: 320px;
  animation: globe-rotate 30s linear infinite;
  filter: drop-shadow(0 0 20px rgba(0,212,255,0.12));
}
@keyframes globe-rotate {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(360deg); }
}

/* Globe SVG line draw-in */
.g-outline, .g-lat, .g-lon {
  animation: draw-globe-line 1.2s ease forwards;
}
@keyframes draw-globe-line {
  to { stroke-dashoffset: 0; }
}
.g-outline { animation-delay: 0.1s; }
.g-lat:nth-of-type(3) { animation-delay: 0.25s; }
.g-lat:nth-of-type(4) { animation-delay: 0.35s; }
.g-lat:nth-of-type(5) { animation-delay: 0.45s; }
.g-lat:nth-of-type(6) { animation-delay: 0.55s; }
.g-lat:nth-of-type(7) { animation-delay: 0.65s; }
.g-lon:nth-of-type(8) { animation-delay: 0.5s; }
.g-lon:nth-of-type(9) { animation-delay: 0.6s; }
.g-lon:nth-of-type(10){ animation-delay: 0.7s; }

/* Orbit rings */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.15);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.or1 { width: 380px; height: 380px; animation: orbit-spin 12s linear infinite; border-color: rgba(0,212,255,0.12); }
.or2 { width: 460px; height: 460px; animation: orbit-spin 20s linear infinite reverse; border-color: rgba(201,169,110,0.08); }
.or3 { width: 540px; height: 540px; animation: orbit-spin 30s linear infinite; border-color: rgba(0,212,255,0.05); }
@keyframes orbit-spin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

/* SVG lignes de connexion pleine page */
.conn-lines-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.cnode {
  filter: drop-shadow(0 0 6px currentColor);
  animation: node-pulse 2s ease-in-out infinite;
}
@keyframes node-pulse {
  0%, 100% { r: 3; opacity: 1; }
  50% { r: 5; opacity: 0.6; }
}
.cline { transition: stroke-dashoffset 1s ease; }

/* Panneau coordonnées */
.conn-coords-panel {
  position: absolute;
  bottom: 120px;
  left: 48px;
  font-family: var(--font-mono);
  opacity: 0;
  z-index: 10;
}
.ccp-label {
  font-size: 9px;
  color: #4ADE80;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}
.ccp-lat, .ccp-lon {
  font-size: 22px;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.ccp-lon { color: rgba(255,255,255,0.6); font-size: 18px; }
.ccp-place {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-top: 10px;
  border-left: 2px solid var(--gold);
  padding-left: 10px;
}

/* ── Logo image (real transparent PNGs) ── */
.logo-img      { display: block; }
.logo-img-gold { display: block; }

/* Logo CoachMi */
.conn-logo-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
  opacity: 0;
  margin-top: 140px;
}
.clw-img {
  width: clamp(220px, 28vw, 380px);
  height: auto;
  margin: 0 auto;
}
.clw-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--grey);
  letter-spacing: 0.3em;
  margin-top: 10px;
  text-transform: uppercase;
}

/* Barre de progression */
.conn-progress-bar {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  text-align: center;
  opacity: 0;
  z-index: 10;
}
.cpb-track {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 1px;
  overflow: hidden;
  margin-bottom: 10px;
}
.cpb-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue-e), var(--gold));
  border-radius: 1px;
}
.cpb-label {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--grey);
  letter-spacing: 0.2em;
}

/* ════════════════════════════════════════
   CINEMATIC INTRO — NEW SCENE 1 ELEMENTS
════════════════════════════════════════ */

/* Scanlines overlay */
.scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0.03) 0px,
    rgba(0,0,0,0.03) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  z-index: 900;
}

/* Gold light leak */
.light-leak {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  animation: leak-pulse 8s ease-in-out infinite;
}
@keyframes leak-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Villa background */
.villa-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.villa-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  animation: ken-burns 20s ease-in-out infinite alternate;
}
@keyframes ken-burns {
  0%   { transform: scale(1)    translateX(0)    translateY(0); }
  100% { transform: scale(1.15) translateX(-2%)  translateY(-1%); }
}

.villa-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,13,0.55) 0%, rgba(7,7,13,0.25) 40%, rgba(7,7,13,0.7) 100%),
    linear-gradient(90deg, rgba(7,7,13,0.4) 0%, transparent 60%);
}

/* Letterbox bars */
.letterbox {
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--black);
  z-index: 2;
}
.lb-top    { top: 0; }
.lb-bottom { bottom: 0; }

/* HUD overlays */
.hud {
  position: absolute;
  z-index: 10;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(201,169,110,0.9);
  text-transform: uppercase;
  opacity: 0;
}
.hud-tl { top: 100px; left: 32px; }
.hud-tr { top: 100px; right: 32px; text-align: right; }

.hud-line {
  display: block;
  line-height: 1.8;
}
.hud-line.gold { color: var(--gold); }

.hud-tag {
  display: inline-block;
  border: 1px solid rgba(201,169,110,0.5);
  padding: 2px 8px;
  margin-bottom: 6px;
  font-size: 9px;
  letter-spacing: 0.2em;
}

.hud-signal {
  display: flex;
  gap: 3px;
  justify-content: flex-end;
  align-items: flex-end;
  height: 14px;
}
.sig-bar {
  width: 4px;
  background: var(--gold);
  border-radius: 1px;
  opacity: 0.7;
}
.sb1 { height: 4px; }
.sb2 { height: 7px; }
.sb3 { height: 10px; }
.sb4 { height: 13px; }

/* Location pin */
.location-pin {
  position: absolute;
  top: 35%;
  left: 38%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
}

.pin-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.5);
  transform: scale(0);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.r1 { width: 30px;  height: 30px;  animation: pin-ripple 2.5s ease-out 0.2s infinite; }
.r2 { width: 60px;  height: 60px;  animation: pin-ripple 2.5s ease-out 0.7s infinite; }
.r3 { width: 90px;  height: 90px;  animation: pin-ripple 2.5s ease-out 1.2s infinite; }

@keyframes pin-ripple {
  0%   { transform: scale(0); opacity: 0.8; }
  100% { transform: scale(1); opacity: 0; }
}

.pin-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--gold), 0 0 32px rgba(201,169,110,0.4);
  margin-bottom: 10px;
}

.pin-label {
  background: rgba(7,7,13,0.85);
  border: 1px solid rgba(201,169,110,0.4);
  backdrop-filter: blur(10px);
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 0.15em;
  border-radius: 3px;
  white-space: nowrap;
  margin-top: 4px;
}

/* Phone float container (Scene 1) */
.phone-float {
  position: absolute;
  right: 10%;
  bottom: 80px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
}

.phone-glow-aura {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.15) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

/* Light rays from phone */
.phone-rays {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.ray {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 200px;
  background: linear-gradient(180deg, rgba(201,169,110,0.3), transparent);
  transform-origin: top center;
  opacity: 0.4;
}
.ray1 { transform: rotate(-30deg) translateX(-50%); }
.ray2 { transform: rotate(0deg)   translateX(-50%); }
.ray3 { transform: rotate(30deg)  translateX(-50%); }

/* Luxury app UI inside phone */
.app-lux {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 44px 10px 10px;
  gap: 8px;
  background: linear-gradient(160deg, #06101E 0%, #0A1828 100%);
  position: relative;
  overflow: hidden;
}

.app-lux-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.alh-logo {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--white);
  letter-spacing: 0.05em;
}
.alh-live {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 8px;
  color: #4ADE80;
  letter-spacing: 0.1em;
}
.live-dot {
  width: 6px;
  height: 6px;
  background: #4ADE80;
  border-radius: 50%;
  animation: blink-dot 1.4s ease-in-out infinite;
}
@keyframes blink-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* Villa thumbnail in phone */
.app-villa-thumb {
  position: relative;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.avt-img { width: 100%; height: 100%; object-fit: cover; }
.avt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,7,13,0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6px 8px;
}
.avt-tag {
  font-size: 9px;
  color: var(--white);
  font-weight: 500;
}
.avt-sub {
  font-size: 8px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-mono);
}

/* Service row */
.app-services-row {
  display: flex;
  gap: 5px;
}
.asr-item {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 5px 3px;
  text-align: center;
  font-size: 8px;
  color: var(--grey);
  font-family: var(--font-mono);
  white-space: nowrap;
}
.active-svc {
  background: rgba(201,169,110,0.12);
  border-color: rgba(201,169,110,0.4);
  color: var(--gold);
}

/* Trainer card */
.app-trainer-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 8px;
}
.atc-avatar {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--gold), #8B6914);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}
.atc-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.atc-info strong { font-size: 10px; color: var(--white); }
.atc-info span { font-size: 8px; color: var(--grey); }
.atc-avail { color: #4ADE80 !important; }
.atc-price {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
}

/* Book CTA */
.app-book-cta {
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 10px;
  padding: 8px 10px;
  background: rgba(201,169,110,0.06);
}
.abc-time {
  font-size: 8px;
  color: var(--grey);
  font-family: var(--font-mono);
  margin-bottom: 5px;
}
.abc-btn {
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  padding: 6px 10px;
  border-radius: 6px;
  text-align: center;
}

/* Booking confirmation flash */
.app-confirm {
  position: absolute;
  inset: 0;
  background: rgba(7,7,13,0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
}
.ac-check {
  width: 40px;
  height: 40px;
  background: #4ADE80;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--black);
  font-weight: 700;
}
.ac-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
}
.ac-sub {
  font-size: 9px;
  color: var(--grey);
  font-family: var(--font-mono);
}

/* Scene 1 tagline */
.scene1-tagline {
  position: absolute;
  bottom: 100px;
  left: 10%;
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 300;
  color: var(--white);
  opacity: 0;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
}
.scene1-tagline .gold { color: var(--gold); font-style: italic; }

/* ════════════════════════════════════════
   SCENE 2 — HOLOGRAPHIC CENTER
════════════════════════════════════════ */
.tunnel-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, #0A1830 0%, #020810 70%, var(--black) 100%);
}

.holo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.holo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.25);
  animation: holo-spin 8s linear infinite;
}
.hr1 { width: 160px;  height: 160px;  border-color: rgba(0,212,255,0.3);  animation-duration: 6s; }
.hr2 { width: 260px;  height: 260px;  border-color: rgba(201,169,110,0.2); animation-duration: 10s; animation-direction: reverse; }
.hr3 { width: 380px;  height: 380px;  border-color: rgba(0,212,255,0.12); animation-duration: 16s; }

@keyframes holo-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ════════════════════════════════════════
   SCENE 3 — SUN FLARE + LIVE TRACK
════════════════════════════════════════ */
.sun-flare {
  position: absolute;
  top: 15%;
  right: 20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(255,220,100,0.35) 0%, rgba(255,180,50,0.12) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: flare-pulse 4s ease-in-out infinite;
}
@keyframes flare-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.live-track {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lt-bar {
  width: 220px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.lt-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--blue-e));
  border-radius: 2px;
  transition: width 0.3s ease;
}
.lt-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--grey);
  letter-spacing: 0.12em;
}

/* ════════════════════════════════════════
   SCENE 1 — YACHT CARAÏBES (CSS/SVG)
════════════════════════════════════════ */
.yacht-scene-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Ciel golden hour caraïbes */
.ysb-sky {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 62%;
  background: linear-gradient(180deg,
    #060C1E 0%,
    #0D1A38 20%,
    #1A2E5A 38%,
    #7A3A18 56%,
    #D46820 72%,
    #F09830 84%,
    #F8C060 100%
  );
}

/* Soleil et son halo */
.ysb-sun-glow {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 200px;
  background: radial-gradient(ellipse, rgba(255,180,50,0.5) 0%, rgba(255,120,20,0.2) 40%, transparent 70%);
  border-radius: 50%;
}

/* Chemin doré du soleil sur l'eau */
.ysb-sun-path {
  position: absolute;
  bottom: 38%;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 42%;
  background: linear-gradient(180deg, rgba(255,160,40,0.35) 0%, transparent 100%);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

/* Océan */
.ysb-ocean {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(180deg,
    #1A4A6A 0%,
    #0F3050 30%,
    #081828 80%,
    #040E18 100%
  );
}

/* Vagues animées */
.ysb-wave {
  position: absolute;
  left: -20%;
  width: 140%;
  border-radius: 50%;
  opacity: 0.12;
}
.yw1 { bottom: 38%; height: 60px; background: #3A8AAA; animation: yw-anim 7s ease-in-out infinite; }
.yw2 { bottom: 34%; height: 40px; background: #2A6A8A; animation: yw-anim 9s ease-in-out infinite reverse; }
.yw3 { bottom: 30%; height: 30px; background: #1A4A6A; animation: yw-anim 11s ease-in-out infinite; }
@keyframes yw-anim {
  0%,100% { transform: translateX(0) scaleY(1); }
  50%      { transform: translateX(-8%) scaleY(1.3); }
}

/* Yacht SVG hero */
.yacht-hero-svg {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 900px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8)) drop-shadow(0 0 30px rgba(201,169,110,0.1));
  animation: yacht-bob 6s ease-in-out infinite;
}
@keyframes yacht-bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-8px); }
}

/* Notification premium flottante */
.yacht-notif-float {
  position: absolute;
  bottom: 42%;
  left: 10%;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(7,7,13,0.78);
  border: 1px solid rgba(201,169,110,0.35);
  backdrop-filter: blur(24px) saturate(1.5);
  border-radius: 16px;
  padding: 14px 20px;
  max-width: 380px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
  opacity: 0;
}
.ynf-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #C9A96E, #8B6914);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: var(--black);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(201,169,110,0.3);
}
.ynf-body { flex: 1; }
.ynf-top {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
}
.ynf-app {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.ynf-badge {
  font-family: var(--font-mono);
  font-size: 8px;
  color: #4ADE80;
  letter-spacing: 0.12em;
}
.ynf-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.ynf-detail {
  font-size: 11px;
  color: var(--grey);
  font-family: var(--font-mono);
}
.ynf-check {
  width: 32px; height: 32px;
  background: #4ADE80;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--black);
  flex-shrink: 0;
}

/* Overlay + vignette */
.ysb-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,7,13,0.5) 0%, transparent 40%, rgba(7,7,13,0.3) 100%),
    linear-gradient(0deg, rgba(7,7,13,0.6) 0%, transparent 40%);
}

/* Yacht thumb dans le phone (CSS gradient) */
.app-yacht-thumb { background: #0A1828; }
.avt-yacht-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #1A3A6A 0%, #0F2040 50%, #060E18 100%);
  overflow: hidden;
}
.avt-yacht-bg::before {
  content: '⚓';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 24px;
  opacity: 0.3;
}

.hi-cta-bar {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  padding: 10px;
  border-radius: 8px;
  letter-spacing: 0.05em;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

.scroll-hint span { font-family: var(--font-mono); font-size: 9px; color: var(--grey); letter-spacing: 0.15em; text-transform: uppercase; }

/* ── SECTIONS ── */
.section {
  padding: 120px 0;
}

.section-label {
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 64px;
  color: var(--white);
}
.section-title em { color: var(--gold); font-style: italic; }

.section-title-sm {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--white);
}

/* ── CONCEPT ── */
.concept-section { background: var(--black); }

.concept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.concept-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 32px 24px;
  transition: border-color 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

.concept-card.visible {
  animation: fade-up 0.6s var(--ease-out) forwards;
}

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

.concept-card:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-4px);
}

.cc-icon { width: 48px; height: 48px; margin-bottom: 20px; }

.concept-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.concept-card p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.7;
}

.flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 40px;
  flex-wrap: wrap;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fs-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
  flex-shrink: 0;
}

.fs-text { display: flex; flex-direction: column; gap: 2px; }
.fs-text strong { font-size: 14px; color: var(--white); }
.fs-text span { font-size: 11px; color: var(--grey); }

.flow-arrow { font-size: 20px; color: rgba(201,169,110,0.4); flex-shrink: 0; }

/* ── SERVICES ── */
.services-section {
  background: linear-gradient(180deg, var(--black) 0%, #09111F 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.service-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out);
}
.service-item:hover { transform: scale(1.02); }

/* ── EMS Video Card ── */
.si-video-item { background: #07070D; }

.si-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transition: transform 0.5s var(--ease-out);
}
.si-video-item:hover .si-video-bg { transform: scale(1.06); }

/* subtle gradient overlay for text legibility */
.si-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7,7,13,0.75) 0%,
    rgba(7,7,13,0.2) 50%,
    rgba(7,7,13,0.0) 100%
  );
  z-index: 1;
}
.si-video-item .si-content { z-index: 2; }

.si-featured {
  grid-column: span 2;
  height: 260px;
}

.si-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s var(--ease-out);
}
.service-item:hover .si-bg { transform: scale(1.06); }

.si-bg-lagree,
.si-bg-ems,
.si-bg-hiit,
.si-bg-yoga,
.si-bg-pilates,
.si-bg-massage,
.si-bg-strength,
.si-bg-circuit {
  background-size: cover;
  background-position: center;
}
/* Lagree : cadrer sur la machine (bas de l'image portrait) */
.si-bg-lagree { background-position: center 75%; }

.si-content {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.si-tag {
  display: inline-block;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--gold);
  font-size: 9px;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
  width: fit-content;
}

.si-content h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}
.si-featured .si-content h3 { font-size: 28px; }

.si-content p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  line-height: 1.5;
}

.si-link {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  text-decoration: none;
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
}
.service-item:hover .si-link { opacity: 1; transform: translateY(0); }

/* ── HOTELS ── */
.hotels-section {
  background: linear-gradient(180deg, #09111F 0%, #06080F 100%);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.hotels-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hs-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 28px;
}

.hs-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.hs-features li {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding-left: 0;
}

.hotel-mockup {
  background: linear-gradient(145deg, #1A1A2E, #0D0D1A);
  border-radius: 20px;
  border: 1px solid rgba(201,169,110,0.2);
  padding: 2px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 40px rgba(201,169,110,0.06);
}

.hm-screen {
  background: #08101E;
  border-radius: 18px;
  padding: 20px;
}

.hm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.hm-logo { font-family: var(--font-mono); font-size: 14px; color: var(--gold); }
.hm-hotel { font-size: 10px; color: var(--grey); font-family: var(--font-mono); }

.hm-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.hm-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}
.hm-stat-n { display: block; font-size: 32px; font-family: var(--font-mono); color: var(--gold); }
.hm-stat-l { display: block; font-size: 10px; color: var(--grey); margin-top: 4px; }

.hm-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }

.hm-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}

.hm-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ADE80;
  flex-shrink: 0;
  box-shadow: 0 0 6px #4ADE80;
}
.hm-dot.pending { background: var(--gold); box-shadow: 0 0 6px var(--gold); }
.hm-dot.grey { background: var(--grey); box-shadow: none; }

.hm-item-info { flex: 1; color: var(--white); }
.hm-check { color: #4ADE80; font-size: 11px; }
.hm-badge { font-size: 9px; background: rgba(201,169,110,0.15); color: var(--gold); padding: 2px 8px; border-radius: 4px; font-family: var(--font-mono); }
.hm-soon { font-size: 9px; color: var(--grey); font-family: var(--font-mono); }

.hm-add {
  text-align: center;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--gold);
  padding: 10px;
  border: 1px dashed rgba(201,169,110,0.25);
  border-radius: 8px;
}

/* ── GEOFFREY ── */
.geoffrey-section { background: var(--black); }

.geo-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.geo-photo-frame {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.geo-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  border: 1px solid rgba(201,169,110,0.15);
  display: block;
}

.geo-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.gbf-n { font-family: var(--font-mono); font-size: 28px; color: var(--black); font-weight: 700; line-height: 1; }
.gbf-l { font-size: 9px; color: rgba(0,0,0,0.7); text-align: center; line-height: 1.2; }

.geo-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 20px;
}

.geo-disciplines {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.gd-tag {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  transition: border-color 0.2s, color 0.2s;
}
.gd-tag:hover { border-color: var(--gold); color: var(--gold); }

.geo-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg, #06080F 0%, #030408 100%);
}

.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.cb1 { width: 600px; height: 400px; background: rgba(201,169,110,0.08); top: -100px; left: 10%; }
.cb2 { width: 400px; height: 400px; background: rgba(0,212,255,0.05); bottom: -100px; right: 10%; }

.cta-content { position: relative; z-index: 2; }
.cta-label { margin-bottom: 20px; }

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}

.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-note {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--grey);
  letter-spacing: 0.1em;
}

/* ── FOOTER ── */
.footer {
  background: #030408;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 48px;
}

.footer-logo {
  margin-bottom: 12px;
}
.logo-footer-img {
  height: 32px;
  width: auto;
}

.footer-tagline {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.fl-col { display: flex; flex-direction: column; gap: 10px; }
.fl-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--grey);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.fl-col a, .fl-col span {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}
.fl-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
}

.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }
.footer-sep { opacity: 0.3; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .concept-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .si-featured { grid-column: span 2; }
  .hotels-split { grid-template-columns: 1fr; gap: 48px; }
  .geo-split { grid-template-columns: 1fr; gap: 48px; }
  .geo-photo-frame { max-width: 360px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .hero-phone-mockup { display: none; }
  .hero-content { padding: 0 32px; max-width: 100%; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .concept-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .si-featured { grid-column: span 2; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav { padding: 16px 24px; }
  .flow-diagram { gap: 12px; }
  .flow-arrow { display: none; }
  .flow-diagram { flex-direction: column; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; }
  .hotel-scene { flex-direction: column; padding: 40px 24px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .si-featured { grid-column: span 1; }
  .hero-actions { flex-direction: column; }
  .geo-links { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; }
}

/* ════════════════════════════════════════
   UTILITIES
════════════════════════════════════════ */
.visible { opacity: 1 !important; transform: none !important; }

::selection {
  background: rgba(201,169,110,0.25);
  color: var(--white);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(201,169,110,0.3); border-radius: 3px; }
