/* Green Vessel — greenvesselmarketing.com · v2
   Hero + Leak kept from v1 (GIB's call). Everything below redesigned:
   blueprint/schematic language, real client screenshots, spec-ticket offer.
   Sora = headlines · Inter = body · Instrument Serif = accents · JetBrains Mono = technical labels */

:root {
  --ink: #0e1216;
  --cream: #f0eae3;
  --card: #fdfaf6;
  --green: #00722a;
  --emerald: #25b718;
  --emerald-deep: #0e4026;
  --forest: #0c0e0d;   /* near-black with a breath of green; green lives in accents, not walls */
  --abyss: #070808;
  --silver: #d7d7d7;
  --muted: #383e43;
  --line-dark: rgba(255, 255, 255, 0.08);
  --line-light: rgba(14, 18, 22, 0.12);
  --mono: 'Share Tech Mono', ui-monospace, 'Cascadia Code', monospace;
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Fixed nav is ~100px tall; anchors must clear it (and the 54px curved overlap) */
section[id], header[id] { scroll-margin-top: 128px; }
#top { scroll-margin-top: 0; }

html, body { overflow-x: hidden; }
body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  color: #eef3ef;
  background: var(--abyss);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Sora', sans-serif; line-height: 1.12; letter-spacing: -0.02em; }
/* Matrix accent: replaces the old cursive serif everywhere (GIB 2026-08-14: "more matrix in the places with cursive writing") */
/* THE RULE (GIB, 2026-08-14): anything GREEN is matrix/terminal type. White stays Sora. */
.serif-accent {
  font-family: var(--mono); font-style: normal; font-weight: 400;
  letter-spacing: 0.005em; text-shadow: 0 0 22px rgba(37,183,24,0.55);
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
section { padding: 128px 0; position: relative; }

.eyebrow {
  display: inline-block; font-family: var(--mono); font-size: 12px; font-weight: 400; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--emerald); margin-bottom: 18px;
}
.light .eyebrow { color: var(--green); }

/* Technical section index label, e.g. "/03 · THE RECEIPTS" */
.sec-index {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em;
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
  text-transform: uppercase;
}
.sec-index::after { content: ''; height: 1px; flex: 0 0 64px; }
.dark .sec-index, .darker .sec-index { color: var(--emerald); }
.dark .sec-index::after, .darker .sec-index::after { background: rgba(37,183,24,0.5); }
.light .sec-index { color: var(--green); }
.light .sec-index::after { background: rgba(0,114,42,0.4); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 28px; transition: background 0.35s ease, box-shadow 0.35s ease;
}
.nav.scrolled {
  background: rgba(4, 18, 10, 0.88); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line-dark);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
/* The logo stands off the background: constant separation glow, no animation.
   (Heartbeat pulse tried 2026-08-14 and cut - GIB: "too weird". The problem was never
   motion, it was that dark logo shapes vanish against a dark video.) */
.nav-logo { position: relative; }
.nav-logo::before {
  content: ''; position: absolute; left: -14px; top: 50%; transform: translateY(-50%);
  width: 124px; height: 124px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(37,183,24,0.22), transparent 68%);
}
.nav-logo .logo-mark { display: none; }
.nav-logo img {
  position: relative; z-index: 1;
  height: 100px; width: auto; display: block;
  filter: drop-shadow(0 0 1px rgba(0,0,0,0.6)) drop-shadow(0 4px 14px rgba(0,0,0,0.55)) brightness(1.06);
  transition: transform 0.3s ease, filter 0.3s ease;
}
.nav-logo:hover img {
  transform: scale(1.04);
  filter: drop-shadow(0 0 1px rgba(0,0,0,0.6)) drop-shadow(0 0 18px rgba(37,183,24,0.5)) brightness(1.12);
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: #e8eee9; text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--emerald); }
.nav-actions { display: flex; align-items: center; gap: 14px; }

/* Hamburger — mobile only */
.nav-toggle {
  display: none; width: 46px; height: 42px; border-radius: 10px; cursor: pointer;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line-dark);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.nav-toggle:hover { background: rgba(255,255,255,0.12); border-color: rgba(37,183,24,0.5); }
.nav-toggle span {
  display: block; width: 20px; height: 2px; border-radius: 2px; background: #e8eee9;
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: 999px; text-decoration: none;
  transition: box-shadow 0.2s ease, background 0.12s ease;
  cursor: pointer; border: none;
  transform: translate(var(--mx, 0px), var(--my, 0px));   /* surface tension: magnetic lean */
}
.btn-green { background: var(--green); color: #fff; box-shadow: 0 8px 24px rgba(0, 114, 42, 0.35); }
.btn-green:hover { background: #008a33; box-shadow: 0 12px 32px rgba(0, 114, 42, 0.45); }
.btn-ghost { background: rgba(255,255,255,0.07); color: #fff; border: 1px solid var(--line-dark); }
.btn-ghost:hover { background: rgba(255,255,255,0.14); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 18px 36px; font-size: 17px; }

/* ---------- The money button: nav CTA ---------- */
.btn-cta {
  position: relative; overflow: hidden; isolation: isolate;
  padding: 14px 26px 14px 22px; font-size: 15px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, #2fc41f 0%, #00913a 48%, #00722a 100%);
  background-size: 180% 180%;
  box-shadow: 0 0 0 1px rgba(120,255,90,0.25) inset,
              0 10px 28px rgba(0,114,42,0.45),
              0 0 34px rgba(37,183,24,0.35);
  animation: ctaGlow 3.6s ease-in-out infinite;
}
/* the light sweeps across every few seconds */
.btn-cta::after {
  content: ''; position: absolute; top: -60%; left: -70%; width: 45%; height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg); z-index: 1; pointer-events: none;
  animation: ctaSweep 4.6s ease-in-out infinite;
}
/* text always rides above the sweep — this is what was making the letters vanish */
.cta-label, .cta-dot, .cta-arrow { position: relative; z-index: 2; }
.cta-label { transition: color 0.22s ease, text-shadow 0.22s ease; }
.nav-links a.btn-cta, .nav-links a.btn-cta .cta-label { color: #fff; }
.nav-links a.btn-cta:hover .cta-label { color: #04170a; }
@keyframes ctaGlow {
  0%, 100% { background-position: 0% 50%; box-shadow: 0 0 0 1px rgba(120,255,90,0.25) inset, 0 10px 28px rgba(0,114,42,0.45), 0 0 30px rgba(37,183,24,0.3); }
  50%      { background-position: 100% 50%; box-shadow: 0 0 0 1px rgba(120,255,90,0.45) inset, 0 12px 34px rgba(0,114,42,0.55), 0 0 46px rgba(37,183,24,0.55); }
}
@keyframes ctaSweep {
  0%   { left: -70%; }
  55%  { left: 130%; }
  100% { left: 130%; }
}
.cta-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #b6ff9e; display: inline-block; flex-shrink: 0;
  box-shadow: 0 0 10px rgba(182,255,158,0.9);
  animation: ctaDot 1.9s ease-in-out infinite;
}
@keyframes ctaDot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.45; transform: scale(0.78); } }
.cta-arrow { display: inline-block; transition: transform 0.25s ease; }
/* Hover: the button lights up and the letters go dark — maximum contrast, unmistakable */
.btn-cta:hover {
  background: linear-gradient(135deg, #7dff6a 0%, #35d924 55%, #12b41f 100%);
  background-size: 180% 180%;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.35) inset,
              0 14px 38px rgba(0,145,58,0.6),
              0 0 54px rgba(125,255,106,0.6);
}
.btn-cta:hover .cta-label { color: #04170a; text-shadow: 0 1px 0 rgba(255,255,255,0.35); }
.btn-cta:hover .cta-arrow { transform: translateX(4px); color: #04170a; }
.btn-cta:hover .cta-dot { background: #04170a; box-shadow: 0 0 10px rgba(4,23,10,0.5); }
@media (prefers-reduced-motion: reduce) {
  .btn-cta, .btn-cta::after, .cta-dot { animation: none; }
}

/* ---------- Hero (kept) ---------- */
.hero {
  position: relative; min-height: min(92vh, 1000px);
  display: flex; align-items: center;
  background: var(--abyss); color: #fff; overflow: hidden; padding: 140px 0 90px;
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(4,18,10,0.92) 16%, rgba(4,18,10,0.30) 48%, rgba(4,18,10,0.55) 100%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.35;
  background-image:
    linear-gradient(rgba(37,183,24,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,183,24,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 30% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 40%, black 30%, transparent 75%);
}
.hero-inner { position: relative; z-index: 3; max-width: 620px; margin-left: -40px; }
@media (max-width: 1280px) { .hero-inner { margin-left: 0; } }

/* The Operator: Matrix portrait fused into the hero's right side */
.hero-portrait {
  position: absolute; right: 0; bottom: 0; z-index: 2; height: 96%; max-width: 48vw;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 26%, black 82%, transparent 100%),
                      linear-gradient(180deg, transparent 0%, black 22%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(90deg, transparent 0%, black 26%, black 82%, transparent 100%),
              linear-gradient(180deg, transparent 0%, black 22%);
  mask-composite: intersect;
  filter: drop-shadow(0 0 60px rgba(37,183,24,0.25));
}
.hero-portrait img { height: 100%; width: auto; display: block; opacity: 0.92; }
@media (max-width: 900px) {
  .hero-portrait { height: 62%; max-width: 88vw; right: -10%; opacity: 0.45; }
  .hero-inner { z-index: 3; }
}
.hero h1 { font-size: clamp(40px, 6.2vw, 72px); font-weight: 700; margin-bottom: 26px; }
.hero h1 .green-line { color: var(--emerald); font-family: var(--mono); font-weight: 400; letter-spacing: -0.005em; text-shadow: 0 0 30px rgba(37,183,24,0.4); }
.hero .eyebrow::after {
  content: '\258C'; margin-left: 6px; color: var(--emerald);
  animation: cursorblink 1.1s step-end infinite;
}
@keyframes cursorblink { 50% { opacity: 0; } }
.hero-sub { font-size: 19px; color: #c9d4cc; max-width: 560px; margin-bottom: 36px; }
.hero-sub strong { color: #fff; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 42px; }
.hero-badges { display: flex; gap: 22px; flex-wrap: wrap; font-size: 13px; color: #9fb2a5; font-weight: 500; }
.hero-badges span { display: flex; align-items: center; gap: 8px; }
.hero-badges .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 10px var(--emerald); }

/* ---------- Section shells ---------- */
/* DARK BOOKENDS, BRIGHT MIDDLE (Revity lesson, 2026-08-13): the Matrix identity owns
   the hero, Operator, offer, and close; the content middle is bright, clean, welcoming.
   Every section joins the next through a CURVE, never a hard horizontal seam. */
.dark { background: var(--forest); color: #eef3ef; }
.darker { background: var(--abyss); color: #eef3ef; }
.light { background: #f8f6f3; color: var(--ink); }

/* Curved seams: each section's top arcs over the one before it */
section.light, section.dark, section.darker, section.machine, section.manifesto {
  border-radius: 54px 54px 0 0;
  margin-top: -54px;
  position: relative;
}
.hero { border-radius: 0; margin-top: 0; }
.operator { margin-top: 0; border-radius: 0; }

/* Machine scene goes bright: the clean lab where the system assembles.
   UNPINNED 2026-08-14 after two rounds of GIB flagging white space - the sticky pin
   was the cause. Three tight rows now, always visible, zero dead scroll. */
.machine { background: #f8f6f3; height: auto !important; padding: 110px 0 90px; }
.machine .scene-sticky { position: static; height: auto; overflow: visible; display: block; }
.machine-stage { height: auto !important; width: min(980px, 92vw); margin: 0 auto; position: static; }
.mstage {
  position: static !important; opacity: 1 !important; transform: none !important;
  pointer-events: auto !important; margin-bottom: 64px; min-height: 380px;
}
.mstage:last-child { margin-bottom: 0; }
.machine-progress { display: none; }
.machine-head h2 { color: var(--ink); }
.machine-head p { color: var(--muted); }
.mstage-copy h3 { color: var(--ink); }
.mstage-copy p { color: var(--muted); }
.mstage-copy strong { color: var(--ink); }
.machine-progress i { background: rgba(14,18,22,0.12); }

/* Giant editorial type: headlines ARE the graphics */
.section-head h2 { font-size: clamp(36px, 5.8vw, 72px); letter-spacing: -0.03em; }

/* ---------- Signature scene shells: native sticky, zero scroll hijack ---------- */
.scene { position: relative; }
.scene-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; align-items: center; }

/* The Machine: pinned assembly story */
.machine { height: 170vh; background: #f8f6f3; }
.machine .scene-sticky { flex-direction: column; justify-content: center; }
.machine-head { text-align: center; margin-bottom: 22px; padding: 0 24px; }
.machine-head h2 { font-size: clamp(34px, 5vw, 60px); color: var(--ink); }
.machine-head p { color: var(--muted); margin-top: 10px; }
.machine-stage { position: relative; width: min(920px, 92vw); height: 46vh; }
.mstage {
  position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center; opacity: 0; transform: translateY(40px); transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.mstage.active { opacity: 1; transform: none; pointer-events: auto; }
.mstage-copy .msys { font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; color: var(--green); text-transform: uppercase; }
.mstage-copy h3 { font-size: clamp(26px, 3.2vw, 42px); color: var(--ink); margin: 12px 0 14px; }
.mstage-copy p { color: var(--muted); font-size: 16.5px; }
.mstage-copy strong { color: var(--ink); }
.machine-progress { display: flex; gap: 10px; margin-top: 44px; }
.machine-progress i { width: 54px; height: 3px; border-radius: 2px; background: rgba(255,255,255,0.12); overflow: hidden; position: relative; display: block; }
.machine-progress i b { position: absolute; inset: 0; transform-origin: left; transform: scaleX(0); background: var(--emerald); display: block; }

/* Machine visuals: drawn in CSS, no images needed */
.mviz { position: relative; height: 100%; min-height: 380px; }
.mviz-browser {
  position: absolute; inset: 8% 4%; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line-dark); background: #0b0d0c;
  box-shadow: 0 40px 90px rgba(0,0,0,0.55), 0 0 70px rgba(37,183,24,0.08);
}
.mviz-browser .mbar { height: 30px; background: #101512; border-bottom: 1px solid var(--line-dark); display: flex; align-items: center; gap: 5px; padding: 0 12px; }
.mviz-browser .mbar i { width: 8px; height: 8px; border-radius: 50%; background: #26302a; }
.mviz-browser img { width: 100%; height: calc(100% - 30px); object-fit: cover; object-position: top center; }

/* Step 1 visual: the whole client site, correctly proportioned, with a live "get the call" demo */
.machine .mviz-browser {
  position: relative; inset: auto; width: 100%; max-width: 560px; margin: 0 auto;
  aspect-ratio: 16 / 11.2; overflow: hidden;
}
.machine .mviz-browser img { height: calc(100% - 30px); object-position: top left; }
.capture-cursor {
  position: absolute; left: 18%; top: 78%; width: 26px; height: 26px; z-index: 4;
  pointer-events: none; opacity: 0;
}
.capture-cursor::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #fff; background: rgba(255,255,255,0.25);
  box-shadow: 0 0 14px rgba(255,255,255,0.6);
}
.capture-ring {
  position: absolute; left: 18%; top: 78%; width: 26px; height: 26px; z-index: 3;
  border-radius: 50%; border: 2px solid var(--emerald); opacity: 0; pointer-events: none;
}
.capture-pop {
  position: absolute; right: 14px; bottom: 14px; z-index: 5; pointer-events: none;
  display: flex; align-items: center; gap: 9px; opacity: 0;
  background: var(--green); color: #fff; border-radius: 12px; padding: 11px 16px;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  box-shadow: 0 14px 34px rgba(0,114,42,0.5);
}
.capture-pop i { font-style: normal; font-size: 16px; }
.mviz-capture.playing .capture-cursor { animation: capCursor 6.5s ease-in-out infinite; }
.mviz-capture.playing .capture-ring { animation: capRing 6.5s ease-out infinite; }
.mviz-capture.playing .capture-pop { animation: capPop 6.5s ease-out infinite; }
@keyframes capCursor {
  0%   { opacity: 0; transform: translate(120px, -70px); }
  12%  { opacity: 1; transform: translate(120px, -70px); }
  34%  { opacity: 1; transform: translate(0, 0); }
  40%  { opacity: 1; transform: translate(0, 0) scale(0.8); }
  46%  { opacity: 1; transform: translate(0, 0) scale(1); }
  72%  { opacity: 1; transform: translate(0, 0); }
  85%, 100% { opacity: 0; transform: translate(0, 0); }
}
@keyframes capRing {
  0%, 40%  { opacity: 0; transform: scale(0.6); }
  46%      { opacity: 0.9; transform: scale(1); }
  62%      { opacity: 0; transform: scale(3.4); }
  100%     { opacity: 0; transform: scale(3.4); }
}
@keyframes capPop {
  0%, 46%  { opacity: 0; transform: translateY(10px) scale(0.94); }
  54%      { opacity: 1; transform: none; }
  82%      { opacity: 1; transform: none; }
  92%, 100%{ opacity: 0; transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .mviz-capture .capture-cursor, .mviz-capture .capture-ring { display: none; }
  .mviz-capture .capture-pop { opacity: 1; }
}

/* Stage 1: a site wireframe assembling itself — the machine building the machine */
.wf { position: absolute; inset: 0; top: 30px; padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.wf > div { border-radius: 6px; background: rgba(37,183,24,0.12); border: 1px solid rgba(37,183,24,0.3); animation: wfpulse 2.6s ease-in-out infinite; }
.wf .wf-nav { height: 9%; animation-delay: 0s; }
.wf .wf-hero { height: 34%; animation-delay: 0.3s; display: flex; align-items: center; justify-content: center; }
.wf .wf-hero span {
  font-family: var(--mono); font-size: clamp(15px, 1.6vw, 20px); letter-spacing: 0.2em; color: var(--emerald);
  text-shadow: 0 0 14px rgba(37,183,24,0.6);
  animation: wfblink 1.3s step-end infinite;
}
.wf .wf-row { height: 16%; animation-delay: 0.6s; }
.wf .wf-cta { height: 12%; width: 42%; background: rgba(37,183,24,0.5); animation-delay: 0.9s; }
@keyframes wfpulse { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }
@keyframes wfblink { 50% { opacity: 0.2; } }
.mviz-bubble {
  position: absolute; max-width: 72%; padding: 14px 18px; border-radius: 16px;
  font-size: 14.5px; line-height: 1.45;
}
.mviz-bubble.in { left: 6%; top: 16%; background: #ffffff; color: var(--muted); border: 1px solid var(--line-light); border-bottom-left-radius: 4px; box-shadow: 0 10px 30px rgba(14,18,22,0.08); }
.mviz-bubble.out { right: 6%; top: 44%; background: var(--green); color: #fff; border-bottom-right-radius: 4px; box-shadow: 0 14px 40px rgba(0,114,42,0.4); }
.mviz-bubble.book { left: 12%; top: 74%; background: #ffffff; color: var(--muted); border: 1px solid var(--line-light); border-bottom-left-radius: 4px; box-shadow: 0 10px 30px rgba(14,18,22,0.08); }
.mviz-bubble small { display: block; opacity: 0.6; font-size: 11px; margin-top: 5px; }

/* ---------- The missed-call phone: the scene that sells the whole offer ---------- */
.mviz-sms { display: flex; align-items: center; justify-content: center; }
.sms-phone {
  position: relative; width: 268px; max-width: 82%; aspect-ratio: 9 / 16.2;
  background: #fff; border: 9px solid #141a17; border-radius: 40px;
  box-shadow: 0 40px 90px rgba(14,18,22,0.28), 0 0 0 1px rgba(14,18,22,0.06);
  overflow: hidden;
}
.sms-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 42%; height: 22px; background: #141a17; border-radius: 0 0 14px 14px;
}
.sms-screen {
  position: absolute; inset: 0; padding: 40px 14px 14px;
  display: flex; flex-direction: column; gap: 10px; background: #f2f3f2;
}
.sms-input {
  margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: #fff; border: 1px solid rgba(14,18,22,0.12); border-radius: 999px;
  padding: 9px 9px 9px 15px; opacity: 1 !important; transform: none !important;
}
.sms-input span { font-family: 'Inter', sans-serif; font-size: 12.5px; color: #9aa39e; }
.sms-input i {
  width: 24px; height: 24px; border-radius: 50%; background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center; font-style: normal; font-size: 13px; flex-shrink: 0;
}
.sms-head {
  text-align: center; font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  color: #6b7671; padding-bottom: 8px; border-bottom: 1px solid rgba(14,18,22,0.08); margin-bottom: 4px;
}
.sms-missed {
  align-self: center; font-family: 'Inter', sans-serif; font-size: 12px; color: #c0392b;
  background: rgba(192,57,43,0.09); border-radius: 10px; padding: 8px 12px; text-align: center; line-height: 1.35;
}
.sms-missed .sms-ring { margin-right: 4px; }
.sms-missed small { display: block; color: #9aa39e; font-size: 10.5px; margin-top: 2px; }
.sms-bubble {
  max-width: 88%; padding: 10px 13px; border-radius: 16px; font-size: 12.5px; line-height: 1.42;
  font-family: 'Inter', sans-serif;
}
.sms-bubble.out {
  align-self: flex-end; background: var(--green); color: #fff; border-bottom-right-radius: 4px;
  box-shadow: 0 6px 18px rgba(0,114,42,0.28);
}
.sms-bubble.in { align-self: flex-start; background: #fff; color: #2c3330; border-bottom-left-radius: 4px; box-shadow: 0 2px 8px rgba(14,18,22,0.08); }
.sms-bubble small { display: block; opacity: 0.7; font-size: 10px; margin-top: 4px; }
.sms-typing {
  align-self: flex-end; display: flex; gap: 4px; background: #fff; padding: 11px 14px;
  border-radius: 16px; border-bottom-right-radius: 4px; box-shadow: 0 2px 8px rgba(14,18,22,0.08);
}
.sms-typing i { width: 6px; height: 6px; border-radius: 50%; background: #b3bcb7; display: block; }

.mviz-sms .sms-missed, .mviz-sms .sms-bubble, .mviz-sms .sms-typing { opacity: 0; transform: translateY(10px) scale(0.97); }
.mviz-sms.playing .b1 { animation: smsIn 0.45s cubic-bezier(0.2,1,0.3,1) 0.25s forwards; }
.mviz-sms.playing .b2 { animation: smsIn 0.35s ease 1.2s forwards, smsOut 0.3s ease 2.6s forwards; }
.mviz-sms.playing .b2 i { animation: typedot 1.1s ease-in-out infinite; }
.mviz-sms.playing .b2 i:nth-child(2) { animation-delay: 0.15s; }
.mviz-sms.playing .b2 i:nth-child(3) { animation-delay: 0.3s; }
.mviz-sms.playing .b3 { animation: smsIn 0.45s cubic-bezier(0.2,1,0.3,1) 2.7s forwards; }
.mviz-sms.playing .b4 { animation: smsIn 0.45s cubic-bezier(0.2,1,0.3,1) 4s forwards; }
@media (prefers-reduced-motion: reduce) {
  .mviz-sms .sms-missed, .mviz-sms .sms-bubble { opacity: 1; transform: none; }
  .sms-typing { display: none; }
}

/* legacy floating-bubble rules (superseded by the phone above) */
.mviz-sms .mviz-bubble, .mviz-typing { opacity: 0; transform: translateY(14px) scale(0.96); }
.mviz-typing {
  position: absolute; right: 6%; top: 36%; display: flex; gap: 5px;
  background: rgba(14,18,22,0.06); border: 1px solid var(--line-light);
  padding: 13px 16px; border-radius: 16px; border-bottom-right-radius: 4px;
}
.mviz-typing i { width: 7px; height: 7px; border-radius: 50%; background: #9aa8a0; display: block; }
.mviz-sms.playing .b1 { animation: smsIn 0.5s cubic-bezier(0.2,1,0.3,1) 0.2s forwards; }
.mviz-sms.playing .b2 { animation: smsIn 0.4s ease 1.1s forwards, smsOut 0.3s ease 2.5s forwards; }
.mviz-sms.playing .b2 i { animation: typedot 1.1s ease-in-out infinite; }
.mviz-sms.playing .b2 i:nth-child(2) { animation-delay: 0.15s; }
.mviz-sms.playing .b2 i:nth-child(3) { animation-delay: 0.3s; }
.mviz-sms.playing .b3 { animation: smsIn 0.5s cubic-bezier(0.2,1,0.3,1) 2.6s forwards; }
.mviz-sms.playing .b4 { animation: smsIn 0.5s cubic-bezier(0.2,1,0.3,1) 3.8s forwards; }
@keyframes smsIn { to { opacity: 1; transform: none; } }
@keyframes smsOut { to { opacity: 0; transform: translateY(-6px) scale(0.9); } }
@keyframes typedot { 0%, 100% { opacity: 0.35; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-3px); } }
@media (prefers-reduced-motion: reduce) {
  .mviz-sms .mviz-bubble { opacity: 1; transform: none; }
  .mviz-typing { display: none; }
}
.mviz-bars { position: absolute; inset: 12% 8%; display: flex; align-items: flex-end; gap: 7%; }
.mviz-bars i {
  flex: 1; border-radius: 6px 6px 0 0; display: block;
  background: linear-gradient(180deg, rgba(37,183,24,0.85), rgba(14,64,38,0.5));
  box-shadow: 0 0 30px rgba(37,183,24,0.2);
}

/* Trophy case: self-gliding marquee — no pinned scroll, no dead real estate */
.trophy-marquee { padding-bottom: 110px; }
.tm-viewport { overflow: hidden; }
.tm-track { display: flex; gap: 34px; width: max-content; animation: tmglide 55s linear infinite; }
.tm-track:hover { animation-play-state: paused; }
@keyframes tmglide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.trophy-card {
  flex: 0 0 auto; width: min(560px, 74vw); text-decoration: none;
  border-radius: 16px; overflow: hidden; background: rgba(255,255,255,0.035);
  border: 1px solid var(--line-dark); transition: border-color 0.25s ease;
}
.trophy-card:hover { border-color: rgba(37,183,24,0.55); }
.trophy-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: top; display: block; }
.trophy-card .t-label { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 20px; }
.trophy-card .t-label b { font-family: 'Sora', sans-serif; font-size: 17px; color: #fff; font-weight: 600; }
.trophy-card .t-label span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--emerald); }
.trophy-title { position: absolute; top: 9vh; left: 0; right: 0; text-align: center; padding: 0 24px; }
.trophy-title h2 { font-size: clamp(30px, 4.4vw, 54px); color: #fff; }
.trophy-title p { color: #a9b8ad; margin-top: 8px; }

@media (max-width: 820px) {
  .mstage { grid-template-columns: 1fr; gap: 18px; }
  .mviz { min-height: 200px; }
  .machine-stage { height: 60vh; }
}

.section-head { max-width: 760px; margin-bottom: 72px; }
.section-head h2 { font-size: clamp(32px, 4.8vw, 54px); font-weight: 700; margin-bottom: 20px; }
.section-head p { font-size: 17px; }
.dark .section-head p, .darker .section-head p { color: #a9b8ad; }
.light .section-head p { color: var(--muted); }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Leak cards (kept) ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  border-radius: var(--radius); padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.light .card { background: var(--card); border: 1px solid var(--line-light); }
.light .card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(14,18,22,0.10); }
.card h3 { font-size: 20px; margin: 16px 0 10px; }
.card p { font-size: 15px; }
.light .card p { color: var(--muted); }
.card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,114,42,0.12); color: var(--green); font-size: 20px;
}

/* ---------- Marquee ticker ---------- */
.ticker { background: var(--abyss); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); overflow: hidden; padding: 16px 0; }
.ticker-track {
  display: flex; gap: 48px; white-space: nowrap; width: max-content;
  animation: ticker 36s linear infinite;
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: #7d8c81;
}
.ticker-track b { color: var(--emerald); font-weight: 400; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- The Receipts: showcase rows with device mockups ---------- */
.showcase { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 72px; align-items: center; margin-bottom: 150px; }
.showcase:last-of-type { margin-bottom: 0; }
.showcase.flip .show-media { order: 2; }
.show-media { position: relative; padding: 30px 10px; }
.show-media::before {
  content: ''; position: absolute; inset: -8% -14%; pointer-events: none;
  background: radial-gradient(ellipse at 50% 55%, rgba(37,183,24,0.16), rgba(14,64,38,0.10) 45%, transparent 72%);
  filter: blur(2px);
}

/* Laptop mockup */
.laptop { position: relative; z-index: 2; transition: transform 0.4s ease; }
.laptop:hover { transform: translateY(-8px); }
.laptop-screen {
  position: relative; border-radius: 14px 14px 0 0; overflow: hidden;
  background: #0b0d0c; padding: 14px 14px 0;
  border: 1px solid rgba(255,255,255,0.14); border-bottom: none;
  box-shadow: 0 60px 120px rgba(0,0,0,0.65), 0 0 90px rgba(37,183,24,0.10);
}
.laptop-screen::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.02) 28%, transparent 46%);
}
.laptop-screen img { width: 100%; display: block; border-radius: 6px 6px 0 0; }

/* Scroll-linked screens: the client site scrolls inside the laptop as you scroll the page */
/* The screens are REAL scroll areas: hover and scroll to browse the client's site yourself.
   Auto-scroll runs only while nobody is touching it. */
.screen-view {
  position: relative; overflow-y: auto; overflow-x: hidden;
  aspect-ratio: 16 / 10; border-radius: 6px 6px 0 0;
  scrollbar-width: thin; scrollbar-color: rgba(37,183,24,0.5) transparent;
}
.screen-view::-webkit-scrollbar { width: 7px; }
.screen-view::-webkit-scrollbar-track { background: rgba(0,0,0,0.25); }
.screen-view::-webkit-scrollbar-thumb { background: rgba(37,183,24,0.5); border-radius: 4px; }
.screen-view:hover::-webkit-scrollbar-thumb { background: rgba(37,183,24,0.8); }
.screen-view .screen-reel { display: block; width: 100%; height: auto; border-radius: 0; }
.screen-hint {
  position: absolute; right: 12px; bottom: 12px; z-index: 4; pointer-events: none;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--emerald); background: rgba(4,10,6,0.8); border: 1px solid rgba(37,183,24,0.4);
  padding: 5px 10px; border-radius: 5px; opacity: 0; transition: opacity 0.3s ease;
}
.laptop:hover .screen-hint { opacity: 1; }
.laptop-base {
  position: relative; z-index: 2; height: 16px; margin: 0 -5%;
  background: linear-gradient(180deg, #3a423c, #171d19 70%, #0b100d);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.laptop-base::before {
  content: ''; position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 13%; height: 7px; border-radius: 0 0 10px 10px;
  background: rgba(0,0,0,0.35);
}

/* Phone mockup, floats over a laptop in a duo */
.phone {
  position: absolute; z-index: 3; width: 27%; left: -4%; bottom: -6%;
  border-radius: 26px; overflow: hidden;
  border: 3px solid #2a322c; background: #0b0d0c; padding: 8px 6px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.65), 0 0 50px rgba(37,183,24,0.14);
  transition: transform 0.4s ease;
}
.phone:hover { transform: translateY(-8px) rotate(-1deg); }
.phone::before {
  content: ''; position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 34%; height: 13px; border-radius: 999px; background: #05130b; z-index: 4;
  border: 1px solid rgba(255,255,255,0.07);
}
.phone img { width: 100%; display: block; border-radius: 16px; }

.show-media .stamp {
  position: absolute; top: 2px; right: -6px; z-index: 5;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--emerald); color: #04120a; font-weight: 700;
  padding: 8px 14px; border-radius: 8px; box-shadow: 0 10px 30px rgba(37,183,24,0.4);
}
.show-media .device-url {
  position: relative; z-index: 2; text-align: center; margin-top: 20px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: #7d8c81;
}
.show-media .phone + .device-url { padding-left: 30%; }
.show-body .proof-tag { font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--emerald); }
.show-body h3 { font-size: clamp(24px, 2.6vw, 32px); margin: 14px 0 16px; }
.show-body p { color: #a9b8ad; font-size: 16px; margin-bottom: 14px; }
.show-body p strong { color: #fff; }
.show-body .visit { font-family: var(--mono); font-size: 13px; color: var(--emerald); text-decoration: none; letter-spacing: 0.06em; }
.show-body .visit:hover { text-decoration: underline; }

/* Stat strip */
.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  margin-top: 96px; padding-top: 56px; border-top: 1px solid var(--line-dark);
}
.stat b { font-family: 'Sora', sans-serif; font-weight: 900; font-size: clamp(30px, 3.4vw, 44px); font-weight: 700; color: #fff; display: block; line-height: 1; }
.stat b em { color: var(--emerald); font-style: normal; }
.stat span { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: #7d8c81; display: block; margin-top: 10px; }

/* ---------- The Wall: portfolio grid ---------- */
.wall-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin: 130px 0 40px; flex-wrap: wrap; }
.wall-head h3 { font-size: clamp(22px, 2.6vw, 30px); }
.wall-head .wall-note { font-family: var(--mono); font-size: 12px; color: #7d8c81; letter-spacing: 0.08em; }
.wall-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.wall-card {
  display: block; text-decoration: none; border-radius: 12px; overflow: hidden;
  background: rgba(255,255,255,0.03); border: 1px solid var(--line-dark);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.wall-card:hover { transform: translateY(-5px); border-color: rgba(37,183,24,0.5); }
.wall-card .wall-shot { aspect-ratio: 16 / 10; overflow: hidden; }
.wall-card .wall-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform 0.4s ease; }
.wall-card:hover .wall-shot img { transform: scale(1.04); }
.wall-card .wall-label { padding: 12px 16px 14px; }
.wall-card .wall-label b { display: block; font-family: var(--mono); font-size: 12px; color: #dbe6dd; font-weight: 400; letter-spacing: 0.04em; }
.wall-card .wall-label span { font-family: var(--mono); font-size: 10.5px; color: #55675b; letter-spacing: 0.12em; text-transform: uppercase; }

/* ---------- The Blueprint (light, technical) ---------- */
.blueprint { background: var(--cream); }
.blueprint::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(0,114,42,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,114,42,0.07) 1px, transparent 1px);
  background-size: 56px 56px;
}
.blueprint .wrap { position: relative; z-index: 1; }
.bp-rows { display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(0,114,42,0.25); }
.bp-row {
  display: grid; grid-template-columns: 170px 1fr 1.1fr; gap: 36px; align-items: start;
  padding: 44px 8px; border-bottom: 1px solid rgba(0,114,42,0.25);
  background: transparent; transition: background 0.25s ease;
}
.bp-row:hover { background: rgba(253,250,246,0.75); }
.bp-sys { font-family: var(--mono); font-size: 13px; letter-spacing: 0.14em; color: var(--green); padding-top: 6px; }
.bp-sys small { display: block; color: rgba(14,18,22,0.4); margin-top: 6px; font-size: 11px; }
.bp-row h3 { font-size: clamp(22px, 2.4vw, 30px); }
.bp-row h3 .serif-accent { color: var(--green); }
.bp-desc { color: var(--muted); font-size: 15.5px; }
.bp-desc strong { color: var(--ink); }
.bp-desc .bp-note {
  display: block; margin-top: 14px; font-family: var(--mono); font-size: 12px;
  color: var(--green); letter-spacing: 0.04em;
}

/* ---------- The Engine: build-spec ticket ---------- */
.ticket {
  max-width: 1000px; margin: 0 auto; position: relative;
  background: linear-gradient(160deg, #101512, #080a09);
  border: 1px solid rgba(37,183,24,0.3); border-radius: 20px;
  padding: 0; overflow: hidden;
  box-shadow: 0 50px 120px rgba(0,0,0,0.6), 0 0 80px rgba(37,183,24,0.08);
}
.ticket-head {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding: 26px 40px; border-bottom: 1px dashed rgba(37,183,24,0.35);
  font-family: var(--mono);
}
.ticket-head .t-title { font-size: 16px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--emerald); }
.ticket-head .t-ref { font-size: 14px; color: #9aab9f; }
.ticket-body { padding: 18px 46px; }
.spec-line {
  display: grid; grid-template-columns: 34px 1fr auto; gap: 22px; align-items: baseline;
  padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.spec-line:last-child { border-bottom: none; }
.spec-line .n { font-family: var(--mono); font-size: 15px; color: #55675b; }
.spec-line .what { font-size: 19px; color: #dbe6dd; line-height: 1.4; }
.spec-line .what strong { color: #fff; }
.spec-line .what small { display: block; color: #97a89d; font-size: 15px; margin-top: 6px; line-height: 1.45; }
.spec-line .inc { font-family: var(--mono); font-size: 13px; letter-spacing: 0.14em; color: var(--emerald); white-space: nowrap; }
.ticket-total {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px;
  padding: 34px 46px; border-top: 1px dashed rgba(37,183,24,0.35); background: rgba(37,183,24,0.05);
}
.ticket-total .price { font-family: 'Sora', sans-serif; font-size: 46px; font-weight: 900; color: #fff; line-height: 1; }
.ticket-total .price small { font-size: 20px; color: #a9b8ad; font-weight: 500; }
.ticket-total .terms { font-family: var(--mono); font-size: 15px; color: #b9c7bd; letter-spacing: 0.05em; margin-top: 14px; line-height: 1.6; }
.ticket-stamp {
  position: absolute; top: 96px; right: -56px; transform: rotate(35deg); pointer-events: none;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(37,183,24,0.85); border: 1px solid rgba(37,183,24,0.5);
  padding: 6px 42px; background: rgba(4,18,10,0.8);
}

/* ---------- Architect manifesto ---------- */
.manifesto { background: radial-gradient(ellipse at 50% 0%, #131c16 0%, var(--abyss) 62%); text-align: center; }
.manifesto .big-line {
  font-family: 'Sora', sans-serif; font-weight: 600;
  font-size: clamp(32px, 5vw, 58px); line-height: 1.18; color: #eef3ef;
  max-width: 900px; margin: 0 auto 28px;
}
.manifesto .big-line em { color: var(--emerald); font-style: normal; font-family: var(--mono); font-weight: 400; text-shadow: 0 0 24px rgba(37,183,24,0.5); }
.manifesto .mfst-sub { color: #c4d2c8; font-size: clamp(18px, 2vw, 23px); line-height: 1.55; max-width: 820px; margin: 0 auto 40px; }
.manifesto .mfst-sub strong { color: #fff; }

/* Included vs quoted: the badges that kill the "is this in my $297?" question */
.cap-legend {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 26px; margin-bottom: 26px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #a9b8ad;
}
.cap-legend span { display: flex; align-items: center; gap: 9px; }
.cap-legend i { width: 10px; height: 10px; border-radius: 3px; display: block; }
.cap-legend .dot-in { background: var(--emerald); box-shadow: 0 0 12px rgba(37,183,24,0.7); }
.cap-legend .dot-cus { background: transparent; border: 1.5px solid rgba(255,255,255,0.4); }
.cap-badge {
  display: inline-block; margin-top: 14px; font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 6px;
}
.cap-badge.in { background: rgba(37,183,24,0.16); color: var(--emerald); border: 1px solid rgba(37,183,24,0.45); }
.cap-badge.cus { background: rgba(255,255,255,0.04); color: #9fb2a5; border: 1px solid rgba(255,255,255,0.18); }
.cap-card { display: flex; flex-direction: column; }
.cap-card p { flex: 1; }
/* The architect's face — credibility for the buyers who need a person, not a brand */
.architect-face { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 0 0 34px; }
.architect-face img {
  width: 66px; height: 66px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(37,183,24,0.5); box-shadow: 0 0 26px rgba(37,183,24,0.22);
}
.architect-face p { font-family: 'Sora', sans-serif; font-size: 15px; color: #fff; text-align: left; line-height: 1.4; }
.architect-face p span { display: block; font-family: var(--mono); font-size: 12px; color: var(--emerald); letter-spacing: 0.08em; }

.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 820px; margin: 0 auto 46px; }
.chip {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.08em;
  color: #dbe6dd; border: 1px solid var(--line-dark); border-radius: 999px;
  padding: 10px 20px; background: rgba(255,255,255,0.03);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.chip:hover { border-color: rgba(37,183,24,0.6); color: var(--emerald); }

/* Capability grid: matrix tiles, benefit-first (GIB 2026-08-14: "It's not about what it does.
   It's about how it will help the business owner.") */
.cap-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(225px, 1fr)); gap: 16px;
  max-width: 1180px; margin: 0 auto 48px; text-align: left;
}
.cap-card {
  position: relative; border: 1px solid rgba(37,183,24,0.28); border-radius: 10px;
  background: linear-gradient(160deg, rgba(37,183,24,0.05), rgba(255,255,255,0.015));
  padding: 20px 20px 18px; transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.cap-card::before, .cap-card::after {
  content: ''; position: absolute; width: 10px; height: 10px; border-style: solid; border-color: var(--emerald);
}
.cap-card::before { top: -1px; left: -1px; border-width: 1.5px 0 0 1.5px; }
.cap-card::after { bottom: -1px; right: -1px; border-width: 0 1.5px 1.5px 0; }
.cap-card:hover { transform: translateY(-4px); border-color: rgba(37,183,24,0.65); box-shadow: 0 14px 40px rgba(0,0,0,0.4), 0 0 30px rgba(37,183,24,0.12); }
.cap-card .cap-tag {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--emerald); display: block; margin-bottom: 10px; text-shadow: 0 0 12px rgba(37,183,24,0.5);
}
.cap-card b { font-family: 'Sora', sans-serif; font-size: 22px; line-height: 1.2; color: #fff; display: block; margin-bottom: 9px; }
.cap-card p { font-size: 14.5px; color: #a9b8ad; line-height: 1.5; }
.cap-wide { grid-column: span 2; border-color: rgba(37,183,24,0.55); background: linear-gradient(160deg, rgba(37,183,24,0.10), rgba(255,255,255,0.02)); }
.cap-wide b { font-size: 27px; }
.cap-wide p { font-size: 15.5px; }
@media (max-width: 640px) { .cap-wide { grid-column: span 1; } }

/* Why cards: dark tiles on bright ground, Stone-structure with our words */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
  background: #ffffff;
  border: 1px solid rgba(14,18,22,0.09); border-radius: 16px; padding: 32px 30px;
  box-shadow: 0 2px 4px rgba(14,18,22,0.04);
  position: relative; overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.why-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--emerald), rgba(0,114,42,0.25));
  opacity: 0; transition: opacity 0.28s ease;
}
.why-card:hover { transform: translateY(-6px); border-color: rgba(0,114,42,0.3); box-shadow: 0 22px 48px rgba(14,18,22,0.10); }
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 56px; height: 56px; border-radius: 14px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; font-size: 25px;
  color: var(--green); border: none; background: rgba(0,114,42,0.08);
}
.why-icon svg { width: 30px; height: 30px; display: block; }
.why-card b { font-family: 'Sora', sans-serif; font-size: 21px; color: var(--ink); display: block; margin-bottom: 10px; letter-spacing: -0.01em; }
.why-card p { font-size: 15.5px; color: var(--muted); line-height: 1.6; }
@media (max-width: 960px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .why-grid { grid-template-columns: 1fr; } }

/* Leak rows: the alarm section */
:root { --alarm: #ff5230; }
.alarm-word { color: var(--alarm); text-shadow: 0 0 26px rgba(255,82,48,0.35); }
.leak-rows { border-top: 1px dashed rgba(255,82,48,0.4); }
.leak-row {
  display: grid; grid-template-columns: 150px 1fr; gap: 34px; align-items: start;
  padding: 40px 6px; border-bottom: 1px dashed rgba(255,82,48,0.4);
}
.leak-tag {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.16em; color: var(--alarm);
  display: flex; align-items: center; gap: 10px; padding-top: 10px;
}
.leak-tag i {
  width: 9px; height: 9px; border-radius: 50%; background: var(--alarm); display: block;
  box-shadow: 0 0 12px rgba(255,82,48,0.8); animation: alarmpulse 1.6s ease-in-out infinite;
}
@keyframes alarmpulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.75); } }
.leak-row h3 { font-size: clamp(24px, 3vw, 38px); margin-bottom: 8px; }
.leak-row p { font-size: 16.5px; color: var(--muted); max-width: 720px; }
.leak-row p strong { color: var(--ink); }
@media (max-width: 700px) { .leak-row { grid-template-columns: 1fr; gap: 10px; } }

/* ---------- Process timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 26px; }
.timeline::before {
  content: ''; position: absolute; top: 21px; left: 6%; right: 6%; height: 2px;
  background: linear-gradient(90deg, rgba(0,114,42,0.15), rgba(0,114,42,0.6), rgba(0,114,42,0.15));
}
.tl-step { padding: 0 22px; position: relative; text-align: center; }
.tl-node {
  width: 42px; height: 42px; border-radius: 50%; margin: 0 auto 22px; position: relative; z-index: 2;
  background: var(--cream); border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 14px; font-weight: 700; color: var(--green);
}
.tl-step h3 { font-size: 19px; margin-bottom: 10px; }
.tl-step p { font-size: 14.5px; color: var(--muted); }

/* ---------- FAQ split ---------- */
.faq-split { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 64px; align-items: start; }
.faq-side { position: sticky; top: 120px; }
.faq-side h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 16px; }
.faq-side p { color: var(--muted); font-size: 16px; }
.faq details {
  background: var(--card); border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: 22px 26px; margin-bottom: 14px;
}
.faq summary {
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 16.5px; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 22px; color: var(--green); transition: transform 0.2s; flex-shrink: 0; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 14px; color: var(--muted); font-size: 15.5px; }

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; position: relative; overflow: hidden; padding: 130px 0; }
.final-cta .sec-index { justify-content: center; }
.final-cta .sec-index::after { display: none; }
.final-cta h2 { font-size: clamp(38px, 5.6vw, 64px); margin-bottom: 22px; }
.final-cta p { color: #a9b8ad; font-size: 18px; max-width: 560px; margin: 0 auto 40px; }
.final-cta .glow {
  position: absolute; left: 50%; top: 55%; transform: translate(-50%, -50%);
  width: 720px; height: 480px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(37,183,24,0.13), transparent 65%);
}
.final-cta .micro { font-family: var(--mono); font-size: 12px; color: #55675b; margin-top: 22px; letter-spacing: 0.1em; }

/* ---------- Footer ---------- */
footer { background: var(--abyss); color: #7d8c81; padding: 44px 0; font-size: 14px; border-top: 1px solid var(--line-dark); }
footer .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; }
footer img { height: 46px; }
footer a { color: #a9b8ad; text-decoration: none; }
footer a:hover { color: var(--emerald); }

/* ---------- Pimp layer: grain, orbs, shimmer, sheen ---------- */

/* Film grain over everything (SVG noise, fixed, subtle) */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 200; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* Hero particle canvas sits between video and content */
#net { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.55; }
.hero-inner { z-index: 3; }

/* Drifting glow orbs behind dark sections */
.orb {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(90px);
  background: radial-gradient(circle, rgba(37,183,24,0.20), rgba(14,64,38,0.06) 60%, transparent 75%);
  animation: orbdrift 26s ease-in-out infinite alternate;
}
@keyframes orbdrift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(60px, -50px) scale(1.15); }
}

/* Rotating gradient border on the offer ticket */
.ticket { border: none; }
.ticket::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px; padding: 1.5px; z-index: 0;
  background: conic-gradient(from var(--tick-angle, 0deg), rgba(37,183,24,0.7), rgba(37,183,24,0.06) 30%, rgba(37,183,24,0.35) 55%, rgba(37,183,24,0.06) 80%, rgba(37,183,24,0.7));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: tickspin 7s linear infinite;
}
@property --tick-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes tickspin { to { --tick-angle: 360deg; } }
.ticket > * { position: relative; z-index: 1; }

/* Light sweep across laptops and wall cards on hover */
.laptop-screen::before, .wall-card .wall-shot::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: -80%; width: 55%; z-index: 3;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.16), transparent);
  transform: skewX(-18deg); transition: left 0.75s ease; pointer-events: none;
}
.wall-card .wall-shot { position: relative; }
.laptop:hover .laptop-screen::before, .wall-card:hover .wall-shot::after { left: 130%; }

/* ---------- The Operator: Matrix portrait section below the hero ---------- */
.operator { position: relative; overflow: hidden; padding: 110px 0 150px; }
.operator .rain { position: absolute; inset: 0; opacity: 0.35; pointer-events: none; }
.operator .wrap { position: relative; z-index: 2; }
.operator-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; position: relative; }

/* The build terminal — decorative, off to the side (moved out of the Machine 2026-08-14) */
.op-terminal {
  position: absolute; left: 0; bottom: -84px; z-index: 3; width: 262px;
  border: 1px solid rgba(37,183,24,0.35); border-radius: 10px; overflow: hidden;
  background: rgba(6,12,8,0.92); backdrop-filter: blur(6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 40px rgba(37,183,24,0.10);
  font-family: var(--mono); pointer-events: none;
}
.op-term-bar {
  display: flex; align-items: center; gap: 5px; padding: 8px 12px;
  background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(37,183,24,0.22);
}
.op-term-bar i { width: 7px; height: 7px; border-radius: 50%; background: #253028; display: block; }
.op-term-bar i:first-child { background: rgba(37,183,24,0.7); }
.op-term-bar span { margin-left: 6px; font-size: 10px; letter-spacing: 0.1em; color: #6d7d72; }
.op-term-body { padding: 13px 14px 15px; font-size: 11.5px; line-height: 1.9; color: #8fa396; }
.op-term-body em { font-style: normal; color: var(--emerald); margin-right: 6px; }
.op-term-body b { color: var(--emerald); font-weight: 400; }
.op-term-body p { opacity: 0; animation: termLine 0.35s ease forwards; }
.op-term-body p:nth-child(1) { animation-delay: 0.3s; }
.op-term-body p:nth-child(2) { animation-delay: 1.1s; }
.op-term-body p:nth-child(3) { animation-delay: 1.9s; }
.op-term-body p:nth-child(4) { animation-delay: 2.7s; }
.op-term-granted {
  margin-top: 9px; padding-top: 9px; border-top: 1px solid rgba(37,183,24,0.22);
  color: var(--emerald); font-size: 13px; letter-spacing: 0.18em;
  text-shadow: 0 0 14px rgba(37,183,24,0.6); animation-delay: 3.5s !important;
}
.op-cursor { margin-left: 4px; animation: cursorblink 1s step-end infinite; }
@keyframes termLine { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
@media (max-width: 1100px) { .op-terminal { display: none; } }
.operator-photo { position: relative; border-radius: 18px; overflow: hidden; box-shadow: 0 50px 110px rgba(0,0,0,0.6), 0 0 90px rgba(37,183,24,0.15); }
.operator-photo img { width: 100%; display: block; }
.operator-photo .op-tag {
  position: absolute; left: 18px; bottom: 18px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; color: var(--emerald);
  border: 1px solid rgba(37,183,24,0.5); background: rgba(4,18,10,0.75); padding: 8px 14px; border-radius: 6px;
}
.operator-copy h2 { font-size: clamp(30px, 4.4vw, 52px); color: #fff; margin: 12px 0 18px; }
.operator-copy p { color: #a9b8ad; font-size: 17px; margin-bottom: 16px; }
.operator-copy strong { color: #fff; }
.operator-copy .op-line { font-family: var(--mono); font-size: 16px; letter-spacing: 0.06em; color: var(--emerald); text-shadow: 0 0 16px rgba(37,183,24,0.5); }
@media (max-width: 900px) { .operator-grid { grid-template-columns: 1fr; gap: 30px; } }

/* Rain canvas in the final CTA too */
.final-cta { position: relative; }
.final-cta .rain { position: absolute; inset: 0; opacity: 0.22; pointer-events: none; }
.final-cta .wrap { position: relative; z-index: 2; }

/* ---------- The spine: page-as-system-diagram nav ---------- */
.spine {
  position: fixed; left: 30px; top: 50%; transform: translateY(-50%); z-index: 90;
  display: flex; flex-direction: column; gap: 0;
}
.spine a {
  position: relative; display: flex; align-items: center; gap: 12px;
  padding: 11px 0; text-decoration: none;
}
.spine a::before {
  content: ''; position: absolute; left: 4.5px; top: 50%; width: 1px; height: 100%;
  background: rgba(255,255,255,0.12);
}
.spine a:last-child::before { display: none; }
.spine a.lit::before { background: rgba(37,183,24,0.55); }
.spine i {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; position: relative; z-index: 1;
  background: #131715; border: 1.5px solid rgba(255,255,255,0.25); transition: all 0.3s ease; display: block;
}
.spine a.lit i { border-color: var(--emerald); background: #0a1f0d; }
.spine a.here i { background: var(--emerald); box-shadow: 0 0 12px rgba(37,183,24,0.8); }
.spine span {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #7d8c81; opacity: 0; transform: translateX(-6px); transition: all 0.25s ease; white-space: nowrap;
}
.spine a:hover span, .spine a.here span { opacity: 1; transform: none; color: var(--emerald); }

/* Drafting corner ticks on the offer ticket */
.ticket-head { position: relative; }
.ticket-head::before, .ticket-head::after,
.ticket-total::before, .ticket-total::after {
  content: ''; position: absolute; width: 14px; height: 14px; z-index: 2;
  border-color: rgba(37,183,24,0.6); border-style: solid;
}
.ticket-head::before { top: 10px; left: 10px; border-width: 1.5px 0 0 1.5px; }
.ticket-head::after { top: 10px; right: 10px; border-width: 1.5px 1.5px 0 0; }
.ticket-total { position: relative; }
.ticket-total::before { bottom: 10px; left: 10px; border-width: 0 0 1.5px 1.5px; }
.ticket-total::after { bottom: 10px; right: 10px; border-width: 0 1.5px 1.5px 0; }

/* ---------- Chat widget ---------- */
.gv-chat { position: fixed; right: 22px; bottom: 22px; z-index: 300; }
.gv-chat-btn {
  position: relative; width: 62px; height: 62px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, #2fc41f, #00722a); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(0,114,42,0.5), 0 0 30px rgba(37,183,24,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: chatBob 3.4s ease-in-out infinite;
}
.gv-chat-btn:hover { transform: scale(1.06); box-shadow: 0 16px 40px rgba(0,114,42,0.6), 0 0 44px rgba(37,183,24,0.55); }
.gv-chat-btn svg { width: 27px; height: 27px; }
.gv-ic-close { display: none; }
.gv-chat.open .gv-ic-open { display: none; }
.gv-chat.open .gv-ic-close { display: block; }
.gv-chat.open .gv-chat-btn { animation: none; }
@keyframes chatBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.gv-chat-badge {
  position: absolute; top: -3px; right: -3px; min-width: 21px; height: 21px; border-radius: 11px;
  background: #ff4d3d; color: #fff; font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; border: 2px solid #070808;
}
.gv-chat.open .gv-chat-badge { display: none; }

.gv-chat-panel {
  position: absolute; right: 0; bottom: 78px; width: 340px; max-width: calc(100vw - 44px);
  background: #0d120f; border: 1px solid rgba(37,183,24,0.3); border-radius: 16px; overflow: hidden;
  box-shadow: 0 26px 70px rgba(0,0,0,0.6), 0 0 50px rgba(37,183,24,0.12);
  opacity: 0; transform: translateY(12px) scale(0.98); pointer-events: none;
  transition: opacity 0.26s ease, transform 0.26s ease;
}
.gv-chat.open .gv-chat-panel { opacity: 1; transform: none; pointer-events: auto; }
.gv-chat-head {
  display: flex; align-items: center; gap: 12px; padding: 16px 18px;
  background: linear-gradient(135deg, rgba(37,183,24,0.16), rgba(0,114,42,0.06));
  border-bottom: 1px solid rgba(37,183,24,0.2);
}
.gv-chat-head img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(37,183,24,0.55); }
.gv-chat-head b { display: block; font-family: 'Sora', sans-serif; font-size: 15px; color: #fff; }
.gv-chat-head span { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #9fb2a5; margin-top: 2px; }
.gv-chat-head span i { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 8px var(--emerald); }
.gv-chat-body { padding: 16px 18px 18px; }
.gv-msg {
  background: rgba(255,255,255,0.06); border-radius: 14px; border-bottom-left-radius: 4px;
  padding: 12px 14px; font-size: 14px; color: #dbe6dd; line-height: 1.5; margin-bottom: 14px;
}
.gv-chat-form { display: flex; flex-direction: column; gap: 9px; }
.gv-chat-form input, .gv-chat-form textarea {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark);
  border-radius: 10px; padding: 11px 13px; color: #fff; font-family: 'Inter', sans-serif; font-size: 14px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.gv-chat-form input::placeholder, .gv-chat-form textarea::placeholder { color: #7d8c81; }
.gv-chat-form input:focus, .gv-chat-form textarea:focus {
  outline: none; border-color: rgba(37,183,24,0.7); background: rgba(37,183,24,0.07);
}
.gv-chat-form textarea { resize: none; }
.gv-chat-send {
  margin-top: 3px; background: var(--green); color: #fff; border: none; border-radius: 10px;
  padding: 12px 16px; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 14.5px; cursor: pointer;
  box-shadow: 0 8px 22px rgba(0,114,42,0.4); transition: background 0.2s ease, transform 0.2s ease;
}
.gv-chat-send:hover { background: #008a33; transform: translateY(-1px); }
.gv-hp { position: absolute; left: -5000px; }
.gv-chat-done { display: none; font-size: 14.5px; color: var(--emerald); padding: 8px 2px; line-height: 1.5; }
.gv-chat.sent .gv-chat-form { display: none; }
.gv-chat.sent .gv-chat-done { display: block; }
@media (max-width: 620px) {
  .gv-chat { right: 16px; bottom: 16px; }
  .gv-chat-btn { width: 56px; height: 56px; }
  .gv-chat-panel { width: calc(100vw - 32px); bottom: 70px; }
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 1.1s cubic-bezier(0.19, 1, 0.22, 1), transform 1.1s cubic-bezier(0.19, 1, 0.22, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ---------- Responsive ---------- */
/* ---------- MOBILE NAV (built 2026-08-14: the CTA must never disappear on a phone) ---------- */
@media (max-width: 1000px) {
  .nav { padding: 8px 16px; }
  .nav-toggle { display: flex; }
  .nav-logo .logo-full { display: none; }
  .nav-logo .logo-mark { display: block; height: 54px; }
  .nav-logo::before { width: 74px; height: 74px; left: -10px; }
  .btn-cta { padding: 11px 16px; font-size: 13.5px; gap: 7px; }
  .btn-cta .cta-arrow { display: none; }

  .nav-links {
    position: fixed; left: 0; right: 0; top: var(--navh, 80px);
    height: calc(100dvh - var(--navh, 80px));
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(6,10,8,0.97); backdrop-filter: blur(14px);
    padding: 10px 22px 40px; overflow-y: auto; overscroll-behavior: contain;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease;
    border-top: 1px solid rgba(37,183,24,0.25);
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a {
    font-family: 'Sora', sans-serif; font-size: 21px; font-weight: 600; color: #fff;
    padding: 20px 4px; border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links a:last-child { border-bottom: none; }
}

@media (max-width: 960px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .wall-grid { grid-template-columns: 1fr 1fr; }
  .showcase, .faq-split { grid-template-columns: 1fr; gap: 32px; }
  .showcase.flip .show-media { order: 0; }
  .faq-side { position: static; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .bp-row { grid-template-columns: 1fr; gap: 14px; padding: 34px 4px; }
  .timeline { grid-template-columns: 1fr 1fr; row-gap: 44px; }
  .timeline::before { display: none; }
}
@media (max-width: 620px) {
  .grid-3, .stat-strip, .timeline { grid-template-columns: 1fr; }
  section { padding: 68px 0; }
  .hero { padding-top: 110px; }
  .hero h1 { font-size: clamp(30px, 9.4vw, 40px); overflow-wrap: break-word; }
  .hero-sub { font-size: 16.5px; }
  .section-head h2 { font-size: clamp(28px, 8.6vw, 40px); overflow-wrap: break-word; }
  .machine-head h2, .trophy-title h2 { font-size: clamp(26px, 8vw, 36px); }
  .engine-price, .ticket-total .price { font-size: 40px; }
  .ticket-head, .ticket-body, .ticket-total { padding-left: 20px; padding-right: 20px; }
  /* the price block already says "everything included" - drop the per-line tags so titles get full width */
  .spec-line { grid-template-columns: 26px 1fr; gap: 14px; padding: 18px 0; }
  .spec-line .inc { display: none; }
  .spec-line .what { font-size: 17.5px; }
  .spec-line .what small { font-size: 14px; }
  .ticket-stamp { display: none; }
  .mviz-bubble { font-size: 13px; max-width: 86%; }
}
