/* ==========================================================================
   NovaSurge — Cinematic rebuild
   Monochrome cinema + electric cyan light. Space Grotesk for structure,
   Instrument Serif italics for the human moments.
   ========================================================================== */
:root {
  --bg: #050607;
  --bg-2: #0a0c0e;
  --ink: #eaf2f5;
  --ink-dim: #9fb1b9;
  --ink-faint: #5d6b72;
  --cy: #56e1ff;
  --cy-soft: rgba(86, 225, 255, 0.14);
  --cy-glow: rgba(86, 225, 255, 0.4);
  --line: rgba(234, 242, 245, 0.12);
  --line-strong: rgba(234, 242, 245, 0.24);

  --sans: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --gut: clamp(20px, 4.5vw, 72px);
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
h1, h2, h3, h4 { font-weight: 600; line-height: 1.02; letter-spacing: -0.02em; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: 0; }

::selection { background: var(--cy); color: var(--bg); }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--bg-2); color: var(--ink); padding: 12px 20px; z-index: 999; }
.skip-link:focus { left: 12px; top: 12px; }

/* Film grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 400;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Shared micro-label */
.sec-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cy);
  display: flex;
  align-items: center;
  gap: 12px;
}
.sec-label::before { content: ""; width: 28px; height: 1px; background: var(--cy); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-pill, .btn-line {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  will-change: transform;
}

.btn-pill {
  padding: 18px 36px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  transition: color 0.35s var(--ease);
}
.btn-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cy);
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
}
.btn-pill span { position: relative; z-index: 1; }
.btn-pill:hover::before { transform: translateY(0); }
.btn-pill--wide { width: 100%; }
.btn-pill--lg { padding: 22px 48px; font-size: 15px; }
.btn-pill:disabled { opacity: 0.35; cursor: not-allowed; }
.btn-pill:disabled::before { display: none; }

.btn-line {
  padding: 18px 4px;
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.btn-line svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.btn-line:hover { border-color: var(--cy); color: var(--cy); }
.btn-line:hover svg { transform: translateX(5px); }

/* ==========================================================================
   Preloader
   ========================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--gut);
  transition: transform 0.9s var(--ease);
}
.preloader.is-done { transform: translateY(-100%); }
.preloader-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
}
.preloader-word {
  font-size: clamp(28px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.preloader-count {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(40px, 8vw, 96px);
  color: var(--cy);
  line-height: 1;
}
.preloader-bar { height: 1px; background: var(--line); }
.preloader-bar span { display: block; height: 100%; width: 0%; background: var(--cy); }

/* ==========================================================================
   Custom cursor
   ========================================================================== */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 450;
  border-radius: 50%;
  opacity: 0;
}
.cursor-dot { width: 6px; height: 6px; background: var(--cy); margin: -3px 0 0 -3px; }
.cursor-ring {
  width: 44px; height: 44px;
  margin: -22px 0 0 -22px;
  border: 1px solid rgba(86, 225, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.3s var(--ease), height 0.3s var(--ease), margin 0.3s var(--ease), background 0.3s var(--ease);
}
.cursor-ring span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  opacity: 0;
  transition: opacity 0.2s;
}
.cursor-ring.is-label {
  width: 84px; height: 84px;
  margin: -42px 0 0 -42px;
  background: var(--cy);
  border-color: var(--cy);
}
.cursor-ring.is-label span { opacity: 1; }
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ==========================================================================
   Header + menu
   ========================================================================== */
.site-head {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gut);
  mix-blend-mode: difference;
  transition: transform 0.5s var(--ease);
}
.site-head.is-hidden { transform: translateY(-110%); }

.head-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.head-logo svg { width: 26px; height: 26px; }
.head-logo sup { font-size: 9px; font-weight: 400; }

.head-right { display: flex; align-items: center; gap: 26px; }
.head-cta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}
.menu-btn { display: flex; align-items: center; gap: 12px; }
.menu-btn-label { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.menu-btn-lines { display: flex; flex-direction: column; gap: 5px; }
.menu-btn-lines i { display: block; width: 26px; height: 1.5px; background: currentColor; transition: transform 0.4s var(--ease); }
.menu-btn.is-open .menu-btn-lines i:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.menu-btn.is-open .menu-btn-lines i:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 290;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gut);
  visibility: hidden;
  pointer-events: none;
}
.menu-overlay.is-open { visibility: visible; pointer-events: auto; }
.menu-bg {
  position: absolute;
  inset: 0;
  background: #07090b;
  transform: translateY(-100%);
  transition: transform 0.7s var(--ease);
}
.menu-overlay.is-open .menu-bg { transform: translateY(0); }

.menu-links { list-style: none; position: relative; }
.menu-links li { overflow: hidden; }
.menu-links a {
  display: flex;
  align-items: baseline;
  gap: clamp(14px, 3vw, 32px);
  padding: clamp(4px, 1vw, 10px) 0;
  font-size: clamp(34px, 7vw, 84px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  transform: translateY(110%);
  transition: transform 0.7s var(--ease), color 0.3s;
}
.menu-overlay.is-open .menu-links a { transform: translateY(0); }
.menu-overlay.is-open .menu-links li:nth-child(1) a { transition-delay: 0.08s; }
.menu-overlay.is-open .menu-links li:nth-child(2) a { transition-delay: 0.14s; }
.menu-overlay.is-open .menu-links li:nth-child(3) a { transition-delay: 0.2s; }
.menu-overlay.is-open .menu-links li:nth-child(4) a { transition-delay: 0.26s; }
.menu-overlay.is-open .menu-links li:nth-child(5) a { transition-delay: 0.32s; }
.menu-links a:hover { color: var(--cy); }
.menu-links em { font-size: clamp(12px, 1.6vw, 16px); color: var(--cy); }

.menu-foot {
  position: relative;
  display: flex;
  gap: 32px;
  margin-top: clamp(28px, 6vh, 64px);
  opacity: 0;
  transition: opacity 0.6s 0.4s;
}
.menu-overlay.is-open .menu-foot { opacity: 1; }
.menu-foot a { font-size: 14px; color: var(--ink-dim); border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.menu-foot a:hover { color: var(--cy); border-color: var(--cy); }

/* ==========================================================================
   01 · Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,6,7,0.55) 0%, rgba(5,6,7,0.25) 40%, rgba(5,6,7,0.92) 100%);
}

.hero-inner {
  position: relative;
  padding: 0 var(--gut);
  padding-top: 16vh;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: clamp(20px, 4vh, 48px);
}
.hero-eyebrow sup { font-size: 8px; }
.hero-eyebrow span { color: var(--ink-faint); }

.hero-title {
  font-size: clamp(52px, 11.5vw, 168px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.ht-line { display: block; overflow: hidden; }
.ht-serif { text-transform: none; }
.ht-serif em {
  font-size: 0.92em;
  color: var(--cy);
  letter-spacing: -0.01em;
}

.hero-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-top: clamp(28px, 5vh, 56px);
  padding-bottom: clamp(72px, 10vh, 110px);
}
.hero-sub { max-width: 44ch; font-size: 15.5px; color: var(--ink-dim); }
.hero-ctas { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }

.hero-bottom {
  position: absolute;
  left: var(--gut); right: var(--gut); bottom: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero-scroll-cue { display: inline-flex; align-items: center; gap: 10px; }
.hero-scroll-cue i {
  display: block;
  width: 1px; height: 34px;
  background: linear-gradient(180deg, var(--cy), transparent);
  animation: cueDrop 1.8s var(--ease) infinite;
  transform-origin: top;
}
@keyframes cueDrop {
  0% { transform: scaleY(0); opacity: 0; }
  40% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(12px); opacity: 0; }
}

/* Split-char spans (injected by JS) */
.char { display: inline-block; will-change: transform; }
.word { display: inline-block; }

/* ==========================================================================
   02 · Story (pinned narrative)
   ========================================================================== */
.story { position: relative; background: var(--bg); }
.story-pin {
  position: relative;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.story-clock {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(120px, 30vw, 480px);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(234, 242, 245, 0.08);
  user-select: none;
}
.story-clock span { font-size: 0.22em; -webkit-text-stroke: 1px rgba(234, 242, 245, 0.08); margin-left: 0.1em; }

.story-beat {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--gut);
  text-align: center;
  opacity: 0;
  visibility: hidden;
}
.story-beat p {
  font-size: clamp(26px, 4.6vw, 60px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 22ch;
}
.story-beat em { color: var(--cy); }
.story-accent { color: var(--cy); }
.story-ring { text-transform: uppercase; letter-spacing: 0.02em; }
.story-beat--punch p { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(34px, 6vw, 84px); color: var(--cy); }

.story-progress {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: min(320px, 50vw);
  height: 1px;
  background: var(--line);
}
.story-progress span { display: block; height: 100%; width: 0%; background: var(--cy); }

/* ==========================================================================
   03 · Surge
   ========================================================================== */
.surge {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.surge-media { position: absolute; inset: 0; }
.surge-video { width: 100%; height: 100%; object-fit: cover; }
.surge-scrim { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(5,6,7,0.2) 0%, rgba(5,6,7,0.88) 78%); }

.surge-inner {
  position: relative;
  width: 100%;
  padding: 18vh var(--gut);
  text-align: center;
}
.surge-kicker { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 22px; }
.surge-title { font-size: clamp(48px, 10vw, 150px); line-height: 0.95; letter-spacing: -0.03em; }
.surge-title > span { display: block; overflow: hidden; }
.surge-serif em { color: var(--cy); }
.surge-sub { max-width: 52ch; margin: 28px auto 0; color: var(--ink-dim); font-size: 16px; }

/* ==========================================================================
   04 · Services (horizontal)
   ========================================================================== */
.services { position: relative; background: var(--bg); }
.services-pin {
  position: relative;
  height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.services-head {
  position: absolute;
  top: clamp(24px, 5vh, 56px);
  left: var(--gut); right: var(--gut);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}
.services-hint { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); }

.services-track {
  display: flex;
  gap: clamp(24px, 4vw, 64px);
  padding: 0 var(--gut);
  width: max-content;
  align-items: center;
  will-change: transform;
}

.panel {
  position: relative;
  width: min(78vw, 900px);
  flex: none;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: clamp(24px, 3vw, 48px);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255,255,255,0.025), transparent 55%);
  min-height: min(62vh, 560px);
}
.panel > * { min-width: 0; }
.panel-index {
  position: absolute;
  top: -0.18em;
  right: 18px;
  font-size: clamp(90px, 12vw, 180px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(234, 242, 245, 0.14);
  pointer-events: none;
}
.panel-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-2);
}
.panel-media img, .panel-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 0.9s var(--ease);
}
.panel:hover .panel-media img, .panel:hover .panel-media video { transform: scale(1.0); }

.panel-body h3 {
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.panel-body h3 em { color: var(--cy); text-transform: none; font-size: 0.95em; }
.panel-body p { margin-top: 18px; color: var(--ink-dim); font-size: 15px; max-width: 40ch; }
.panel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cy);
}
.panel-link svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.panel-link:hover svg { transform: translateX(5px); }

/* typographic panel media */
.panel-media--type {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  aspect-ratio: auto;
  min-height: min(52vh, 420px);
}
.chat-mock { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.chat-bubble {
  max-width: 82%;
  padding: 12px 16px;
  font-size: 13.5px;
  line-height: 1.45;
  border-radius: 16px;
}
.chat-bubble--in { align-self: flex-start; background: rgba(255,255,255,0.06); border-bottom-left-radius: 4px; }
.chat-bubble--out { align-self: flex-end; background: var(--cy-soft); color: var(--cy); border: 1px solid rgba(86,225,255,0.3); border-bottom-right-radius: 4px; }

/* Phone-call receptionist mockup (panel 01) */
.phone-mock {
  width: min(100%, 340px);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: linear-gradient(175deg, rgba(255,255,255,0.045), rgba(255,255,255,0.01));
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 12.5px;
}
.phone-mock-head { display: flex; justify-content: space-between; align-items: center; }
.phone-mock-live { display: inline-flex; align-items: center; gap: 7px; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cy); }
.phone-mock-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--cy); animation: dotPulse 2s infinite; }
.phone-mock-time { font-size: 11px; color: var(--ink-faint); font-variant-numeric: tabular-nums; }
.phone-mock-caller { display: flex; align-items: center; gap: 12px; }
.phone-mock-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--cy-soft); color: var(--cy); border: 1px solid rgba(86,225,255,0.3);
  font-size: 16px;
}
.phone-mock-caller strong { display: block; font-size: 13px; color: var(--ink); }
.phone-mock-caller span { font-size: 11px; color: var(--ink-faint); }
.phone-mock-wave { display: flex; align-items: flex-end; gap: 4px; height: 22px; }
.phone-mock-wave span {
  flex: 1; border-radius: 2px; background: var(--cy); height: 20%;
  animation: vBar 1.05s ease-in-out infinite;
}
.phone-mock-wave span:nth-child(odd) { animation-delay: 0.14s; }
.phone-mock-wave span:nth-child(3n) { animation-delay: 0.28s; }
.phone-mock-transcript { display: flex; flex-direction: column; gap: 8px; }
.pm-line { padding: 9px 12px; border-radius: 12px; line-height: 1.45; max-width: 88%; }
.pm-line--ai { align-self: flex-start; background: var(--cy-soft); color: var(--cy); border: 1px solid rgba(86,225,255,0.25); border-bottom-left-radius: 4px; }
.pm-line--caller { align-self: flex-end; background: rgba(255,255,255,0.06); color: var(--ink-dim); border-bottom-right-radius: 4px; }
.phone-mock-status {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 11px; letter-spacing: 0.06em; color: var(--cy);
}

/* Browser-window website mockup (panel 03) */
.site-mock {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg);
}
.site-mock-chrome {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.smc-dots { display: flex; gap: 5px; }
.smc-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--line-strong); }
.smc-url {
  flex: 1; text-align: center;
  font-size: 11px; color: var(--ink-faint);
  background: rgba(255,255,255,0.04);
  border-radius: 6px; padding: 4px 10px;
}
.site-mock-page { padding: 16px; display: flex; flex-direction: column; gap: 14px; }
.smp-nav { display: flex; justify-content: space-between; align-items: center; }
.smp-logo { font-size: 12px; font-weight: 700; letter-spacing: 0.02em; }
.smp-btn { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--bg); background: var(--cy); border-radius: 999px; padding: 5px 12px; }
.smp-hero { padding: 10px 0 4px; }
.smp-hero strong { display: block; font-size: clamp(17px, 1.8vw, 22px); line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); }
.smp-cta { display: inline-block; margin-top: 10px; font-size: 11px; font-weight: 600; color: var(--cy); border-bottom: 1px solid rgba(86,225,255,0.4); padding-bottom: 2px; }
.smp-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.smp-cards span { display: block; height: 44px; border: 1px solid var(--line); border-radius: 8px; background: linear-gradient(160deg, rgba(255,255,255,0.05), transparent); }

.stars-mock { display: flex; flex-direction: column; gap: 20px; }
.star-row { display: flex; flex-direction: column; gap: 4px; font-size: 20px; letter-spacing: 6px; color: var(--cy); }
.star-row i { font-family: var(--serif); font-style: italic; font-size: 15px; letter-spacing: 0; color: var(--ink-dim); }

/* ==========================================================================
   05 · Voice
   ========================================================================== */
.voice {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.voice-media { position: absolute; inset: 0; }
.voice-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.voice-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,6,7,0.95) 20%, rgba(5,6,7,0.55) 70%, rgba(5,6,7,0.35)); }

.voice-inner {
  position: relative;
  padding: 16vh var(--gut);
  max-width: 720px;
}
.voice-title {
  font-size: clamp(34px, 5.4vw, 72px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin-top: 22px;
}
.voice-title em { color: var(--cy); }

.call-card {
  margin-top: 44px;
  max-width: 460px;
  padding: 28px;
  border: 1px solid var(--line-strong);
  background: rgba(7, 9, 11, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.call-card-top { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.call-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--cy);
  box-shadow: 0 0 0 0 var(--cy-glow);
  animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 var(--cy-glow); }
  70% { box-shadow: 0 0 0 12px rgba(86,225,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(86,225,255,0); }
}
.call-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); }
.call-number { margin-left: auto; font-family: var(--serif); font-size: 22px; color: var(--ink); }

.voice-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 34px;
  margin: 24px 0;
  opacity: 0.3;
  transition: opacity 0.3s;
}
.voice-bars.is-active { opacity: 1; }
.voice-bars span {
  flex: 1;
  border-radius: 2px;
  background: var(--cy);
  height: 18%;
  animation: vBar 1.15s ease-in-out infinite;
  animation-play-state: paused;
}
.voice-bars.is-active span { animation-play-state: running; }
.voice-bars span:nth-child(odd) { animation-delay: 0.12s; }
.voice-bars span:nth-child(3n) { animation-delay: 0.24s; }
.voice-bars span:nth-child(4n) { animation-delay: 0.36s; }
@keyframes vBar { 0%, 100% { height: 14%; } 50% { height: 100%; } }

.call-status {
  display: none;
  margin-top: 14px;
  font-size: 13px;
  color: var(--cy);
}
.call-status.is-active { display: block; }

/* ==========================================================================
   06 · Process
   ========================================================================== */
.process { position: relative; padding: clamp(90px, 15vh, 180px) var(--gut); }
.process-head { max-width: 760px; margin-bottom: clamp(56px, 10vh, 120px); }
.process-head h2 { font-size: clamp(34px, 5.4vw, 72px); letter-spacing: -0.025em; margin-top: 22px; }
.process-head em { color: var(--cy); }

.process-rail {
  position: relative;
  padding-left: clamp(36px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 12vh, 140px);
}
.process-line {
  position: absolute;
  top: 0; bottom: 0;
  left: clamp(8px, 1.5vw, 24px);
  width: 2px;
  height: 100%;
}
.process-line path {
  stroke: var(--cy);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.act { max-width: 620px; }
.act-no { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--cy); }
.act h3 { font-size: clamp(26px, 3.4vw, 44px); margin-top: 10px; letter-spacing: -0.02em; }
.act p { margin-top: 14px; color: var(--ink-dim); font-size: 15.5px; }

/* ==========================================================================
   07 · Proof
   ========================================================================== */
.proof { padding: clamp(90px, 15vh, 180px) var(--gut); border-top: 1px solid var(--line); }
.quote { margin-top: clamp(56px, 9vh, 110px); max-width: 900px; }
.quote--right { margin-left: auto; text-align: right; }
.quote blockquote {
  font-size: clamp(26px, 4.2vw, 54px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.14;
}
.quote em { color: var(--cy); }
.quote figcaption {
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.proof-note { margin-top: clamp(48px, 8vh, 90px); font-size: 12px; color: var(--ink-faint); }

/* ==========================================================================
   08 · Booking
   ========================================================================== */
.booking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding: clamp(90px, 15vh, 180px) var(--gut);
  border-top: 1px solid var(--line);
}
.booking-copy h2 { font-size: clamp(32px, 4.8vw, 64px); letter-spacing: -0.025em; margin-top: 22px; }
.booking-copy em { color: var(--cy); }
.booking-sub { margin-top: 18px; color: var(--ink-dim); font-size: 15.5px; max-width: 46ch; }
.booking-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.booking-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-dim);
}
.booking-list li::before { content: "→"; color: var(--cy); }

.booking-panel {
  border: 1px solid var(--line-strong);
  background: var(--bg-2);
  padding: clamp(24px, 3vw, 40px);
  min-width: 0;
}
.booking-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.booking-panel-head h3 { font-size: 15px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.month-nav { display: flex; gap: 8px; }
.month-nav button {
  width: 32px; height: 32px;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-dim);
  transition: border-color 0.25s, color 0.25s;
}
.month-nav button:hover { border-color: var(--cy); color: var(--cy); }

.date-strip {
  display: flex;
  gap: 8px;
  margin-bottom: 26px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.date-cell {
  flex: 0 0 46px;
  aspect-ratio: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 1px solid transparent;
  font-size: 14px;
  color: var(--ink-dim);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.date-cell span { font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 3px; }
.date-cell:not(.is-disabled):hover { border-color: var(--line-strong); }
.date-cell.is-disabled { opacity: 0.25; cursor: default; }
.date-cell.is-selected { background: var(--cy); color: var(--bg); }
.date-cell.is-selected span { color: rgba(5,6,7,0.6); }

.time-label { display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 12px; }
.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
  max-height: 212px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
}
.time-slot {
  padding: 12px 8px;
  text-align: center;
  border: 1px solid var(--line-strong);
  font-size: 13px;
  color: var(--ink-dim);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.time-slot:hover { border-color: var(--cy); color: var(--ink); }
.time-slot.is-selected { background: var(--cy-soft); border-color: var(--cy); color: var(--cy); }

/* Custom-time availability check */
.custom-time { margin-bottom: 26px; padding-top: 20px; border-top: 1px solid var(--line); }
.custom-time-row { display: flex; gap: 14px; align-items: stretch; flex-wrap: wrap; }
.custom-time-row input[type="time"] {
  flex: 1;
  min-width: 140px;
  padding: 12px 14px;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  color-scheme: dark;
  transition: border-color 0.25s;
}
.custom-time-row input[type="time"]:focus { outline: none; border-color: var(--cy); }
.custom-time-row .btn-line { padding: 12px 4px; font-size: 12px; }
.time-feedback { margin-top: 12px; font-size: 13px; min-height: 1em; }
.time-feedback.is-good { color: var(--cy); }
.time-feedback.is-bad { color: #ff8f7d; }

/* Contact capture fields */
.booking-fields { display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 7px;
}
.field input {
  width: 100%;
  padding: 13px 14px;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font: inherit;
  font-size: 14.5px;
  transition: border-color 0.25s;
}
.field input::placeholder { color: var(--ink-faint); }
.field input:focus { outline: none; border-color: var(--cy); }

.booking-hint { margin-top: 14px; font-size: 13px; color: var(--ink-faint); min-height: 1em; }
.booking-error { margin-top: 8px; font-size: 13px; color: #ff8f7d; min-height: 1em; }

.booking-confirm { display: none; text-align: center; padding: 28px 0; }
.booking-confirm.is-active { display: block; }
.booking-confirm h4 { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 32px; color: var(--cy); }
.booking-confirm p { margin: 14px 0 24px; color: var(--ink-dim); font-size: 14.5px; }

/* ==========================================================================
   09 · FAQ
   ========================================================================== */
.faq { padding: clamp(90px, 15vh, 180px) var(--gut); border-top: 1px solid var(--line); }
.faq-list { margin-top: clamp(36px, 6vh, 64px); max-width: 860px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(20px, 3vh, 30px) 0;
  text-align: left;
  font-size: clamp(17px, 2.2vw, 24px);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--cy); }
.faq-q em { font-size: 12px; color: var(--cy); flex: none; }
.faq-q span { flex: 1; }
.faq-q i {
  position: relative;
  width: 16px; height: 16px;
  flex: none;
  align-self: center;
}
.faq-q i::before, .faq-q i::after {
  content: "";
  position: absolute;
  background: var(--cy);
  transition: transform 0.35s var(--ease), opacity 0.35s;
}
.faq-q i::before { left: 0; top: 50%; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-q i::after { top: 0; left: 50%; width: 1.5px; height: 100%; transform: translateX(-50%); }
.faq-item.is-open .faq-q i::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a p { padding: 0 0 26px calc(12px + clamp(16px, 3vw, 40px)); color: var(--ink-dim); font-size: 15px; max-width: 60ch; }

/* ==========================================================================
   10 · Finale
   ========================================================================== */
.finale {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.finale-media { position: absolute; inset: 0; }
.finale-video { width: 100%; height: 100%; object-fit: cover; }
.finale-scrim { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(5,6,7,0.3), rgba(5,6,7,0.92) 80%); }
.finale-inner { position: relative; padding: 14vh var(--gut); }
.finale-title { font-size: clamp(48px, 10.5vw, 160px); line-height: 0.95; letter-spacing: -0.035em; text-transform: uppercase; }
.finale-title > span { display: block; overflow: hidden; }
.finale-serif { text-transform: none; }
.finale-serif em { color: var(--cy); }
.finale-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: clamp(32px, 6vh, 60px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-foot { border-top: 1px solid var(--line); overflow: hidden; }
.foot-marquee { padding: clamp(28px, 5vh, 56px) 0; border-bottom: 1px solid var(--line); overflow: hidden; }
.foot-marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
  animation: footScroll 24s linear infinite;
}
.foot-marquee-track span {
  font-size: clamp(56px, 11vw, 160px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(234, 242, 245, 0.22);
}
@keyframes footScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
  padding: clamp(40px, 7vh, 72px) var(--gut);
}
.foot-tag { color: var(--ink-dim); font-size: 15px; }
.foot-col h4 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 16px; font-weight: 600; }
.foot-col a { display: block; padding: 5px 0; font-size: 14.5px; color: var(--ink-dim); transition: color 0.25s; }
.foot-col a:hover { color: var(--cy); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 22px var(--gut) 30px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .booking { grid-template-columns: 1fr; }
  .panel { grid-template-columns: 1fr; width: min(86vw, 520px); min-height: 0; }
  .panel-media:not(.panel-media--type) { aspect-ratio: 16 / 10; }
  .panel-media--type { min-height: 0; }
  .panel-index { font-size: 90px; top: -0.3em; }
  .head-cta { display: none; }
}

/* Mobile: services become a vertical stack (no pin) */
@media (max-width: 767px) {
  .services-pin { height: auto; padding: clamp(72px, 12vh, 110px) 0; }
  .services-head { position: static; padding: 0 var(--gut); margin-bottom: 36px; }
  .services-hint { display: none; }
  .services-track { flex-direction: column; width: 100%; padding: 0 var(--gut); gap: 28px; }
  .panel { width: 100%; }
  .hero-title { font-size: clamp(44px, 14vw, 80px); }
  .story-pin { height: 100svh; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .time-grid { grid-template-columns: repeat(2, 1fr); }
  .quote--right { text-align: left; margin-left: 0; }
}

/* ==========================================================================
   Reduced motion — everything readable, nothing required to move
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .preloader { display: none; }
  .cursor-dot, .cursor-ring { display: none; }
  .story-beat { position: static; opacity: 1; visibility: visible; padding: 24px var(--gut); }
  .story-pin { height: auto; flex-direction: column; padding: 80px 0; }
  .story-clock { display: none; }
}
