/* ============================================================
   SZUM FIORDU — LANDING
   Brutalist / dark / lime — no build step
   ============================================================ */

:root {
  --black: #0a0a0a;
  --black-2: #111111;
  --lime: #e2fc07;
  --lime-bright: #e2fc07;
  --lime-neon: #e2fc07;
  --white: #f2f2f0;
  --gray: #8a8a86;
  --red: #ff3b30;
  --border: 2px solid var(--white);
  --border-dim: 1px solid rgba(242, 242, 240, 0.18);
  --pad: clamp(20px, 4vw, 64px);
  --font-display: 'Archivo', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

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

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--lime); color: var(--black); }

.mono {
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 1vw, 0.8rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============ NOISE ============ */
.noise {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: noiseShift 0.6s steps(4) infinite;
}
@keyframes noiseShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1%); }
  50% { transform: translate(1%, -2%); }
  75% { transform: translate(-1%, 2%); }
  100% { transform: translate(0, 0); }
}

/* ============ CURSOR ============ */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor--ring {
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--lime);
  transition: width 0.25s, height 0.25s, background 0.25s, opacity 0.25s;
}
.cursor--ring.is-hover {
  width: 72px; height: 72px;
  background: rgba(226, 252, 7, 0.12);
}
@media (hover: none), (max-width: 900px) {
  .cursor { display: none; }
}

/* ============ PRELOADER ============ */
.preloader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: var(--pad);
}
.preloader__word {
  font-family: var(--font-mono);
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  letter-spacing: 0.3em;
  color: var(--gray);
  margin-bottom: 12px;
}
.preloader__count {
  font-weight: 900;
  font-size: clamp(5rem, 18vw, 14rem);
  line-height: 0.9;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.preloader__pct { color: var(--lime); }
.preloader__bar {
  width: 100%; height: 3px;
  background: rgba(242, 242, 240, 0.12);
  margin-top: 28px;
  overflow: hidden;
}
.preloader__bar span {
  display: block; height: 100%;
  width: 0%;
  background: var(--lime);
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--pad);
  border-bottom: var(--border-dim);
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav__logo {
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
  display: inline-block;
}
.nav__logo span { color: var(--lime); }
.nav__links { display: flex; gap: clamp(16px, 3vw, 42px); }
.nav__links a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  position: relative;
  transition: color 0.25s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--black);
  background: var(--lime);
  text-decoration: none;
  padding: 12px 22px;
  border: 2px solid var(--lime);
  transition: background 0.25s, color 0.25s;
  display: inline-block;
  white-space: nowrap;
}
.nav__cta:hover { background: transparent; color: var(--lime); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__login {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  background: transparent;
  text-decoration: none;
  padding: 12px 22px;
  border: 2px solid rgba(242, 242, 240, 0.35);
  transition: border-color 0.25s, color 0.25s;
  display: inline-block;
  white-space: nowrap;
}
.nav__login:hover { border-color: var(--lime); color: var(--lime); }
.nav__burger {
  display: none;
  background: none; border: none;
  width: 44px; height: 44px;
  cursor: pointer;
  position: relative;
  z-index: 8600;
}
.nav__burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  margin: 6px auto;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ============ MOBILE MENU ============ */
.mmenu {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 8500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: var(--pad);
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}
.mmenu.is-open { transform: translateY(0); }
.mmenu a {
  font-weight: 900;
  font-size: clamp(2.4rem, 10vw, 4rem);
  line-height: 1.1;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.mmenu a:hover { color: var(--lime); }
.mmenu__cta { color: var(--lime) !important; }

/* ============ SECTION HEAD ============ */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0;
  border-top: var(--border);
  color: var(--gray);
  margin-bottom: clamp(32px, 6vw, 80px);
}
.section-head span:first-child { color: var(--lime); font-weight: 700; }
.section-head--abs {
  position: absolute;
  top: 0; left: var(--pad); right: var(--pad);
  z-index: 5;
  margin-bottom: 0;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  border: var(--border);
  padding: 18px 32px;
  position: relative;
  overflow: hidden;
  transition: color 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  background: transparent;
  isolation: isolate;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--lime);
  transform: translateY(101%);
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}
.btn:hover { color: var(--black); border-color: var(--lime); }
.btn:hover::before { transform: translateY(0); }
.btn--fill {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--black);
}
.btn--fill::before { background: var(--white); }
.btn__arrow { transition: transform 0.3s; }
.btn:hover .btn__arrow { transform: translateX(6px); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 96px var(--pad) clamp(64px, 8vh, 110px);
  position: relative;
}
.hero__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--gray);
  margin-bottom: clamp(16px, 2.5vh, 36px);
  flex-wrap: wrap;
}
.hero__title {
  font-weight: 900;
  font-size: clamp(2.6rem, 10.5vw, 10.5rem);
  line-height: 1.22;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin-bottom: clamp(20px, 3vh, 40px);
}
.hero__line { display: block; clip-path: inset(0 -1em 0 -1em); padding: 0.03em 0; margin: -0.03em 0; }
.hero__line--accent { color: var(--lime); font-style: italic; }
.hero__line--outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}
.hero__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}
.hero__sub {
  max-width: 520px;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: #c9c9c5;
}
.hero__sub em { color: var(--lime); font-style: italic; font-weight: 600; }
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray);
  pointer-events: none;
}
.hero__scroll-line {
  display: block;
  width: 60px; height: 2px;
  background: var(--lime);
  transform-origin: left;
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleX(0.3); }
  50% { transform: scaleX(1); }
}

/* ============ MARQUEE ============ */
.marquee {
  border-top: var(--border);
  border-bottom: var(--border);
  padding: clamp(14px, 2vw, 26px) 0;
  overflow: hidden;
  background: var(--lime);
}
.marquee__track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}
.marquee__track span {
  font-weight: 900;
  font-size: clamp(1.4rem, 3.4vw, 3rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--black);
  flex-shrink: 0;
}

/* ============ MANIFEST ============ */
.manifest { padding: clamp(90px, 14vh, 180px) var(--pad); }
.manifest__text {
  font-weight: 600;
  font-size: clamp(1.6rem, 4.2vw, 3.6rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 1200px;
}
.manifest__text .w { color: rgba(242, 242, 240, 0.22); transition: color 0.1s linear; }
.manifest__text .w.is-on { color: var(--white); }

/* ============ SPLIT ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 var(--pad) clamp(90px, 14vh, 180px);
  border: var(--border);
}
.split__col { padding: clamp(32px, 5vw, 72px); }
.split__col--bad { border-right: var(--border); }
.split__col--good { background: rgba(226, 252, 7, 0.06); }
.split__tag {
  color: var(--gray);
  margin-bottom: 28px;
}
.split__col--good .split__tag { color: var(--lime); }
.split__title {
  font-weight: 900;
  font-size: clamp(2.2rem, 5.5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.split__col--bad .split__title {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--red);
}
.split__col--good .split__title { color: var(--lime); }
.split__list { list-style: none; }
.split__list li {
  position: relative;
  padding: 18px 0 18px 44px;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  color: #d5d5d1;
  border-bottom: var(--border-dim);
}
.split__list li::before {
  position: absolute;
  left: 0; top: 16px;
  font-weight: 900;
  font-size: 1.4rem;
}
.split__col--bad .split__list li::before { content: '✕'; color: var(--red); }
.split__col--good .split__list li::before { content: '✓'; color: var(--lime); }

/* ============ HORIZONTAL MODULES ============ */
.hwrap {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.htrack {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: max-content;
  padding: 40px var(--pad) 80px;
}
.hcard {
  width: clamp(300px, 34vw, 460px);
  min-height: clamp(420px, 60vh, 560px);
  border: var(--border);
  border-left: none;
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  background: var(--black);
  position: relative;
  transition: background 0.3s;
}
.hcard:first-child { border-left: var(--border); }
.hcard:hover { background: var(--black-2); }
.hcard__num {
  font-size: clamp(2.6rem, 5vw, 4.5rem) !important;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--lime);
  line-height: 1;
  margin-bottom: auto;
}
.hcard h3 {
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.02em;
  margin: 24px 0 16px;
}
.hcard p { color: #b9b9b5; font-size: clamp(0.9rem, 1.1vw, 1.05rem); }
.hcard__foot {
  margin-top: auto;
  padding-top: 24px;
  color: var(--lime);
}
.hcard--intro {
  background: var(--lime);
  justify-content: center;
}
.hcard--intro:hover { background: var(--lime-bright); }
.hcard--intro h2 {
  font-weight: 900;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 24px;
}
.hcard--intro em { font-style: italic; }
.hcard--intro p { color: rgba(10, 10, 10, 0.7); font-weight: 700; }
.hcard--cta {
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
}
.hcard--cta h3 { font-size: clamp(2.4rem, 4vw, 3.6rem); margin: 0; }

/* ============ STATS ============ */
.stats { padding: 0 var(--pad) clamp(90px, 14vh, 180px); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: var(--border);
}
.stat {
  padding: clamp(28px, 3.5vw, 56px) clamp(20px, 2.5vw, 40px);
  border-right: var(--border);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.stat:last-child { border-right: none; }
.stat__num {
  font-weight: 900;
  font-size: clamp(3.4rem, 8vw, 7.5rem);
  line-height: 0.9;
  color: var(--lime);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}
.stat__label { color: var(--gray); }

/* ============ QUOTE ============ */
.quote { padding: 0 var(--pad) clamp(90px, 14vh, 180px); }
.quote blockquote {
  border-left: 6px solid var(--lime);
  padding: clamp(12px, 2vw, 24px) 0 clamp(12px, 2vw, 24px) clamp(28px, 5vw, 72px);
  max-width: 1100px;
}
.quote p {
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.9rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}
.quote .w { color: rgba(242, 242, 240, 0.22); transition: color 0.1s linear; }
.quote .w.is-on { color: var(--white); }
.quote cite { color: var(--lime); font-style: normal; }

/* ============ PRICING ============ */
.pricing { padding: 0 var(--pad) clamp(90px, 14vh, 180px); position: relative; }
.pricing::before {
  content: '';
  position: absolute;
  top: 6%; left: 50%;
  width: min(1100px, 92vw); height: 560px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(226, 252, 7, 0.16) 0%, rgba(226, 252, 7, 0) 68%);
  pointer-events: none;
}
.pricing__title {
  font-weight: 900;
  font-size: clamp(2.4rem, 7.5vw, 7rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: clamp(40px, 6vw, 80px);
  position: relative;
}
.pricing__title span { display: block; overflow: hidden; padding: 0.14em 0; margin: -0.14em 0; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.price {
  border: 2px solid rgba(242, 242, 240, 0.14);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  background: var(--black-2);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1), border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.price::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--lime-neon);
  transform: scaleX(0.16);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}
.price:hover::before { transform: scaleX(1); }
.price:hover {
  transform: translate(-6px, -6px);
  border-color: var(--lime-neon);
  box-shadow: 8px 8px 0 var(--lime-neon);
}
.price__num {
  position: absolute;
  top: 22px; right: 24px;
  font-weight: 700;
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(226, 252, 7, 0.4);
  line-height: 1;
  user-select: none;
}
.price h3 { color: var(--white); font-weight: 700; letter-spacing: 0.02em; padding-right: 60px; }
.price__amount {
  font-weight: 900;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--lime-neon);
}
.price__amount span { font-size: 0.38em; color: var(--gray); font-weight: 700; letter-spacing: 0.04em; margin-left: 6px; }
.price ul { list-style: none; flex-grow: 1; }
.price ul li {
  padding: 12px 0 12px 28px;
  position: relative;
  border-bottom: 1px solid rgba(242, 242, 240, 0.1);
  font-size: 0.98rem;
  color: #cfcfcb;
}
.price ul li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--lime-neon);
  font-weight: 700;
}
.price .btn { justify-content: space-between; }

/* pierwsza karta (Starter + Moduł 1) — naturalny start, pełny neon blok */
.price--start {
  background: var(--lime-neon);
  border-color: var(--lime-neon);
}
.price--start::before { display: none; }
.price--start:hover { border-color: var(--black); box-shadow: 8px 8px 0 var(--black); }
.price--start h3 { color: rgba(10, 10, 10, 0.62); }
.price--start .price__num { -webkit-text-stroke-color: rgba(10, 10, 10, 0.3); }
.price--start .price__amount { color: var(--black); }
.price--start .price__amount span { color: rgba(10, 10, 10, 0.55); }
.price--start ul li { color: rgba(10, 10, 10, 0.78); border-bottom-color: rgba(10, 10, 10, 0.16); }
.price--start ul li::before { color: var(--black); }
.price--start .btn { background: var(--black); border-color: var(--black); color: var(--lime-neon); }
.price--start .btn::before { background: var(--white); }
.price--start .btn:hover { color: var(--black); border-color: var(--black); }

/* ============ FAQ ============ */
.faq { padding: 0 var(--pad) clamp(90px, 14vh, 180px); }
.faq__list { border-top: var(--border); }
.faq__item { border-bottom: var(--border); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: clamp(22px, 3vw, 36px) 0;
  font-weight: 900;
  font-size: clamp(1.15rem, 2.4vw, 2rem);
  letter-spacing: -0.015em;
  transition: color 0.25s, padding-left 0.3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--lime); padding-left: 12px; }
.faq__x {
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--lime);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}
.faq__item[open] .faq__x { transform: rotate(45deg); }
.faq__item p {
  padding: 0 0 clamp(22px, 3vw, 36px);
  max-width: 820px;
  color: #c1c1bd;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
}

/* ============ CTA ============ */
.cta {
  padding: clamp(90px, 16vh, 200px) var(--pad);
  text-align: center;
  border-top: var(--border);
}
.cta__link { text-decoration: none; display: inline-block; }
.cta__big {
  display: block;
  overflow: hidden;
  padding: 0.1em 0;
  margin: -0.1em 0;
  font-weight: 900;
  font-size: clamp(3.4rem, 15vw, 15rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  transition: color 0.4s, -webkit-text-stroke-color 0.4s;
}
.cta__big--accent {
  color: var(--lime);
  -webkit-text-stroke: 2px var(--lime);
  font-style: italic;
}
.cta__link:hover .cta__big { color: var(--white); }
.cta__link:hover .cta__big--accent { color: var(--black); -webkit-text-stroke-color: var(--lime); background: var(--lime); }
.cta p { margin-top: 40px; color: var(--gray); }

/* ============ FOOTER ============ */
.footer {
  border-top: var(--border);
  padding: clamp(40px, 6vw, 72px) var(--pad) 0;
  overflow: hidden;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.footer__links { display: flex; flex-direction: column; gap: 14px; }
.footer__links a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.25s;
}
.footer__links a:hover { color: var(--lime); }
.footer__copy { color: #55554f; }
.footer__giant {
  font-weight: 900;
  font-size: clamp(3rem, 12.5vw, 13rem);
  line-height: 0.78;
  letter-spacing: -0.04em;
  text-align: center;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(226, 252, 7, 0.4);
  transform: translateY(18%);
  user-select: none;
}

/* ============ SPLIT/REVEAL PRIMITIVES ============ */
[data-split] .char {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}
[data-split] .word { display: inline-block; clip-path: inset(0 -1em 0 -1em); vertical-align: top; padding: 0.16em 0; margin: -0.16em 0; white-space: nowrap; }
html.no-js [data-split] .char,
html.reduced [data-split] .char { transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: var(--border); }
  .pricing__grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
}

@media (max-width: 900px) {
  .nav__links, .nav__cta, .nav__actions { display: none; }
  .nav__burger { display: block; }
  .split { grid-template-columns: 1fr; }
  .split__col--bad { border-right: none; border-bottom: var(--border); }
  /* horizontal section becomes vertical native scroll on mobile */
  .htrack {
    width: auto;
    flex-direction: column;
    padding: 40px var(--pad) 60px;
  }
  .hcard {
    width: 100%;
    min-height: auto;
    border: var(--border);
    border-top: none;
  }
  .hcard:first-child { border-top: var(--border); }
  .hcard__num { margin-bottom: 8px; }
  /* bottom-packing (justify-content: flex-end) left a dead gap above the
     content on tall/short phone ratios — pack the eyebrow/title/subtitle/
     button group to the top instead, tight natural margins, nothing
     stretched. */
  .hero {
    justify-content: flex-start;
  }
  /* Drop position:relative here on mobile so that .hero (min-height:100svh)
     becomes the offset parent for .hero__scroll below. */
  .hero__bottom { gap: 18px; position: static; }
  /* Anchor the SCROLL hint to the bottom of the .hero box. .hero is
     min-height:100svh — the SMALL viewport, i.e. the area visible when the
     mobile browser's top+bottom chrome IS shown — so its bottom edge sits
     right above the browser's bottom toolbar on first paint and the hint is
     always in view. position:fixed was the bug: on iOS Safari fixed elements
     anchor to the LARGE (layout) viewport, so bottom:20px sat BEHIND the
     bottom toolbar and stayed hidden until you scrolled. safe-area-inset
     keeps it clear of the home indicator / gesture bar. Desktop untouched. */
  .hero__scroll {
    position: absolute;
    left: 50%;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 20px);
    transform: translateX(-50%);
    z-index: 10;
  }
}

@media (max-width: 640px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: var(--border); }
  .stat:last-child { border-bottom: none; }
  .hero__meta span:last-child { display: none; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .noise { animation: none; }
  .preloader { display: none; }
  [data-split] .char { transform: none; }
  .manifest__text .w, .quote .w { color: inherit; }
}
