/* ==========================================================
   Baduvia × Buzzard — Editorial Case (v2)
   Paper · Schwarz · Signal-Orange. Instrument Serif + Geist.
   ========================================================== */

:root {
  --paper: #F2EEE5;
  --paper-2: #ECE6D9;
  --paper-3: #F7F4EC;
  --ink: #0B0B0A;
  --ink-2: #1A1A18;
  --ink-soft: #36342E;
  --orange: #E8541C;
  --orange-2: #FF6B33;
  --muted: #6B655B;
  --faint: #A39C8C;
  --line: #D9D2BF;
  --line-soft: #E6E0CD;
  --warn: #C13A1B;
  --green: #2C7A4B;
  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --sans: 'Geist', 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  --hand: 'Caveat', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { background: var(--paper); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--orange); color: var(--paper); }

/* ============ Type primitives ============ */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
}
.eyebrow.muted { color: var(--faint); }
.serif { font-family: var(--serif); font-weight: 400; }
.italic { font-style: italic; }
.mono { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.hand { font-family: var(--hand); font-weight: 500; }

/* ============ Top chrome ============ */
.chrome {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 32px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
}
.chrome > * { pointer-events: auto; }
.chrome .left {
  display: flex; align-items: center; gap: 14px;
  color: var(--ink);
}
.chrome .left .mark {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  text-transform: none;
  font-weight: 400;
  line-height: 1;
}
.chrome .left .mark .it { font-style: italic; color: var(--orange); }
.chrome .left .case {
  border-left: 1px solid var(--line);
  padding-left: 14px;
  color: var(--faint);
}
.chrome .center {
  display: flex; gap: 22px;
  color: var(--faint);
}
.chrome .center .stp {
  position: relative;
  padding-bottom: 6px;
  cursor: pointer;
  transition: color .3s;
}
.chrome .center .stp.active { color: var(--ink); }
.chrome .center .stp.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--orange);
}
.chrome .right {
  text-align: right;
  color: var(--ink);
  display: flex; justify-content: flex-end; gap: 14px; align-items: center;
}
.chrome .right .pill {
  padding: 8px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background .25s, color .25s;
}
.chrome .right .pill:hover { background: var(--ink); color: var(--paper); }

/* dark inversion */
.chrome.dark { color: var(--paper); }
.chrome.dark .left { color: var(--paper); }
.chrome.dark .left .case { border-color: rgba(242,238,229,0.2); color: rgba(242,238,229,0.5); }
.chrome.dark .center { color: rgba(242,238,229,0.4); }
.chrome.dark .center .stp.active { color: var(--paper); }
.chrome.dark .right { color: var(--paper); }
.chrome.dark .right .pill { border-color: var(--paper); }
.chrome.dark .right .pill:hover { background: var(--paper); color: var(--ink); }

/* progress bar */
.progress-rail {
  position: fixed;
  bottom: 28px;
  left: 32px;
  right: 32px;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  pointer-events: none;
}
.progress-rail .bar {
  height: 1px;
  background: rgba(11,11,10,0.12);
  position: relative;
  overflow: hidden;
}
.progress-rail .bar .fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--orange);
  transition: width 80ms linear;
}
.progress-rail .num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
}
.progress-rail.dark .bar { background: rgba(242,238,229,0.18); }
.progress-rail.dark .num { color: rgba(242,238,229,0.55); }

/* hint */
.hint {
  position: fixed;
  bottom: 56px;
  left: 32px;
  z-index: 51;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  opacity: 1;
  transition: opacity .8s;
}
.hint.hide { opacity: 0; }
.hint .arrow { animation: nudge 1.6s ease-in-out infinite; display: inline-block; }
@keyframes nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}
.hint.dark { color: rgba(242,238,229,0.55); }

/* ============ Stage: pinned horizontal scroll ============ */
.scroller { position: relative; }
.viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
.track {
  display: flex;
  height: 100%;
  will-change: transform;
}
.scene {
  flex: 0 0 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.scene.cream { background: var(--paper); color: var(--ink); }
.scene.cream-2 { background: var(--paper-2); color: var(--ink); }
.scene.dark { background: var(--ink); color: var(--paper); }
.scene.dark-2 { background: #060605; color: var(--paper); }
.scene.orange { background: var(--orange); color: var(--paper); }

.scene-inner {
  height: 100%;
  width: 100%;
  padding: 100px 64px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* paper grain overlay (very subtle) */
.scene.cream::before, .scene.cream-2::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(11,11,10,0.025) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
  z-index: 0;
}
.scene-inner > * { position: relative; z-index: 1; }

/* per-scene reveal */
[data-r] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s cubic-bezier(.22,.7,.3,1), transform .9s cubic-bezier(.22,.7,.3,1);
}
[data-r].in {
  opacity: 1;
  transform: translateY(0);
}
[data-r="0"].in { transition-delay: 0s; }
[data-r="1"].in { transition-delay: .08s; }
[data-r="2"].in { transition-delay: .16s; }
[data-r="3"].in { transition-delay: .24s; }
[data-r="4"].in { transition-delay: .32s; }
[data-r="5"].in { transition-delay: .40s; }
[data-r="6"].in { transition-delay: .48s; }
[data-r="7"].in { transition-delay: .56s; }
[data-r="8"].in { transition-delay: .64s; }

/* ============ SCENE 01 — HERO (Phone ringing) ============ */
.s-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.s-hero .left {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
}
.s-hero .top { display: flex; justify-content: space-between; align-items: baseline; }
.s-hero .top .case-id {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
}
.s-hero .top .date { color: var(--faint); font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; }

.s-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(64px, 9vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
  align-self: center;
}
.s-hero h1 .it { font-style: italic; }
.s-hero h1 .or { color: var(--orange); }
.s-hero h1 .strike { text-decoration: line-through; text-decoration-thickness: 3px; text-decoration-color: var(--orange); color: var(--muted); font-style: italic; }

.s-hero .meta {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  align-items: end;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.s-hero .meta .lede {
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.45;
  color: var(--ink);
  text-wrap: pretty;
  max-width: 420px;
  font-weight: 400;
}
.s-hero .meta .lede em { color: var(--orange); font-style: italic; }
.s-hero .meta .kv .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 6px;
}
.s-hero .meta .kv .v {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
}
.s-hero .meta .kv .v.it { font-style: italic; }

/* Hero phone scene */
.hero-stage {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  border-left: 1px solid var(--line);
  padding-left: 48px;
}
.hero-stage .stage-tag {
  position: absolute; top: 0; left: 48px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint);
}
.hero-stage .stage-tag .dot { display:inline-block; width:6px;height:6px;background:var(--orange);border-radius:50%;margin-right:8px;animation:pulse 1.6s infinite;vertical-align:middle; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.ring-phone {
  position: relative;
  width: 280px; height: 560px;
  background: var(--ink);
  border-radius: 42px;
  padding: 36px 22px 28px;
  box-shadow: 0 60px 100px -50px rgba(0,0,0,0.4);
  color: var(--paper);
  animation: ring 2.4s ease-in-out infinite;
}
@keyframes ring {
  0%, 100% { transform: rotate(0); }
  10%, 30% { transform: rotate(-2deg); }
  20%, 40% { transform: rotate(2deg); }
  50%, 60% { transform: rotate(0); }
}
.ring-phone .notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 90px; height: 22px; background: #000; border-radius: 14px; }
.ring-phone .body { display: flex; flex-direction: column; height: 100%; }
.ring-phone .top-row { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; opacity: .6; margin-top: 18px; margin-bottom: 80px; }
.ring-phone .who-area { text-align: center; }
.ring-phone .label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; opacity: .5; text-transform: uppercase; }
.ring-phone .name { font-family: var(--serif); font-style: italic; font-size: 36px; margin-top: 14px; line-height: 1.05; }
.ring-phone .num { font-family: var(--mono); font-size: 13px; opacity: .55; margin-top: 8px; }
.ring-phone .ringing { margin-top: auto; padding-top: 60px; }
.ring-phone .ringing .l { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; opacity: .5; text-align: center; margin-bottom: 14px; }
.ring-phone .actions { display: flex; justify-content: space-between; padding: 0 18px; }
.ring-phone .btn-call { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.ring-phone .btn-call.acc { background: var(--green); }
.ring-phone .btn-call.dec { background: var(--warn); }

.ring-radar {
  position: absolute; inset: 0;
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.ring-radar span {
  position: absolute; width: 280px; height: 280px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  opacity: 0;
  animation: radar 2.4s ease-out infinite;
}
.ring-radar span:nth-child(2) { animation-delay: .8s; }
.ring-radar span:nth-child(3) { animation-delay: 1.6s; }
@keyframes radar {
  0% { transform: scale(.6); opacity: .6; }
  100% { transform: scale(1.8); opacity: 0; }
}

.hero-tag-line {
  position: absolute;
  bottom: 0; left: 48px; right: 0;
  font-family: var(--hand);
  font-size: 22px;
  color: var(--orange);
  display: flex; align-items: center; gap: 10px;
}
.hero-tag-line svg { flex-shrink: 0; }

/* ============ SCENE 02 — Donnerstag-Kalender ============ */
.s-cal {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: stretch;
}
.s-cal .left { display: flex; flex-direction: column; justify-content: center; gap: 24px; }
.s-cal .left h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 88px);
  line-height: 0.96;
  color: var(--ink);
  letter-spacing: -0.022em;
  text-wrap: balance;
}
.s-cal .left h2 em { color: var(--orange); font-style: italic; }
.s-cal .left p {
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 460px;
  text-wrap: pretty;
}
.s-cal .left p em { font-family: var(--serif); font-style: italic; color: var(--orange); font-size: 1.05em; }
.s-cal .left .stamp {
  display: inline-block; align-self: flex-start;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); border: 1px solid var(--orange);
  padding: 5px 10px; border-radius: 2px;
  transform: rotate(-2deg);
}

/* The day-planner */
.planner {
  position: relative;
  background: #FBF8EE;
  border: 1px solid var(--line);
  height: 100%;
  display: flex; flex-direction: column;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.15);
}
.planner .head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: baseline;
  background: #fff;
}
.planner .head .day {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--ink);
}
.planner .head .meta {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint);
}
.planner .body {
  flex: 1;
  display: grid;
  grid-template-columns: 60px 1fr;
  overflow: hidden;
}
.planner .hours {
  border-right: 1px solid var(--line-soft);
  display: flex; flex-direction: column;
}
.planner .hours .h {
  flex: 1;
  font-family: var(--mono); font-size: 10px; color: var(--faint); letter-spacing: 0.1em;
  padding: 6px 10px;
  border-bottom: 1px solid var(--line-soft);
}
.planner .events {
  position: relative;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent calc(11.11% - 1px),
      var(--line-soft) calc(11.11% - 1px),
      var(--line-soft) 11.11%
    );
}
.planner .ev {
  position: absolute;
  left: 12px; right: 12px;
  padding: 8px 12px;
  font-size: 12px;
  border-left: 3px solid;
  background: #fff;
  box-shadow: 0 4px 12px -6px rgba(0,0,0,0.15);
}
.planner .ev .b { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 4px; }
.planner .ev .t { color: var(--ink); line-height: 1.3; font-weight: 500; font-size: 13px; }
.planner .ev .m { font-family: var(--mono); font-size: 10px; color: var(--faint); margin-top: 4px; }
.planner .ev.miss { border-left-color: var(--warn); }
.planner .ev.miss .b { color: var(--warn); }
.planner .ev.wa { border-left-color: var(--green); }
.planner .ev.wa .b { color: var(--green); }
.planner .ev.todo { border-left-color: var(--orange); background: #FFF6CF; border-color: #E8D784; }
.planner .ev.todo .b { color: var(--orange); }
.planner .ev.todo .t { font-family: var(--hand); font-weight: 500; font-size: 16px; line-height: 1.1; }
.planner .ev.email { border-left-color: var(--ink-soft); }
.planner .ev.email .b { color: var(--ink-soft); }
.planner .ev.form { border-left-color: var(--orange); }
.planner .ev.form .b { color: var(--orange); }

.planner .annot {
  position: absolute;
  font-family: var(--hand);
  font-weight: 500;
  font-size: 22px;
  color: var(--orange);
  pointer-events: none;
  transform: rotate(-3deg);
}
.planner .annot::before {
  content: "";
  position: absolute;
  left: -32px; top: 12px;
  width: 28px; height: 1px;
  background: var(--orange);
}
.planner .scribble {
  position: absolute;
  top: 28%;
  right: -22px;
  width: 80px; height: 80px;
  border: 2.5px solid var(--orange);
  border-radius: 50%;
  transform: rotate(8deg) scale(1.4, 1);
  pointer-events: none;
}

/* ============ SCENE 03 — Pivot ============ */
.s-pivot {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.s-pivot .meta { color: var(--faint); }
.s-pivot .meta .ey { color: var(--orange); margin-bottom: 14px; display: block; }
.s-pivot .meta .date {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--faint);
}
.s-pivot .text {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-wrap: pretty;
  font-weight: 400;
}
.s-pivot .text em { color: var(--orange); font-style: italic; }
.s-pivot .text .crossed { text-decoration: line-through; text-decoration-color: var(--orange); text-decoration-thickness: 2px; color: var(--faint); }
.s-pivot .text .small { font-size: 0.45em; color: var(--muted); font-style: italic; display: block; margin-top: 18px; }

/* ============ SCENE 04..09 — System steps ============ */
.s-step {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.s-step .text { display: flex; flex-direction: column; gap: 22px; }
.s-step .text .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(60px, 8vw, 130px);
  color: var(--orange);
  line-height: 0.85;
  letter-spacing: -0.02em;
}
.s-step .text .num .of { font-style: normal; font-family: var(--mono); font-size: 13px; letter-spacing: 0.2em; color: rgba(242,238,229,0.45); margin-left: 14px; vertical-align: super; }
.s-step .text .ey { display: block; }
.s-step .text h3 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1.02;
  color: var(--paper);
  letter-spacing: -0.018em;
  text-wrap: balance;
  font-weight: 400;
}
.s-step .text h3 em { color: var(--orange); font-style: italic; }
.s-step .text p {
  color: rgba(242,238,229,0.78);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 460px;
  text-wrap: pretty;
}
.s-step .text ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid rgba(242,238,229,0.18);
  padding-top: 18px;
  max-width: 460px;
}
.s-step .text ul li {
  display: grid; grid-template-columns: 24px 1fr; gap: 8px;
  font-size: 13.5px;
  color: rgba(242,238,229,0.92);
}
.s-step .text ul li .b {
  font-family: var(--mono); font-size: 10px; color: var(--orange); letter-spacing: 0.1em;
}
.s-step .canvas {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ Mock — Phone (scene 04) ============ */
.phone {
  background: #06100F;
  border: 1px solid rgba(242,238,229,0.08);
  border-radius: 36px;
  padding: 28px 22px;
  width: 320px;
  box-shadow: 0 50px 100px -40px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(242,238,229,0.02);
  color: var(--paper);
}
.phone .time { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; color: rgba(242,238,229,0.6); margin-bottom: 26px; }
.phone .caller { text-align: center; margin-bottom: 22px; }
.phone .caller .n { font-family: var(--mono); font-size: 13px; color: rgba(242,238,229,0.55); margin-bottom: 4px; }
.phone .caller .who { font-family: var(--serif); font-size: 26px; font-style: italic; }
.phone .live-ai {
  background: rgba(242,238,229,0.05);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 18px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.06em;
  color: rgba(242,238,229,0.75);
}
.phone .live-ai .row { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.phone .live-ai .row .d { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 1.6s infinite; }
.wave { display: flex; align-items: center; justify-content: center; gap: 3px; height: 24px; }
.wave span { display: block; width: 3px; background: var(--orange); border-radius: 2px; animation: wv 1.2s infinite ease-in-out; }
.wave span:nth-child(1){animation-delay:0s;height:8px}
.wave span:nth-child(2){animation-delay:.1s;height:16px}
.wave span:nth-child(3){animation-delay:.2s;height:22px}
.wave span:nth-child(4){animation-delay:.3s;height:14px}
.wave span:nth-child(5){animation-delay:.15s;height:18px}
.wave span:nth-child(6){animation-delay:.25s;height:10px}
.wave span:nth-child(7){animation-delay:.05s;height:20px}
.wave span:nth-child(8){animation-delay:.35s;height:12px}
.wave span:nth-child(9){animation-delay:.2s;height:16px}
@keyframes wv { 0%,100%{transform:scaleY(0.6)} 50%{transform:scaleY(1.4)} }
.tx { font-size: 12.5px; line-height: 1.5; }
.tx .ln { display: flex; gap: 10px; margin-bottom: 10px; align-items: baseline; }
.tx .ln .who { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(242,238,229,0.45); flex-shrink: 0; width: 44px; }
.tx .ln .who.ai { color: var(--orange); }
.tx .ln .t { color: rgba(242,238,229,0.92); }

/* ============ Mock — Form (scene 05) ============ */
.mockcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 24px;
  width: 100%; max-width: 460px;
  box-shadow: 0 50px 100px -40px rgba(0,0,0,0.5);
  color: var(--ink);
}
.mockcard .title-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.mockcard h4 { font-family: var(--serif); font-size: 22px; color: var(--ink); font-weight: 400; line-height: 1.1; font-style: italic; }
.mockcard .live-tag { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.14em; color: var(--green); text-transform: uppercase; display: flex; align-items: center; gap: 6px; }
.mockcard .live-tag .d { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse 1.6s infinite; }
.mockcard .field { margin-bottom: 12px; }
.mockcard .field label { display: block; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-bottom: 6px; }
.mockcard .field .input {
  border: 1px solid var(--line); border-radius: 3px;
  padding: 10px 12px; font-size: 13px; color: var(--ink);
  background: var(--paper-3); font-family: var(--sans);
}
.mockcard .submit {
  margin-top: 8px; display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; background: var(--ink); color: var(--paper);
  border-radius: 999px; font-size: 12px; font-family: var(--mono);
  letter-spacing: 0.12em; text-transform: uppercase;
}

/* CRM */
.crm-task {
  display: grid; grid-template-columns: 22px 1fr auto;
  align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--line-soft);
  font-size: 13px; color: var(--ink);
}
.crm-task:last-child { border-bottom: 0; }
.crm-task .check { width: 16px; height: 16px; border: 1.5px solid var(--line); border-radius: 3px; display: inline-flex; align-items: center; justify-content: center; }
.crm-task.done .check { background: var(--orange); border-color: var(--orange); color: #fff; }
.crm-task.done .check::after { content: "✓"; font-size: 10px; font-weight: 700; }
.crm-task.done .label { color: var(--faint); text-decoration: line-through; }
.crm-task .time { font-family: var(--mono); font-size: 10.5px; color: var(--faint); }

/* Doc */
.doc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 26px;
  width: 100%; max-width: 420px;
  position: relative;
  box-shadow: 0 50px 100px -40px rgba(0,0,0,0.5);
}
.doc::before {
  content: "Antrag § 40 SGB XI";
  position: absolute; top: -10px; left: 24px;
  background: var(--ink); padding: 2px 10px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange);
  border: 1px solid var(--orange);
}
.doc h5 { font-family: var(--serif); font-size: 19px; color: var(--ink); font-weight: 400; margin-top: 12px; margin-bottom: 14px; font-style: italic; }
.doc-line { height: 7px; background: var(--line-soft); border-radius: 1px; margin-bottom: 8px; }
.doc-line.short { width: 60%; }
.doc-line.med { width: 80%; }
.doc-block {
  background: var(--paper-3); border-left: 2px solid var(--orange);
  padding: 10px 12px; margin: 14px 0;
  font-size: 12px; color: var(--ink);
  font-family: var(--mono); letter-spacing: 0.04em;
}
.doc-stamp {
  position: absolute; bottom: 20px; right: 20px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--orange);
  border: 1px solid var(--orange); padding: 4px 8px;
  transform: rotate(-3deg); border-radius: 2px;
}

/* Status */
.stepper { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; margin-bottom: 16px; }
.stepper .seg { height: 6px; background: var(--line-soft); border-radius: 1px; position: relative; }
.stepper .seg.done { background: var(--orange); }
.stepper .seg.now { background: var(--orange); }
.stepper .seg.now::after { content: ""; position: absolute; inset: -3px -3px -3px auto; width: 12px; background: var(--orange); border-radius: 50%; animation: pulse 1.4s infinite; }
.phase-list { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.phase-list .ph { display: grid; grid-template-columns: 18px 1fr auto; gap: 10px; align-items: center; font-size: 12.5px; color: var(--ink); }
.phase-list .ph .d { width: 8px; height: 8px; border-radius: 50%; background: var(--line); }
.phase-list .ph.done .d { background: var(--orange); }
.phase-list .ph.now .d { background: var(--orange); box-shadow: 0 0 0 3px color-mix(in oklab, var(--orange) 30%, transparent); }
.phase-list .ph .t { font-family: var(--mono); font-size: 10px; color: var(--faint); }
.sms { margin-top: 14px; background: var(--paper-3); border-radius: 12px 12px 12px 2px; padding: 12px 14px; font-size: 12.5px; color: var(--ink); border: 1px solid var(--line); max-width: 90%; }
.sms .from { font-family: var(--mono); font-size: 9.5px; color: var(--orange); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 4px; }

/* Dashboard */
.dash-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.dash-head .pill { font-family: var(--mono); font-size: 10px; color: var(--green); background: rgba(44,122,75,0.1); padding: 3px 8px; border-radius: 999px; letter-spacing: 0.1em; }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.dash-card { border: 1px solid var(--line-soft); border-radius: 3px; padding: 12px; }
.dash-card .l { font-family: var(--mono); font-size: 9.5px; color: var(--faint); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 6px; }
.dash-card .v { font-family: var(--serif); font-size: 26px; color: var(--ink); font-weight: 400; }
.dash-card .v em { color: var(--orange); font-style: italic; }
.dash-card .delta { font-family: var(--mono); font-size: 10px; color: var(--green); margin-top: 4px; }
.bars { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; align-items: end; height: 60px; padding-top: 8px; border-top: 1px solid var(--line-soft); }
.bars .bar { background: var(--orange); border-radius: 1px; min-height: 4px; opacity: 0.85; }

/* ============ SCENE 10 — Result (Kassenbon) ============ */
.s-result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.s-result .meta {
  display: flex; flex-direction: column; justify-content: center; gap: 18px;
}
.s-result .meta h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 80px);
  line-height: 0.98;
  color: var(--ink);
  letter-spacing: -0.022em;
  font-weight: 400;
  text-wrap: balance;
}
.s-result .meta h2 em { color: var(--orange); font-style: italic; }
.s-result .meta p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; max-width: 380px; }

.receipt-wrap {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.receipt {
  background: #FBF8EE;
  width: 100%; max-width: 380px;
  padding: 28px 28px 32px;
  font-family: var(--mono);
  color: var(--ink);
  position: relative;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.25);
  transform: rotate(-1.5deg);
}
.receipt::before, .receipt::after {
  content: "";
  position: absolute; left: 0; right: 0;
  height: 16px;
  background-image: linear-gradient(45deg, #FBF8EE 50%, transparent 50%), linear-gradient(-45deg, #FBF8EE 50%, transparent 50%);
  background-size: 16px 16px;
  background-repeat: repeat-x;
}
.receipt::before { top: -15px; background-position: 0 100%; }
.receipt::after { bottom: -15px; background-position: 0 0; transform: scaleY(-1); }

.receipt .head { text-align: center; padding-bottom: 16px; border-bottom: 1px dashed var(--ink); margin-bottom: 16px; }
.receipt .head .biz { font-family: var(--serif); font-style: italic; font-size: 26px; line-height: 1; }
.receipt .head .sub { font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; opacity: .6; margin-top: 6px; }
.receipt .head .meta { font-size: 10px; opacity: .55; margin-top: 10px; }
.receipt .item {
  display: grid; grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 10px 0;
  font-size: 12px;
  border-bottom: 1px dashed rgba(11,11,10,0.25);
  align-items: baseline;
}
.receipt .item .l { line-height: 1.3; }
.receipt .item .v {
  font-family: var(--serif); font-style: italic;
  font-size: 22px;
  color: var(--orange);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.receipt .item .l .sub { font-size: 10px; opacity: .55; display: block; margin-top: 2px; }
.receipt .total {
  display: grid; grid-template-columns: 1fr auto;
  gap: 10px;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 2px solid var(--ink);
  align-items: baseline;
}
.receipt .total .l { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.receipt .total .v { font-family: var(--serif); font-style: italic; font-size: 32px; color: var(--orange); }
.receipt .footer {
  text-align: center;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--ink);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: .6;
}
.receipt .barcode {
  display: flex; gap: 2px;
  justify-content: center; margin-top: 12px; height: 32px;
}
.receipt .barcode span { background: var(--ink); }

.receipt-stamp {
  position: absolute; top: 8%; right: -10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); border: 2px solid var(--orange);
  padding: 8px 14px; border-radius: 3px;
  transform: rotate(8deg);
  background: rgba(232,84,28,0.06);
  font-weight: 600;
}

/* ============ SCENE 11 — Quote ============ */
.s-quote {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.s-quote .mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(120px, 18vw, 240px);
  color: var(--orange);
  line-height: 0.7;
  align-self: flex-start;
  padding-top: 36px;
}
.s-quote .body { display: flex; flex-direction: column; gap: 28px; }
.s-quote .body .q {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.18;
  color: var(--paper);
  letter-spacing: -0.015em;
  font-weight: 400;
  text-wrap: pretty;
}
.s-quote .body .q em { color: var(--orange); font-style: italic; }
.s-quote .author {
  display: flex; align-items: center; gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(242,238,229,0.2);
}
.s-quote .author .av {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--paper);
}
.s-quote .author .who { display: flex; flex-direction: column; }
.s-quote .author .who .nm { font-family: var(--serif); font-size: 19px; color: var(--paper); font-style: italic; }
.s-quote .author .who .rl { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(242,238,229,0.55); }

/* ============ SCENE 12 — CTA (Notizblock) ============ */
.s-cta {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.s-cta .lead h2 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.026em;
  font-weight: 400;
  text-wrap: balance;
  margin-bottom: 28px;
}
.s-cta .lead h2 em { color: var(--orange); font-style: italic; }
.s-cta .lead p { color: var(--ink-soft); font-size: 16.5px; line-height: 1.6; max-width: 500px; margin-bottom: 32px; }
.s-cta .lead .actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px;
  background: var(--ink); color: var(--paper);
  border-radius: 999px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  transition: background .25s;
}
.btn:hover { background: var(--orange); }
.btn .d { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; }
.btn:hover .d { background: var(--paper); }
.s-cta .lead .trust {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 11px; color: var(--faint);
  letter-spacing: 0.12em; text-transform: uppercase;
}

/* Notepad CTA */
.notepad {
  width: 100%; max-width: 440px;
  background: #FBF8EE;
  position: relative;
  padding: 50px 38px 38px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.2);
  background-image:
    linear-gradient(to bottom, transparent 49px, rgba(11,11,10,0.08) 49px, rgba(11,11,10,0.08) 50px, transparent 50px);
  background-size: 100% 36px;
  background-position: 0 14px;
  transform: rotate(1deg);
}
.notepad::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--orange);
}
.notepad::after {
  content: "";
  position: absolute; left: 38px; top: 0; bottom: 0;
  width: 1px; background: rgba(193,58,27,0.3);
}
.notepad .holes {
  position: absolute;
  top: 16px; bottom: 16px;
  left: 18px;
  width: 14px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.notepad .holes span {
  width: 14px; height: 14px;
  background: var(--paper);
  border: 1px solid rgba(11,11,10,0.15);
  border-radius: 50%;
}
.notepad .pad-head {
  font-family: var(--hand);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 22px;
  display: flex; justify-content: space-between; align-items: baseline;
}
.notepad .pad-head .sm { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); }
.notepad .opt {
  display: grid; grid-template-columns: 32px 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(11,11,10,0.12);
  align-items: center;
  cursor: pointer;
  transition: padding .2s;
}
.notepad .opt:hover { padding-left: 8px; }
.notepad .opt .check {
  width: 22px; height: 22px;
  border: 1.5px solid var(--ink);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
}
.notepad .opt:hover .check { background: var(--orange); border-color: var(--orange); }
.notepad .opt:hover .check::after { content: "✓"; color: var(--paper); font-size: 14px; font-weight: 700; }
.notepad .opt .body h4 {
  font-family: var(--serif); font-size: 22px;
  color: var(--ink); font-weight: 400; line-height: 1; font-style: italic;
  margin-bottom: 4px;
}
.notepad .opt .body p { font-size: 12.5px; color: var(--ink-soft); line-height: 1.4; }
.notepad .opt .arr { font-family: var(--hand); font-size: 24px; color: var(--orange); }

.notepad-stamp {
  position: absolute;
  top: -16px; right: 18px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--orange); color: var(--paper);
  padding: 6px 12px;
  transform: rotate(4deg);
  font-weight: 600;
}

/* ============ Funnel modal ============ */
.funnel-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(6, 16, 15, 0.66);
  backdrop-filter: blur(10px);
}
.funnel-overlay.open { display: flex; }
.funnel-modal {
  position: relative;
  width: min(560px, 100%);
  max-height: min(760px, 92vh);
  overflow-y: auto;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 50px 120px -50px rgba(0,0,0,0.48);
}
.funnel-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
  z-index: 2;
}
.funnel-close:hover { background: rgba(232,84,28,0.1); color: var(--ink); }
.funnel-head {
  padding: 34px 36px 20px;
  border-bottom: 1px solid var(--line);
}
.funnel-head .step-ind {
  display: block;
  margin-bottom: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
}
.funnel-head h3 {
  max-width: 440px;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.05;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.funnel-head p {
  max-width: 430px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.funnel-body { padding: 24px 36px 34px; }
.funnel-options { display: flex; flex-direction: column; gap: 10px; }
.funnel-choice {
  width: 100%;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  text-align: left;
  background: #FBF8EE;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: border-color .2s, background .2s, transform .2s;
}
.funnel-choice:hover,
.funnel-choice.selected {
  border-color: var(--orange);
  background: #fff;
  transform: translateX(2px);
}
.funnel-choice .num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--orange);
}
.funnel-choice strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 3px;
}
.funnel-choice small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.funnel-fields {
  display: grid;
  gap: 12px;
}
.funnel-fields label {
  display: grid;
  gap: 7px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.funnel-fields label span {
  color: var(--faint);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.funnel-fields input,
.funnel-fields textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #FBF8EE;
  color: var(--ink);
  padding: 12px 13px;
  font: 14px var(--sans);
  letter-spacing: 0;
  text-transform: none;
}
.funnel-fields textarea {
  min-height: 92px;
  resize: vertical;
}
.funnel-fields input:focus,
.funnel-fields textarea:focus {
  outline: 0;
  border-color: var(--orange);
  background: #fff;
}
.funnel-note {
  margin: 2px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
}
.funnel-note.warn { color: var(--warn); }
.funnel-actions {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.funnel-dots { display: flex; gap: 7px; }
.funnel-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line);
}
.funnel-dots span.active { background: var(--orange); }
.funnel-buttons { display: flex; align-items: center; gap: 8px; }
.funnel-primary,
.funnel-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.funnel-primary {
  background: var(--ink);
  color: var(--paper);
}
.funnel-primary:hover { background: var(--orange); }
.funnel-primary:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}
.funnel-secondary {
  border: 1px solid var(--line);
  color: var(--muted);
}
.funnel-secondary:hover {
  border-color: var(--orange);
  color: var(--ink);
}
.funnel-success {
  padding: 54px 36px 40px;
  text-align: center;
}
.funnel-success .ic {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232,84,28,0.12);
  color: var(--orange);
  font-size: 26px;
}
.funnel-success h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 10px;
}
.funnel-success p {
  max-width: 340px;
  margin: 0 auto 24px;
  color: var(--muted);
  line-height: 1.55;
}

/* ============ Vertical fallback (mobile) ============ */
@media (max-width: 880px), (max-height: 640px) {
  .scroller { height: auto !important; }
  .viewport { position: static; height: auto; }
  .track { flex-direction: column; transform: none !important; height: auto; width: 100%; }
  .scene { width: 100%; height: auto; min-height: auto; flex: 0 0 auto; }
  .scene-inner { padding: 80px 22px 64px; }
  [data-r] { opacity: 1; transform: none; }

  /* ----- Top chrome ----- */
  .chrome {
    padding: 12px 14px;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    font-size: 9px;
    letter-spacing: 0.14em;
  }
  .chrome .left { gap: 10px; min-width: 0; flex-shrink: 1; }
  .chrome .left .mark { font-size: 17px; line-height: 1; white-space: nowrap; }
  .chrome .left .case { padding-left: 10px; font-size: 8.5px; letter-spacing: 0.12em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .chrome .center { display: none; }
  .chrome .right { gap: 10px; }
  .chrome .right > span:first-child { display: none; }
  .chrome .right .pill { padding: 7px 12px; font-size: 9px; letter-spacing: 0.12em; white-space: nowrap; }
  .progress-rail { display: none; }
  .hint { display: none; }

  /* ----- Hero ----- */
  .s-hero { grid-template-columns: 1fr; gap: 28px; }
  .s-hero .top { gap: 12px; flex-wrap: wrap; }
  .s-hero .top .case-id, .s-hero .top .date { font-size: 10px; letter-spacing: 0.16em; }
  .s-hero h1 { font-size: clamp(48px, 12.5vw, 86px); line-height: 1.0; }
  .s-hero .meta { grid-template-columns: 1fr 1fr; gap: 22px; }
  .s-hero .meta .lede { font-size: 16px; line-height: 1.55; grid-column: 1 / -1; }
  .hero-stage { border-left: 0; padding-left: 0; min-height: 540px; align-self: center; width: 100%; max-width: 360px; margin: 0 auto; }
  .hero-stage .ring-phone { transform: scale(.95); }
  .hero-tag-line { left: 0; right: 0; text-align: center; justify-content: center; }

  /* ----- Donnerstag (Problem) ----- */
  .s-cal { grid-template-columns: 1fr; gap: 36px; }
  .s-cal .left h2 { font-size: clamp(36px, 9vw, 56px); line-height: 1.08; }
  .s-cal .left p { font-size: 14.5px; line-height: 1.62; }
  .planner { min-height: 540px; }
  .planner .head .day { font-size: 17px; }

  /* ----- Pivot ----- */
  .s-pivot { grid-template-columns: 1fr; gap: 28px; padding-block: 60px; }
  .s-pivot .text { font-size: clamp(30px, 7.5vw, 48px); line-height: 1.15; }
  .s-pivot .text .small { font-size: 14.5px; line-height: 1.6; margin-top: 16px; }

  /* ----- Steps (Telefon, Lead, CRM, Doc, Status, Dash) ----- */
  .s-step { grid-template-columns: 1fr; gap: 32px; }
  .s-step .text { gap: 16px; }
  .s-step .text .num { font-size: clamp(58px, 16vw, 88px); }
  .s-step .text .num .of { font-size: 11px; margin-left: 10px; }
  .s-step .text h3 { font-size: clamp(28px, 7vw, 42px); line-height: 1.12; }
  .s-step .text p { font-size: 14.5px; line-height: 1.62; }
  .s-step .text ul li { font-size: 13.5px; line-height: 1.5; }
  .s-step .canvas { display: flex; justify-content: center; }
  .s-step .canvas .phone { transform: scale(.95); transform-origin: top center; }
  .s-step .canvas .mockcard { width: 100%; max-width: 100%; }
  .s-step .canvas .doc { width: 100%; max-width: 100%; padding: 24px 22px; }

  /* ----- Result (Bilanz/Receipt) ----- */
  .s-result { grid-template-columns: 1fr; gap: 36px; }
  .s-result .meta h2 { font-size: clamp(34px, 8.5vw, 52px); line-height: 1.1; }
  .s-result .meta p { font-size: 14.5px; line-height: 1.62; }
  .receipt-wrap { align-self: center; width: 100%; max-width: 360px; margin: 0 auto; }
  .receipt { padding: 28px 22px; }
  .receipt .head .biz { font-size: 28px; }
  .receipt-stamp { right: -8px; top: 22px; font-size: 13px; padding: 8px 16px; }

  /* ----- Quote ----- */
  .s-quote { padding-block: 60px; }
  .s-quote .body .q { font-size: clamp(22px, 5.5vw, 34px); line-height: 1.32; }
  .s-quote .mark { font-size: 96px; line-height: .8; }

  /* ----- CTA ----- */
  .s-cta { grid-template-columns: 1fr; gap: 36px; }
  .s-cta .lead h2 { font-size: clamp(34px, 8.5vw, 52px); line-height: 1.1; }
  .s-cta .lead p { font-size: 14.5px; line-height: 1.62; margin-bottom: 24px; }
  .s-cta .lead .actions { gap: 14px; }
  .s-cta .lead .btn { padding: 14px 22px; font-size: 13px; letter-spacing: 0.16em; white-space: nowrap; }
  .notepad { width: 100%; max-width: 100%; align-self: center; }
  .funnel-overlay { align-items: flex-end; padding: 12px; }
  .funnel-modal { max-height: 92vh; }
  .funnel-head { padding: 30px 22px 18px; }
  .funnel-body { padding: 20px 22px 26px; }
  .funnel-actions { align-items: flex-start; flex-direction: column; }
  .funnel-buttons { width: 100%; }
  .funnel-primary, .funnel-secondary { flex: 1; }
}

/* ----- Smallest screens (under 380px) ----- */
@media (max-width: 380px) {
  .chrome .left .case { display: none; }
  .scene-inner { padding: 72px 18px 56px; }
  .s-hero h1 { font-size: clamp(44px, 12vw, 72px); }
  .receipt { padding: 22px 16px; }
}
