/* ============================================= */
/* RESET + TOKENS                                  */
/* ============================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0a0a0a;
  --bg-elev: #141414;
  --bg-elev-2: #1c1c1c;
  --border: #262626;
  --border-strong: #3f3f46;
  --text: #f5f5f5;
  --text-mute: #a1a1aa;
  --text-dim: #71717a;
  --accent: #dc2626;
  --accent-hover: #ef4444;
  --accent-soft: rgba(220, 38, 38, 0.12);
  --font-display: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif-accent: "Instrument Serif", Georgia, serif;
  --max: 1280px;
  --max-narrow: 820px;
  --section-pad: clamp(4rem, 9vw, 7rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  font-size: 17px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.container.narrow { max-width: var(--max-narrow); }

/* ============================================= */
/* TYPOGRAPHY                                      */
/* ============================================= */
/* TYPE SYSTEM (see fonts.html for full spec):
   - Bold display = Inter Tight 800-900 (statements, decisiveness)
   - Playful italic = Instrument Serif italic (soul, accents, emotion)
   - Clean UI = Inter 400-700 (body, UI labels, microcopy)
   - Bold uses NEGATIVE letter-spacing (-0.02 to -0.05em)
   - UI labels use POSITIVE letter-spacing (+0.14 to +0.18em UPPERCASE)
*/

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 { font-size: clamp(3rem, 9vw, 7rem); font-weight: 900; }
h2 { font-size: clamp(2.2rem, 6vw, 4.5rem); line-height: 1.02; margin-bottom: 2rem; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.65rem); line-height: 1.2; font-weight: 700; }

/* Utility classes — apply directly when needed for consistency.
   Existing component classes (.section-label, .hero-sub, .num-big, etc.)
   already follow this system; these utilities are for new content. */
.txt-h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-transform: uppercase;
}
.txt-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.txt-accent {
  font-family: var(--font-serif-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.01em;
  text-transform: none;
}
.txt-kicker {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.txt-body {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-mute);
}
.txt-quote {
  font-family: var(--font-serif-accent);
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}
.txt-note {
  font-family: var(--font-serif-accent);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-mute);
  opacity: 0.85;
}
.txt-stat {
  font-family: var(--font-serif-accent);
  font-style: italic;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  line-height: 0.9;
  color: var(--accent);
}
.txt-role {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.accent {
  color: var(--accent);
  font-family: var(--font-serif-accent);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
}
.muted { color: var(--text-mute); }

.section-label, .tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.9rem 0.42rem 0.85rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.section-label::before, .tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.22);
  animation: labelPulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes labelPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.55; }
}
.section-label.centered { display: flex; width: fit-content; margin: 0 auto 2rem; }

/* Persona toggle rules */
body[data-persona="chalan"] [data-persona="mama"] { display: none !important; }
body[data-persona="mama"]   [data-persona="chalan"] { display: none !important; }

/* Reveal on scroll — subtle slide, never fully invisible */
.reveal > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal > * { opacity: 1; transform: none; transition: none; }
}

/* Section spacing */
section { padding: var(--section-pad) 0; }

/* ============================================= */
/* BUTTONS                                         */
/* ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.35);
}
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.btn-xl { padding: 1.2rem 2.25rem; font-size: 1rem; }
.btn-xxl { padding: 1.5rem 3rem; font-size: 1.15rem; }
.btn .arrow { transition: transform 0.25s var(--ease); display: inline-block; }
.btn:hover .arrow { transform: translateX(6px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.32); }

/* Cursor-anchored confirm popup (hero video) */
.cursor-confirm {
  position: fixed;
  z-index: 200;
  background: rgba(20, 20, 20, 0.96);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 1rem 1.15rem 1rem 1.15rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
  max-width: 280px;
  color: #fff;
  animation: cursorConfirmPop 0.22s cubic-bezier(0.22, 1, 0.36, 1) both;
  transform-origin: top left;
}
.cursor-confirm[hidden] { display: none; }
.cursor-confirm-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.cursor-confirm-close:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.cursor-confirm-close svg {
  width: 14px;
  height: 14px;
}
.cursor-confirm-q {
  margin-bottom: 0.85rem;
  padding-right: 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}
.cursor-confirm-actions {
  display: flex;
  gap: 0.5rem;
}
@keyframes cursorConfirmPop {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

/* ============================================= */
/* NAV                                             */
/* ============================================= */

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: #fff;
}
.logo-mark {
  height: 28px;
  width: auto;
  display: block;
}
.logo-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
}
.logo-text-pre {
  font-weight: 800;
  color: #fff;
  font-size: 1em;
}
.topbar-right { display: flex; align-items: center; gap: 0.75rem; }
.toggle {
  display: inline-flex;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
}
.toggle-btn {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mute);
  border-radius: 999px;
  transition: all 0.2s var(--ease);
}
.toggle-btn.is-active { background: var(--accent); color: #fff; }

/* ============================================= */
/* 1. HERO                                         */
/* ============================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 7rem !important;
  overflow: hidden;
  background: #0a0a0a;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 78% 35%, rgba(220,38,38,0.22), transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(220,38,38,0.06), transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}
.hero-overlay::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.07;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.hero-text { min-width: 0; }
.hero-meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s var(--ease) 0.1s both;
}
.hero-sub {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2rem;
  max-width: 42ch;
  text-wrap: pretty;
  animation: fadeInUp 1s var(--ease) 0.35s both;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeInUp 1s var(--ease) 0.7s both;
}
.hero-stat { display: flex; flex-direction: column; gap: 0.35rem; }
.hero-stat-n {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero-stat-l {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.hero-visual {
  position: relative;
  width: 100%;
  animation: fadeInUp 1.1s var(--ease) 0.45s both;
}
.hero-visual-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  background: var(--bg-elev);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.06);
  transform: rotate(0deg);
  transition: transform 0.6s var(--ease);
}
.hero-visual-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.hero-visual-frame video,
.hero-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(0.95);
}
button.hero-visual-frame {
  cursor: pointer;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  background: var(--bg-elev);
  width: 100%;
  display: block;
}
/* Inline-play state (mobile only) — let native video controls take over */
.hero-visual-frame.is-playing {
  cursor: default;
  pointer-events: none;
}
.hero-visual-frame.is-playing::after {
  display: none;
}
.hero-visual-frame.is-playing video,
.hero-visual-frame.is-playing iframe {
  pointer-events: auto;
}
.hero-visual-frame.is-playing + .hero-visual-caption {
  display: none;
}
button.hero-visual-frame:hover video {
  transform: scale(1.02);
}
button.hero-visual-frame:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
button.hero-visual-frame video {
  transition: transform 0.6s var(--ease);
}
.hero-visual-caption {
  margin-top: 0.85rem;
  text-align: center;
  font-size: 0.78rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s var(--ease);
}
.hero-visual:hover .hero-visual-caption { color: rgba(255,255,255,0.85); }
@media (prefers-reduced-motion: reduce) {
  .hero-visual-frame video { display: none; }
}

/* Hero visual cinematic exit — scales/rotates as user scrolls past */
@keyframes heroVisualExit {
  0%   { transform: translate3d(0, 0, 0) scale(1) rotate(0deg); opacity: 1; }
  100% { transform: translate3d(0, -40px, 0) scale(0.92) rotate(-2deg); opacity: 0.55; }
}
@supports (animation-timeline: view()) {
  .hero-visual-frame {
    animation: heroVisualExit linear both;
    animation-timeline: view();
    animation-range: exit 0% exit 100%;
    will-change: transform, opacity;
  }
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1rem 0.5rem 0.9rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
}
.hero-kicker-soft {
  background: transparent;
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.78);
  padding-left: 1rem;
}
.hero-kicker-soft::before {
  display: none;
}
.hero-kicker::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.28), 0 0 10px rgba(220,38,38,0.8);
  animation: labelPulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
.kinetic {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.75rem, 4.6vw, 3.85rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeInUp 1s var(--ease) 0.25s both;
  min-width: 0;
}
.kinetic-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.15em 0.35em;
  white-space: normal;
  min-width: 0;
}
.kinetic-prefix { display: inline-block; }
.kinetic .rotator {
  text-transform: none;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.rotator {
  display: inline-grid;
  color: var(--accent);
  font-family: var(--font-serif-accent);
  font-style: italic;
  font-weight: 400;
  vertical-align: baseline;
}
.rotator span {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  white-space: nowrap;
}
.rotator span.is-active {
  opacity: 1;
  transform: translateY(0);
}
.hero-info {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s var(--ease) 0.4s both;
}
.hero-info-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}
.hero-info-divider {
  display: inline-block;
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.2);
}
.hero-info-link {
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s var(--ease);
}
.hero-info-link:hover { color: #fff; }
.hero-info-link:hover .hero-info-ext { transform: translate(2px, -2px); opacity: 1; }
.hero-info-ext {
  width: 12px;
  height: 12px;
  margin-left: 0.15rem;
  color: var(--text-mute);
  opacity: 0.65;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.hero-icon {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  opacity: 0.95;
}

/* Hero phases — numbered timeline (Phase 1 → Phase 2) */
.hero-phases {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: grid;
  gap: 1.15rem;
  position: relative;
  animation: fadeInUp 1s var(--ease) 0.4s both;
}
.hero-phases::before {
  content: "";
  position: absolute;
  left: calc(0.85rem - 1px);
  top: 1.55rem;
  bottom: 1.55rem;
  width: 2px;
  background:
    linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.45) 25%,
      rgba(255, 255, 255, 0.45) 75%,
      rgba(255, 255, 255, 0) 100%);
  z-index: 0;
}
.hero-phase {
  display: grid;
  grid-template-columns: 1.7rem 1fr;
  align-items: center;
  gap: 0.85rem;
  position: relative;
  min-height: 1.7rem;
}
.hero-phase-num {
  width: 1.7rem; height: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 1;
}
.hero-phase-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.95rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
.hero-phase-when { white-space: nowrap; }
.hero-phase-where {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}
.hero-phase-where svg {
  width: 14px; height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}
.hero-phase-where a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.hero-phase-where a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.55);
}
.hero-phase-len {
  font-size: 0.7em;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.16em;
  white-space: nowrap;
  padding-left: 0.7rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s var(--ease) 0.55s both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Ticker */
.ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  z-index: 2;
  -webkit-mask: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
  padding-right: clamp(3rem, 6vw, 6rem);
  animation: tick 45s linear infinite;
  width: max-content;
}
.ticker-track > * {
  flex-shrink: 0;
}
.ticker-track a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  border-radius: 4px;
}
.ticker-track a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 6px;
}
.ticker-track img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity 0.25s var(--ease);
}
.ticker-track img:hover,
.ticker-track a:hover img,
.ticker-track a:focus-visible img { opacity: 1; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes tick {
  to { transform: translateX(-50%); }
}

/* ============================================= */
/* 2. PROBLEM · Checklist                          */
/* ============================================= */

.problem {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(3.5rem, 6vw, 5rem);
  isolation: isolate;
}

/* Full-bleed photo background */
.problem-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.problem-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  filter: contrast(1.02) saturate(0.85) brightness(0.5);
}
.problem-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* Strong vignette — edges fully fade into page bg */
    radial-gradient(ellipse 55% 65% at center, rgba(10,10,10,0) 15%, rgba(10,10,10,0.55) 55%, rgba(10,10,10,0.92) 85%, var(--bg) 100%),
    /* Bottom fade — into page bg */
    linear-gradient(180deg, rgba(10,10,10,0) 30%, rgba(10,10,10,0.8) 75%, var(--bg) 100%),
    /* Left side darkening for content legibility — STRONGER for text contrast */
    linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.72) 35%, rgba(10,10,10,0.35) 65%, rgba(10,10,10,0) 100%);
  pointer-events: none;
}

.problem-content-wrap {
  position: relative;
  z-index: 2;
}

.problem-content {
  max-width: 560px;
}
.problem-content h2 {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.7);
}

.problem-quotes {
  list-style: none;
  margin: 0 0 clamp(2rem, 3vw, 2.5rem);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 1.4vw, 1.25rem);
}
.problem-quotes li {
  font-family: var(--font-serif-accent);
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.45;
  color: rgba(255,255,255,0.95);
  padding: 0.15rem 0 0.15rem 1.1rem;
  border-left: 2px solid var(--accent);
  text-shadow: 0 1px 14px rgba(0,0,0,0.7);
}

.problem-sub {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  margin: 0;
  max-width: 50ch;
}
.problem-sub-bar {
  flex-shrink: 0;
  width: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.problem-sub-text {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
}
.problem-sub-text strong {
  font-weight: 700;
  color: #fff;
}

.problem-foot {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: clamp(3rem, 6vw, 5rem);
}
.problem-foot-line {
  font-family: var(--font-serif-accent);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  color: rgba(255,255,255,0.8);
}
.problem-foot-line .accent {
  font-size: 1.2em;
  letter-spacing: -0.02em;
}

@media (max-width: 880px) {
  .problem-bg img {
    object-position: 65% center;
    filter: contrast(1.02) saturate(0.8) brightness(0.3);
  }
  .problem-bg::after {
    background:
      radial-gradient(ellipse 60% 70% at center, rgba(10,10,10,0.4) 10%, rgba(10,10,10,0.75) 60%, rgba(10,10,10,0.95) 90%, var(--bg) 100%),
      linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.9) 100%);
  }
  .problem-content { max-width: none; }
}

@media (max-width: 640px) {
  .problem-quotes { gap: 0.75rem; }
  .problem-quotes li {
    font-size: 1rem;
    padding-left: 0.9rem;
  }
}

/* ============================================= */
/* 2b. VIDEOS — facade, Apple-style                */
/* ============================================= */

.videos {
  padding: clamp(4.5rem, 9vw, 7rem) 0 clamp(4rem, 7vw, 5.5rem);
}
.videos-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}
.videos-heading {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 0.85rem;
}
.videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 0;
}

.video-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #050505;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 18px 50px -20px rgba(0, 0, 0, 0.85),
    0 2px 6px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.7s var(--ease);
  isolation: isolate;
}
.video-shell:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 30px 70px -22px rgba(0, 0, 0, 0.95),
    0 6px 14px rgba(0, 0, 0, 0.5);
}

.video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}
.video-frame:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 4px;
}

.video-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transform-origin: center;
  transition: transform 1.4s var(--ease), filter 0.7s var(--ease);
  filter: brightness(0.78) saturate(1.04) contrast(1.04);
}
.video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.45) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}
.video-frame:hover .video-poster {
  transform: scale(1.06);
  filter: brightness(0.85) saturate(1.08) contrast(1.04);
}

.video-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(220, 38, 38, 0.45), rgba(220, 38, 38, 0) 65%);
  opacity: 0;
  transition: opacity 0.7s var(--ease);
  pointer-events: none;
  filter: blur(36px);
}
.video-frame:hover .video-glow { opacity: 0.55; }

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(64px, 7vw, 92px);
  height: clamp(64px, 7vw, 92px);
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(22px) saturate(1.5);
  -webkit-backdrop-filter: blur(22px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  transition: transform 0.5s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.video-play svg {
  width: 38%;
  height: 38%;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}
.video-frame:hover .video-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
}
.video-frame:active .video-play {
  transform: translate(-50%, -50%) scale(0.98);
}

.video-cap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 0.25rem;
}
.video-cap-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.012em;
}
.video-cap-detail {
  font-size: 0.92rem;
  color: var(--text-mute);
  letter-spacing: 0.015em;
}

@media (max-width: 880px) {
  .videos-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
}

.check-result {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease);
  text-align: center;
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
  pointer-events: none;
}
.check-result.is-on {
  opacity: 1;
  transform: translateY(0);
}
.big-accent {
  font-family: var(--font-serif-accent);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 1rem;
}
.check-result p:not(.big-accent) {
  font-size: 1.15rem;
  color: var(--text-mute);
}

/* ============================================= */
/* 3. NUMBERS                                      */
/* ============================================= */

.thenumber {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(220,38,38,0.08), transparent 60%),
    var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.thenumber-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.thenumber-head h2 {
  margin: 0 auto 1rem;
  max-width: 18ch;
}
.thenumber-sub {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 42ch;
  margin: 0 auto;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}
.num-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: clamp(2rem, 3.5vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  text-align: left;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.35s var(--ease);
}
.num-card:nth-child(2n) { border-right: none; }
.num-card:nth-last-child(-n+2) { border-bottom: none; }
.num-card:hover { background: rgba(255,255,255,0.015); }
.num-card:hover .num-icon { transform: translateY(-3px); }
.num-icon {
  width: clamp(52px, 5.5vw, 72px);
  height: clamp(52px, 5.5vw, 72px);
  color: var(--accent);
  margin-bottom: 0.5rem;
  transition: transform 0.4s var(--ease);
  stroke-width: 1.4;
}
.num-big {
  font-family: var(--font-serif-accent);
  font-size: clamp(2.25rem, 3.4vw, 3.25rem);
  line-height: 0.95;
  color: rgba(255,255,255,0.92);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.num-big--plus-one::after {
  content: "+1";
  margin-left: 0.3em;
  color: rgba(255, 255, 255, 0.3);
  font-feature-settings: "tnum";
}
.num-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
}
.num-note {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  max-width: 36ch;
}

/* Štruktúra · vertical stack with photos */
.numbers-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 8vw, 8rem);
  margin-bottom: clamp(3.5rem, 6vw, 5rem);
}
.num-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.num-row-reverse .num-row-content { order: -1; }
.num-row-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 30px 70px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.04);
}
.num-row-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.42) 100%);
  pointer-events: none;
}
.num-row-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
.num-row-content .num-icon {
  width: clamp(48px, 4.5vw, 64px);
  height: clamp(48px, 4.5vw, 64px);
  margin-bottom: 0;
}
.num-row-content .num-big {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
}
.num-row-content .num-note {
  max-width: 40ch;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  line-height: 1.6;
}

/* Cinematic scroll reveal — Apple-style */
.num-row[data-reveal] {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.num-row[data-reveal] .num-row-photo {
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.05s, transform 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}
.num-row[data-reveal] .num-row-content > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1), transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}
.num-row[data-reveal] .num-row-content .num-note {
  clip-path: inset(0 100% 0 0);
  transition:
    clip-path 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.num-row[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }
.num-row[data-reveal].is-revealed .num-row-photo { opacity: 1; transform: scale(1); }
.num-row[data-reveal].is-revealed .num-row-content > * { opacity: 1; transform: translateY(0); }
.num-row[data-reveal].is-revealed .num-row-content .num-note { clip-path: inset(0 0 0 0); }
.num-row[data-reveal].is-revealed .num-row-content > *:nth-child(1) { transition-delay: 0.3s; }
.num-row[data-reveal].is-revealed .num-row-content > *:nth-child(2) { transition-delay: 0.42s; }
.num-row[data-reveal].is-revealed .num-row-content > *:nth-child(3) { transition-delay: 0.52s; }
.num-row[data-reveal].is-revealed .num-row-content > *:nth-child(4) { transition-delay: 0.62s; }

/* Continuous scroll-driven photo cinematics for modern browsers */
@keyframes photoCinema {
  0%   { transform: translate3d(0, 50px, 0) scale(1.18); filter: brightness(0.78) saturate(0.9); }
  40%  { transform: translate3d(0, 0, 0) scale(1.02); filter: brightness(1) saturate(1); }
  60%  { transform: translate3d(0, 0, 0) scale(1.02); filter: brightness(1) saturate(1); }
  100% { transform: translate3d(0, -45px, 0) scale(1.06); filter: brightness(0.85) saturate(0.95); }
}
@supports (animation-timeline: view()) {
  .num-row[data-reveal] .num-row-photo {
    opacity: 1;
    transform: none;
    transition: none;
    animation: photoCinema linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
    will-change: transform, filter;
  }
}

@media (prefers-reduced-motion: reduce) {
  .num-row[data-reveal],
  .num-row[data-reveal] .num-row-photo,
  .num-row[data-reveal] .num-row-content > *,
  .num-row[data-reveal] .num-row-content .num-note {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
    animation: none;
  }
}

/* Heading word stagger — overflow clip + slide-up */
.heading-split {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.32em;
  justify-content: center;
}
.heading-split .word {
  display: inline-flex;
  overflow: hidden;
  padding: 0.05em 0;
  vertical-align: top;
}
.heading-split .word > span {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.heading-split .word.accent {
  font-family: var(--font-serif-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.thenumber.is-visible .heading-split .word > span { transform: translateY(0); }
.thenumber.is-visible .heading-split .word:nth-child(1) > span { transition-delay: 0.05s; }
.thenumber.is-visible .heading-split .word:nth-child(2) > span { transition-delay: 0.16s; }
.thenumber.is-visible .heading-split .word:nth-child(3) > span { transition-delay: 0.32s; }
.thenumber.is-visible .heading-split .word:nth-child(4) > span { transition-delay: 0.46s; }

@media (prefers-reduced-motion: reduce) {
  .heading-split .word > span { transform: none; transition: none; }
}

.thenumber-foot {
  text-align: center;
  font-family: var(--font-serif-accent);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  color: rgba(255,255,255,0.85);
}
.thenumber-foot .accent {
  font-size: 1.2em;
  letter-spacing: -0.02em;
}

/* ============================================= */
/* 4. PHASES · interactive tabs                    */
/* ============================================= */

.phases h2 { margin-bottom: 3.5rem; }

/* Timeline — single horizontal track, Apple-clean */
.phase-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 3.5rem;
  padding: 0 0.5rem;
}
.phase-tab {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0 0.5rem;
  background: none;
  border: none;
  text-align: center;
  cursor: pointer;
  min-width: 0;
  transition: transform 0.3s var(--ease);
}
.phase-tab:hover { transform: translateY(-2px); }
.phase-d {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 0.85rem;
  height: 1.1rem;
  display: flex;
  align-items: center;
  transition: color 0.3s var(--ease);
}
.phase-tab.is-active .phase-d { color: var(--accent); }
.phase-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border-strong);
  flex-shrink: 0;
  transition: all 0.4s var(--ease);
  position: relative;
}
.phase-tab:hover .phase-dot { border-color: var(--accent); }
.phase-tab.is-active .phase-dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 6px rgba(220,38,38,0.18);
}
.phase-ttl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-top: 1.25rem;
  transition: color 0.3s var(--ease);
}
.phase-tab.is-active .phase-ttl { color: var(--accent); }
.phase-desc {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--text-mute);
  line-height: 1.45;
  margin-top: 0.4rem;
  max-width: 22ch;
}
.phase-line {
  flex: 1 1 0;
  height: 0;
  border-top: 2px solid var(--border);
  align-self: flex-start;
  margin-top: calc(0.7rem + 0.85rem + 7px);
  min-width: 14px;
  position: relative;
}
.phase-line-pause {
  border-top: 2px dashed var(--border-strong);
  flex: 1.6 1 0;
  min-width: 90px;
}
.pause-label {
  position: absolute;
  top: -1.85rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  white-space: nowrap;
  background: var(--bg);
  padding: 0 0.5rem;
}

.phase-line::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  pointer-events: none;
}
.phase-line.is-complete::before { width: 100%; }
.phase-line.is-active::before { animation: phaseLineFill 6s linear forwards; }
@keyframes phaseLineFill {
  from { width: 0; }
  to   { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .phase-line.is-active::before { animation: none; width: 100%; }
}
@media (max-width: 640px) {
  .phase-line::before { display: none; }
}

.phase-panel {
  position: relative;
  min-height: 380px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3rem;
  overflow: hidden;
}
.phase-content {
  position: absolute;
  inset: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease);
  pointer-events: none;
  display: flex;
  gap: 2.5rem;
  align-items: stretch;
}
.phase-content.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.phase-content-text {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.phase-content-image {
  flex: 0 0 44%;
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: var(--bg);
}
.phase-content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.phase-tag {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.9rem 0.4rem 0.85rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(220,38,38,0.1);
  border: 1px solid var(--accent);
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.phase-tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.22);
  animation: labelPulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
.phase-content h3 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.phase-content p { color: var(--text-mute); font-size: 1.1rem; max-width: 55ch; }

.phase-disclaimer {
  margin: 1.75rem 0 0;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-mute);
  opacity: 0.8;
  text-align: center;
}

/* Mid-page CTA — after Phases section (compact horizontal, tightly coupled) */
.phases:has(+ .cta-mid) {
  padding-bottom: clamp(1.25rem, 2vw, 1.75rem);
}
.cta-mid {
  padding: 0 0 clamp(2rem, 4vw, 3rem);
}
.cta-mid-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
  flex-wrap: wrap;
}
.cta-mid-q {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.cta-mid-note {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}
@media (max-width: 640px) {
  .cta-mid-row {
    flex-direction: column;
    text-align: center;
    gap: 0.85rem;
  }
}

/* ============================================= */
/* 5. SAFETY                                       */
/* ============================================= */

.safety {
  background: var(--bg-elev);
}
.safety > .container { text-align: center; }
.safety h2 { margin: 0 auto 3rem; }
.safety-stats { text-align: left; }

/* ============================================= */
/* 6. TEAM · hover reveal                          */
/* ============================================= */

.team-subtitle {
  margin: 0 0 1.25rem;
  max-width: 60ch;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
}
.team-note {
  margin: 2rem auto 0;
  max-width: 60ch;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-mute);
  opacity: 0.8;
  text-align: center;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.team-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  cursor: pointer;
  background: transparent;
  perspective: 1200px;
  outline: 0;
}
.team-card:focus-visible {
  outline: 2px solid rgba(255,255,255,0.55);
  outline-offset: 4px;
}
.team-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s var(--ease);
  border-radius: inherit;
}
.team-card.is-flipped .team-card-inner {
  transform: rotateY(180deg);
}
.team-card-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: inherit;
  overflow: hidden;
}
.team-card-front {
  /* photo + overlay live here */
}
.team-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(180deg, #181818 0%, #0c0c0c 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.25rem;
}
.team-bio {
  font-family: var(--font-display);
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  text-align: left;
}
.team-photo {
  position: absolute;
  inset: 0;
  background: #000 center/cover no-repeat;
  filter: grayscale(1) contrast(1.1);
  transition: filter 0.5s var(--ease), transform 0.5s var(--ease);
}
.team-card:hover:not(.is-flipped) .team-photo {
  filter: grayscale(0) contrast(1.05);
  transform: scale(1.05);
}
.team-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.25rem 1.25rem 1.1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.95) 100%);
}
.team-overlay h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.team-overlay .role {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

/* ============================================= */
/* 7. MEDIA QUOTE                                  */
/* ============================================= */

.media {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.quote-stage {
  position: relative;
  min-height: 260px;
  max-width: 900px;
  margin: 0 auto;
}
.quote-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease);
  pointer-events: none;
}
.quote-item.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.quote-item blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 2rem;
}
.quote-item figcaption {
  font-size: 0.85rem;
  color: var(--text-mute);
  letter-spacing: 0.1em;
}
.quote-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
}
.qdot {
  width: 30px;
  height: 3px;
  background: var(--border-strong);
  border-radius: 2px;
  transition: background 0.3s var(--ease);
}
.qdot.is-active { background: var(--accent); }

/* ============================================= */
/* 8. TESTIMONIALS                                 */
/* ============================================= */

.testimonials h2 { margin-bottom: 2.5rem; }
.testi-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}
.testi-feature-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #050505;
  isolation: isolate;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 18px 50px -20px rgba(0, 0, 0, 0.85),
    0 2px 6px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.7s var(--ease);
}
.testi-feature-video:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 30px 70px -22px rgba(0, 0, 0, 0.95),
    0 6px 14px rgba(0, 0, 0, 0.5);
}
.testi-feature-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  background: #000;
}
.testi-feature-video video[hidden] {
  display: none;
}
.testi-video-trigger {
  border-radius: inherit;
}
.testi-feature-strip {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.testi-strip-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
  animation: stripScroll 50s linear infinite;
  will-change: transform;
}
.testi-strip-track img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  filter: grayscale(0.35) contrast(1.05) brightness(0.92);
  transition: filter 0.4s var(--ease);
}
.testi-feature-strip:hover .testi-strip-track {
  animation-play-state: paused;
}
.testi-feature-strip:hover .testi-strip-track img {
  filter: none;
}
@keyframes stripScroll {
  to { transform: translateY(-50%); }
}
@media (max-width: 768px) {
  .testi-feature {
    grid-template-columns: 1fr;
  }
  .testi-feature-strip { display: none; }
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
body[data-persona="mama"] .testi-grid {
  grid-template-columns: repeat(4, 1fr);
}
.testi-card {
  aspect-ratio: 9 / 12;
  border-radius: 6px;
  background: linear-gradient(135deg, #1a1a1a, #2a1616);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s var(--ease);
}
.testi-card:hover { transform: translateY(-4px); }
.testi-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.6);
  transition: all 0.25s var(--ease);
}
.testi-card:hover .testi-play { color: var(--accent); transform: scale(1.2); }
.testi-meta {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-mute);
}
.testi-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
  font-style: italic;
}
.testi-doc {
  margin: 1.5rem auto 0;
  text-align: center;
}
.testi-doc-prompt {
  margin: 0 0 0.85rem;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}
.testi-doc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.testi-doc-icon {
  width: 13px;
  height: 13px;
  color: var(--accent);
  flex-shrink: 0;
}
.testi-doc-meta {
  font-size: 0.74em;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  font-weight: 500;
  margin-left: 0.15rem;
}
.testi-doc-ext {
  width: 11px;
  height: 11px;
  color: var(--text-mute);
  opacity: 0.7;
  margin-left: 0.15rem;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.testi-doc-btn:hover .testi-doc-ext {
  transform: translate(2px, -2px);
  opacity: 1;
}

/* ============================================= */
/* 9. FAQ                                          */
/* ============================================= */

.faq { background: var(--bg-elev); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq h2 { margin-bottom: 2rem; }
.faq-list { display: grid; gap: 0.5rem; }
.faq-list details {
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.2s var(--ease);
}
.faq-list details[open] { border-color: var(--accent); }
.faq-list summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.2s var(--ease);
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-mute);
  font-size: 0.95rem;
  max-width: 60ch;
}

/* ============================================= */
/* 10. PRICE                                       */
/* ============================================= */

.price { text-align: center; }
.price-hero {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin: 2rem 0 3rem;
}
.price-num {
  font-family: var(--font-serif-accent);
  font-size: clamp(5rem, 14vw, 10rem);
  line-height: 0.9;
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}
.price-num-prefix {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.22em;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  vertical-align: 0.95em;
  margin-right: 0.5em;
  opacity: 0.85;
}
.price-sub {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.price-original {
  margin: -1.5rem auto 2.25rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-mute);
  max-width: 56ch;
}
.price-original strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}
.price-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.pill {
  padding: 0.5rem 1rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--text-mute);
  transform: perspective(500px);
  transition: transform 0.45s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
  will-change: transform;
}
@media (hover: hover) {
  .pill:hover {
    border-color: rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.04);
  }
}
.pill.is-tilting {
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}
.pill-accent {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--text);
}
.price-foot { color: var(--text-mute); }
.price-foot a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
}
.price-foot a:hover { border-color: var(--accent); }

/* Cena — help block (financovanie) */
.price-help {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
}
.price-help-lead {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.price-help-sub {
  max-width: 52ch;
  margin: 0 auto clamp(2rem, 3.5vw, 2.75rem);
  color: var(--text-mute);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.55;
}
.price-help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.85rem, 1.5vw, 1.15rem);
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
  text-align: left;
}
.price-help-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: clamp(1.1rem, 1.8vw, 1.5rem) clamp(1.25rem, 2vw, 1.65rem);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.price-help-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-elev-2);
}
.price-help-title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  color: #fff;
}
.price-help-desc {
  font-size: 0.92rem;
  color: var(--text-mute);
  line-height: 1.5;
  margin: 0;
}
.price-help-desc strong {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 640px) {
  .price-help-grid { grid-template-columns: 1fr; }
}

/* ============================================= */
/* 11. URGENCY · countdown                         */
/* ============================================= */

.urgency {
  background: linear-gradient(135deg, var(--accent) 0%, #7f1818 100%);
  text-align: center;
  color: #fff;
}
.urg-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem 0.45rem 0.9rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  margin-bottom: 2.5rem;
}
.urg-label::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.25);
  animation: labelPulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
.urg-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 0 auto 1rem;
  max-width: 18ch;
}
.urg-once {
  font-family: var(--font-serif-accent);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #fff;
}
.urg-sub {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}
.countdown {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 100px;
  padding: 1rem;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
}
.cd-n {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-l {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.cd-sep {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  color: rgba(255,255,255,0.4);
  align-self: center;
}
.urg-dates {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  color: rgba(255,255,255,0.95);
}

/* ============================================= */
/* 12. FINAL                                       */
/* ============================================= */

.final { text-align: center; }
.final h2 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 2.5rem;
}
.final-note {
  margin-top: 1.25rem;
  color: var(--text-dim);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.share-box {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}
#share-text {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

/* ============================================= */
/* FOOTER                                          */
/* ============================================= */

.footer {
  padding: 3rem 0 2rem !important;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.partners {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.partners img {
  height: 26px;
  width: auto;
  opacity: 0.65;
  filter: brightness(0) invert(1);
  transition: opacity 0.25s var(--ease);
}
.partners img:hover { opacity: 1; }
.partner-lipnice { height: 38px !important; }
.partner-txt { font-size: 0.8rem; color: var(--text-dim); }
.contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: var(--text-mute);
  text-align: right;
}
.contact a:hover { color: var(--accent); }
.copyr {
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
}

/* ============================================= */
/* RESPONSIVE                                      */
/* ============================================= */

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .hero-visual-frame { aspect-ratio: 16 / 11; border-radius: 20px; }
  .hero-stats { gap: 2rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid, body[data-persona="mama"] .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .phase-panel { min-height: 340px; }
  .num-row { grid-template-columns: 1fr; gap: 1.75rem; }
  .num-row-reverse .num-row-content { order: 0; }
  .num-row-photo { aspect-ratio: 16 / 10; }
  .numbers-stack { gap: clamp(3rem, 6vw, 5rem); }
}

@media (max-width: 640px) {
  /* tighter vertical rhythm on small viewports */
  :root { --section-pad: clamp(2.5rem, 7vw, 4rem); }

  .topbar-right .toggle { display: inline-flex; }
  /* keep Prihláška CTA visible on mobile — most important conversion point */
  .topbar-right .btn {
    display: inline-flex;
    padding: 0.55rem 0.85rem;
    font-size: 0.78rem;
  }
  .topbar { padding: 0.65rem 0; }
  .topbar-inner { gap: 0.4rem; }
  .topbar .toggle-btn { padding: 0.45rem 0.65rem; font-size: 0.75rem; }
  .logo-text { display: none; }  /* hide full text — just keep mark icon on mobile */

  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { width: 100%; }
  .numbers-grid { grid-template-columns: 1fr; }
  .num-card {
    padding: 1.75rem 0.25rem;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .num-card:last-child { border-bottom: none; }
  .phase-timeline {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .phase-tab {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    text-align: left;
  }
  .phase-d { margin-bottom: 0; min-width: 70px; flex-shrink: 0; }
  .phase-dot { margin-top: 0.2rem; align-self: flex-start; }
  .phase-ttl { margin-top: 0; }
  .phase-desc { margin-top: 0.25rem; max-width: 100%; }
  .phase-tab > :not(.phase-d):not(.phase-dot) { flex: 1; }
  .phase-line { display: none; }
  /* mobile: standalone dashed pill chip — left aligned with phase-d column */
  .phase-line-pause {
    all: unset;
    display: block;
    text-align: left;
    padding: 0.75rem 0 0.75rem 86px;  /* match phase-d 70px + 1rem gap */
    margin: 0;
    flex: 0 0 auto;
  }
  .pause-label {
    position: static;
    transform: none;
    display: inline-block;
    padding: 0.55rem 1.1rem;
    background: transparent;
    border: 1.5px dashed rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: var(--text-mute);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .phase-panel { padding: 2rem; min-height: auto; }
  .phase-content {
    position: relative;
    inset: auto;
    flex-direction: column-reverse;
    gap: 1.5rem;
    transform: none;
  }
  .phase-content:not(.is-active) { display: none; }
  .phase-content-image { flex: 0 0 auto; aspect-ratio: 4 / 3; }
  /* team & testi keep 2-column on mobile (less scrolling than 1-col) */
  .team-grid, .testi-grid, body[data-persona="mama"] .testi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .team-overlay { transform: translateY(0); }
  .team-overlay .bio { opacity: 1; }
  .team-overlay h3 { font-size: 1rem; }
  .team-overlay .role { font-size: 0.7rem; }
  /* bio card on mobile — allow scroll if text doesn't fit */
  .team-card-back {
    align-items: flex-start;
    padding: 0.85rem 0.75rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .team-bio {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  /* compact countdown */
  .countdown { gap: 0.3rem; }
  .cd-unit { min-width: 64px; padding: 0.75rem 0.4rem; }
  .cd-sep { display: none; }

  /* prevent awkward wrap of place names */
  .urg-dates { font-size: clamp(1rem, 4.5vw, 1.4rem); }
  .urg-dates .nowrap { white-space: nowrap; }

  /* footer columns to vertical */
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .contact { text-align: left; }

  /* hero — slightly tighter typography on very small */
  .kinetic { font-size: clamp(2.5rem, 12vw, 4rem) !important; }
  .hero-sub { font-size: 1rem; }
  .hero-phase-body { font-size: 0.72rem; letter-spacing: 0.1em; }

  /* phases section h2 wraps less weirdly */
  .phases h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); margin-bottom: 2rem; }

  /* mid-cta tighter */
  .cta-mid-q { font-size: clamp(1.15rem, 5.5vw, 1.5rem); }

  /* price hero — "od 290 €" smaller */
  .price-num { font-size: clamp(3.5rem, 18vw, 6rem); }
  .price-sub { font-size: 0.72rem; letter-spacing: 0.12em; }
  .price-original { font-size: 0.85rem; padding: 0 0.5rem; }

  /* faq h2 + items */
  .faq h2 { font-size: clamp(1.5rem, 7vw, 2rem); }
  details summary { font-size: 1rem; padding: 1rem 0; }
  details p { font-size: 0.92rem; }

  /* num-row spacing tighter on mobile */
  .num-row-content { padding: 1.25rem 0; }
  .num-big { font-size: clamp(2rem, 12vw, 3rem); }

  /* video card padding */
  .videos-grid { gap: 1.25rem; }
  .video-cap-title { font-size: 1rem; }
  .video-cap-detail { font-size: 0.8rem; }
}

/* ============================================= */
/* COOKIE CONSENT MODAL (consent-wall)             */
/* ============================================= */

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  /* Backdrop is non-blocking — clicks pass through to page underneath */
  pointer-events: none;
  animation: cookieFadeIn 0.3s var(--ease) both;
}
.cookie-modal[hidden] { display: none; }

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 70%, rgba(0, 0, 0, 0.1) 100%);
  /* Soft dim — visitor still sees the page */
}

.cookie-modal-card {
  position: relative;
  max-width: 30rem;
  width: 100%;
  background: rgba(18, 18, 18, 0.985);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: 0 30px 80px -15px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  /* Card itself captures clicks for the buttons */
  pointer-events: auto;
  animation: cookieScaleIn 0.35s var(--ease) both;
}

.cookie-modal-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #fff;
}

.cookie-modal-text {
  margin: 0 0 0.55rem;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}
.cookie-modal-text em {
  color: rgba(255, 255, 255, 0.62);
  font-style: italic;
}

.cookie-modal-hint {
  margin: 0 0 1.35rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
}

.cookie-modal-actions {
  display: flex;
  gap: 0.65rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-modal-actions .btn {
  padding: 0.7rem 1.4rem;
  font-size: 0.88rem;
  min-width: 8rem;
}

/* Lock body scroll while modal is open */
body.consent-locked {
  overflow: hidden;
  touch-action: none;
}

@keyframes cookieFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes cookieScaleIn {
  from { transform: scale(0.92) translateY(8px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

@media (max-width: 640px) {
  .cookie-modal {
    padding: 1rem;
    align-items: flex-end;
  }
  .cookie-modal-card {
    padding: 1.35rem 1.25rem 1.2rem;
  }
  .cookie-modal-title {
    font-size: 1.3rem;
  }
  .cookie-modal-text {
    font-size: 0.88rem;
  }
  .cookie-modal-actions {
    flex-direction: column-reverse;
    gap: 0.5rem;
  }
  .cookie-modal-actions .btn {
    width: 100%;
    min-width: 0;
  }
}
