/* Lokal gehosteter Textfont (DSGVO-konform, kein Google-CDN). swap vermeidet unsichtbaren Text. */
@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/bebas-neue-latin.ttf") format("truetype");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("assets/fonts/space-grotesk-latin-var.woff2") format("woff2");
}

:root {
  --bg: #ffffff;
  --surface: #eeece7;
  --border: #d9d9dd;
  --text: #212121;
  /* Dunkel genug für 4.5:1 auch auf der Creme-Fläche (--surface). */
  --muted: #63637a;
  --accent: #17171c;
  --accent-2: #ff7759;
  --on-dark: #ffffff;
  --muted-on-dark: #d9d9dd;
  --radius: 16px;
  --radius-pill: 999px;
  --max: 1180px;
  --motion-fast: 120ms;
  --motion-base: 200ms;
  --motion-faq: 250ms;
  --motion-reveal: 850ms;
  --motion-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --motion-ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Bebas Neue", "Franklin Gothic Heavy", "Arial Black", Impact, Haettenschweiler, sans-serif;
  --font-body: "Space Grotesk", Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "Space Grotesk", Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-ui: "Space Grotesk", Arial, ui-sans-serif, system-ui, sans-serif;
  --canvas: #ffffff;
  --ink: #212121;
  --soft: #eeece7;
  --rule: #d9d9dd;
  --dark: #17171c;
  --green: #003c33;
  --navy: #071829;
  --coral: #ff7759;
  /* Abgedunkelte Koralle für Text auf hellen Flächen (WCAG AA; die helle Koralle schafft nur 2.9:1). */
  --coral-text: #c2410c;
  --focus: #4c6ee6;
  --radius-sm: var(--radius);
  --radius-md: var(--radius);
  --radius-lg: var(--radius);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  /* clip statt hidden: hidden macht body zum Scroll-Container und bricht position: sticky im Header. */
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  overflow-x: clip;
}

body,
button {
  font: 400 16px / 1.5 var(--font-body);
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

button {
  color: inherit;
}

/* Reduziert das 300ms-Tap-Delay auf Touch-Geräten. */
a,
button,
summary {
  touch-action: manipulation;
}

/* Sprungziele landen nicht unter dem Sticky-Header. */
[id] {
  scroll-margin-top: 90px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  border-radius: var(--radius-pill);
  padding: 12px 20px;
  background: var(--accent);
  color: var(--on-dark);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-200%);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.announcement {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 7px 16px;
  background: var(--surface);
  color: var(--text);
  font-size: 12px;
  text-align: center;
}

.announcement a {
  font-weight: 600;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px max(20px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  backdrop-filter: blur(14px);
}

.brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 0 0 transparent;
  transition:
    transform var(--motion-base) var(--motion-ease),
    box-shadow var(--motion-base) var(--motion-ease),
    background-color var(--motion-base) var(--motion-ease),
    color var(--motion-base) var(--motion-ease);
}

.button--dark {
  padding: 12px 22px;
  background: var(--accent);
  color: var(--on-dark);
}

/* Heller Button für dunkle Flächen: vorher dunkel-auf-dunkelgrün und kaum sichtbar. */
.button--light {
  padding: 12px 24px;
  background: var(--on-dark);
  color: var(--accent);
}

.button--ghost {
  padding: 12px 22px;
  border-color: transparent;
  background: rgba(238, 236, 231, 0.62);
  color: var(--text);
}

.button:active {
  transform: scale(0.97);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.hero {
  position: relative;
  display: block;
  min-height: 200svh;
  overflow: visible;
  padding: 0;
  background: var(--bg);
  isolation: isolate;
}

/* Hero-Fallback: Nachtstraßen-Energie ohne Bild. Liegt unter einem späteren Video. */
.hero-bg,
.hero-bg__glow,
.hero-bg__noise,
.hero-bg__overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -2;
  background: var(--bg);
}

.hero-bg__glow {
  transform: scale(1.12);
  background:
    radial-gradient(circle at 18% 26%, var(--green) 0, transparent 34%),
    radial-gradient(circle at 82% 18%, var(--accent-2) 0, transparent 27%),
    radial-gradient(circle at 64% 76%, var(--navy) 0, transparent 31%),
    radial-gradient(circle at 24% 88%, var(--accent-2) 0, transparent 22%),
    var(--bg);
  opacity: 0.14;
  animation: hero-glow-drift 26s linear infinite;
  will-change: transform;
}

/* Feines Filmkorn, damit der Verlauf nicht nach glattem Bildschirmschoner wirkt. */
.hero-bg__noise {
  background-image:
    radial-gradient(circle at 12% 18%, var(--text) 0 1px, transparent 1px),
    radial-gradient(circle at 68% 74%, var(--text) 0 1px, transparent 1px),
    radial-gradient(circle at 40% 44%, var(--text) 0 1px, transparent 1px);
  background-size: 18px 18px, 23px 23px, 31px 31px;
  opacity: 0.055;
  animation: hero-noise-shift 1.4s steps(2, end) infinite;
}

.hero-bg__overlay {
  background:
    linear-gradient(90deg, var(--bg) 0%, transparent 54%, var(--bg) 100%),
    linear-gradient(180deg, var(--bg) 0%, transparent 38%, var(--bg) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  min-height: 100svh;
  margin: 0 auto;
  align-content: center;
  justify-items: center;
  gap: 12px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(217, 217, 221, 0.7), inset 0 -1px 0 rgba(217, 217, 221, 0.7);
  padding: clamp(1.75rem, 4vh, 2.75rem) clamp(1rem, 4vw, 4rem);
  text-align: center;
  backdrop-filter: blur(12px);
}

.hero.is-pinned .hero__inner {
  position: fixed;
  inset: 0;
}

.hero.is-after .hero__inner {
  position: absolute;
  inset: auto 0 0;
}

.hero__copy {
  position: absolute;
  top: clamp(4.2rem, 15vh, 7rem);
  left: 50%;
  width: min(920px, calc(100% - 2rem));
  max-width: 920px;
  opacity: var(--intro-opacity, 1);
  transform: translate3d(-50%, var(--intro-y, 0px), 0);
  will-change: opacity, transform;
}

.hero__support {
  position: absolute;
  bottom: clamp(3rem, 10vh, 5.5rem);
  left: 50%;
  display: grid;
  width: min(700px, calc(100% - 2rem));
  max-width: 700px;
  justify-items: center;
  opacity: var(--intro-opacity, 1);
  transform: translate3d(-50%, var(--support-y, 0px), 0);
  will-change: opacity, transform;
}

.label {
  margin: 0 0 14px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Editorialer Slash-Auftakt: Labels wirken gesetzt statt generisch. */
.label::before {
  color: var(--coral-text);
  content: "/ ";
}

.dark-band .label::before,
.section-heading--dark .label::before {
  color: var(--coral);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 1060px;
  font-size: 54px;
  line-height: 0.92;
  text-wrap: balance;
  animation: hero-fade-up 650ms var(--motion-ease-soft) 100ms both;
}

/* Gestaffelter Hero-Einstieg: weiche Blur-Fades wie in der Referenz. */
.hero__copy .label {
  animation: hero-fade-up 650ms var(--motion-ease-soft) 40ms both;
}

.hero__support > p {
  animation: hero-fade-up 650ms var(--motion-ease-soft) 200ms both;
}

.hero__support .hero__actions {
  animation: hero-fade-up 650ms var(--motion-ease-soft) 300ms both;
}

h2 {
  max-width: 850px;
  font-size: 40px;
  line-height: 1.05;
  text-wrap: balance;
}

h3 {
  font-size: 24px;
  line-height: 1.2;
  text-wrap: balance;
}

.hero__copy > p:not(.label),
.hero__support > p,
.section-heading > p:not(.label) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 470;
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.location {
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
  font-weight: 520;
}

.hero-proof {
  position: absolute;
  top: var(--proof-top, 50%);
  left: 50%;
  width: min(100%, 860px);
  min-height: clamp(190px, 28vw, 245px);
  margin-top: -0.35rem;
  transform: translate3d(calc(-50% + var(--proof-x, 0px)), calc(-50% + var(--proof-y, 0px)), 0)
    scale(var(--proof-scale, 1));
  transform-origin: center center;
  will-change: transform;
}

.hero-proof__stage {
  position: relative;
  width: min(100%, 760px);
  height: clamp(185px, 27vw, 235px);
  margin: 0 auto;
  perspective: 1200px;
}

.proof-card {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: clamp(4.9rem, 11.2vw, 7.9rem);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  opacity: var(--cards-opacity, 1);
  transform: translate(-50%, -50%) translate3d(var(--card-x, 0px), var(--card-y, 0px), 0)
    rotate(var(--card-r, 0deg)) scale(var(--card-s, 1));
  transform-origin: center bottom;
  box-shadow: 0 18px 34px rgba(7, 24, 41, 0.16);
  animation: hero-proof-unfold 1000ms cubic-bezier(0.16, 1, 0.3, 1) var(--d) both;
  will-change: transform;
}

.proof-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.28));
  content: "";
  pointer-events: none;
}

.proof-card img {
  display: block;
  width: 100%;
  height: auto;
}

.proof-card--1,
.proof-card--7 {
  z-index: 1;
}

.proof-card--2,
.proof-card--6 {
  z-index: 2;
}

.proof-card--3,
.proof-card--5 {
  z-index: 3;
}

.proof-card.is-focus {
  z-index: 4;
}

.hero-proof__tag {
  --tag-r: -4deg;
  position: absolute;
  z-index: 6;
  top: 18%;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  padding: 0.42rem 0.75rem;
  color: var(--on-dark);
  font-size: clamp(0.68rem, 1.5vw, 0.84rem);
  font-weight: 700;
  line-height: 1;
  opacity: var(--tag-opacity, 1);
  transform: translateY(var(--tag-y, 0px)) rotate(var(--tag-r)) scale(var(--tag-scale, 1));
  animation: hero-tag-pop 420ms var(--motion-ease) 1050ms both;
}

.hero-proof__tag--left {
  left: clamp(2rem, 18vw, 12rem);
  background: var(--green);
}

.hero-proof__tag--right {
  --tag-r: 5deg;
  right: clamp(2rem, 18vw, 12rem);
  background: var(--coral);
  animation-delay: 1150ms;
}

/* Beispielprofile sitzen als Tags direkt an den Video-Karten. */
.hero-proof__tag--handle-left {
  --tag-r: -3deg;
  top: auto;
  bottom: 4%;
  left: clamp(2.5rem, 15vw, 9rem);
  background: var(--accent);
  opacity: var(--handle-opacity, 0);
  transform: translateY(var(--handle-y, 12px)) rotate(var(--tag-r)) scale(var(--handle-scale, 0.92));
  animation: none;
}

.hero-proof__tag--handle-right {
  --tag-r: 4deg;
  top: auto;
  bottom: 4%;
  right: clamp(2.5rem, 15vw, 9rem);
  background: var(--coral);
  opacity: var(--handle-opacity, 0);
  transform: translateY(var(--handle-y, 12px)) rotate(var(--tag-r)) scale(var(--handle-scale, 0.92));
  animation: none;
}

.hero-sales {
  position: absolute;
  z-index: 8;
  top: clamp(3.5rem, 11vh, 6.5rem);
  left: clamp(1.25rem, 6vw, 5rem);
  display: grid;
  width: min(31rem, calc(100% - 2rem));
  justify-items: start;
  gap: 18px;
  text-align: left;
  opacity: var(--sales-opacity, 0);
  transform: translateY(var(--sales-y, 22px));
  pointer-events: none;
  will-change: opacity, transform;
}

.hero-sales .label {
  margin: 0;
}

.hero-sales h2 {
  max-width: 540px;
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  line-height: 0.95;
  text-wrap: balance;
}

.hero-sales h2::first-line {
  color: var(--text);
}

.hero-sales p:not(.label) {
  max-width: 330px;
  margin: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 520;
  line-height: 1.45;
}

.hero-sales__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.hero.is-sales-ready .hero-sales {
  pointer-events: auto;
}

.hero.is-scroll-ready .proof-card,
.hero.is-scroll-ready .hero-proof__tag {
  animation: none;
}

.hero-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.hero-media__panel {
  min-height: 270px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
  overflow: hidden;
}

.hero-media__panel--wide {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--surface);
}

.hero-media__panel--small {
  background: var(--surface);
  color: var(--text);
}

.media-label,
.play-mark {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  border: 1px solid currentColor;
  border-radius: var(--radius-pill);
  padding: 5px 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.hero-media strong {
  display: block;
  max-width: 430px;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.05;
}

.hero-media p {
  max-width: 360px;
  margin: 12px 0 0;
  color: currentColor;
  opacity: 0.72;
}

.console-card {
  display: inline-grid;
  width: min(320px, 100%);
  margin-top: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--dark);
  color: var(--on-dark);
  gap: 6px;
  padding: 18px;
}

.console-card span:not(.status-dot) {
  color: var(--muted-on-dark);
  font-size: 13px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.section,
.final-cta,
.site-footer {
  padding: clamp(84px, 10vw, 128px) 20px;
}

.section > *,
.final-cta > *,
.site-footer > * {
  width: min(var(--max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.section-rule {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.dark-band {
  background: var(--green);
  color: var(--on-dark);
}

.dark-band .label {
  color: var(--muted-on-dark);
}

.section--stone {
  background: var(--soft);
}

.section-heading {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto clamp(52px, 6vw, 76px);
}

.section-heading--dark .label {
  color: var(--muted-on-dark);
}

.section-heading--dark p:not(.label) {
  color: var(--muted-on-dark);
}

.reel-section {
  position: relative;
  padding: clamp(84px, 10vw, 128px) 0 clamp(92px, 11vw, 140px);
  overflow: hidden;
}

.reel-carousel {
  --phone-w: clamp(13rem, 56vw, 22.5rem);
  --gap: clamp(0.9rem, 2.6vw, 2rem);
  position: relative;
  min-height: calc(var(--phone-w) * 2.18 + 7rem);
  overflow: hidden;
}

.reel-carousel::before,
.reel-carousel::after {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 5rem;
  width: min(18vw, 10rem);
  content: "";
  pointer-events: none;
}

.reel-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--green), transparent);
}

.reel-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--green), transparent);
}

.reel-carousel__viewport {
  width: 100%;
  min-height: calc(var(--phone-w) * 2.18);
  overflow: hidden;
}

.reel-carousel__track {
  display: flex;
  width: max-content;
  min-height: calc(var(--phone-w) * 2.18);
  align-items: center;
  gap: var(--gap);
  padding: 1rem max(var(--gap), calc(50vw - (var(--phone-w) / 2))) 1.5rem;
  animation: reel-drift 48s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}

.reel-carousel__track.is-moving {
  animation-play-state: running;
}

.reel-carousel__track.is-ready .phone-card {
  transition:
    opacity 650ms var(--motion-ease-soft),
    transform 650ms var(--motion-ease-soft),
    filter 650ms var(--motion-ease-soft);
}

.phone-card {
  flex: 0 0 var(--phone-w);
  opacity: 0.66;
  filter: brightness(0.74) saturate(0.92);
  transform: scale(0.86);
  transform-origin: center;
}

.phone-card.is-active {
  z-index: 2;
  opacity: 1;
  filter: brightness(1) saturate(1.05);
  transform: scale(1);
}

.iphone {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border: 2px solid var(--on-dark);
  border-radius: 42px;
  background: var(--bg);
  box-shadow:
    inset 0 0 0 0.42rem var(--surface),
    inset 0 0 0 0.62rem var(--border);
  padding: 0.62rem;
}

.iphone::before,
.iphone::after {
  position: absolute;
  right: 100%;
  width: 0.2rem;
  border-radius: 99px 0 0 99px;
  background: var(--muted);
  content: "";
}

.iphone::before {
  top: 24%;
  height: 2.1rem;
}

.iphone::after {
  top: 35%;
  height: 3rem;
}

.iphone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 34px;
  background: var(--dark);
}

.iphone__screen::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, var(--dark), transparent 24%, transparent 58%, var(--dark)),
    radial-gradient(circle at 30% 20%, var(--border), transparent 12rem);
  content: "";
  pointer-events: none;
}

.iphone__island {
  position: absolute;
  z-index: 5;
  top: 1rem;
  left: 50%;
  width: 34%;
  height: 3.8%;
  min-height: 1.15rem;
  border-radius: var(--radius-pill);
  background: #000000;
  transform: translateX(-50%);
}

.iphone__island::before {
  position: absolute;
  top: 50%;
  left: 13%;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  transform: translateY(-50%);
}

.iphone__island::after {
  position: absolute;
  top: 50%;
  right: 17%;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--border);
  box-shadow: 0 0 0 2px var(--bg);
  content: "";
  transform: translateY(-50%);
}

.iphone__home {
  position: absolute;
  z-index: 5;
  bottom: 1.15rem;
  left: 50%;
  width: 34%;
  height: 0.28rem;
  border-radius: var(--radius-pill);
  background: var(--on-dark);
  transform: translateX(-50%);
}

.reel-video,
.poster-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.reel-video {
  z-index: 1;
  object-fit: cover;
  background: transparent;
}

.poster-fallback {
  z-index: 0;
  display: grid;
  place-content: center;
  padding: 2rem 4.2rem 2rem 1.25rem;
  color: var(--on-dark);
  text-align: center;
}

.poster-fallback span {
  color: var(--accent-2);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.poster-fallback strong {
  display: block;
  max-width: 8.75rem;
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.reel-ui {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem 0.8rem 2.3rem;
  color: var(--on-dark);
  text-shadow: 0 2px 12px var(--dark);
}

.reel-ui__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.25rem 0.15rem 0;
  font-size: 0.72rem;
}

.reel-ui__top strong {
  font-size: 1.05rem;
}

.reel-ui__actions {
  position: absolute;
  right: 0.72rem;
  bottom: 7.6rem;
  display: grid;
  justify-items: center;
  gap: 0.28rem;
  font-size: 0.68rem;
}

.reel-icon {
  width: 1.35rem;
  height: 1.35rem;
  background: var(--on-dark);
  filter: drop-shadow(0 2px 8px var(--bg));
}

.reel-icon--heart {
  background: var(--accent);
  clip-path: path("M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.08C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z");
  transform: scale(0.9);
}

.reel-icon--comment {
  border: 2px solid var(--on-dark);
  border-radius: 50%;
  background: transparent;
}

.reel-icon--comment::after {
  display: block;
  width: 0.45rem;
  height: 0.45rem;
  margin: 0.86rem 0 0 0.78rem;
  background: var(--on-dark);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  content: "";
}

.reel-icon--share {
  background: transparent;
  border: solid var(--on-dark);
  border-width: 0 2px 2px 0;
  transform: rotate(-45deg) scale(0.82);
}

.reel-icon--share::before {
  position: absolute;
  width: 0.9rem;
  height: 2px;
  margin: 0.87rem 0 0 -0.2rem;
  background: var(--on-dark);
  content: "";
}

.reel-ui__caption {
  display: grid;
  max-width: calc(100% - 3rem);
  gap: 0.3rem;
  align-self: start;
  margin-top: auto;
  font-size: 0.75rem;
  line-height: 1.25;
}

.reel-ui__caption strong {
  font-size: 0.83rem;
}

.reel-carousel__cta {
  position: relative;
  z-index: 6;
  display: flex;
  width: fit-content;
  margin: 0.5rem auto 0;
}

.feature-grid,
.format-columns,
.stats-grid {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.feature-grid article,
.format-columns > div,
.stats-grid article {
  min-height: 190px;
  border: 1px solid transparent;
  background: var(--surface);
  padding: 28px;
  transition:
    transform var(--motion-base) var(--motion-ease),
    border-color var(--motion-base) var(--motion-ease);
}

.feature-grid span,
.stats-grid span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

.feature-grid h3,
.format-columns h3 {
  margin-top: 26px;
}

.feature-grid p,
.format-columns p {
  margin: 14px 0 0;
  color: var(--muted);
}

.team-grid {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 24px);
}

.team-card {
  display: grid;
  align-content: start;
  gap: clamp(12px, 2vw, 20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(12px, 2vw, 22px);
  transition:
    transform var(--motion-base) var(--motion-ease),
    border-color var(--motion-base) var(--motion-ease);
}

.team-card p:not(.label) {
  color: var(--muted);
}

.team-card a,
.team-card span {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 14px;
}

.portrait {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--soft);
  aspect-ratio: 4 / 3;
}

.portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-section {
  display: grid;
  min-height: 100svh;
  align-content: center;
  padding-top: clamp(40px, 7vh, 72px);
  padding-bottom: clamp(40px, 7vh, 72px);
}

.experience-section {
  background: var(--bg);
}

.experience-band {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.experience-row {
  display: grid;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.experience-row > span {
  width: fit-content;
  color: var(--coral-text);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.experience-row h3 {
  font-size: 23px;
}

.experience-row p {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--muted);
}

.process-section {
  padding: clamp(84px, 10vw, 128px) 20px;
}

.process-list {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
}

.process-list li {
  position: relative;
  padding: 22px 0 22px 44px;
  border-bottom: 1px solid var(--border);
  font-size: 22px;
}

.process-list li::before {
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
  content: counter(list-item, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 13px;
}

.example-list {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  border-top: 1px solid var(--rule);
}

.example-list article {
  position: relative;
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  padding: 0 18px;
}

.example-list article::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 50%, var(--accent), transparent 34%),
    radial-gradient(circle at 88% 50%, var(--accent-2), transparent 28%),
    var(--surface);
  content: "";
  opacity: 0.16;
  transform: scale(1);
  transition: transform var(--motion-base) var(--motion-ease);
}

.example-list article > * {
  position: relative;
  z-index: 1;
}

.example-list span {
  font-family: var(--font-display);
  font-size: 24px;
}

.example-list small {
  color: var(--muted);
}

.text-link {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: transform var(--motion-base) var(--motion-ease);
}

.reviews-section {
  overflow: hidden;
}

.review-track {
  display: flex;
  width: 100%;
  gap: 16px;
  overflow-x: auto;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2)) 8px;
  scroll-padding-inline: max(20px, calc((100vw - var(--max)) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  position: relative;
  flex: 0 0 min(82vw, 360px);
  min-height: 290px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 26px;
  scroll-snap-align: start;
  transition:
    transform var(--motion-base) var(--motion-ease),
    border-color var(--motion-base) var(--motion-ease);
}

.review-card::before {
  position: absolute;
  top: -34px;
  right: 18px;
  color: var(--border);
  content: "“";
  font-family: Georgia, serif;
  font-size: 150px;
  line-height: 1;
  pointer-events: none;
}

.review-card__avatar {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.review-card blockquote {
  position: relative;
  z-index: 1;
  min-height: 104px;
  margin: 28px 0 24px;
  color: var(--text);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
}

.review-card p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

[data-reveal] > * {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(10px);
}

[data-reveal].is-visible > * {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity var(--motion-reveal) var(--motion-ease-soft) var(--reveal-delay, 0ms),
    transform var(--motion-reveal) var(--motion-ease-soft) var(--reveal-delay, 0ms),
    filter var(--motion-reveal) var(--motion-ease-soft) var(--reveal-delay, 0ms),
    border-color var(--motion-base) var(--motion-ease);
}

.logo-strip {
  display: flex;
  width: min(var(--max), 100%);
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 34px;
  margin: 0 auto;
  color: var(--ink);
}

.logo-strip span {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 18px;
}

.trust-note {
  margin-top: 32px;
  color: var(--muted);
  text-align: center;
}

.stats-grid {
  border-color: var(--border);
  background: var(--border);
}

.stats-grid article {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  color: var(--text);
}

.stats-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 500;
  line-height: 1;
  transform-origin: left center;
}

.stats-grid span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.stats-intro .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  filter: blur(8px);
  transition:
    opacity 650ms var(--motion-ease-soft),
    transform 650ms var(--motion-ease-soft),
    filter 650ms var(--motion-ease-soft);
  transition-delay: calc(var(--word-index) * 45ms);
}

.stats-section.is-visible .stats-intro .word {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.stat-card {
  opacity: 0;
  transform: translateY(18px);
}

.stats-section.is-visible .stat-card {
  animation: stat-card-rise var(--motion-reveal) var(--motion-ease-soft) var(--stat-delay) both;
}

.stat-value.is-ticking {
  animation: stat-tick var(--motion-fast) var(--motion-ease);
}

.stat-progress {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  height: 2px;
  overflow: hidden;
  background: var(--border);
}

.stat-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
}

.stat-card.is-placeholder .stat-progress__bar,
.stat-card.is-complete .stat-progress__bar {
  transform: scaleX(1);
}

.audience-tags {
  display: flex;
  width: min(var(--max), 100%);
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 auto;
}

.audience-tags span {
  border: 1px solid var(--rule);
  border-radius: var(--radius-pill);
  padding: 12px 18px;
  background: var(--surface);
  font-size: 18px;
}

.faq-list {
  width: min(920px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--rule);
}

details {
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 23px;
  list-style: none;
}

summary::after {
  flex: 0 0 auto;
  color: var(--coral-text);
  content: "+";
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform var(--motion-faq) var(--motion-ease);
}

details[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

summary::-webkit-details-marker {
  display: none;
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--motion-faq) var(--motion-ease);
}

details[open] .faq-content {
  grid-template-rows: 1fr;
}

.faq-content__inner {
  overflow: hidden;
}

details p,
.faq-content p {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    box-shadow: 0 12px 26px rgba(23, 23, 28, 0.24);
    transform: translateY(-2px);
  }

  .feature-grid article:hover,
  .format-columns > div:hover,
  .team-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
  }

  .example-list article:hover::before {
    transform: scale(1.03);
  }

  .example-list article:hover .text-link {
    transform: translateY(-2px);
  }

  .review-card:hover {
    border-color: var(--accent-2);
    transform: translateY(-5px);
  }
}

.final-cta {
  display: grid;
  gap: 28px;
  align-items: center;
}

.final-cta h2 {
  max-width: 760px;
}

.site-footer {
  background: var(--dark);
  color: var(--on-dark);
}

.site-footer strong {
  display: block;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
}

.site-footer p {
  margin: 8px auto;
  color: var(--muted-on-dark);
}

.booking-page {
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 119, 89, 0.14), transparent 30%),
    radial-gradient(circle at 12% 86%, rgba(0, 60, 51, 0.12), transparent 32%),
    var(--bg);
}

.booking-main {
  display: grid;
  min-height: calc(100svh - 77px);
  place-items: center;
  padding: clamp(2rem, 6vw, 5rem) 20px;
}

.booking-shell {
  display: grid;
  width: min(var(--max), 100%);
  gap: 32px;
  align-items: start;
}

.booking-copy {
  max-width: 620px;
}

.booking-copy p:not(.label) {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
}

.booking-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(7, 24, 41, 0.12);
  padding: clamp(1.1rem, 4vw, 2rem);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: var(--focus);
  outline: 3px solid rgba(76, 110, 230, 0.18);
}

.booking-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

@keyframes reel-drift {
  from {
    transform: translateX(var(--loop-start, 0px));
  }

  to {
    transform: translateX(var(--loop-end, -50%));
  }
}

@keyframes hero-glow-drift {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1.12);
  }

  50% {
    transform: translate3d(2%, 1%, 0) scale(1.18);
  }

  100% {
    transform: translate3d(-2%, -1%, 0) scale(1.12);
  }
}

@keyframes hero-noise-shift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-18px, 12px, 0);
  }
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes hero-proof-unfold {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) translate3d(0, 34px, 0) rotate(0deg) scale(0.78);
  }

  36% {
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(0, 0, 0) rotate(0deg) scale(0.9);
  }

  68% {
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(calc(var(--card-x, 0px) * 0.72), calc(var(--card-y, 0px) * 0.72), 0)
      rotate(calc(var(--card-r, 0deg) * 0.72)) scale(calc(0.94 + (var(--card-s, 1) - 1) * 0.55));
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(var(--card-x, 0px), var(--card-y, 0px), 0)
      rotate(var(--card-r, 0deg)) scale(var(--card-s, 1));
  }
}

@keyframes hero-tag-pop {
  from {
    opacity: 0;
    transform: translateY(12px) rotate(var(--tag-r)) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(var(--tag-r)) scale(1);
  }
}

@keyframes stat-tick {
  0% {
    transform: scale(1);
  }

  55% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes stat-card-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (min-width: 640px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav-links {
    display: flex;
  }

  h1 {
    font-size: 72px;
  }

  .hero h1 {
    font-size: 54px;
    line-height: 0.98;
  }

  h2 {
    font-size: 54px;
  }

  .hero-media {
    grid-template-columns: minmax(0, 1.6fr) minmax(220px, 0.8fr);
  }

  .hero-proof {
    min-height: clamp(170px, 21vw, 210px);
  }

  .hero-proof__stage {
    height: clamp(165px, 20vw, 200px);
  }

  .proof-card {
    width: clamp(4.5rem, 8.5vw, 6.8rem);
  }

  .feature-grid,
  .format-columns,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .experience-row {
    grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
    align-items: start;
    gap: 32px;
  }

  .final-cta {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 960px) {
  .team-card {
    grid-template-columns: minmax(170px, 0.72fr) minmax(0, 1fr);
    align-items: center;
  }

  .portrait {
    aspect-ratio: 4 / 5;
  }
}

@media (min-width: 960px) {
  .hero__inner {
    align-items: center;
  }

  .hero__copy {
    max-width: 930px;
  }

  .hero h1 {
    font-size: 50px;
    line-height: 0.98;
  }

  h1 {
    font-size: 88px;
  }

  h2 {
    font-size: 62px;
  }

  .feature-grid,
  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .format-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .booking-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  }

  .review-track {
    display: grid;
    width: min(var(--max), 100%);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    padding: 0;
  }

  .review-card {
    min-width: 0;
  }

  .reel-carousel {
    --phone-w: clamp(15.5rem, 18vw, 22rem);
  }
}

@media (min-width: 1280px) {
  h1 {
    font-size: 96px;
  }
}

@media (max-width: 639px) {
  .announcement {
    flex-direction: column;
    gap: 2px;
    min-height: auto;
    padding: 7px 12px;
  }

  .announcement span {
    display: none;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding-right: 12px;
    padding-left: 12px;
    overflow: hidden;
  }

  .brand {
    min-width: 0;
    overflow: hidden;
    font-size: 17px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Auf kleinen Screens vermeidet der Hero-CTA im Header angeschnittene Buttons. */
  .site-header .button {
    display: none;
  }

  h1 {
    font-size: clamp(1.65rem, 6.9vw, 1.92rem);
    line-height: 0.93;
  }

  h2 {
    font-size: 35px;
  }

  .team-section {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .team-section .section-heading {
    margin-bottom: 16px;
  }

  .team-section h2 {
    font-size: 27px;
  }

  .team-grid {
    gap: 10px;
  }

  .team-card {
    gap: 10px;
    padding: 10px;
  }

  .team-card .label {
    margin-bottom: 6px;
    font-size: 9px;
  }

  .team-card h3 {
    font-size: 17px;
    line-height: 1;
  }

  .team-card p:not(.label) {
    display: -webkit-box;
    margin: 8px 0 0;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .team-card a,
  .team-card span {
    margin-top: 7px;
    overflow-wrap: anywhere;
    font-size: 10px;
    line-height: 1.2;
  }

  .portrait {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
  }

  .hero {
    min-height: 200svh;
  }

  .hero__inner {
    gap: 8px;
    padding: 1.2rem 0.8rem;
  }

  .hero__copy {
    top: clamp(4rem, 9vh, 4.8rem);
    width: min(348px, calc(100% - 0.75rem));
  }

  .hero__copy .label {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .hero__support {
    bottom: clamp(4.3rem, 9.5vh, 5rem);
    width: min(320px, calc(100% - 2rem));
  }

  .hero__support > p {
    margin-top: 8px;
    max-width: 260px;
    font-size: 13.2px;
    line-height: 1.27;
  }

  .hero__actions {
    width: 100%;
    gap: 10px;
    justify-content: center;
    margin-top: 9px;
  }

  .hero__actions .button {
    width: min(100%, 252px);
    min-height: 40px;
    padding: 9px 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  .hero-proof {
    --proof-top: 52%;
    width: min(100%, 312px);
    min-height: 148px;
    margin-top: -0.55rem;
  }

  .hero-proof__stage {
    height: 148px;
  }

  .proof-card {
    width: clamp(3.75rem, 17.8vw, 4.3rem);
    border-radius: 12px;
    box-shadow: 0 14px 26px rgba(7, 24, 41, 0.14);
  }

  .hero-proof__tag {
    top: 8%;
    padding: 0.36rem 0.58rem;
    font-size: 9px;
  }

  .hero-proof__tag--left {
    left: 2.15rem;
  }

  .hero-proof__tag--right {
    right: 2.15rem;
  }

  .hero-proof__tag--handle-left {
    top: auto;
    bottom: -4%;
    left: 0.85rem;
  }

  .hero-proof__tag--handle-right {
    top: auto;
    bottom: -4%;
    right: 0.85rem;
  }

  .hero-sales {
    top: clamp(4.35rem, 8.5vh, 5rem);
    left: 0.8rem;
    width: calc(100% - 1.6rem);
    justify-items: center;
    gap: 9px;
    text-align: center;
  }

  .hero-sales h2 {
    max-width: 318px;
    font-size: clamp(1.55rem, 7.45vw, 2.08rem);
    line-height: 0.93;
  }

  .hero-sales p:not(.label) {
    max-width: 300px;
    font-size: 13.5px;
    line-height: 1.28;
  }

  .hero-sales__actions {
    width: 100%;
    justify-content: center;
    gap: 9px;
    margin-top: 8px;
  }

  .hero-sales__actions .button {
    min-height: 40px;
    padding-inline: 16px;
    font-size: 13px;
  }

  .reel-carousel {
    --phone-w: min(74vw, 18rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0ms !important;
  }

  .reel-carousel__track {
    animation: none;
    transform: translateX(var(--loop-start, 0px));
  }

  .hero-bg__glow,
  .hero-bg__noise,
  h1,
  .hero__copy .label,
  .hero__support > p,
  .hero__support .hero__actions,
  .proof-card,
  .hero-proof__tag,
  .hero-sales,
  .stats-intro .word,
  [data-reveal] > *,
  .stat-card,
  .stat-value {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero-proof__tag {
    opacity: 1;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-sales {
    position: static;
    opacity: 1;
    pointer-events: auto;
  }

  .stat-progress__bar {
    transform: scaleX(1);
  }

  .reel-carousel__track.is-ready .phone-card,
  .button {
    transition: none;
  }
}
