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

:root {
  --bg: #ffffff;
  --ink: #0c0c0c;
  --ink-soft: rgba(12, 12, 12, 0.58);
  --line: rgba(12, 12, 12, 0.1);
  --shop: #111111;
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: auto;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.block-intro {
  position: relative;
  /* Enough height for a deliberate scroll beat, not endless emptiness */
  height: 280vh;
}

.block-intro__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--bg);
}

.stage-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 3rem));
  height: min(720px, 86vh);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(1rem, 2.4vh, 1.6rem);
  padding: clamp(1.5rem, 4vh, 3rem) 0 0;
}

.stage-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stage-brand__mark {
  width: 0.65rem;
  height: 0.65rem;
  background: var(--ink);
}

.stage-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 7.4vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 13ch;
  color: var(--ink);
}

.stage-headline .line {
  display: block;
}

.stage-sub {
  max-width: 36rem;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  color: var(--ink-soft);
  font-weight: 500;
}

.stage-visual {
  margin-top: clamp(0.4rem, 1.8vh, 1.25rem);
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  will-change: opacity, transform;
}

.morph {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}

.morph__shop,
.morph__phone {
  position: relative;
  overflow: hidden;
  color: #fff;
  will-change: transform;
}

.morph__shop {
  width: clamp(180px, 28vw, 260px);
  aspect-ratio: 4 / 3;
  padding: 0.85rem;
  border-radius: 18px;
  background: var(--shop);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
  transform: translateX(-12px) rotate(-2deg);
}

.morph__shop-bar {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.morph__shop-bar span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.morph__shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  height: calc(100% - 2.2rem);
}

.morph__shop-grid i {
  display: block;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.morph__shop-tag,
.morph__phone-tag {
  position: absolute;
  left: 0.85rem;
  bottom: 0.7rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
}

.morph__arrow {
  color: var(--ink);
  width: clamp(36px, 6vw, 48px);
  opacity: 0;
  transform: translateX(-10px);
  will-change: opacity, transform;
}

.morph__arrow svg {
  width: 100%;
  height: auto;
  display: block;
}

.morph__phone {
  width: clamp(110px, 16vw, 148px);
  aspect-ratio: 9 / 17;
  padding: 0.55rem;
  border-radius: 22px;
  background: #0a0a0a;
  box-shadow:
    0 0 0 1px #222,
    0 24px 48px rgba(0, 0, 0, 0.22);
  transform: translateX(16px) rotate(4deg) scale(0.92);
  opacity: 0.35;
  will-change: opacity, transform;
}

.morph__phone-notch {
  width: 38%;
  height: 0.35rem;
  margin: 0.25rem auto 0.65rem;
  border-radius: 999px;
  background: #2a2a2a;
}

.morph__phone-screen {
  height: calc(100% - 2.4rem);
  border-radius: 12px;
  background: #161616;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.morph__app-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.55rem;
  background: #ffffff;
}

.morph__app-lines span {
  display: block;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  margin-bottom: 0.35rem;
}

.morph__app-lines span:nth-child(1) {
  width: 78%;
}
.morph__app-lines span:nth-child(2) {
  width: 92%;
}
.morph__app-lines span:nth-child(3) {
  width: 56%;
}

.stage-hint {
  margin-top: auto;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding-bottom: clamp(1.25rem, 3.5vh, 2.25rem);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  pointer-events: none;
}

.stage-hint__chevron {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: chevron-bounce 1.4s var(--ease-out) infinite;
}

@keyframes chevron-bounce {
  0%,
  100% {
    transform: rotate(45deg) translate(-2px, -2px);
    opacity: 0.4;
  }
  50% {
    transform: rotate(45deg) translate(2px, 2px);
    opacity: 1;
  }
}

.stage-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--line);
}

.stage-progress__bar {
  height: 100%;
  width: 0%;
  background: var(--ink);
}

.block-next-spacer {
  height: 35vh;
  background: var(--bg);
}

/* —— Block 2: Why app —— */
.block-why {
  position: relative;
  height: 400vh;
}

.block-why__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.why-inner {
  width: min(1120px, calc(100% - 3rem));
  height: min(760px, 90vh);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.8vh, 1.25rem);
  padding: clamp(1.25rem, 3vh, 2rem) 0;
}

.why-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.why-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 14ch;
}

.why-sub {
  max-width: 34rem;
  font-size: clamp(0.98rem, 1.5vw, 1.15rem);
  color: var(--ink-soft);
  font-weight: 500;
}

.why-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  margin-top: clamp(0.5rem, 2vh, 1.25rem);
  flex: 1;
  min-height: 0;
  align-items: start;
}

.why-path {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}

.why-path__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.why-path--app {
  opacity: 0.28;
  transform: translateY(16px);
  will-change: opacity, transform;
}

.why-device--browser {
  width: 100%;
  max-width: 340px;
}

.why-browser {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fafafa;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.why-browser__chrome {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.7rem;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.why-browser__dots {
  display: flex;
  gap: 0.28rem;
  flex-shrink: 0;
}

.why-browser__dots i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #d0d0d0;
}

.why-browser__url {
  flex: 1;
  min-height: 1.35rem;
  border-radius: 6px;
  background: #f1f1f1;
  padding: 0.2rem 0.55rem;
  font-size: 0.72rem;
  font-family: var(--font-body);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
}

.why-browser__cursor {
  display: inline-block;
  width: 1px;
  height: 0.85em;
  background: var(--ink);
  margin-left: 1px;
  opacity: 0;
}

.why-browser__body {
  position: relative;
  aspect-ratio: 16 / 11;
  background: #fff;
}

.why-browser__home,
.why-browser__loading,
.why-browser__shop,
.why-browser__search {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: none;
}

.why-browser__search {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  background: #fff;
  place-items: unset;
}

.why-search-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.why-search-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.why-search-list span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  background: #f3f3f3;
  opacity: 0.35;
}

.why-search-list span.is-hot {
  opacity: 1;
  background: #ebebeb;
  font-weight: 600;
}

.why-safari-icon {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--ink);
  border-radius: 12px;
}

.why-browser__loading span {
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--line);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.why-browser__shop,
.why-phone__shop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: #111;
  color: #fff;
}

.why-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  width: 4.5rem;
}

.why-mini-grid i {
  display: block;
  aspect-ratio: 1;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.14);
}

.why-browser__shop span,
.why-phone__shop span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.why-device--phone {
  width: min(148px, 42%);
}

.why-phone {
  width: 100%;
  aspect-ratio: 9 / 17;
  border-radius: 22px;
  background: #0a0a0a;
  padding: 0.5rem;
  box-shadow:
    0 0 0 1px #222,
    0 20px 40px rgba(0, 0, 0, 0.18);
}

.why-phone__notch {
  width: 36%;
  height: 0.3rem;
  margin: 0.2rem auto 0.5rem;
  border-radius: 999px;
  background: #2a2a2a;
}

.why-phone__screen {
  position: relative;
  height: calc(100% - 1.2rem);
  border-radius: 12px;
  overflow: hidden;
  background: #f4f4f4;
}

.why-phone__home,
.why-phone__shop {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.why-phone__home {
  opacity: 1;
}

.why-phone__shop {
  opacity: 0;
}

.why-app-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.65rem;
  background: #0c0c0c;
  display: grid;
  place-items: center;
  transform: scale(1);
  will-change: transform;
}

.why-app-icon span {
  width: 0.85rem;
  height: 0.85rem;
  background: #fff;
  border-radius: 2px;
}

.why-app-name {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--ink);
}

.why-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.why-steps li {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(12, 12, 12, 0.28);
  padding-left: 1.1rem;
  position: relative;
  transition: color 0.2s ease;
}

.why-steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: currentColor;
}

.why-steps li.is-active {
  color: var(--ink);
  font-weight: 600;
}

.why-steps li.is-done {
  color: rgba(12, 12, 12, 0.45);
}

@media (max-width: 720px) {
  .why-compare {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-device--phone {
    width: 120px;
  }

  .block-why {
    height: 420vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stage-hint__chevron {
    animation: none;
  }

  .block-intro,
  .block-why,
  .block-example,
  .block-features {
    height: auto;
  }

  .block-intro__sticky,
  .block-why__sticky,
  .block-example__sticky,
  .block-features__sticky {
    position: relative;
    height: auto;
    min-height: 100vh;
  }

  .why-path--app,
  .why-browser__home,
  .why-browser__shop,
  .why-phone__shop,
  .stage-visual,
  .morph__arrow,
  .morph__shop,
  .morph__phone {
    opacity: 1 !important;
    transform: none !important;
  }

  .why-browser__loading,
  .why-browser__search {
    opacity: 0 !important;
  }

  .why-steps li,
  .ex-features li {
    color: var(--ink);
  }

  .ex-screen {
    position: relative !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .ex-screen + .ex-screen {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .stage-inner {
    width: min(100% - 2rem, 1120px);
  }

  .morph__shop {
    width: 150px;
  }

  .morph__phone {
    width: 96px;
  }
}

/* —— Block 3: Recalled example —— */
.block-example {
  position: relative;
  height: 380vh;
}

.block-example__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.ex-inner {
  width: min(1180px, calc(100% - 3rem));
  height: min(820px, 92vh);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(1rem, 2.5vh, 1.75rem) 0;
}

.ex-copy {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 34rem;
}

.ex-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ex-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.2vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.ex-headline span {
  display: inline-block;
}

.ex-sub {
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
  color: var(--ink-soft);
  font-weight: 500;
  max-width: 32rem;
}

.ex-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.ex-features li {
  font-size: 0.95rem;
  color: rgba(12, 12, 12, 0.38);
  padding: 0.7rem 0.85rem;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.ex-features li strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
  color: inherit;
}

.ex-features li.is-active {
  color: var(--ink);
  background: #f7f7f7;
  border-color: var(--line);
}

.ex-more {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.15rem;
}

.ex-more span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: #f3f3f3;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
}

.ex-more span:last-child {
  background: #0c0c0c;
  color: #fff;
  border-color: #0c0c0c;
}

.ex-store {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 14px;
  padding: 0.55rem 0.9rem 0.55rem 0.55rem;
  width: fit-content;
  transition: background 0.2s ease, color 0.2s ease;
}

.ex-store:hover {
  background: var(--ink);
  color: #fff;
}

.ex-store img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: block;
}

.ex-store span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}

.ex-store small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.55;
}

.ex-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  justify-self: center;
}

.ex-phone {
  width: min(300px, 72vw);
  will-change: transform;
}

.ex-phone__bezel {
  position: relative;
  border-radius: 42px;
  background: #0a0a0a;
  padding: 10px;
  box-shadow:
    0 0 0 1px #1a1a1a,
    0 28px 80px rgba(0, 0, 0, 0.22),
    0 8px 24px rgba(0, 0, 0, 0.1);
}

.ex-phone__notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 18px;
  background: #0a0a0a;
  border-radius: 999px;
  z-index: 5;
}

.ex-phone__screens {
  position: relative;
  aspect-ratio: 9 / 19.2;
  border-radius: 32px;
  overflow: hidden;
  background: #fff;
}

.ex-screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  pointer-events: none;
  will-change: opacity, transform;
}

.ex-screen.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.ex-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem 0.25rem;
  font-size: 0.68rem;
  font-weight: 600;
}

.ex-status__icons {
  width: 2.6rem;
  height: 0.55rem;
  border-radius: 2px;
  background: linear-gradient(90deg, #111 40%, #111 40%, #111);
  opacity: 0.85;
  mask: linear-gradient(#000 0 0);
}

.ex-nav {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  padding: 0.35rem 1rem 0.55rem;
}

.ex-nav--back {
  font-size: 0.92rem;
  opacity: 0.85;
}

.ex-nav--chat {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.25rem 0.85rem 0.65rem;
  border-bottom: 1px solid #eee;
}

.ex-nav--chat img {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 6px;
}

.ex-nav--chat strong {
  display: block;
  font-size: 0.82rem;
  line-height: 1.1;
}

.ex-nav--chat small {
  font-size: 0.62rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.ex-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  padding: 0 0.7rem 0.55rem;
}

.ex-cats figure {
  margin: 0;
  text-align: center;
}

.ex-cats img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  background: #f2f2f2;
  display: block;
}

.ex-cat--jacket img {
  object-position: 50% 28%;
}

.ex-cat--pants img {
  object-position: 50% 18%;
}

.ex-cat--set img {
  object-position: 50% 22%;
}

.ex-cat--sport img {
  object-position: 50% 18%;
}

.ex-shot {
  object-fit: cover;
}

.ex-shot--jacket {
  object-position: 50% 30%;
}

.ex-shot--pants {
  object-position: 50% 12%;
}

.ex-shot--set {
  object-position: 50% 20%;
}

.ex-shot--top {
  object-position: 50% 15%;
}

.ex-cats figcaption {
  margin-top: 0.25rem;
  font-size: 0.48rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.15;
}

.ex-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.75rem 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.ex-seg {
  display: flex;
  gap: 0.2rem;
  background: #f1f1f1;
  border-radius: 999px;
  padding: 0.12rem;
  font-size: 0.55rem;
  font-weight: 600;
}

.ex-seg b,
.ex-seg i {
  font-style: normal;
  padding: 0.18rem 0.4rem;
  border-radius: 999px;
}

.ex-seg b {
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.ex-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  padding: 0 0.7rem;
  overflow: hidden;
  flex: 1;
}

.ex-grid article {
  position: relative;
  min-width: 0;
}

.ex-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 6px;
  background: #f2f2f2;
  display: block;
}

.ex-grid h3 {
  margin-top: 0.3rem;
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ex-grid p {
  font-size: 0.58rem;
  color: var(--ink-soft);
}

.ex-badge {
  position: absolute;
  left: 0.35rem;
  top: 0.35rem;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 0.48rem;
  font-weight: 600;
  padding: 0.18rem 0.4rem;
  border-radius: 999px;
}

.ex-tabbar {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #eee;
  padding: 0.4rem 0.2rem 0.55rem;
  font-size: 0.48rem;
  font-weight: 600;
  color: rgba(12, 12, 12, 0.35);
  text-align: center;
}

.ex-tabbar .is-on {
  color: var(--ink);
}

.ex-hero {
  padding: 0 0.75rem;
}

.ex-hero img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
  background: #f2f2f2;
  display: block;
}

.ex-product-meta {
  padding: 0.75rem 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ex-product-meta h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ex-price {
  font-size: 0.85rem;
  font-weight: 600;
}

.ex-price small {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.65rem;
}

.ex-desc {
  font-size: 0.68rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.ex-product-meta button {
  margin-top: 0.45rem;
  border: 0;
  background: #0c0c0c;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  border-radius: 12px;
  padding: 0.75rem 1rem;
}

.ex-orders {
  flex: 1;
  overflow: hidden;
  padding: 0.35rem 0.7rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.ex-order {
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 0.55rem;
  background: #fff;
}

.ex-order__top {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.ex-order__top img {
  width: 3.1rem;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 7px;
  background: #f2f2f2;
  flex-shrink: 0;
}

.ex-order__top h3 {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}

.ex-order__top p {
  font-size: 0.58rem;
  color: var(--ink-soft);
  margin-top: 0.1rem;
}

.ex-order__status {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
}

.ex-order__status--done {
  background: #eaeaea;
  color: #111;
}

.ex-order__status--pack {
  background: #f1f1f1;
  color: #333;
}

.ex-order__track {
  margin-top: 0.5rem;
  padding-top: 0.45rem;
  border-top: 1px solid #f0f0f0;
}

.ex-order__track small {
  display: block;
  font-size: 0.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.15rem;
}

.ex-order__track code {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ex-order__track--pending code {
  color: var(--ink-soft);
  font-weight: 500;
}

.ex-sync {
  flex: 1;
  padding: 0.45rem 0.75rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: #fafafa;
  overflow: hidden;
}

.ex-sync__pair {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  padding: 0.45rem 0.5rem 0.55rem;
}

.ex-sync__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  width: 4.5rem;
}

.ex-sync__node img,
.ex-sync__shopify {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
}

.ex-sync__shopify {
  background: #0c0c0c;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
}

.ex-sync__node span {
  font-size: 0.58rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

.ex-sync__line {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  height: 2px;
  position: relative;
}

.ex-sync__line i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #0c0c0c;
  opacity: 0.25;
}

.ex-sync__card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 0.45rem 0.65rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  opacity: 0.35;
  transform: translateY(8px);
}

.ex-sync__card strong {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
}

.ex-sync__card span {
  font-size: 0.62rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.ex-sync__card.is-on {
  opacity: 1;
  transform: none;
}

.ex-sync__note {
  margin-top: auto;
  font-size: 0.68rem;
  color: var(--ink-soft);
  line-height: 1.35;
  text-align: center;
  padding: 0.35rem 0.25rem 0;
}

.ex-caption {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  min-height: 1.2em;
}



@media (max-width: 860px) {
  .ex-inner {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 92vh;
    align-content: center;
  }

  .ex-copy {
    max-width: none;
    text-align: left;
  }

  .ex-phone {
    width: min(260px, 70vw);
  }

  .block-example {
    height: 420vh;
  }
}


/* —— Block 4: Features —— */
.block-features {
  position: relative;
  height: 720vh;
}

.block-features__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.feat-inner {
  width: min(1120px, calc(100% - 3rem));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.feat-copy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 22rem;
  min-width: 0;
  overflow: hidden;
  z-index: 1;
}

.feat-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feat-index {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}

.feat-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.8vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.feat-text {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.45;
}

.feat-visual {
  position: relative;
  width: min(380px, 100%);
  aspect-ratio: 1.05;
  justify-self: end;
  min-width: 0;
  z-index: 0;
}

.feat-panel {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  pointer-events: none;
  transition: none;
}

.feat-panel.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.feat-dots {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
}

.feat-dots i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: rgba(12, 12, 12, 0.18);
}

.feat-dots i.is-on {
  background: var(--ink);
}

/* Collections */
.fp-collections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: min(320px, 100%);
}

.fp-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.65rem;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
}

.fp-col.is-in {
  opacity: 1;
  transform: none;
}

.fp-col img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  background: #f2f2f2;
}

.fp-col__img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, #e8e8e8, #cfcfcf);
}

.fp-col__img--2 {
  background: linear-gradient(145deg, #ddd, #bdbdbd);
}

.fp-col__img--3 {
  background: linear-gradient(145deg, #f0f0f0, #d4d4d4);
}

.fp-col__img--4 {
  background: linear-gradient(145deg, #e2e2e2, #b8b8b8);
}

.fp-col span {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
}

/* Push */
.fp-phone-mini {
  width: min(220px, 70%);
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  background: #0a0a0a;
  padding: 8px;
  position: relative;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.fp-phone-face {
  height: 100%;
  border-radius: 22px;
  background: linear-gradient(180deg, #f7f7f7, #fff);
}

.fp-push {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 12%;
  z-index: 2;
  display: flex;
  gap: 0.55rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 0.65rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-120%);
  opacity: 0;
}

.fp-push.is-in {
  transform: none;
  opacity: 1;
}

.fp-push img {
  width: 2rem;
  height: 2rem;
  border-radius: 6px;
}

.fp-push__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 6px;
  background: #0c0c0c;
  flex-shrink: 0;
}

.fp-push strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
}

.fp-push span {
  font-size: 0.62rem;
  color: var(--ink-soft);
}

/* Review banner */
.fp-review {
  width: min(300px, 90%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem 1.1rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transform: scale(0.92);
  opacity: 0;
}

.fp-review.is-in {
  transform: none;
  opacity: 1;
}

.fp-review > p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.fp-stars {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.fp-stars i {
  width: 1.15rem;
  height: 1.15rem;
  background: #e8e8e8;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.fp-stars i.is-on {
  background: #0c0c0c;
}

.fp-review-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.fp-review-actions span {
  font-size: 0.75rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.fp-review-actions b {
  font-size: 0.78rem;
  background: #0c0c0c;
  color: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
}

/* Tracking */
.fp-track {
  width: min(320px, 92%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
  opacity: 0;
  transform: translateY(20px);
}

.fp-track.is-in {
  opacity: 1;
  transform: none;
}

.fp-track__row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.fp-track__row img {
  width: 3.4rem;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
  background: #f2f2f2;
}

.fp-track__thumb {
  width: 3.4rem;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  background: linear-gradient(160deg, #ececec, #c8c8c8);
  flex-shrink: 0;
}

.fp-track__row strong {
  display: block;
  font-size: 0.9rem;
}

.fp-track__row span {
  font-size: 0.72rem;
  color: var(--ink-soft);
}

.fp-track__steps {
  display: flex;
  gap: 0.45rem;
  margin: 0.9rem 0 0.7rem;
}

.fp-track__steps i {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: #e6e6e6;
}

.fp-track__steps i.is-on {
  background: #0c0c0c;
}

.fp-track code {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Auth */
.fp-auth {
  width: min(300px, 90%);
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem 1.1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
  opacity: 0;
  transform: scale(0.94);
}

.fp-auth.is-in {
  opacity: 1;
  transform: none;
}

.fp-auth__avatar {
  width: 3.2rem;
  height: 3.2rem;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: #0c0c0c;
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
}

.fp-auth strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.fp-auth > span {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.fp-auth__check {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0;
}

.fp-auth__check.is-in {
  opacity: 1;
}

/* Cart */
.fp-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.fp-cart__bag {
  width: 5.5rem;
  height: 5.5rem;
  border: 2px solid #0c0c0c;
  border-radius: 18px;
  position: relative;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
}

.fp-cart__bag span {
  background: #0c0c0c;
  color: #fff;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  position: absolute;
  top: -0.45rem;
  right: -0.45rem;
  transform: scale(0);
}

.fp-cart__bag span.is-in {
  transform: scale(1);
}

.fp-cart__items {
  display: flex;
  gap: 0.55rem;
}

.fp-cart__items img {
  width: 4rem;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 10px;
  background: #f2f2f2;
  opacity: 0;
  transform: translateY(12px);
}

.fp-cart__items img.is-in {
  opacity: 1;
  transform: none;
}

.fp-cart__item {
  width: 4rem;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  background: linear-gradient(160deg, #ececec, #c8c8c8);
  opacity: 0;
  transform: translateY(12px);
  display: block;
}

.fp-cart__item--2 {
  background: linear-gradient(160deg, #e0e0e0, #b0b0b0);
}

.fp-cart__item.is-in {
  opacity: 1;
  transform: none;
}

/* Checkout */
.fp-checkout {
  width: min(280px, 90%);
  height: 340px;
  background: #f3f3f3;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}

.fp-checkout__sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 18px 18px 0 0;
  padding: 1.1rem 1rem 1.25rem;
  transform: translateY(110%);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.08);
}

.fp-checkout__sheet.is-in {
  transform: none;
}

.fp-checkout__sheet small {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
}

.fp-checkout__sheet strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0.35rem 0 0.75rem;
}

.fp-checkout__line {
  height: 8px;
  border-radius: 999px;
  background: #ececec;
  margin-bottom: 0.45rem;
}

.fp-checkout__line.short {
  width: 55%;
}

.fp-checkout__sheet b {
  display: block;
  margin-top: 0.85rem;
  text-align: center;
  background: #0c0c0c;
  color: #fff;
  border-radius: 12px;
  padding: 0.75rem;
  font-size: 0.85rem;
}

/* Admin / simple Shopify */
.fp-admin {
  width: min(320px, 92%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
  opacity: 0;
  transform: translateY(16px);
}

.fp-admin.is-in {
  opacity: 1;
  transform: none;
}

.fp-admin__bar {
  background: #0c0c0c;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.7rem 0.9rem;
}

.fp-admin__row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.85rem;
  opacity: 0.35;
}

.fp-admin__row.is-on {
  opacity: 1;
}

.fp-admin__row em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.fp-admin p {
  padding: 0.85rem 0.9rem 1rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

@media (max-width: 960px) {
  .feat-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .feat-copy {
    max-width: none;
  }

  .feat-visual {
    width: min(340px, 100%);
    aspect-ratio: 1.1;
    justify-self: center;
  }

  .block-features {
    height: 800vh;
  }
}

/* —— Block 5: Offer CTA —— */
.block-offer {
  padding: clamp(4rem, 12vh, 7rem) 0;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.offer-inner {
  width: min(720px, calc(100% - 3rem));
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.offer-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.offer-sub {
  max-width: 34rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink-soft);
  font-weight: 500;
}

.offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 0.9rem 1.6rem;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 14px;
  border: 1px solid var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}

.offer-cta:hover {
  background: #fff;
  color: var(--ink);
}

.offer-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* —— SEO: Ablauf + FAQ —— */
.block-seo {
  padding: clamp(3.5rem, 10vh, 6rem) 0;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.seo-inner {
  width: min(720px, calc(100% - 3rem));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.seo-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.seo-lead {
  max-width: 38rem;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.55;
}

.seo-body {
  max-width: 40rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.seo-body strong,
.seo-lead strong {
  color: var(--ink);
  font-weight: 600;
}

.seo-topics {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
}

.seo-topics li {
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
}

.seo-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.seo-list li {
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.seo-list strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
}

.seo-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.seo-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  width: fit-content;
  padding-bottom: 0.1rem;
}

.seo-links a:hover {
  opacity: 0.7;
}

.seo-page h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0.35rem 0 1rem;
}

.seo-page h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  letter-spacing: -0.02em;
  margin: 1.75rem 0 0.65rem;
}

.seo-page p {
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 0.98rem;
  margin: 0 0 0.85rem;
}

.seo-page .seo-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.15rem);
  margin-bottom: 1.25rem;
}

.seo-page .offer-cta {
  margin: 1.5rem 0 0.5rem;
  align-self: flex-start;
}

.seo-page .seo-steps {
  margin: 0.5rem 0 1rem;
}

.seo-page .seo-links {
  margin-top: 2rem;
}

.seo-steps {
  list-style: none;
  margin: 0.75rem 0 0.5rem;
  padding: 0;
  display: grid;
  gap: 1rem;
  counter-reset: seo-step;
}

.seo-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
  align-items: start;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  counter-increment: seo-step;
}

.seo-steps li::before {
  content: counter(seo-step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  grid-row: 1 / span 2;
  padding-top: 0.15rem;
}

.seo-steps strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.seo-steps span {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.45;
}

.seo-faq-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  letter-spacing: -0.02em;
  margin-top: 1.5rem;
}

.seo-faq {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.seo-faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.95rem 0;
}

.seo-faq summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.seo-faq summary::-webkit-details-marker {
  display: none;
}

.seo-faq summary::after {
  content: "+";
  font-weight: 700;
  flex-shrink: 0;
}

.seo-faq details[open] summary::after {
  content: "–";
}

.seo-faq p {
  margin: 0.75rem 0 0.15rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 40rem;
}

/* —— Offer form page —— */
.offer-page {
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
}

.offer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(720px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1.25rem 0;
}

.offer-back,
.offer-brand {
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
}

.offer-brand {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.offer-main {
  width: min(720px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 0.5rem 0 4rem;
}

.offer-intro h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
}

.offer-intro > p {
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 1.25rem;
  max-width: 36rem;
}

.offer-progress {
  height: 3px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.55rem;
}

.offer-progress__bar {
  height: 100%;
  width: 20%;
  background: var(--ink);
}

.offer-step-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.offer-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offer-step {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1.15rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.offer-step > legend {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 0 0.25rem;
  margin-bottom: 0.25rem;
}

.offer-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.offer-form input[type="text"],
.offer-form input[type="email"],
.offer-form input[type="tel"],
.offer-form input[type="url"],
.offer-form select,
.offer-form textarea {
  font: inherit;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}

.offer-form textarea {
  resize: vertical;
  min-height: 5rem;
}

.offer-hint {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.offer-choices {
  border: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.offer-choices__title {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.offer-check {
  flex-direction: row !important;
  align-items: center;
  gap: 0.55rem !important;
  font-weight: 500 !important;
  font-size: 0.92rem !important;
}

.offer-check input {
  width: 1rem;
  height: 1rem;
}

.offer-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.offer-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.offer-privacy {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: color-mix(in srgb, var(--ink) 65%, transparent);
  text-align: right;
  max-width: 28rem;
}

.offer-privacy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.offer-btn {
  appearance: none;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 12px;
  padding: 0.8rem 1.25rem;
  cursor: pointer;
}

.offer-btn--ghost {
  background: #fff;
  color: var(--ink);
}

.offer-thanks {
  width: min(560px, calc(100% - 2.5rem));
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 0;
}

.offer-thanks h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.03em;
}

.offer-thanks p {
  color: var(--ink-soft);
  font-weight: 500;
  max-width: 32rem;
}

/* —— Footer & legal pages —— */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.25rem 0 2.5rem;
  background: var(--bg);
}

.site-footer__inner {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem 3rem;
  flex-wrap: wrap;
}

.site-footer__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  padding-top: 0.15rem;
  color: var(--ink);
  text-decoration: none;
}

.site-footer__brand:hover {
  text-decoration: underline;
}

.site-footer__cols {
  display: flex;
  gap: 2.5rem 3.5rem;
  flex-wrap: wrap;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 9rem;
}

.site-footer__label {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.site-footer__col a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}

.site-footer__col a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .site-footer__inner {
    flex-direction: column;
    gap: 1.75rem;
  }

  .site-footer__cols {
    width: 100%;
    gap: 2rem;
  }
}

.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.legal-main {
  width: min(720px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1rem 0 3rem;
  flex: 1;
}

.legal-main h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.legal-pre {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
  white-space: pre-wrap;
  color: var(--ink);
  margin: 0;
}
