@font-face { font-family: "Plex Mono"; src: url("/assets/fonts/ibm-plex-mono-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Plex Mono"; src: url("/assets/fonts/ibm-plex-mono-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Plex Mono"; src: url("/assets/fonts/ibm-plex-mono-600.woff2") format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Plex Sans"; src: url("/assets/fonts/ibm-plex-sans-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Plex Sans"; src: url("/assets/fonts/ibm-plex-sans-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Plex Sans"; src: url("/assets/fonts/ibm-plex-sans-600.woff2") format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Fraunces"; src: url("/assets/fonts/fraunces-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Fraunces"; src: url("/assets/fonts/fraunces-600.woff2") format("woff2"); font-weight: 600; font-display: swap; }

/* marsetto-tool app/globals.css tokens — the site is always the dark console */
:root {
  color-scheme: dark;
  --bg: oklch(14% 0.007 265);
  --bg-deep: oklch(11.5% 0.007 265);
  --bg-elev: oklch(16% 0.008 265);
  --surface: oklch(17.5% 0.009 265);
  --surface-2: oklch(20.5% 0.011 265);
  --hairline: oklch(25% 0.010 270);
  --hairline-2: oklch(32% 0.011 270);
  --ink: oklch(83% 0.004 240);
  --ink-hi: oklch(95% 0.004 240);
  --ink-mute: oklch(62% 0.008 270);
  --ink-soft: oklch(72% 0.006 260);
  --accent: oklch(96% 0.24 124);
  --accent-ink: oklch(6.5% 0.005 265);
  --sig-online: #34d399;
  --sig-generating: #4aa3ff;
  --sig-deploying: #ffaa3d;
  --sig-scan: #22d3ee;
  --sig-accepted: #ffd84d;
  --sig-failed: #ff5a4d;
  --mono: "Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --sans: "Plex Sans", ui-sans-serif, system-ui, sans-serif;
  --gut: clamp(16px, 4vw, 64px);
  --top-h: 60px;
  --note-w: clamp(320px, 31vw, 470px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { background: var(--bg); -webkit-text-size-adjust: 100%; }
body { background: var(--bg); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; font-variant-numeric: tabular-nums; overflow-x: hidden; }
a { color: inherit; }
code { font-family: var(--mono); font-size: 0.9em; color: var(--ink-hi); background: var(--surface-2); padding: 1px 5px; border-radius: 3px; }
::selection { background: var(--accent); color: var(--accent-ink); }
.mute { color: var(--ink-mute); }
.ink { color: var(--ink); }
.lime { color: var(--accent); }
.green { color: var(--sig-online); }
.amber { color: var(--sig-deploying); }
.cyan { color: var(--sig-scan); }
.eyebrow { font-family: var(--mono); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); }
.eyebrow.cyan { color: var(--sig-scan); }
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--accent); color: var(--accent-ink); padding: 8px 12px; font-family: var(--mono); }
.skip:focus { left: 8px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ═════ buttons ═════ */
.btn-cta { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-weight: 600; font-size: 15px; letter-spacing: 0.04em; background: var(--accent); color: var(--accent-ink); text-decoration: none; padding: 14px 22px; border-radius: 4px; transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s; box-shadow: 0 0 0 0 oklch(96% 0.24 124 / 0.4); }
.btn-cta:hover { transform: translateY(-1px); box-shadow: 0 0 0 6px oklch(96% 0.24 124 / 0.14), 0 10px 30px oklch(96% 0.24 124 / 0.18); }
.btn-cta:active { transform: translateY(0) scale(.98); }
.btn-cta.small { font-size: 13px; padding: 9px 14px; }
.btn-cta.big { font-size: 18px; padding: 18px 30px; }
.btn-ghost { display: inline-flex; align-items: center; font-family: var(--mono); font-size: 15px; color: var(--ink); text-decoration: none; padding: 13px 20px; border: 1px solid var(--hairline-2); border-radius: 4px; transition: border-color .2s, color .2s; }
.btn-ghost:hover { border-color: var(--ink-mute); color: var(--ink-hi); }

/* ═════ top bar ═════ */
.topbar { position: fixed; z-index: 50; top: 0; left: 0; right: 0; height: var(--top-h); display: flex; align-items: center; gap: 28px; padding: 0 var(--gut); background: oklch(11% 0.007 265 / 0.72); backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2); border-bottom: 1px solid oklch(25% 0.010 270 / 0.7); }
.brand { font-family: var(--mono); font-weight: 500; font-size: 18px; color: var(--ink-hi); text-decoration: none; letter-spacing: -0.01em; }
.brand .d, .d { color: var(--accent); }
.topnav { display: flex; gap: 24px; margin-left: auto; font-size: 14px; }
.topnav a { color: var(--ink-mute); text-decoration: none; transition: color .2s; }
.topnav a:hover { color: var(--ink-hi); }
.progress { position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; }
.progress i { display: block; height: 100%; background: var(--accent); transform-origin: 0 50%; transform: scaleX(0); box-shadow: 0 0 12px oklch(96% 0.24 124 / 0.7); }
@media (max-width: 720px) { .topnav { display: none; } .topbar .btn-cta { margin-left: auto; } }

/* ═════ atmosphere ═════ */
.atmos { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.dots { position: absolute; inset: 0; background-image: radial-gradient(oklch(100% 0 0 / 0.045) 1.2px, transparent 1.2px); background-size: 22px 22px; }
.glow { position: absolute; border-radius: 50%; will-change: transform, opacity; }
.glow-lime { width: 80vw; height: 70vw; left: -30vw; bottom: -40vw; background: radial-gradient(closest-side, oklch(96% 0.24 124 / 0.10), transparent); }
.glow-blue { width: 90vw; height: 70vw; right: -30vw; top: -35vw; background: radial-gradient(closest-side, oklch(60% 0.14 240 / 0.18), transparent); }

/* ═════ STORY — base (no JS): a plain readable document ═════ */
.story { position: relative; }
.stage { position: relative; }
.frame, .chapters, .scroll-cue { display: none; }
.hero { position: relative; padding: calc(var(--top-h) + 12vh) var(--gut) 10vh; }
.hero-scrim { display: none; }
.hero-in { max-width: 820px; position: relative; }
.hero h1 { font-family: var(--mono); font-weight: 500; font-size: clamp(38px, 5.4vw, 88px); line-height: 1.04; letter-spacing: -0.03em; margin-top: 18px; }
.hero h1 span { display: block; }
.hero h1 .l1 { color: var(--ink-hi); }
.hero h1 .l2 { color: var(--accent); }
.hero p { font-size: clamp(16px, 1.35vw, 19px); line-height: 1.6; color: var(--ink-soft); max-width: 580px; margin-top: 24px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.notes { position: relative; padding: 0 var(--gut) 10vh; display: grid; gap: 56px; max-width: 1200px; }

.note { position: relative; max-width: 620px; }
.note .n-num { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); }
.note .n-num b { color: var(--accent); font-weight: 500; }
.note h2 { font-family: var(--mono); font-weight: 500; font-size: clamp(24px, 2.35vw, 38px); line-height: 1.14; letter-spacing: -0.025em; color: var(--ink-hi); margin-top: 14px; text-wrap: balance; }
.note h2.big { font-size: clamp(32px, 3.5vw, 58px); line-height: 1.04; }
.note p { font-size: clamp(15px, 1.1vw, 17px); line-height: 1.65; color: var(--ink-soft); margin-top: 16px; text-wrap: pretty; }
.note p strong { color: var(--ink-hi); font-weight: 500; }
.note p em { font-style: normal; color: var(--ink-hi); }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.chips li { font-family: var(--mono); font-size: 12px; letter-spacing: 0.02em; color: var(--ink-mute); border: 1px solid var(--hairline-2); border-radius: 3px; padding: 5px 9px; background: oklch(14% 0.007 265 / 0.6); }
.chips li:first-child { color: var(--accent); border-color: oklch(96% 0.24 124 / 0.35); }

/* ═════ STORY — motion: pinned stage, scrubbed by scroll ═════ */
.motion .story { height: var(--story-h, 1150vh); }
.motion .stage { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
.motion .frame { display: block; position: absolute; left: 0; top: 0; width: 1600px; height: 1000px; transform-origin: 0 0; will-change: transform; }
.motion .hero { position: absolute; inset: 0; padding: 0; z-index: 5; pointer-events: none; }
.motion .hero-scrim { display: block; position: absolute; inset: 0; background: linear-gradient(90deg, oklch(11% 0.007 265 / 0.96) 0%, oklch(11% 0.007 265 / 0.88) 38%, oklch(11% 0.007 265 / 0) 70%); }
.motion .hero-in { position: absolute; left: var(--gut); top: 50%; transform: translateY(-46%); width: min(760px, 58vw); pointer-events: auto; }
.motion .scroll-cue { display: flex; position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); flex-direction: column; align-items: center; gap: 10px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-mute); }
.scroll-cue i { width: 1px; height: 44px; background: linear-gradient(var(--accent), transparent); animation: cue 1.8s cubic-bezier(.6,0,.2,1) infinite; transform-origin: 50% 0; }
@keyframes cue { 0% { transform: scaleY(0); opacity: 1; } 60% { transform: scaleY(1); opacity: 1; } 100% { transform: scaleY(1); opacity: 0; } }
.motion .notes { position: absolute; inset: 0; padding: 0; display: block; max-width: none; z-index: 6; pointer-events: none; }
.motion .note { position: absolute; top: 50%; width: var(--note-w); max-width: none; opacity: 0; visibility: hidden; pointer-events: auto; }
.motion .note[data-side="left"] { left: var(--gut); }
.motion .note[data-side="right"] { right: var(--gut); }
.motion .note::before { content: ""; position: absolute; left: -22px; top: 4px; width: 2px; height: 44px; background: var(--accent); }
.motion .note[data-side="right"]::before { left: -22px; }
.motion .chapters { display: flex; position: absolute; z-index: 7; left: 50%; bottom: 18px; transform: translateX(-50%); gap: 2px; padding: 4px; background: oklch(12% 0.007 265 / 0.78); border: 1px solid var(--hairline); border-radius: 6px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); opacity: 0; }
.chapters button { all: unset; cursor: pointer; display: flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; color: var(--ink-mute); padding: 7px 10px; border-radius: 4px; transition: color .25s, background .25s; white-space: nowrap; }
.chapters button b { font-weight: 500; color: var(--hairline-2); transition: color .25s; }
.chapters button:hover { color: var(--ink-hi); }
.chapters button.on { background: var(--surface-2); color: var(--ink-hi); }
.chapters button.on b { color: var(--accent); }
.chapters button.done b { color: var(--ink-mute); }
.chapters button:focus-visible { outline: 2px solid var(--accent); }

@media (max-width: 1100px) { .chapters button span { display: none; } .chapters button.on span { display: inline; } }

/* motion · phones & narrow tablets: stage on top, notes below */
@media (max-width: 899px) {
  .motion .hero-scrim { background: linear-gradient(0deg, oklch(11% 0.007 265 / 0.98) 0%, oklch(11% 0.007 265 / 0.9) 50%, oklch(11% 0.007 265 / 0.25) 100%); }
  .motion .hero-in { top: auto; bottom: 90px; transform: none; width: auto; right: var(--gut); }
  .motion .scroll-cue { display: none; }
  .motion .note, .motion .note[data-side] { left: 16px; right: 16px; width: auto; top: var(--notes-top, 55%); padding: 18px 18px 16px; background: oklch(15% 0.008 265 / 0.9); border: 1px solid var(--hairline); border-radius: 6px; }
  .motion .note::before { left: 0; top: 18px; height: 30px; }
  .note h2, .note h2.big { font-size: 21px; margin-top: 10px; }
  .note p { font-size: 14.5px; line-height: 1.55; margin-top: 10px; }
  .chips { margin-top: 12px; gap: 5px; }
  .chips li { font-size: 11px; padding: 4px 7px; }
  .motion .chapters { bottom: 10px; max-width: calc(100vw - 24px); }
  .chapters button { padding: 6px 7px; font-size: 11px; }
}
@media (max-width: 899px) and (max-height: 760px) { .motion .note .chips { display: none; } }

/* ═════ STORY — static (reduced motion): chapters with snapshots ═════ */
.static .notes { gap: 72px; }
.static .note { max-width: none; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); gap: 40px; align-items: center; }
.static .note .note-text { min-width: 0; }
.snap { position: relative; width: 100%; aspect-ratio: 1.6; overflow: hidden; border-radius: 8px; background: var(--bg-deep); }
.snap .canvas { position: absolute; left: 0; top: 0; transform-origin: 0 0; }
@media (max-width: 899px) { .static .note { grid-template-columns: 1fr; gap: 20px; } }

/* ═════ the design canvas (1600 × 1000, px are design px) ═════ */
.canvas { position: relative; width: 1600px; height: 1000px; font-family: var(--sans); color: var(--ink); }
.canvas .eyebrow { font-size: 17px; }
.panel { background: var(--surface); border: 2px solid var(--hairline); border-radius: 5px; }
.pill { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 17px; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 13px; border: 2px solid currentColor; border-radius: 4px; white-space: nowrap; }
.pill .dot { width: 10px; height: 10px; border-radius: 50%; background: currentColor; display: block; }
.pill.grey { color: #a4a4ad; }
.pill.blue { color: var(--sig-generating); }
.pill.amber { color: var(--sig-deploying); }
.pill.green { color: var(--sig-online); }
.pill.lime { color: var(--accent); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; font-family: var(--mono); border: 2px solid var(--hairline-2); border-radius: 4px; color: var(--ink); letter-spacing: 0.06em; white-space: nowrap; }

.win { position: absolute; left: 0; top: 0; width: 1600px; height: 1000px; overflow: hidden; border-radius: 14px; border: 2px solid var(--hairline-2); background: var(--bg); box-shadow: 0 50px 140px oklch(0% 0 0 / 0.6), 0 0 0 1px oklch(0% 0 0 / 0.4); transform-origin: 0 0; }

/* console chrome */
.map { position: absolute; inset: 0; background: #0d1015; transform-origin: 1130px 470px; }
.map svg { position: absolute; left: 0; top: 0; }
.cell { position: absolute; border: 1px solid oklch(80% 0.12 215 / 0.16); }
.cell i { position: absolute; inset: 0; display: block; background: var(--sig-scan); opacity: 0; }
.pin { position: absolute; width: 22px; height: 22px; margin: -11px 0 0 -11px; border-radius: 50%; opacity: 0; }
.pin.lead { background: var(--accent); box-shadow: 0 0 0 5px oklch(96% 0.24 124 / 0.22), 0 0 22px oklch(96% 0.24 124 / 0.6); }
.pin.withsite { width: 15px; height: 15px; margin: -7.5px 0 0 -7.5px; background: #8aa0c8; }
.pin.target { width: 30px; height: 30px; margin: -15px 0 0 -15px; }
.scanlines { position: absolute; inset: 0; background: repeating-linear-gradient(0deg, oklch(0% 0 0 / 0.14) 0 2px, transparent 2px 5px); }
.vig { position: absolute; inset: 0; background: radial-gradient(ellipse at 66% 48%, transparent 42%, oklch(8% 0.006 265 / 0.85) 100%); }

.app-top { position: absolute; z-index: 3; left: 0; right: 0; top: 0; height: 56px; display: flex; align-items: center; gap: 26px; padding: 0 24px; background: oklch(11.5% 0.007 265 / 0.97); border-bottom: 2px solid var(--hairline); font-family: var(--mono); font-size: 18px; }
.app-brand { font-weight: 500; color: var(--ink-hi); font-size: 20px; }
.app-live { display: inline-flex; align-items: center; gap: 10px; color: var(--ink-mute); font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; }
.app-live i { width: 9px; height: 9px; border-radius: 50%; background: var(--sig-online); box-shadow: 0 0 10px var(--sig-online); }
.app-right { margin-left: auto; display: flex; align-items: center; gap: 22px; color: var(--ink-mute); }
.scope { display: inline-flex; border: 2px solid var(--hairline-2); border-radius: 4px; font-size: 14px; }
.scope b, .scope span { padding: 3px 10px; font-weight: 400; }
.scope b { background: var(--surface-2); color: var(--ink); }
.clock { color: var(--ink); }

.app-side { position: absolute; z-index: 3; left: 0; top: 56px; bottom: 0; width: 230px; padding: 22px 12px; background: oklch(12.5% 0.007 265 / 0.97); border-right: 2px solid var(--hairline); }
.side-eyebrow { font-family: var(--mono); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); padding: 0 12px 10px; }
.side-eyebrow.second { padding-top: 26px; }
.nav-item { position: relative; z-index: 1; display: flex; align-items: center; height: 44px; padding: 0 12px; font-size: 18px; color: var(--ink); }
.nav-item b { width: 34px; font-family: var(--mono); font-weight: 400; font-size: 14px; color: var(--ink-mute); }
.nav-item.dim { color: var(--ink-mute); font-size: 16px; }
.badge { margin-left: auto; font-style: normal; font-family: var(--mono); font-size: 13px; padding: 1px 7px; border-radius: 3px; background: var(--surface-2); color: var(--ink); opacity: 0; }
.badge.blue { color: var(--sig-generating); }
.badge.green { color: var(--sig-online); }
.nav-hl { position: absolute; z-index: 0; left: 12px; right: 12px; top: 0; height: 44px; background: var(--surface-2); border-radius: 4px; box-shadow: inset 3px 0 0 var(--accent); }
.side-user { position: absolute; left: 22px; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 15px; color: var(--ink); padding-top: 16px; border-top: 2px solid var(--hairline); }
.side-user .av { width: 30px; height: 30px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; font-weight: 600; }
.side-user i { margin-left: auto; font-style: normal; font-size: 12px; color: var(--ink-mute); }

.scene { position: absolute; inset: 0; z-index: 2; }
.scene.content { left: 230px; top: 56px; padding: 34px 44px; }

/* scan scene */
.scan-top { position: absolute; left: 272px; top: 88px; }
.scan-title { font-family: var(--mono); font-weight: 500; font-size: 38px; margin-top: 8px; color: var(--ink-hi); }
.scan-title .small { font-size: 20px; font-weight: 400; margin-left: 8px; }
.scan-bar { position: absolute; left: 272px; right: 40px; bottom: 34px; height: 118px; display: flex; align-items: center; gap: 64px; padding: 0 38px; background: oklch(11.5% 0.007 265 / 0.93); }
.stat b { display: block; font-family: var(--mono); font-weight: 500; font-size: 40px; color: var(--ink); margin-top: 4px; }
.scan-state { margin-left: auto; position: relative; width: 210px; height: 44px; }
.scan-state .pill { position: absolute; right: 0; top: 0; }
#p-done { opacity: 0; }
.bar-track { position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--hairline); }
#bar-fill { display: block; height: 100%; background: var(--accent); transform-origin: 0 50%; transform: scaleX(0); }

/* calls scene */
.page-head h3 { font-family: var(--mono); font-weight: 500; font-size: 52px; color: var(--ink-hi); letter-spacing: -0.01em; margin-top: 4px; }
.page-head p { font-size: 20px; color: var(--ink-mute); margin-top: 6px; }
.toast { position: absolute; right: 44px; top: 44px; display: flex; align-items: center; gap: 14px; padding: 16px 22px; font-family: var(--mono); font-size: 20px; background: var(--surface-2); border: 2px solid var(--hairline-2); border-radius: 4px; color: var(--ink); box-shadow: 0 20px 50px oklch(0% 0 0 / 0.5); }
.card { position: absolute; left: 44px; right: 44px; top: 238px; height: 590px; padding: 34px 38px; }
.card-a { display: flex; justify-content: space-between; gap: 30px; }
.name-row { display: flex; align-items: center; gap: 20px; }
.card h4 { font-family: var(--mono); font-weight: 500; font-size: 46px; color: var(--ink-hi); letter-spacing: -0.01em; white-space: nowrap; }
.meta { display: flex; align-items: center; gap: 22px; white-space: nowrap; font-family: var(--mono); font-size: 21px; margin-top: 18px; }
.meta .open { color: var(--sig-online); display: inline-flex; align-items: center; gap: 10px; }
.meta .open i { width: 12px; height: 12px; border-radius: 50%; background: var(--sig-online); display: block; }
.meta .cat { letter-spacing: 0.08em; color: var(--ink-mute); }
.meta .rpo { font-size: 16px; color: var(--sig-online); border: 2px solid oklch(78% 0.14 160 / 0.45); padding: 2px 8px; border-radius: 3px; }
.addr { font-family: var(--mono); font-size: 20px; color: var(--ink-mute); margin-top: 14px; display: flex; align-items: center; gap: 16px; }
.chip { font-size: 16px; border: 2px solid var(--hairline-2); border-radius: 4px; padding: 2px 10px; }
.phone-col { display: flex; gap: 12px; align-self: flex-start; }
.btn.lime-o { font-size: 24px; padding: 16px 24px; border-color: var(--accent); color: var(--accent); }
.btn.wa { font-size: 20px; padding: 16px 20px; border-color: oklch(72% 0.15 155); color: oklch(80% 0.15 155); }
.notes-field { margin-top: 26px; font-family: var(--mono); font-size: 19px; color: var(--ink-mute); background: var(--bg-elev); border: 2px solid var(--hairline); border-radius: 4px; padding: 16px 18px; }
.actions { position: absolute; left: 38px; right: 38px; bottom: 34px; height: 104px; display: flex; align-items: center; justify-content: space-between; padding: 0 16px 0 24px; background: var(--bg-elev); border: 2px solid var(--hairline); border-radius: 4px; }
.tpl b { display: block; font-family: var(--mono); font-weight: 500; font-size: 21px; color: var(--ink); margin-top: 4px; }
.btns { display: flex; gap: 12px; }
.actions .btn { height: 70px; font-size: 20px; text-transform: uppercase; padding: 0 24px; }
.btn.red { color: #ff7a6f; border-color: var(--sig-failed); }
.btn.cyan { color: var(--sig-scan); border-color: var(--sig-scan); }
.btn.accept { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); font-weight: 600; }
.actions .btn.accept { width: 330px; font-size: 22px; }
.cursor { position: absolute; left: 0; top: 0; width: 42px; height: 54px; z-index: 5; opacity: 0; filter: drop-shadow(0 6px 10px oklch(0% 0 0 / 0.5)); }

/* pipeline scene */
.rail { position: absolute; left: 44px; right: 44px; top: 222px; display: flex; align-items: center; }
.rail .node { font-size: 18px; padding: 9px 15px; color: rgb(142,143,152); border-color: rgb(64,66,74); }
.rail .link { flex: 1; height: 3px; margin: 0 14px; background: var(--hairline-2); position: relative; }
.rail .link i { position: absolute; inset: 0; display: block; transform-origin: 0 50%; transform: scaleX(0); }
.log { position: absolute; left: 44px; right: 44px; top: 300px; bottom: 34px; padding: 26px 34px; }
.log-head { display: flex; justify-content: space-between; align-items: center; }
.log-right { display: flex; align-items: center; gap: 22px; }
.elapsed { font-family: var(--mono); font-size: 17px; color: var(--ink-mute); letter-spacing: 0.06em; }
.elapsed b { color: var(--ink-hi); font-weight: 500; font-size: 20px; margin-left: 6px; }
.states { position: relative; display: block; width: 210px; height: 42px; }
.states .pill { position: absolute; right: 0; top: 0; opacity: 0; }
.log ul { list-style: none; margin-top: 22px; }
.log li { display: flex; gap: 26px; font-family: var(--mono); font-size: 22px; line-height: 62px; color: var(--ink); white-space: nowrap; border-bottom: 1px solid oklch(25% 0.010 270 / 0.5); opacity: 0; }
.log li .t { color: var(--ink-mute); width: 110px; flex: none; }
.k { width: 24px; flex: none; display: inline-block; }
.k.run { color: var(--sig-generating); }
.k.run.amber { color: var(--sig-deploying); }
.k.ok { color: var(--sig-online); }

/* browser */
.browser { background: #1a1d24; opacity: 0; }
.b-chrome { position: absolute; left: 0; right: 0; top: 0; height: 64px; display: flex; align-items: center; gap: 20px; padding: 0 20px; background: var(--surface); border-bottom: 2px solid var(--hairline); }
.lights { display: flex; gap: 9px; }
.lights i { width: 14px; height: 14px; border-radius: 50%; background: var(--hairline-2); }
.url { flex: 1; font-family: var(--mono); font-size: 21px; color: var(--ink); background: var(--bg-elev); border: 2px solid var(--hairline); border-radius: 7px; padding: 7px 16px; white-space: nowrap; overflow: hidden; }
.host { display: inline-grid; vertical-align: top; }
.host > span { grid-area: 1 / 1; }
#host-real { opacity: 0; color: var(--accent); }
.b-state { position: relative; width: 190px; height: 38px; }
.b-state .pill { position: absolute; right: 0; top: 0; font-size: 15px; padding: 5px 11px; }
#b-cust { opacity: 0; }
.b-view { position: absolute; left: 0; right: 0; top: 64px; bottom: 0; overflow: hidden; background: #f3eadb; }
.site { background: #f3eadb; color: #2b1d14; padding: 30px 60px 0; will-change: transform; }
.s-nav { display: flex; align-items: center; justify-content: space-between; font-size: 20px; color: #5a4636; }
.s-logo { font-family: "Fraunces", serif; font-weight: 600; font-size: 34px; color: #2b1d14; }
.s-links { display: flex; gap: 34px; align-items: center; }
.s-cta { background: #2b1d14; color: #f3eadb; padding: 10px 20px; border-radius: 999px; }
.s-hero { display: flex; gap: 50px; margin-top: 54px; align-items: stretch; }
.s-hero-txt { flex: 1.1; padding-top: 20px; }
.s-ey { font-weight: 600; font-size: 17px; letter-spacing: 0.2em; color: #8f3c18; }
.s-h { font-family: "Fraunces", serif; font-weight: 600; font-size: 104px; line-height: 0.95; margin-top: 18px; letter-spacing: -0.015em; }
.s-hero-txt p { font-size: 24px; line-height: 1.5; color: #5a4636; margin-top: 26px; max-width: 620px; }
.s-book { display: inline-block; margin-top: 30px; background: #8f3c18; color: #fff8ee; font-weight: 600; font-size: 22px; padding: 17px 30px; border-radius: 999px; }
.s-photo { display: block; position: relative; border-radius: 16px; overflow: hidden; }
.s-photo span { position: absolute; left: 18px; bottom: 14px; font-family: "Fraunces", serif; font-size: 20px; color: #fff3e0; opacity: .85; }
.ph1 { flex: 1; height: 520px; background: radial-gradient(circle at 30% 30%, #e7a25b 0 6%, transparent 22%), radial-gradient(circle at 72% 26%, #f1c07a 0 4%, transparent 18%), radial-gradient(ellipse at 50% 110%, #3b1f12 0 40%, transparent 70%), linear-gradient(160deg, #a4552a, #5b2a16 60%, #2e160c); }
.ph2 { height: 280px; background: radial-gradient(circle at 50% 55%, #f4e2b8 0 22%, #d9b877 23% 30%, transparent 31%), linear-gradient(135deg, #6f3a1d, #3a1d10); }
.ph3 { height: 280px; background: radial-gradient(circle at 40% 50%, #c8522e 0 18%, transparent 19%), radial-gradient(circle at 62% 46%, #e9c46a 0 14%, transparent 15%), linear-gradient(135deg, #efe3cc, #cdb48d); }
.ph4 { height: 280px; background: repeating-linear-gradient(90deg, #7a4a2a 0 26px, #6a3e22 26px 30px), linear-gradient(#000, #000); background-blend-mode: normal; }
.s-strip { display: flex; justify-content: space-between; border-top: 2px solid #decdb5; border-bottom: 2px solid #decdb5; padding: 22px 0; margin-top: 54px; font-size: 21px; color: #5a4636; }
.s-strip b { color: #2b1d14; }
.s-menu { margin-top: 60px; }
.s-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; margin-top: 10px; }
.s-menu .row { display: flex; align-items: baseline; gap: 12px; margin-top: 22px; font-family: "Fraunces", serif; font-size: 28px; }
.s-menu .row i { flex: 1; border-bottom: 2px dotted #cdb89c; }
.s-gallery { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 20px; margin-top: 64px; }
.s-story { margin-top: 64px; max-width: 900px; }
.s-h2 { font-family: "Fraunces", serif; font-weight: 600; font-size: 60px; line-height: 1.02; }
.s-story p { font-size: 24px; line-height: 1.5; color: #5a4636; margin-top: 18px; }
.s-foot { display: flex; gap: 40px; margin: 70px -60px 0; padding: 34px 60px; background: #2b1d14; color: #f3eadb; font-size: 20px; }
.s-foot .mute { margin-left: auto; color: #a8927c; }

/* billing */
.bill { position: absolute; inset: 0; pointer-events: none; }
.bill .panel { position: absolute; left: 1010px; width: 560px; background: var(--surface); border-color: var(--hairline-2); box-shadow: 0 40px 100px oklch(0% 0 0 / 0.55); opacity: 0; }
.wiz { top: 90px; padding: 30px 32px; }
.wiz h5, .pay h5 { font-family: var(--mono); font-weight: 500; font-size: 30px; color: var(--ink-hi); margin-top: 6px; }
.seg { position: relative; display: flex; margin-top: 20px; border: 2px solid var(--hairline-2); border-radius: 4px; font-family: var(--mono); font-size: 17px; }
.seg span { position: relative; z-index: 1; flex: 1; text-align: center; padding: 10px 12px; color: var(--ink-mute); }
.seg > span.on { background: var(--surface-2); color: var(--ink-hi); }
.seg.two > span.on { background: none; }
.seg-hl { position: absolute; z-index: 0; top: 3px; bottom: 3px; left: 3px; width: calc(50% - 3px); background: var(--surface-2); border-radius: 2px; box-shadow: inset 0 0 0 2px var(--hairline-2); }
.field { margin-top: 22px; }
.field .seg { margin-top: 8px; }
.hint { font-family: var(--mono); font-size: 15px; color: var(--accent); margin-top: 9px; opacity: 0; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.inp { font-family: var(--mono); font-size: 22px; color: var(--ink-hi); background: var(--bg-elev); border: 2px solid var(--hairline); border-radius: 4px; padding: 10px 14px; margin-top: 8px; }
.inp.lime { color: var(--accent); }
.dom { display: flex; align-items: center; gap: 14px; }
.dom .inp { flex: 1; }
.avail { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 15px; color: var(--sig-online); margin-top: 8px; white-space: nowrap; }
.avail i { width: 9px; height: 9px; border-radius: 50%; background: var(--sig-online); }
.btn.wide { width: 100%; height: 66px; margin-top: 26px; font-size: 21px; text-transform: uppercase; }
.pay { top: 90px; padding: 28px 32px; }
.pay-head { display: flex; align-items: center; gap: 16px; }
.pay-logo { width: 54px; height: 54px; border-radius: 10px; background: #8f3c18; color: #fff3e0; display: grid; place-items: center; font-family: "Fraunces", serif; font-weight: 600; font-size: 24px; }
.pay h5 { font-size: 22px; margin-top: 2px; }
.pay-amt { font-family: var(--mono); font-weight: 500; font-size: 46px; color: var(--ink-hi); margin: 18px 0 8px; }
.pay-amt .mute { font-size: 22px; }
.pay-f { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--hairline); font-size: 18px; }
.pay-f label { font-family: var(--mono); font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }
.pay-f span { font-family: var(--mono); color: var(--ink-hi); opacity: 0; }
.pay-btn { position: relative; width: 100%; height: 64px; margin-top: 22px; background: var(--ink-hi); border-color: var(--ink-hi); color: var(--accent-ink); font-size: 21px; font-weight: 600; overflow: hidden; }
.pay-btn > span { position: absolute; inset: 0; display: grid; place-items: center; }
#paid-l { background: var(--sig-online); color: #04210f; opacity: 0; }
.hook { top: 330px; padding: 24px 30px; }
.hook ul { list-style: none; margin-top: 12px; }
.hook li { display: flex; gap: 14px; font-family: var(--mono); font-size: 19px; line-height: 50px; white-space: nowrap; opacity: 0; }

/* fleet */
.fleet { position: absolute; inset: 0; pointer-events: none; }
.wires { position: absolute; left: 0; top: 0; }
.wires path { fill: none; stroke: oklch(40% 0.02 250); stroke-width: 2; }
.wires path.hot { stroke: var(--accent); stroke-width: 2.5; opacity: 0; filter: drop-shadow(0 0 4px oklch(96% 0.24 124 / 0.8)); }
.tile { position: absolute; width: 200px; opacity: 0; }
.tile .th { height: 125px; border-radius: 6px; overflow: hidden; border: 2px solid var(--hairline-2); position: relative; }
.tile .th::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 12px; background: var(--surface); border-bottom: 1px solid var(--hairline); }
.tile .th b { position: absolute; left: 14px; top: 30px; width: 60%; height: 16px; border-radius: 2px; }
.tile .th em { position: absolute; left: 14px; top: 54px; width: 42%; height: 8px; border-radius: 2px; opacity: .55; }
.tile .th u { position: absolute; left: 14px; bottom: 16px; width: 56px; height: 16px; border-radius: 99px; }
.tile .th s { position: absolute; right: 12px; top: 26px; width: 64px; height: 76px; border-radius: 4px; opacity: .8; }
.tile .lb { display: flex; align-items: center; gap: 8px; margin-top: 7px; font-family: var(--mono); font-size: 14px; color: var(--ink-mute); white-space: nowrap; overflow: hidden; }
.tile .lb i { flex: none; width: 9px; height: 9px; border-radius: 50%; background: var(--hairline-2); }
.hub { position: absolute; left: 590px; top: 432px; width: 420px; height: 146px; padding: 20px 24px; text-align: center; border-color: var(--accent); box-shadow: 0 0 0 6px oklch(96% 0.24 124 / 0.08), 0 0 60px oklch(96% 0.24 124 / 0.15); background: var(--bg-elev); opacity: 0; }
.hub-row { display: flex; justify-content: center; gap: 14px; font-family: var(--mono); font-weight: 500; font-size: 36px; color: var(--ink-hi); margin-top: 8px; }
.hub-sub { font-family: var(--mono); font-size: 15px; color: var(--ink-mute); margin-top: 6px; }
.term { position: absolute; top: 444px; width: 470px; padding: 18px 22px; background: oklch(11% 0.007 265 / 0.96); font-family: var(--mono); font-size: 18px; line-height: 38px; opacity: 0; }
#term-l { left: 70px; }
#term-r { left: 1060px; }
.term .tl { white-space: nowrap; }
.term b { color: var(--ink-hi); font-weight: 500; }

/* ═════ outro + sections ═════ */
.outro { position: relative; min-height: 88vh; display: grid; place-items: center; padding: 16vh var(--gut); overflow: hidden; border-top: 1px solid var(--hairline); background: radial-gradient(ellipse at 50% 60%, oklch(96% 0.24 124 / 0.07), transparent 60%); }
.outro .dots { opacity: .8; }
.wm-wrap { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; }
.wordmark { font-family: var(--mono); font-weight: 500; font-size: clamp(52px, 11vw, 180px); letter-spacing: -0.035em; color: var(--ink-hi); line-height: 1; white-space: nowrap; }
.rule { width: min(760px, 80vw); height: 3px; margin-top: 30px; background: var(--accent); box-shadow: 0 0 20px oklch(96% 0.24 124 / 0.6); }
.tagline { margin-top: 26px; font-size: clamp(17px, 2vw, 28px); color: var(--ink); }
.funnel { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 44px; }
.funnel li { font-family: var(--mono); font-size: clamp(13px, 1.3vw, 18px); padding: 9px 15px; border: 1px solid var(--hairline-2); border-radius: 4px; color: var(--ink); white-space: nowrap; }
.funnel li b { color: var(--ink-mute); font-weight: 400; margin-right: 9px; }
.funnel li.last { border-color: var(--accent); color: var(--accent); }
.funnel li.last b { color: var(--accent); }

.keys, .more { position: relative; padding: 14vh var(--gut); max-width: 1320px; margin: 0 auto; }
.more { padding-top: 4vh; }
.sec-head { max-width: 760px; }
.sec-head h2 { font-family: var(--mono); font-weight: 500; font-size: clamp(28px, 3.4vw, 52px); line-height: 1.08; letter-spacing: -0.03em; color: var(--ink-hi); margin-top: 16px; text-wrap: balance; }
.sec-head p { font-size: 17px; line-height: 1.65; color: var(--ink-soft); margin-top: 18px; }
.sec-head em { font-style: normal; font-family: var(--mono); font-size: .92em; color: var(--ink-hi); }
.key-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-top: 56px; background: var(--hairline); border: 1px solid var(--hairline); border-radius: 6px; overflow: hidden; }
.key { background: var(--bg); padding: 30px 28px 32px; transition: background .3s; }
.key:hover { background: var(--bg-elev); }
.key h3 { font-family: var(--mono); font-weight: 500; font-size: 22px; color: var(--ink-hi); margin-top: 18px; }
.key p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin-top: 10px; }
.k-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; }
.k-tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.k-tag.blue { color: var(--sig-generating); }
.k-tag.lime { color: var(--accent); }
.more-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 44px 48px; margin-top: 48px; }
.m { border-top: 1px solid var(--hairline-2); padding-top: 18px; }
.m b { font-family: var(--mono); font-weight: 500; font-size: 17px; color: var(--ink-hi); }
.m p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin-top: 8px; }
@media (max-width: 960px) { .key-grid, .more-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .key-grid, .more-grid { grid-template-columns: 1fr; } }

.access { position: relative; padding: 12vh var(--gut) 16vh; overflow: hidden; }
.access::before { content: ""; position: absolute; left: 50%; top: 40%; width: 900px; height: 600px; transform: translate(-50%, -50%); background: radial-gradient(closest-side, oklch(96% 0.24 124 / 0.09), transparent); pointer-events: none; }
.access-in { position: relative; max-width: 1320px; margin: 0 auto; border: 1px solid var(--hairline-2); border-radius: 8px; padding: clamp(32px, 7vw, 96px); background: linear-gradient(160deg, var(--bg-elev), var(--bg)); }
.access h2 { font-family: var(--mono); font-weight: 500; font-size: clamp(34px, 5.6vw, 88px); line-height: 1.02; letter-spacing: -0.035em; color: var(--ink-hi); margin-top: 18px; }
.access p { font-size: 17px; line-height: 1.65; color: var(--ink-soft); max-width: 560px; margin-top: 22px; }
.access .btn-cta { margin-top: 34px; }

.foot { display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; padding: 26px var(--gut) 34px; border-top: 1px solid var(--hairline); font-family: var(--mono); font-size: 13px; color: var(--ink); }
