/* ============ RESET & BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --white: #fafafa;
  --pure-white: #ffffff;
  --off-white: #f4f4f1;
  --blue: #1e3a8a;
  --blue-deep: #0f172a;
  --blue-soft: #3b5fb8;
  --gold: #d4a574;
  --gold-deep: #b8935a;
  --text: #0f172a;
  --text-soft: #64748b;
  --line: rgba(15, 23, 42, 0.08);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
  position: relative;
  cursor: none;
  -webkit-tap-highlight-color: transparent;
}

/* Fixed-nav offset so in-page / cross-page anchor jumps don't hide
   the target heading underneath the navbar. */
section[id] { scroll-margin-top: 90px; }

a { color: inherit; text-decoration: none; cursor: none; }
button { font-family: inherit; cursor: none; border: none; background: none; }
img, svg { display: block; max-width: 100%; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 4rem; }

.italic { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500; }
.gold { color: var(--gold-deep); }

/* ============ LOADER ============ */
.loader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 10000;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-content {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: auto;
}
.loader-logo {
  display: block;
  margin: 0 auto 1.5rem;
  line-height: 0;
  animation: spin 2s linear infinite;
  transform-origin: center center;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader-bar { width: 200px; height: 2px; background: rgba(0,0,0,0.06); border-radius: 2px; overflow: hidden; margin: 0 auto; }
.loader-progress { height: 100%; background: var(--gold); width: 0%; animation: load 1.4s ease forwards; }
@keyframes load { to { width: 100%; } }

/* ============ CURSOR ============ */
.cursor, .cursor-dot {
  position: fixed; pointer-events: none; z-index: 9999;
  border-radius: 50%; transition: transform 0.15s ease, width 0.3s, height 0.3s, background 0.3s;
}
.cursor {
  width: 30px; height: 30px;
  border: 1.5px solid var(--gold);
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--blue);
  transform: translate(-50%, -50%);
}
.cursor.hover { width: 60px; height: 60px; background: rgba(212, 165, 116, 0.1); }

/* ============ 3D CANVAS ============ */
#bg-canvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

/* ============ NAV ============ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 4rem;
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(250, 250, 250, 0.95);
  border-bottom-color: var(--line);
}
.logo {
  display: flex; align-items: center; gap: 0.65rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: var(--blue-deep);
}
.nav-links { list-style: none; display: flex; gap: 2.5rem; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text); position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--blue-deep); color: var(--white);
  border-radius: 100px;
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.nav-cta .arrow { transition: transform 0.3s; }
.nav-cta:hover { background: var(--gold-deep); }
.nav-cta:hover .arrow { transform: translateX(4px); }

/* ============ MOBILE NAV TOGGLE + DRAWER ============ */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 101;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--blue-deep);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
              opacity 0.3s ease,
              background 0.3s ease;
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
  background: var(--gold-deep);
}
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
  background: var(--gold-deep);
}

.mobile-menu {
  /* Desktop: completely removed from layout. Only the mobile media query
     promotes this to display:flex, so it can never leak into desktop view. */
  display: none;
  position: fixed; inset: 0;
  background: rgba(250,250,250,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 99;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity 0.45s cubic-bezier(0.16,1,0.3,1),
              transform 0.45s cubic-bezier(0.16,1,0.3,1),
              visibility 0.45s ease;
  pointer-events: none;
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 0; margin: 0;
}
.mobile-menu-links a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--blue-deep);
  letter-spacing: -0.01em;
  padding: 0.4rem 1rem;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}
.mobile-menu-links a::after {
  content: '';
  position: absolute;
  bottom: 0.15rem; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.16,1,0.3,1),
              left 0.4s cubic-bezier(0.16,1,0.3,1);
}
.mobile-menu-links a:hover,
.mobile-menu-links a:focus { color: var(--gold-deep); }
.mobile-menu-links a:hover::after,
.mobile-menu-links a:focus::after { width: 60%; left: 20%; }
body.menu-open { overflow: hidden; }

/* ============ HERO ============ */
.hero {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 7rem 2rem 5rem;
  overflow: hidden;
  z-index: 2;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.4) 0%, var(--white) 70%);
  z-index: 0;
}
.hero-content { position: relative; z-index: 2; max-width: 1100px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 2rem;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 1;
  font-weight: 500;
  color: var(--blue-deep);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.18em; }
.hero-title .word { display: inline-block; }

.hero-sub {
  font-size: 1.2rem; color: var(--text-soft);
  max-width: 600px; margin: 0 auto 3rem;
  line-height: 1.6;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--blue-deep); color: var(--white);
  border-radius: 100px;
  font-size: 0.95rem; font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold-deep);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary:hover .arrow { transform: translateX(6px); }
.btn-primary .arrow { transition: transform 0.3s; }
.btn-primary.large { padding: 1.25rem 2.5rem; font-size: 1.05rem; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.5rem;
  color: var(--blue-deep);
  font-size: 0.95rem; font-weight: 500;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.btn-ghost:hover { border-color: var(--gold); background: var(--pure-white); }
.btn-ghost .play-icon {
  width: 24px; height: 24px;
  background: var(--gold); color: var(--white);
  border-radius: 50%; font-size: 0.6rem;
  display: inline-flex; align-items: center; justify-content: center;
  padding-left: 2px;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  z-index: 3;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 50%;
  animation: scrollHintBob 2.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  transition: color 0.3s ease;
}
.scroll-hint svg { display: block; width: 36px; height: 36px; }
.scroll-hint:hover { color: var(--blue-deep); }
@keyframes scrollHintBob {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.4; }
  50%      { transform: translate(-50%, 10px); opacity: 0.95; }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--blue-deep);
  color: var(--white);
  padding: 1.5rem 0;
  overflow: hidden;
  overflow: clip;
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 100vw;
  contain: layout style;
}
.marquee-track {
  display: flex; gap: 3rem;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; letter-spacing: 0.3em;
  font-weight: 500;
}
.marquee-track .diamond { color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ STATEMENT ============ */
.statement {
  position: relative;
  padding: 12rem 0;
  background: var(--white);
  overflow: hidden;
  z-index: 2;
}
.statement-bg { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}
.orb-1 { width: 400px; height: 400px; background: var(--blue-soft); top: 10%; left: -10%; }
.orb-2 { width: 500px; height: 500px; background: var(--gold); bottom: 10%; right: -15%; }

.statement-eyebrow {
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600;
  margin-bottom: 2rem; text-align: center;
}
.statement-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.25;
  font-weight: 400;
  color: var(--blue-deep);
  text-align: center;
  letter-spacing: -0.01em;
  position: relative; z-index: 2;
}
.statement-text .word {
  display: inline-block;
  opacity: 0.15;
  transition: opacity 0.4s ease;
  margin: 0 0.15em;
}
.statement-text .word.visible { opacity: 1; }

/* ============ SECTION HEADS ============ */
.section-head { text-align: center; max-width: 900px; margin: 0 auto 6rem; }
.eyebrow {
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600;
  margin-bottom: 1.5rem;
}
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.15; font-weight: 500;
  color: var(--blue-deep);
  letter-spacing: -0.01em;
}

/* ============ PROCESS / STAGES ============ */
.process { padding: 8rem 0; background: var(--off-white); position: relative; z-index: 2; }

.process-stages { display: flex; flex-direction: column; gap: 8rem; }

.stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  isolation: isolate;
}

/* Alternating layout: odd = image left / text right, even = text left / image right */
.stage:nth-child(even) .stage-visual { grid-column: 2; grid-row: 1; }
.stage:nth-child(even) .stage-content { grid-column: 1; grid-row: 1; }

.stage-number {
  position: absolute;
  top: -3rem;
  right: -1rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(7rem, 14vw, 14rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--blue-deep);
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
/* Even stages have content on left, so number goes left to stay on the text side */
.stage:nth-child(even) .stage-number {
  right: auto;
  left: -1rem;
}

.stage-content { padding: 2rem 0; position: relative; z-index: 2; }

.stage-visual {
  aspect-ratio: 4/3;
  background: var(--pure-white);
  border-radius: 24px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
  perspective: 1200px;
  z-index: 1;
}
.stage-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--blue-deep);
  line-height: 1.2;
}
.stage-content p {
  font-size: 1.1rem; line-height: 1.7;
  color: var(--text-soft);
  max-width: 480px;
}

/* NFC Card */
.card-3d {
  width: 280px; height: 175px;
  transform-style: preserve-3d;
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: rotateY(-15deg) rotateX(8deg) translateY(0); }
  50% { transform: rotateY(-15deg) rotateX(8deg) translateY(-15px); }
}
.nfc-card {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.3), inset 0 1px 0 rgba(255,255,255,0.1);
  display: flex; flex-direction: column; justify-content: space-between;
}
.nfc-chip {
  width: 36px; height: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border-radius: 4px;
  position: relative;
}
.nfc-chip::after {
  content: '';
  position: absolute; inset: 4px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 2px;
}
.nfc-waves {
  position: absolute;
  top: 1.75rem;
  left: 5.25rem;
  width: 28px; height: 28px;
}
.nfc-waves span {
  position: absolute;
  inset: 0;
  border: 1.5px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--gold);
  border-radius: 50%;
  transform: rotate(-45deg);
  animation: wave 1.8s ease-in-out infinite;
}
.nfc-waves span:nth-child(2) { animation-delay: 0.2s; transform: rotate(-45deg) scale(1.5); }
.nfc-waves span:nth-child(3) { animation-delay: 0.4s; transform: rotate(-45deg) scale(2); }
@keyframes wave { 0%, 100% { opacity: 0.2; } 50% { opacity: 1; } }
.nfc-label {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; letter-spacing: 0.15em;
}

/* Phone */
.phone-mockup {
  width: 220px; height: 440px;
  background: var(--blue-deep);
  border-radius: 36px;
  padding: 8px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.3);
  position: relative;
  transform: rotate(-5deg);
  animation: phoneFloat 5s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50% { transform: rotate(-5deg) translateY(-12px); }
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--off-white);
  border-radius: 28px;
  padding: 2rem 1.25rem;
  position: relative;
  overflow: hidden;
}
.phone-ui { display: flex; flex-direction: column; gap: 1rem; height: 100%; }
.phone-header {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; letter-spacing: 0.2em;
  color: var(--blue-deep);
  text-align: center;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}
.phone-plate {
  background: var(--pure-white);
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 0.75rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--blue-deep);
}
.phone-times { display: flex; gap: 0.4rem; }
.time-btn {
  flex: 1; padding: 0.6rem 0.3rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.7rem; font-weight: 600;
  color: var(--text-soft);
  transition: all 0.3s;
}
.time-btn.active { background: var(--gold); color: var(--blue-deep); border-color: var(--gold); }
.phone-cta {
  background: var(--blue-deep); color: var(--white);
  padding: 0.85rem; border-radius: 8px;
  font-size: 0.75rem; font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  margin-top: auto;
}
.tap-pulse {
  position: absolute; top: 25%; right: -15px;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: tapPulse 1.6s infinite;
}
@keyframes tapPulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* Car Scene */
.car-scene {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.car-shape { z-index: 2; animation: carDrive 4s ease-in-out infinite; }
@keyframes carDrive {
  0%, 100% { transform: translateX(-10px); }
  50% { transform: translateX(10px); }
}
.car-trail {
  position: absolute;
  width: 60%; height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  bottom: 38%;
  opacity: 0.6;
  animation: trail 4s ease-in-out infinite;
}
@keyframes trail {
  0%, 100% { transform: scaleX(0.7); opacity: 0.3; }
  50% { transform: scaleX(1); opacity: 0.7; }
}
.ground-line {
  position: absolute;
  width: 80%; height: 1px;
  bottom: 25%;
  background: var(--line);
}

/* ============ FEATURE TABS ============ */
.features { padding: 8rem 0; background: var(--white); position: relative; z-index: 2; }

.feature-tabs {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  background: var(--pure-white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
  align-items: stretch;
}

.tabs-nav {
  background: var(--off-white);
  padding: 2rem 0;
  border-right: 1px solid var(--line);
}
.tab-btn {
  width: 100%;
  padding: 1.25rem 2rem;
  display: flex; align-items: center; gap: 1rem;
  text-align: left;
  color: var(--text-soft);
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}
.tab-btn:hover { color: var(--blue-deep); background: rgba(255,255,255,0.5); }
.tab-btn.active {
  color: var(--blue-deep);
  background: var(--pure-white);
  border-left-color: var(--gold);
}
.tab-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: var(--gold-deep);
  font-weight: 500;
}
.tab-btn.active .tab-num { color: var(--gold); }
.tab-label {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.tabs-content { padding: 3rem 3rem; position: relative; overflow: visible; }
.tab-panel {
  display: none;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.tab-panel.active {
  display: grid;
  animation: panelFade 0.4s ease both;
}
@keyframes panelFade {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
.panel-text { min-width: 0; }
.panel-visual { min-width: 0; max-width: 100%; }

.panel-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 1.9vw, 1.8rem);
  font-weight: 500;
  color: var(--blue-deep);
  margin-bottom: 0.85rem;
  line-height: 1.25;
  word-break: break-word;
}
.panel-text p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.check-list { list-style: none; }
.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.55rem;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.5;
}
.check-list li::before {
  content: '';
  position: absolute; left: 0; top: 0.55rem;
  width: 12px; height: 1px;
  background: var(--gold);
}

.panel-visual {
  aspect-ratio: 1;
  width: 100%;
  max-width: 280px;
  justify-self: center;
  align-self: center;
  background: var(--off-white);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.visual-card { display: flex; align-items: center; justify-content: center; position: relative; }

.visual-security .lock-icon { animation: floatY 3s ease-in-out infinite; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.visual-rings { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.visual-rings .ring {
  position: absolute;
  border: 1px solid var(--gold);
  border-radius: 50%;
  width: 100px; height: 100px;
  opacity: 0;
  animation: ringExpand 2.5s infinite;
}
.visual-rings .ring:nth-child(2) { animation-delay: 0.8s; }
.visual-rings .ring:nth-child(3) { animation-delay: 1.6s; }
@keyframes ringExpand {
  0% { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

.visual-routing { width: 100%; height: 100%; }
.visual-routing .route-svg { width: 100%; height: 100%; }
.route-node {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(212,165,116,0.2);
}
.node-a { top: 50%; left: 15%; }
.node-b { top: 20%; left: 50%; animation: ping 2s infinite; }
.node-c { top: 50%; right: 15%; }
@keyframes ping { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.4); } }

.time-circle { position: relative; }
.time-circle .time-value {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 500;
  color: var(--blue-deep);
}
.time-circle .time-value span {
  font-size: 0.8rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.visual-dashboard {
  width: 80%; padding: 1.5rem;
  background: var(--pure-white);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  display: flex; flex-direction: column; gap: 0.6rem;
}
.dash-header { display: flex; gap: 0.4rem; margin-bottom: 0.5rem; }
.dash-header div { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.dash-row { display: flex; align-items: center; gap: 0.75rem; }
.dash-bar { height: 12px; border-radius: 6px; background: var(--blue); flex-shrink: 0; }
.dash-bar.gold { background: var(--gold); }
.w-30 { width: 30%; } .w-50 { width: 50%; } .w-80 { width: 80%; } .w-90 { width: 90%; }
.dash-tag {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem; color: var(--text-soft);
  margin-left: auto;
}

.visual-reset svg { animation: spinSlow 3s ease-in-out infinite; }
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.visual-analytics { width: 80%; height: 60%; }

/* ============ STATS ============ */
.stats { padding: 8rem 0; background: var(--blue-deep); color: var(--white); position: relative; z-index: 2; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
.stat-block {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  display: inline-block;
}
.stat-suffix {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-left: 0.3rem;
  display: inline-block;
}
.stat-label {
  margin-top: 1.5rem;
  font-size: 0.9rem; line-height: 1.5;
  color: rgba(250,250,250,0.6);
  max-width: 220px;
}

/* ============ TESTIMONIAL ============ */
.testimonial {
  padding: 10rem 0;
  background: var(--off-white);
  text-align: center;
  position: relative; z-index: 2;
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 12rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: 1rem;
}
.quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--blue-deep);
  line-height: 1.4;
  max-width: 1000px;
  margin: 0 auto 3rem;
  letter-spacing: -0.01em;
}
.quote-attr {
  display: inline-flex; align-items: center; gap: 1rem;
  text-align: left;
}
.attr-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--gold));
}
.attr-name { font-weight: 600; color: var(--blue-deep); font-size: 0.95rem; }
.attr-role { font-size: 0.85rem; color: var(--text-soft); }

/* ============ CTA FINAL ============ */
.cta-final {
  padding: 5rem 0;
  background: transparent;
  color: var(--white);
  text-align: center;
  position: relative; overflow: hidden; z-index: 2;
}
.cta-bg {
  position: absolute; inset: 0;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.cta-final .container { position: relative; z-index: 2; }
.cta-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.cta-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 3rem;
}
.cta-final .btn-primary {
  background: var(--gold);
  color: var(--blue-deep);
}
.cta-final .btn-primary::before { background: var(--white); }

/* ============ FOOTER ============ */
footer {
  padding: 5rem 0 2rem;
  background: var(--blue-deep);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand .logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  max-width: 320px;
  line-height: 1.6;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-address {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============ SCROLL REVEAL ============ */
.reveal, .scroll-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view, .scroll-fade.in-view {
  opacity: 1;
  transform: translateY(0);
}

.hero-title .word {
  opacity: 0;
  transform: translateY(40px);
  animation: wordIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .line:nth-child(1) .word:nth-child(1) { animation-delay: 0.3s; }
.hero-title .line:nth-child(1) .word:nth-child(2) { animation-delay: 0.45s; }
.hero-title .line:nth-child(2) .word:nth-child(1) { animation-delay: 0.6s; }
.hero-title .line:nth-child(2) .word:nth-child(2) { animation-delay: 0.75s; }
@keyframes wordIn { to { opacity: 1; transform: translateY(0); } }

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
  body { cursor: auto; }
  a, button { cursor: pointer; }
  .cursor, .cursor-dot { display: none; }
  .container, nav { padding-left: 2rem; padding-right: 2rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex !important; }
  .mobile-menu { display: flex; }
  nav { padding: 1rem 1.5rem; }
  /* Hero owns the full first viewport — same rhythm as PC where you see
     hero down to the marquee on the first screen. */
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 6rem 1.5rem 5rem;
  }
  .stage { grid-template-columns: 1fr; gap: 3rem; }
  .stage:nth-child(even) .stage-visual,
  .stage:nth-child(odd) .stage-visual { grid-column: 1; grid-row: auto; }
  .stage:nth-child(even) .stage-content,
  .stage:nth-child(odd) .stage-content { grid-column: 1; grid-row: auto; }
  .stage-number { font-size: 6rem; top: -1.5rem; right: 0; }
  .stage:nth-child(even) .stage-number { left: 0; }
  .feature-tabs { grid-template-columns: 1fr; }
  .tabs-nav { display: flex; overflow-x: auto; padding: 1rem; border-right: none; border-bottom: 1px solid var(--line); }
  .tab-btn { flex-shrink: 0; width: auto; padding: 0.75rem 1rem; border-left: none; border-bottom: 2px solid transparent; }
  .tab-btn.active { border-left: none; border-bottom-color: var(--gold); }
  .tabs-content { padding: 2rem; }
  .tab-panel { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }

  /* Section vertical-padding — each section gets enough room to feel like its own screen */
  .statement { padding: 9rem 0; }
  .testimonial { padding: 8rem 0; }
  .process, .features, .stats { padding: 8rem 0; }
  .cta-final { padding: 7rem 0; }
  footer { padding: 5rem 0 1.5rem; }

  /* Section heads — clear gap to following content */
  .section-head { margin: 0 auto 6rem; }

  /* Stage content + visual breathing */
  .stage-content { padding: 3rem 0; }
  .stage-content p { font-size: 1rem; }

  /* Scaling of fixed-size visuals — stage-visual gets real presence */
  .stage-visual { aspect-ratio: auto; min-height: 320px; padding: 2rem; }
  .card-3d { width: 240px; height: 150px; }
  .phone-mockup { width: 180px; height: 360px; }
  .tap-pulse { right: -8px; top: 22%; width: 40px; height: 40px; }

  /* Process stage-to-stage spacing */
  .process-stages { gap: 8rem; }

  /* Marquee — more vertical presence so it reads as its own band */
  .marquee { padding: 1.75rem 0; }

  /* Scroll hint sits a bit higher on mobile so it never touches the marquee */
  .scroll-hint { bottom: 2.5rem; }
  .scroll-hint svg { width: 32px; height: 32px; }

  /* Scroll-fade snappier for finger-scroll velocity */
  .reveal, .scroll-fade {
    transform: translateY(18px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Quote */
  .quote-mark { font-size: 7rem; }

  /* Marquee tightening */
  .marquee { padding: 1.2rem 0; }
  .marquee-track { gap: 2rem; font-size: 0.95rem; letter-spacing: 0.2em; }

  /* Hardcoded line-breaks in hero / statement collapse on small viewports */
  .hero-sub br, .statement-text br { display: none; }

  /* Footer bottom — stop the two strings squishing into each other */
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    padding-top: 1.5rem;
  }
  .footer-address { font-size: 0.8rem; }
}

/* ============ SMALL PHONES (iPhone SE, mini, etc.) ============ */
@media (max-width: 480px) {
  .container, nav { padding-left: 1.25rem; padding-right: 1.25rem; }
  nav { padding: 0.85rem 1.25rem; }
  .logo { font-size: 0.85rem; gap: 0.5rem; }
  .logo svg { width: 26px; height: 26px; }

  /* Small phones — keep hero filling viewport; everything else still generous */
  .hero { padding: 5.5rem 1rem 4.5rem; }
  /* Tighter title so long italic words ("effortlessly.") never run to the edge */
  .hero-title { font-size: clamp(2.5rem, 11vw, 3.5rem); }
  .hero-eyebrow { padding: 0.4rem 0.9rem; font-size: 0.65rem; margin-bottom: 1.25rem; }
  .hero-sub { font-size: 1rem; margin-bottom: 2rem; }

  .marquee { padding: 1.5rem 0; }
  .marquee-track { font-size: 0.85rem; gap: 1.5rem; letter-spacing: 0.15em; }

  .statement { padding: 7rem 0; }

  .process, .features, .stats { padding: 6.5rem 0; }
  .process-stages { gap: 6.5rem; }
  .stage { gap: 2.5rem; }
  .stage-content { padding: 2.25rem 0; }
  .stage-visual { min-height: 260px; }

  .scroll-hint { bottom: 1.75rem; }
  .scroll-hint svg { width: 28px; height: 28px; }
  .stage-visual { min-height: 220px; padding: 1rem; }
  .card-3d { width: 200px; height: 125px; }
  .phone-mockup { width: 160px; height: 320px; }
  .phone-screen { padding: 1.25rem 0.85rem; border-radius: 22px; }
  .phone-ui { gap: 0.75rem; }
  .phone-header { font-size: 0.95rem; letter-spacing: 0.15em; }
  .phone-plate { font-size: 0.7rem; padding: 0.5rem; letter-spacing: 0.05em; }
  .phone-cta { font-size: 0.7rem; padding: 0.7rem; }
  .phone-times { gap: 0.3rem; }
  .time-btn { font-size: 0.6rem; padding: 0.45rem 0.15rem; }
  .stage-number { font-size: 4.5rem; top: -1rem; }

  .feature-tabs { border-radius: 16px; }
  .tabs-content { padding: 1.5rem; }
  .tab-btn { padding: 0.6rem 0.85rem; }
  .tab-label { font-size: 0.85rem; }

  .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .section-head { margin: 0 auto 4.5rem; }

  .testimonial { padding: 6.5rem 0; }
  .quote-mark { font-size: 5rem; margin-bottom: 0.5rem; }
  .quote { margin-bottom: 2rem; }

  .cta-final { padding: 6rem 0; }
  .cta-sub { font-size: 1rem; margin-bottom: 2rem; }

  /* Footer — single column on tiny phones, otherwise links jam together */
  .footer-cols { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-brand p { max-width: 100%; }

  /* Hero CTA fills width for a comfortable tap */
  .hero-actions { width: 100%; }
  .hero-actions .btn-primary { width: 100%; justify-content: center; }

  /* Mobile menu text scaled for small screens */
  .mobile-menu-links { gap: 1rem; }
  .mobile-menu-links a { font-size: 1.6rem; }
}
