.landing {
  --landing-forest: #37624c;
  --landing-forest-deep: #10291e;
  --landing-forest-dark: #183b2b;
  --landing-ink: #1d241f;
  --landing-muted: #697169;
  --landing-faint: #929991;
  --landing-paper: #fbfaf5;
  --landing-white: #fffef9;
  --landing-canvas: #ebe9e0;
  --landing-soft: #dce7de;
  --landing-pale: #edf3ed;
  --landing-warm: #f4ead3;
  --landing-line: rgba(47, 61, 51, 0.14);
  --landing-dark-line: rgba(255, 254, 249, 0.18);
  --landing-radius: 1.25rem;
  overflow: hidden;
  color: var(--landing-ink);
  background: var(--landing-paper);
}

html:has(.landing) {
  scroll-behavior: smooth;
}

body:has(.landing) {
  background: var(--landing-paper);
}

body:has(.landing) .content-wrapper {
  padding-top: 0 !important;
  padding-bottom: 0;
  background: var(--landing-paper);
}

body:has(.landing) .app-shell {
  padding-top: 0 !important;
}

body:has(.landing) .app-header {
  border-bottom: 0;
  background: transparent !important;
  box-shadow: none !important;
}

body:has(.landing) .app-header::before {
  position: absolute;
  inset: 0 0 -0.8rem;
  z-index: 0;
  opacity: 0;
  background: linear-gradient(180deg, rgba(14, 28, 21, 0.9), rgba(14, 28, 21, 0.55) 68%, transparent);
  -webkit-backdrop-filter: blur(6px) saturate(0.94);
  backdrop-filter: blur(6px) saturate(0.94);
  transition: opacity 180ms ease;
  content: "";
  pointer-events: none;
}

body:has(.landing) .app-header.is-scrolled::before {
  opacity: 1;
}

body:has(.landing) .app-header > .max-w-7xl {
  position: relative;
  z-index: 1;
}

.landing h1,
.landing h2,
.landing h3,
.landing p {
  margin-top: 0;
}

.landing h1,
.landing h2,
.landing h3 {
  text-wrap: pretty;
}

.landing h1,
.landing h2 {
  font-family: var(--hausl-font-editorial, "Iowan Old Style", "Palatino Linotype", Palatino, serif);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.landing h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.85rem, 12vw, 4.55rem);
  line-height: 0.95;
}

.landing h2 {
  margin-bottom: 1rem;
  max-width: 24rem;
  font-size: clamp(2.35rem, 9.5vw, 4rem);
  line-height: 0.98;
}

.landing h3 {
  letter-spacing: -0.025em;
}

.landing p {
  line-height: 1.55;
}

.landing a,
.landing button,
.landing summary {
  -webkit-tap-highlight-color: transparent;
}

.landing a:focus-visible,
.landing button:focus-visible,
.landing summary:focus-visible,
.landing [tabindex="0"]:focus-visible {
  outline: 3px solid #d8a369;
  outline-offset: 3px;
}

.landing section {
  scroll-margin-top: 5.5rem;
}

.landing-section-intro {
  max-width: 38rem;
  color: var(--landing-muted);
  font-size: 1rem;
}

[data-landing-motion-target="reveal"] {
  opacity: 0.12;
  transform: translateY(1rem);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-landing-motion-target="reveal"].is-inview {
  opacity: 1;
  transform: none;
}

/* Public app chrome sits on top of the cinematic first section. */
.landing-header-login,
.landing-header-cta {
  display: none;
  margin: 0;
  border: 0;
  cursor: pointer;
  font: inherit;
}

/* 01 — hero */
.landing-hero {
  position: relative;
  min-height: min(48rem, 100svh);
  overflow: hidden;
  color: var(--landing-white);
  background: var(--landing-forest-deep);
}

.landing-hero__media,
.landing-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.landing-hero__media img {
  object-fit: cover;
  object-position: 55% center;
}

.landing-hero__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 22, 15, 0.42) 0%, rgba(8, 22, 15, 0.12) 28%, rgba(7, 28, 18, 0.9) 100%),
    radial-gradient(ellipse 90% 65% at 54% 42%, transparent 0%, rgba(8, 22, 15, 0.48) 100%);
  content: "";
}

.landing-hero__copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: min(48rem, 100svh);
  max-width: 48rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem 1rem 1.25rem;
}

.landing-hero__kicker {
  max-width: 32rem;
  margin: 0 0 1rem;
  color: rgba(255, 254, 249, 0.9);
  font-family: var(--hausl-font-meta, ui-monospace, monospace);
  font-size: clamp(0.7rem, 1.7vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.landing-hero h1 {
  /* Wider than before so the German headline wraps ~3 lines on desktop. */
  max-width: 16ch;
  color: var(--landing-white);
}

.landing-hero__lead {
  max-width: 34rem;
  margin-bottom: 1.1rem;
  color: rgba(255, 254, 249, 0.84);
  font-size: 0.98rem;
  line-height: 1.4;
}

.landing-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.landing-actions form,
.landing-pricing__live-actions form,
.landing-demo-link-form {
  margin: 0;
}

/* The product-carousel demo CTA should feel like a single focused action,
   not a full-width bulky button. */
.landing-demo-link-form {
  display: flex;
  justify-content: center;
}

.landing-demo-link-form .landing-button {
  width: auto;
  max-width: 22rem;
  padding: 0.6rem 1rem;
}

.landing-demo-link-form .landing-button > span {
  white-space: normal;
  line-height: 1.15;
}

@media (max-width: 759px) {
  .landing-demo-link-form .landing-button {
    width: 100%;
    max-width: none;
    padding: 0.65rem 1rem;
  }
}

.landing-button {
  display: inline-flex;
  width: 100%;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.9rem;
  font-size: 0.94rem;
  font-weight: 780;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.landing-button:hover {
  transform: translateY(-2px);
}

.landing-button .ui-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex: none;
}

.landing-button > span {
  white-space: nowrap;
}

@media (max-width: 759px) {
  .landing-actions .landing-button > span {
    white-space: normal;
    line-height: 1.15;
  }
}

.landing-button--light {
  color: var(--landing-ink);
  background: var(--landing-white);
}

.landing-button--ghost {
  border-color: rgba(255, 254, 249, 0.42);
  color: var(--landing-white);
  background: rgba(255, 254, 249, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.landing-button--green {
  color: var(--landing-white);
  background: var(--landing-forest);
}

.landing-media-switcher__controls {
  display: inline-flex;
  align-items: center;
}

.landing-media-switcher__button {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--landing-forest);
  border-radius: 0.75rem;
  color: var(--landing-white);
  background: var(--landing-forest);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.landing-media-switcher__button:hover {
  color: var(--landing-white);
  border-color: var(--landing-forest-deep);
  background: var(--landing-forest-deep);
  transform: translateY(-1px);
}

.landing-media-switcher__mode {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.landing-media-switcher__mode[hidden] {
  display: none;
}

.landing-media-switcher__button .ui-icon {
  width: 1.05rem;
  height: 1.05rem;
}

.landing-browser-frame {
  padding: 0.45rem 0.45rem 0.55rem;
  border: 1px solid #aeb7ad;
  border-radius: 1.05rem;
  background: #dfe1d8;
  box-shadow:
    0 1.2rem 2.2rem rgba(38, 57, 45, 0.16),
    inset 0 0 0 0.16rem rgba(255, 255, 255, 0.58),
    inset 0 -0.16rem 0 rgba(81, 94, 83, 0.18);
}

.landing-browser-frame__topbar {
  display: flex;
  height: 1.25rem;
  align-items: center;
  gap: 0.28rem;
  padding-inline: 0.35rem;
}

.landing-browser-frame__topbar span {
  display: block;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #9aa59b;
}

.landing-browser-frame__content {
  overflow: hidden;
  border: 1px solid rgba(23, 43, 31, 0.16);
  border-radius: 0.65rem;
  background: #f7f6ef;
}

.landing-browser-frame__content img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
}

/* 02 — three-screen community preview */
.landing-family-preview {
  display: grid;
  gap: 1.4rem;
  overflow: hidden;
  padding: 1.5rem 1rem 4.25rem;
  background:
    radial-gradient(circle at 50% 17%, rgba(255, 255, 255, 0.72), transparent 37%),
    linear-gradient(180deg, #edf3ed 0%, #dfece2 100%);
  color: var(--landing-forest-dark);
}

.landing-family-preview__media {
  --family-phone-width: min(13.3rem, 44vw);
  width: min(100%, 31rem);
  margin-inline: auto;
}

.landing-family-preview__toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.65rem;
}

.landing-family-preview__viewport {
  display: grid;
  width: min(100%, 31rem);
  /* Lock the viewport height across mobile/desktop toggle */
  aspect-ratio: 0.86 / 1;
}

.landing-family-preview__viewport > [data-landing-media-toggle-target] {
  grid-area: 1 / 1;
  min-width: 0;
  min-height: 0;
}

.landing-family-preview__viewport > [data-landing-media-toggle-target][hidden] {
  display: none;
}

.landing-family-preview__viewport > [data-landing-media-toggle-target="desktop"]:not([hidden]) {
  display: grid;
  place-items: center;
}

.landing-family-preview__stage {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  margin-inline: auto;
  isolation: isolate;
}

.landing-family-preview__desktop {
  width: 100%;
  height: 100%;
}

.landing-family-preview__desktop .landing-browser-frame__content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.landing-family-preview__desktop .landing-browser-frame {
  height: 100%;
}

.landing-family-preview__desktop .landing-browser-frame__content {
  height: 100%;
}

.landing-family-preview__stage--reveal[data-landing-motion-target="reveal"] {
  transform: translateY(1rem) scale(0.96);
  transform-origin: center bottom;
  transition-duration: 760ms;
}

.landing-family-preview__stage--reveal[data-landing-motion-target="reveal"].is-inview {
  transform: scale(1);
}

.landing-family-preview__halo {
  position: absolute;
  right: 3%;
  bottom: 0.55rem;
  left: 3%;
  z-index: -1;
  height: 13rem;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(106, 182, 130, 0.34), rgba(217, 239, 220, 0) 70%);
  filter: blur(0.45rem);
}

.landing-phone {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: min(14rem, 72%);
  aspect-ratio: 390 / 844;
  padding: 0.34rem;
  border: 1px solid #aeb7ad;
  border-radius: 2.15rem 2.15rem 1.45rem 1.45rem;
  background: #dfe1d8;
  box-shadow:
    0 1.4rem 2rem rgba(38, 57, 45, 0.22),
    inset 0 0 0 0.18rem rgba(255, 255, 255, 0.58),
    inset 0 -0.18rem 0 rgba(81, 94, 83, 0.2);
}

.landing-phone::before {
  position: absolute;
  top: 0.7rem;
  left: 50%;
  z-index: 2;
  width: 36%;
  height: 0.62rem;
  border-radius: 0 0 0.7rem 0.7rem;
  background: #26332a;
  box-shadow: 0 0.08rem 0 rgba(255, 255, 255, 0.12);
  content: "";
  transform: translateX(-50%);
}

.landing-phone::after {
  position: absolute;
  top: 4.8rem;
  right: -0.28rem;
  width: 0.22rem;
  height: 2.3rem;
  border-radius: 0 0.2rem 0.2rem 0;
  background: #a7afa5;
  content: "";
}

.landing-phone__screen {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1.82rem 1.82rem 1.12rem 1.12rem;
  background: #f7f6ef;
  box-shadow: inset 0 0 0 1px rgba(23, 43, 31, 0.16);
}

.landing-phone__screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.landing-family-phone {
  position: absolute;
  top: 0;
  width: var(--family-phone-width);
  border-color: #c2ccc1;
  box-shadow:
    0 1.6rem 2.6rem rgba(38, 75, 51, 0.24),
    inset 0 0 0 0.18rem rgba(255, 255, 255, 0.72),
    inset 0 -0.18rem 0 rgba(81, 112, 87, 0.18);
}

.landing-family-phone--left {
  left: 0;
  z-index: 1;
  transform: translate(-4%, 1.35rem) rotate(-9deg) scale(0.84);
}

.landing-family-phone--main {
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
}

.landing-family-phone--right {
  right: 0;
  z-index: 1;
  transform: translate(4%, 1.85rem) rotate(9deg) scale(0.84);
}

.landing-family-preview__copy {
  position: relative;
  z-index: 2;
  max-width: 31rem;
  margin-inline: auto;
}

.landing-family-preview__copy h2 {
  max-width: 24rem;
  color: var(--landing-forest-dark);
}

.landing-family-preview__copy p {
  max-width: 29rem;
  margin-bottom: 0;
  color: #4d6a55;
  font-size: 0.98rem;
}

/* 03 — the scattered problem */
.landing-problem {
  padding: 4.6rem 1rem 4.8rem;
  background: var(--landing-white);
}

.landing-problem__inner {
  max-width: 42rem;
  margin-inline: auto;
}

.landing-problem h2 {
  max-width: 24rem;
}

.landing-problem__scatter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 1.8rem 0 1.25rem;
  padding: 1.35rem 0.75rem;
  border: 1px dashed #9ca9a0;
  border-radius: var(--landing-radius);
  background: #f3f2ee;
}

.landing-tool-chip {
  display: inline-flex;
  min-height: 2.65rem;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid #c8cec9;
  border-radius: 0.8rem;
  color: #4f5d54;
  background: var(--landing-white);
  font-size: 0.78rem;
  font-weight: 740;
  box-shadow: 0 0.2rem 0.45rem rgba(47, 61, 51, 0.04);
}

.landing-tool-chip .ui-icon {
  width: 1.05rem;
  height: 1.05rem;
}

.landing-tool-chip--1 { transform: rotate(-3deg); }
.landing-tool-chip--2 { transform: rotate(2deg); }
.landing-tool-chip--3 { transform: rotate(-1deg); }
.landing-tool-chip--4 { transform: rotate(3deg); }
.landing-tool-chip--5 { transform: rotate(-2deg); }

.landing-problem__bridge {
  display: grid;
  justify-items: center;
  margin-bottom: 1.1rem;
  color: #718077;
}

.landing-problem__bridge .ui-icon {
  width: 1.4rem;
  height: 1.4rem;
}

.landing-problem__target {
  padding: 1.35rem;
  border: 2px solid #7d9b89;
  border-radius: var(--landing-radius);
  background: #e6efe7;
  text-align: center;
}

.landing-problem__mark {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 0.8rem;
  place-items: center;
  border-radius: 1rem;
  color: var(--landing-white);
  background: var(--landing-forest-deep);
  font-family: var(--hausl-font-editorial, Georgia, serif);
  font-size: 1.55rem;
  font-weight: 700;
}

.landing-problem__target h3 {
  margin-bottom: 0.35rem;
  font-size: 1.3rem;
}

.landing-problem__target p {
  margin-bottom: 0;
  color: var(--landing-muted);
  font-size: 0.9rem;
}

.landing-micro-tags,
.landing-audience__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.landing-micro-tags {
  justify-content: center;
  margin-top: 0.9rem;
}

.landing-micro-tags span,
.landing-audience__chips span {
  padding: 0.38rem 0.55rem;
  border-radius: 0.55rem;
  color: #315341;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 760;
}

/* 04 — individual product cards and the restored horizontal screenshot carousel */
.landing-features {
  overflow: hidden;
  /* More compact section rhythm; sticky header should not feel "floated" */
  padding: 3.6rem 0 3.6rem;
  background: #f3f1ea;
}

.landing-features__scroller,
.landing-product-story__pin {
  display: contents;
}

.landing-features__header {
  padding: 0 1rem 1.1rem;
}

.landing-features__header h2 {
  max-width: 24rem;
}

.landing-features__carousel {
  position: relative;
}

.landing-features__track {
  display: grid;
  width: 100%;
  grid-auto-flow: column;
  grid-auto-columns: minmax(18rem, calc(100vw - 2rem));
  gap: 0.85rem;
  overflow-x: auto;
  padding: 0.25rem 1rem 1.25rem;
  scroll-padding-inline: 1rem;
  /* "Mandatory" can feel bouncy during touch/wheel scrolling.
     "Proximity" keeps snapping, but avoids oscillation around snap points. */
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.landing-features__track::-webkit-scrollbar {
  display: none;
}

.landing-feature-card {
  min-width: 0;
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid rgba(24, 59, 43, 0.14);
  border-radius: 1.35rem;
  color: var(--landing-ink);
  background: var(--landing-white);
  box-shadow: 0 0.8rem 1.9rem rgba(38, 57, 45, 0.09);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.landing-feature-card__media {
  overflow: hidden;
  background: #e8ebe2;
}

.landing-feature-card:focus-within,
.landing-feature-card:hover {
  transform: translateY(-0.18rem);
  box-shadow: 0 1.1rem 2.2rem rgba(38, 57, 45, 0.14);
}

.landing-feature-card__shot {
  display: flex;
  height: 18.2rem;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  padding: 0.8rem 1rem 0;
  border-bottom: 1px solid rgba(24, 59, 43, 0.08);
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.9), transparent 48%),
    linear-gradient(160deg, #e8ebe2 0%, #dce1d9 100%);
}

.landing-feature-card__phone {
  width: min(10.5rem, 66%);
  transform: translateY(0.65rem);
}

.landing-feature-card__body {
  padding: 1.1rem 1.15rem 1.25rem;
}

.landing-feature-card__label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--landing-muted);
  font-family: var(--hausl-font-meta, ui-monospace, monospace);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.landing-feature-card h3 {
  margin-bottom: 0.65rem;
  font-family: var(--hausl-font-editorial, Georgia, serif);
  font-size: 1.75rem;
  font-weight: 560;
  line-height: 1.04;
}

.landing-features__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem;
}

.landing-features__progress {
  display: block;
  width: 100%;
  height: 0.2rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(55, 98, 76, 0.18);
}

.landing-features__progress > span {
  display: block;
  width: 18%;
  height: 100%;
  border-radius: inherit;
  background: var(--landing-forest);
  transition: width 180ms ease-out;
}

.landing-features__hint {
  flex: none;
  color: var(--landing-muted);
  font-family: var(--hausl-font-meta, ui-monospace, monospace);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-demo-link-form {
  padding: 0 1rem;
}

.landing-text-link .ui-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex: none;
  transition: transform 160ms ease;
}

.landing-text-link:hover .ui-icon {
  transform: translateX(3px);
}

/* 05 — emotional outcome */
.landing-outcome {
  padding: 5.3rem 1rem;
  color: var(--landing-white);
  background: var(--landing-forest);
}

.landing-outcome > div {
  max-width: 42rem;
  margin-inline: auto;
}

.landing-outcome h2 {
  max-width: 24rem;
  color: var(--landing-white);
}

.landing-outcome p:last-child {
  max-width: 36rem;
  margin-bottom: 0;
  color: rgba(255, 254, 249, 0.74);
}

/* 06 — fit */
.landing-audience {
  padding: 4.7rem 1rem;
  background: var(--landing-white);
}

.landing-audience > div {
  max-width: 42rem;
  margin-inline: auto;
}

.landing-audience h2 {
  max-width: 24rem;
}

.landing-audience__chips {
  margin: 1.45rem 0 1.15rem;
}

.landing-audience__chips span {
  padding: 0.6rem 0.75rem;
  border: 1px solid #bcc7bf;
  border-radius: 999px;
  color: #395444;
  background: #f6f7f4;
  font-size: 0.76rem;
  font-weight: 740;
}

.landing-place-note {
  margin-bottom: 0;
  padding: 1rem 1rem 1rem 1.1rem;
  border-left: 3px solid #72937f;
  color: #526359;
  background: #eef2ee;
  font-size: 0.86rem;
}

/* 07 — trust */
.landing-trust {
  padding: 4.7rem 1rem;
  background: #e8eee9;
}

.landing-trust > div {
  max-width: 42rem;
  margin-inline: auto;
}

.landing-trust h2 {
  max-width: 24rem;
}

.landing-trust__list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.65rem;
}

.landing-trust__item {
  display: grid;
  grid-template-columns: 2.65rem minmax(0, 1fr);
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid #c7d0c9;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
}

.landing-trust__icon {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border-radius: 0.75rem;
  color: var(--landing-white);
  background: var(--landing-forest);
}

.landing-trust__icon .ui-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.landing-trust__item h3 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  line-height: 1.2;
}

.landing-trust__item p {
  margin-bottom: 0;
  color: var(--landing-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

/* 08 — pricing and pre-launch waitlist */
.landing-pricing {
  display: grid;
  gap: 1.4rem;
  padding: 4.7rem 1rem;
  background: #f5f2e9;
}

.landing-pricing__intro,
.landing-pricing__plans,
.landing-pricing__plan,
.landing-waitlist {
  width: min(100%, 42rem);
  margin-inline: auto;
}

.landing-pricing__intro h2 {
  max-width: 24rem;
}

.landing-pricing__intro > p:last-child {
  max-width: 35rem;
  margin-bottom: 0;
  color: var(--landing-muted);
}

.landing-pricing__plan {
  padding: 1.35rem;
  border: 2px solid #809589;
  border-radius: 1.35rem;
  background: var(--landing-white);
}

.landing-pricing__plan-head > p:first-child {
  margin-bottom: 0.45rem;
  color: var(--landing-forest);
  font-family: var(--hausl-font-meta, ui-monospace, monospace);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-pricing__plan h3 {
  margin-bottom: 1.1rem;
  font-family: var(--hausl-font-editorial, Georgia, serif);
  font-size: 1.65rem;
  font-weight: 560;
  line-height: 1.04;
}

.landing-pricing__price {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  color: var(--landing-forest-deep);
}

.landing-pricing__price strong {
  font-family: var(--hausl-font-editorial, Georgia, serif);
  font-size: 3.65rem;
  font-weight: 560;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.landing-pricing__price span,
.landing-pricing__annual,
.landing-pricing__trial {
  color: var(--landing-muted);
  font-size: 0.78rem;
}

.landing-pricing__annual {
  margin: 0.55rem 0 1.35rem;
}

.landing-pricing__plan > ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--landing-line);
  list-style: none;
}

.landing-pricing__plan > ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: #45564b;
  font-size: 0.86rem;
}

.landing-pricing__plan > ul .ui-icon {
  width: 1rem;
  height: 1rem;
  flex: none;
  margin-top: 0.05rem;
  color: var(--landing-forest);
}

.landing-pricing__trial {
  margin: 1.25rem 0 0;
  text-align: center;
}

.landing-pricing__prelaunch {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  margin-top: 1.35rem;
  padding: 1rem;
  color: var(--landing-white);
  background: var(--landing-forest-deep);
}

.landing-pricing__prelaunch > .ui-icon {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.12rem;
  color: #d8a369;
}

.landing-pricing__prelaunch strong {
  display: block;
  font-family: var(--hausl-font-editorial, Georgia, serif);
  font-size: 1.15rem;
  font-weight: 560;
}

.landing-pricing__prelaunch p {
  margin: 0.3rem 0 0.55rem;
  color: rgba(255, 254, 249, 0.7);
  font-size: 0.78rem;
  line-height: 1.45;
}

.landing-pricing__live-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.landing-pricing__live-actions .landing-button {
  min-height: 3rem;
}

.landing-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.4rem 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--landing-forest-deep);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 780;
  text-decoration: none;
  cursor: pointer;
}

.landing-text-link--light {
  justify-content: flex-start;
  min-height: 2.1rem;
  color: var(--landing-white);
  border-bottom-color: rgba(255, 254, 249, 0.62);
  font-size: 0.78rem;
}

.landing-waitlist {
  padding: 1.35rem;
  color: var(--landing-white);
  background: var(--landing-forest);
}

.landing-waitlist h3 {
  margin-bottom: 0.55rem;
  font-family: var(--hausl-font-editorial, Georgia, serif);
  font-size: 1.75rem;
  font-weight: 560;
}

.landing-waitlist > p {
  margin-bottom: 1rem;
  color: rgba(255, 254, 249, 0.72);
  font-size: 0.88rem;
}

.landing-waitlist__status {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.9rem 0;
  padding: 0.75rem;
  font-size: 0.8rem;
}

.landing-waitlist__status.is-success {
  color: #edf7ec;
  background: rgba(220, 238, 221, 0.13);
}

.landing-waitlist__status.is-error {
  color: #ffe6db;
  background: rgba(255, 226, 216, 0.12);
}

.landing-waitlist__status .ui-icon {
  width: 1rem;
  height: 1rem;
  flex: none;
  margin-top: 0.06rem;
}

.landing-waitlist__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.landing-waitlist__field label {
  display: block;
  margin-bottom: 0.4rem;
  color: rgba(255, 254, 249, 0.76);
  font-size: 0.72rem;
  font-weight: 750;
}

.landing-waitlist__field > div {
  display: grid;
  gap: 0.55rem;
}

.landing-waitlist__field input {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.75rem;
  outline: none;
  background: var(--landing-white);
  color: var(--landing-ink);
}

.landing-waitlist__field input:focus {
  box-shadow: 0 0 0 3px #d8a369;
}

.landing-waitlist__field button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border: 0;
  border-radius: 0.75rem;
  color: var(--landing-forest-deep);
  background: #d8a369;
  font-weight: 800;
  cursor: pointer;
}

.landing-waitlist__consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.5rem;
  margin-top: 0.8rem;
  color: rgba(255, 254, 249, 0.68);
  font-size: 0.7rem;
  line-height: 1.45;
}

.landing-waitlist__consent input {
  margin-top: 0.12rem;
  accent-color: #d8a369;
}

.landing-waitlist__consent label {
  display: inline;
  color: inherit;
  font: inherit;
}

.landing-waitlist__consent a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.landing-waitlist__consent a:hover,
.landing-waitlist__consent a:focus-visible {
  color: #fffef9;
}

/* 09 — FAQ */
.landing-faq {
  padding: 4.7rem 1rem;
  background: var(--landing-white);
}

.landing-faq > div {
  max-width: 42rem;
  margin-inline: auto;
}

.landing-faq h2 {
  max-width: 24rem;
  margin-bottom: 1.2rem;
}

.landing-faq details {
  border-top: 1px solid var(--landing-line);
}

.landing-faq details:last-child {
  border-bottom: 1px solid var(--landing-line);
}

.landing-faq summary {
  display: flex;
  min-height: 3.8rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 760;
  list-style: none;
}

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

.landing-faq summary::after {
  flex: none;
  color: var(--landing-forest);
  content: "+";
  font-size: 1.45rem;
  font-weight: 400;
}

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

.landing-faq details p {
  max-width: 37rem;
  padding: 0 0 1rem;
  color: var(--landing-muted);
  font-size: 0.84rem;
}

/* 10 — final action and footer */
.landing-final {
  display: grid;
  min-height: 34rem;
  place-items: center;
  padding: 5.4rem 1rem;
  color: var(--landing-white);
  background: var(--landing-forest-deep);
  text-align: center;
}

.landing-final > div {
  width: min(100%, 38rem);
}

.landing-final h2 {
  max-width: 24rem;
  margin-inline: auto;
  color: var(--landing-white);
}

.landing-final__body {
  max-width: 30rem;
  margin: 0 auto 1.4rem;
  color: rgba(255, 254, 249, 0.72);
  font-size: 0.94rem;
}

.landing-final .landing-actions {
  max-width: 24rem;
  margin-inline: auto;
}

.landing-footer {
  display: grid;
  gap: 1rem;
  padding: 2rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 254, 249, 0.6);
  background: #0d1f17;
  font-size: 0.78rem;
}

.landing-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--landing-white);
  font-family: var(--hausl-font-editorial, Georgia, serif);
  font-size: 1.3rem;
  text-decoration: none;
}

.landing-footer__brand img {
  border-radius: 0.55rem;
}

.landing-footer p {
  margin-bottom: 0;
}

.landing-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  align-items: center;
}

.landing-footer nav a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.landing-footer nav a:hover,
.landing-footer__consent-link:hover {
  color: var(--landing-white);
}

.landing-footer__consent-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

/* Consent and language controls retain the existing public-page contract. */
.landing-prelaunch-notice {
  max-width: min(28rem, calc(100vw - 2rem));
  margin: auto;
  padding: 0;
  border: none;
  border-radius: 1.25rem;
  background: transparent;
  color: inherit;
}

.landing-prelaunch-notice::backdrop {
  background: rgba(15, 28, 22, 0.55);
  backdrop-filter: blur(2px);
}

.landing-prelaunch-notice__panel {
  padding: 1.5rem 1.35rem 1.25rem;
  border: 1px solid rgba(24, 59, 43, 0.14);
  border-radius: 1.25rem;
  background: #f7f4ec;
  box-shadow: 0 24px 48px rgba(15, 28, 22, 0.22);
}

.landing-prelaunch-notice__panel h2 {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #183b2b;
}

.landing-prelaunch-notice__panel p {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(24, 59, 43, 0.82);
}

.landing-prelaunch-notice__actions {
  display: grid;
  gap: 0.65rem;
}

.landing-prelaunch-notice__actions .landing-button {
  width: 100%;
  justify-content: center;
}

.landing-prelaunch-notice__waitlist .landing-pricing__microcopy {
  margin: 0 0 1rem;
}

.landing-prelaunch-notice__waitlist .landing-waitlist__status {
  margin-bottom: 0.85rem;
}

.landing-prelaunch-notice .landing-button--ghost {
  border-color: rgba(24, 59, 43, 0.22);
  color: var(--landing-forest-deep);
  background: rgba(255, 254, 249, 0.72);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.landing-prelaunch-notice .landing-button--ghost:hover {
  background: var(--landing-white);
}

.landing-prelaunch-notice__waitlist .landing-prelaunch-notice__close {
  width: 100%;
  justify-content: center;
  margin-top: 0.85rem;
}

.landing-analytics-consent {
  position: fixed;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 30;
  margin: 0;
  border: none;
  padding: 0;
  background: transparent;
  width: min(44rem, calc(100vw - 2rem));
  max-width: 44rem;
  border-radius: 1.25rem;
  color: var(--landing-ink);
}

.landing-analytics-consent::backdrop {
  background: transparent;
  backdrop-filter: none;
}

.landing-analytics-consent[hidden] {
  display: none;
}

.landing-analytics-consent__panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  background: var(--landing-warm);
  padding: 0.95rem 1rem;
  border-radius: 1.25rem;
  box-shadow: 0 16px 30px rgba(15, 28, 22, 0.12);
}

.landing-analytics-consent__label {
  grid-column: 1 / -1;
  margin-bottom: 0.45rem !important;
  color: var(--landing-forest) !important;
  font-family: var(--hausl-font-meta, ui-monospace, monospace);
  font-size: 0.68rem !important;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.landing-analytics-consent h2 {
  grid-column: 1;
  margin-bottom: 0.65rem;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.05;
}

.landing-analytics-consent p {
  grid-column: 1;
  margin-bottom: 0.65rem;
  color: var(--landing-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.landing-analytics-consent__details {
  grid-column: 1;
  margin-bottom: 0 !important;
}

.landing-analytics-consent__details a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--landing-forest-deep);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.landing-analytics-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  grid-column: 1;
  grid-row: auto;
  justify-content: center;
  margin-top: 0.65rem;
}

.landing-analytics-consent__actions .landing-button {
  width: auto;
  min-height: 2.75rem;
  padding-block: 0.6rem;
  font-size: 0.82rem;
}

.landing-footer__locale {
  position: relative;
}

.landing-footer__locale-static {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.3rem;
  color: var(--landing-white);
  font-size: 0.8rem;
  font-weight: 700;
}

.landing-footer__locale > summary {
  display: inline-flex;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(255, 254, 249, 0.24);
  border-radius: 0.75rem;
  color: var(--landing-white);
  cursor: pointer;
  list-style: none;
}

.landing-footer__locale > summary::-webkit-details-marker {
  display: none;
}

.landing-footer__locale-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.6rem);
  z-index: 2;
  display: grid;
  min-width: 13rem;
  gap: 0.2rem;
  padding: 0.35rem;
  border: 1px solid rgba(24, 59, 43, 0.18);
  background: var(--landing-paper);
  box-shadow: 0 0.9rem 2rem rgba(16, 41, 30, 0.2);
}

.landing-footer__locale-option {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.65rem;
  color: var(--landing-forest-dark) !important;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.landing-footer__locale-option:hover,
.landing-footer__locale-option.is-active {
  background: #f4f0e5;
}

.landing-footer__locale-check {
  margin-left: auto;
  font-size: 0.85rem;
}

@media (max-width: 360px) {
  .landing h1 {
    font-size: 2.65rem;
  }

  .landing h2 {
    font-size: 2.2rem;
  }

  .landing-family-preview__stage {
    transform: scale(0.92);
    transform-origin: center top;
    margin-bottom: -1.8rem;
  }
}

@media (min-width: 760px) {
  .landing-hero__copy,
  .landing-features__header,
  .landing-features__carousel,
  .landing-demo-link-form,
  .landing-footer {
    padding-inline: clamp(1.25rem, 4vw, 3rem);
  }

  .landing-hero__copy {
    min-height: min(50rem, 100svh);
    padding-top: 10rem;
    padding-bottom: 3rem;
  }

  .landing-hero h1 {
    max-width: 11ch;
  }

  .landing-actions {
    max-width: 32rem;
  }

  .landing-button {
    width: auto;
  }

  /* On desktop we want both prelaunch hero actions to feel equally important.
     The generic `.landing-button { width: auto; }` would otherwise shrink each
     button to its own text width ("Ort starten" vs longer waitlist copy). */
  .landing-hero .landing-actions--prelaunch .landing-button {
    width: 100%;
  }
  .landing-hero .landing-actions--prelaunch .landing-demo-link-form .landing-button {
    width: 100%;
    max-width: none;
  }

  .landing-family-preview {
    grid-template-columns: minmax(18rem, 0.75fr) minmax(28rem, 1.25fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 7rem);
    padding: 3.5rem clamp(1.25rem, 6vw, 6rem) 4.5rem;
  }

  .landing-family-preview__media {
    grid-column: 2;
    grid-row: 1;
    --family-phone-width: min(16rem, 42%);
    width: min(100%, 35rem);
  }

  .landing-family-preview__stage {
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .landing-family-preview__copy {
    grid-column: 1;
    grid-row: 1;
    margin-inline: 0;
  }

  .landing-family-phone--left {
    transform: translate(-5%, 2.5rem) rotate(-9deg) scale(0.84);
  }

  .landing-family-phone--right {
    transform: translate(5%, 3.2rem) rotate(9deg) scale(0.84);
  }

  .landing-problem,
  .landing-audience,
  .landing-trust,
  .landing-faq,
  .landing-pricing {
    padding-inline: clamp(1.25rem, 6vw, 6rem);
  }

  .landing-problem__inner,
  .landing-audience > div,
  .landing-trust > div,
  .landing-faq > div {
    max-width: 70rem;
  }

  .landing-problem__scatter {
    max-width: 56rem;
    margin-inline: auto;
  }

  .landing-problem__bridge,
  .landing-problem__target {
    max-width: 40rem;
    margin-inline: auto;
  }

  .landing-features__track {
    grid-auto-columns: minmax(21rem, 30rem);
  }

  .landing-feature-card__shot {
    height: 19.5rem;
  }

  .landing-outcome {
    padding-inline: clamp(1.25rem, 6vw, 6rem);
  }

  .landing-outcome > div {
    max-width: 70rem;
  }

  .landing-outcome h2 {
    max-width: 24rem;
  }

  .landing-audience__chips {
    max-width: 52rem;
  }

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

  .landing-trust__item {
    grid-template-columns: 1fr;
  }

  .landing-waitlist__field > div {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .landing-waitlist__field button {
    min-width: 12rem;
  }

  .landing-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .landing-footer p {
    grid-column: 1;
    grid-row: 2;
  }

  .landing-footer nav {
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-content: flex-end;
  }

  .landing-header-login,
  .landing-header-cta {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
  }

  .landing-header-links a {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
  }

  .landing-header-login {
    margin-right: 0.25rem;
    color: var(--landing-ink);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
  }

  .landing-header-cta {
    min-height: 2.75rem;
    padding-inline: 1rem;
    color: var(--landing-white);
    background: var(--landing-forest);
    font-size: 0.875rem;
    font-weight: 750;
    text-decoration: none;
  }

  .landing-analytics-consent {
    width: min(44rem, 90vw);
  }

  .landing-analytics-consent__panel {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 1.5rem;
  }

  .landing-analytics-consent__label {
    grid-column: 1 / -1;
  }

  .landing-analytics-consent h2,
  .landing-analytics-consent p,
  .landing-analytics-consent__details {
    grid-column: 1;
  }

  .landing-analytics-consent__actions {
    grid-column: 2;
    grid-row: 2 / span 3;
    justify-content: center;
    margin-top: 0;
  }
}

@media (min-width: 1120px) {
  .landing-header-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-right: 1.25rem;
  }

  .landing-header-links a {
    color: rgba(255, 254, 249, 0.82);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
  }

  body:has(.landing) .app-header.is-scrolled .landing-header-links a,
  body:has(.landing) .app-header.is-scrolled .landing-header-login {
    color: var(--landing-ink);
  }

  body:has(.landing) .app-header.is-scrolled .landing-header-cta {
    color: var(--landing-white);
  }

  .landing-hero__copy {
    max-width: 72rem;
    margin-inline: auto;
    padding-inline: clamp(1.5rem, 7vw, 7rem);
  }

  .landing-pricing {
    display: block;
    max-width: none;
  }

  .landing-pricing__intro,
  .landing-pricing__plans,
  .landing-pricing__plan,
  .landing-waitlist {
    width: auto;
    margin-inline: 0;
  }

  .landing-pricing__live-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:has(.landing) {
    scroll-behavior: auto;
  }

  .landing *,
  .landing *::before,
  .landing *::after {
    transition-duration: 0.01ms !important;
  }

  [data-landing-motion-target="reveal"] {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 759px) {
  body:has(.landing) .app-header .landing-header-links,
  body:has(.landing) .app-header .landing-header-login,
  body:has(.landing) .app-header .landing-header-cta {
    display: none !important;
  }
}

/* 05–10 — calmer lower landing page: outcome, places, trust, price, FAQ, CTA */
.landing-results {
  padding: clamp(4.8rem, 11vw, 7.5rem) 1rem;
  background: var(--landing-pale);
}

.landing-results__inner,
.landing-use-cases__inner,
.landing-origin__inner,
.landing-pricing__inner {
  width: min(100%, 72rem);
  margin-inline: auto;
}

.landing-results__intro h2,
.landing-use-cases__intro h2,
.landing-pricing__intro h2 {
  max-width: 31rem;
}

.landing-results__intro .landing-section-intro {
  max-width: 29rem;
  margin-bottom: 0;
}

.landing-results__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 1.5rem 0 0;
  padding: 0.75rem;
  list-style: none;
  border-radius: 1.25rem;
  background: rgba(255, 254, 249, 0.65);
  border: 1px solid rgba(55, 98, 76, 0.14);
}

.landing-results__timeline::before {
  display: none;
}

.landing-results__item {
  position: relative;
  display: grid;
  grid-template-columns: 2.15rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding: 0.65rem 0.75rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(55, 98, 76, 0.08);
}

.landing-results__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border: 1px solid rgba(55, 98, 76, 0.26);
  border-radius: 50%;
  color: var(--landing-forest-deep);
  background: var(--landing-pale);
}

.landing-results__icon .ui-icon {
  width: 1rem;
  height: 1rem;
}

.landing-results__card-body {
  position: relative;
  min-width: 0;
  padding-right: 1.75rem;
}

.landing-results__card-index {
  position: absolute;
  top: 0;
  right: 0;
  color: rgba(83, 98, 87, 0.85);
  font-family: var(--hausl-font-meta, ui-monospace, monospace);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.landing-results__item h3 {
  margin: 0 0 0.2rem;
  color: var(--landing-forest-deep);
  font-size: 1rem;
  font-weight: 780;
  line-height: 1.2;
}

.landing-results__item p {
  max-width: 31rem;
  margin: 0;
  color: var(--landing-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.landing-use-cases {
  padding: clamp(4.8rem, 11vw, 7.5rem) 1rem;
  background: var(--landing-white);
}

.landing-use-cases__intro .landing-section-intro {
  max-width: 35rem;
  margin-bottom: 0;
}

.landing-use-cases__grid {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.landing-use-case {
  min-height: 0;
  padding: 1rem 1.05rem 1.05rem;
  border-radius: 1rem;
}

.landing-use-case--sage {
  background: var(--landing-pale);
}

.landing-use-case--warm {
  background: var(--landing-warm);
}

.landing-use-case--meadow {
  background: rgba(55, 98, 76, 0.1);
}

.landing-use-case__icon {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 0.85rem;
  place-items: center;
  border-radius: 0.75rem;
  color: var(--landing-forest-deep);
  background: rgba(255, 254, 249, 0.58);
}

.landing-use-case__icon .ui-icon {
  width: 1.1rem;
  height: 1.1rem;
}

.landing-use-case h3 {
  max-width: 15rem;
  margin-bottom: 0.35rem;
  color: var(--landing-forest-deep);
  font-size: 1rem;
  font-weight: 780;
  line-height: 1.18;
}

.landing-use-case p {
  max-width: 19rem;
  margin: 0;
  color: #536257;
  font-size: 0.82rem;
  line-height: 1.45;
}

.landing-origin {
  padding: clamp(4.8rem, 11vw, 7.5rem) 1rem;
  background: #e8eee9;
}

.landing-origin__media {
  margin: 0;
}

.landing-origin__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 1.45rem;
  object-fit: cover;
  object-position: 66% center;
}

.landing-origin__media figcaption {
  margin: 0.65rem 0 0;
  color: var(--landing-muted);
  font-family: var(--hausl-font-meta, ui-monospace, monospace);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.35;
}

.landing-origin__copy {
  margin-top: 2.75rem;
}

.landing-origin__copy h2 {
  max-width: 26rem;
  color: var(--landing-forest-deep);
}

.landing-origin__body {
  max-width: 35rem;
  margin-bottom: 0;
  color: #536257;
  font-size: 0.98rem;
}

.landing-origin__trust-list {
  margin-top: 2rem;
  border-top: 1px solid rgba(47, 61, 51, 0.17);
}

.landing-origin__trust-item {
  display: grid;
  grid-template-columns: 2.45rem minmax(0, 1fr);
  gap: 0.8rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(47, 61, 51, 0.17);
}

.landing-origin__trust-icon {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border-radius: 0.75rem;
  color: var(--landing-forest-deep);
  background: var(--landing-soft);
}

.landing-origin__trust-icon .ui-icon {
  width: 1.1rem;
  height: 1.1rem;
}

.landing-origin__trust-item h3 {
  margin: 0.1rem 0 0.25rem;
  color: var(--landing-forest-deep);
  font-size: 0.95rem;
  font-weight: 780;
  line-height: 1.25;
}

.landing-origin__trust-item p {
  margin: 0;
  color: var(--landing-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.landing-pricing {
  display: block;
  padding: clamp(4.8rem, 11vw, 7.5rem) 1rem;
  background: var(--landing-warm);
}

.landing-pricing__inner {
  display: grid;
  gap: 2rem;
}

.landing-pricing__intro > p:last-child {
  max-width: 33rem;
  margin-bottom: 0;
  color: var(--landing-muted);
}

.landing-pricing__plans {
  display: grid;
  gap: 1rem;
}

.landing-pricing__plan {
  width: 100%;
  padding: clamp(1.35rem, 4vw, 2rem);
  border: 1px solid rgba(55, 98, 76, 0.24);
  border-radius: 1.4rem;
  background: var(--landing-white);
  box-shadow: 0 1rem 2.6rem rgba(47, 61, 51, 0.08);
}

.landing-pricing__plan--recommended {
  border-color: rgba(55, 98, 76, 0.42);
  box-shadow: 0 1.1rem 2.8rem rgba(47, 61, 51, 0.12);
}

.landing-pricing__eyebrow {
  margin: 0 0 0.55rem !important;
  color: var(--landing-forest);
  font-family: var(--hausl-font-meta, ui-monospace, monospace);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.landing-pricing__plan-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.landing-pricing__plan h3 {
  margin: 0 0 1.15rem;
  color: var(--landing-forest-deep);
  font-family: var(--hausl-font-editorial, Georgia, serif);
  font-size: 1.65rem;
  font-weight: 560;
  line-height: 1.04;
}

.landing-pricing__recommended {
  flex: none;
  padding: 0.35rem 0.5rem;
  border-radius: 0.45rem;
  color: var(--landing-forest-deep);
  background: var(--landing-soft);
  font-family: var(--hausl-font-meta, ui-monospace, monospace);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.landing-pricing__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  color: var(--landing-forest-deep);
}

.landing-pricing__price strong {
  font-family: var(--hausl-font-editorial, Georgia, serif);
  font-size: clamp(3.5rem, 13vw, 4.7rem);
  font-weight: 560;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.landing-pricing__price span {
  color: var(--landing-muted);
  font-size: 0.82rem;
}

.landing-pricing__note,
.landing-pricing__trial {
  color: var(--landing-muted);
  font-size: 0.78rem;
}

.landing-pricing__note {
  margin: 0.55rem 0 1.35rem;
}

.landing-pricing__plan > ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--landing-line);
  list-style: none;
}

.landing-pricing__plan > ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: #45564b;
  font-size: 0.86rem;
}

.landing-pricing__plan > ul .ui-icon {
  width: 1rem;
  height: 1rem;
  flex: none;
  margin-top: 0.05rem;
  color: var(--landing-forest);
}

.landing-pricing__trial {
  margin: 1.25rem 0 0;
  text-align: left;
}

.landing-pricing__action {
  margin-top: 1.3rem;
}

.landing-pricing__demo {
  display: flex;
  justify-content: center;
}

.landing-pricing__live-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.3rem;
}

.landing-pricing__live-actions .landing-button {
  min-height: 3rem;
}

.landing-waitlist {
  width: 100%;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(47, 61, 51, 0.18);
  color: var(--landing-ink);
  background: transparent;
}

.landing-waitlist h3 {
  margin-bottom: 0.55rem;
  color: var(--landing-forest-deep);
  font-family: var(--hausl-font-editorial, Georgia, serif);
  font-size: 1.75rem;
  font-weight: 560;
}

.landing-waitlist > p {
  max-width: 31rem;
  margin-bottom: 1rem;
  color: var(--landing-muted);
  font-size: 0.88rem;
}

.landing-waitlist__status {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.9rem 0;
  padding: 0.75rem;
  border-radius: 0.65rem;
  font-size: 0.8rem;
}

.landing-waitlist__status.is-success {
  color: var(--landing-forest-deep);
  background: var(--landing-soft);
}

.landing-waitlist__status.is-error {
  color: #7c3f39;
  background: rgba(156, 77, 67, 0.1);
}

.landing-waitlist__status .ui-icon {
  width: 1rem;
  height: 1rem;
  flex: none;
  margin-top: 0.06rem;
}

.landing-waitlist__field label {
  color: var(--landing-muted);
}

.landing-waitlist__field > div {
  display: grid;
  gap: 0.55rem;
}

.landing-waitlist__field input {
  border: 1px solid rgba(47, 61, 51, 0.24);
  border-radius: 0.75rem;
  background: var(--landing-white);
  color: var(--landing-ink);
}

.landing-waitlist__field input:focus {
  box-shadow: 0 0 0 3px rgba(55, 98, 76, 0.22);
}

.landing-waitlist__field button {
  min-height: 3.15rem;
  border-radius: 0.75rem;
  color: var(--landing-white);
  background: var(--landing-forest);
  transition: transform 160ms ease, background-color 160ms ease;
}

.landing-waitlist__field button:hover {
  background: var(--landing-forest-deep);
  transform: translateY(-1px);
}

.landing-waitlist__consent {
  color: var(--landing-muted);
}

.landing-waitlist__consent input {
  accent-color: var(--landing-forest);
}

/* One compact price card with the billing choice and pre-launch form inside. */
.landing-pricing {
  padding: clamp(3.75rem, 8vw, 6.5rem) 1rem clamp(4.75rem, 10vw, 7rem);
}

.landing-pricing__inner {
  gap: clamp(1.75rem, 4vw, 3rem);
}

.landing-pricing__plans {
  grid-template-columns: 1fr;
}

.landing-pricing__plan {
  max-width: 40rem;
  margin-inline: auto;
  overflow: hidden;
  padding: 0;
  border-radius: 1.15rem;
  box-shadow: 0 0.8rem 2.2rem rgba(47, 61, 51, 0.08);
}

.landing-pricing__intervals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.3rem;
  padding: 0.3rem;
  border-bottom: 1px solid rgba(55, 98, 76, 0.14);
  background: var(--landing-pale);
}

.landing-pricing__option {
  display: flex;
  min-height: 2.8rem;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.45rem 0.35rem;
  border: 0;
  border-radius: 0.75rem;
  color: var(--landing-muted);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 780;
  line-height: 1.15;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.landing-pricing__option:hover {
  color: var(--landing-forest-deep);
  background: rgba(255, 254, 249, 0.65);
}

.landing-pricing__option:active {
  transform: translateY(1px) scale(0.99);
}

.landing-pricing__option.is-active {
  color: var(--landing-white);
  background: var(--landing-forest);
  box-shadow: 0 0.25rem 0.7rem rgba(47, 61, 51, 0.14);
}

.landing-pricing__option-badge,
.landing-pricing__option-recommended {
  font-family: var(--hausl-font-meta, ui-monospace, monospace);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.landing-pricing__option-recommended {
  padding: 0.2rem 0.3rem;
  border-radius: 0.35rem;
  background: var(--landing-soft);
  text-transform: uppercase;
}

.landing-pricing__option.is-active .landing-pricing__option-recommended {
  color: var(--landing-forest-deep);
}

.landing-pricing__plan-body {
  padding: 1.25rem 1.25rem 1.35rem;
}

.landing-pricing__plan h3 {
  margin: 0 0 1.15rem;
  color: var(--landing-forest-deep);
  font-family: var(--hausl-font-meta, ui-monospace, monospace);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.landing-pricing__price strong {
  font-size: clamp(3.15rem, 13vw, 4.4rem);
  font-variant-numeric: tabular-nums;
}

.landing-pricing__note {
  margin: 0.55rem 0 1.3rem;
  line-height: 1.4;
  min-height: 1.4em; /* reserve space when monthly_hint is empty */
}

.landing-pricing__note[hidden] {
  display: none;
}

.landing-pricing__plan-body > ul {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  border-top: 1px solid var(--landing-line);
  list-style: none;
  padding: 1rem 0 0;
}

.landing-pricing__plan-body > ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: #45564b;
  font-size: 0.84rem;
}

.landing-pricing__plan-body > ul .ui-icon {
  width: 1rem;
  height: 1rem;
  flex: none;
  margin-top: 0.05rem;
  color: var(--landing-forest);
}

.landing-pricing__waitlist {
  margin-top: 1.25rem;
}

.landing-waitlist {
  padding-top: 1.15rem;
  border-top-color: rgba(47, 61, 51, 0.16);
}

.landing-waitlist__field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  font-weight: 750;
}

.landing-waitlist__field input {
  width: 100%;
  min-height: 3.05rem;
  padding: 0.7rem 0.85rem;
}

.landing-waitlist__field button {
  display: inline-flex;
  min-height: 3.05rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
}

.landing-pricing__microcopy {
  margin: 0.5rem 0 0;
  color: var(--landing-muted);
  font-size: 0.7rem;
  line-height: 1.35;
  text-align: center;
}

.landing-faq {
  padding: clamp(4.8rem, 11vw, 7.5rem) 1rem;
  background: var(--landing-paper);
}

.landing-faq > div {
  width: min(100%, 58rem);
  margin-inline: auto;
}

.landing-faq h2 {
  max-width: 31rem;
  margin-bottom: 1.5rem;
}

.landing-faq details {
  border-top-color: var(--landing-line);
}

.landing-faq details:last-child {
  border-bottom-color: var(--landing-line);
}

.landing-faq summary {
  min-height: 4rem;
  font-size: 0.94rem;
}

.landing-faq details p {
  max-width: 38rem;
  padding-bottom: 1.1rem;
  color: var(--landing-muted);
  font-size: 0.88rem;
}

.landing-final {
  min-height: 0;
  padding: clamp(5rem, 12vw, 8rem) 1rem clamp(5.5rem, 13vw, 8.5rem);
}

.landing-final > div {
  width: min(100%, 42rem);
}

.landing-final h2 {
  max-width: 31rem;
}

.landing-final__body {
  max-width: 31rem;
  margin: 0 auto 1.65rem;
  color: rgba(255, 254, 249, 0.74);
  font-size: 0.98rem;
}

.landing-final .landing-actions {
  width: min(100%, 25rem);
  grid-template-columns: 1fr;
  margin-inline: auto;
}

.landing-final .landing-button {
  width: 100%;
}

.landing-button:active,
.landing-waitlist__field button:active {
  transform: translateY(1px) scale(0.99);
}

@media (min-width: 760px) {
  .landing-results,
  .landing-use-cases,
  .landing-origin,
  .landing-pricing,
  .landing-faq,
  .landing-final {
    padding-inline: clamp(1.25rem, 6vw, 6rem);
  }

  .landing-results__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(22rem, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
  }

  .landing-results__cards .landing-results__timeline {
    margin-top: 0;
  }

  .landing-use-cases__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
  }

  .landing-use-cases__intro h2 {
    margin-bottom: 0;
  }

  .landing-use-cases__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    grid-template-areas:
      "family friends"
      "family retreat";
    gap: 0.75rem;
    margin-top: 1.75rem;
  }

  .landing-use-case--family {
    grid-area: family;
  }

  .landing-use-case--friends {
    grid-area: friends;
  }

  .landing-use-case--retreat {
    grid-area: retreat;
  }

  .landing-origin__inner {
    display: grid;
    grid-template-columns: minmax(18rem, 0.92fr) minmax(22rem, 1.08fr);
    gap: clamp(2.5rem, 7vw, 7rem);
    align-items: center;
  }

  .landing-origin__copy {
    margin-top: 0;
  }

  .landing-pricing__plan-body {
    padding: 1.5rem 1.75rem 1.6rem;
  }

  .landing-waitlist__field > div {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .landing-waitlist__field button {
    min-width: 12rem;
  }
}

@media (min-width: 1120px) {
  .landing-results__inner {
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }

  .landing-use-cases__grid {
    gap: 0.85rem;
  }

  .landing-origin__inner {
    grid-template-columns: minmax(26rem, 1fr) minmax(27rem, 0.95fr);
  }

  .landing-pricing__inner {
    gap: clamp(2rem, 4vw, 3rem);
  }

  .landing-pricing__intro,
  .landing-pricing__plans,
  .landing-waitlist {
    width: auto;
    margin-inline: 0;
  }

  .landing-pricing__plans {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* Responsive finalization: shared overflow guard and presentation-specific controls. */
.landing {
  overflow-x: clip;
  overflow-y: visible;
}

.landing-family-preview {
  overflow-x: clip;
  overflow-y: visible;
}

.landing-features {
  /* Prevent sticky visual bleed without breaking sticky itself. */
  overflow-x: clip;
  overflow-y: visible;
  contain: paint;
}

.landing-features__count {
  flex: none;
  color: var(--landing-muted);
  font-family: var(--hausl-font-meta, ui-monospace, monospace);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.landing-features__controls,
.landing-features__desktop-story {
  display: none;
}

.landing-faq__list {
  border-top: 1px solid var(--landing-line);
}

.landing-faq__item {
  border-bottom: 1px solid var(--landing-line);
}

.landing-faq__question {
  display: flex;
  width: 100%;
  min-height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0;
  border: 0;
  color: var(--landing-ink);
  background: transparent;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 760;
  text-align: left;
  cursor: pointer;
}

.landing-faq__question:hover {
  color: var(--landing-forest-deep);
}

.landing-faq__indicator {
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  flex: none;
  place-items: center;
  border: 1px solid rgba(55, 98, 76, 0.26);
  border-radius: 50%;
  color: var(--landing-forest);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.landing-faq__question.is-open .landing-faq__indicator {
  color: var(--landing-white);
  background: var(--landing-forest);
  transform: rotate(45deg);
}

.landing-faq__answer {
  max-width: 38rem;
  padding: 0 2.65rem 1.1rem 0;
}

.landing-faq__answer p {
  margin: 0;
  color: var(--landing-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.landing-product-story__nav-item,
.landing-product-story__nav-item:hover,
.landing-product-story__nav-item:focus-visible {
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 760px) and (max-width: 1023px) {
  .landing-hero {
    min-height: min(44rem, 92svh);
  }

  .landing-hero__copy {
    min-height: min(44rem, 92svh);
    max-width: 44rem;
    padding: clamp(7rem, 11vw, 9rem) clamp(2rem, 8vw, 5rem) clamp(2.5rem, 6vw, 4rem);
  }

  .landing-hero__kicker {
    max-width: 28rem;
    margin-bottom: 0.9rem;
    font-size: 0.76rem;
  }

  .landing-hero h1 {
    max-width: 16ch;
    font-size: clamp(3rem, 6vw, 4.1rem);
    line-height: 0.98;
  }

  .landing-hero__lead {
    max-width: 31rem;
    font-size: clamp(1rem, 1.8vw, 1.12rem);
  }

  .landing h2 {
    max-width: 25rem;
    font-size: clamp(2.4rem, 5.2vw, 3.35rem);
    line-height: 1;
  }

  .landing-family-preview {
    grid-template-columns: minmax(15rem, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(1.5rem, 3vw, 3rem);
    padding-inline: clamp(1.5rem, 5vw, 4rem);
  }

  .landing-family-preview__media {
    --family-phone-width: min(14rem, 38%);
    width: min(100%, 33rem);
  }

  .landing-family-preview__copy h2,
  .landing-problem h2,
  .landing-features__header h2,
  .landing-results__intro h2,
  .landing-use-cases__intro h2,
  .landing-pricing__intro h2 {
    max-width: 25rem;
  }

  .landing-outcome h2 {
    max-width: 29rem;
  }

  .landing-results__inner {
    gap: clamp(2.5rem, 6vw, 5rem);
  }

  .landing-problem__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    column-gap: clamp(1rem, 3vw, 2.5rem);
    max-width: 70rem;
  }

  .landing-problem__inner > .landing-section-label,
  .landing-problem__inner > h2,
  .landing-problem__inner > .landing-section-intro {
    grid-column: 1 / -1;
  }

  .landing-problem__scatter {
    grid-column: 1;
    margin: 1.8rem 0 0;
  }

  .landing-problem__bridge {
    grid-column: 2;
    align-self: center;
    margin: 1.8rem 0 0;
  }

  .landing-problem__bridge .ui-icon {
    transform: rotate(-90deg);
  }

  .landing-problem__target {
    grid-column: 3;
    align-self: center;
    margin: 1.8rem 0 0;
  }

  .landing-features__track {
    grid-auto-columns: minmax(70%, 78%);
  }

  .landing-features__controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.55rem;
    padding: 0.35rem clamp(1.25rem, 4vw, 3rem) 0;
  }

  .landing-features__controls-count {
    min-width: 3.2rem;
    color: var(--landing-muted);
    font-family: var(--hausl-font-meta, ui-monospace, monospace);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
  }

  .landing-features__arrow {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-items: center;
    border: 1px solid rgba(55, 98, 76, 0.28);
    border-radius: 50%;
    color: var(--landing-forest-deep);
    background: var(--landing-white);
    cursor: pointer;
  }

  .landing-features__arrow:hover {
    color: var(--landing-white);
    background: var(--landing-forest);
  }

  .landing-features__arrow .ui-icon {
    width: 1.1rem;
    height: 1.1rem;
  }

  .landing-features__footer .landing-features__count {
    display: none;
  }

  .landing-pricing__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
    align-items: start;
  }

  .landing-pricing__intro {
    grid-column: 1;
  }

  .landing-pricing__plans {
    grid-column: 2;
  }

  .landing-pricing__plan {
    grid-column: auto;
  }

  .landing-waitlist {
    grid-column: 1 / -1;
  }

  .landing-header-links {
    display: flex;
    align-items: center;
    gap: clamp(0.55rem, 1.5vw, 1rem);
    margin-right: 0.35rem;
  }

  .landing-header-links a {
    color: rgba(255, 254, 249, 0.86);
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
  }
}

@media (min-width: 1024px) {
  body:has(.landing) .app-header {
    background: #fbfaf5 !important;
    -webkit-backdrop-filter: blur(12px) saturate(0.92);
    backdrop-filter: blur(12px) saturate(0.92);
  }

  body:has(.landing) .app-header::before {
    display: none;
  }

  .landing-header-links {
    display: flex;
    align-items: center;
    gap: clamp(0.8rem, 1.8vw, 1.5rem);
    margin-right: 1rem;
  }

  .landing-header-links a {
    color: var(--landing-forest-deep);
    font-size: 0.8rem;
    font-weight: 720;
    text-decoration: none;
  }

  .landing-header-links a:hover,
  .landing-header-links a:focus-visible {
    color: var(--landing-forest);
  }

  body:has(.landing) .app-header.is-scrolled .landing-header-links a,
  body:has(.landing) .app-header.is-scrolled .landing-header-login {
    color: var(--landing-forest-deep);
  }

  .landing-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    min-height: clamp(36rem, 53vw, 46rem);
    color: var(--landing-forest-deep);
    background: var(--landing-pale);
  }

  .landing-hero__media {
    position: relative;
    inset: auto;
    grid-column: 2;
    min-height: clamp(36rem, 53vw, 46rem);
  }

  .landing-hero__media::after {
    background:
      linear-gradient(180deg, rgba(8, 22, 15, 0.06), rgba(7, 28, 18, 0.64)),
      linear-gradient(90deg, rgba(237, 243, 237, 0.16), transparent 32%);
  }

  .landing-hero__copy {
    display: flex;
    grid-column: 1;
    grid-row: 1;
    min-height: clamp(36rem, 53vw, 46rem);
    max-width: 42rem;
    justify-content: center;
    padding: clamp(7rem, 10vw, 9rem) clamp(1.5rem, 5vw, 5rem) clamp(3rem, 6vw, 5rem) max(1.5rem, calc((100vw - 80rem) / 2));
  }

  .landing-hero h1 {
    max-width: 16ch;
    color: var(--landing-forest-deep);
    /* Smaller measure/font scale so the German headline wraps ~3 lines. */
    font-size: clamp(3.1rem, 4.6vw, 4.6rem);
    line-height: 0.98;
  }

  .landing-hero__lead {
    color: #4f6356;
    font-size: clamp(1rem, 1.35vw, 1.15rem);
  }

  .landing-hero .landing-button--light {
    color: var(--landing-white);
    background: var(--landing-forest);
  }

  .landing-hero .landing-button--ghost {
    border-color: rgba(24, 59, 43, 0.28);
    color: var(--landing-forest-deep);
    background: rgba(255, 254, 249, 0.45);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .landing-hero .landing-button--ghost:hover {
    background: var(--landing-white);
  }

  .landing-family-preview {
    padding-inline: max(1.5rem, calc((100vw - 80rem) / 2));
  }

  .landing-problem {
    padding-inline: max(1.5rem, calc((100vw - 80rem) / 2));
  }

  .landing-problem__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    column-gap: clamp(2rem, 5vw, 6rem);
    max-width: 80rem;
  }

  .landing-problem__inner > .landing-section-label,
  .landing-problem__inner > h2,
  .landing-problem__inner > .landing-section-intro {
    grid-column: 1 / -1;
  }

  .landing-problem__scatter {
    grid-column: 1;
    margin: 2.4rem 0 0;
    align-self: center;
  }

  .landing-problem__bridge {
    grid-column: 2;
    align-self: center;
    margin: 2.4rem 0 0;
  }

  .landing-problem__bridge .ui-icon {
    transform: rotate(-90deg);
  }

  .landing-problem__target {
    grid-column: 3;
    align-self: center;
    margin: 2.4rem 0 0;
  }

  .landing-features {
    display: grid;
    grid-template-columns: minmax(18rem, 0.84fr) minmax(0, 1.16fr);
    column-gap: clamp(2.5rem, 6vw, 7rem);
    padding-inline: max(1.5rem, calc((100vw - 80rem) / 2));
    overflow-x: clip;
    overflow-y: visible;
  }

  .landing-features__scroller {
    display: block;
    grid-column: 1 / -1;
    /* One typical mouse-wheel tick is ~100px; two ticks should change the shot. */
    height: calc(100svh + (7 * 12rem));
  }

  .landing-product-story__pin {
    position: sticky;
    top: 4.5rem;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(16rem, 0.78fr) minmax(0, 1.22fr);
    grid-template-rows: auto minmax(0, 1fr);
    column-gap: clamp(2.5rem, 6vw, 7rem);
    /* Fill the viewport but never taller than the screenshot naturally needs */
    max-height: calc(100svh - 5.25rem);
    min-height: 0;
  }

  .landing-features__header {
    position: relative;
    z-index: 1;
    grid-column: 1;
    grid-row: 1;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0 0 0.7rem;
    background: transparent;
    pointer-events: auto;
  }

  .landing-features__carousel {
    display: none;
  }

  .landing-features__header h2 {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 11em;
    margin: 0;
    padding: 0;
    background: transparent;
    font-size: clamp(2.05rem, 2.6vw, 3.1rem);
    line-height: 1.02;
    pointer-events: auto;
  }

  .landing-features__header h2::after {
    display: none;
  }

  .landing-features__header::after {
    display: none;
  }

  .landing-features__desktop-story {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    z-index: 0;
    display: grid;
    grid-template-columns: subgrid;
    grid-template-rows: subgrid;
    min-height: 0;
    pointer-events: none;
  }

  .landing-product-story__nav {
    grid-column: 1;
    grid-row: 2;
    display: grid;
    align-content: start;
    align-self: start;
    gap: 0;
    min-height: 0;
    padding-bottom: 0;
    pointer-events: auto;
  }

  .landing-product-story__nav-item {
    display: grid;
    grid-template-columns: 2.1rem minmax(0, 1fr);
    gap: 0.65rem;
    width: 100%;
    min-height: 0;
    align-items: center;
    padding: 0.48rem 0.7rem 0.48rem 0;
    border: 0;
    border-top: 1px solid rgba(24, 59, 43, 0.14);
    color: var(--landing-muted);
    background: transparent;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: color 160ms ease, background-color 160ms ease, padding-left 160ms ease;
  }

  .landing-product-story__nav-item:last-child {
    border-bottom: 1px solid rgba(24, 59, 43, 0.14);
  }

  .landing-product-story__nav-item:hover,
  .landing-product-story__nav-item.is-active {
    color: var(--landing-forest-deep);
    background: rgba(255, 254, 249, 0.52);
    padding-left: 0.8rem;
  }

  .landing-product-story__number {
    padding-top: 0.18rem;
    color: var(--landing-forest);
    font-family: var(--hausl-font-meta, ui-monospace, monospace);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
  }

  .landing-product-story__nav-copy {
    display: grid;
    gap: 0.08rem;
    min-width: 0;
  }

  .landing-product-story__nav-copy small {
    color: inherit;
    font-family: var(--hausl-font-meta, ui-monospace, monospace);
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.15;
    text-transform: uppercase;
  }

  .landing-product-story__nav-copy strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--landing-forest-deep);
    font-family: var(--hausl-font-editorial, "Iowan Old Style", "Palatino Linotype", Palatino, serif);
    font-size: clamp(1.05rem, 1.3vw, 1.32rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.12;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .landing-product-story__nav-copy > span {
    max-width: 28rem;
    color: var(--landing-muted);
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .landing-product-story__visual {
    grid-column: 2;
    grid-row: 1 / -1;
    position: relative;
    top: auto;
    display: flex;
    min-width: 0;
    min-height: 0;
    height: auto;
    flex-direction: column;
    align-self: start;
    pointer-events: auto;
  }

  .landing-product-story__panel {
    margin: 0;
  }

  .landing-product-story__panel.is-active {
    display: block;
  }

  .landing-product-story__panel[hidden] {
    display: none;
  }

  .landing-product-story__visual-stage {
    position: relative;
    display: grid;
    min-height: clamp(22rem, calc(100svh - 12rem), 38rem);
    place-items: center;
    padding: clamp(1.5rem, 3vw, 3rem) clamp(0.75rem, 3vw, 3rem) clamp(1.5rem, 3vw, 3rem);
    border-radius: 1.5rem;
    background:
      radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.95), transparent 52%),
      linear-gradient(145deg, #e4ebe3, #cfdcd1);
    overflow: hidden;
  }

  .landing-product-story__phone {
    position: absolute;
    right: clamp(0.4rem, 2.2vw, 2rem);
    bottom: clamp(0.7rem, 2vw, 2rem);
    z-index: 2;
    width: clamp(8.25rem, 14vw, 12rem);
    transform: rotate(4deg);
  }

  .landing-product-story__visual-stage {
    place-items: center;
  }

  .landing-product-story__phone {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(15.5rem, 46%);
    transform: rotate(2.5deg);
  }

  .landing-product-story__caption {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.9rem;
    color: var(--landing-muted);
    font-family: var(--hausl-font-meta, ui-monospace, monospace);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .landing-product-story__caption strong {
    color: var(--landing-forest-deep);
    font: inherit;
  }

  .landing-demo-link-form {
    grid-column: 1 / -1;
    width: min(100%, 80rem);
    margin: clamp(1.25rem, 2vw, 2rem) auto 0;
    padding-inline: 0;
  }

  .landing-pricing__inner {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(2rem, 5vw, 5.5rem);
    align-items: start;
  }

  .landing-pricing__intro {
    grid-column: 1;
  }

  .landing-pricing__plans {
    grid-column: 2;
  }

  .landing-pricing__demo,
  .landing-waitlist {
    grid-column: 1 / -1;
  }

  .landing-faq__inner {
    width: min(100%, 53.125rem) !important;
  }

  .landing-final .landing-actions {
    width: min(100%, 34rem);
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-final .landing-button {
    width: 100%;
  }

  @supports not (grid-template-columns: subgrid) {
    .landing-features__desktop-story {
      grid-column: 1 / -1;
      grid-row: 2;
      display: grid;
      grid-template-columns: minmax(16rem, 0.78fr) minmax(0, 1.22fr);
      grid-template-rows: minmax(0, 1fr);
      column-gap: clamp(2.5rem, 6vw, 7rem);
      pointer-events: auto;
    }

    .landing-product-story__nav,
    .landing-product-story__visual {
      grid-row: 1;
    }
  }
}

@media (min-width: 1024px) and (max-width: 1119px) {
  .landing-pricing__inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(20rem, 1.15fr);
    align-items: start;
  }

  .landing-pricing__intro {
    grid-column: 1;
  }

  .landing-pricing__plans {
    grid-column: 2;
  }

  .landing-pricing__plan {
    grid-column: auto;
  }

  .landing-waitlist {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  /* Tablet landscape gets a balanced split: enough measure for the category
     line and headline, while the house photo remains the visual anchor. */
  .landing-hero {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    min-height: clamp(35rem, 64vw, 43rem);
  }

  .landing-hero__media {
    min-height: clamp(35rem, 64vw, 43rem);
  }

  .landing-hero__copy {
    min-height: clamp(35rem, 64vw, 43rem);
    max-width: none;
    padding: clamp(6.5rem, 9vw, 8rem) clamp(1.75rem, 4vw, 3rem) clamp(2.5rem, 5vw, 4rem) max(1.75rem, calc((100vw - 78rem) / 2));
  }

  .landing-hero__kicker {
    max-width: 22rem;
    margin-bottom: 0.8rem;
    color: var(--landing-forest);
    font-size: 0.72rem;
  }

  .landing-hero h1 {
    /* Tablet landscape: ensure the headline wraps to ~3 lines. */
    max-width: 26rem;
    font-size: clamp(2.6rem, 4.1vw, 3.35rem);
    line-height: 0.98;
  }

  .landing-hero__lead {
    max-width: 26rem;
    font-size: clamp(0.96rem, 1.3vw, 1.06rem);
  }
}

@media (min-width: 1280px) {
  /* Keep the first visual as a full-bleed image on large screens. The copy
     remains in the shared content column, so the image can carry the page
     without turning the hero into a narrow split panel. */
  .landing-hero {
    display: block;
    min-height: clamp(40rem, 56vw, 52rem);
  }

  .landing-hero__media {
    position: absolute;
    inset: 0;
    min-height: 0;
  }

  .landing-hero__media::after {
    background:
      linear-gradient(90deg, rgba(8, 22, 15, 0.76) 0%, rgba(8, 22, 15, 0.45) 34%, rgba(7, 28, 18, 0.08) 68%, rgba(7, 28, 18, 0.3) 100%),
      linear-gradient(180deg, rgba(8, 22, 15, 0.18), rgba(7, 28, 18, 0.78));
  }

  .landing-hero__copy {
    width: min(100%, 80rem);
    min-height: clamp(40rem, 56vw, 52rem);
    max-width: none;
    margin-inline: auto;
    padding: clamp(9rem, 12vw, 12rem) clamp(1.5rem, 5vw, 5rem) clamp(4rem, 7vw, 6rem);
  }

  .landing-hero h1 {
    max-width: 38rem;
    color: var(--landing-white);
    /* Slightly reduced font scaling on large screens for fewer wraps. */
    font-size: clamp(3.2rem, 4.2vw, 4.8rem);
    line-height: 0.98;
  }

  .landing-hero__lead {
    color: rgba(255, 254, 249, 0.84);
  }

  .landing-hero .landing-button--ghost {
    border-color: rgba(255, 254, 249, 0.42);
    color: var(--landing-white);
    background: rgba(255, 254, 249, 0.1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }

  .landing-hero .landing-button--ghost:hover {
    background: rgba(255, 254, 249, 0.2);
  }

  .landing-family-preview {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 5vw, 5rem);
  }

  .landing-family-preview__copy {
    max-width: 40rem;
  }

  .landing-family-preview__copy h2,
  .landing-problem h2 {
    max-width: 42rem;
    font-size: clamp(3rem, 4.35vw, 5rem);
  }

  .landing-family-preview__media,
  .landing-family-preview__stage {
    width: min(100%, 42rem);
  }

  .landing-family-preview__stage {
    aspect-ratio: 1.08 / 1;
  }

  .landing-family-preview__media {
    --family-phone-width: min(18rem, 38%);
  }

}

@media (min-width: 1024px) and (max-height: 760px) {
  .landing-features__header h2 {
    font-size: clamp(1.45rem, 2vw, 1.85rem);
  }

  .landing-product-story__nav-copy small {
    display: none;
  }

  .landing-product-story__phone {
    width: min(13.5rem, 42%);
  }
}
