/* ==========================================================================
   TIME CONSULTING — cinematic homepage
   Same engine as agentcityhq.com: dark film opener that shrinks into a
   monitor → light "paper" workspace → dark close. Payments, not agents.
   ========================================================================== */

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/plus-jakarta-sans-latin.woff2') format('woff2');
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+2013-2014, U+2018-201A, U+201C-201E, U+2026, U+00A3;
}

:root {
  --void:       #010D0B;
  --abyss:      #02201B;
  --field:      #043D33;
  --field-deep: #062E27;
  --paper:      #F2F7F5;
  --white:      #FFFFFF;
  --card:       #E9F1EE;
  --card-2:     #DCE8E3;
  --accent:     #00D4AA;
  --accent-ink: #00997B;
  --mint:       #BFF5E7;
  --mint-2:     #7FF6DC;
  --ink:        #0F2520;
  --ink-h:      #1B3A33;
  --ink-soft:   rgba(15, 37, 32, 0.68);
  --ink-faint:  rgba(15, 37, 32, 0.46);
  --muted:      #9DB5AD;
  --line-l:     rgba(15, 37, 32, 0.10);
  --line-d:     rgba(255, 255, 255, 0.09);
  --glass:      rgba(255, 255, 255, 0.045);
  --sans: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --serif: var(--sans);
  --hand: 'Caveat', 'Segoe Script', cursive;
  --wrap: 1240px;
  --pad: clamp(1.25rem, 5vw, 3.5rem);
  --sec: clamp(5.5rem, 11vw, 10rem);
  --r: 20px;
  --r-lg: 28px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--sans);
  background: var(--abyss);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, video, canvas, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; }
::selection { background: var(--accent); color: var(--abyss); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.015em; }
em.tone { font-style: italic; color: var(--accent-ink); }
.hand { font-family: var(--hand); font-weight: 700; }
.eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-faint); display: inline-flex; align-items: center; gap: 0.6rem;
}
.eyebrow::before { content: ''; width: 22px; height: 6px; border-radius: 2px; background: repeating-linear-gradient(-45deg, var(--accent) 0 5px, var(--field) 5px 10px); }
.dark .eyebrow { color: var(--muted); }

/* film grain */
.grain {
  position: fixed; inset: 0; z-index: 90; pointer-events: none; opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.9s steps(3) infinite;
}
@keyframes grain { 0% { background-position: 0 0; } 33% { background-position: -40px 20px; } 66% { background-position: 30px -50px; } 100% { background-position: 0 0; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem; white-space: nowrap;
  font-weight: 600; font-size: 0.98rem; padding: 0.9rem 1.5rem; border-radius: 14px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s;
  will-change: transform;
}
.btn .arr { display: inline-block; transition: transform .35s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-mint { background: var(--accent); color: var(--abyss); box-shadow: 0 16px 40px -14px rgba(0,212,170,.7); }
.btn-mint:hover { transform: translateY(-2px); box-shadow: 0 22px 50px -14px rgba(0,212,170,.8); }
.btn-ink { background: #10201C; color: #fff; }
.btn-ink:hover { background: var(--abyss); transform: translateY(-2px); }
.btn-ghost-d { color: #fff; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.04); backdrop-filter: blur(8px); }
.btn-ghost-d:hover { background: rgba(255,255,255,.1); }
.btn-ghost-l { color: var(--ink); border: 1px solid var(--line-l); background: #fff; }
.btn-ghost-l:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -20px rgba(2,32,27,.35); }
.btn-sm { padding: 0.62rem 1.1rem; font-size: 0.9rem; border-radius: 11px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80; color: #fff;
  transition: transform .5s var(--ease), background .5s, border-color .5s, color .5s;
}
.nav-in { max-width: 1400px; margin: 0 auto; padding: 1rem var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.logo { display: flex; flex-direction: column; gap: 3px; line-height: 1; }
.logo-word { font-weight: 800; font-size: 1.2rem; letter-spacing: -0.03em; display: flex; align-items: baseline; }
.logo-word .dot { color: var(--accent); }
.logo-tag { display: flex; align-items: center; gap: .4rem; font-size: .54rem; font-weight: 800; letter-spacing: .28em; opacity: .85; }
.hz { width: 26px; height: 7px; border-radius: 2px; flex: none; background: repeating-linear-gradient(-45deg, var(--accent) 0 5px, var(--field) 5px 10px); animation: hzdrift 2.6s linear infinite; }
@keyframes hzdrift { to { background-position: 14.142px 0; } }
.nav-links { display: flex; gap: 1.6rem; align-items: center; }
.nav-links a:not(.btn) { font-size: .92rem; font-weight: 600; opacity: .8; transition: opacity .2s; }
.nav-links a:not(.btn):hover { opacity: 1; }
.nav .btn { padding: .6rem 1.05rem; font-size: .88rem; border-radius: 11px; background: rgba(255,255,255,.92); color: var(--abyss); }
.nav.is-light { color: var(--ink); background: rgba(242,247,245,.78); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4); border-bottom: 1px solid var(--line-l); }
.nav.is-light .btn { background: var(--abyss); color: #fff; }
.nav.is-dark { color: #fff; background: rgba(1,13,11,.6); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--line-d); }
.nav.is-hidden { transform: translateY(-110%); }
.nav-burger { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid currentColor; opacity: .8; }
.nav-burger span { display: block; width: 18px; height: 2px; background: currentColor; margin: 3px auto; border-radius: 2px; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav.open .nav-links { display: flex; position: fixed; inset: 0; background: var(--void); color: #fff; flex-direction: column; justify-content: center; align-items: center; gap: 1.5rem; font-size: 1.3rem; z-index: 90; }
  .nav.open .nav-links a:not(.btn) { font-size: 1.3rem; }
}

/* ======================================================================
   HERO — full-bleed film that shrinks into a monitor as you scroll
   ====================================================================== */
.hero { position: relative; height: 380vh; background: var(--void); color: #fff; }
.hero-stage { position: sticky; top: 0; height: 100svh; overflow: hidden; background: var(--void); }

/* the wall of tickets behind the film */
.wall { position: absolute; inset: 0; z-index: 1; overflow: hidden; opacity: 0; pointer-events: none; }
.wall-in { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: flex; gap: 28px; align-items: center; width: max-content; }
.wall-col { width: 26vw; max-width: 420px; flex: none; position: relative; }
.wall-col.side { height: 130vh; overflow: hidden; }
.wall-track { position: absolute; left: 0; top: 0; width: 100%; display: flex; flex-direction: column; gap: 28px; will-change: transform; }
.wall-col.mid { width: 44vw; max-width: 640px; display: flex; flex-direction: column; align-items: center; gap: 28px; padding-top: 5vh; }
.wall-col.mid .hole { width: 100%; aspect-ratio: 16 / 10; }
.wall-mark { font-weight: 800; letter-spacing: -0.03em; font-size: 1.35rem; opacity: .9; margin-bottom: 4vh; display: flex; align-items: center; gap: .5rem; }
.wall-mark .hz { width: 34px; height: 8px; }
.wall-label { font-size: .64rem; font-weight: 800; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); padding: 0 6px 2px; }

.ticket {
  position: relative; border-radius: 30px; padding: 24px 26px; overflow: hidden;
  background: rgba(10, 24, 22, .78); border: 1px solid var(--line-d);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 10px 40px -20px rgba(0,0,0,.8);
  display: flex; flex-direction: column; justify-content: space-between; gap: 16px;
  opacity: .55; transition: opacity .5s, border-color .5s, box-shadow .5s, transform .5s var(--ease);
}
.ticket .t-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.ticket .t-top .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(0,212,170,.6); animation: pulse 2.4s infinite; display: inline-block; margin-right: .5rem; vertical-align: middle; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(0,212,170,.55);} 70% { box-shadow: 0 0 0 9px rgba(0,212,170,0);} 100% { box-shadow: 0 0 0 0 rgba(0,212,170,0);} }
.ticket h4 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.2rem, 1.5vw, 1.5rem); letter-spacing: -0.01em; line-height: 1.1; color: #fff; }
.ticket .t-meta { display: flex; align-items: center; gap: .6rem; font-size: .84rem; color: rgba(255,255,255,.62); }
.ticket .t-tools { font-size: .72rem; color: rgba(255,255,255,.45); letter-spacing: .02em; }
.ticket .st { font-size: .64rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; padding: .3rem .55rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.55); transition: background .4s, color .4s, border-color .4s; }
.ticket.building .st, .ticket.working .st { background: rgba(0,212,170,.16); border-color: rgba(0,212,170,.4); color: var(--mint-2); }
.ticket.live .st { background: var(--accent); border-color: var(--accent); color: var(--abyss); }
.ticket.building, .ticket.working { opacity: 1; border-color: rgba(0,212,170,.35); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 0 0 1px rgba(0,212,170,.12), 0 20px 60px -30px rgba(0,212,170,.5); }
.ticket.live { opacity: 1; border-color: rgba(127,246,220,.55); }
.ticket .crew-in { display: flex; flex-wrap: wrap; gap: .35rem; min-height: 1.6rem; }
.ticket .crew-in b { display: inline-flex; align-items: center; gap: .3rem; padding: .25rem .55rem; border-radius: 999px; background: rgba(127,246,220,.14); color: var(--mint-2); font-size: .7rem; font-weight: 700; letter-spacing: .06em; animation: crewIn .5s var(--ease) both; }
.ticket .crew-in b::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
@keyframes crewIn { from { opacity: 0; transform: translateY(6px) scale(.96); } to { opacity: 1; transform: none; } }
.ticket.working .dot { background: var(--mint-2); }
.ticket.working h4::after { content: ''; display: inline-block; width: .5em; height: .5em; margin-left: .4em; border-radius: 50%; background: var(--accent); vertical-align: middle; animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: .2; } }

.build-log { width: 100%; margin-top: 3vh; border-radius: 22px; padding: 16px 20px 14px; background: var(--glass); border: 1px solid var(--line-d); box-shadow: inset 0 1px 0 rgba(255,255,255,.07); font-variant-numeric: tabular-nums; }
.build-log .bl-head { display: flex; justify-content: space-between; font-size: .66rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
.build-log .bl-head .dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); margin-right: .45rem; animation: blink 1.1s steps(2) infinite; vertical-align: 1px; }
.build-log ol { list-style: none; display: grid; gap: .3rem; font-size: .84rem; color: rgba(255,255,255,.8); min-height: 5.6rem; }
.build-log li { display: grid; grid-template-columns: 3.2rem 1fr; gap: .6rem; animation: crewIn .45s var(--ease) both; }
.build-log li .t { color: var(--mint-2); font-weight: 700; font-size: .74rem; letter-spacing: .06em; padding-top: .1rem; }
.build-log li b { color: #fff; font-weight: 600; }
.build-log li.done { color: var(--mint-2); }

/* the film */
.film {
  position: absolute; inset: 0; z-index: 2; overflow: hidden; transform-origin: 50% 50%;
  background: radial-gradient(70% 45% at 62% 0%, rgba(120,140,140,.14), transparent 70%), radial-gradient(50% 40% at 70% 60%, rgba(0,212,170,.08), transparent 70%), #0B0F10;
  will-change: transform, border-radius;
  box-shadow: 0 40px 140px rgba(0,0,0,.65);
}
:root { --os-tf: translateX(6%) scale(.92); --os-origin: 100% 50%; }
.film video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: 72% 50%; transform: var(--os-tf); transform-origin: var(--os-origin);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 86%, transparent 100%), linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%); -webkit-mask-composite: source-in;
  mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 86%, transparent 100%), linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%); mask-composite: intersect; }
.film .glow { position: absolute; left: 44%; top: 8%; width: 60%; height: 84%; pointer-events: none; background: radial-gradient(50% 50% at 50% 50%, rgba(0,212,170,.22), transparent 70%); filter: blur(30px); animation: breathe 7s ease-in-out infinite; }
@keyframes breathe { 0%,100% { opacity: .75; transform: scale(1); } 50% { opacity: 1; transform: scale(1.06); } }
.film .veil { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, rgba(5,9,10,.85) 0%, rgba(5,9,10,.15) 30%, rgba(5,9,10,0) 48%), linear-gradient(to right, rgba(5,9,10,.72) 0%, rgba(5,9,10,.3) 32%, rgba(5,9,10,0) 52%); }
.film .vignette { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(130% 100% at 62% 48%, transparent 58%, rgba(2,4,5,.55) 100%); }
/* bokeh motes */
.film .mote { position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(127,246,220,.55), rgba(127,246,220,0) 70%); filter: blur(1px); pointer-events: none; animation: mote 14s ease-in-out infinite; opacity: .6; }
@keyframes mote { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(18px,-42px) scale(1.25); } }

/* HUD — the monitor chrome */
.hud { position: absolute; inset: 0; z-index: 3; pointer-events: none; padding: clamp(1.2rem, 3.2vw, 3rem); font-weight: 500; }
.hud .hud-status { position: absolute; left: clamp(1.2rem, 3.2vw, 3rem); top: clamp(4.6rem, 7vw, 6rem); font-size: clamp(.9rem, 1.3vw, 1.2rem); letter-spacing: -0.01em; color: rgba(236,255,250,.9); display: flex; align-items: center; gap: .6rem; }
.hud .hud-status i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); flex: none; }
.hud .hud-time { position: absolute; right: clamp(1.2rem, 3.2vw, 3rem); top: clamp(4.6rem, 7vw, 6rem); font-size: clamp(.9rem, 1.3vw, 1.2rem); font-variant-numeric: tabular-nums; letter-spacing: .02em; opacity: .8; }
.hud .hud-mark { position: absolute; right: clamp(1.2rem, 3.2vw, 3rem); bottom: clamp(1.2rem, 3.2vw, 3rem); font-weight: 800; letter-spacing: -0.03em; font-size: clamp(1.2rem, 2vw, 1.9rem); opacity: 0; }
.hud .rec { position: absolute; left: clamp(1.2rem, 3.2vw, 3rem); bottom: clamp(1.2rem, 3.2vw, 3rem); font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; opacity: 0; display: flex; align-items: center; gap: .5rem; }
.hud .rec i { width: 8px; height: 8px; border-radius: 50%; background: #FF5C5C; animation: blink 1.2s steps(2) infinite; }

/* hero copy over the film */
.hero-copy { position: absolute; inset: 0; z-index: 7; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 var(--pad) clamp(3rem, 6vh, 5rem); pointer-events: none; }
.hero-copy > * { pointer-events: auto; }
.hero-copy .kicker { font-size: .74rem; letter-spacing: .28em; text-transform: uppercase; font-weight: 700; color: var(--mint-2); display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.2rem; text-shadow: 0 1px 12px rgba(1,13,11,.8); }
.hero-copy .kicker::before { content: ''; width: 26px; height: 7px; border-radius: 2px; background: repeating-linear-gradient(-45deg, var(--accent) 0 5px, transparent 5px 10px); }
.hero-copy h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.2rem, 4.1vw, 4.2rem); line-height: 1.02; letter-spacing: -0.025em; max-width: 11em; text-shadow: 0 2px 24px rgba(1,13,11,.75), 0 0 2px rgba(1,13,11,.6); }
.hero-copy h1 .l { display: block; overflow: hidden; }
.hero-copy h1 .l span { display: block; }
.hero-copy h1 em { font-style: italic; color: var(--mint-2); }
.hero-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-top: 1.8rem; flex-wrap: wrap; max-width: min(620px, 44vw); }
.hero-row p { max-width: 36rem; font-size: clamp(.98rem, 1.2vw, 1.12rem); color: rgba(255,255,255,.82); line-height: 1.55; text-shadow: 0 2px 24px rgba(1,13,11,.75); }
.hero-row p strong { color: #fff; font-weight: 600; }
.hero-ctas { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero-micro { flex-basis: 100%; font-size: .8rem; color: rgba(255,255,255,.62); margin-top: .2rem; }

/* the "your business" field is the CTA */
.site-cta { display: flex; align-items: center; gap: .4rem; width: min(560px, 100%); padding: .35rem .35rem .35rem 1.1rem; border-radius: 16px; background: #fff; color: var(--abyss); box-shadow: 0 18px 50px -18px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.08); transition: box-shadow .35s var(--ease), transform .35s var(--ease); }
.site-cta:focus-within { box-shadow: 0 18px 50px -18px rgba(0,212,170,.55), 0 0 0 2px var(--accent); transform: translateY(-1px); }
.site-cta .sc-label { flex: none; font-size: .64rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-ink); }
.site-cta input { flex: 1; min-width: 0; height: 46px; border: 0; background: transparent; font-size: 1.05rem; font-weight: 600; color: var(--abyss); outline: none; letter-spacing: -0.01em; }
.site-cta input::placeholder { color: rgba(27,58,51,.42); font-weight: 500; }
.site-cta .sc-go { flex: none; display: inline-flex; align-items: center; gap: .45rem; height: 46px; padding: 0 1.1rem; border-radius: 12px; background: var(--abyss); color: #fff; font-weight: 700; font-size: .92rem; white-space: nowrap; transition: background .25s, transform .3s var(--ease); }
.site-cta .sc-go.ready { background: var(--accent); color: var(--abyss); }
.site-cta .sc-go:hover { transform: translateX(2px); }

/* statement on the shrunken film */
.film-state { position: absolute; inset: 0; z-index: 5; display: flex; align-items: center; justify-content: center; text-align: center; opacity: 0; pointer-events: none; padding: 0 8%; }
.film-state p { font-family: var(--serif); font-size: clamp(1.4rem, 3.9vw, 3.6rem); line-height: 1.12; letter-spacing: -0.02em; color: #fff; text-wrap: balance; text-shadow: 0 6px 40px rgba(0,0,0,.5); }
.film-state p em { color: var(--mint-2); }
@media (min-width: 1101px) { .film-state { justify-content: flex-start; text-align: left; padding: 0 0 0 7%; } .film-state p { max-width: 40%; } }

.stage-veil-t, .stage-veil-b { position: absolute; left: 0; right: 0; height: 110px; z-index: 6; pointer-events: none; }
.stage-veil-t { top: 0; background: linear-gradient(to bottom, rgba(1,13,11,.95), transparent); }
.stage-veil-b { bottom: 0; background: linear-gradient(to top, rgba(1,13,11,.95), transparent); }

@media (max-width: 1100px) {
  .hero-row { max-width: none; }
  :root { --os-tf: translateY(-22%) scale(.78); --os-origin: 50% 50%; }
  .film video { object-position: 50% 50%; -webkit-mask-image: radial-gradient(closest-side at 50% 50%, #000 55%, transparent 100%); mask-image: radial-gradient(closest-side at 50% 50%, #000 55%, transparent 100%); }
  .film .veil { background: linear-gradient(to top, rgba(5,9,10,.95) 0%, rgba(5,9,10,.7) 45%, rgba(5,9,10,0) 65%); }
  .film .glow { left: 20%; width: 60%; top: 0; height: 60%; }
}
@media (max-width: 860px) {
  .hero { height: 330vh; }
  .wall-in { flex-direction: column; gap: 14px; }
  .wall-col.side { height: 196px; width: 100vw; }
  .wall-col.mid { width: 74vw; gap: 10px; }
  .wall-col.mid .hole { border-radius: 18px; box-shadow: 0 0 0 1px rgba(127,246,220,.3), 0 0 0 7px rgba(255,255,255,.03), 0 30px 70px -26px rgba(0,212,170,.55); }
  .wall-track { flex-direction: row; width: max-content; gap: 12px; }
  .wall-track .ticket { width: 66vw; }
  .wall .ticket h4 { font-size: 1.05rem; }
  .wall-mark, .wall-label { display: none; }
  .build-log { margin-top: 0; padding: 10px 14px 10px; border-radius: 16px; }
  .build-log .bl-head { font-size: .56rem; margin-bottom: .45rem; }
  .build-log ol { min-height: 2.9rem; font-size: .74rem; gap: .2rem; }
  .build-log li { grid-template-columns: 2.6rem 1fr; }
  .build-log li:nth-last-child(n+3) { display: none; }
  .film-state { display: none; }
  .hud .hud-mark, .hud .rec, .hud .hud-status, .hud .hud-time { display: none; }
  .hero-copy h1 { font-size: clamp(1.9rem, 8.4vw, 3rem); max-width: none; }
  .hero-copy .kicker, .hero-micro { display: none; }
}
@media (max-width: 700px) {
  :root { --os-tf: translateY(-34%) scale(1.35); }
  .film video { -webkit-mask-image: radial-gradient(ellipse 50% 16% at 50% 50%, #000 50%, transparent 100%); mask-image: radial-gradient(ellipse 50% 16% at 50% 50%, #000 50%, transparent 100%); }
}
@media (max-width: 700px) and (max-height: 800px) {
  .hero-copy { padding-bottom: 1.4rem; }
  .hero-copy h1 { font-size: 1.8rem; }
  .hero-row p { font-size: .9rem; line-height: 1.45; }
  .hero-row { gap: 1rem; }
}
@media (max-width: 640px) { .site-cta { flex-wrap: wrap; padding: .5rem; } .site-cta .sc-label { display: none; } .site-cta input { width: 100%; padding: 0 .6rem; } .site-cta .sc-go { width: 100%; justify-content: center; } }

/* ======================================================================
   LIGHT ZONE
   ====================================================================== */
.light { background: var(--paper); color: var(--ink); position: relative; }
.dawn { background: linear-gradient(180deg, var(--accent) 0%, rgba(0,212,170,.32) 18%, rgba(242,247,245,0) 46%), var(--paper); }
.dark { background: var(--void); color: #fff; position: relative; }
.sec-head { max-width: 46rem; }
.sec-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.4rem, 5.2vw, 4.6rem); line-height: 1.02; letter-spacing: -0.025em; color: var(--ink-h); margin-top: 1rem; text-wrap: balance; }
.sec-head p { margin-top: 1.2rem; font-size: clamp(1.02rem, 1.3vw, 1.16rem); color: var(--ink-soft); max-width: 40rem; }
.sec-head .row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; }
.dark .sec-head h2 { color: #fff; }
.dark .sec-head p { color: rgba(255,255,255,.7); }

/* ---------- The review: sheet + three Teya cards ---------- */
.found { padding: var(--sec) 0 0; overflow: visible; }
.found-head { text-align: center; max-width: 52rem; margin: 0 auto; }
.found-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.3rem, 5vw, 4.4rem); line-height: 1.04; letter-spacing: -0.025em; color: var(--ink-h); margin-top: 1rem; text-wrap: balance; }
.found-stage { position: relative; display: grid; grid-template-columns: 1fr minmax(320px, 520px) 1fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; margin-top: clamp(2.5rem, 6vw, 5rem); min-height: 560px; padding-bottom: 3.5rem; }
.found-side h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 2.2vw, 2rem); letter-spacing: -0.015em; color: var(--ink-h); line-height: 1.1; }
.found-side p { margin-top: .8rem; color: var(--ink-soft); font-size: .98rem; max-width: 24rem; }
.found-side .btn { margin-top: 1.4rem; }
.found-side.right { list-style: none; display: grid; gap: 1rem; align-content: center; font-size: .96rem; color: var(--ink-soft); }
.found-side.right li { display: flex; gap: .8rem; align-items: flex-start; }
.found-side.right li i { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--card-2); position: relative; margin-top: .05rem; }
.found-side.right li i::after { content: ''; position: absolute; left: 7px; top: 9px; width: 10px; height: 6px; border-left: 2px solid var(--accent-ink); border-bottom: 2px solid var(--accent-ink); transform: rotate(-45deg); }
.found-side.right b { color: var(--ink-h); font-weight: 600; }

.sheet-wrap { position: relative; perspective: 1400px; }
.sheet { position: relative; z-index: 2; border-radius: 26px; background: var(--abyss); color: #fff; padding: 18px 18px 16px; border: 1px solid rgba(255,255,255,.1); box-shadow: 0 60px 120px -50px rgba(2,32,27,.7), inset 0 1px 0 rgba(255,255,255,.08); transform: rotateX(8deg) rotateY(-14deg) rotateZ(-4deg); transform-style: preserve-3d; will-change: transform; }
.sheet-shadow { position: absolute; left: 8%; right: 8%; bottom: -26px; height: 60px; border-radius: 50%; background: radial-gradient(closest-side, rgba(2,32,27,.35), transparent); filter: blur(10px); z-index: 1; }
.sheet-top, .sheet-foot { display: flex; justify-content: space-between; align-items: center; font-size: .66rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.sheet-top span:first-child { display: inline-flex; align-items: center; gap: .5rem; color: var(--mint-2); }
.sheet-chart { display: block; width: 100%; height: auto; margin: 12px 0; border-radius: 14px; border: 1px solid rgba(255,255,255,.08); background: #010D0B; }
.sheet-chart .grid line { stroke: rgba(127,246,220,.12); }
.sheet-chart .bar-old { fill: #0F4A40; }
.sheet-chart .bar-new { fill: #7FF6DC; }
.sheet-chart text { font-family: var(--sans); font-size: 8px; font-weight: 700; letter-spacing: 1.2px; fill: #9DB5AD; }
.sheet-chart text.big { font-size: 13px; letter-spacing: 0; fill: #fff; }
.sheet-chart text.mint { fill: #DFFFF6; }
.sheet-body { display: grid; grid-template-columns: 1.1fr .9fr; gap: 12px; }
.sheet .k { display: block; font-size: .62rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--mint-2); margin-bottom: .3rem; }
.sheet-first { border-radius: 14px; padding: 12px 14px; background: rgba(0,212,170,.1); border: 1px solid rgba(0,212,170,.25); }
.sheet-first b { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; letter-spacing: -0.01em; }
.sheet-first p { font-size: .78rem; color: rgba(255,255,255,.72); margin-top: .3rem; line-height: 1.4; }
.sheet-agents { border-radius: 14px; padding: 12px 14px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); display: flex; flex-wrap: wrap; gap: .35rem; align-content: flex-start; }
.sheet-agents .k { width: 100%; }
.sheet .chip { display: inline-flex; align-items: center; gap: .35rem; padding: .3rem .55rem; border-radius: 999px; background: rgba(127,246,220,.14); color: var(--mint-2); font-size: .68rem; font-weight: 700; letter-spacing: .04em; }
.sheet .chip::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: blink 1.2s steps(2) infinite; }
.sheet-foot { margin-top: 12px; }
.sheet-foot .st { padding: .3rem .6rem; border-radius: 999px; background: var(--accent); color: var(--abyss); }

.found-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: -34px; position: relative; z-index: 3; padding-bottom: var(--sec); }
.found-cards > * { min-width: 0; }
.fcard { border-radius: 22px; background: #fff; border: 1px solid var(--line-l); padding: 26px 26px 22px; display: flex; flex-direction: column; box-shadow: 0 30px 70px -50px rgba(2,32,27,.4); position: relative; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.fcard:hover { transform: translateY(-6px); box-shadow: 0 40px 80px -46px rgba(2,32,27,.45); }
.fcard .n { font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-faint); }
.fcard h3 { font-family: var(--serif); font-weight: 400; font-size: 1.7rem; line-height: 1.08; letter-spacing: -0.015em; color: var(--ink-h); margin-top: .6rem; text-wrap: balance; }
.fcard p { margin-top: .6rem; color: var(--ink-soft); font-size: .93rem; }
.fcard .expand-btn { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: #fff; border: 1px solid var(--line-l); color: var(--ink-h); transition: background .25s, color .25s, transform .3s var(--ease); }
.fcard .expand-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--abyss); transform: scale(1.06); }
.fcard .expand-btn svg { width: 15px; height: 15px; }
.ui { border-radius: 18px; background: #fff; border: 1px solid var(--line-l); padding: 18px; box-shadow: 0 18px 40px -26px rgba(2,32,27,.35); }
.ui-dark { background: var(--abyss); color: #fff; border-color: transparent; }
.fc-ui { margin-top: 1.4rem; padding: 6px 14px; }
.fc-row { display: flex; justify-content: space-between; align-items: center; padding: .6rem 0; border-top: 1px solid var(--line-l); font-size: .9rem; color: var(--ink); }
.fc-row:first-child { border-top: 0; }
.fc-row b { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: .26rem .55rem; border-radius: 6px; }
.fc-row b.ok, .fc-row b.live { background: var(--mint); color: var(--accent-ink); }
.fc-row b.pend { background: #FFF3E0; color: #9A5B00; }
.fc-row b.num { background: transparent; color: var(--ink-h); font-size: .9rem; letter-spacing: 0; text-transform: none; padding: 0; }
.ui-dark .fc-row { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.1); }
.ui-dark .fc-row b.ok { background: rgba(0,212,170,.18); color: var(--mint-2); }
.fc-flow { display: flex; align-items: center; justify-content: space-between; gap: .4rem; padding: 18px 16px; font-size: .84rem; font-weight: 600; }
.fc-flow span { padding: .45rem .7rem; border-radius: 10px; background: rgba(255,255,255,.08); white-space: nowrap; }
.fc-flow span:last-child { background: var(--accent); color: var(--abyss); }
.fc-flow i { flex: 1; height: 2px; background: linear-gradient(90deg, rgba(127,246,220,.2), var(--mint-2)); position: relative; overflow: hidden; border-radius: 2px; }
.fc-flow i::after { content: ''; position: absolute; top: -2px; left: -30%; width: 30%; height: 6px; background: #fff; border-radius: 3px; filter: blur(2px); animation: flow 1.6s linear infinite; }
.fc-flow i:nth-child(4)::after { animation-delay: .5s; } .fc-flow i:nth-child(6)::after { animation-delay: 1s; }
@keyframes flow { to { left: 100%; } }
/* booking slots mini-ui */
.slots { display: flex; gap: 6px; margin-top: 8px; }
.slots span { flex: 1; text-align: center; padding: 7px 0; border-radius: 9px; border: 1px solid var(--line-l); font-size: .78rem; font-weight: 600; color: var(--ink-faint); }
.slots span.on { background: var(--accent); color: var(--abyss); border-color: var(--accent); }
/* repayment bars mini-ui */
.bars { display: grid; gap: 8px; margin-top: 4px; }
.bars div { display: grid; grid-template-columns: 62px 1fr 42px; align-items: center; gap: 8px; font-size: .78rem; color: var(--ink-soft); }
.bars i { height: 7px; border-radius: 100px; background: var(--card); overflow: hidden; display: block; }
.bars i b { display: block; height: 100%; background: linear-gradient(90deg, var(--accent-ink), var(--accent)); border-radius: 100px; }
.bars em { font-style: normal; text-align: right; font-weight: 700; color: var(--ink-h); }
@media (max-width: 1100px) { .found-stage { grid-template-columns: 1fr; gap: 2rem; text-align: center; min-height: 0; } .found-side p { margin-left: auto; margin-right: auto; } .found-side.right { text-align: left; max-width: 26rem; margin: 0 auto; } .sheet-wrap { max-width: 520px; margin: 0 auto; width: 100%; } .found-cards { grid-template-columns: 1fr; margin-top: 2rem; } }
@media (max-width: 640px) { .sheet { transform: none; } .sheet-body { grid-template-columns: 1fr; } .fcard { padding: 22px 18px 18px; } .fc-flow { flex-wrap: wrap; justify-content: center; row-gap: .5rem; padding: 14px 12px; } }

/* ---------- Solutions: editorial hospitality stories ---------- */
.bx { background: var(--paper); padding: clamp(6rem, 13vw, 11rem) 0; }
.bx-head { text-align: center; max-width: 52rem; margin: 0 auto; }
.bx-head .eyebrow { justify-content: center; }
.bx-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(3rem, 7.4vw, 6.6rem); line-height: .95; letter-spacing: -0.03em; color: var(--ink-h); margin-top: 1rem; text-wrap: balance; }
.bx-head h2 em { font-style: italic; }
.bx-head p { margin-top: 1.4rem; font-size: clamp(1.02rem, 1.4vw, 1.2rem); color: var(--ink-soft); }
.bx-pills { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin: clamp(2.6rem, 5vw, 4rem) auto 0; max-width: 60rem; }
.bx-pill { display: inline-flex; align-items: center; gap: .55rem; padding: .78rem 1.2rem; border-radius: 999px; background: #fff; border: 1px solid var(--line-l); font-weight: 600; font-size: .98rem; color: var(--ink-h); box-shadow: 0 14px 30px -24px rgba(2,32,27,.45); transition: background .3s, color .3s, border-color .3s, transform .3s var(--ease); white-space: nowrap; }
.bx-pill i { width: 8px; height: 8px; border-radius: 50%; border: 2px solid var(--accent-ink); transition: background .3s, border-color .3s; }
.bx-pill:hover { transform: translateY(-2px); }
.bx-pill.on { background: var(--abyss); border-color: var(--abyss); color: #fff; }
.bx-pill.on i { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 10px var(--accent); }
.bx-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.12fr 1fr; max-width: 1200px; margin: 1.8rem auto 0; border-radius: 32px; background: #06241e; color: #fff; box-shadow: 0 45px 90px -50px rgba(2,32,27,.55); }
.bx-card > * { min-width: 0; }
.bx-vis { position: relative; min-height: 580px; overflow: hidden; isolation: isolate; background: #203b30; }
.bx-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 48% center; }
.bx-vis::after { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(0,0,0,.48), transparent 42%, rgba(0,0,0,.18)); }
.bx-scene { position: absolute; inset: 32px 30px auto; z-index: 2; text-shadow: 0 2px 18px #0008; }
.bx-scene > span { font-size: .62rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.bx-scene > p { font-size: clamp(1.4rem, 2.2vw, 2rem); font-weight: 650; letter-spacing: -.045em; line-height: 1.15; margin-top: .7rem; text-wrap: balance; }
.bx-device { position: absolute; z-index: 2; bottom: 18px; right: 18px; width: 39%; height: 57%; object-fit: contain; filter: drop-shadow(0 20px 22px #0008); transform: rotate(6deg); }
.bx-device[hidden], .bx-preview[hidden] { display: none; }
.bx-body { align-self: center; padding: clamp(1.8rem, 3.6vw, 3.5rem); }
.bx-kicker { font-size: .66rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--mint-2); }
.bx-title { font-family: var(--sans); font-weight: 700; font-size: clamp(1.85rem, 3vw, 2.75rem); line-height: 1.1; letter-spacing: -.045em; margin-top: 1rem; }
.bx-title em { font-style: normal; color: var(--mint-2); }
.bx-copy { margin-top: 1.4rem; font-size: .95rem; line-height: 1.85; color: #c6d5d0; }
.bx-agents { list-style: none; padding: 0; display: grid; gap: .7rem; margin: 1.6rem 0 0; }
.bx-agent { display: flex; align-items: flex-start; gap: .65rem; font-size: .76rem; color: #dae6e1; line-height: 1.6; }
.bx-agent i { color: var(--mint-2); font-style: normal; }
.bx-open { margin-top: 1.8rem; }
.bx-consultant { font-size: .64rem; line-height: 1.7; color: #aebfb8; margin-top: 1.3rem; max-width: 26rem; }
.bx-preview { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 28px; max-width: 320px; border: 1px solid #ffffffb3; border-radius: 18px; padding: 22px; background: #fcfaf4f2; box-shadow: 0 16px 50px #0004; color: #17352b; backdrop-filter: blur(16px); pointer-events: none; }
.bx-preview small { display: block; font-size: .53rem; font-weight: 750; letter-spacing: .16em; }
.bx-preview strong { display: block; font-size: 1.55rem; font-weight: 650; line-height: 1.2; letter-spacing: -.04em; margin-top: .55rem; }
.bx-ui-row { display: flex; justify-content: space-between; gap: .7rem; border-top: 1px solid #1234; margin-top: 1rem; padding-top: .9rem; font-size: .66rem; }
.bx-ui-action { display: flex; justify-content: space-between; padding: .8rem 1rem; background: #173c30; color: #fff; border-radius: 9px; margin-top: 1rem; font-size: .69rem; font-weight: 650; }
.bx-ui-note { display: block; margin-top: 1rem; font-size: .7rem; }
.bx-card[data-preview="vision"] .bx-preview { background: #12382bcc; border-color: #fff3; color: #fff; }
.bx-card[data-preview="website"] .bx-preview { max-width: none; padding: 0; overflow: hidden; border-radius: 12px; transform: rotate(-3deg); }
.bx-browser { display: flex; gap: 4px; align-items: center; height: 30px; padding: 0 12px; background: #faf8f0; }
.bx-browser i { width: 5px; height: 5px; background: #acb5aa; border-radius: 50%; }
.bx-browser > span { margin: auto; padding-right: 20px; font-size: .47rem; letter-spacing: .18em; }
.bx-web-hero { background: linear-gradient(90deg,#0c241bbf,#0c241b22), url('../media/hospitality-bistro.webp') center / cover; padding: 25px; color: #fff; }
.bx-web-hero strong { font-family: Georgia, serif; font-weight: 400; font-size: 2rem; letter-spacing: -.035em; }
.bx-web-cta { display: inline-block; margin-top: 1.4rem; border-radius: 4px; padding: .6rem .85rem; background: #faf8ee; color: #17352b; font-size: .59rem; font-weight: 650; }
.bx-disclosure { text-align: center; margin: 1.2rem auto 0; font-size: .65rem; line-height: 1.6; color: #5d7067; }
.bx-card.swap .bx-body, .bx-card.swap .bx-scene, .bx-card.swap .bx-preview { animation: bx-in .5s var(--ease) both; }
@keyframes bx-in { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; } }
.bx-pill:focus-visible, .bx-card:focus-visible { outline: 3px solid var(--accent-ink); outline-offset: 5px; }
@media (max-width: 860px) {
  .bx { padding: 5.5rem 0 5rem; }
  .bx-head h2 { font-size: clamp(2.7rem, 12.5vw, 4rem); }
  .bx-pills { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; margin: 2rem calc(var(--pad) * -1) 0; padding: 4px var(--pad) 10px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .bx-pills::-webkit-scrollbar { display: none; }
  .bx-pill { scroll-snap-align: center; padding: .66rem 1rem; font-size: .92rem; }
  .bx-card { grid-template-columns: 1fr; margin-top: 1rem; border-radius: 26px; }
  .bx-vis { min-height: 0; height: clamp(330px, 95vw, 480px); }
  .bx-body { padding: 30px 25px; }
  .bx-title { font-size: clamp(1.9rem, 7.5vw, 2.8rem); }
  .bx-scene { inset: 25px 24px auto; }
  .bx-preview { left: 20px; right: 20px; bottom: 20px; padding: 18px; }
  .bx-scene > span { font-size: .53rem; }
  .bx-open { white-space: normal; }
}
@media (prefers-reduced-motion: reduce) { .bx-card.swap *, .bx-pill { animation: none !important; transition: none !important; } }

/* ---------- The deal: a card that turns in 3D, then splits into three ---------- */
.deal { position: relative; height: 320vh; background: linear-gradient(180deg, var(--paper), #fff 40%, var(--paper)); }
.deal-stage { position: sticky; top: 0; height: 100svh; overflow: hidden; display: grid; place-items: center; perspective: 1600px; }
.deal-script { position: absolute; top: 50%; font-family: var(--hand); font-weight: 700; font-size: clamp(2rem, 4.6vw, 4.2rem); line-height: 1.02; color: var(--ink-h); transform: translateY(-50%); will-change: transform, opacity; }
.deal-script.l { left: 4vw; right: calc(50% + 292px); text-align: right; }
.deal-script.r { left: calc(50% + 292px); right: 4vw; text-align: left; }
.deal-cards { position: relative; width: min(520px, 88vw); aspect-ratio: 1.586; transform-style: preserve-3d; will-change: transform; }
.dcard { position: absolute; inset: 0; border-radius: 22px; padding: 26px 28px; display: flex; flex-direction: column; justify-content: space-between; backface-visibility: visible; will-change: transform, opacity;
  background: radial-gradient(90% 100% at 10% 0%, rgba(127,246,220,.28), transparent 55%), linear-gradient(150deg, #0B4A3F 0%, #043D33 45%, #02201B 100%);
  color: #fff; box-shadow: 0 50px 100px -40px rgba(2,32,27,.7), inset 0 1px 0 rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.1); }
.dcard::after { content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.14) 45%, transparent 60%); background-size: 250% 100%; background-position: 120% 0; animation: sheen 6s ease-in-out infinite; }
@keyframes sheen { 0%, 60% { background-position: 120% 0; } 85%, 100% { background-position: -120% 0; } }
.dcard .dc-top { display: flex; justify-content: space-between; align-items: center; font-weight: 800; letter-spacing: -0.02em; font-size: 1.05rem; }
.dcard .dc-top .nfc { font-size: 1.1rem; opacity: .8; letter-spacing: -2px; }
.dcard .dc-chip { width: 44px; height: 32px; border-radius: 7px; background: linear-gradient(135deg, #E8D48B, #B8952E); box-shadow: inset 0 0 0 1px rgba(0,0,0,.2); position: relative; margin-top: 10px; }
.dcard .dc-chip::before { content: ''; position: absolute; inset: 7px 0; border-top: 1px solid rgba(0,0,0,.25); border-bottom: 1px solid rgba(0,0,0,.25); }
.dcard .dc-num { font-family: ui-monospace, 'SF Mono', Consolas, monospace; letter-spacing: .18em; font-size: 1rem; color: rgba(255,255,255,.85); margin-top: auto; }
.dcard .dc-bot { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; }
.dcard .dc-name { font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; }
.dcard .dc-name span { display: block; font-size: .6rem; letter-spacing: .2em; color: rgba(255,255,255,.55); margin-top: .25rem; }
.dcard .dc-brand { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--mint-2); }
.dcard .dc-stat { position: absolute; left: 18px; bottom: -22px; background: #fff; color: var(--ink-h); border-radius: 14px; padding: .55rem .85rem; font-size: .82rem; font-weight: 700; box-shadow: 0 16px 40px -18px rgba(2,32,27,.5); opacity: 0; transform: translateY(10px); transition: opacity .5s var(--ease), transform .5s var(--ease); white-space: nowrap; }
.dcard .dc-stat b { color: var(--accent-ink); }
.deal.split .dcard .dc-stat { opacity: 1; transform: none; }
.dcard.side { transform: scale(.72); opacity: 0; }
.deal-cap { position: absolute; bottom: clamp(1.4rem, 5vh, 3rem); left: 0; right: 0; text-align: center; padding: 0 var(--pad); color: var(--ink-soft); font-size: .95rem; opacity: 0; transform: translateY(8px); }
.deal-cap b { color: var(--ink-h); }
@media (max-width: 860px) {
  .deal { height: 260vh; }
  .deal-script { font-size: clamp(1.6rem, 7vw, 2.4rem); white-space: nowrap; }
  .deal-script.l { left: 4vw; right: auto; top: 22%; text-align: left; } .deal-script.r { right: 4vw; left: auto; top: 79%; }
  .deal-cards { width: min(420px, 78vw); }
  .dcard { padding: 18px 20px; border-radius: 16px; }
  .dcard .dc-stat { left: 10px; bottom: -18px; font-size: .74rem; }
  .dcard .dc-name { font-size: .7rem; letter-spacing: .16em; }
  .dcard .dc-name span { font-size: .5rem; letter-spacing: .1em; }
  .dcard .dc-brand { font-size: 1rem; }
}

/* ---------- Going direct vs Time Consulting ---------- */
.ow { padding: var(--sec) 0; }
.ow-grid { position: relative; margin-top: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.ow-card { background: #fff; border: 1px solid var(--line-l); border-radius: var(--r); padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: 0 30px 70px -50px rgba(2,32,27,.4); }
.ow-pill { display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: .06em; border-radius: 999px; padding: .35rem .95rem; margin-bottom: .9rem; text-transform: uppercase; }
.ow-old .ow-pill { background: rgba(2,32,27,.07); color: var(--ink-soft); }
.ow-new .ow-pill { background: rgba(0,212,170,.16); color: var(--accent-ink); }
.ow-card h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 2.4vw, 2rem); letter-spacing: -0.015em; line-height: 1.1; margin-bottom: 1.2rem; color: var(--ink-h); }
.ow-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.ow-item { display: flex; gap: .75rem; align-items: flex-start; background: rgba(2,32,27,.025); border: 1px solid var(--line-l); border-radius: 12px; padding: .85rem 1rem; font-size: .95rem; font-weight: 500; line-height: 1.5; }
.ow-item .ic { flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; font-weight: 800; font-size: .82rem; margin-top: .1rem; }
.ow-old .ic { background: rgba(192,57,43,.1); color: #c0392b; }
.ow-new .ic { background: rgba(0,212,170,.16); color: var(--accent-ink); }
.ow-old .ow-item { color: var(--ink-faint); }
.ow-vs { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 2; width: 64px; height: 64px; border-radius: 50%; background: #fff; border: 3px solid var(--accent); display: grid; place-items: center; font-weight: 800; font-size: 1.05rem; box-shadow: 0 30px 60px -30px rgba(2,32,27,.5); }
.ow-note { position: absolute; top: -18px; left: 26px; transform: rotate(-3deg); z-index: 2; font-family: var(--hand); font-weight: 700; font-size: 1.4rem; color: var(--ink-h); }
.ow-old { position: relative; }
@media (max-width: 860px) { .ow-grid { grid-template-columns: 1fr; } .ow-vs { position: static; transform: none; margin: -.4rem auto; } }

/* ---------- THE LINE — statement in, savings out (pinned, scrubbed) ---------- */
.line-sec { position: relative; height: 520vh; background: linear-gradient(180deg, var(--paper) 0%, #fff 40%, var(--paper) 100%); }
.line-stage { position: sticky; top: 0; height: 100svh; overflow: hidden; }
.line-head { position: absolute; left: var(--pad); top: clamp(5rem, 10vh, 7rem); z-index: 4; max-width: 34rem; }
.line-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.2rem, 4.6vw, 4.2rem); line-height: 1; letter-spacing: -0.025em; color: var(--ink-h); margin-top: .9rem; }
.line-head .price { margin-top: 1rem; display: flex; align-items: baseline; gap: .7rem; flex-wrap: wrap; color: var(--ink-soft); font-size: .95rem; }
.line-head .price b { font-family: var(--serif); font-weight: 400; font-size: 2.2rem; color: var(--ink-h); letter-spacing: -0.03em; }
.line-head p { margin-top: .9rem; color: var(--ink-soft); font-size: 1rem; max-width: 30rem; }
.line-head .row { margin-top: 1.2rem; display: flex; gap: .7rem; flex-wrap: wrap; }
.line-svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.line-svg .track-ghost { fill: none; stroke: rgba(15,37,32,.1); stroke-width: 10; stroke-linecap: round; }
.line-svg .track { fill: none; stroke: url(#trackGrad); stroke-width: 10; stroke-linecap: round; }
.line-svg .rail { fill: none; stroke: rgba(255,255,255,.9); stroke-width: 2; stroke-dasharray: 2 14; stroke-linecap: round; }
.line-svg .stn { fill: #fff; stroke: var(--ink-h); stroke-width: 4; r: 9; transition: fill .4s, stroke .4s; }
.line-svg .stn.on { fill: var(--accent); stroke: var(--abyss); }
.line-svg .stn-halo { fill: none; stroke: var(--accent); stroke-width: 2; opacity: 0; r: 18; transition: opacity .4s; }
.line-svg .stn-halo.on { opacity: .7; animation: halo 2s var(--ease) infinite; }
@keyframes halo { 0% { r: 12; opacity: .8; } 100% { r: 30; opacity: 0; } }
.train { position: absolute; z-index: 3; left: 0; top: 0; width: 86px; height: 22px; margin: -11px 0 0 -43px; will-change: transform; }
.train .body { position: absolute; inset: 0; border-radius: 12px; background: linear-gradient(180deg, #fff, #DCE8E3); box-shadow: 0 8px 30px -8px rgba(0,153,123,.7), 0 0 0 2px var(--abyss) inset; }
.train .body::before { content: ''; position: absolute; left: 10px; right: 10px; top: 6px; height: 5px; border-radius: 4px; background: repeating-linear-gradient(90deg, var(--abyss) 0 8px, transparent 8px 13px); opacity: .6; }
.train .lamp { position: absolute; right: -6px; top: 50%; width: 10px; height: 10px; margin-top: -5px; border-radius: 50%; background: var(--mint-2); box-shadow: 0 0 18px 6px rgba(0,212,170,.6); }
.train .glow { position: absolute; left: 50%; top: 50%; width: 220px; height: 60px; transform: translate(-50%, -50%); background: radial-gradient(closest-side, rgba(0,212,170,.32), transparent); pointer-events: none; }
.station { position: absolute; z-index: 4; width: min(340px, 42vw); opacity: 0; transform: translateY(24px); pointer-events: none; will-change: transform, opacity; }
.station .card { border-radius: var(--r); background: #fff; border: 1px solid var(--line-l); padding: 22px 24px; box-shadow: 0 30px 60px -36px rgba(2,32,27,.45); }
.station .n { font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--accent-ink); }
.station h3 { font-family: var(--serif); font-weight: 400; font-size: 1.7rem; letter-spacing: -0.02em; line-height: 1.05; margin-top: .4rem; color: var(--ink-h); }
.station p { font-size: .9rem; color: var(--ink-soft); margin-top: .5rem; }
.station .card .btn { margin-top: 1rem; }
.station.on { opacity: 1; transform: translateY(0); pointer-events: auto; }
.line-progress { position: absolute; left: var(--pad); bottom: clamp(1.4rem, 4vh, 2.6rem); z-index: 4; display: flex; gap: 1.2rem; align-items: center; font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); }
.line-progress span { transition: color .3s; }
.line-progress span.on { color: var(--ink-h); }
.line-progress span.done { color: var(--accent-ink); }
.line-mobile { display: none; }
@media (max-width: 860px) {
  .line-sec { height: auto; background: var(--paper); padding: var(--sec) 0; }
  .line-stage { position: static; height: auto; overflow: visible; padding: 0 var(--pad); }
  .line-head { position: static; max-width: none; }
  .line-svg, .train, .station, .line-progress { display: none; }
  .line-mobile { display: grid; gap: 14px; margin-top: 2.4rem; position: relative; padding-left: 1.6rem; }
  .line-mobile::before { content: ''; position: absolute; left: 6px; top: 12px; bottom: 12px; width: 4px; border-radius: 4px; background: linear-gradient(180deg, var(--accent), var(--field)); }
  .line-mobile .card { border-radius: var(--r); background: #fff; border: 1px solid var(--line-l); padding: 20px; position: relative; }
  .line-mobile .card::before { content: ''; position: absolute; left: -1.6rem; top: 24px; width: 12px; height: 12px; margin-left: 2px; border-radius: 50%; background: #fff; border: 3px solid var(--ink-h); }
  .line-mobile .n { font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--accent-ink); }
  .line-mobile h3 { font-family: var(--serif); font-weight: 400; font-size: 1.6rem; margin-top: .3rem; color: var(--ink-h); }
  .line-mobile ul { list-style: none; margin-top: .6rem; font-size: .88rem; color: var(--ink-soft); display: grid; gap: .25rem; }
  /* metro switchback when JS is on */
  .line-sec.m-journey { height: 420vh; padding: 0; background: linear-gradient(180deg, var(--paper), #fff 50%, var(--paper)); }
  .line-sec.m-journey .line-stage { position: sticky; top: 0; height: 100svh; overflow: hidden; padding: 0; }
  .line-sec.m-journey .line-head { position: absolute; left: var(--pad); right: var(--pad); top: 76px; max-width: none; }
  .line-sec.m-journey .line-head h2 { font-size: 2.3rem; margin-top: .6rem; }
  .line-sec.m-journey .line-head .price { margin-top: .5rem; font-size: .8rem; gap: .5rem; }
  .line-sec.m-journey .line-head .price b { font-size: 1.6rem; }
  .line-sec.m-journey .line-head p, .line-sec.m-journey .line-head .row { display: none; }
  .line-sec.m-journey .line-svg, .line-sec.m-journey .train { display: block; }
  .line-sec.m-journey .line-svg .track, .line-sec.m-journey .line-svg .track-ghost { stroke-width: 8; }
  .line-sec.m-journey .line-svg .stn { r: 8; }
  .line-sec.m-journey .line-svg .stn-label { font: 700 10px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; fill: var(--ink-faint); text-anchor: middle; transition: fill .4s; }
  .line-sec.m-journey .line-svg .stn-label.on { fill: var(--accent-ink); }
  .line-sec.m-journey .train { width: 64px; height: 18px; margin: -9px 0 0 -32px; }
  .line-sec.m-journey .station { display: block; left: var(--pad); right: var(--pad); width: auto; transform: translateX(40px); transition: opacity .5s var(--ease), transform .6s var(--ease); }
  .line-sec.m-journey .station.on { transform: none; }
  .line-sec.m-journey .station .card { padding: 18px 18px 16px; }
  .line-sec.m-journey .station h3 { font-size: 1.55rem; }
  .line-sec.m-journey .station p { font-size: .88rem; }
  .line-sec.m-journey .line-progress, .line-sec.m-journey .line-mobile { display: none; }
}
@media (max-width: 860px) and (max-height: 720px) { .line-sec.m-journey .line-head { top: 66px; } .line-sec.m-journey .line-head h2 { font-size: 1.95rem; } .line-sec.m-journey .station p { display: none; } }

/* ---------- Card machines — dark band with the terminal film ---------- */
.machine { padding: var(--sec) 0; overflow: hidden; }
.machine-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; position: relative; z-index: 2; }
.rotor { display: inline-grid; vertical-align: bottom; height: 1.05em; overflow: hidden; }
.rotor span { grid-area: 1 / 1; display: block; color: var(--mint-2); font-style: italic; opacity: 0; transform: translateY(110%); }
.rotor span.on { opacity: 1; transform: translateY(0); transition: transform .7s var(--ease), opacity .4s; }
.rotor span.out { opacity: 0; transform: translateY(-110%); transition: transform .7s var(--ease), opacity .4s; }
.mstack { display: grid; gap: 14px; margin-top: 2rem; }
.mcard { border-radius: 22px; padding: 20px 22px; background: var(--glass); border: 1px solid var(--line-d); box-shadow: inset 0 1px 0 rgba(255,255,255,.07); display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; transition: border-color .4s, background .4s; }
.mcard:hover { border-color: rgba(0,212,170,.35); background: rgba(0,212,170,.05); }
.mcard .n { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; color: var(--mint-2); }
.mcard h3 { font-family: var(--serif); font-weight: 400; font-size: 1.45rem; margin-top: .3rem; letter-spacing: -0.015em; }
.mcard p { margin-top: .3rem; font-size: .9rem; color: rgba(255,255,255,.66); }
.mcard .price { font-family: var(--serif); font-size: 1.5rem; color: #fff; white-space: nowrap; }
.mcard .price small { display: block; font-family: var(--sans); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); text-align: right; }
.term-media { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 5; background: #06302A; box-shadow: 0 60px 120px -50px rgba(0,212,170,.45), inset 0 0 0 1px rgba(255,255,255,.08); }
.term-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.term-media .tag { position: absolute; left: 18px; bottom: 18px; padding: .5rem .8rem; border-radius: 10px; background: rgba(1,13,11,.7); color: #fff; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; backdrop-filter: blur(8px); display: flex; align-items: center; gap: .5rem; }
.term-float { position: absolute; background: #fff; color: var(--ink-h); border-radius: 14px; padding: .6rem .9rem; font-size: .82rem; font-weight: 700; box-shadow: 0 20px 50px -20px rgba(0,0,0,.6); white-space: nowrap; }
.term-float b { color: var(--accent-ink); }
.term-float.a { top: 8%; right: -6%; animation: bob 5s ease-in-out infinite; }
.term-float.b { bottom: 20%; left: -8%; animation: bob 5s ease-in-out infinite 1.4s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (max-width: 960px) { .machine-grid { grid-template-columns: 1fr; } .term-media { max-width: 420px; margin: 0 auto; aspect-ratio: 4 / 5; } .term-float.a { right: 0; } .term-float.b { left: 0; } }
@media (max-width: 640px) { .mcard { grid-template-columns: 1fr; gap: .5rem; } .mcard .price { display: flex; align-items: baseline; gap: .6rem; } .mcard .price small { text-align: left; } }

/* ---------- Proof strip ---------- */
.proof { padding: var(--sec) 0 calc(var(--sec) * .6); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { padding: 1.6rem 0; border-top: 1px solid var(--line-l); }
.stat b { font-family: var(--serif); font-weight: 400; font-size: clamp(2.4rem, 4vw, 3.6rem); letter-spacing: -0.03em; color: var(--ink-h); line-height: 1; display: block; }
.stat span { display: block; margin-top: .6rem; font-size: .9rem; color: var(--ink-soft); max-width: 16rem; }
.sectors { margin-top: 2.6rem; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.sectors-track { display: flex; gap: 2.6rem; width: max-content; align-items: center; animation: mq 36s linear infinite; }
.sectors-track span { display: inline-flex; align-items: center; gap: .6rem; font-weight: 600; font-size: .95rem; color: var(--ink-soft); white-space: nowrap; }
@keyframes mq { to { transform: translateX(-50%); } }
@media (max-width: 860px) { .proof-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Statement (word reveal) ---------- */
.statement { padding: var(--sec) 0; min-height: 60vh; display: flex; align-items: center; }
.statement p { font-family: var(--serif); font-size: clamp(2rem, 5.4vw, 5rem); line-height: 1.06; letter-spacing: -0.025em; color: var(--ink-h); max-width: 22ch; }
.statement p .w { display: inline-block; opacity: .16; transition: opacity .3s; will-change: opacity; }
.statement p .w.on { opacity: 1; }
.statement p em { color: var(--accent-ink); }

/* ---------- Reviews ---------- */
.reviews { padding: 0 0 var(--sec); }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 3rem; }
.rev { border-radius: 25px; background: var(--card-2); padding: 28px; min-height: 300px; display: flex; flex-direction: column; transition: transform .5s var(--ease), background .4s; }
.rev:hover { transform: translateY(-6px); background: #fff; }
.rev .stars { color: var(--accent-ink); letter-spacing: .12em; font-size: .95rem; }
.rev blockquote { font-family: var(--serif); font-size: 1.35rem; line-height: 1.25; letter-spacing: -0.01em; color: var(--ink-h); margin-top: .9rem; }
.rev .who { margin-top: auto; padding-top: 1.4rem; font-size: .88rem; color: var(--ink-soft); }
.rev .who b { color: var(--ink-h); display: block; }
.rev.feature { background: var(--abyss); color: #fff; }
.rev.feature blockquote { color: #fff; } .rev.feature .who { color: rgba(255,255,255,.7); } .rev.feature .who b { color: #fff; } .rev.feature .stars { color: var(--mint-2); }
.rev .tag { display: inline-block; margin-top: 1rem; padding: .35rem .7rem; border-radius: 999px; background: rgba(0,212,170,.16); color: var(--accent-ink); font-size: .72rem; font-weight: 700; letter-spacing: .06em; }
.rev.feature .tag { color: var(--mint-2); }
@media (max-width: 900px) { .rev-grid { grid-template-columns: 1fr; } .rev { min-height: 0; } }

/* ---------- FAQ — dark ---------- */
.faq { padding: var(--sec) 0; }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; }
.faq h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.4rem, 5vw, 4.4rem); line-height: 1; letter-spacing: -0.025em; }
.faq .lead { margin-top: 1rem; color: rgba(255,255,255,.66); max-width: 26rem; }
.q { border-top: 1px solid var(--line-d); }
.q:last-child { border-bottom: 1px solid var(--line-d); }
.q button { width: 100%; text-align: left; padding: 1.3rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; font-size: 1.12rem; font-weight: 500; }
.q button i { width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); display: grid; place-items: center; flex: none; position: relative; transition: transform .4s var(--ease), background .3s; }
.q button i::before, .q button i::after { content: ''; position: absolute; background: #fff; width: 12px; height: 1.5px; }
.q button i::after { transform: rotate(90deg); transition: transform .4s var(--ease); }
.q.open button i { background: var(--accent); border-color: var(--accent); }
.q.open button i::before, .q.open button i::after { background: var(--abyss); }
.q.open button i::after { transform: rotate(0); }
.q .a { max-height: 0; overflow: hidden; transition: max-height .55s var(--ease); }
.q .a p { padding: 0 3.5rem 1.4rem 0; color: rgba(255,255,255,.7); font-size: 1rem; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } }

/* ---------- Free review form ---------- */
.book { padding: var(--sec) 0; }
.book-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3rem; align-items: start; }
.book h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.4rem, 5vw, 4.4rem); line-height: 1; letter-spacing: -0.025em; color: var(--ink-h); }
.book .lead { margin-top: 1.2rem; color: var(--ink-soft); font-size: 1.05rem; max-width: 28rem; }
.book ul { list-style: none; margin-top: 1.6rem; display: grid; gap: .6rem; color: var(--ink); font-size: .95rem; }
.book li { display: flex; gap: .7rem; align-items: flex-start; }
.book li::before { content: ''; flex: none; margin-top: .5em; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.form-card { border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line-l); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: 0 40px 90px -50px rgba(2,32,27,.4); }
.form-card .fh { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-ink); }
.form-card .fh i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2.2s infinite; display: inline-block; margin-right: .5rem; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.field { display: grid; gap: .35rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .78rem; font-weight: 750; color: var(--ink-h); }
.field input, .field select, .field textarea { width: 100%; min-width: 0; color: var(--ink); background: #fff; border: 1px solid rgba(15,37,32,.16); border-radius: 12px; padding: .8rem .9rem; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(0,212,170,.22); border-color: var(--accent-ink); }
.form-card .btn { width: 100%; justify-content: center; margin-top: .4rem; }
.form-note { font-size: .78rem; color: var(--ink-faint); text-align: center; margin-top: .8rem; }
.form-status { min-height: 1.4em; font-size: .84rem; font-weight: 650; color: var(--accent-ink); margin-top: .4rem; }
.form-status.err { color: #c0392b; }
@media (max-width: 900px) { .book-grid { grid-template-columns: 1fr; } .field-grid { grid-template-columns: 1fr; } .field.full { grid-column: 1; } }

/* ---------- Footer ---------- */
footer { background: var(--void); color: #fff; padding: 5rem 0 2rem; overflow: hidden; position: relative; }
.foot-top { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; align-items: flex-end; }
.foot-links { display: flex; gap: 1.6rem 2rem; flex-wrap: wrap; font-size: .92rem; color: rgba(255,255,255,.7); }
.foot-links a:hover { color: #fff; }
.foot-mark { margin-top: 3rem; font-weight: 800; letter-spacing: -0.05em; font-size: clamp(3.2rem, 12.5vw, 12.5rem); line-height: .85; color: #fff; opacity: .95; white-space: nowrap; }
.foot-mark .dot { color: var(--accent); }
.foot-disc { margin-top: 2.4rem; font-size: .78rem; line-height: 1.6; color: rgba(255,255,255,.42); max-width: 920px; }
.foot-disc b { color: rgba(255,255,255,.65); font-weight: 600; }
.foot-bottom { margin-top: 1.6rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .8rem; color: rgba(255,255,255,.5); align-items: center; }
.foot-bottom .strap { display: flex; align-items: center; gap: .6rem; font-weight: 800; letter-spacing: .26em; font-size: .68rem; color: rgba(255,255,255,.8); }

/* ---------- reveal utilities ---------- */
[data-rv] { opacity: 0; transform: translateY(28px); }
.no-js [data-rv] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
  [data-rv] { opacity: 1; transform: none; }
  .dcard.side { opacity: 1; transform: none; }
}

/* Dojo enablers — one friendly type system, with the original handwritten accents. */
h1,h2,h3,.bx-title,.bx-word,.station h3,.line-head h2,.mcard h3,.book h2,.faq h2 { font-weight: 750 !important; letter-spacing: -.045em; line-height: 1.1; }
em.tone,.hero-copy h1 em,.film-state em { font-family: var(--hand); font-weight: 600; font-style: normal; letter-spacing: -.025em; }
.hero-copy h1 { font-size: clamp(3.2rem,5.3vw,5.6rem); max-width: 12ch; }
.hero-copy h1 .l { padding-bottom: .12em; margin-bottom: -.12em; }
.sec-head h2,.found-head h2,.bx-head h2 { font-size: clamp(2.6rem,5.5vw,4.8rem); line-height: 1.07; }
.hero-row { max-width: 590px; }.hero-copy .kicker { letter-spacing: .12em; }.grain { opacity: .025; }
.nav { top: 16px; left: max(20px,calc((100vw - 1240px)/2)); right: max(20px,calc((100vw - 1240px)/2)); width: auto; border-radius: 20px; color: var(--ink) !important; background: rgba(255,255,255,.97) !important; border: 1px solid rgba(15,37,32,.08); box-shadow: 0 12px 40px rgba(0,0,0,.1); backdrop-filter: blur(18px); }
.nav .nav-in { padding: 14px 22px; }.nav .logo-tag { color: var(--ink-soft); }.nav .btn { background: var(--mint) !important; color: var(--ink) !important; border: 0; border-radius: 13px; }
.product-menu { position: relative; }.product-menu summary { cursor: pointer; list-style: none; padding: 10px 16px; border-radius: 12px; font-size: .92rem; font-weight: 700; }.product-menu summary::-webkit-details-marker { display: none; }.product-menu[open] summary { background: var(--mint); }
.product-drop { position: absolute; top: calc(100% + 18px); left: 50%; transform: translateX(-50%); width: 365px; padding: 14px; border-radius: 22px; background: #fff; box-shadow: 0 24px 60px rgba(0,0,0,.18); color: var(--ink); }
.product-drop a { display: flex; align-items: center; gap: 14px; padding: 10px; border-radius: 16px; opacity: 1 !important; }.product-drop a:hover { background: var(--paper); }.product-drop img,.menu-art { width: 58px; height: 62px; border-radius: 12px; object-fit: cover; background: var(--paper); flex: none; }.menu-art { display: grid; place-items: center; font-size: 26px; }.product-drop small { display: block; font-size: .7rem; color: var(--ink-soft); font-weight: 500; }.product-drop b { margin-left: auto; border-radius: 50%; background: var(--mint); width: 26px; height: 26px; text-align: center; }
.product-gallery { padding: 90px 0; }.product-gallery h2,.cashback-details h2 { font-size: clamp(2.5rem,5vw,4.6rem); margin: 18px 0; }.product-gallery .wrap > p { max-width: 640px; color: var(--ink-soft); }
.product-rail { display: grid; grid-auto-flow: column; grid-auto-columns: min(320px,80vw); gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 40px max(var(--pad),calc((100vw - 1240px)/2 + var(--pad))) 20px; scrollbar-width: thin; }
.product-tile { position: relative; min-height: 470px; border-radius: 26px; overflow: hidden; color: #fff; scroll-snap-align: center; background: var(--field-deep); transition: transform .25s; }.product-tile:hover { transform: translateY(-6px); }
.product-tile > img { position: absolute; width: 100%; height: 100%; object-fit: cover; }.product-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 20%,rgba(1,13,11,.95) 85%); }.product-tile > div { position: absolute; z-index: 1; bottom: 0; padding: 26px; }.product-tile span { font-size: .72rem; opacity: .85; }.product-tile h3 { font-size: 1.55rem; margin: 7px 0 12px; }.product-tile p { font-size: .88rem; line-height: 1.5; color: #e3ece8; }.product-tile b { display: inline-block; margin-top: 20px; padding: 8px 14px; border-radius: 30px; background: #fff; color: var(--ink); font-size: .72rem; }.terminal-tile > img { object-fit: contain; object-position: center top; height: 75%; }.rewards-tile > img { object-fit: contain; object-position: center top; background: #bff5e7; }
.terminal-product { width: 100%; height: 100%; object-fit: contain; padding: 22px; }.term-media { background: radial-gradient(ellipse at 50% 45%,#1b5145,#010d0b 75%); }.dojo-word { font-size: 2.2rem; font-style: italic; }.dcard .dc-brand { font-family: var(--hand); }.deal-cap a { text-decoration: underline; }.dcard { backface-visibility: hidden; }.deal-cards::before { content: 'Dojo × Capital on Tap'; position: absolute; inset: 0; border-radius: 22px; display: grid; place-items: center; background: linear-gradient(145deg,#0b4a3f,#02201b); color: #bff5e7; font-size: 1.6rem; font-weight: 700; transform: rotateY(180deg); backface-visibility: hidden; }
.cashback-details { padding: 70px 0 90px; text-align: center; }.cashback-details .wrap { max-width: 900px; }.cashback-details p { margin: 20px auto; color: var(--ink-soft); }.cashback-details .offer-small { font-size: .8rem; }.offer-small a { text-decoration: underline; }.cashback-details .btn { margin-top: 12px; }
.hospitality-story { display: grid; grid-template-columns: 1.2fr 1fr; border-radius: 28px; overflow: hidden; background: #fff; }.hospitality-story > img { width: 100%; height: 100%; min-height: 400px; object-fit: cover; }.hospitality-story > div { padding: clamp(28px,4vw,56px); }.hospitality-story h3 { font-size: clamp(2rem,3vw,3rem); margin: 20px 0; }.hospitality-story p { color: var(--ink-soft); margin-bottom: 26px; }.rev h3 { font-size: 1.5rem; margin: 20px 0 14px; }.rev p { color: var(--ink-soft); font-size: .95rem; }
:focus-visible { outline: 3px solid #008b70; outline-offset: 5px; }[id] { scroll-margin-top: 110px; }
@media (max-width: 860px) {
  .nav { top: 10px; left: 12px; right: 12px; border-radius: 16px; }.nav .nav-in { padding: 12px 16px; }.nav .logo-tag { font-size: .46rem; }.nav-burger { position: relative; z-index: 102; background: #fff; color: var(--ink); opacity: 1; }
  .nav.open .nav-links { background: #fff; color: var(--ink); inset: 0; padding: 95px 24px 35px; height: 100dvh; overflow-y: auto; justify-content: flex-start; align-items: stretch; gap: 12px; }.nav.open { transform: none !important; backdrop-filter: none; }.nav.open .nav-burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }.nav.open .nav-burger span:nth-child(2) { opacity: 0; }.nav.open .nav-burger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
  .product-menu summary { font-size: 1.2rem; }.product-drop { position: static; width: 100%; transform: none; box-shadow: none; padding: 6px 0; }.nav.open .product-drop a:not(.btn) { font-size: .95rem; }.product-drop img,.menu-art { width: 48px; height: 52px; }.nav-links > a { padding: 10px 16px; }
  .hero-copy h1 { font-size: clamp(2.9rem,11.8vw,4rem); max-width: 12ch; }.hero-copy .kicker { display: none; }.hero-copy { padding-bottom: 34px; }.hero-row p { font-size: .95rem; }.product-gallery { padding: 65px 0; }.product-tile { min-height: 440px; }.hospitality-story { grid-template-columns: 1fr; }.hospitality-story > img { min-height: 230px; max-height: 300px; }.deal-cap { font-size: .78rem; }.dcard .dc-num { font-size: .65rem; }.dcard .dc-brand { font-size: .9rem; }
}

.ow-old .ow-item .ic { background: #e4eee9; color: #0f5142; }.hero-row { width: min(100%,590px); }

/* Launch: comfortable touch controls and uncluttered narrow-screen previews. */
.launch-contact { display: grid; gap: 20px; padding-top: 26px; }
.launch-contact h3 { font-size: clamp(1.5rem,3vw,2rem); }
.launch-contact > p { color: var(--ink-soft); line-height: 1.6; }
.launch-contact .btn { justify-content: center; white-space: normal; text-align: center; }
@media (max-width: 860px) {
  .btn,.product-menu summary { min-height: 44px; }
  .nav-burger { width: 44px; height: 44px; }
  .nav.open .nav-links { padding-bottom: calc(35px + env(safe-area-inset-bottom)); }
}
@media (max-width: 400px) {
  .bx-vis { height: 460px; }
  .bx-scene > p { font-size: 1.25rem; }
  .bx-web-hero { padding: 20px; }
  .bx-web-hero strong { font-size: 1.6rem; }
}
