/* VenueOS — cinematic product experience */
:root {
  --ink: #0b0b0d;
  --ink-2: #121216;
  --paper: #f4f1ea;
  --paper-dim: rgba(244, 241, 234, 0.64);
  --brass: #c9a86a;
  --brass-deep: #8f7340;
  --line: rgba(244, 241, 234, 0.14);
  --glass-tint: 201, 168, 106;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-cinematic: cubic-bezier(.76, 0, .24, 1);
  --mx: 0;
  --my: 0;
  --word-y: 0px;
  --word-scale: 1;
  --word-opacity: 1;
  --plan-scale: .76;
  --plan-blur: 0px;
  --plan-bright: 1;
  --plan-opacity: 1;
  --back-scale: 1.15;
  --back-blur: 0px;
  --back-bright: .82;
  --intro-y: 0px;
  --intro-opacity: 1;
  --shade-opacity: 0;
  --shade-y: 28%;
  --story-a-y: 58px;
  --story-a-opacity: 0;
  --story-b-y: 58px;
  --story-b-opacity: 0;
  --close-opacity: 0;
  --focus-opacity: 0;
  --focus-scale: 1;
  --bridge-x: 420vw;
  --bridge-opacity: 0;
  --bridge-scale: .86;
  --live-opacity: 0;
  --dashboard-rx: 18deg;
  --dashboard-ry: -8deg;
  --tailor-x: 0px;
  --tailor-progress: 0%;
  color-scheme: dark;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

html {
  background: var(--ink);
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scrollbar-color: rgba(201,168,106,.5) var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
body.is-loading { overflow: hidden; }

::selection { background: var(--brass); color: var(--ink); }

img, svg { display: block; max-width: 100%; }
img { height: auto; }
button, a { color: inherit; }
button { font: inherit; }
a { text-decoration: none; }

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  margin-bottom: .3em;
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .95;
}

h1, h2, h3 { text-wrap: balance; }
h1 { font-size: clamp(52px, 6.4vw, 102px); }
h2 { font-size: clamp(44px, 6vw, 96px); }
h1 em, h2 em { color: var(--brass); font-family: "Instrument Serif", serif; font-weight: 400; }
em { font-weight: 400; }

.mono, .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow { margin-bottom: 26px; color: var(--brass); }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 20px;
  top: 18px;
  padding: 11px 16px;
  border-radius: 9999px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 4px; }

.site-grain {
  position: fixed;
  z-index: 90;
  inset: 0;
  pointer-events: none;
  opacity: .37;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

.measure-ruler {
  position: fixed;
  z-index: 45;
  inset: 0 auto 0 13px;
  width: 24px;
  pointer-events: none;
  opacity: .25;
  background-image:
    repeating-linear-gradient(to bottom, transparent 0 7px, rgba(244,241,234,.4) 7px 8px),
    repeating-linear-gradient(to bottom, transparent 0 79px, var(--brass) 79px 80px);
  background-position: 0 0, 0 0;
  background-size: 7px 8px, 15px 80px;
  background-repeat: repeat-y;
}

.measure-ruler span {
  position: absolute;
  left: 9px;
  top: calc(var(--i, 0) * 80px + 8px);
  font-family: "JetBrains Mono", monospace;
  font-size: 7px;
  color: var(--brass);
  transform: rotate(90deg);
  transform-origin: left top;
}
.measure-ruler span:nth-child(1) { --i: 0; }
.measure-ruler span:nth-child(2) { --i: 1; }
.measure-ruler span:nth-child(3) { --i: 2; }
.measure-ruler span:nth-child(4) { --i: 3; }
.measure-ruler span:nth-child(5) { --i: 4; }
.measure-ruler span:nth-child(6) { --i: 5; }

.liquid-glass {
  background: rgba(255,255,255,0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.liquid-glass::before,
.liquid-glass-strong::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.15) 80%, rgba(255,255,255,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.liquid-glass-strong {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.035);
  background-blend-mode: luminosity;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border: none;
  box-shadow: 4px 4px 4px rgba(0,0,0,.05), inset 0 1px 1px rgba(255,255,255,.15);
}

.liquid-glass-strong::before {
  background: linear-gradient(180deg,
    rgba(255,255,255,.5) 0%, rgba(255,255,255,.2) 20%,
    rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%,
    rgba(255,255,255,.2) 80%, rgba(255,255,255,.5) 100%);
}

.preloader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #060608;
  clip-path: inset(0 0 0 0);
  transition: clip-path .65s var(--ease-cinematic), visibility 0s .65s;
}

.preloader.is-done { clip-path: inset(0 0 100% 0); visibility: hidden; }
.preloader-mark { position: absolute; width: min(54vw, 650px); opacity: .2; filter: blur(8px); animation: loaderGlow .9s var(--ease-out) forwards; }
.preloader-mark img { width: 100%; }
.preloader-word {
  position: relative;
  z-index: 2;
  font-size: clamp(42px, 8vw, 112px);
  font-weight: 600;
  letter-spacing: .6em;
  opacity: 0;
  filter: blur(12px);
  transform: translateX(.3em);
  animation: loaderWord .9s var(--ease-out) forwards;
}
.preloader-meta {
  position: absolute;
  inset: auto 30px 26px;
  display: flex;
  justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--paper-dim);
}
.preloader-meta span:last-child { color: var(--paper); font-size: 13px; }
@keyframes loaderWord { to { opacity: 1; filter: blur(0); letter-spacing: -.02em; transform: translateX(0); } }
@keyframes loaderGlow { to { opacity: .65; filter: blur(0); transform: scale(1.04); } }

.site-header {
  position: fixed;
  z-index: 80;
  top: 16px;
  left: 50%;
  width: min(calc(100% - 36px), 920px);
  transform: translateX(-50%);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 54px;
  padding: 6px 7px 6px 16px;
  border-radius: 9999px;
  transition: background-color .2s ease, box-shadow .2s ease, backdrop-filter .2s ease;
}

.site-header.is-scrolled .nav-shell {
  background: rgba(11,11,13,.42);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  box-shadow: 0 16px 45px rgba(0,0,0,.25), inset 0 1px 1px rgba(255,255,255,.13);
}

.nav-brand { display: inline-flex; align-items: center; gap: 8px; width: max-content; font-size: 13px; font-weight: 600; letter-spacing: -.02em; }
.nav-brand img { width: 24px; height: 21px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: clamp(16px, 2.5vw, 34px); }
.nav-links a { position: relative; color: var(--paper-dim); font-size: 13px; font-weight: 500; transition: color .2s ease, opacity .2s ease; }
.nav-links a::after { content: ""; position: absolute; left: 50%; top: calc(100% + 7px); width: 4px; height: 4px; border-radius: 50%; background: var(--brass); opacity: 0; transform: translate(-50%, 4px); transition: opacity .2s ease, transform .2s ease; }
.nav-links a:hover, .nav-links a.is-active { color: var(--paper); }
.nav-links a.is-active::after { opacity: 1; transform: translate(-50%, 0); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 23px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform .2s var(--ease-out), color .2s ease, background-color .2s ease, opacity .2s ease, box-shadow .2s ease;
}

.button-primary { background: var(--brass); color: var(--ink); box-shadow: 0 10px 34px rgba(201,168,106,.16); }
.button-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 45px rgba(201,168,106,.25); }
.button-ghost { color: var(--paper); }
.button-ghost:hover { background: rgba(255,255,255,.07); transform: translateY(-2px); }
.button-ghost svg { width: 15px; fill: none; stroke: currentColor; }
.button-nav { justify-self: end; min-height: 42px; padding: 0 18px; border: 1px solid rgba(201,168,106,.58); color: var(--paper); }
.button-nav:hover { background: var(--brass); color: var(--ink); }

.menu-toggle, .menu-close { display: none; width: 42px; height: 42px; padding: 0; border: 0; border-radius: 50%; background: transparent; }
.menu-toggle span, .menu-close span { position: absolute; left: 12px; width: 18px; height: 1px; background: var(--paper); }
.menu-toggle span:first-child { transform: translateY(-4px); }
.menu-toggle span:last-child { transform: translateY(4px); }

.mobile-menu {
  position: fixed;
  z-index: 95;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 28px 24px 34px;
  background: var(--ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px);
  transition: opacity .35s ease, transform .5s var(--ease-out), visibility 0s .5s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); transition-delay: 0s; }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; color: var(--paper-dim); }
.mobile-menu nav { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 9px; }
.mobile-menu nav a { overflow: hidden; font-family: "Instrument Serif", serif; font-size: clamp(52px, 15vw, 80px); line-height: .98; opacity: 0; filter: blur(10px); transform: translateY(26px); transition: opacity .55s ease, filter .55s ease, transform .55s var(--ease-out); }
.mobile-menu.is-open nav a { opacity: 1; filter: blur(0); transform: translateY(0); transition-delay: calc(var(--i) * 60ms + 80ms); }
.mobile-menu nav a:nth-child(1) { --i: 0; }.mobile-menu nav a:nth-child(2) { --i: 1; }.mobile-menu nav a:nth-child(3) { --i: 2; }.mobile-menu nav a:nth-child(4) { --i: 3; }.mobile-menu nav a:nth-child(5) { --i: 4; }
.mobile-menu nav em { color: var(--brass); }
.mobile-menu > p { margin: 0; color: var(--paper-dim); font-size: 13px; }
.menu-close { display: block; position: relative; }
.menu-close span:first-child { transform: rotate(45deg); }
.menu-close span:last-child { transform: rotate(-45deg); }

.hero-scroll { position: relative; height: calc(100vh + 4200px); height: calc(100svh + 4200px); background: var(--ink); }
.hero-stage { position: sticky; top: 0; height: 100vh; height: 100svh; min-height: 620px; overflow: hidden; isolation: isolate; }
.hero-media, .hero-image, .hero-vignette, .focus-shade, .dust-canvas, .ambient-orb { position: absolute; inset: 0; }
.hero-media {
  z-index: -5;
  overflow: hidden;
  transform: translate3d(calc(var(--mx) * -12px), calc(var(--my) * -4px), 0) scale(var(--back-scale));
  filter: blur(var(--back-blur)) brightness(var(--back-bright));
  will-change: transform, filter;
}
.hero-image { width: 100%; height: 100%; object-fit: cover; }
.hero-image-close { opacity: var(--close-opacity); transform: scale(calc(1.04 + var(--focus-scale) * .035)); will-change: transform, opacity; }
.hero-image-wide { opacity: calc(1 - var(--close-opacity) * .72); }
.hero-vignette { background: radial-gradient(circle at 50% 43%, transparent 15%, rgba(11,11,13,.18) 53%, rgba(11,11,13,.72) 100%), linear-gradient(180deg, rgba(11,11,13,.32), transparent 38%, rgba(11,11,13,.6)); }
.dust-canvas { z-index: -3; width: 100%; height: 100%; opacity: .7; mix-blend-mode: screen; }
.ambient-orb { z-index: -4; inset: auto 15% -42%; height: 82%; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,106,.16), rgba(201,168,106,.035) 40%, transparent 70%); mix-blend-mode: screen; filter: blur(28px); animation: orbBreathe 7s ease-in-out infinite alternate; }
@keyframes orbBreathe { to { transform: scale(1.12) translateY(-4%); opacity: .78; } }
.focus-shade { z-index: 1; background: linear-gradient(180deg, rgba(11,11,13,0), rgba(var(--glass-tint),.42) 62%, rgba(11,11,13,.5)); opacity: var(--shade-opacity); transform: translateY(var(--shade-y)); will-change: transform, opacity; }

.hero-identity { position: absolute; z-index: 2; inset: 7% 0 auto; height: 58%; pointer-events: none; transform: translate3d(calc(var(--mx) * 8px), var(--word-y), 0) scale(var(--word-scale)); opacity: var(--word-opacity); will-change: transform, opacity; }
.hero-wordmark { position: absolute; z-index: 1; left: 50%; top: 43%; width: min(76vw, 1120px); transform: translate(-50%, -50%); filter: drop-shadow(0 0 36px rgba(244,241,234,.18)); opacity: .82; }
.hero-wordmark-front { z-index: 4; clip-path: inset(53% 0 0 0); opacity: .9; }
.hero-plan {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: min(73vw, 970px);
  max-height: 72vh;
  transform: translate3d(calc(-50% + var(--mx) * -14px), -50%, 0) scale(var(--plan-scale));
  filter: blur(var(--plan-blur)) brightness(var(--plan-bright));
  opacity: var(--plan-opacity);
  overflow: visible;
  will-change: transform, filter, opacity;
}
.hero-plan path, .hero-plan circle, .hero-plan rect { fill: none; stroke: rgba(244,241,234,.34); stroke-width: 1.15; vector-effect: non-scaling-stroke; }
.hero-plan text { fill: var(--brass); stroke: none; font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: .18em; text-anchor: middle; }
.hero-plan .plan-labels text { fill: rgba(244,241,234,.42); font-size: 9px; }
.hero-plan .focused-table { opacity: var(--focus-opacity); transform-origin: 434px 367px; transform: scale(var(--focus-scale)); filter: drop-shadow(0 0 12px rgba(201,168,106,.65)); will-change: transform, opacity; }
.hero-plan .focused-table circle { stroke: var(--brass); }
.hero-plan .focused-table circle:nth-child(2) { opacity: .25; stroke-dasharray: 4 7; animation: focusRing 14s linear infinite; }
.hero-plan .focused-table text { font-size: 13px; }
.plan-draw path, .plan-draw circle, .plan-draw rect { stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: drawPlan 1.8s var(--ease-out) forwards; animation-delay: calc(.5s + var(--d, 0) * 70ms); }
.plan-tables > g:nth-child(1) { --d: 1 }.plan-tables > g:nth-child(2) { --d: 2 }.plan-tables > g:nth-child(3) { --d: 3 }.plan-tables > g:nth-child(4) { --d: 4 }.plan-tables > g:nth-child(5) { --d: 5 }.plan-tables > g:nth-child(6) { --d: 6 }.plan-tables > g:nth-child(7) { --d: 7 }.plan-tables > g:nth-child(8) { --d: 8 }.plan-tables > g:nth-child(9) { --d: 9 }.plan-tables > g:nth-child(10) { --d: 10 }.plan-tables > g:nth-child(11) { --d: 11 }.plan-tables > g:nth-child(12) { --d: 12 }.plan-tables > g:nth-child(13) { --d: 13 }.plan-tables > g:nth-child(14) { --d: 14 }
@keyframes drawPlan { to { stroke-dashoffset: 0; } }
@keyframes focusRing { to { stroke-dashoffset: -220; } }

.hero-copy {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: clamp(44px, 7vh, 84px);
  width: min(680px, calc(100% - 40px));
  text-align: center;
  transform: translate3d(-50%, var(--intro-y), 0);
  opacity: var(--intro-opacity);
  will-change: transform, opacity;
}
.hero-copy .eyebrow { margin-bottom: 13px; }
.hero-copy h1 { margin-bottom: 16px; font-size: clamp(48px, 6vw, 92px); }
.hero-copy > p:not(.eyebrow) { max-width: 600px; margin: 0 auto 25px; color: var(--paper-dim); font-size: clamp(14px, 1.5vw, 17px); }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 10px; }

.hero-story { position: absolute; z-index: 9; left: 50%; top: 50%; width: min(860px, calc(100% - 44px)); text-align: center; pointer-events: none; }
.hero-story h2 { font-family: "Instrument Serif", serif; font-size: clamp(54px, 7vw, 104px); }
.hero-story > p:not(.eyebrow) { max-width: 670px; margin: 0 auto; color: rgba(244,241,234,.74); font-size: clamp(15px, 1.5vw, 18px); }
.story-a { transform: translate(-50%, calc(-50% + var(--story-a-y))); opacity: var(--story-a-opacity); will-change: transform, opacity; }
.story-b { transform: translate(-50%, calc(-50% + var(--story-b-y))); opacity: var(--story-b-opacity); will-change: transform, opacity; }
.hero-story dl { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; max-width: 650px; margin: 38px auto 0; border: 1px solid rgba(244,241,234,.16); border-radius: 18px; overflow: hidden; background: rgba(244,241,234,.15); }
.hero-story dl div { padding: 20px; background: rgba(11,11,13,.58); backdrop-filter: blur(12px); }
.hero-story dt { font-family: "Instrument Serif", serif; font-size: 40px; line-height: 1; }
.hero-story dd { margin: 8px 0 0; font-family: "JetBrains Mono", monospace; font-size: 9px; line-height: 1.5; letter-spacing: .12em; text-transform: uppercase; color: var(--paper-dim); }

.dashboard-surface { border: 1px solid rgba(244,241,234,.13); background: linear-gradient(145deg, rgba(26,26,30,.96), rgba(10,10,12,.96)); box-shadow: 0 50px 120px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.04); }
.hero-dashboard-bridge { position: absolute; z-index: 10; left: 50%; top: 50%; width: min(720px, 72vw); aspect-ratio: 16/8.5; padding: 16px; border-radius: 18px; transform: translate3d(calc(-50% + var(--bridge-x)), -50%, 0) scale(var(--bridge-scale)); opacity: var(--bridge-opacity); will-change: transform, opacity; }
.bridge-top { display: flex; justify-content: space-between; padding: 1px 4px 13px; font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.live-dot { display: inline-flex; align-items: center; gap: 7px; color: var(--paper-dim); }
.live-dot::before, span.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brass); box-shadow: 0 0 16px rgba(201,168,106,.8); }
.bridge-grid { display: grid; grid-template-columns: 1.5fr .8fr; gap: 12px; height: calc(100% - 32px); }
.bridge-plan, .bridge-pay { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.018); }
.bridge-plan::before { content: ""; position: absolute; inset: 15%; border: 1px solid rgba(244,241,234,.17); }
.bridge-table { position: absolute; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(244,241,234,.28); border-radius: 50%; font-family: "JetBrains Mono", monospace; font-size: 9px; }
.bridge-table.occupied { border-color: var(--brass); box-shadow: 0 0 18px rgba(201,168,106,.18); }
.bridge-table.t1 { left: 25%; top: 25%; }.bridge-table.t2 { left: 52%; top: 26%; }.bridge-table.t3 { left: 31%; top: 60%; }.bridge-table.t4 { left: 65%; top: 62%; }
.bridge-pay { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.bridge-pay > span { font-family: "Instrument Serif", serif; font-size: 36px; }
.bridge-pay small { color: var(--paper-dim); }
.bridge-pay i { position: absolute; left: 50%; top: 48%; width: 88px; height: 88px; border: 1px solid rgba(201,168,106,.24); border-radius: 50%; transform: translate(-50%,-50%) scale(calc(.6 + var(--i, 1)*.2)); }
.bridge-pay i:nth-of-type(1) { --i: 1 }.bridge-pay i:nth-of-type(2) { --i: 2 }.bridge-pay i:nth-of-type(3) { --i: 3 }.bridge-pay i:nth-of-type(4) { --i: 4 }
.hero-live-caption { position: absolute; z-index: 11; left: 50%; bottom: 6vh; display: flex; align-items: center; gap: 10px; transform: translateX(-50%); opacity: var(--live-opacity); font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; white-space: nowrap; will-change: opacity; }
.scroll-cue { position: absolute; z-index: 10; right: 26px; bottom: 26px; display: flex; align-items: center; gap: 12px; color: rgba(244,241,234,.58); font-family: "JetBrains Mono", monospace; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; opacity: var(--intro-opacity); }
.scroll-cue i { width: 34px; height: 34px; border: 1px solid rgba(244,241,234,.22); border-radius: 50%; }
.scroll-cue i::after { content: ""; position: absolute; right: 16px; top: 13px; width: 1px; height: 9px; background: var(--paper); animation: scrollTick 1.5s ease infinite; }
@keyframes scrollTick { 50% { transform: translateY(6px); opacity: .2; } }

.section-dark { position: relative; background: var(--ink); color: var(--paper); }
.section-heading { width: min(1200px, calc(100% - 64px)); margin: 0 auto; }
.section-heading h2 { max-width: 1000px; }
.section-heading > p:last-child { max-width: 620px; margin: 30px 0 0 auto; color: var(--paper-dim); font-size: 17px; }

.product-section { z-index: 3; padding: 170px 0 210px; overflow: clip; }
.product-section::before { content: ""; position: absolute; top: 0; left: 5%; right: 5%; border-top: 1px dashed rgba(201,168,106,.38); animation: stitchCrawl 14s linear infinite; }
@keyframes stitchCrawl { to { transform: translateX(16px); } }
.dashboard-scene { position: relative; width: min(1260px, calc(100% - 70px)); height: 800px; margin: 120px auto 0; perspective: 1400px; }
.dashboard-shell { position: absolute; inset: 40px 30px 100px; display: grid; grid-template-columns: 72px 1fr; min-height: 650px; border-radius: 18px; overflow: hidden; transform-style: preserve-3d; transform: translate3d(calc(var(--mx) * 7px),0,0) rotateX(var(--dashboard-rx)) rotateY(var(--dashboard-ry)); transform-origin: 50% 100%; will-change: transform; }
.dashboard-rail { display: flex; flex-direction: column; align-items: center; gap: 13px; padding: 18px 12px; border-right: 1px solid rgba(244,241,234,.09); background: rgba(255,255,255,.012); }
.dashboard-rail img { width: 32px; height: 28px; object-fit: contain; margin-bottom: 18px; opacity: .9; }
.dashboard-rail button { display: grid; place-items: center; width: 39px; height: 39px; padding: 0; border: 0; border-radius: 11px; background: transparent; color: rgba(244,241,234,.42); transition: color .2s ease, background-color .2s ease, transform .2s ease; }
.dashboard-rail button:hover, .dashboard-rail button.is-active { color: var(--paper); background: rgba(255,255,255,.07); transform: translateY(-1px); }
.dashboard-rail svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.35; }
.rail-spacer { flex: 1; }
.dashboard-main { min-width: 0; padding: 0 22px 22px; }
.dashboard-topbar { display: flex; align-items: center; justify-content: space-between; min-height: 84px; border-bottom: 1px solid rgba(244,241,234,.09); }
.dashboard-topbar > div:first-child { display: flex; flex-direction: column; gap: 5px; }
.dashboard-topbar strong { font-size: 19px; font-weight: 500; letter-spacing: -.03em; }
.dashboard-topbar .mono { color: rgba(244,241,234,.36); font-size: 8px; }
.service-metrics { display: flex; align-items: center; gap: 17px; color: var(--paper-dim); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.service-metrics span b { color: var(--paper); font-size: 16px; font-weight: 500; }
.service-metrics button { display: flex; align-items: center; gap: 9px; min-height: 36px; padding: 0 12px; border: 1px solid rgba(244,241,234,.11); border-radius: 10px; background: rgba(255,255,255,.02); color: var(--paper); font-size: 11px; }
.service-metrics button i { width: 5px; height: 5px; border-right: 1px solid; border-bottom: 1px solid; transform: rotate(45deg) translateY(-2px); }
.dashboard-grid { display: grid; grid-template-columns: 1.4fr .9fr; grid-template-rows: 365px 160px; gap: 14px; padding-top: 17px; }
.floor-panel, .reservations-panel, .payments-feed { min-width: 0; overflow: hidden; border: 1px solid rgba(244,241,234,.09); border-radius: 13px; background: rgba(255,255,255,.018); }
.payments-feed { grid-column: 1 / -1; }
.panel-head { display: flex; align-items: center; justify-content: space-between; height: 48px; padding: 0 15px; border-bottom: 1px solid rgba(244,241,234,.08); font-size: 11px; font-weight: 500; }
.panel-head .status { display: inline-flex; align-items: center; gap: 7px; color: var(--paper-dim); font-size: 9px; }
.panel-head .status i { width: 5px; height: 5px; border-radius: 50%; background: var(--brass); box-shadow: 0 0 10px rgba(201,168,106,.75); }
.panel-head button { width: 25px; height: 25px; border: 1px solid var(--line); border-radius: 7px; background: transparent; color: var(--paper); }
.mini-floor { position: relative; height: 268px; margin: 12px 14px 0; }
.mini-floor > svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.mini-floor > svg path { fill: none; stroke: rgba(244,241,234,.17); stroke-width: 1; vector-effect: non-scaling-stroke; }
.mini-bar { position: absolute; z-index: 2; left: 8%; top: 9%; display: grid; place-items: center; width: 29%; height: 34px; border: 1px solid rgba(244,241,234,.18); font-family: "JetBrains Mono", monospace; font-size: 7px; letter-spacing: .16em; color: var(--paper-dim); }
.mini-floor .table { position: absolute; z-index: 3; display: grid; place-items: center; width: 39px; height: 39px; border: 1px solid rgba(244,241,234,.23); font-family: "JetBrains Mono", monospace; font-size: 8px; color: var(--paper-dim); }
.mini-floor .table.round { border-radius: 50%; }
.mini-floor .table.wide { width: 60px; border-radius: 14px; }
.mini-floor .table.seated { border-color: var(--brass); color: var(--paper); background: rgba(201,168,106,.05); box-shadow: 0 0 0 5px rgba(201,168,106,.025), 0 0 19px rgba(201,168,106,.12); animation: tablePulse 2.5s ease-in-out infinite; }
.mini-floor .table small { position: absolute; right: -4px; top: -5px; display: grid; place-items: center; width: 14px; height: 14px; border-radius: 50%; background: var(--brass); color: var(--ink); font-size: 7px; }
.mini-floor .p1 { left: 46%; top: 16%; }.mini-floor .p2 { left: 67%; top: 16%; }.mini-floor .p3 { left: 44%; top: 52%; }.mini-floor .p4 { left: 18%; top: 55%; }.mini-floor .p5 { left: 69%; top: 57%; }.mini-floor .p6 { left: 27%; top: 81%; }.mini-floor .p7 { left: 84%; top: 30%; }.mini-floor .p8 { left: 71%; top: 84%; }
@keyframes tablePulse { 50% { box-shadow: 0 0 0 10px rgba(201,168,106,0), 0 0 25px rgba(201,168,106,.2); } }
.floor-legend { display: flex; align-items: center; gap: 13px; padding: 0 17px; color: rgba(244,241,234,.36); font-size: 8px; }
.floor-legend span { display: inline-flex; align-items: center; gap: 5px; }.floor-legend span:last-child { margin-left: auto; }
.floor-legend i { width: 6px; height: 6px; border: 1px solid rgba(244,241,234,.3); border-radius: 50%; }.floor-legend span:nth-child(2) i { border-color: var(--brass); }
.reservation-list { margin: 0; padding: 4px 10px; list-style: none; }
.reservation-list li { position: relative; display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 7px; min-height: 60px; border-bottom: 1px solid rgba(244,241,234,.065); }
.reservation-list li:last-child { border-bottom: 0; }
.reservation-list li.now::before { content: ""; position: absolute; left: -10px; top: 0; bottom: 0; width: 2px; background: var(--brass); }
.reservation-list time { font-family: "JetBrains Mono", monospace; font-size: 8px; color: rgba(244,241,234,.35); }
.reservation-list div { display: flex; flex-direction: column; min-width: 0; }
.reservation-list strong { font-size: 10px; font-weight: 500; }.reservation-list div span { overflow: hidden; color: rgba(244,241,234,.4); font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.reservation-list .tag { padding: 3px 5px; border-radius: 999px; background: rgba(255,255,255,.05); color: rgba(244,241,234,.5); font-family: "JetBrains Mono", monospace; font-size: 6px; font-style: normal; text-transform: uppercase; }.reservation-list .tag.brass { color: var(--brass); }
.payments-feed .panel-head { height: 38px; }.payments-feed .panel-head .mono { color: rgba(244,241,234,.35); font-size: 7px; }
.feed-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; padding: 10px; }
.feed-row { display: grid; grid-template-columns: 25px 1fr auto; align-items: center; gap: 8px; min-width: 0; padding: 10px; border: 1px solid rgba(244,241,234,.07); border-radius: 9px; background: rgba(255,255,255,.015); transition: border-color .3s ease, background-color .3s ease, transform .3s var(--ease-out), filter .3s ease, opacity .3s ease; }
.feed-row.is-new { animation: feedIn .35s var(--ease-out); }
@keyframes feedIn { from { opacity: 0; filter: blur(8px); transform: translateY(10px); background: rgba(201,168,106,.13); border-color: rgba(201,168,106,.5); } }
.feed-icon { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(201,168,106,.1); color: var(--brass); font-size: 10px; }
.feed-row div { display: flex; flex-direction: column; min-width: 0; }.feed-row strong { overflow: hidden; font-size: 8px; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }.feed-row small { color: rgba(244,241,234,.35); font-size: 7px; }
.feed-row b { font-family: "JetBrains Mono", monospace; font-size: 9px; font-weight: 400; }

.float-card { position: absolute; z-index: 5; border-radius: 20px; color: var(--paper); transform-style: preserve-3d; }
.split-card { left: -4px; bottom: 8px; width: 285px; padding: 18px; transform: translateZ(60px) translate3d(calc(var(--mx) * 18px), calc(var(--my) * 10px), 0); animation: floatA 5s ease-in-out infinite alternate; }
.softpos-card { right: 2px; top: 0; width: 220px; padding: 18px; text-align: center; transform: translateZ(90px) translate3d(calc(var(--mx) * 22px), calc(var(--my) * 14px), 0); animation: floatB 4.5s ease-in-out infinite alternate; }
@keyframes floatA { to { margin-bottom: 13px; } } @keyframes floatB { to { margin-top: -9px; } }
.float-head { display: flex; justify-content: space-between; color: var(--paper-dim); font-size: 10px; }.float-head .mono { font-size: 7px; }
.split-ring { position: relative; display: grid; place-items: center; align-content: center; width: 124px; height: 124px; margin: 15px auto 10px; border: 1px solid rgba(244,241,234,.08); border-radius: 50%; box-shadow: inset 0 0 30px rgba(201,168,106,.05); }
.split-ring::before { content: ""; position: absolute; inset: 9px; border: 9px solid rgba(201,168,106,.35); border-right-color: rgba(244,241,234,.13); border-bottom-color: rgba(244,241,234,.2); border-radius: 50%; transform: rotate(30deg); }
.split-ring b, .split-ring span { position: relative; z-index: 2; }.split-ring b { font-family: "Instrument Serif",serif; font-size: 24px; font-weight: 400; }.split-ring span { color: var(--paper-dim); font-size: 8px; }
.split-ring i { position: absolute; left: 50%; top: 50%; width: 7px; height: 7px; border: 1px solid var(--ink); border-radius: 50%; background: var(--paper); transform: rotate(var(--a)) translateY(-52px); transform-origin: 0 0; }
.guest-totals { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }.guest-totals span { display: flex; align-items: center; gap: 6px; color: var(--paper-dim); font-size: 8px; }.guest-totals i { display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; background: rgba(255,255,255,.08); color: var(--paper); font-size: 6px; font-style: normal; }
.softpos-card > .mono { color: var(--brass); font-size: 7px; }.softpos-card > strong { display: block; font-size: 14px; font-weight: 500; }.softpos-card > small { color: var(--paper-dim); font-size: 8px; }
.nfc-mark { position: relative; display: grid; place-items: center; width: 116px; height: 116px; margin: 14px auto; border-radius: 50%; }.nfc-mark i { position: absolute; inset: calc(var(--i) * 12px); border: 1px solid rgba(201,168,106,.22); border-radius: 50%; animation: nfcRipple 2.2s ease-out infinite; animation-delay: calc(var(--i) * .25s); }.nfc-mark i:nth-child(1){--i:0}.nfc-mark i:nth-child(2){--i:1}.nfc-mark i:nth-child(3){--i:2}.nfc-mark b { font-family: "Instrument Serif",serif; font-size: 22px; font-weight: 400; }
@keyframes nfcRipple { 50% { border-color: rgba(201,168,106,.6); } 100% { transform: scale(1.08); opacity: .2; } }

.tailoring-section { position: relative; z-index: 4; background: var(--paper); color: var(--ink); color-scheme: light; }
.tailor-intro { position: relative; min-height: 120vh; display: flex; align-items: center; overflow: hidden; padding: 130px max(5vw, 38px); }
.tailor-photo-wrap { position: absolute; inset: 10% 0 8%; overflow: hidden; clip-path: inset(0 50% 0 50%); transition: clip-path 1.2s var(--ease-cinematic); }
.tailor-photo-wrap.is-visible { clip-path: inset(0 0 0 0); }
.tailor-photo-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(244,241,234,.96), rgba(244,241,234,.35) 44%, rgba(244,241,234,.08) 68%, rgba(244,241,234,.5)); mix-blend-mode: screen; }
.tailor-photo-wrap img { width: 100%; height: 100%; object-fit: cover; transform: translateY(var(--tailor-img-y, 0px)) scale(var(--tailor-img-scale, 1)); filter: saturate(.78) contrast(.95); will-change: transform; }
.tailor-copy { position: relative; z-index: 2; width: min(920px, 78vw); }
.tailor-copy .eyebrow { color: var(--brass-deep); }
.tailor-copy h2 { font-family: "Instrument Serif", serif; font-size: clamp(60px, 8vw, 126px); line-height: .87; }
.tailor-copy h2 em { color: var(--brass-deep); }
.tailor-copy > p:last-child { max-width: 540px; margin: 38px 0 0 auto; padding: 17px 19px; border: 1px solid rgba(11,11,13,.1); border-radius: 15px; background: rgba(244,241,234,.7); box-shadow: 0 12px 34px rgba(39,31,20,.06); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); font-size: 17px; }

.tailor-scroll { position: relative; height: calc(100vh + 2300px); height: calc(100svh + 2300px); }
.tailor-sticky { position: sticky; top: 0; display: flex; flex-direction: column; justify-content: center; height: 100vh; height: 100svh; min-height: 650px; overflow: hidden; }
.stitch-line { width: 100%; height: 1px; border-top: 1px dashed rgba(143,115,64,.5); background-position: var(--tailor-progress) 0; }
.tailor-track { display: flex; gap: 26px; width: max-content; padding: 50px 8vw; transform: translate3d(var(--tailor-x),0,0); will-change: transform; }
.tailor-card { position: relative; display: flex; flex-direction: column; justify-content: space-between; width: min(31vw, 440px); min-width: 360px; height: 540px; padding: 28px; overflow: hidden; border: 1px solid rgba(11,11,13,.16); border-radius: 22px; background: rgba(244,241,234,.68); box-shadow: 0 22px 60px rgba(39,31,20,.08); }
.tailor-number { position: absolute; right: -10px; top: -70px; font-family: "Instrument Serif", serif; font-size: 260px; line-height: 1; color: rgba(11,11,13,.035); }
.card-index { position: relative; z-index: 2; font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: .16em; color: var(--brass-deep); }
.tailor-card svg { position: relative; z-index: 2; width: 75%; margin: auto; }
.tailor-card svg path, .tailor-card svg circle, .tailor-card svg rect { fill: none; stroke: rgba(11,11,13,.66); stroke-width: 1.2; stroke-dasharray: 500; stroke-dashoffset: 500; transition: stroke-dashoffset 1.4s var(--ease-out); }
.tailor-card.is-visible svg path, .tailor-card.is-visible svg circle, .tailor-card.is-visible svg rect { stroke-dashoffset: 0; }
.tailor-card h3 { margin: 0 0 10px; font-family: "Instrument Serif",serif; font-size: 39px; font-weight: 400; line-height: 1; }
.tailor-card p { margin: 0; max-width: 310px; color: rgba(11,11,13,.65); font-size: 14px; }
.tailor-progress { display: flex; align-items: center; gap: 13px; width: min(540px, 60vw); margin: 24px auto 0; color: rgba(11,11,13,.5); font-family: "JetBrains Mono", monospace; font-size: 8px; }
.tailor-progress i { position: relative; flex: 1; height: 1px; background: rgba(11,11,13,.12); }.tailor-progress i::after { content: ""; position: absolute; left: 0; top: 0; width: var(--tailor-progress); height: 1px; background: var(--brass-deep); }

.split-section { display: flex; min-height: 110vh; min-height: 110svh; overflow: hidden; }
.service-panel { position: relative; display: flex; align-items: flex-end; width: 50%; min-height: 880px; padding: 42px; overflow: hidden; transition: width .65s var(--ease-out), filter .65s ease; }
.split-section:has(.service-panel:hover, .service-panel:focus) .service-panel:not(:hover, :focus) { width: 42%; filter: brightness(.72); }
.service-panel:hover, .service-panel:focus { width: 58%; }
.payment-service > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.43) saturate(.82); transform: translate3d(calc(var(--mx) * -7px), calc(var(--my) * -3px), 0) scale(1.06); will-change: transform; }
.payment-service::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,11,13,.12), rgba(11,11,13,.28) 45%, rgba(11,11,13,.82)); pointer-events: none; }
.reservation-service { background: radial-gradient(circle at 70% 20%, rgba(201,168,106,.11), transparent 28%), linear-gradient(145deg,#161619,#08080a); }
.reservation-ambient { position: absolute; inset: 0; opacity: .25; }
.reservation-ambient::before { content: ""; position: absolute; inset: 8%; border: 1px solid rgba(244,241,234,.08); border-radius: 50%; transform: rotate(-22deg); }
.reservation-ambient i { position: absolute; left: 50%; top: 50%; width: calc(var(--i) * 180px + 190px); height: calc(var(--i) * 180px + 190px); border: 1px solid rgba(201,168,106,.13); border-radius: 50%; transform: translate(-50%,-50%); }
.reservation-ambient i:nth-child(1){--i:1}.reservation-ambient i:nth-child(2){--i:2}.reservation-ambient i:nth-child(3){--i:3}
.service-card { position: relative; z-index: 2; width: 100%; max-width: 620px; padding: clamp(25px, 4vw, 44px); border-radius: 24px; }
.service-card h2 { font-size: clamp(48px, 5vw, 78px); }
.service-card > p:not(.eyebrow) { max-width: 550px; color: var(--paper-dim); font-size: 15px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 25px; }
.chip-row span { padding: 8px 11px; border: 1px solid rgba(244,241,234,.13); border-radius: 9999px; background: rgba(255,255,255,.025); color: rgba(244,241,234,.7); font-size: 10px; }
.bill-demo { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px; margin-top: 28px; padding-top: 20px; border-top: 1px dashed rgba(201,168,106,.35); }
.bill-items, .bill-guests { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.bill-items span, .bill-guests span { display: flex; justify-content: space-between; gap: 8px; padding: 7px; border-radius: 7px; background: rgba(255,255,255,.04); font-size: 8px; color: var(--paper-dim); }
.bill-items b, .bill-guests b { color: var(--paper); font-weight: 500; }.bill-arrow { color: var(--brass); }
.week-widget { margin-top: 28px; padding: 17px; border: 1px solid rgba(244,241,234,.1); border-radius: 17px; background: rgba(8,8,10,.3); }
.week-head { display: flex; justify-content: space-between; color: var(--paper-dim); font-size: 9px; }.week-head b { color: var(--brass); font-weight: 400; }
.week-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 5px; margin-top: 17px; }
.week-days > div { display: flex; flex-wrap: wrap; align-content: flex-start; justify-content: center; gap: 3px; min-height: 76px; padding: 8px 4px; border: 1px solid rgba(244,241,234,.07); border-radius: 9px; }
.week-days span, .week-days b { width: 100%; text-align: center; }.week-days span { color: rgba(244,241,234,.35); font-size: 7px; text-transform: uppercase; }.week-days b { font-family: "Instrument Serif",serif; font-size: 19px; font-weight: 400; }
.week-days i { width: 4px; height: 4px; border-radius: 50%; background: var(--brass); opacity: 0; transform: scale(0); transition: opacity .3s ease, transform .3s var(--ease-out); transition-delay: calc(var(--dot-index, 1) * 80ms); }
.week-widget.is-visible .week-days i { opacity: 1; transform: scale(1); }
.week-days i:nth-of-type(2){--dot-index:2}.week-days i:nth-of-type(3){--dot-index:3}.week-days i:nth-of-type(4){--dot-index:4}
.week-days .today { border-color: rgba(201,168,106,.42); background: rgba(201,168,106,.05); }
.next-arrival { display: grid; grid-template-columns: 1fr auto; margin-top: 13px; padding: 12px 3px 0; border-top: 1px solid rgba(244,241,234,.08); }.next-arrival span { color: rgba(244,241,234,.35); font-size: 8px; }.next-arrival strong { grid-row: 2; font-size: 10px; font-weight: 500; }.next-arrival i { grid-row: 1 / 3; grid-column: 2; align-self: center; padding: 5px 8px; border-radius: 9999px; background: rgba(201,168,106,.09); color: var(--brass); font-size: 7px; font-style: normal; }

.proof-section { overflow: hidden; padding: 150px 0; border-top: 1px dashed rgba(201,168,106,.36); }
.marquee { display: flex; flex-direction: column; gap: 10px; transform: rotate(-2deg) scale(1.05); }
.marquee-row { display: flex; width: max-content; white-space: nowrap; animation: marquee 40s linear infinite; }
.marquee-row.reverse { animation-direction: reverse; opacity: .38; }
.marquee:hover .marquee-row { animation-play-state: paused; }
.marquee-row div { font-family: "Instrument Serif", serif; font-size: clamp(42px, 6vw, 92px); font-style: italic; line-height: .92; }
.marquee-row i { margin: 0 .25em; color: var(--brass); }
@keyframes marquee { to { transform: translateX(-50%); } }
.proof-stats { display: grid; grid-template-columns: repeat(3,1fr); width: min(1180px, calc(100% - 64px)); margin: 150px auto 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-stats > div { padding: 44px 30px; text-align: center; }.proof-stats > div + div { border-left: 1px solid var(--line); }
.proof-stats strong { display: block; font-family: "Instrument Serif",serif; font-size: clamp(55px, 6vw, 84px); font-weight: 400; line-height: 1; }.proof-stats strong:first-letter { color: var(--brass); }.proof-stats sup { margin-left: 4px; color: var(--brass); font-size: .28em; font-family: "JetBrains Mono",monospace; text-transform: uppercase; }
.proof-stats p { margin: 13px 0 0; color: var(--paper-dim); font-family: "JetBrains Mono",monospace; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }

.fitting-section { padding: 190px 0 120px; overflow: hidden; }
.fitting-steps { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 5vw; width: min(1200px, calc(100% - 64px)); margin: 110px auto 0; }
.thread-path { position: absolute; z-index: 0; left: 0; top: -22px; width: 100%; height: 180px; overflow: visible; }
.thread-path path { fill: none; stroke: var(--brass); stroke-width: 1; vector-effect: non-scaling-stroke; stroke-dasharray: 1500; stroke-dashoffset: 1500; transition: stroke-dashoffset 1.8s var(--ease-out); }
.fitting-steps.is-visible .thread-path path { stroke-dashoffset: 0; }
.needle-dot { fill: var(--brass); filter: drop-shadow(0 0 6px rgba(201,168,106,.8)); opacity: 0; transition: opacity .3s 1.5s ease; }.fitting-steps.is-visible .needle-dot { opacity: 1; }
.fitting-steps article { position: relative; z-index: 2; padding-top: 80px; }
.fitting-steps article > span { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(201,168,106,.45); border-radius: 50%; background: var(--ink); color: var(--brass); font-family: "JetBrains Mono",monospace; font-size: 8px; }
.fitting-steps h3 { margin: 30px 0 13px; font-family: "Instrument Serif",serif; font-size: 47px; font-weight: 400; line-height: 1; }
.fitting-steps p { max-width: 300px; color: var(--paper-dim); font-size: 14px; }
.fitting-cta { display: flex; align-items: center; justify-content: space-between; gap: 32px; width: min(1200px, calc(100% - 64px)); margin: 120px auto 0; padding: 35px 38px; border-radius: 24px; }
.fitting-cta .eyebrow { display: block; margin-bottom: 8px; color: var(--paper); }.fitting-cta p { margin: 0; color: var(--paper-dim); font-size: 14px; }

.final-cta { display: grid; place-items: center; min-height: 100vh; min-height: 100svh; overflow: hidden; text-align: center; isolation: isolate; }
.footer-plan { position: absolute; z-index: -2; width: min(95vw, 1100px); max-height: 90vh; opacity: .08; transform: scale(var(--footer-plan-scale,1)); }
.footer-plan path, .footer-plan circle, .footer-plan rect { fill: none; stroke: var(--paper); stroke-width: 1; vector-effect: non-scaling-stroke; }
.final-monogram { position: absolute; z-index: -1; width: min(54vw, 680px); opacity: var(--footer-mark-opacity,.05); filter: blur(var(--footer-mark-blur,8px)); transform: scale(var(--footer-mark-scale,.82)); will-change: transform, opacity, filter; }
.final-content { width: min(800px, calc(100% - 40px)); }.final-content h2 { font-family: "Instrument Serif",serif; font-size: clamp(72px, 10vw, 148px); }.final-content > p:not(.eyebrow) { max-width: 570px; margin: 24px auto 35px; color: var(--paper-dim); }

.site-footer { position: relative; padding: 0 max(5vw,32px) 24px; background: var(--ink-2); color: var(--paper); }
.footer-stitch { border-top: 1px dashed rgba(201,168,106,.42); }
.footer-main { display: flex; justify-content: space-between; gap: 70px; padding: 75px 0 100px; }
.footer-brand { display: flex; flex-direction: column; gap: 18px; }.footer-brand img { width: 220px; }.footer-brand span { color: var(--paper-dim); font-family: "Instrument Serif",serif; font-size: 20px; font-style: italic; }
.footer-main nav { display: grid; grid-template-columns: repeat(3,minmax(140px,1fr)); gap: 55px; }.footer-main nav div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }.footer-main nav span { margin-bottom: 8px; color: rgba(244,241,234,.34); font-family: "JetBrains Mono",monospace; font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }.footer-main nav a { color: var(--paper-dim); font-size: 13px; transition: color .2s ease, transform .2s ease; }.footer-main nav a:hover { color: var(--paper); transform: translateX(2px); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(244,241,234,.08); color: rgba(244,241,234,.38); font-family: "JetBrains Mono",monospace; font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }.footer-bottom a { transition: color .2s ease; }.footer-bottom a:hover { color: var(--paper); }.footer-bottom a span { color: var(--brass); }

.word { display: inline-block; opacity: 0; filter: blur(10px); transform: translateY(28px); transition: opacity .66s ease, filter .66s ease, transform .66s var(--ease-out); transition-delay: calc(var(--word-index) * 70ms); }
.is-visible .word { opacity: 1; filter: blur(0); transform: translateY(0); }
.js .reveal { opacity: 0; filter: blur(10px); transform: translateY(24px); transition: opacity .7s ease, filter .7s ease, transform .7s var(--ease-out); }
.js .reveal.from-left { transform: translateX(-60px); }.js .reveal.from-right { transform: translateX(60px); }
.js .reveal.is-visible { opacity: 1; filter: blur(0); transform: translate(0,0); }

.cursor-dot, .cursor-ring { position: fixed; z-index: 999; left: 0; top: 0; pointer-events: none; opacity: 0; will-change: transform; }
.cursor-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--paper); transform: translate3d(var(--cursor-x, -30px), var(--cursor-y, -30px), 0); }
.cursor-ring { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid rgba(201,168,106,.8); border-radius: 50%; transform: translate3d(var(--cursor-ring-x, -40px), var(--cursor-ring-y, -40px), 0) scale(var(--cursor-scale,1)); transition: width .22s var(--ease-out), height .22s var(--ease-out), border-color .2s ease, background-color .2s ease; }
.cursor-ring span { opacity: 0; font-family: "JetBrains Mono",monospace; font-size: 7px; letter-spacing: .1em; text-transform: uppercase; transition: opacity .15s ease; }
.cursor-ring.is-view { width: 62px; height: 34px; border-radius: 999px; background: rgba(11,11,13,.7); backdrop-filter: blur(10px); }.cursor-ring.is-view span { opacity: 1; }
.cursor-ready .cursor-dot, .cursor-ready .cursor-ring { opacity: 1; }

@media (pointer: fine) and (min-width: 800px) {
  body, a, button { cursor: none; }
}

@media (max-width: 1100px) {
  .site-header { width: min(calc(100% - 28px), 850px); }
  .dashboard-scene { width: calc(100% - 38px); }
  .dashboard-shell { inset-inline: 0; }
  .split-card { left: 8px; }.softpos-card { right: 8px; }
  .service-panel { padding: 28px; }
  .service-card { padding: 28px; }
}

@media (max-width: 900px) {
  .nav-shell { grid-template-columns: 1fr auto auto; gap: 8px; }
  .nav-links { display: none; }
  .button-nav { min-height: 40px; }
  .menu-toggle { display: block; position: relative; }
  .hero-plan { width: min(92vw, 900px); }
  .hero-wordmark { width: 90vw; }
  .product-section { padding-top: 130px; }
  .dashboard-scene { height: 980px; margin-top: 90px; }
  .dashboard-shell { grid-template-columns: 58px 1fr; min-height: 670px; }
  .dashboard-grid { grid-template-columns: 1.25fr .85fr; }
  .dashboard-rail { padding-inline: 8px; }
  .service-metrics > span { display: none; }
  .float-card { top: auto; bottom: 30px; }
  .split-card { left: 12%; }.softpos-card { right: 12%; }
  .tailor-copy { width: 90vw; }
  .tailor-card { min-width: 340px; }
  .split-section { flex-direction: column; }
  .service-panel, .service-panel:hover, .service-panel:focus, .split-section:has(.service-panel:hover, .service-panel:focus) .service-panel:not(:hover, :focus) { width: 100%; min-height: 820px; filter: none; }
  .proof-stats { grid-template-columns: 1fr; }.proof-stats > div + div { border-left: 0; border-top: 1px solid var(--line); }
}

@media (max-width: 640px) {
  :root { --mx: 0 !important; --my: 0 !important; }
  .measure-ruler, .cursor-dot, .cursor-ring { display: none; }
  .site-header { top: 10px; width: calc(100% - 20px); }
  .nav-shell { min-height: 50px; padding: 5px 5px 5px 13px; }
  .nav-brand span { font-size: 12px; }.nav-brand img { width: 21px; height: 18px; }
  .button-nav { min-height: 38px; padding: 0 12px; font-size: 11px; }
  .menu-toggle { width: 38px; height: 38px; }
  .preloader-meta { inset-inline: 20px; }.preloader-word { font-size: 42px; }
  .hero-scroll { height: calc(100svh + 2900px); }
  .hero-stage { min-height: 560px; }
  .hero-media { transform: scale(var(--back-scale)); }
  .hero-identity { top: 12%; height: 48%; }
  .hero-wordmark { top: 48%; width: 110vw; max-width: none; }
  .hero-plan { top: 51%; width: 112vw; max-width: none; }
  .hero-copy { bottom: 34px; width: calc(100% - 28px); }
  .hero-copy .eyebrow { font-size: 8px; margin-bottom: 10px; }
  .hero-copy h1 { font-size: clamp(46px, 13vw, 64px); }
  .hero-copy > p:not(.eyebrow) { font-size: 13px; line-height: 1.45; }
  .hero-actions { gap: 7px; }.button { min-height: 44px; padding-inline: 17px; font-size: 12px; }
  .scroll-cue { display: none; }
  .hero-story { width: calc(100% - 30px); }
  .hero-story h2 { font-size: clamp(48px, 13vw, 72px); }
  .hero-story > p:not(.eyebrow) { font-size: 13px; }
  .hero-story dl { margin-top: 24px; }.hero-story dl div { padding: 15px 10px; }.hero-story dt { font-size: 34px; }.hero-story dd { font-size: 7px; }
  .hero-dashboard-bridge { width: 92vw; }.hero-live-caption { bottom: 4vh; font-size: 7px; }
  .section-heading { width: calc(100% - 36px); }
  .section-heading h2 { font-size: clamp(46px, 14vw, 66px); }
  .section-heading > p:last-child { margin-top: 20px; font-size: 14px; }
  .product-section { padding: 105px 0 125px; }
  .dashboard-scene { width: calc(100% - 20px); height: 900px; margin-top: 60px; }
  .dashboard-shell { inset: 0 0 auto; grid-template-columns: 1fr; min-height: 650px; transform: none; }
  .dashboard-rail { display: none; }
  .dashboard-main { padding: 0 12px 12px; }
  .dashboard-topbar { min-height: 68px; }.dashboard-topbar strong { font-size: 16px; }.dashboard-topbar .mono { font-size: 6px; }.service-metrics button { padding-inline: 8px; font-size: 8px; }
  .dashboard-grid { grid-template-columns: 1fr; grid-template-rows: 360px 178px; gap: 9px; padding-top: 10px; }
  .reservations-panel { display: none; }.payments-feed { grid-column: 1; }
  .feed-list { grid-template-columns: 1fr; }.feed-row:nth-child(n+3) { display: none; }
  .mini-floor { height: 278px; }
  .float-card { bottom: 4px; }
  .split-card { left: 6px; width: 240px; padding: 14px; }.split-ring { width: 100px; height: 100px; }.split-ring i { transform: rotate(var(--a)) translateY(-41px); }.guest-totals { display: none; }
  .softpos-card { right: 5px; width: 152px; padding: 13px; }.nfc-mark { width: 85px; height: 85px; margin-block: 7px; }.softpos-card > small { display: none; }
  .tailor-intro { min-height: 105svh; padding: 100px 18px; }
  .tailor-photo-wrap { inset: 7% 0; }.tailor-photo-wrap::after { background: linear-gradient(90deg,rgba(244,241,234,.86),rgba(244,241,234,.24)); }
  .tailor-copy { width: 100%; }.tailor-copy h2 { font-size: clamp(58px, 18vw, 82px); }.tailor-copy > p:last-child { margin-top: 28px; font-size: 14px; }
  .tailor-scroll { height: auto; padding: 74px 0 90px; }
  .tailor-sticky { position: relative; top: auto; height: auto; min-height: 0; overflow: visible; }
  .tailor-track { width: 100%; gap: 14px; padding: 34px 18px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scrollbar-width: none; transform: none !important; }
  .tailor-track::-webkit-scrollbar { display: none; }
  .tailor-card { width: 82vw; min-width: 82vw; height: 470px; padding: 22px; scroll-snap-align: center; }.tailor-number { font-size: 220px; }.tailor-card h3 { font-size: 35px; }
  .tailor-progress { width: calc(100% - 48px); margin-top: 17px; }
  .service-panel, .service-panel:hover, .service-panel:focus, .split-section:has(.service-panel:hover, .service-panel:focus) .service-panel:not(:hover, :focus) { min-height: 780px; padding: 16px; align-items: center; }
  .service-card { padding: 24px 20px; }.service-card h2 { font-size: 52px; }.service-card > p:not(.eyebrow) { font-size: 13px; }
  .bill-demo { grid-template-columns: 1fr; }.bill-arrow { transform: rotate(90deg); text-align: center; }.bill-items, .bill-guests { grid-template-columns: 1fr 1fr; }
  .week-widget { padding: 12px; }.week-head { font-size: 7px; }.week-days { gap: 3px; }.week-days > div { min-height: 66px; padding-inline: 2px; }.week-days b { font-size: 16px; }
  .proof-section { padding: 110px 0; }.marquee-row div { font-size: 48px; }.proof-stats { width: calc(100% - 36px); margin-top: 110px; }.proof-stats > div { padding: 34px 20px; }
  .fitting-section { padding: 120px 0 80px; }.fitting-steps { grid-template-columns: 1fr; gap: 35px; width: calc(100% - 46px); margin-top: 60px; }.thread-path { left: 17px; top: 0; width: 130px; height: 100%; transform: rotate(90deg); transform-origin: 0 0; opacity: .45; }.fitting-steps article { padding: 0 0 0 64px; }.fitting-steps article > span { position: absolute; left: 0; top: 0; }.fitting-steps h3 { margin: 0 0 10px; font-size: 39px; }.fitting-cta { flex-direction: column; align-items: flex-start; width: calc(100% - 36px); margin-top: 75px; padding: 25px; }
  .final-content h2 { font-size: clamp(66px, 20vw, 96px); }.final-content > p:not(.eyebrow) { font-size: 14px; }
  .footer-main { flex-direction: column; padding: 60px 0 70px; }.footer-main nav { grid-template-columns: 1fr 1fr; gap: 35px; }.footer-main nav div:last-child { grid-column: 1 / -1; }.footer-bottom { flex-direction: column; gap: 10px; }
}

@media (max-width: 390px) {
  .nav-brand span { display: none; }
  .hero-actions { flex-direction: column; }.hero-actions .button { width: 210px; }
  .hero-copy { bottom: 24px; }
  .hero-story dl { grid-template-columns: 1fr; }.hero-story dl div { padding: 10px; }.hero-story dt { font-size: 28px; }.hero-story dd { margin-top: 4px; }
  .float-card.split-card { width: 210px; }.float-card.softpos-card { width: 138px; }
  .week-days > div { min-height: 60px; }.week-days span { font-size: 6px; }.week-days b { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .preloader { display: none; }
  .hero-media { transform: scale(var(--back-scale)); }
  .word, .js .reveal { opacity: 1; filter: none; transform: none; }
  .tailor-photo-wrap { clip-path: none; }
  .cursor-dot, .cursor-ring { display: none; }
}
