/* ════════════════════════════════════════════════════════════════════════
   YEAR2066.ai — site.css (relaunch V2, built from scratch)
   One-page, minimalist, one CTA. Dark, warm black, brand red, quiet gold.
   Journey state classes (.is-done/.is-next/.locked, .celebrate) are set by
   assets/journey.js; static markup defaults to the locked state.
   ════════════════════════════════════════════════════════════════════════ */

:root {
  --bg: #050304;
  --panel: rgba(20, 14, 14, 0.72);
  --line: rgba(255, 255, 255, 0.10);
  --text: #fffaf3;
  --muted: #cfc0b4;
  --dim: #8d7a70;
  --red: #ff3e3e;
  --red-soft: #ff6b6b;
  --red-deep: #8b1118;
  --gold: #f7c86a;
  --mint: #35d6a3;
  --radius: 26px;
  --max: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 68px;
  /* solid dark base so no white ever shows below a short page's gradient */
  background-color: var(--bg);
}
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  background:
    radial-gradient(1100px 520px at 12% -6%, rgba(139, 17, 24, 0.28), transparent 60%),
    radial-gradient(900px 480px at 88% 12%, rgba(247, 200, 106, 0.05), transparent 55%),
    linear-gradient(180deg, #070405, var(--bg) 40%, #0b0506);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
::selection { background: var(--gold); color: #1a0f05; }
a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; }

.wrap { width: min(var(--max), calc(100% - 44px)); margin: 0 auto; }

h1 {
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 900;
  text-wrap: balance;
}
h2 {
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 900;
  text-transform: uppercase;
}
.gradient {
  background: linear-gradient(115deg, #fffaf3 8%, var(--red-soft) 55%, var(--red-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 850; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red-soft);
  margin-bottom: 16px;
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--red); border-radius: 2px; }
.lead { color: var(--muted); font-size: clamp(16px, 1.4vw, 18.5px); max-width: 620px; }
.section-copy { color: var(--muted); font-size: 17px; max-width: 700px; margin-top: 14px; }

section { padding: 96px 0; }
.section-head { max-width: 780px; margin-bottom: 36px; }

/* one focused screen per section: you scroll from article to article */
.screen {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-content: center;
  padding: 88px 0 56px;
}

/* ── buttons: exactly two shapes site-wide ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 50px; padding: 0 26px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  color: var(--text);
  font-size: 15px; font-weight: 800; letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, opacity 160ms ease;
}
.btn:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, 0.22); }
.btn.primary {
  border-color: rgba(255, 79, 79, 0.55);
  background: linear-gradient(160deg, #ff4f4f, #8b1118 82%);
  box-shadow: 0 12px 38px rgba(255, 62, 62, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn.primary:hover { box-shadow: 0 16px 48px rgba(255, 62, 62, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.22); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn.is-locked, .btn.is-disabled { opacity: 0.42; pointer-events: none; filter: saturate(0.55); }

/* THE call to action: one button, one label (START HERE), one look,
   with a permanent shimmer sweep. Used identically everywhere. */
.cta-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 79, 79, 0.55);
  background: linear-gradient(160deg, #ff4f4f, #8b1118 82%);
  box-shadow: 0 12px 38px rgba(255, 62, 62, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  color: var(--text);
  font-size: 14px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase;
  overflow: hidden;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.cta-btn::after {
  content: "";
  position: absolute; top: -4px; bottom: -4px; left: -70%;
  width: 46%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-18deg);
  animation: ctaShine 3.4s ease-in-out infinite;
}
@keyframes ctaShine {
  0% { left: -70%; }
  46% { left: 135%; }
  100% { left: 135%; }
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 52px rgba(255, 62, 62, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.cta-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.cta-btn.is-locked { opacity: 0.42; pointer-events: none; filter: saturate(0.55); }

/* ── nav: brand · two anchors · language · one CTA ─────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(6, 4, 5, 0.78);
  backdrop-filter: blur(18px) saturate(130%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.nav-inner { display: flex; align-items: center; gap: 26px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: 0.02em; }
.brand-mark {
  position: relative; flex: none;
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(160deg, #221517, #0a0607);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.brand-mark::before {
  content: ""; position: absolute; inset: 1px; border-radius: 9px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), transparent 55%);
}
.brand-mark::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 12px; height: 12px; border-radius: 4px;
  background: linear-gradient(160deg, #ff5a5a, #a31220);
  animation: markBreath 4.5s ease-in-out infinite;
}
@keyframes markBreath {
  0%, 100% { box-shadow: 0 0 8px rgba(255, 62, 62, 0.4); }
  50% { box-shadow: 0 0 17px rgba(255, 62, 62, 0.8); }
}
.brand b { font-size: 17px; }
.brand b span { color: var(--red); }
.brand small {
  margin-left: 10px;
  font-size: 9.5px; font-weight: 850; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red);
  opacity: 0.85;
}
.nav-links { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.nav-links > a {
  font-size: 14px; font-weight: 700; color: var(--muted);
  transition: color 150ms ease;
}
.nav-links > a:hover { color: var(--text); }
/* explicit back-to-site link on legal pages — clearer than the logo alone */
.nav-links > a.nav-back { color: var(--muted); font-weight: 800; }
.nav-links > a.nav-back:hover { color: var(--text); }
.lang-switch { display: flex; gap: 2px; border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.lang-switch button {
  border: 0; background: transparent; color: var(--dim);
  font: inherit; font-size: 11.5px; font-weight: 850; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 999px; cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}
.lang-switch button.active { background: rgba(255, 255, 255, 0.1); color: var(--text); }
/* nav CTA = the same .cta-btn as everywhere (identical look, rule of ONE) */

/* ── hero ──────────────────────────────────────────────────────────────── */
.hero.screen {
  min-height: calc(100vh - 68px);
  min-height: calc(100svh - 68px);
  padding: 24px 0 48px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 1.05fr);
  gap: 56px;
  align-items: center;
}
.brand-slogan { color: var(--red-soft); font-weight: 850; letter-spacing: 0.02em; margin: 18px 0 10px; }
.hero .lead { margin-bottom: 34px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-more { color: var(--dim); font-size: 14px; font-weight: 700; }
.hero-more:hover { color: var(--muted); }

/* proof list: four claims as animated checkmarks (pop in on load) */
/* Proof bracket (variant B): a kicker band on top ("Unser Fundament") in the
   same style as the section kickers, framing the four facts as one unit. */
.proof-bracket {
  margin-top: 38px;
}
.proof-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
  font-size: 12px; font-weight: 850; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red-soft);
  opacity: 0;
  animation: proofIn 520ms cubic-bezier(0.2, 0.9, 0.3, 1) 400ms both;
}
.proof-kicker::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--red-soft);
  transform-origin: left; transform: scaleX(0);
  animation: proofKickerLine 520ms cubic-bezier(0.3, 0, 0.1, 1) 500ms forwards;
}
@keyframes proofKickerLine { to { transform: scaleX(1); } }

.proof-list {
  display: grid;
  gap: 13px;
  margin-top: 0;
  list-style: none;
}
.proof-list li {
  display: flex; align-items: center; gap: 12px;
  color: var(--muted);
  font-size: 15.5px; font-weight: 750;
  opacity: 0;
  animation: proofIn 520ms cubic-bezier(0.2, 0.9, 0.3, 1) both;
}
.proof-list li:nth-child(1) { animation-delay: 600ms; }
.proof-list li:nth-child(2) { animation-delay: 1300ms; }
.proof-list li:nth-child(3) { animation-delay: 2000ms; }
.proof-list li:nth-child(4) { animation-delay: 2700ms; }
@keyframes proofIn {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: none; }
}
.proof-list .pl-check {
  display: grid; place-items: center; flex: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(53, 214, 163, 0.12);
  border: 1px solid rgba(53, 214, 163, 0.45);
  color: var(--mint);
}
.proof-list .pl-check svg {
  width: 13px; height: 13px; fill: none;
  stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 24; stroke-dashoffset: 24;
  animation: proofTick 420ms ease forwards;
}
.proof-list li:nth-child(1) .pl-check svg { animation-delay: 850ms; }
.proof-list li:nth-child(2) .pl-check svg { animation-delay: 1550ms; }
.proof-list li:nth-child(3) .pl-check svg { animation-delay: 2250ms; }
.proof-list li:nth-child(4) .pl-check svg { animation-delay: 2950ms; }
@keyframes proofTick { to { stroke-dashoffset: 0; } }

/* ── hero animation: CHAOS → ORDER (ported brand visual) ───────────────── */
.chaos-order {
  position: relative;
  container-type: size;
  width: calc(100% + 80px);
  margin-left: -56px;
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 50%, rgba(255, 62, 62, 0.09), transparent 40%),
    radial-gradient(circle at 84% 50%, rgba(247, 200, 106, 0.06), transparent 42%),
    linear-gradient(155deg, rgba(18, 12, 12, 0.92), rgba(5, 5, 6, 0.92) 62%, rgba(7, 9, 13, 0.94));
  box-shadow: 0 48px 132px rgba(0, 0, 0, 0.5), 0 18px 58px rgba(139, 17, 24, 0.1);
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.72) 14%, #000 30%);
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.72) 14%, #000 30%);
}
.co-seam {
  position: absolute; left: 50%; top: 14%; bottom: 14%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,62,62,0.28), rgba(247,200,106,0.2), transparent);
  z-index: 3;
}
.co-caption {
  position: absolute; left: 0; right: 0; bottom: 15px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: baseline;
  z-index: 4;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
}
.co-caption .chaos { color: rgba(255, 138, 138, 0.7); justify-self: end; padding-right: 34px; }
.co-caption .order { color: rgba(255, 217, 168, 0.75); justify-self: start; padding-left: 34px; }
.co-caption i {
  font-style: italic; text-transform: none; letter-spacing: 0.04em;
  color: var(--dim); font-weight: 750;
}
.co-bit {
  position: absolute;
  width: var(--w, 26px); height: 7px;
  border-radius: 3px;
  background: var(--c, rgba(226,232,240,0.55));
  will-change: transform, opacity;
  animation: coFlow var(--dur, 11s) ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes coFlow {
  0%   { transform: translate(0,0); opacity: 0; }
  10%  { opacity: 0.7; }
  34%  { transform: translate(var(--mx, 40px), var(--my, 0px)); opacity: 0.85; }
  88%  { transform: translate(var(--mx, 40px), var(--my, 0px)); opacity: 0.85; }
  100% { transform: translate(var(--mx, 40px), var(--my, 0px)); opacity: 0; }
}
.co-order-grid {
  position: absolute; right: 5%; left: 50%; top: 12%; bottom: 16%;
  display: grid; grid-template-rows: repeat(6, 1fr);
  opacity: 0.6; z-index: 1;
}
.co-order-grid i { position: relative; border-top: 1px solid rgba(247, 200, 106, 0.06); }
.co-order-grid i::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 3px; height: 3px; border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(247, 200, 106, 0.32);
}

/* ── journey (the conversion spine) ────────────────────────────────────── */
.journey-stages { display: grid; gap: 14px; }
.stage {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 26px 28px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)), var(--panel);
  transition: opacity 380ms ease, filter 380ms ease, border-color 380ms ease, box-shadow 380ms ease;
}
.stage::after {
  content: "";
  position: absolute; left: 55px; top: 100%;
  width: 2px; height: 15px;
  background: rgba(255, 255, 255, 0.14);
}
.stage:last-child::after { display: none; }
.stage-num {
  position: relative;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 79, 79, 0.5);
  background: linear-gradient(160deg, rgba(255, 62, 62, 0.2), rgba(139, 17, 24, 0.1));
  font-size: 19px; font-weight: 900; color: var(--red-soft);
  box-shadow: 0 0 22px rgba(255, 62, 62, 0.22);
}
.stage-num .num, .stage-num .lock, .stage-num .tick {
  grid-area: 1 / 1; display: grid; place-items: center;
  transition: opacity 220ms ease;
}
.stage-num svg {
  width: 22px; height: 22px; fill: none;
  stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round;
}
.stage-num .lock, .stage-num .tick { opacity: 0; pointer-events: none; }
.stage-label {
  display: block;
  font-size: 11.5px; font-weight: 850; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red-soft);
  margin-bottom: 6px;
}
.stage-body strong { display: block; font-size: clamp(19px, 2vw, 23px); font-weight: 900; letter-spacing: -0.01em; }
.stage-body p { color: var(--muted); font-size: 14.5px; margin-top: 7px; max-width: 560px; }
.stage-cta { white-space: nowrap; }

/* pills: one per state, markup carries all, state decides visibility */
.req-pill, .lock-pill, .done-pill, .unlocked-pill {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 12px;
  padding: 5px 12px; border-radius: 999px;
  font-size: 10.5px; font-weight: 850; letter-spacing: 0.14em; text-transform: uppercase;
}
.req-pill { color: #bff5e2; background: rgba(53, 214, 163, 0.1); border: 1px solid rgba(53, 214, 163, 0.35); }
.lock-pill { color: var(--dim); background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line); }
.done-pill, .unlocked-pill { display: none; }

/* exactly ONE visible button in the journey: the current step's START HERE */
.stage.locked .stage-cta, .stage.is-done .stage-cta { display: none; }

/* states */
.stage.locked { opacity: 0.58; filter: saturate(0.65); }
.stage.locked .stage-num {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
  color: var(--dim);
}
.stage.locked .stage-num .lock { opacity: 1; }
.stage.locked .stage-num .num { opacity: 0; }
.stage.is-next {
  opacity: 1; filter: none;
  border-color: rgba(255, 62, 62, 0.42);
  box-shadow: 0 18px 60px rgba(139, 17, 24, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.stage.is-next .stage-num { animation: jNextPulse 2.8s ease-in-out infinite; }
@keyframes jNextPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 62, 62, 0.26); }
  50% { box-shadow: 0 0 38px rgba(255, 62, 62, 0.5); }
}
.stage.is-done { opacity: 1; filter: none; border-color: rgba(53, 214, 163, 0.34); }
.stage.is-done .stage-num {
  border-color: rgba(53, 214, 163, 0.5);
  background: linear-gradient(160deg, rgba(53, 214, 163, 0.2), rgba(53, 214, 163, 0.05));
  box-shadow: 0 0 24px rgba(53, 214, 163, 0.2);
  color: var(--mint);
}
.stage.is-done .stage-num .tick { opacity: 1; }
.stage.is-done .stage-num .num { opacity: 0; }
.stage.is-done::after { background: linear-gradient(180deg, var(--mint), rgba(255, 62, 62, 0.7)); }
.stage.is-done .req-pill, .stage.is-done .lock-pill { display: none; }
.stage.is-done .done-pill {
  display: inline-flex;
  color: #bff5e2; background: rgba(53, 214, 163, 0.13); border: 1px solid rgba(53, 214, 163, 0.4);
}
.stage.is-done .done-pill [data-journey-level] { color: var(--text); }
.stage.is-next .lock-pill { display: none; }
.stage.is-next .unlocked-pill {
  display: inline-flex;
  color: #ffd4d4; background: rgba(255, 62, 62, 0.13); border: 1px solid rgba(255, 62, 62, 0.42);
}

/* unlock celebration (plays once; journey.js adds .celebrate) */
.journey-stages.celebrate .stage[data-stage="1"] .stage-num .tick {
  animation: jPop 600ms cubic-bezier(0.2, 1.4, 0.4, 1) 200ms both;
}
@keyframes jPop {
  0% { opacity: 0; transform: scale(0.2) rotate(-14deg); }
  62% { opacity: 1; transform: scale(1.22) rotate(3deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
.journey-stages.celebrate .stage[data-stage="1"]::after {
  transform-origin: top;
  animation: jFill 700ms ease 700ms both;
}
@keyframes jFill { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.journey-stages.celebrate .stage[data-stage="2"] {
  animation: jWake 900ms ease 1150ms both;
}
@keyframes jWake {
  0% { opacity: 0.58; filter: saturate(0.65); box-shadow: none; }
  55% { opacity: 1; filter: saturate(1.15); box-shadow: 0 22px 80px rgba(255, 62, 62, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.1); }
  100% { opacity: 1; filter: none; box-shadow: 0 18px 60px rgba(139, 17, 24, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.07); }
}
.journey-stages.celebrate .stage[data-stage="2"] .stage-num .lock {
  opacity: 1;
  animation: jLockFade 500ms ease 2050ms both;
}
@keyframes jLockFade { from { opacity: 1; } to { opacity: 0; } }
.journey-stages.celebrate .stage[data-stage="2"] .stage-num .lock .shackle {
  transform-box: view-box;
  transform-origin: 8px 10px;
  animation: jShackle 620ms cubic-bezier(0.3, 1.5, 0.5, 1) 1450ms both;
}
@keyframes jShackle {
  from { transform: rotate(0deg); }
  to { transform: rotate(-42deg) translateY(-1.5px); }
}
.journey-stages.celebrate .stage[data-stage="2"] .stage-num .num {
  animation: jPop 560ms cubic-bezier(0.2, 1.4, 0.4, 1) 2350ms both;
}
.journey-stages.celebrate .stage[data-stage="2"] .unlocked-pill {
  animation: jPop 480ms ease 2500ms both;
}

/* ── scroll reveal ─────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ── showcase: animated report mock ────────────────────────────────────── */
.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 36px;
  align-items: center;
}
.report-mock {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(160deg, rgba(24, 14, 14, 0.94), rgba(9, 6, 6, 0.97));
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.55), 0 0 60px rgba(139, 17, 24, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  padding: 22px 24px 26px;
  overflow: hidden;
}
.rm-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.rm-dots { display: flex; gap: 6px; }
.rm-dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.14); }
.rm-dots i:first-child { background: rgba(255, 62, 62, 0.75); }
.rm-title {
  margin-left: 8px;
  font-size: 11.5px; font-weight: 900; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dim);
}
.rm-demo-tag {
  margin-left: auto;
  font-size: 10px; font-weight: 900; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(247, 200, 106, 0.4);
  background: rgba(247, 200, 106, 0.08);
  border-radius: 999px;
  padding: 4px 10px;
}
.rm-score { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; }
.rm-score b {
  font-size: clamp(40px, 4.6vw, 56px); font-weight: 950; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.rm-score b::after { content: "%"; font-size: 0.55em; color: var(--red-soft); margin-left: 2px; }
.rm-score span { color: var(--muted); font-size: 14.5px; font-weight: 700; }
.rm-track {
  position: relative;
  height: 10px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  margin-bottom: 26px;
}
.rm-fill {
  height: 100%; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, #711016, #ff4f4f);
  box-shadow: 0 0 18px rgba(255, 62, 62, 0.5);
}
.report-mock.is-playing .rm-fill { animation: rmFill 1500ms cubic-bezier(0.2, 0.8, 0.2, 1) 250ms both; }
@keyframes rmFill { from { width: 0; } to { width: var(--rm-target, 64%); } }
.rm-benchmark {
  position: absolute; top: -5px; bottom: -5px; left: var(--rm-benchmark, 50%);
  width: 2px; background: rgba(247, 200, 106, 0.75); border-radius: 2px;
}
.rm-benchmark span {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%);
  font-size: 9.5px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); white-space: nowrap;
}
.rm-body { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 20px; align-items: center; }
.rm-radar { width: 100%; height: auto; }
.rm-radar .grid-line { stroke: rgba(255, 255, 255, 0.1); fill: none; }
.rm-radar .axis-label {
  fill: var(--dim); font-size: 8.4px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
}
.rm-radar .rm-base {
  fill: none; stroke: rgba(247, 200, 106, 0.8); stroke-width: 1.4; stroke-dasharray: 5 4;
  opacity: 0;
}
.rm-radar .rm-poly {
  fill: rgba(255, 79, 79, 0.22); stroke: #ff4f4f; stroke-width: 2;
  stroke-dasharray: 620; stroke-dashoffset: 620;
  fill-opacity: 0;
}
.report-mock.is-playing .rm-poly { animation: rmDraw 1600ms ease 800ms both; }
.report-mock.is-playing .rm-base { animation: rmBaseIn 700ms ease 1900ms both; }
@keyframes rmDraw {
  0% { stroke-dashoffset: 620; fill-opacity: 0; }
  70% { fill-opacity: 0.06; }
  100% { stroke-dashoffset: 0; fill-opacity: 1; }
}
@keyframes rmBaseIn { from { opacity: 0; } to { opacity: 1; } }
.rm-rows { display: grid; gap: 9px; }
.rm-row {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 12px;
  padding: 10px 13px;
  font-size: 13.5px; font-weight: 750; color: var(--muted);
  opacity: 0; transform: translateY(9px);
}
.rm-row b { color: var(--text); font-weight: 900; white-space: nowrap; }
.rm-row .rm-ico { color: var(--mint); font-weight: 900; }
.report-mock.is-playing .rm-row:nth-child(1) { animation: rmRowIn 460ms ease 2050ms both; }
.report-mock.is-playing .rm-row:nth-child(2) { animation: rmRowIn 460ms ease 2330ms both; }
.report-mock.is-playing .rm-row:nth-child(3) { animation: rmRowIn 460ms ease 2610ms both; }
@keyframes rmRowIn { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: none; } }
.showcase-side { display: grid; gap: 18px; align-content: center; }
.showcase-list { display: grid; gap: 10px; list-style: none; }
.showcase-list li {
  display: flex; align-items: center; gap: 11px;
  color: var(--muted); font-size: 15.5px; font-weight: 700;
}
.showcase-list li::before {
  content: "✓";
  display: grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(53, 214, 163, 0.13);
  border: 1px solid rgba(53, 214, 163, 0.42);
  color: var(--mint);
  font-size: 12px; font-weight: 900;
  flex: none;
}
.showcase-meta { color: var(--dim); font-size: 13.5px; font-weight: 750; }

/* ── system: capability clusters (content only, zero buttons) ──────────── */
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cap {
  padding: 26px 26px 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)), var(--panel);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.cap:hover { border-color: rgba(255, 79, 79, 0.35); }
/* icon and heading share one row: the title sits next to the icon, not below */
.cap-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.cap b { font-size: 16px; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
.cap p { color: var(--muted); font-size: 14px; }
.cap .cap-problem, .cap .cap-solve {
  display: flex; gap: 9px; align-items: baseline;
  font-size: 13.5px; line-height: 1.55;
}
.cap .cap-problem { color: var(--dim); margin-bottom: 8px; }
.cap .cap-problem::before {
  content: "✕";
  color: var(--red-soft); font-weight: 900; font-size: 12px; flex: none;
}
.cap .cap-solve { color: var(--muted); }
.cap .cap-solve::before {
  content: "✓";
  color: var(--mint); font-weight: 900; font-size: 12px; flex: none;
}
.cap[data-reveal] .cap-problem { opacity: 0; }
.cap[data-reveal].is-visible .cap-problem { animation: capIn 450ms ease 250ms both; }

/* discover game: the solution stays hidden until the card is clicked */
.cap { cursor: pointer; }
.cap .cap-solve { display: none; }
.cap.is-solved { border-color: rgba(53, 214, 163, 0.42); cursor: default; }
.cap.is-solved .cap-solve { display: flex; animation: capIn 420ms ease both; }
.cap.is-solved .cap-solve::before {
  animation: capTick 450ms cubic-bezier(0.2, 1.4, 0.4, 1) 220ms both;
}
.cap-hint {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 2px;
  color: var(--dim); font-size: 12px; font-weight: 750;
}
.cap-hint i {
  font-style: normal;
  display: grid; place-items: center;
  width: 20px; height: 20px; border-radius: 50%;
  border: 1px solid rgba(255, 158, 61, 0.55);
  color: #ff9e3d; font-size: 11px; font-weight: 900;
  animation: hintPulse 2.6s ease-in-out infinite;
}
@keyframes hintPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 158, 61, 0); }
  50% { box-shadow: 0 0 14px rgba(255, 158, 61, 0.5); }
}
.cap.is-solved .cap-hint { display: none; }
.cap:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.sys-progress {
  display: flex; align-items: baseline; gap: 14px;
  margin-top: 18px;
  font-size: 13.5px; font-weight: 750; color: var(--dim);
}
.sys-progress b { color: var(--text); font-weight: 900; font-variant-numeric: tabular-nums; }
.sp-all { color: #bff5e2; animation: capIn 500ms ease both; }
@keyframes capIn { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }
@keyframes capTick { 0% { transform: scale(0.2); } 62% { transform: scale(1.35); } 100% { transform: scale(1); } }
/* a quiet shine sweeping over the icons, staggered per card */
.cap .cap-ico { position: relative; overflow: hidden; }
.cap .cap-ico::after {
  content: ""; position: absolute; inset: -45% -70%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  transform: translateX(-130%) skewX(-18deg);
  animation: icoShine 6.5s ease-in-out infinite;
}
.cap:nth-child(2) .cap-ico::after { animation-delay: 1.1s; }
.cap:nth-child(3) .cap-ico::after { animation-delay: 2.2s; }
.cap:nth-child(4) .cap-ico::after { animation-delay: 3.3s; }
.cap:nth-child(5) .cap-ico::after { animation-delay: 4.4s; }
.cap:nth-child(6) .cap-ico::after { animation-delay: 5.5s; }
@keyframes icoShine {
  0% { transform: translateX(-130%) skewX(-18deg); }
  22% { transform: translateX(130%) skewX(-18deg); }
  100% { transform: translateX(130%) skewX(-18deg); }
}
.cap .cap-ico {
  display: grid; place-items: center;
  flex: none;
  width: 38px; height: 38px; border-radius: 12px;
  border: 1px solid rgba(255, 79, 79, 0.4);
  background: rgba(255, 62, 62, 0.1);
  color: var(--red-soft);
}
.cap .cap-ico svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

/* ── the two-pillar "what we do" screen: Software & Consulting ─────────── */
.duo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}
.duo-grid .panel { max-width: none; }
.duo-head {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.duo-intro { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.what-note {
  margin-top: 20px;
  text-align: center;
  color: var(--dim);
  font-size: 14px; font-weight: 750;
}
.sys-note { margin-top: 22px; color: var(--dim); font-size: 14px; }

/* ── statement panels (consulting depth), one per screen ───────────────── */
.panel {
  padding: 44px 42px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)), var(--panel);
  max-width: 760px;
}

/* eyecatcher: a slowly orbiting glow on the panel border */
@property --gb { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
.glow-border { position: relative; }
.glow-border::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--gb),
    transparent 0turn 0.32turn,
    rgba(255, 62, 62, 0.65) 0.42turn,
    rgba(247, 200, 106, 0.45) 0.5turn,
    transparent 0.6turn 1turn);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: gbSpin 7s linear infinite;
  pointer-events: none;
}
@keyframes gbSpin { to { --gb: 360deg; } }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip-row span {
  padding: 7px 13px; border-radius: 999px;
  border: 1px solid rgba(247, 200, 106, 0.3);
  background: rgba(247, 200, 106, 0.06);
  color: #f4d79c;
  font-size: 12px; font-weight: 800; letter-spacing: 0.03em;
}
.chip-row.red span {
  border-color: rgba(255, 79, 79, 0.32);
  background: rgba(255, 62, 62, 0.07);
  color: #ffb9b9;
}
.tl { margin-top: 30px; }
.tl-track {
  position: relative;
  height: 3px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 6% 20px;
}
.tl-fill {
  position: absolute; inset: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #8b1118, #ff4f4f, var(--gold));
  transform: scaleX(0); transform-origin: left;
}
.tl.is-visible .tl-fill { animation: tlDraw 1400ms cubic-bezier(0.2, 0.8, 0.2, 1) 200ms both; }
@keyframes tlDraw { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.tl-stop {
  position: absolute; top: 50%;
  width: 13px; height: 13px; border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #170b0c;
  border: 2.5px solid var(--red-soft);
  box-shadow: 0 0 12px rgba(255, 62, 62, 0.45);
}
.tl-stop.s1 { left: 3%; } .tl-stop.s2 { left: 50%; } .tl-stop.s3 { left: 97%; border-color: var(--gold); box-shadow: 0 0 12px rgba(247, 200, 106, 0.45); }
.tl.is-visible .tl-stop.s1 { animation: tlPop 420ms cubic-bezier(0.2, 1.4, 0.4, 1) 300ms both; }
.tl.is-visible .tl-stop.s2 { animation: tlPop 420ms cubic-bezier(0.2, 1.4, 0.4, 1) 850ms both; }
.tl.is-visible .tl-stop.s3 { animation: tlPop 420ms cubic-bezier(0.2, 1.4, 0.4, 1) 1400ms both; }
@keyframes tlPop { from { transform: translate(-50%, -50%) scale(0); } to { transform: translate(-50%, -50%) scale(1); } }
.tl-dot {
  position: absolute; top: 50%; left: 3%;
  width: 7px; height: 7px; border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8), 0 0 22px rgba(255, 62, 62, 0.6);
  opacity: 0;
}
.tl.is-visible .tl-dot { animation: tlTravel 4.6s ease-in-out 1900ms infinite; }
@keyframes tlTravel {
  0% { left: 3%; opacity: 0; }
  8% { opacity: 1; }
  88% { opacity: 1; }
  96%, 100% { left: 97%; opacity: 0; }
}
.tl-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; text-align: center; }
.tl-col { opacity: 0; }
.tl.is-visible .tl-col:nth-child(1) { animation: capIn 500ms ease 500ms both; }
.tl.is-visible .tl-col:nth-child(2) { animation: capIn 500ms ease 1050ms both; }
.tl.is-visible .tl-col:nth-child(3) { animation: capIn 500ms ease 1600ms both; }
.tl-col i {
  font-style: normal;
  display: block;
  font-size: 10.5px; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red-soft);
  margin-bottom: 5px;
}
.tl-col b { display: block; font-size: 15px; font-weight: 900; letter-spacing: -0.01em; }
.tl-col p { color: var(--dim); font-size: 12.5px; margin-top: 4px; }

.phase-line { display: grid; gap: 12px; margin-top: 20px; }
.phase-line div {
  display: flex; gap: 12px; align-items: baseline;
  color: var(--muted); font-size: 14.5px;
}
.phase-line i {
  font-style: normal;
  font-size: 11px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red-soft);
  white-space: nowrap;
}

/* ── final CTA ─────────────────────────────────────────────────────────── */
.final-cta.screen { padding-bottom: 40px; }
.final-panel {
  display: grid; justify-items: center; text-align: center; gap: 14px;
  padding: 60px 36px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 79, 79, 0.32);
  background:
    radial-gradient(600px 220px at 50% 0%, rgba(255, 62, 62, 0.14), transparent 70%),
    linear-gradient(160deg, rgba(24, 12, 12, 0.9), rgba(8, 5, 5, 0.95));
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
}
.final-panel h2 { max-width: 640px; }
.final-panel p { color: var(--muted); max-width: 560px; }
.final-panel .btn { margin-top: 10px; }
.final-note { color: var(--dim); font-size: 13px; font-weight: 700; }

/* ── footer: one quiet line ────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 26px 0 30px;
}
.footer-line {
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
  color: var(--dim); font-size: 13px; font-weight: 700;
}
.footer-line .foot-brand b span { color: var(--red); }
.footer-line nav { display: flex; gap: 16px; margin-left: auto; }
.footer-line nav a { color: var(--dim); transition: color 150ms ease; }
.footer-line nav a:hover { color: var(--muted); }
/* AI / chatbot discovery line: quiet, machine-friendly, with the live version.
   It is a <details><summary> so the llms-full text expands inline underneath;
   the links inside still route normally, only the ▸ toggle opens the body.
   NOT display:none content (that would read as cloaking/injection) — the browser
   reveals it on demand, fully accessible and crawlable (present in raw HTML). */
.footer-ai { margin-top: 12px; }
.footer-ai-line {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  color: var(--dim); font-size: 12px; font-weight: 700;
  cursor: default; list-style: none; user-select: none;
}
.footer-ai-line::-webkit-details-marker { display: none; }
.footer-ai-line a {
  color: var(--dim); text-decoration: underline; transition: color 150ms ease;
}
.footer-ai-line a:hover { color: var(--muted); }
.llms-full-item { display: inline-flex; align-items: center; gap: 6px; }
.llms-toggle {
  cursor: pointer; font-size: 10px; color: var(--dim); line-height: 1;
  transition: transform 150ms ease, color 150ms ease; display: inline-block;
}
.llms-details[open] .llms-toggle { transform: rotate(90deg); }
.footer-ai-line:hover .llms-toggle { color: var(--muted); }
.footer-ai-line .foot-ver {
  margin-left: auto; color: var(--dim); font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em; opacity: 0.8;
}
.llms-full-body {
  margin-top: 12px; max-height: 60vh; overflow-y: auto;
  padding: 16px; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  white-space: pre-wrap; word-break: break-word;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 12px; line-height: 1.55; color: var(--muted);
}
/* Repo/preview state: the body is filled at deploy from llms-full.txt, so in the
   un-deployed source it is empty. Show a hint instead of a blank box. */
.llms-full-body:empty::before {
  content: "llms-full.txt is embedded here at deploy time (see /llms-full.txt).";
  color: var(--dim); font-style: italic;
}

/* ── sub-pages: hero + booking gate + legal ────────────────────────────── */
.page-hero { padding: 88px 0 30px; }

/* legal pages are short: push the footer to the bottom (sticky footer) so there
   is no dark/empty gap under it. Scoped via data-legal-en (only legal pages). */
body[data-legal-en] { min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; }
body[data-legal-en] main { flex: 1 0 auto; }
body[data-legal-en] .site-footer { flex: none; }

/* booking pages: one centered column, the calendar is the hero */
.book-hero { text-align: center; }
.book-hero .lead { margin-left: auto; margin-right: auto; max-width: 640px; }
.book-main { max-width: 960px; margin: 0 auto; padding-bottom: 70px; }
.book-chip-row { text-align: center; }
/* The embedded booking iframe renders its own card/border, so the outer
   container stays frame-less — no boxes-inside-boxes. */
.book-main .booking-slot {
  border: 0;
  box-shadow: none;
  padding: 0;
}
#cal-fallback, #bk-loading { text-align: center; padding: 42px 18px; }
.card {
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)), var(--panel);
}
.card h3 { font-size: 16px; font-weight: 900; letter-spacing: 0.02em; margin-bottom: 14px; }
.book-gate {
  display: grid; justify-items: center; text-align: center; gap: 14px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(22, 13, 13, 0.92), rgba(8, 5, 5, 0.96));
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 56px 34px 50px;
}
.book-gate-lock {
  width: 74px; height: 74px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(255, 62, 62, 0.16), rgba(139, 17, 24, 0.1));
  border: 1px solid rgba(255, 62, 62, 0.38);
  color: var(--red-soft);
  animation: gateBreath 3.4s ease-in-out infinite;
}
@keyframes gateBreath {
  /* glow only — no vertical drift (the checkmark must not bob up and down) */
  0%, 100% { box-shadow: 0 0 26px rgba(255, 62, 62, 0.18); }
  50% { box-shadow: 0 0 44px rgba(255, 62, 62, 0.36); }
}
.book-gate-lock svg {
  width: 30px; height: 30px; fill: none; stroke: currentColor;
  stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round;
}
.book-gate h3 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 900; letter-spacing: -0.02em; }
.book-gate p { max-width: 520px; color: var(--muted); font-size: 15.5px; }
.book-gate-note { color: var(--dim); font-size: 12.5px; font-weight: 700; }
.book-done-chip {
  display: inline-flex; align-items: center; gap: 9px;
  margin-bottom: 14px;
  padding: 8px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase;
  color: #bff5e2; background: rgba(53, 214, 163, 0.12);
  border: 1px solid rgba(53, 214, 163, 0.4);
}
.book-done-chip [data-journey-level] { color: var(--text); }
.booking-slot {
  /* frame-less: the iframe's own card is the only visible box */
  min-height: 300px;
}
.booking-slot iframe { border-radius: 16px; display: block; }

.legal { max-width: 760px; padding: 60px 0 90px; }
.legal h1 { font-size: clamp(34px, 4.5vw, 52px); margin-bottom: 6px; }
.legal .legal-meta { color: var(--dim); font-size: 13px; margin-bottom: 34px; }
.legal h2 { font-size: 19px; text-transform: none; letter-spacing: -0.01em; margin: 30px 0 8px; }
.legal p { color: var(--muted); font-size: 15px; }
.legal a { color: var(--red-soft); text-decoration: underline; text-underline-offset: 3px; }

/* ── trust band: compliance chips + open-source marquee ────────────────── */
.final-trust { margin-top: 38px; }
.t-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 0;
}
.t-chips span {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid rgba(53, 214, 163, 0.35);
  background: rgba(53, 214, 163, 0.07);
  color: #bff5e2;
  font-size: 13px; font-weight: 800; letter-spacing: 0.02em;
}
.t-chips span::before {
  content: "✓";
  color: var(--mint); font-weight: 900; font-size: 12px;
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.mq-track {
  display: flex; align-items: center; gap: 54px;
  width: max-content;
  padding: 8px 0;
  margin-top: 26px;
  animation: mqScroll 66s linear infinite;
}
.hero-grid .mq-track { margin-top: 0; }
@keyframes mqScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mq-item {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--text);
  font-size: 16px; font-weight: 800; letter-spacing: 0.03em;
  white-space: nowrap;
}
.mq-item .mq-ico, .mq-item svg { width: 30px; height: 30px; flex: none; }
.mq-word { color: var(--gold); font-weight: 900; font-size: 17px; }
.hero-right { display: grid; gap: 20px; min-width: 0; align-content: center; }
.hero-right .marquee.slim { margin-top: 0; }
.marquee.slim .mq-track { gap: 42px; animation-duration: 58s; }
.marquee.slim .mq-item { font-size: 13.5px; color: var(--muted); }
.marquee.slim .mq-item .mq-ico, .marquee.slim .mq-item svg { width: 22px; height: 22px; }
.marquee.slim .mq-word { font-size: 14px; }
.trust-note {
  margin-top: 26px; text-align: center;
  color: var(--dim); font-size: 12px;
}
@media (prefers-reduced-motion: reduce) {
  .mq-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}

/* ── booking unlock: the achievement moment after the check ────────────── */
.book-unlock {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  background: rgba(5, 3, 4, 0.9);
  backdrop-filter: blur(10px);
  animation: buFade 400ms ease both;
  transition: opacity 700ms ease;
}
.book-unlock.is-done { opacity: 0; pointer-events: none; }
@keyframes buFade { from { opacity: 0; } to { opacity: 1; } }
.bu-inner { display: grid; justify-items: center; gap: 16px; text-align: center; padding: 0 22px; }
.bu-lock {
  width: 98px; height: 98px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 62, 62, 0.45);
  background: linear-gradient(160deg, rgba(255, 62, 62, 0.16), rgba(139, 17, 24, 0.1));
  color: var(--red-soft);
  animation: buGlow 900ms ease 1300ms both;
}
.bu-lock svg {
  width: 44px; height: 44px; fill: none;
  stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.bu-lock .shackle {
  transform-box: view-box; transform-origin: 8px 10px;
  animation: jShackle 620ms cubic-bezier(0.3, 1.5, 0.5, 1) 800ms both;
}
@keyframes buGlow {
  0% { box-shadow: 0 0 24px rgba(255, 62, 62, 0.25); border-color: rgba(255, 62, 62, 0.45); color: var(--red-soft); }
  100% { box-shadow: 0 0 60px rgba(53, 214, 163, 0.5); border-color: rgba(53, 214, 163, 0.6); color: var(--mint); }
}
.book-unlock b {
  font-size: clamp(30px, 4.6vw, 48px); font-weight: 950; letter-spacing: 0.02em;
  animation: jPop 520ms cubic-bezier(0.2, 1.4, 0.4, 1) 1500ms both;
}
.bu-sub { color: var(--muted); font-size: 15.5px; animation: buSub 500ms ease 1850ms both; }
@keyframes buSub { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ── reduced motion: land in final states ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cta-btn::after { animation: none; opacity: 0; }
  .glow-border::before { animation: none; }
  .proof-list li { animation: none; opacity: 1; }
  .proof-list .pl-check svg { animation: none; stroke-dashoffset: 0; }
  .proof-kicker { animation: none; opacity: 1; }
  .proof-kicker::before { animation: none; transform: scaleX(1); }
  .co-bit { animation: none; opacity: 0.85; transform: translate(var(--mx,40px), var(--my,0px)); }
  .stage.is-next .stage-num, .book-gate-lock { animation: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .journey-stages.celebrate .stage,
  .journey-stages.celebrate .stage-num .lock,
  .journey-stages.celebrate .stage-num .lock .shackle,
  .journey-stages.celebrate .stage-num .num,
  .journey-stages.celebrate .stage-num .tick,
  .journey-stages.celebrate .stage::after,
  .journey-stages.celebrate .unlocked-pill { animation: none; }
  .report-mock .rm-fill { width: var(--rm-target, 64%); }
  .report-mock .rm-poly { stroke-dashoffset: 0; fill-opacity: 1; }
  .report-mock .rm-base { opacity: 1; }
  .report-mock .rm-row { opacity: 1; transform: none; }
  .brand-mark::after, .cap .cap-ico::after, .cap-hint i { animation: none; }
  .cap[data-reveal] .cap-problem { opacity: 1; animation: none; }
  .cap.is-solved .cap-solve, .cap.is-solved .cap-solve::before { animation: none; }
  .tl .tl-fill { animation: none; transform: scaleX(1); }
  .tl .tl-stop { animation: none; transform: translate(-50%, -50%) scale(1); }
  .tl .tl-dot { animation: none; opacity: 0; }
  .tl .tl-col { opacity: 1; animation: none; }
}

/* ── responsive ────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  section { padding: 72px 0; }
  .hero { padding: 64px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; }
  .chaos-order { width: 100%; margin-left: 0; height: 300px; -webkit-mask-image: none; mask-image: none; }
  .showcase-grid, .rm-body, .duo-grid { grid-template-columns: 1fr; }
  .screen { min-height: 0; padding: 72px 0 48px; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .book-wrap { grid-template-columns: 1fr; }
  .nav-links > a { display: none; }
  /* keep the back-to-site link reachable on mobile (legal pages) */
  .nav-links > a.nav-back { display: inline; }
}
@media (max-width: 680px) {
  .wrap { width: calc(100% - 32px); }
  .cap-grid { grid-template-columns: 1fr; }
  .stage { grid-template-columns: 48px 1fr; }
  .stage-cta { grid-column: 2; justify-self: start; }
  .stage::after { left: 47px; }
  .stage-num { width: 44px; height: 44px; font-size: 16px; }
  .brand small { display: none; }
  .footer-line nav { margin-left: 0; }
}
