/* ─────────────────────────────────────────────────────────────
   Zimmer landing — production styles (v3 — MVP layered hero).
   Tokens mirror screenshot-iterations.jsx so the site stays
   on-brand with the App Store screenshots.
   ───────────────────────────────────────────────────────────── */

:root {
  /* Brand palette */
  --cream: #f7f2ee;
  --cream-warm: #f1e9e0;
  --peach: #f0d4a8;
  --amber: #e8956d;
  --terra: #d4763a;
  --terra-deep: #b85f28;
  --deep: #3b2412;
  --deep-soft: #5a3d24;
  --ink: #2a1a0c;
  --hairline: rgba(59, 36, 18, 0.10);
  --hairline-strong: rgba(59, 36, 18, 0.18);
  --muted: rgba(59, 36, 18, 0.62);
  --muted-soft: rgba(59, 36, 18, 0.48);
  --leaf: #4f7a4a;

  /* Type */
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1200px;
  --container-wide: 1320px;
  --nav-h: 68px; /* mirrors .topbar-inner height — keep in sync with mobile override */
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(59, 36, 18, 0.06);
  --shadow-md: 0 12px 30px -10px rgba(59, 36, 18, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(59, 36, 18, 0.30), 0 8px 18px -8px rgba(59, 36, 18, 0.18);
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--deep);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--terra); outline-offset: 3px; border-radius: 4px; }

/* ═══════════════════════════════════════════════════════════
   DEVICE TOGGLE — single source of truth
   Mobile <720px  ·  Desktop ≥720px (tablet inkluderet)
   JS-guarden bruger SAMME værdi: matchMedia('(max-width: 719.98px)')
   Mobile-only sektioner (.hero-art-mobile / .sp-mobile / .trust-mobile)
   un-hides her efterhånden som de bygges (Fase 3-6) — hver med sin
   egen display-værdi, så vi undgår display:block-footgun.
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 719.98px) {
  /* !important = hård device-gate ("denne DOM findes ikke på denne enhed").
     Immunt mod cascade-order — vigtigt fordi senere komponent-regler
     (.scroll-cue display:flex, .paths[data-path-state] display:flex) ellers
     vinder på source-order/specificity, og fordi Fase 1b reorg flytter blokke. */
  .hero-stage, .scroll-cue, .paths, .path-bridge,
  .outcome, .atstove, .bytheway, .trust-desktop, .final-cta { display: none !important; }
}

/* Mobile-only sektioner: skjult by default på alle viewports. Hver vises
   i sin egen @media (max-width: 719.98px)-komponentblok MED sin rigtige
   display-værdi — så vi undgår display:block-footgun (review #8). */
.hero-art-mobile,
.sp-mobile,
.mobile-feature-stack,
.trust-mobile,
.footer-cta-mobile { display: none; }

/* ── Typography ──────────────────────────────────────── */
.h-serif {
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.04;
  color: var(--ink);
  text-wrap: balance;
  margin: 0;
}
.h-serif em {
  font-style: italic;
  font-weight: 600;
  color: var(--terra);
}
h1.h-serif { font-size: clamp(2.4rem, 5.6vw, 4.4rem); }
h2.h-serif { font-size: clamp(2.0rem, 4.4vw, 3.4rem); }
h3.h-serif { font-size: clamp(1.4rem, 2.4vw, 1.8rem); letter-spacing: -0.015em; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
}
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--muted);
  line-height: 1.5;
  text-wrap: pretty;
  max-width: 56ch;
}

/* ── Container ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide { max-width: var(--container-wide); }

/* ── Buttons / CTA ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 16px 32px -10px rgba(59,36,18,0.32); }
.btn-ghost {
  background: transparent;
  color: var(--deep);
  border: 1px solid var(--hairline-strong);
}
.btn-ghost:hover { background: rgba(59,36,18,0.04); }

/* App Store badge */
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px 12px 18px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 14px;
  font-family: var(--sans);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: var(--shadow-md);
}
.app-badge:hover { transform: translateY(-1px); box-shadow: 0 18px 36px -12px rgba(59,36,18,0.34); }
.app-badge .badge-icon { width: 28px; height: 28px; flex: 0 0 auto; }
.app-badge .badge-copy { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.app-badge .badge-top { font-size: 0.68rem; opacity: 0.78; letter-spacing: 0.04em; }
.app-badge .badge-bottom { font-size: 1.18rem; font-weight: 600; letter-spacing: -0.01em; }
.hero-download { position: relative; display: inline-block; }
.hero-mascot-cta {
  position: absolute;
  left: 75%;
  bottom: 100%;
  width: 90px;
  margin-bottom: -24px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 7px 10px rgba(59,36,18,0.20));
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.hero-download:hover .app-badge { transform: translateY(-4px); box-shadow: 0 22px 40px -12px rgba(59,36,18,0.36); }
.hero-download:hover .hero-mascot-cta { transform: translateX(-50%) translateY(-4px); }
.android-note {
  font-size: 0.82rem;
  color: var(--muted-soft);
  margin-top: 10px;
}
.android-note a { color: var(--terra-deep); border-bottom: 1px solid currentColor; }

/* ── Topbar ──────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 238, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.topbar.is-scrolled {
  border-bottom-color: var(--hairline);
  background: rgba(247, 242, 238, 0.92);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  background:
    radial-gradient(110% 110% at 30% 25%, var(--peach) 0%, var(--amber) 55%, var(--terra) 100%);
  display: grid; place-items: center;
  color: white;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 4px 12px -4px rgba(212,118,58,0.45);
}
.brand-mark svg { width: 20px; height: 20px; }
.brand-wordmark { height: 1.7rem; width: auto; display: block; }
.plus-note { padding: 1.75rem 0 0.25rem; text-align: center; }
.plus-note p { color: var(--muted); font-size: 0.95rem; max-width: 34rem; margin: 0 auto; line-height: 1.55; }
.topbar-cta { display: inline-flex; align-items: center; gap: 14px; }
.topbar-link {
  font-size: 0.94rem;
  color: var(--muted);
  font-weight: 500;
}
.topbar-link:hover { color: var(--deep); }
.topbar-get {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--terra-deep);
  padding: 8px 4px;
  transition: gap 0.2s ease, color 0.2s ease;
}
.topbar-get:hover { gap: 10px; color: var(--terra); }
.topbar-get .arrow { transition: transform 0.2s ease; display: inline-block; }
.topbar-get:hover .arrow { transform: translateX(2px); }

@media (max-width: 719.98px) {
  :root { --nav-h: 60px; }
  .topbar-link { display: none; }
  /* Udforsk er sidens krog — den eneste tekst-link der overlever på mobil */
  .topbar-link-explore { display: inline; }
  .topbar-inner { height: 60px; }
  .brand-wordmark { height: 1.5rem; }
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 24px 0 0;
  overflow: hidden;
  min-height: calc(100vh - 68px);
  /* Lavere alphas + bredere falloff + oklab-interpolation eliminerer banding
     mellem cream og warm-peach. Færre overlap-peaks i højre side hvor bezels
     fader sent ind — gradient skal være rolig dér før de lander. */
  background:
    linear-gradient(to bottom in oklab, transparent calc(100% - 120px), var(--cream) 100%),
    radial-gradient(110% 85% at 70% 5% in oklab, rgba(232,149,109,0.22) 0%, transparent 78%),
    radial-gradient(85% 70% at 8% 25% in oklab, rgba(240,212,168,0.26) 0%, transparent 82%),
    radial-gradient(95% 75% at 85% 95% in oklab, rgba(232,149,109,0.18) 0%, transparent 80%),
    var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
  padding-bottom: 24px;
}
.hero-copy { padding: 16px 0 0; }
.hero-stage-layered { margin-top: 48px; }
.hero-copy .eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.hero-copy .eyebrow::before {
  content: ""; width: 26px; height: 1px; background: currentColor; opacity: 0.5;
}
.hero-copy h1 { font-size: clamp(3.2rem, 6.3vw, 5.5rem); }
.hero-copy .lead { margin: 22px 0 30px; font-size: clamp(1.28rem, 2vw, 1.55rem); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 110px; }
.hero-meta {
  margin-top: 18px;
  display: flex; flex-wrap: wrap; gap: 18px;
  font-size: 0.86rem;
  color: var(--muted-soft);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta svg { width: 14px; height: 14px; opacity: 0.7; }

/* ── Hero stage — layered phones (3 z-stacked, staggered entry) ── */
.hero-stage {
  position: relative;
  aspect-ratio: 5 / 6;
  width: 100%;
  max-height: calc(100vh - 160px);
}
.hero-floor {
  position: absolute;
  left: -25%;
  right: -25%;
  bottom: -2%;
  height: 38%;
  background: radial-gradient(ellipse 70% 110% at 50% 0% in oklab,
    rgba(232,149,109,0.20) 0%,
    rgba(240,212,168,0.10) 50%,
    transparent 85%);
  /* Mask top-edge så hard cutoff ikke skaber en visible streg ind i hero-bg.
     Bottom 50% er solid, top 50% fader til transparent — blender ind i hero. */
  -webkit-mask-image: linear-gradient(to top, black 45%, transparent 100%);
          mask-image: linear-gradient(to top, black 45%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-stage-layered .hero-phone {
  position: absolute;
  transition: opacity 1.45s cubic-bezier(.2,.7,.2,1),
              filter 1.45s cubic-bezier(.2,.7,.2,1),
              transform 1.45s cubic-bezier(.2,.7,.2,1);
  opacity: 0;
  filter: blur(8px);
  translate: 0 var(--parallax-y, 0px);
  will-change: translate, opacity, filter;
}
.hero-stage-layered .hero-phone.is-in {
  filter: blur(0);
}
/* Back + mid starter gemt bag front. Lille delay (~14% af glide) skjuler
   "spøgelses-bezel" bag front, derefter langsom gradual opacity-fade over
   resten af glide så hele bevægelsen er synlig — ikke et blink-in midtvejs. */
.hero-stage-layered .hero-phone-back,
.hero-stage-layered .hero-phone-mid {
  transition: opacity 1.25s cubic-bezier(.2,.7,.2,1) 0.2s,
              filter 1.45s cubic-bezier(.2,.7,.2,1),
              transform 1.45s cubic-bezier(.2,.7,.2,1);
}
.hero-stage-layered .hero-phone img.phone-bezel {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 24px 40px rgba(59,36,18,0.18));
}
.hero-stage-layered .hero-phone .phone-screen {
  position: absolute;
  left: 5.1%;
  right: 5.1%;
  top: 2.2%;
  bottom: 2.2%;
  border-radius: 9%;
  overflow: hidden;
  background: var(--cream);
  z-index: 1;
}
.hero-stage-layered .hero-phone .phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Back: indkøbsliste — small, tilted left, semi-transparent */
.hero-stage-layered .hero-phone-back {
  width: 46%;
  left: 2%;
  bottom: 6%;
  z-index: 1;
  transform: rotate(-8deg) scale(0.82);
}
.hero-stage-layered .hero-phone-back img.phone-bezel {
  filter: drop-shadow(0 16px 28px rgba(59,36,18,0.16));
}
.hero-stage-layered .hero-phone-back.is-in {
  transform: rotate(-8deg) scale(0.84);
  opacity: 0.72;
}

/* Mid: zimmie-chat — mid-z, slight right tilt */
.hero-stage-layered .hero-phone-mid {
  width: 50%;
  right: 2%;
  top: 4%;
  z-index: 2;
  transform: rotate(7deg) scale(0.86);
}
.hero-stage-layered .hero-phone-mid img.phone-bezel {
  filter: drop-shadow(0 20px 36px rgba(59,36,18,0.20));
}
.hero-stage-layered .hero-phone-mid.is-in {
  transform: rotate(7deg) scale(0.88);
  opacity: 0.86;
}

/* Front: calendar — primary, centered */
.hero-stage-layered .hero-phone-front {
  width: 58%;
  left: 50%;
  bottom: 0;
  z-index: 3;
  transform: translate(-50%, 0) scale(0.98);
}
.hero-stage-layered .hero-phone-front img.phone-bezel {
  filter: drop-shadow(0 36px 56px rgba(59,36,18,0.24));
}
.hero-stage-layered .hero-phone-front.is-in {
  transform: translate(-50%, 0) scale(1);
  opacity: 1;
}

.hero-mascot {
  position: absolute;
  left: -10%;
  bottom: 4%;
  width: 28%;
  z-index: 4;
  filter: drop-shadow(0 18px 22px rgba(59,36,18,0.22));
  animation: none;
  pointer-events: none;
  translate: 0 var(--parallax-y, 0px);
  /* CSS individual `scale` property — separat fra transform så floaty's
     `transform: translateY()` ikke overrider scale-state under fade-in. */
  scale: 1;
  transform-origin: 60% 80%;
  opacity: 0;
  transition: opacity 2.7s cubic-bezier(.2,.7,.2,1), scale 2.7s cubic-bezier(.2,.7,.2,1);
  will-change: translate, opacity, scale;
}
.hero-mascot.is-in {
  opacity: 1;
  scale: 1;
}
@media (prefers-reduced-motion: reduce) {
  .hero-mascot { opacity: 1; scale: 1; transition: none; }
}

/* ── Scroll cue (hero bottom) ── */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-soft);
  font-weight: 600;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.3s ease;
}
.scroll-cue-arrow {
  width: 14px;
  height: 18px;
  animation: scroll-cue-bounce 2.2s ease-in-out infinite;
}
@keyframes scroll-cue-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.45; }
  50% { transform: translateY(4px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue-arrow { animation: none; opacity: 0.7; }
  .hero-stage-layered .hero-phone,
  .hero-mascot { translate: 0 0; will-change: auto; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-mascot { animation: none; }
  .hero-stage-layered .hero-phone { transition: opacity 0.2s ease; }
}

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 0;
    min-height: 0;
    align-items: stretch;
  }
  .hero-copy { padding: 16px 0 0; text-align: center; align-self: stretch; }
  .hero-copy .lead { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-meta { justify-content: center; }
  .hero-stage {
    aspect-ratio: 1 / 1.05;
    max-width: 520px;
    max-height: none;
    margin: 0 auto;
  }
  .hero-mascot { width: 24%; left: 0; bottom: 0; }
}

@media (max-width: 520px) {
  .hero-stage-layered .hero-phone-back { width: 50%; left: -2%; }
  .hero-stage-layered .hero-phone-mid { width: 54%; right: -2%; }
  .hero-stage-layered .hero-phone-front { width: 62%; }
}

/* ═══ MOBILE ONLY — hero (Fase 3, supersimpel beat 1) ═══════════════════
   .hero-copy deles med desktop; her scopes mobil-overrides væk:
   ghost-link (#paths er desktop-only) + meta-checkmarks skjules,
   .hero arver ikke desktop'ens calc(100vh-68px)-skal. */
@media (max-width: 719.98px) {
  /* Viewport-komponeret hero: topbar (--nav-h, sticky/in-flow) + hero = én skærm.
     hero-copy i toppen, hero-art forankret i bunden via margin-top:auto. */
  .hero {
    min-height: calc(100svh - var(--nav-h));
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .hero-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 0;
    text-align: center;
  }
  /* display:contents flader hero-copy ud så dens børn bliver direkte
     flex-children af hero-grid — så kan vi reordere art mellem lead og CTA */
  .hero-copy {
    display: contents;
  }
  .hero-copy .eyebrow {
    order: 1;
    margin-bottom: 12px;
    margin-top: clamp(14px, 3.5vh, 28px);
  }
  .hero-copy h1 { order: 2; font-size: clamp(1.7rem, 6.2vw, 2.25rem); }
  .hero-copy .lead {
    order: 3;
    font-size: 0.94rem;
    line-height: 1.45;
    margin: 8px auto 0;
    max-width: 28ch;
  }
  .hero-copy .btn-ghost { display: none; }
  .hero-meta { display: none; }
  .hero-mascot-cta { display: none; }
  .hero-cta { order: 5; justify-content: center; margin-top: 36px; }
  .android-note { order: 6; text-align: center; font-size: 0.82rem; margin-top: 14px; }

  /* Runde 8: recomposeret — telefonen lige-på og centreret (Ved gryden-sproget),
     Zimmie krympet til "peeker" ved telefonens nederste venstre hjørne. Blob =
     blød bred wash der bleeder ud over skærmkanten, så ingen kant kan ses.
     margin-top:auto skubber art + CTA + android mod bunden af heroen. */
  .hero-art-mobile {
    order: 4;
    display: block;
    position: relative;
    width: 100%;
    margin: 0 auto;
    margin-top: auto;
    height: clamp(260px, 38svh, 340px);
  }
  .hero-art-blob {
    position: absolute;
    left: 50%;
    bottom: -2%;
    transform: translateX(-50%);
    width: 165%;
    max-width: none;
    aspect-ratio: 1 / 0.62;
    background:
      radial-gradient(56% 52% at 50% 46%, rgba(232,149,109,0.30) 0%, rgba(232,149,109,0.18) 40%, rgba(232,149,109,0.07) 62%, rgba(232,149,109,0) 82%),
      radial-gradient(74% 36% at 50% 66%, rgba(240,212,168,0.5) 0%, rgba(240,212,168,0.24) 44%, rgba(240,212,168,0) 82%);
    z-index: 0;
  }
  /* Runde 8d: Zimmie m. notesblok VED SIDEN AF telefonen (ikke foran, ikke
     bagved) — width-styret så den altid passer i venstre-zonen; telefonen
     rykket en anelse til højre (57%) for at give plads. */
  .hero-art-mascot {
    position: absolute;
    z-index: 1;
    left: 1.5%;
    bottom: 0;
    width: clamp(62px, 19vw, 86px);
    height: auto;
    max-width: none;
    margin: 0;
    filter: drop-shadow(0 10px 16px rgba(59,36,18,0.22));
    animation: none;
  }
  .hero-art-phone {
    position: absolute;
    z-index: 1;
    left: 57%;
    bottom: 0;
    height: 100%;
    /* Eksplicit ratio (bezel-webp = 1470×3000) — uden den falder abs-elementet
       tilbage på shrink-to-fit, hvor left:50% halverer available width og
       max-width:100% klemmer/strækker bezelen. */
    aspect-ratio: 1470 / 3000;
    width: auto;
    transform: translateX(-50%);
    transform-origin: bottom center;
  }
  .hero-art-phone .phone-bezel {
    height: 100%;
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 18px 26px rgba(59,36,18,0.20));
  }
  .hero-art-phone .phone-screen {
    position: absolute;
    left: 5.1%;
    right: 5.1%;
    top: 2.2%;
    bottom: 2.2%;
    border-radius: 9%;
    overflow: hidden;
    background: var(--cream);
    z-index: 1;
  }
  .hero-art-phone .phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .hero-art-sprig {
    position: absolute;
    z-index: 0;
    width: 36px;
    height: 36px;
  }
  .hero-art-sprig-1 { left: 4%; top: 8%; transform: rotate(-16deg); color: var(--terra); }
  .hero-art-sprig-2 { right: 4%; top: 12%; transform: rotate(15deg); color: var(--terra-deep); }
}
@media (max-width: 719.98px) and (prefers-reduced-motion: reduce) {
  .hero-art-mascot { animation: none; }
}

/* ═══ MOBILE ONLY — selling points + trust + footer-CTA (Fase 4-6) ═══════
   Beat 2-3: .sp-mobile-skabelon (accent + serif-headline + body + Prøv
   gratis-knap + phone-på-blob). Beat 4: .trust-mobile. Beat 6: .footer-cta-mobile. */
@media (max-width: 719.98px) {
  /* ── .sp-mobile skabelon (genbruges af beat 2 + 3) ──
     Viewport-komponeret: hver SP er sin egen ~100svh-skærm med
     indholdsstakken centreret lodret. */
  .sp-mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100svh;
    padding: clamp(28px, 5vh, 56px) 0;
    text-align: center;
  }
  /* NB: beat-baggrundene ejes af mobil-v2-blokken (~linje 1200) — dubler dem ikke her.
     .sp-mobile-stove har ingen v2-deklaration, så dens wash bor her (runde 6 M1).
     Runde 8: oklab ud (iOS-render-mismatch-mistanke) + farve-matchet nul-alpha. */
  .sp-mobile-stove { background: radial-gradient(100% 32% at 88% 46%, rgba(240,212,168,.24) 0%, rgba(240,212,168,.11) 46%, rgba(240,212,168,0) 78%); }
  .sp-mobile-stove .sp-mobile-phone { width: min(60vw, 248px); }
  .sp-mobile-accent {
    display: block;
    width: 58px;
    height: 16px;
    margin: 0 auto 18px;
    color: var(--terra);
  }
  .sp-mobile-headline {
    font-size: clamp(1.7rem, 7.2vw, 2.35rem);
    max-width: 16ch;
    margin: 0 auto;
  }
  .sp-mobile-body {
    margin: 14px auto 22px;
    max-width: 32ch;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.55;
  }
  /* Prøv gratis-knap: fyldig, farvet — ikke store-badge */
  .sp-mobile-cta,
  .trust-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--terra);
    color: var(--cream);
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-family: var(--sans);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
  }
  .sp-mobile-cta:hover,
  .trust-mobile-cta:hover { background: var(--terra-deep); }
  /* Phone-på-blob */
  .sp-mobile-art {
    position: relative;
    margin-top: clamp(20px, 3vh, 32px);
    display: flex;
    justify-content: center;
  }
  .sp-mobile-blob {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 104%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    border-radius: 46% 54% 60% 40% / 52% 48% 52% 48%;
    z-index: 0;
  }
  .sp-mobile-1 .sp-mobile-blob {
    background: radial-gradient(56% 56% at 50% 48%, rgba(232,149,109,0.5) 0%, rgba(232,149,109,0.16) 60%, transparent 78%);
  }
  .sp-mobile-2 .sp-mobile-blob {
    background: radial-gradient(56% 56% at 50% 48%, rgba(240,212,168,0.82) 0%, rgba(240,212,168,0.26) 60%, transparent 78%);
  }
  .sp-mobile-3 .sp-mobile-blob {
    background: radial-gradient(56% 56% at 50% 48%, rgba(232,149,109,0.42) 0%, rgba(232,149,109,0.14) 60%, transparent 78%);
  }
  /* Runde 6 M2: Zimmie-beatet spejler desktop — bobler + mascot, ingen telefon.
     Runde 8: mascot mindre og forankret som punktum ved sidste boble; CTA
     kommer EFTER chatten i markup (konvertering efter payoff). */
  .zim-art-mobile {
    margin-top: clamp(18px, 3vh, 28px);
    gap: 10px;
  }
  .zim-art-mobile .zim-bubbles {
    width: min(360px, 94%);
    text-align: left;
  }
  .zim-art-mobile .zim-mascot {
    width: clamp(84px, 22vw, 112px);
    align-self: flex-end;
    margin-right: clamp(14px, 9vw, 44px);
    margin-top: 2px;
  }
  .sp-mobile-2 .sp-mobile-cta {
    margin-top: clamp(22px, 3.5vh, 34px);
  }
  /* Runde 8: outcome-beatet = ÉN telefon lige-på (duoens tab-bars flugtede og
     lignede en glitch på device) — samme rolige sprog som Ved gryden. */
  .sp-mobile-outcome-art {
    margin-top: clamp(24px, 3.5vh, 38px);
    align-items: center;
  }
  .sp-mobile-phone {
    position: relative;
    z-index: 1;
    width: 58%;
    max-width: 222px;
  }
  .sp-mobile-phone img.phone-bezel {
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 22px 38px rgba(59,36,18,0.22));
  }
  .sp-mobile-phone .phone-screen {
    position: absolute;
    left: 5.1%;
    right: 5.1%;
    top: 2.2%;
    bottom: 2.2%;
    border-radius: 9%;
    overflow: hidden;
    background: var(--cream);
    z-index: 1;
  }
  .sp-mobile-phone .phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  /* ── Beat 4: trust-beat (founder-led) ── */
  .trust-mobile {
    display: block;
    padding: clamp(48px, 12vw, 76px) 0;
    text-align: center;
    /* Runde 6 M1: blødt tonet bånd i stedet for opaque cream (spejler trust-desktop).
       Runde 8: oklab ud + farve-matchet nul-alpha (transparent uden oklab = grå haze). */
    background: linear-gradient(to bottom,
      rgba(241,233,224,0) 0%, rgba(241,233,224,.85) 20%, rgba(241,233,224,.85) 80%, rgba(241,233,224,0) 100%);
  }
  .trust-mobile-headline {
    font-size: clamp(1.6rem, 6.6vw, 2.15rem);
    max-width: 20ch;
    margin: 0 auto 22px;
  }
  .trust-mobile-bio {
    max-width: 38ch;
    margin: 0 auto 28px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.62;
  }
  .trust-mobile-bio strong { color: var(--ink); font-weight: 600; }
  .trust-mobile-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 360px;
    margin: 0 auto 30px;
    text-align: left;
  }
  .trust-mobile-point {
    background: var(--cream-warm);
    border: 1px solid var(--hairline);
    border-radius: 16px;
    padding: 18px 20px;
  }
  .trust-mobile-point h3 {
    font-family: var(--sans);
    font-size: 0.98rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--ink);
  }
  .trust-mobile-point p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.5;
  }

  /* ── Beat 6: footer-CTA — komponeret afslutnings-skærm ──
     Hele .footer bliver én ~100svh-skærm med desktop .final-cta-greb:
     gradient-band, mascot med skygge, centreret stak. tagline + links
     forankret i bunden af skærmen.
     Farver 1:1 fra desktop: cta-mobile = .final-cta gradient,
     footer-base = .footer gradient (#f0d4a8 → cream). */
  .footer {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    padding: 0;
    background: var(--cream);
  }
  .footer > .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
    max-width: none;
  }
  /* CTA-zonen — 2-stop linear gradient. Multi-stop + radials banded
     på fuld viewport-højde. */
  .footer-cta-mobile {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    padding: clamp(40px, 9vh, 84px) 24px clamp(28px, 5vh, 48px);
    background: linear-gradient(to bottom, var(--cream) 0%, #f0d4a8 100%);
  }
  .footer-cta-mascot {
    width: clamp(120px, 32vw, 178px);
    margin: 0;
    display: block;
    filter: drop-shadow(0 2px 7px rgba(59,36,18,0.30));
    animation: none;
  }
  .footer-cta-headline {
    font-size: clamp(1.6rem, 6.4vw, 2.1rem);
    max-width: 16ch;
    margin: 0 auto;
  }
  .footer-cta-mobile .android-note { text-align: center; margin-top: 2px; }

  /* Runde 7: grid'et (auto 1fr) + display:contents smadrede bunden på mobil —
     links wrappede, mantraen landede oveni og © hang til højre. Nu: én
     centreret kolonne — links, mantra, ©.
     Runde 8: sunset-brand-banneret (::after) FJERNET — læstes som en bug på
     device. CTA-varmen (#f4dfbd) glider i stedet blødt ud i cream heroppe. */
  .footer-base {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: clamp(16px, 2.8vh, 22px) 18px clamp(22px, 3.5vh, 30px);
    background: linear-gradient(to bottom, #f4dfbd 0%, var(--cream) 34%, var(--cream) 100%);
  }
  .footer-base .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .footer-base .footer-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 16px;
    font-size: 0.78rem;
  }
  .footer-base .footer-mantra {
    order: 0;
    width: auto;
    margin: 2px 0 0;
  }
  .footer-base .footer-inner > span {
    text-align: center;
    font-size: 0.74rem;
    line-height: 1.3;
    color: var(--muted-soft);
  }
}
@media (max-width: 719.98px) and (prefers-reduced-motion: reduce) {
  .sp-mobile-cta:hover,
  .trust-mobile-cta:hover { background: var(--terra); }
  .footer-cta-mascot { animation: none; }
}

/* ═══ MOBILE REDESIGN v4 — story beats, tap-glow, snap cards ═══════════
   Desktop keeps the existing path/outcome/by-the-way system. Mobile gets
   its own paced page: hero, three product beats, four swipe cards, trust,
   FAQ, final CTA. Hover language is replaced by scroll/tap states. */
@media (max-width: 719.98px) {
  :root { --nav-h: 66px; }

  body {
    /* Runde 8: plain fallback af body-gradient-rejsen — den globale version
       bruger `in oklab` og er mistænkt for at droppes/rendere fladt på iOS.
       Denne vinder ved parse-fejl; ellers overrider den globale (≈ samme farver). */
    background: linear-gradient(to bottom,
      #f8f4f0 0%, #f7f2ee 22%, #f4ebe1 62%, #f1e5d8 100%);
    overflow-x: hidden;
  }

  .container {
    padding-left: max(22px, env(safe-area-inset-left));
    padding-right: max(22px, env(safe-area-inset-right));
  }

  .topbar {
    background: rgba(247, 242, 238, 0.88);
    border-bottom: 1px solid var(--hairline);
    box-shadow: 0 8px 26px rgba(59, 36, 18, 0.035);
  }
  .topbar-inner { height: var(--nav-h); }
  .brand {
    gap: 12px;
    font-size: 1.62rem;
  }
  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }
  .brand-mark svg {
    width: 24px;
    height: 24px;
  }
  .topbar-get {
    min-height: 44px;
    align-items: center;
    font-size: 1rem;
  }

  .hero {
    min-height: calc(100svh - var(--nav-h));
    /* Runde 8: radialen dæmpet + glattere falloff (Benjamins screenshot viste
       en synlig bue hen over badgen) — contained (62±40×0.74 = 32..92) og
       transparent = farve-matchet nul-alpha (ellers grå haze uden oklab). */
    background:
      radial-gradient(110% 40% at 50% 62%, rgba(240, 212, 168, 0.46) 0%, rgba(240, 212, 168, 0.26) 40%, rgba(236, 180, 138, 0.1) 64%, rgba(240, 212, 168, 0) 86%),
      linear-gradient(180deg, var(--cream) 0%, #f8f3ef 42%, rgba(244, 232, 220, 0) 100%);
  }
  .hero-grid {
    padding-bottom: max(18px, env(safe-area-inset-bottom));
  }
  .hero-copy .eyebrow {
    display: inline-flex;
    align-self: center;
    align-items: center;
    gap: 12px;
    margin-top: clamp(22px, 4.5svh, 54px);
    margin-bottom: 14px;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
  }
  .hero-copy .eyebrow::before,
  .hero-copy .eyebrow::after {
    content: "";
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 118, 58, 0.46));
  }
  .hero-copy .eyebrow::after {
    background: linear-gradient(90deg, rgba(212, 118, 58, 0.46), transparent);
  }
  /* Runde 7: H1 skal stå i 2 linjer på telefonen ("Du vælger." / "Vi klarer
     resten.") — før stablede den i 3 pga. for stor font + 9.8ch-max. <br>'en
     i markup styrer knækket. */
  .hero-copy h1 {
    font-size: clamp(2.1rem, 9.4vw, 2.7rem);
    line-height: 1.04;
    letter-spacing: -0.024em;
    max-width: none;
    margin: 0 auto;
  }
  .hero-copy .lead {
    max-width: 30ch;
    margin-top: 16px;
    font-size: clamp(1.02rem, 4.15vw, 1.2rem);
    line-height: 1.5;
  }
  .hero-cta {
    margin-top: clamp(14px, 2.4svh, 24px);
  }
  .hero .app-badge {
    min-height: 58px;
    border-radius: 18px;
    padding: 12px 24px 12px 18px;
    box-shadow:
      0 18px 36px -18px rgba(59, 36, 18, 0.44),
      0 0 0 1px rgba(255,255,255,0.08) inset;
  }
  .hero .android-note {
    margin-top: 12px;
    color: rgba(59, 36, 18, 0.58);
  }

  /* Runde 8b (Benjamins dom: "forsiden skal scales up"): arten VOKSER ind i
     heroens flex-slack (før landede ~94px som død luft under badgen, fordi
     margin-top:auto blev overskrevet af den faste clamp) — telefonen skalerer
     med op, fordi den er height-based. */
  .hero-art-mobile {
    flex: 1 1 auto;
    height: auto;
    min-height: clamp(310px, 42svh, 430px);
    margin-top: clamp(8px, 1.6svh, 20px);
    isolation: isolate;
  }
  /* Runde 8: blob uden hvid kerne og uden synlige buer — bred nok til at
     kanterne ligger UDENFOR skærmen, glat multi-stop falloff (ingen ringe).
     Runde 8c: amber-radialen brød containment-reglen (80%+60%×0.74 = 124% →
     klippet ved blob-boksens bund m. alpha ~0.3 = Benjamins skarpe kant over
     badgen) — nu contained (66+36×0.82 = 96%). */
  .hero-art-blob {
    bottom: -4%;
    width: 165%;
    aspect-ratio: 1 / 0.66;
    background:
      radial-gradient(56% 52% at 50% 46%, rgba(232,149,109,0.30) 0%, rgba(232,149,109,0.18) 40%, rgba(232,149,109,0.07) 62%, rgba(232,149,109,0) 82%),
      radial-gradient(74% 36% at 50% 66%, rgba(240,212,168,0.52) 0%, rgba(240,212,168,0.26) 44%, rgba(240,212,168,0) 82%);
  }
  /* Runde 8d: notesblok-Zimmie ved siden af telefonen — se basen ovenfor */
  .hero-art-mascot {
    left: 1.5%;
    bottom: 0;
    width: clamp(62px, 19vw, 86px);
    height: auto;
    max-width: none;
    z-index: 1;
    filter: drop-shadow(0 10px 18px rgba(59,36,18,0.24));
  }
  .hero-art-phone {
    left: 57%;
    right: auto;
    bottom: 0;
    height: 100%;
    transform: translateX(-50%);
  }
  .hero-art-phone .phone-bezel {
    filter:
      drop-shadow(0 22px 30px rgba(59,36,18,0.2))
      drop-shadow(0 0 26px rgba(212,118,58,0.14));
  }
  .hero-art-sprig {
    opacity: 0.78;
    filter: drop-shadow(0 8px 12px rgba(212,118,58,0.18));
  }
  .hero-art-sprig-1 { left: 4%; top: 10%; }
  .hero-art-sprig-2 { right: 6%; top: 6%; }

  [data-mobile-reveal],
  .mobile-feature-card,
  .trust-mobile-point,
  #faq details,
  .footer-cta-mobile {
    opacity: 0;
    transform: translateY(16px);
    filter: none;
    transition:
      opacity 0.46s cubic-bezier(.2,.7,.2,1),
      transform 0.46s cubic-bezier(.2,.7,.2,1);
  }
  [data-mobile-reveal].is-in,
  .mobile-feature-card.is-in,
  .trust-mobile-point.is-in,
  #faq details.is-in,
  .footer-cta-mobile.is-in {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .mobile-beat-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto 16px;
    padding: 7px 11px 7px 8px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(212, 118, 58, 0.18);
    background: rgba(255, 248, 238, 0.72);
    color: var(--terra-deep);
    box-shadow: 0 8px 22px -18px rgba(59, 36, 18, 0.5);
  }
  .mobile-beat-label span {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--terra);
    color: var(--cream);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.04em;
  }
  .mobile-beat-label strong {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* Runde 8: beat-padding ~40% ned — Benjamins screenshots viste døde zoner
     mellem stort set alle beats (desktop-spacing var taget med over). */
  .sp-mobile {
    display: block;
    min-height: auto;
    padding: clamp(44px, 6.5svh, 68px) 0 clamp(40px, 6svh, 62px);
    overflow: hidden;
    text-align: center;
    isolation: isolate;
  }
  /* Runde 7: lys-pseudoen ramte sektionskanterne (radialer ved 8% og 100% blev
     klippet ved grænsen = synlige kanter mellem beats — samme synd som desktop
     runde 4). Nu ét contained glow; beat-washes + body-gradient bærer resten.
     Runde 8: glattere falloff + farve-matchet nul-alpha. */
  .sp-mobile::before,
  .trust-mobile::before,
  .mobile-feature-stack::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(90% 34% at 50% 30%, rgba(255,255,255,0.42) 0%, rgba(255,255,255,0.2) 44%, rgba(255,255,255,0) 72%);
  }
  /* Runde 6 M1 — dybde: solide flader VÆK så body-gradient-rejsen skinner igennem;
     hver beat får sin egen svage radial "lyskilde" der vandrer fra side til side.
     Runde 8: `in oklab` ud (mistænkt for at droppes på iOS = flade beats på
     device) + glatte multi-stops m. farve-matchet nul-alpha. */
  .sp-mobile-1 { background: radial-gradient(95% 34% at 96% 32%, rgba(240,212,168,.28) 0%, rgba(240,212,168,.13) 45%, rgba(240,212,168,0) 76%); }
  .sp-mobile-2 {
    background:
      radial-gradient(95% 30% at 4% 34%, rgba(240,212,168,.22) 0%, rgba(240,212,168,.1) 45%, rgba(240,212,168,0) 76%),
      radial-gradient(85% 26% at 96% 74%, rgba(232,149,109,.12) 0%, rgba(232,149,109,.05) 45%, rgba(232,149,109,0) 76%);
  }
  .sp-mobile-3 { background: radial-gradient(95% 32% at 4% 40%, rgba(232,149,109,.14) 0%, rgba(232,149,109,.06) 45%, rgba(232,149,109,0) 76%); }
  .sp-mobile .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .sp-mobile-accent {
    margin-bottom: 18px;
    stroke-width: 3.4;
  }
  .sp-mobile-headline {
    max-width: 10.4ch;
    font-size: clamp(2.55rem, 11vw, 3.55rem);
    line-height: 0.96;
    letter-spacing: -0.028em;
  }
  /* Runde 8: "Spørg Zimmie — den kender dit køkken" brød over 4 linjer m. ensom
     tankestreg — mindre font + fri bredde giver de 2 linjer <br>'en tegner. */
  .sp-mobile-2 .sp-mobile-headline {
    max-width: none;
    font-size: clamp(2rem, 8.4vw, 2.6rem);
    line-height: 1.02;
  }
  /* "Listen skriver sig selv" — 2 balancerede linjer uden ch-klemme */
  .sp-mobile-3 .sp-mobile-headline {
    max-width: none;
    font-size: clamp(2.3rem, 9.6vw, 3rem);
  }
  .sp-mobile-body {
    max-width: 31ch;
    margin: 16px auto 24px;
    font-size: clamp(1.02rem, 4.05vw, 1.18rem);
    line-height: 1.52;
  }
  /* Runde 8b (Benjamins dom): brødteksten står EFTER telefonen —
     headline → bezel → body (→ CTA). Lidt mere luft op til telefonens skygge. */
  .sp-mobile-art + .sp-mobile-body {
    margin: clamp(22px, 3.2svh, 34px) auto 0;
  }
  .sp-mobile-body + .sp-mobile-cta {
    margin-top: clamp(20px, 3svh, 30px);
  }
  .sp-mobile-cta,
  .trust-mobile-cta {
    min-height: 54px;
    padding: 15px 34px;
    background: var(--terra);
    box-shadow:
      0 16px 34px -16px rgba(212, 118, 58, 0.72),
      inset 0 1px 0 rgba(255,255,255,0.24);
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .sp-mobile-cta:active,
  .trust-mobile-cta:active {
    transform: scale(0.97) translateY(1px);
    background: var(--terra-deep);
    box-shadow: 0 10px 22px -16px rgba(212, 118, 58, 0.8);
  }

  /* Runde 7: FAST højde + centreret telefon lod telefonen flyde OVER teksten
     ovenfor (telefonens naturlige højde > boksen) — set i Benjamins screenshots
     på beat 01/03. height:auto = telefonen definerer højden, blob centrerer sig. */
  .sp-mobile-art {
    width: 100%;
    height: auto;
    margin-top: clamp(24px, 3.5svh, 38px);
    align-items: center;
  }
  /* Runde 8: hvid kerne-radial VÆK (den tegnede selve "bolden" i Benjamins
     screenshots) — bred blød wash der bleeder ud over skærmkanten, glatte stops. */
  .sp-mobile-blob {
    width: 160%;
    max-width: none;
    /* Runde 8c: amber-radial contained (66+40×0.82=99%) — samme kant-mekanisme
       som hero-blobben: før blev den klippet ved boks-bunden m. alpha ~0.28 */
    background:
      radial-gradient(58% 54% at 50% 48%, rgba(232,149,109,0.28) 0%, rgba(232,149,109,0.16) 42%, rgba(232,149,109,0.06) 64%, rgba(232,149,109,0) 82%),
      radial-gradient(78% 40% at 50% 66%, rgba(240,212,168,0.5) 0%, rgba(240,212,168,0.24) 44%, rgba(240,212,168,0) 82%) !important;
  }
  .sp-mobile-phone {
    width: min(64vw, 262px);
    max-width: none;
    transform: translateZ(0);
  }
  .sp-mobile-1 .sp-mobile-phone { width: min(62vw, 256px); }
  .sp-mobile-3 .sp-mobile-phone { width: min(62vw, 258px); }
  .sp-mobile-phone img.phone-bezel {
    filter:
      drop-shadow(0 22px 34px rgba(59,36,18,0.22))
      drop-shadow(0 0 28px rgba(212,118,58,0.16));
  }

  /* Runde 8: én telefon i normal flow (duoens absolutte geometri + min-height
     er væk) — arten er præcis så høj som telefonen. */
  .sp-mobile-outcome-art {
    width: 100%;
    margin-top: clamp(24px, 3.5svh, 38px);
  }

  .mobile-feature-stack {
    display: block;
    position: relative;
    padding: clamp(46px, 7svh, 74px) 0 clamp(48px, 7svh, 78px);
    overflow: hidden;
    /* Runde 6 M1: blødt tonet bånd m. transparente kanter (spejler trust-desktop).
       Runde 8: oklab ud + farve-matchet nul-alpha. */
    background: linear-gradient(to bottom,
      rgba(241,233,224,0) 0%, rgba(241,233,224,.7) 20%, rgba(241,233,224,.7) 80%, rgba(241,233,224,0) 100%);
    text-align: center;
    isolation: isolate;
  }
  .mobile-feature-stack .eyebrow {
    display: block;
    margin-bottom: 14px;
  }
  .mobile-feature-stack h2 {
    max-width: 11.5ch;
    margin: 0 auto;
    font-size: clamp(2.3rem, 10vw, 3.25rem);
  }
  .mobile-feature-intro {
    max-width: 31ch;
    margin: 16px auto 26px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.5;
  }
  .mobile-feature-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 390px;
    margin: 2px auto 0;
    align-items: stretch;
  }
  .mobile-feature-card {
    position: relative;
    overflow: hidden;
    min-height: 166px;
    text-align: left;
    background: rgba(255, 250, 243, 0.78);
    border: 1px solid var(--hairline);
    border-radius: 20px;
    padding: 11px;
    box-shadow:
      0 16px 38px -28px rgba(59,36,18,0.5),
      inset 0 1px 0 rgba(255,255,255,0.54);
    transition:
      opacity 0.46s cubic-bezier(.2,.7,.2,1),
      transform 0.32s cubic-bezier(.2,.7,.2,1),
      background-color 0.45s ease,
      border-color 0.45s ease,
      box-shadow 0.45s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-feature-card::before {
    content: "";
    position: absolute;
    inset: -45%;
    background: radial-gradient(closest-side, rgba(212,118,58,0.30), transparent 72%);
    opacity: 0;
    transform: scale(0.72);
    transition: opacity 0.42s ease, transform 0.42s cubic-bezier(.2,.7,.2,1);
    pointer-events: none;
  }
  .mobile-feature-card.is-expanded,
  .mobile-feature-card:focus-visible {
    z-index: 3;
    order: -1;
    grid-column: 1 / -1;
    min-height: 386px;
    padding: 15px;
    border-radius: 28px;
    transform: translateY(-5px);
    background: #fbe9d3;
    border-color: rgba(212,118,58,0.32);
    box-shadow:
      0 24px 44px -24px rgba(212,118,58,0.66),
      0 8px 16px -10px rgba(59,36,18,0.18),
      inset 0 1px 0 rgba(255,255,255,0.62);
  }
  .mobile-feature-card.is-expanded::before,
  .mobile-feature-card:focus-visible::before {
    opacity: 1;
    transform: scale(1);
  }
  .mobile-feature-card:active {
    transform: translateY(-2px) scale(0.985);
  }
  .mobile-feature-card > span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin: 10px 0 6px;
    color: var(--terra);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
  }
  .mobile-feature-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: clamp(1rem, 4.3vw, 1.2rem);
    line-height: 1.05;
  }
  .mobile-feature-card p {
    position: relative;
    z-index: 1;
    max-height: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.46;
    transition: max-height 0.48s ease, opacity 0.38s ease 0.12s, margin 0.38s ease;
  }
  .mobile-feature-card.is-expanded h3 {
    font-size: clamp(1.62rem, 7vw, 2.08rem);
    line-height: 1.02;
  }
  .mobile-feature-card.is-expanded p {
    max-height: 80px;
    opacity: 1;
    margin-top: 8px;
  }
  .mobile-feature-board.has-expanded .mobile-feature-card:not(.is-expanded) {
    min-height: 112px;
    padding: 9px;
    border-radius: 18px;
    opacity: 0.72;
    background: rgba(255, 250, 243, 0.64);
  }
  /* Runde 8 (Benjamins ønskede udvidede layout): den store øverst i fuld
     bredde, to kort op ad den — og det tredje CENTRERET under de to.
     JS sætter .is-last-collapsed på det sidste kollapsede kort. */
  .mobile-feature-board.has-expanded .mobile-feature-card.is-last-collapsed {
    grid-column: 1 / -1;
    width: calc(50% - 6px);
    justify-self: center;
  }
  .mobile-feature-board.has-expanded .mobile-feature-card:not(.is-expanded) > span {
    margin-top: 7px;
  }
  .mobile-feature-board.has-expanded .mobile-feature-card:not(.is-expanded) h3 {
    font-size: 0.9rem;
  }
  .mobile-feature-art {
    position: relative;
    z-index: 1;
    height: 88px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
      radial-gradient(120% 110% at 30% 15%, rgba(240,212,168,0.62), transparent 65%),
      radial-gradient(90% 80% at 78% 85%, rgba(232,149,109,0.36), transparent 72%),
      var(--cream-warm);
    /* Runde 8: harmoniseret m. FLIP'ens 560ms — arten vokser roligt inde i kortet */
    transition: height 0.5s cubic-bezier(.22,.61,.36,1), border-radius 0.5s ease;
  }
  .mobile-feature-art img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: filter 0.45s ease, transform 0.45s ease;
  }
  .mobile-feature-card.is-expanded .mobile-feature-art {
    height: 226px;
    border-radius: 22px;
  }
  .mobile-feature-board.has-expanded .mobile-feature-card:not(.is-expanded) .mobile-feature-art {
    height: 54px;
    border-radius: 12px;
  }
  .mobile-feature-card.is-expanded .mobile-feature-art img,
  .mobile-feature-card:focus-visible .mobile-feature-art img {
    filter: drop-shadow(0 0 24px rgba(212,118,58,0.48));
    transform: translateY(-2px);
  }
  .mobile-feature-art-books img,
  .mobile-feature-art-pantry img {
    width: 118%;
    max-width: 118%;
  }
  .mobile-feature-art-widgets {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.25fr 0.8fr;
    gap: 5px;
    padding: 7px;
  }
  .mobile-feature-art-widgets img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    filter: drop-shadow(0 6px 12px rgba(59,36,18,0.16));
  }
  .mobile-feature-art-widgets img:last-child { grid-column: 1 / -1; }
  .mobile-feature-art-salling img {
    width: 46%;
    border-radius: 15px;
    box-shadow: 0 18px 30px -16px rgba(59,36,18,0.38);
  }
  .mobile-feature-card.is-expanded .mobile-feature-art-salling img { width: 54%; }

  .trust-mobile {
    position: relative;
    padding: clamp(50px, 7.5svh, 80px) 0;
    overflow: hidden;
    /* Runde 6 M1: blødt tonet bånd (spejler trust-desktop).
       Runde 8: oklab ud + farve-matchet nul-alpha + padding ned. */
    background: linear-gradient(to bottom,
      rgba(241,233,224,0) 0%, rgba(241,233,224,.85) 20%, rgba(241,233,224,.85) 80%, rgba(241,233,224,0) 100%);
    isolation: isolate;
  }
  .trust-mobile-headline {
    max-width: 9.8ch;
    font-size: clamp(2.45rem, 10.8vw, 3.45rem);
    line-height: 0.96;
    margin-bottom: 20px;
  }
  .trust-mobile-bio {
    max-width: 32ch;
    font-size: 1.04rem;
    line-height: 1.58;
  }
  .trust-mobile-points {
    gap: 14px;
    margin-bottom: 30px;
  }
  .trust-mobile-point {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 19px 20px;
    background: rgba(255, 250, 243, 0.78);
    box-shadow:
      0 18px 38px -28px rgba(59,36,18,0.54),
      inset 0 1px 0 rgba(255,255,255,0.62);
    transition:
      opacity 0.46s cubic-bezier(.2,.7,.2,1),
      transform 0.28s cubic-bezier(.2,.7,.2,1),
      border-color 0.45s ease,
      background-color 0.45s ease,
      box-shadow 0.45s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .trust-mobile-point::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(closest-side, rgba(212,118,58,0.28), transparent 72%);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
  }
  /* Runde 7: .is-in:nth-child(1)-highlighten fjernet — første kort lyste amber
     uden grund (Benjamins spørgsmål). Highlight er nu kun touch/fokus-feedback. */
  .trust-mobile-point:active,
  .trust-mobile-point:focus-within {
    background: #fbe9d3;
    border-color: rgba(212,118,58,0.32);
    box-shadow:
      0 24px 44px -24px rgba(212,118,58,0.62),
      inset 0 1px 0 rgba(255,255,255,0.62);
  }
  .trust-mobile-point:active::before,
  .trust-mobile-point:focus-within::before {
    opacity: 1;
    transform: scale(1);
  }

  #faq.section {
    padding: clamp(50px, 7.5svh, 84px) 0;
    background:
      radial-gradient(100% 54% at 50% 0%, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.26) 44%, rgba(255,255,255,0) 72%),
      var(--cream-warm);
  }
  #faq .section-head {
    margin-bottom: 28px;
  }
  #faq .section-head h2 {
    font-size: clamp(2.45rem, 10vw, 3.35rem);
    line-height: 0.98;
  }
  .faq {
    gap: 12px;
  }
  .faq details {
    padding: 0 18px;
    border-radius: 20px;
    background: rgba(255, 250, 243, 0.78);
    box-shadow: 0 14px 32px -28px rgba(59,36,18,0.5);
  }
  .faq details[open] {
    background: #fff8ee;
    border-color: rgba(212,118,58,0.28);
    box-shadow:
      0 20px 40px -26px rgba(212,118,58,0.54),
      inset 0 1px 0 rgba(255,255,255,0.68);
  }
  .faq summary {
    min-height: 62px;
    padding: 14px 0;
    font-size: clamp(1.06rem, 4.3vw, 1.22rem);
    line-height: 1.18;
  }
  .faq summary::after {
    font-size: 1.6rem;
    color: var(--terra);
  }
  .faq-toggle {
    width: 100%;
    /* Runde 7: teksten sad for højt i pillen — flex-centrering + line-height 1 */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    min-height: 54px;
    border-radius: var(--radius-pill);
    background: rgba(255, 250, 243, 0.58);
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  }
  .faq-toggle:active {
    transform: scale(0.98);
    background: #fff8ee;
    border-color: rgba(212,118,58,0.28);
  }

  .footer {
    min-height: auto;
    /* Runde 8: transparent — body-gradientens varme bund bærer overgangen
       fra FAQ ind i CTA-zonen uden en hård cream-kant */
    background: transparent;
  }
  .footer-cta-mobile {
    /* Runde 8: 88svh-kravet gav død luft — CTA'en er et moment, ikke en hel skærm */
    min-height: clamp(440px, 66svh, 600px);
    justify-content: center;
    gap: 18px;
    padding: clamp(44px, 7svh, 68px) 24px clamp(30px, 5svh, 48px);
    background:
      radial-gradient(72% 42% at 50% 28%, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.26) 44%, rgba(255,255,255,0) 70%),
      linear-gradient(to bottom, rgba(247,242,238,0) 0%, #f7ecd9 55%, #f4dfbd 100%);
  }
  .footer-cta-mascot {
    width: clamp(128px, 34vw, 182px);
  }
  .footer-cta-headline {
    font-size: clamp(2.1rem, 9.2vw, 3rem);
    line-height: 0.98;
  }
  .footer-base {
    /* Runde 8: banner-reservationen (58px) væk sammen med sunset-banneret */
    padding: 20px 22px calc(26px + env(safe-area-inset-bottom));
  }
  .footer-base .footer-links {
    gap: 16px;
    font-size: 0.82rem;
  }
  .footer-base .footer-inner > span {
    font-size: 0.78rem;
  }

  /* Runde 8: FAB VÆK på mobil — den kolliderede med indhold i 7/15 af
     Benjamins screenshots (brødtekst, chat-bobler, kort-titler, telefoner).
     iOS har indbygget scroll-til-top via statusbar-tap.
     !important = device-gate (basen .scroll-top-fab ligger SENERE i source). */
  .scroll-top-fab { display: none !important; }

  /* The big mobile story sections should never disappear while scrolling.
     The reveal observer still powers nested cards/rows, but full sections
     remain painted so a fast scroll does not show a blank viewport. */
  [data-mobile-reveal],
  .footer-cta-mobile {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@media (max-width: 380px) {
  .hero-copy h1,
  .sp-mobile-headline,
  .trust-mobile-headline,
  #faq .section-head h2 {
    letter-spacing: -0.02em;
  }
  .hero-art-mobile { height: auto; min-height: clamp(286px, 40svh, 380px); }
  .sp-mobile-art { height: auto; }
  .sp-mobile-phone { width: min(62vw, 240px); }
  .mobile-feature-board { gap: 10px; }
  .mobile-feature-card {
    min-height: 154px;
    padding: 10px;
  }
  .mobile-feature-card.is-expanded { min-height: 364px; }
}

@media (max-width: 719.98px) and (max-height: 740px) {
  :root { --nav-h: 58px; }
  .topbar-inner { height: var(--nav-h); }
  .brand { font-size: 1.42rem; gap: 9px; }
  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }
  .brand-mark svg {
    width: 21px;
    height: 21px;
  }
  .topbar-get {
    min-height: 40px;
    font-size: 0.95rem;
  }
  .hero-copy .eyebrow {
    margin-top: 14px;
    margin-bottom: 10px;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
  }
  .hero-copy h1 {
    font-size: clamp(2.18rem, 10.2vw, 3.05rem);
    line-height: 0.95;
  }
  .hero-copy .lead {
    max-width: 29ch;
    margin-top: 10px;
    font-size: 0.96rem;
    line-height: 1.42;
  }
  .hero-art-mobile {
    height: auto;
    min-height: clamp(210px, 32svh, 274px);
    margin-top: 6px;
  }
  .hero-art-mascot {
    width: clamp(54px, 16vw, 74px);
    height: auto;
    bottom: 0;
    left: 1.5%;
  }
  .hero-art-phone {
    height: 96%;
    left: 57%;
    right: auto;
  }
  .hero-cta {
    margin-top: 8px;
  }
  .hero .app-badge {
    min-height: 52px;
    padding: 10px 20px 10px 16px;
  }
  .hero .android-note {
    margin-top: 7px;
    font-size: 0.76rem;
  }
}

@media (max-width: 719.98px) and (prefers-reduced-motion: reduce) {
  [data-mobile-reveal],
  .mobile-feature-card,
  .trust-mobile-point,
  #faq details,
  .footer-cta-mobile {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .mobile-feature-card.is-expanded,
  .mobile-feature-card:focus-visible,
  .trust-mobile-point.is-in:nth-child(1) {
    transform: none;
  }
}

/* ── Section scaffolding ─────────────────────────────── */
section { position: relative; }
.section {
  padding: clamp(72px, 10vw, 140px) 0;
}
.section-tinted {
  background: linear-gradient(to bottom,
    var(--cream) 0%,
    var(--cream-warm) 12%,
    var(--cream-warm) 88%,
    var(--cream) 100%);
}

.section-head {
  max-width: 780px;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head p { color: var(--muted); margin: 18px 0 0; font-size: clamp(1rem, 1.4vw, 1.12rem); max-width: 60ch; }

.section-head-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head-center .eyebrow { display: block; text-align: center; }
.section-head-center h2 { text-align: center; }
.section-head-center p { margin-left: auto; margin-right: auto; text-align: center; max-width: 64ch; }

/* ── §2 Paths section ────────────────────────────────── */
.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  position: relative;
}
/* Centered divider — placed at viewport-center via 50% of container.
   Replaces old `border-right` on first-child (which sat at column edge,
   not in the middle of the gap). */
.paths-grid::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--hairline);
  transform: translateX(-50%);
  pointer-events: none;
}

/* Base state: content-driven height. Scroll-lock retired — there is real
   content below paths again, so the rubber-band rationale for min-height:100vh
   is gone. */
.paths[data-path-state="base"] {
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--nav-h) + clamp(28px, 5vh, 72px));
  padding-bottom: clamp(80px, 10vh, 130px);
}
.paths[data-path-state="base"] .paths-head {
  margin-bottom: clamp(48px, 6vw, 80px);
}
.paths[data-path-state="base"] .paths-head h2 { font-size: clamp(1.55rem, 2.9vw, 2.2rem); }
.paths[data-path-state="base"] .paths-head p { font-size: 0.95rem; max-width: 52ch; }

/* Compact path-head in base state */
.paths[data-path-state="base"] .path { gap: clamp(32px, 4vw, 56px); }
.paths[data-path-state="base"] .path-head { gap: 8px; align-items: center; text-align: center; }
.paths[data-path-state="base"] .path-head h3 { font-size: clamp(1.35rem, 1.85vw, 1.65rem); }
/* Overview = teaser: skjul den lange .lead, vis kun .path-microline.
   Den fulde .lead vises kun når path-state skifter til "a"/"b". */
.paths[data-path-state="base"] .path-head .lead { display: block; max-width: 42ch; margin-inline: auto; }
.path-microline {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 500;
  margin: 0;
  max-width: 36ch;
}
/* Skjul microline i expanded state — så den lange .lead overtager fortællingen */
.paths[data-path-state="a"] .path-microline,
.paths[data-path-state="b"] .path-microline { display: none; }

/* Hide steps 2+3 in base state — only first step shows as large teaser */
.paths[data-path-state="base"] .path-step:not(:first-child) { display: none; }
.paths[data-path-state="base"] .path-stagger::before { display: none; }

/* First step becomes centered teaser in base state */
.paths[data-path-state="base"] .path-step:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  grid-template-columns: none;
}
.paths[data-path-state="base"] .path-step:first-child .phone-frame-mini {
  width: clamp(160px, 15vw, 200px);
  transition: transform 0.35s cubic-bezier(.3,.7,.2,1), filter 0.35s ease;
}
.paths[data-path-state="base"] .path-step:first-child .path-step-caption {
  display: none;
}

/* Path-cta affordance */
.path-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  background: rgba(212, 118, 58, 0.08);
  border: 1px solid rgba(212, 118, 58, 0.22);
  color: var(--terra-deep);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius-pill);
  align-self: center;
  pointer-events: none;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.3s ease, transform 0.3s ease;
}
.path-cta-arrow {
  width: 22px;
  height: 12px;
  transition: transform 0.25s ease;
}

/* Desktop: CTA visible at rest (announces interactivity without hover);
   hover only enhances — brightens pill, slides arrow, lifts phone */
@media (hover: hover) {
  .path { cursor: default; }
  .paths[data-path-state="base"] .path:hover .path-cta,
  .paths[data-path-state="base"] .path:focus-visible .path-cta {
    background: rgba(212, 118, 58, 0.14);
  }
  .paths[data-path-state="base"] .path:hover .path-cta-arrow,
  .paths[data-path-state="base"] .path:focus-visible .path-cta-arrow {
    transform: translateX(4px);
  }
  .paths[data-path-state="base"] .path:hover .phone-frame-mini,
  .paths[data-path-state="base"] .path:focus-visible .phone-frame-mini {
    transform: translateY(-6px) scale(1.025);
  }
  .paths[data-path-state="base"] .path:hover .phone-frame-mini::before,
  .paths[data-path-state="base"] .path:focus-visible .phone-frame-mini::before {
    opacity: 0.7;
    transform: scale(1.06);
  }
  .paths[data-path-state="base"] .path:hover .phone-frame-mini img.phone-bezel,
  .paths[data-path-state="base"] .path:focus-visible .phone-frame-mini img.phone-bezel {
    filter: drop-shadow(0 24px 36px rgba(59,36,18,0.28));
    transition: filter 0.35s ease;
  }
}

/* Touch: always-visible CTA + pulsing arrow */
@media (hover: none) {
  .paths[data-path-state="base"] .path-cta {
    opacity: 1;
  }
  .paths[data-path-state="base"] .path-cta-arrow {
    animation: cta-arrow-pulse 1.8s ease-in-out infinite;
  }
  @keyframes cta-arrow-pulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .paths[data-path-state="base"] .path-cta-arrow { animation: none !important; transform: none; }
  .paths[data-path-state="base"] .path:hover .phone-frame-mini { transform: none; }
}

/* Scroll-lock retired 2026-05-14 — paths no longer gates scroll. The
   self-explanatory base cards (.lead + resting .path-cta) replace the lock's
   forced-choice affordance. Bridge below catches scroll-past softly. */
.paths {
  position: relative;
}

/* ── Showcase state (Path A or B active) ───────────── */

/* Smooth section transitions when state changes */
.paths {
  transition: padding 0.5s cubic-bezier(.3,.7,.2,1);
}
.paths .paths-grid {
  transition: grid-template-columns 0.6s cubic-bezier(.3,.7,.2,1), gap 0.6s cubic-bezier(.3,.7,.2,1);
}
.paths .path {
  transition: transform 0.6s cubic-bezier(.3,.7,.2,1), opacity 0.5s ease;
}
.paths .paths-head {
  transition: max-height 0.4s ease-out, opacity 0.4s ease-out, margin-bottom 0.4s ease-out;
  overflow: hidden;
}

/* Back button — hidden in base, visible in showcase */
.path-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px 9px 12px;
  border-radius: var(--radius-pill);
  background: rgba(212, 118, 58, 0.10);
  color: var(--terra-deep);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid rgba(212, 118, 58, 0.20);
  cursor: pointer;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s, background 0.2s ease;
  margin-bottom: 18px;
}
.path-back svg { width: 16px; height: 12px; }
.path-back:hover { background: rgba(212, 118, 58, 0.18); }
.paths[data-path-state="base"] .path-back {
  display: none; /* in base state, don't take layout space — only show in showcase */
}
.paths[data-path-state="a"] .path-back,
.paths[data-path-state="b"] .path-back {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Collapse section-head in showcase */
.paths[data-path-state="a"] .paths-head,
.paths[data-path-state="b"] .paths-head {
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
}

/* Showcase: expand active path, slide other out */
.paths[data-path-state="a"] .paths-grid,
.paths[data-path-state="b"] .paths-grid {
  grid-template-columns: 1fr;
  gap: 0;
}
.paths[data-path-state="a"] .paths-grid > .path:first-child,
.paths[data-path-state="b"] .paths-grid > .path:last-child {
  padding-right: 0;
  padding-left: 0;
  border-right: 0;
}

/* Inactive path is fully removed in showcase — no flicker from 0-width clipped content */
.paths[data-path-state="a"] .path-b,
.paths[data-path-state="b"] .path-a {
  display: none;
}

/* Active path in showcase: full width, centered content */
.paths[data-path-state="a"] .path-a,
.paths[data-path-state="b"] .path-b {
  width: 100%;
  cursor: default;
  align-items: center;
  text-align: center;
}
.paths[data-path-state="a"] .path-a .path-head,
.paths[data-path-state="b"] .path-b .path-head {
  align-items: center;
  text-align: center;
  max-width: 64ch;
  margin: 0 auto;
}
.paths[data-path-state="a"] .path-a .path-head .lead,
.paths[data-path-state="b"] .path-b .path-head .lead {
  display: block; /* lead vises i showcase state */
  max-width: 60ch;
  margin: 0 auto;
}
.paths[data-path-state="a"] .path-a .path-cta,
.paths[data-path-state="b"] .path-b .path-cta {
  display: none; /* hidden, we're already in showcase */
}

/* Showcase: 3 steps horizontal with arrows between */
.paths[data-path-state="a"] .path-a .path-stagger,
.paths[data-path-state="b"] .path-b .path-stagger {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  align-items: flex-start;
  position: relative;
}

/* Hide vertical guide, show horizontal arrow ::before + ::after */
.paths[data-path-state="a"] .path-a .path-stagger::before,
.paths[data-path-state="b"] .path-b .path-stagger::before {
  content: "→";
  position: absolute;
  left: 33.33%;
  top: 36%;
  transform: translateX(-50%);
  color: var(--terra);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 300;
  background: none;
  width: auto;
  height: auto;
  bottom: auto;
  pointer-events: none;
  opacity: 0;
  animation: showcase-arrow-in 0.5s ease 0.6s forwards;
}
.paths[data-path-state="a"] .path-a .path-stagger::after,
.paths[data-path-state="b"] .path-b .path-stagger::after {
  content: "→";
  position: absolute;
  left: 66.66%;
  top: 36%;
  transform: translateX(-50%);
  color: var(--terra);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 300;
  pointer-events: none;
  opacity: 0;
  animation: showcase-arrow-in 0.5s ease 0.8s forwards;
}
@keyframes showcase-arrow-in {
  from { opacity: 0; transform: translateX(-50%) translateY(-4px); }
  to { opacity: 0.7; transform: translateX(-50%) translateY(0); }
}

/* Showcase: each step displays vertically (phone above caption) */
.paths[data-path-state="a"] .path-a .path-step,
.paths[data-path-state="b"] .path-b .path-step {
  display: flex !important; /* override base state's display:none for steps 2+3 */
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  grid-template-columns: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}
.paths[data-path-state="a"] .path-a .path-step.is-in,
.paths[data-path-state="b"] .path-b .path-step.is-in {
  opacity: 1;
  transform: none;
}
.paths[data-path-state="a"] .path-a .path-step .phone-frame-mini,
.paths[data-path-state="b"] .path-b .path-step .phone-frame-mini {
  width: clamp(140px, 18vw, 200px);
  transition: transform 0.35s cubic-bezier(.3,.7,.2,1), filter 0.35s ease;
}
@media (hover: hover) {
  .paths[data-path-state="a"] .path-a .path-step:hover .phone-frame-mini,
  .paths[data-path-state="b"] .path-b .path-step:hover .phone-frame-mini {
    transform: translateY(-12px) scale(1.055);
  }
  .paths[data-path-state="a"] .path-a .path-step:hover .phone-frame-mini::before,
  .paths[data-path-state="b"] .path-b .path-step:hover .phone-frame-mini::before {
    opacity: 1;
    transform: scale(1.12);
  }
  .paths[data-path-state="a"] .path-a .path-step:hover .phone-frame-mini img.phone-bezel,
  .paths[data-path-state="b"] .path-b .path-step:hover .phone-frame-mini img.phone-bezel {
    filter: drop-shadow(0 26px 40px rgba(59,36,18,0.28));
    transition: filter 0.35s ease;
  }
}
@media (prefers-reduced-motion: reduce) {
  .paths[data-path-state="a"] .path-a .path-step:hover .phone-frame-mini,
  .paths[data-path-state="b"] .path-b .path-step:hover .phone-frame-mini {
    transform: none;
  }
}
.paths[data-path-state="a"] .path-a .path-step-caption,
.paths[data-path-state="b"] .path-b .path-step-caption {
  align-items: center;
}
.paths[data-path-state="a"] .path-a .step-number,
.paths[data-path-state="b"] .path-b .step-number {
  display: inline-flex;
}

/* Showcase state: matches base layout strategy — content-driven height */
.paths[data-path-state="a"],
.paths[data-path-state="b"] {
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--nav-h) + clamp(28px, 5vh, 72px));
  padding-bottom: clamp(80px, 10vh, 130px);
}

/* On mobile, showcase stacks vertically (no horizontal arrows) */
@media (max-width: 719.98px) {
  .paths[data-path-state="a"] .path-a .path-stagger,
  .paths[data-path-state="b"] .path-b .path-stagger {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .paths[data-path-state="a"] .path-a .path-stagger::before,
  .paths[data-path-state="b"] .path-b .path-stagger::before,
  .paths[data-path-state="a"] .path-a .path-stagger::after,
  .paths[data-path-state="b"] .path-b .path-stagger::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .paths,
  .paths-grid,
  .path,
  .paths-head { transition: none !important; }
  .paths[data-path-state="a"] .path-a .path-stagger::before,
  .paths[data-path-state="a"] .path-a .path-stagger::after,
  .paths[data-path-state="b"] .path-b .path-stagger::before,
  .paths[data-path-state="b"] .path-b .path-stagger::after {
    animation: none;
    opacity: 0.7;
  }
}

.path {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 40px);
  position: relative;
}

/* Symmetrical padding around the centered ::after divider (above) */
.paths-grid > .path:first-child {
  padding-right: clamp(0px, 2vw, 24px);
}
.paths-grid > .path:last-child {
  padding-left: clamp(0px, 2vw, 24px);
}

.path-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.path-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.path-head h3 {
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: -0.018em;
  line-height: 1.1;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  color: var(--ink);
  margin: 0;
}
.path-head h3 em {
  font-style: italic;
  font-weight: 600;
  color: var(--terra);
}
.path-head .lead {
  margin: 0;
  font-size: 1rem;
  max-width: none;
}
.path-head .lead em {
  font-style: italic;
  color: var(--terra-deep);
  background: rgba(212,118,58,0.08);
  padding: 1px 6px;
  border-radius: 4px;
}

.path-stagger {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 32px);
  position: relative;
}

/* Vertical guide line connecting steps */
.path-stagger::before {
  content: "";
  position: absolute;
  left: 60px;
  top: 14%;
  bottom: 14%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--hairline-strong), transparent);
  pointer-events: none;
}

.path-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  align-items: center;
  opacity: 0;
  filter: blur(6px);
  transform: translateY(10px);
  transition: opacity 1s cubic-bezier(.2,.7,.2,1),
              filter 1s cubic-bezier(.2,.7,.2,1),
              transform 1s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, filter, transform;
}
.path-step.is-in {
  opacity: 1;
  filter: blur(0);
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .path-step { transition: opacity 0.2s ease; filter: none; transform: none; }
}

.path-step-phone {
  position: relative;
  z-index: 1;
}

.path-step-caption {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.step-number {
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--terra);
  background: rgba(212,118,58,0.10);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
}
.path-step-caption p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-wrap: balance;
}

/* Mini phone-frame (for path-steps) */
.phone-frame-mini {
  width: 120px;
  position: relative;
}
/* Warm radial glow bag telefonen — altid synlig (subtle orange hue) so paths-
   bezels får samme varme look som outcome-bezels på siden efter. Hover bumper
   den lidt op via .path:hover-rule. */
.phone-frame-mini::before {
  content: "";
  position: absolute;
  inset: -32%;
  background: radial-gradient(closest-side, rgba(232,149,109,0.55) 0%, rgba(212,118,58,0.32) 40%, transparent 72%);
  opacity: 0.42;
  transform: scale(0.95);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(.3,.7,.2,1);
  pointer-events: none;
  z-index: 0;
  will-change: opacity, transform;
}
.phone-frame-mini img.phone-bezel {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 14px 24px rgba(180,90,40,0.22));
}
.phone-frame-mini .phone-screen {
  position: absolute;
  left: 5.1%;
  right: 5.1%;
  top: 2.2%;
  bottom: 2.2%;
  border-radius: 9%;
  overflow: hidden;
  background: var(--cream);
  z-index: 1;
}
.phone-frame-mini .phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 880px) {
  .paths-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }
  .paths-grid > .path:first-child {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
    padding-bottom: 56px;
  }
  .paths-grid > .path:last-child {
    padding-left: 0;
  }
}

@media (max-width: 520px) {
  .path-step {
    grid-template-columns: 96px 1fr;
    gap: 18px;
  }
  .phone-frame-mini { width: 96px; }
  .path-stagger::before { left: 48px; }
}

/* ── Path bridge (vises kun hvis præcis én path er set) ── */
.path-bridge {
  background:
    radial-gradient(40% 80% at 50% 0%, rgba(232,149,109,0.18) 0%, transparent 70%),
    var(--cream-warm);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  text-align: center;
  padding: clamp(36px, 5vw, 64px) 0;
}
.path-bridge-suggest {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.path-bridge[data-suggest="a"] .path-bridge-suggest-a,
.path-bridge[data-suggest="b"] .path-bridge-suggest-b,
.path-bridge[data-suggest="none"] .path-bridge-suggest-none,
.path-bridge[data-suggest="both"] .path-bridge-suggest-both {
  display: flex;
}
/* App Store-badge i bridge — lidt strammere padding end hero-badgen */
.path-bridge-badge { margin-top: 6px; }
/* Soft scroll-nudge under both-CTA: pile flanker copy, bouncer let op/ned */
.path-bridge-scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0 0;
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.path-bridge-scroll-hint .hint-arrow {
  width: 12px;
  height: 18px;
  color: var(--terra);
  animation: bridge-hint-bounce 1.6s ease-in-out infinite;
}
.path-bridge-scroll-hint .hint-arrow:last-child { animation-delay: 0.2s; }
@keyframes bridge-hint-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%      { transform: translateY(5px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .path-bridge-scroll-hint .hint-arrow { animation: none; opacity: 0.85; }
}
.path-bridge-suggest .eyebrow {
  display: inline-block;
}
.path-bridge-suggest p.h-serif {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin: 0;
  max-width: 24ch;
  text-wrap: balance;
}
.path-bridge-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px 12px 24px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.96rem;
  cursor: pointer;
  margin-top: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-md);
}
.path-bridge-action svg { width: 18px; height: 11px; transition: transform 0.2s ease; }
.path-bridge-action:hover { transform: translateY(-1px); }
.path-bridge-action:hover svg { transform: translateX(3px); }

@media (prefers-reduced-motion: reduce) {
  .path-bridge-action:hover { transform: none; }
}

/* ── §3 Outcome section — composed asymmetric layout ── */
.outcome.section { padding: clamp(48px, 6vw, 80px) 0; }
.outcome .section-head { margin-bottom: clamp(20px, 3vw, 36px); }

.outcome-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.outcome-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.outcome-card.is-in { opacity: 1; transform: none; }

/* Side cards: smaller phones, tilted (individual `rotate:` så hover-wobble kan
   animere rotate uden at kæmpe med `transform:`-cascade) */
.outcome-card .phone-frame-small {
  transition: translate 0.35s cubic-bezier(.3,.7,.2,1), rotate 0.45s ease;
}
.outcome-card:nth-child(1) {
  align-self: end;
  padding-bottom: clamp(8px, 1.5vw, 24px);
}
.outcome-card:nth-child(1) .phone-frame-small {
  width: min(170px, 100%);
  rotate: -6deg;
  transform-origin: center bottom;
}
.outcome-card:nth-child(3) {
  align-self: start;
  padding-top: clamp(8px, 1.5vw, 24px);
}
.outcome-card:nth-child(3) .phone-frame-small {
  width: min(170px, 100%);
  rotate: 6deg;
  transform-origin: center top;
}

/* Central card: dominant, larger phone, larger caption */
.outcome-card:nth-child(2) {
  z-index: 2;
}
.outcome-card:nth-child(2) .phone-frame-small {
  width: min(220px, 100%);
}
.outcome-card:nth-child(2) .phone-frame-small img.phone-bezel {
  filter: drop-shadow(0 32px 56px rgba(59,36,18,0.26));
}

/* Hover: blidt lift + warm halo (samme look som path-telefonerne) */
@media (hover: hover) {
  .outcome-card:hover .phone-frame-small {
    translate: 0 -8px;
  }
  .outcome-card:hover .phone-frame-small::before {
    opacity: 1;
    transform: scale(1.12);
  }
}
@media (prefers-reduced-motion: reduce) {
  .outcome-card:hover .phone-frame-small {
    translate: 0;
  }
}
.outcome-card:nth-child(2) h4 {
  font-size: clamp(1.3rem, 1.9vw, 1.6rem);
}

/* Side card captions smaller */
.outcome-card:nth-child(1) h4,
.outcome-card:nth-child(3) h4 {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}
.outcome-card:nth-child(1) p,
.outcome-card:nth-child(3) p {
  font-size: 0.88rem;
  max-width: 24ch;
}

@media (prefers-reduced-motion: reduce) {
  .outcome-card { transition: opacity 0.2s ease; transform: none; }
}

.outcome-phone {
  width: 100%;
  display: grid;
  place-items: center;
}

.phone-frame-small {
  width: min(220px, 80%);
  position: relative;
  transition: transform 0.4s ease;
}
/* Warm radial glow bag telefonen — opacity/scale på hover, ingen filter-rastering */
.phone-frame-small::before {
  content: "";
  position: absolute;
  inset: -32%;
  background: radial-gradient(closest-side, rgba(232,149,109,0.55) 0%, rgba(212,118,58,0.32) 40%, transparent 72%);
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(.3,.7,.2,1);
  pointer-events: none;
  z-index: 0;
  will-change: opacity, transform;
}
.phone-frame-small img.phone-bezel {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 24px 40px rgba(59,36,18,0.20));
}
.phone-frame-small .phone-screen {
  position: absolute;
  left: 5.1%;
  right: 5.1%;
  top: 2.2%;
  bottom: 2.2%;
  border-radius: 8%;
  overflow: hidden;
  background: var(--cream);
  z-index: 1;
}
.phone-frame-small .phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.outcome-card h4 {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.outcome-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 28ch;
  line-height: 1.5;
}

@media (max-width: 880px) {
  .outcome-grid { grid-template-columns: 1fr; gap: 56px; }
  .outcome-card:nth-child(1),
  .outcome-card:nth-child(3) {
    align-self: center;
    padding: 0;
  }
  .outcome-card:nth-child(1) .phone-frame-small,
  .outcome-card:nth-child(3) .phone-frame-small {
    transform: none;
    width: min(220px, 70%);
  }
  .outcome-card:nth-child(2) .phone-frame-small {
    width: min(240px, 75%);
  }
  .phone-frame-small { width: min(220px, 70%); }
}

/* ─────────────────────────────────────────────────────
   CSS-PLACEHOLDERS for missing screenshots
   (Path A step 2, Path B step 1+3, Outcome card 3)
   Stilistisk integreret, swappes ud → <img> når
   screenshots produceres.
   ───────────────────────────────────────────────────── */

.placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  font-family: var(--sans);
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Placeholder 1: Plan output (Path A step 2) ── */
.placeholder-plan {
  display: flex;
  flex-direction: column;
  gap: 5%;
  padding: 14% 7% 7%;
  background: linear-gradient(to bottom, var(--cream) 0%, var(--cream-warm) 100%);
}
.ph-chat {
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 0.5rem;
  line-height: 1.35;
  max-width: 86%;
}
.ph-chat-user {
  align-self: flex-end;
  background: var(--terra);
  color: var(--cream);
  border-radius: 12px 12px 3px 12px;
  font-weight: 500;
}
.ph-chat-zimmie {
  align-self: flex-start;
  background: white;
  border: 1px solid var(--hairline);
  border-radius: 3px 12px 12px 12px;
  color: var(--deep);
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 90%;
  max-width: 90%;
}
.ph-chat-zimmie > p { margin: 0; font-size: 0.5rem; color: var(--deep); }
.ph-chat-head {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.ph-chat-avatar {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(110% 110% at 30% 25%, var(--peach), var(--amber), var(--terra));
  flex: 0 0 auto;
}
.ph-chat-name {
  font-size: 0.42rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terra-deep);
}
.ph-plan-list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ph-plan-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 6px;
  font-size: 0.46rem;
  padding: 3px 0;
  border-top: 1px solid var(--hairline);
  align-items: baseline;
}
.ph-plan-list li:first-child { border-top: 0; }
.ph-plan-list li span {
  font-weight: 700;
  color: var(--terra);
  font-size: 0.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ph-plan-list li strong {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.5rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

/* ── Placeholder 2: iOS share-sheet (Path B step 1) ── */
.placeholder-share {
  background:
    radial-gradient(60% 50% at 30% 30%, rgba(247, 242, 238, 0.18), transparent 60%),
    radial-gradient(50% 40% at 70% 60%, rgba(232, 149, 109, 0.30), transparent 60%),
    linear-gradient(160deg, #d4763a 0%, #b85f28 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
}
.placeholder-share::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.30) 100%);
  pointer-events: none;
}
.placeholder-share .ph-share-preview,
.placeholder-share .ph-share-grid,
.placeholder-share .ph-share-action {
  position: relative;
  z-index: 1;
  background: rgba(247, 242, 238, 0.96);
  margin: 0 5%;
}
.placeholder-share .ph-share-preview {
  display: flex;
  gap: 8px;
  align-items: center;
  border-radius: 10px 10px 0 0;
  padding: 10px 10px 8px;
}
.ph-share-thumb {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--peach), var(--amber));
  flex: 0 0 auto;
}
.ph-share-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.ph-share-meta strong {
  font-size: 0.56rem;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--serif);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ph-share-meta span {
  font-size: 0.42rem;
  color: var(--muted);
}
.ph-share-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 4px;
  padding: 10px 8px 8px;
  border-top: 1px solid var(--hairline);
}
.ph-share-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  opacity: 0.55;
}
.ph-share-app--active { opacity: 1; }
.ph-share-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: linear-gradient(135deg, #d4d4d4, #aaaaaa);
}
.ph-share-icon-zimmer {
  background: radial-gradient(110% 110% at 30% 25%, var(--peach), var(--amber), var(--terra));
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 3px 8px rgba(212, 118, 58, 0.4);
  position: relative;
}
.ph-share-icon-zimmer::after {
  content: "";
  position: absolute;
  inset: -3px;
  border: 1.5px solid var(--terra);
  border-radius: 9px;
  pointer-events: none;
}
.ph-share-icon-zimmer svg {
  width: 14px;
  height: 14px;
}
.ph-share-label {
  font-size: 0.38rem;
  color: var(--ink);
  text-align: center;
  font-weight: 500;
  line-height: 1;
}
.placeholder-share .ph-share-action {
  border-radius: 0 0 10px 10px;
  padding: 10px;
  text-align: center;
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--terra-deep);
  border-top: 1px solid var(--hairline);
  margin-bottom: 5%;
}

/* ── Placeholder 3: Drag-to-calendar (Path B step 3) ── */
.placeholder-drag {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  padding: 12% 7% 8%;
}
.ph-drag-head {
  font-family: var(--serif);
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.ph-drag-days {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.ph-drag-days li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 5px;
  align-items: center;
  padding: 3px 0;
}
.ph-drag-day {
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.38rem;
}
.ph-drag-slot {
  height: 14px;
  border-radius: 5px;
  background: var(--cream-warm);
  display: flex;
  align-items: center;
  padding: 0 5px;
  font-size: 0.4rem;
  color: var(--deep-soft);
}
.ph-drag-target {
  background: rgba(212, 118, 58, 0.14);
  border: 1px dashed var(--terra);
  color: var(--terra-deep);
  font-weight: 600;
  font-family: var(--serif);
  font-size: 0.42rem;
  letter-spacing: -0.01em;
}
.ph-drag-card {
  position: absolute;
  right: 6%;
  bottom: 10%;
  width: 38%;
  background: white;
  border-radius: 8px;
  padding: 6px;
  box-shadow: 0 10px 20px rgba(59, 36, 18, 0.28);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: rotate(4deg);
  z-index: 2;
}
.ph-drag-card-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--peach), var(--amber));
}
.ph-drag-card strong {
  font-size: 0.42rem;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--serif);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.ph-drag-arrow {
  position: absolute;
  left: 42%;
  bottom: 28%;
  width: 28px;
  height: 38px;
  color: var(--terra);
  z-index: 1;
  animation: drag-pulse 2.5s ease-in-out infinite;
}
@keyframes drag-pulse {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}
@media (prefers-reduced-motion: reduce) {
  .ph-drag-arrow { animation: none; opacity: 0.7; }
}

/* ── Placeholder 4: Lockscreen widget (Outcome card 3) ── */
.placeholder-lockscreen {
  background: linear-gradient(160deg, #2a1a0c 0%, #5a3d24 50%, #3b2412 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14% 7% 8%;
  color: white;
}
.placeholder-lockscreen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 30% 20%, rgba(232,149,109,0.34), transparent 60%),
    radial-gradient(50% 50% at 80% 90%, rgba(212,118,58,0.28), transparent 65%);
  pointer-events: none;
}
.ph-ls-time {
  position: relative;
  z-index: 1;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  font-size: 2.4rem;
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 6%;
}
.ph-ls-date {
  position: relative;
  z-index: 1;
  font-size: 0.62rem;
  font-weight: 500;
  opacity: 0.82;
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.ph-ls-widgets {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  width: 100%;
}
.ph-ls-widget {
  background: rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.ph-ls-eyebrow {
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--peach);
  opacity: 0.96;
}
.ph-ls-widget strong {
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: white;
}
.ph-ls-meta {
  font-size: 0.5rem;
  opacity: 0.72;
  margin-top: 2px;
}
.ph-ls-widget-list .ph-ls-items {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 3px;
}
.ph-ls-items span {
  font-size: 0.5rem;
  opacity: 0.86;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ph-ls-items span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.55);
  flex: 0 0 auto;
}

/* ── §4 Mini features grid (by-the-way) ────────────── */
.bytheway.section { padding: clamp(56px, 7vw, 96px) 0; }
.bytheway .section-head { margin-bottom: clamp(28px, 4vw, 48px); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0 auto;
  max-width: 940px;
}
.mini-feature {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform 0.7s ease,
    box-shadow 0.7s ease,
    background-color 0.7s ease,
    border-color 0.7s ease;
  /* Isoler paint-layer pr kort — forhindrer nabohovers i at trigge
     rasterering af drop-shadows inde i de andre kort. */
  contain: paint;
}
.mini-feature:hover {
  transform: translateY(-3px);
  background-color: #fbe9d3;
  border-color: rgba(212, 118, 58, 0.32);
  box-shadow:
    0 18px 36px -12px rgba(212, 118, 58, 0.45),
    0 6px 14px -4px rgba(59, 36, 18, 0.12);
}
/* Hover-glow på illustrationerne inde i hvert kort — terra-hue rundt om
   bøger, widgets, stilleben, salling-phone */
.mini-feature:hover .books-stilleben {
  filter:
    drop-shadow(0 8px 16px rgba(59, 36, 18, 0.18))
    drop-shadow(0 0 24px rgba(212, 118, 58, 0.55));
}
.mini-feature:hover .widget-shot {
  filter:
    drop-shadow(0 6px 12px rgba(0, 0, 0, 0.18))
    drop-shadow(0 0 18px rgba(212, 118, 58, 0.55));
}
.mini-feature:hover .pantry-stilleben {
  filter: drop-shadow(0 0 28px rgba(212, 118, 58, 0.55));
}
.mini-feature:hover .salling-phone {
  box-shadow:
    0 18px 32px -8px rgba(59, 36, 18, 0.25),
    0 0 28px rgba(212, 118, 58, 0.50);
}
.mini-feature .mini-art {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  background: var(--cream-warm);
  display: grid; place-items: center;
  overflow: hidden;
  position: relative;
  padding: 12px;
}
.mini-feature .mini-art img {
  width: auto; max-width: 70%; max-height: 100%; height: auto; object-fit: contain;
}

/* Mini art-treatment: Delte & private kogebøger — stilleben af to bøger.
   App-brand gradient (cream → peach → terra) layeret som radial-pattern
   så den giver Zimmer-hero-feel rundt i hele windowet, ikke kun ét hjørne.
   padding: 0 så image fylder hele tinted area end-to-end.
   Selector boost'et til .mini-feature-prefix for at slå basis-rule's
   `background: var(--cream-warm)` (også 0,2,0 specificity, men senere i source). */
.mini-feature .mini-art-books {
  background:
    radial-gradient(120% 110% at 30% 15%, rgba(240,212,168,0.55) 0%, transparent 65%),
    radial-gradient(90% 80% at 75% 85%, rgba(232,149,109,0.32) 0%, transparent 72%),
    var(--cream-warm);
  padding: 0;
}
/* Specificity 0,3,0 — slår den generelle .mini-feature .mini-art img-regel
   (0,2,1) der ellers cap'er max-width: 70% + width: auto.
   Container har nu padding:0 så image fylder end-to-end. transform: scale
   med origin bottom — bunden står stille, image vokser opad (overflow:hidden
   cropper det transparente padding ved toppen). Ingen will-change → ingen
   blur fra pre-rasterization. */
.mini-feature .mini-art-books .books-stilleben {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* Scale origin biaset opad (35% fra top) — bunden vokser mere ned end
     toppen vokser op, så bøgerne visuelt sidder højere end center. */
  transform: scale(1.25);
  transform-origin: center 35%;
  transition: filter 0.7s ease;
}

/* Mini art-treatment: Widgets — home-screen wallpaper with widget grid.
   Samme brand-gradient som de andre 3 cards for visuel sammenhæng. */
.mini-feature .mini-art-homescreen {
  background:
    radial-gradient(120% 110% at 30% 15%, rgba(240,212,168,0.55) 0%, transparent 65%),
    radial-gradient(90% 80% at 75% 85%, rgba(232,149,109,0.32) 0%, transparent 72%),
    var(--cream-warm);
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.6fr 1fr;
  gap: 8px;
  align-items: stretch;
  justify-items: stretch;
}
.mini-art-homescreen .widget-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  /* drop-shadow på selve img — alpha-stabilt, isoleret af .mini-feature contain:paint */
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.18));
  max-width: 100%;
  transition: filter 0.7s ease;
}
.mini-art-homescreen .widget-shot-meal { grid-row: 1; grid-column: 1; }
.mini-art-homescreen .widget-shot-list { grid-row: 1; grid-column: 2; }
.mini-art-homescreen .widget-shot-lock {
  grid-row: 2;
  grid-column: 1 / -1;
  border-radius: 8px;
  object-position: center top;
}

/* Mini art-treatment: Pantry — ingredient illustration.
   Samme brand-gradient som books-cardet for visuel sammenhæng.
   padding: 0 så image fylder hele tinted area.
   Selector boost'et til .mini-feature-prefix (samme specificity som
   basis-rule, men senere i source — så vinder). */
.mini-feature .mini-art-pantry {
  background:
    radial-gradient(120% 110% at 30% 15%, rgba(240,212,168,0.55) 0%, transparent 65%),
    radial-gradient(90% 80% at 75% 85%, rgba(232,149,109,0.32) 0%, transparent 72%),
    var(--cream-warm);
  display: grid;
  place-items: center;
  padding: 0;
}
/* Specificity 0,3,0 — slår .mini-feature .mini-art img (0,2,1) der cap'er max-width 70%.
   Container padding:0, transform scale med origin bottom — bunden står stille,
   image vokser opad og udad. Overflow:hidden cropper transparent padding ved toppen. */
.mini-feature .mini-art-pantry .pantry-stilleben {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: scale(1.2);
  transform-origin: center bottom;
  transition: filter 0.7s ease;
}

/* Mini art-treatment: Salling — phone with prominent leaf-tag.
   Samme brand-gradient som de andre 3 cards. Den grønne leaf-stamp
   (.salling-stamp) står tydeligt på cream-baggrunden via shadow + bg-color. */
.mini-feature .mini-art-salling {
  background:
    radial-gradient(120% 110% at 30% 15%, rgba(240,212,168,0.55) 0%, transparent 65%),
    radial-gradient(90% 80% at 75% 85%, rgba(232,149,109,0.32) 0%, transparent 72%),
    var(--cream-warm);
  position: relative;
  padding: 0;
  display: grid;
  place-items: center;
}
.mini-art-salling .salling-phone {
  width: 60%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 32px -8px rgba(59,36,18,0.25);
  background: #000;
  transition: box-shadow 0.7s ease;
}
.mini-art-salling .salling-phone img { width: 100%; height: auto; display: block; }
.mini-art-salling .salling-stamp {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--leaf);
  color: white;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 6px 14px rgba(79,122,74,0.28);
  transform: rotate(8deg);
}
.mini-art-salling .salling-stamp svg { width: 14px; height: 14px; }
.mini-feature h3 { margin: 8px 0 0; }
.mini-feature p { margin: 0; font-size: 0.94rem; color: var(--muted); line-height: 1.5; }

/* ── §4.5 Trust (desktop) — founder-led ─────────────── */
.trust-desktop.section { padding: clamp(64px, 8vw, 104px) 0; background: var(--cream-warm); }
.trust-desktop-head {
  max-width: 720px;
  margin: 0 auto clamp(32px, 4vw, 56px);
  text-align: center;
}
.trust-desktop-head .eyebrow { display: inline-block; margin-bottom: 14px; }
.trust-desktop-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin: 0 0 18px;
  text-wrap: balance;
}
.trust-desktop-head .lead {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--muted);
  line-height: 1.55;
  text-wrap: balance;
}
.trust-desktop-head strong { color: var(--ink); font-weight: 600; }
.trust-desktop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 32px);
  max-width: 980px;
  margin: 0 auto clamp(32px, 4vw, 48px);
}
.trust-desktop-card {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-sm);
}
.trust-desktop-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  margin: 0 0 12px;
}
.trust-desktop-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.55;
}
.trust-desktop-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.trust-desktop .container { display: flex; flex-direction: column; align-items: center; }
.trust-desktop-cta:hover { transform: translateY(-1px); box-shadow: 0 16px 32px -10px rgba(59,36,18,0.32); }
@media (max-width: 880px) and (min-width: 720px) {
  .trust-desktop-grid { grid-template-columns: 1fr; max-width: 560px; }
}
@media (prefers-reduced-motion: reduce) {
  .trust-desktop-cta:hover { transform: none; }
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq details {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 4px 24px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.faq details[open] { border-color: var(--hairline-strong); background: white; }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--terra);
  width: 28px; height: 28px;
  display: grid; place-items: center;
  /* +-glyffen ligger lavt i sin em-boks (descender-luft under) — line-height 1
     + let opadskub centrerer den VISUELT på baren, ikke bare boksens midte */
  line-height: 1;
  transform: translateY(-2px);
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}
.faq details[open] summary::after { transform: translateY(-2px) rotate(45deg); }
.faq details p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 64ch;
}

/* Mobile: kompakt padding/font + "Se flere"-toggle.
   Desktop: alle spørgsmål vises altid, toggle-knap er skjult. */
.faq-toggle { display: none; }
@media (max-width: 719.98px) {
  .faq { gap: 10px; }
  .faq details {
    padding: 0 18px;
    border-radius: 14px;
  }
  .faq summary {
    padding: 14px 0;
    font-size: 1.02rem;
    gap: 12px;
  }
  .faq summary::after {
    font-size: 1.4rem;
    width: 24px;
    height: 24px;
  }
  .faq details p {
    margin: 0 0 14px;
    font-size: 0.94rem;
    line-height: 1.55;
  }
  .faq .faq-extra { display: none; }
  .faq.is-expanded .faq-extra { display: block; }
  .faq-toggle {
    display: inline-flex;
    align-self: center;
    margin-top: 8px;
    padding: 10px 22px;
    background: transparent;
    border: 1px solid var(--hairline-strong);
    border-radius: var(--radius-pill);
    color: var(--terra-deep);
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.94rem;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
  }
  .faq-toggle:hover,
  .faq-toggle:focus-visible { background: rgba(212,118,58,0.06); }
}

/* ── Final CTA ───────────────────────────────────────── */
.final-cta {
  position: relative;
  padding: clamp(40px, 5vw, 64px) 0 clamp(28px, 4vw, 48px);
  /* Toppen er TRANSPARENT (ingen hård kant mod FAQ-sektionen ovenfor) —
     body-gradienten glider ind i peach-varmen i stedet for at møde en opaque cream-linje */
  background:
    radial-gradient(60% 80% at 50% 110% in oklab, rgba(232,149,109,0.42) 0%, transparent 62%),
    linear-gradient(to bottom in oklab, rgba(245,227,206,0) 0%, rgba(245,227,206,0.65) 42%, #f0d4a8 100%);
  overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 110% in oklab, rgba(232,149,109,0.38) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta-inner {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  gap: 16px;
}
.final-mascot-wrap {
  position: relative;
  width: clamp(160px, 18vw, 220px);
}
.final-mascot-wrap img.mascot {
  width: 100%; height: auto;
  filter: drop-shadow(0 2px 7px rgba(59,36,18,0.30));
  animation: none;
}
.final-mascot-wrap::after {
  content: "";
  position: absolute;
  left: 13%; right: 13%;
  bottom: 3%;
  height: 22px;
  background: radial-gradient(50% 100% at 50% 25%, rgba(59,36,18,0.30) 0%, transparent 73%);
  filter: blur(7px);
  z-index: -1;
}
.final-cta h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); max-width: 18ch; text-wrap: balance; }
.final-cta .lead { margin: 0 auto; max-width: 50ch; }
.final-cta-actions { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 8px; }

/* ── Footer ──────────────────────────────────────────── */
/* Desktop-only — mobile har sin egen .footer-regel i mobile-MQ.
   Scoped til min-width: 720px så peach-fade-bg ikke lækker til mobile
   via source-order (mobile-MQ kommer FØR denne i source). */
@media (min-width: 720px) {
  .footer {
    padding: 28px 0 24px;
    background: linear-gradient(to bottom, #f0d4a8 0%, var(--cream) 20%, var(--cream) 100%);
  }
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--muted-soft);
}
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a:hover { color: var(--deep); }

/* ── Responsive bytheway grid ────────────────────────── */
@media (min-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    gap: 18px;
  }
  .mini-feature { padding: 18px 18px 20px; }
  .mini-feature h3 { font-size: 1.1rem; }
  .mini-feature p { font-size: 0.88rem; }
}
@media (max-width: 880px) {
  .feature-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ── Scroll-to-top FAB ────────────────────────────────── */
.scroll-top-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(10px) scale(0.92);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}
.scroll-top-fab.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.scroll-top-fab svg { width: 16px; height: 16px; }
.scroll-top-fab:hover {
  background: var(--terra-deep);
}
.scroll-top-fab:hover.is-visible {
  transform: translateY(-2px) scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .scroll-top-fab { transition: opacity 0.2s ease; }
  .scroll-top-fab:hover.is-visible { transform: none; }
}

/* ─────────────────────────────────────────────────────────────
   Reveal-on-load + reveal-on-scroll — desktop only
   - Hero-copy children fader op samlet ved load (parallelt med phones)
   - Sektion-kort/items fader ind via IntersectionObserver i index.html
   Mobile er bevidst undtaget (device-split — mobil-DOM må ikke skjule indhold)
   ───────────────────────────────────────────────────────────── */
@media (min-width: 720px) {
  /* Hero-copy block-level fade — eyebrow, CTA, android-note, meta.
     H1 og lead får word-level reveal (JS splitter dem til .word-spans). */
  .hero-copy > .eyebrow,
  .hero-copy > .hero-cta,
  .hero-copy > .android-note,
  .hero-copy > .hero-meta {
    opacity: 0;
    filter: blur(10px);
    transition: opacity 1s cubic-bezier(.2,.7,.2,1), filter 1s cubic-bezier(.2,.7,.2,1);
    will-change: opacity, filter;
  }
  .hero-copy > .eyebrow      { transition-delay: 0ms; }
  /* CTA-blok starter 500ms FØR back lander — kraftigere overlap så det
     føles som ét sammenhængende reveal i stedet for adskilte beats. */
  .hero-copy > .hero-cta     { transition-delay: 2280ms; }
  .hero-copy > .android-note { transition-delay: 2380ms; }
  .hero-copy > .hero-meta    { transition-delay: 2480ms; }

  .hero-copy.is-in > .eyebrow,
  .hero-copy.is-in > .hero-cta,
  .hero-copy.is-in > .android-note,
  .hero-copy.is-in > .hero-meta {
    opacity: 1;
    filter: blur(0);
    will-change: auto; /* release GPU-layer efter fade-in */
  }

  /* FOUC-guard (runde 5): H1/lead er rå tekst indtil JS har splittet dem til
     .word-spans — uden denne regel paintes de synlige, gemmes af splitten og
     fader så ind = "blink". html.js sættes i <head> før første paint; JS
     tilføjer .is-split når splitten er færdig. Uden JS: ingen html.js => synlig. */
  html.js .hero-copy h1, html.js .hero-copy .lead { opacity: 0; }
  html.js .hero-copy.is-split h1, html.js .hero-copy.is-split .lead { opacity: 1; }

  /* Word-by-word reveal på H1 og lead — JS splitter text-nodes til
     <span class="word"> og sætter individuel transition-delay. */
  .hero-copy h1 .word {
    display: inline-block;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 1.1s cubic-bezier(.2,.7,.2,1),
                filter 1.1s cubic-bezier(.2,.7,.2,1);
    will-change: opacity, filter;
  }
  .hero-copy .lead .word {
    display: inline-block;
    opacity: 0;
    filter: blur(8px);
    transform: translateY(8px);
    transition: opacity 0.75s cubic-bezier(.2,.7,.2,1),
                filter 0.75s cubic-bezier(.2,.7,.2,1),
                transform 0.75s cubic-bezier(.2,.7,.2,1);
    will-change: opacity, filter, transform;
  }
  .hero-copy.is-in h1 .word {
    opacity: 1;
    filter: blur(0);
    will-change: auto;
  }
  .hero-copy.is-in .lead .word {
    opacity: 1;
    filter: blur(0);
    transform: none;
    will-change: auto;
  }

  /* Scroll-reveal cards — small translate ok (cards are large; sub-pixel
     snap not noticeable) + light blur. Loose 100ms stagger per sibling. */
  .reveal-group > .reveal {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(8px);
    transition: opacity 0.85s cubic-bezier(.2,.7,.2,1),
                filter 0.85s cubic-bezier(.2,.7,.2,1),
                transform 0.85s cubic-bezier(.2,.7,.2,1);
    will-change: opacity, filter, transform;
  }
  .reveal-group > .reveal:nth-child(1) { transition-delay: 0ms; }
  .reveal-group > .reveal:nth-child(2) { transition-delay: 100ms; }
  .reveal-group > .reveal:nth-child(3) { transition-delay: 200ms; }
  .reveal-group > .reveal:nth-child(4) { transition-delay: 300ms; }
  .reveal-group > .reveal:nth-child(5) { transition-delay: 400ms; }
  .reveal-group > .reveal:nth-child(6) { transition-delay: 500ms; }
  .reveal-group.is-in > .reveal {
    opacity: 1;
    filter: blur(0);
    transform: none;
    will-change: auto; /* release GPU-layer så hover-filters ikke klippes af stale layer */
  }

  /* Single-element reveal — text-heavy (section heads, FAQ-block, final-cta).
     Pure blur+opacity, no translate, så bogstaverne ikke klikker ved landing. */
  .reveal-solo {
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), filter 0.9s cubic-bezier(.2,.7,.2,1);
    will-change: opacity, filter;
  }
  .reveal-solo.is-in {
    opacity: 1;
    filter: blur(0);
    will-change: auto;
  }
}

@media (min-width: 720px) and (prefers-reduced-motion: reduce) {
  .hero-copy > .eyebrow,
  .hero-copy > .hero-cta,
  .hero-copy > .android-note,
  .hero-copy > .hero-meta,
  .hero-copy h1 .word,
  .hero-copy .lead .word,
  .reveal-group > .reveal,
  .reveal-solo {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

/* ═══ Ved gryden — læringslaget (desktop; mobil = .sp-mobile-stove).
   Skaleret til stor skærm: fuld container, stor typografi, stor telefon. ═══ */
.atstove-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  margin: 0 auto;
}
.atstove-copy .eyebrow { display: inline-block; margin-bottom: 16px; }
.atstove-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 0 0 20px;
}
.atstove-copy > p:not(.atstove-quote) {
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.6;
}
.atstove-copy .atstove-quote,
.atstove-quote {
  margin: 30px 0 0;
  padding-left: 20px;
  border-left: 3px solid var(--terra);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  line-height: 1.3;
}
.atstove-phone { display: flex; justify-content: center; }
.atstove-phone .phone-frame-small { width: min(380px, 100%); }

/* Mobil-varianten af pull-quoten (runde 6: sektionen fik telefon-visuel på mobil) */
@media (max-width: 719.98px) {
  /* Runde 8b: quoten er flettet ind som stove-beatets punktum — tæt under
     brødteksten (før: flød alene i tomrummet mellem beats). */
  .atstove-quote-mobile {
    margin: clamp(16px, 2.4svh, 24px) auto 0;
    padding-left: 0;
    border-left: 0;
    max-width: 20ch;
    font-size: clamp(1.2rem, 5.2vw, 1.5rem);
    line-height: 1.32;
  }
}

/* ═══ Trust-lede — lakmus-linjen under trust-overskriften ═══ */
.trust-lede {
  margin: 0 auto;
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.6;
}
@media (max-width: 719.98px) {
  .trust-lede-mobile {
    margin: 14px auto 0;
    max-width: 30ch;
    font-size: 0.98rem;
  }
}

/* ═══ Fra køkkenbordet — artikel-strip (bevidst diskret: 2 kort, dæmpede flader) ═══ */
.kokkenbord { padding-top: clamp(56px, 8vw, 110px); padding-bottom: clamp(56px, 8vw, 110px); }
.kokkenbord .section-head { margin-bottom: clamp(26px, 3.4vw, 44px); }
.kokkenbord-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}
.kokkenbord-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: clamp(20px, 2.6vw, 30px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.kokkenbord-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.kokkenbord-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 1.9vw, 1.45rem);
  line-height: 1.22;
}
.kokkenbord-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.55;
}
.kokkenbord-read {
  margin-top: auto;
  padding-top: 4px;
  color: var(--terra);
  font-weight: 600;
  font-size: 0.94rem;
}
.kokkenbord-more { margin: 1.7rem 0 0; text-align: center; }
.kokkenbord-more a { color: var(--muted); font-size: 0.94rem; font-weight: 500; }
.kokkenbord-more a:hover { color: var(--terra); }
@media (max-width: 719.98px) {
  .kokkenbord-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ═══ Footer-mantra — stille signatur, centreret (reversibel: slet blokken + <p> i footeren) ═══ */
.footer-mantra {
  margin: 0;
  width: 100%;
  text-align: center;
  order: 10;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}
.footer-mantra em { color: var(--terra); font-style: italic; }

/* ═══ Topbar: aktiv side markeret (undersider sætter .is-active via gen-script/statisk) ═══ */
.topbar-link.is-active { color: var(--terra-deep); font-weight: 700; }

/* ═══ Mobil-kort copy (runde 7): .m-short = snappy telefon-version af lange
   afsnit, .m-full = desktop-versionen. Telefonen skal ikke bære computer-tekst. ═══ */
.m-short { display: none; }
@media (max-width: 719.98px) {
  .m-full { display: none; }
  .m-short { display: inline; }
}

/* ═══ Udforsk-beat: center-stage-viewer (mønster fra /explore/, xp-tz-navnerum) ═══ */
.xp-tz-stage { position: relative; }
.xp-tz-back {
  display: inline-flex; align-items: center; gap: .25rem;
  margin: 0 auto 1rem; position: relative; left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--hairline); color: var(--terra-deep);
  font-weight: 600; font-size: .92rem; padding: .45rem 1rem;
  border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); cursor: pointer;
}
.xp-tz-back[hidden], .xp-tz-focus[hidden], .xp-tz-grid[hidden] { display: none; }
.xp-tz-focus { max-width: 620px; margin: 0 auto; }
.xp-tz-hero-row { display: flex; align-items: stretch; gap: .6rem; }
.xp-tz-arrow {
  flex: 0 0 auto; width: clamp(2.2rem, 6vw, 3.2rem); border: none; padding: 0;
  background: var(--cream-warm); color: var(--terra-deep); border-radius: var(--radius-md);
  font-size: 2rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); transition: background .2s ease;
}
.xp-tz-arrow:hover { background: var(--peach); }
.xp-tz-hero {
  position: relative; flex: 1 1 auto; min-width: 0; aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  display: block; text-decoration: none; color: #fff;
}
.xp-tz-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.xp-tz-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,26,12,.66) 0%, rgba(42,26,12,.05) 40%, transparent 58%);
}
.xp-tz-hero-cap { position: absolute; left: 1.3rem; right: 1.3rem; bottom: 1.15rem; z-index: 1; }
.xp-tz-hero-cap h3 {
  font-size: clamp(1.4rem, 3.4vw, 2.1rem); line-height: 1.1; margin: 0 0 .3rem;
  color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,.55);
}
.xp-tz-hero-cap p {
  font-size: .95rem; line-height: 1.4; margin: 0 0 .55rem; color: rgba(255,255,255,.92);
  text-shadow: 0 1px 10px rgba(0,0,0,.55);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.xp-tz-hero-cta {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--terra); color: #fff; font-weight: 600; font-size: .92rem;
  padding: .5rem 1.05rem; border-radius: var(--radius-pill); box-shadow: var(--shadow-md);
  transition: background .2s ease;
}
.xp-tz-hero:hover .xp-tz-hero-cta { background: var(--terra-deep); }
.xp-tz-tray { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem; margin-top: .7rem; }
.xp-tz-tray-card {
  position: relative; aspect-ratio: 1/1; border: none; padding: 0;
  border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-sm); background: var(--cream-warm);
}
.xp-tz-tray-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.xp-tz-tray-card:hover img { transform: scale(1.08); }
/* Klik-affordance på grid-fliserne (kun de JS-renderede har chippen) */
.xp-tz-tile { cursor: pointer; transition: transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .4s cubic-bezier(.22,.61,.36,1); }
.xp-tz-tile:hover { box-shadow: var(--shadow-lg); }
.xp-tz-open {
  position: absolute; top: .6rem; right: .6rem; z-index: 1;
  background: rgba(255,255,255,.92); color: var(--terra-deep);
  font-size: .72rem; font-weight: 700; letter-spacing: .02em;
  padding: .28rem .6rem; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm);
}

/* ═══ Hero-telefonens Udforsk-grid (JS-renderet; fallback = mosaik-billede) ═══ */
.hero-xp { position: absolute; inset: 0; }
.hero-xp-fallback { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-xp.is-live {
  display: flex; flex-direction: column;
  padding: 14% 6% 6%;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(240,212,168,.5) 0%, transparent 70%),
    radial-gradient(120% 100% at 8% 100%, rgba(232,149,109,.34) 0%, transparent 75%),
    linear-gradient(180deg, #fdf9f4 0%, #f4e9dc 100%);
}
.hero-xp-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin: 0 2% 4%;
}
.hero-xp-head .h-serif { font-family: var(--serif); font-weight: 800; font-size: 1.05rem; color: var(--ink); }
.hero-xp-hint { font-size: .62rem; font-weight: 600; color: var(--muted-soft); }
.hero-xp-grid {
  flex: 1; min-height: 0;
  display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; gap: 7px;
}
.hero-xp-tile {
  position: relative; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 12px -4px rgba(59,36,18,.28); display: block;
}
.hero-xp-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; transition: transform .4s ease;
}
.hero-xp-tile:hover img { transform: scale(1.07); }
.hero-xp-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,26,12,.62) 0%, transparent 52%);
}
.hero-xp-tile span {
  position: absolute; left: .5rem; right: .5rem; bottom: .4rem; z-index: 1;
  font-family: var(--serif); font-weight: 700; font-size: .68rem; line-height: 1.15;
  color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,.45);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* ═══ Broen — to forskudte fuldbredde-beats (desktop-only sektion) ═══ */
.bro { display: flex; flex-direction: column; gap: clamp(72px, 9vw, 140px); margin-top: clamp(40px, 5vw, 72px); }
.bro-beat {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 96px); align-items: center;
}
.bro-beat--flip .bro-copy { order: 2; }
.bro-beat--flip .bro-art { order: 1; }
.bro-copy .eyebrow { display: inline-block; margin-bottom: 16px; }
.bro-copy h3 {
  font-size: clamp(2.2rem, 4vw, 3.3rem); line-height: 1.06; margin: 0 0 20px;
}
.bro-lead {
  margin: 0; max-width: 36rem; color: var(--muted);
  font-size: clamp(1.15rem, 1.75vw, 1.42rem); line-height: 1.6;
}
.bro-steps {
  display: flex; flex-wrap: wrap; gap: .5rem 1.6rem;
  margin: 26px 0 0; padding: 0; list-style: none;
  counter-reset: brostep;
}
.bro-steps li {
  counter-increment: brostep;
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 600; color: var(--deep-soft); font-size: 1.05rem;
}
.bro-steps li::before {
  content: counter(brostep, decimal-leading-zero);
  font-family: var(--serif); font-style: italic; font-weight: 600;
  color: var(--terra); font-size: 1.05rem;
}
.bro-art { position: relative; display: flex; justify-content: center; min-height: 420px; }
.bro-phone { position: relative; }
.bro-phone img.phone-bezel {
  width: 100%; display: block; position: relative; z-index: 2; pointer-events: none;
  filter: drop-shadow(0 28px 48px rgba(59,36,18,0.22));
}
.bro-phone .phone-screen {
  position: absolute; left: 5.1%; right: 5.1%; top: 2.2%; bottom: 2.2%;
  border-radius: 9%; overflow: hidden; background: var(--cream); z-index: 1;
}
.bro-phone .phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.bro-phone-front { width: clamp(240px, 22vw, 320px); z-index: 2; }
.bro-phone-back {
  width: clamp(200px, 18vw, 264px); z-index: 1;
  position: absolute; top: 8%;
  transform: rotate(-7deg);
}
.bro-beat .bro-phone-back { left: 4%; }
.bro-beat .bro-phone-front { margin-left: 22%; transform: rotate(2.5deg); }
/* Madplan-beatet: indkøbslisten falder ud til VENSTRE (overskrift + varer synlige),
   madplanen hælder let til højre foran den */
.bro-beat--flip .bro-phone-back {
  left: 0; right: auto; top: 5%;
  width: clamp(220px, 20vw, 292px);
  transform: rotate(-6deg);
}
.bro-beat--flip .bro-phone-front { margin-left: 34%; margin-right: 0; transform: rotate(2.5deg); }

/* ═══ Trust: founder-kortets læs-link ═══ */
.trust-card-link {
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: 14px; color: var(--terra); font-weight: 600; font-size: .98rem;
}
.trust-card-link:hover { color: var(--terra-deep); }
.trust-mobile-point a { color: var(--terra); font-weight: 600; }

/* Viewer på mobil — runde 8: fuldhøjde-pile-skinnerne lignede artefakter på
   device → små runde overlay-knapper på heroens kanter (forside + /explore/) */
@media (max-width: 719.98px) {
  .xp-tz-focus { max-width: 100%; }
  .xp-tz-hero-row, .xpv-hero-row { position: relative; gap: 0; }
  .xp-tz-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    flex: none;
    width: 42px;
    height: 42px;
    transform: translateY(-50%);
    border-radius: 50%;
    font-size: 1.5rem;
    background: rgba(255, 250, 243, 0.9);
    color: var(--terra-deep);
    box-shadow: 0 6px 16px -6px rgba(59, 36, 18, 0.45);
  }
  .xp-tz-arrow:first-child { left: 10px; }
  .xp-tz-arrow:last-child { right: 10px; }
}

/* ═══ Udforsk-beatet v2 — dual: prøv-selv-viewer (venstre) + app-reel-telefon (højre) ═══ */
.xpb {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.xpb-try { min-width: 0; }
.xpb-fallback { max-width: 100%; }
.xpb-viewer[hidden] { display: none; }
.xpv-hero-row { display: flex; align-items: stretch; gap: .6rem; }
.xpv-hero {
  /* 1:1 som tray-fliserne => FLIP-morph er ren uniform scale (ingen straek) */
  position: relative; flex: 1 1 auto; min-width: 0; aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  display: block; text-decoration: none; color: #fff;
  background: var(--cream-warm); /* synlig "tallerken" mens billedet flyver */
}
.xpv-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.xpv-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,26,12,.66) 0%, rgba(42,26,12,.05) 42%, transparent 60%);
}
/* Captions + overlays fader ud mens billederne bytter plads, ind igen med de nye retter */
.xpb-viewer .xp-tz-hero-cap, .xpv-hero::after,
.xpv-tray-title, .xpb-viewer .xpv-tray-card::after { transition: opacity .18s ease; }
.xpb-viewer.is-swapping .xp-tz-hero-cap, .xpb-viewer.is-swapping .xpv-hero::after,
.xpb-viewer.is-swapping .xpv-tray-title, .xpb-viewer.is-swapping .xpv-tray-card::after { opacity: 0; }
.xpv-tray { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem; margin-top: .7rem; }
/* Titel på tray-fliserne (samme greb som explore-sidens .xp-tray-title) */
.xpv-tray-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(42,26,12,.55) 0%, rgba(42,26,12,.06) 42%, transparent 58%);
}
.xpv-tray-title {
  position: absolute; left: .45rem; right: .45rem; bottom: .4rem; z-index: 1;
  font-family: var(--serif); font-weight: 700; font-size: .72rem; line-height: 1.15;
  color: #fff; text-align: left; text-shadow: 0 1px 6px rgba(0,0,0,.45);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.xpv-tray-card:hover { transform: translateY(-3px); }
.xpv-tray-card { transition: transform .25s ease; }
@media (max-width: 479.98px) {
  /* Runde 6 M4: titler klemmer på ~80px-fliser — lad billederne tale på small */
  .xpv-tray-title { display: none; }
  .xpv-tray-card::after { background: linear-gradient(to top, rgba(42,26,12,.28) 0%, transparent 40%); }
}
.xpb .xp-tz-cta-wrap { margin-top: 1.4rem; }
.xpb-phone { display: flex; justify-content: center; }
.xpb-phone .phone-frame-small { width: min(300px, 100%); }
@media (max-width: 719.98px) {
  .xpb { grid-template-columns: 1fr; }
  .xpb-phone { display: none; } /* mobil: prøv-selv-vieweren er pointen; app'en er allerede i hånden */
  .xpv-tray { gap: .45rem; }
  /* Runde 8: spacing-pass — .section's desktop-padding gav død luft om beatet */
  #explore.section { padding: clamp(44px, 6svh, 68px) 0 clamp(46px, 6.5svh, 72px); }
  #explore .section-head { margin-bottom: 22px; }
}

/* App-reel-mocken: fuld-bleed ret + titel — sådan ser Udforsk ud i appen */
.reel-mock { position: absolute; inset: 0; background: #1c130b; }
.reel-mock > img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .96; }
.reel-mock::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,12,6,.78) 0%, rgba(20,12,6,.12) 38%, transparent 55%);
}
.reel-cap { position: absolute; left: 9%; right: 16%; bottom: 8%; z-index: 1; display: flex; flex-direction: column; gap: 5px; }
.reel-eyebrow { font-size: .58rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.75); }
.reel-cap strong { font-family: var(--serif); font-weight: 800; font-size: 1.02rem; line-height: 1.15; color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.45); }
.reel-meta { font-size: .62rem; color: rgba(255,255,255,.85); }
.reel-dots { position: absolute; right: 6%; top: 50%; transform: translateY(-50%); z-index: 1; display: flex; flex-direction: column; gap: 6px; }
.reel-dots i { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.45); }
.reel-dots i.on { background: #fff; height: 14px; border-radius: 3px; }

/* ═══ Hentet-opskrift-mock (del-link-beatets bagerste telefon) ═══ */
.placeholder-recipe { position: absolute; inset: 0; background: var(--cream); display: flex; flex-direction: column; }
.ph-rec-hero { flex: 0 0 44%; overflow: hidden; }
.ph-rec-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph-rec-body { flex: 1; padding: 9% 9% 6%; display: flex; flex-direction: column; gap: 8px; min-height: 0; }
.ph-rec-title { font-family: var(--serif); font-weight: 800; font-size: 1.05rem; color: var(--ink); line-height: 1.1; }
.ph-rec-chips { display: flex; gap: 6px; }
.ph-rec-chips span {
  font-size: .56rem; font-weight: 600; color: var(--deep-soft);
  background: #fff; border: 1px solid var(--hairline);
  padding: .22rem .55rem; border-radius: var(--radius-pill);
}
.ph-rec-ing { list-style: none; margin: 4px 0 0; padding: 0; overflow: hidden; }
.ph-rec-ing li {
  position: relative; padding: .34rem 0 .34rem 1.1rem;
  font-size: .64rem; color: var(--deep); border-bottom: 1px solid var(--hairline);
}
.ph-rec-ing li::before {
  content: ""; position: absolute; left: 0; top: .62rem;
  width: 5px; height: 5px; border-radius: 50%; background: var(--amber);
}

/* ═══ Zimmie-beatet — fritflydende chat + mascot (ingen telefon; ASO-slide-greb) ═══ */
.zim-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin: 26px 0 0; padding: 0; list-style: none; }
.zim-chips li {
  font-size: .95rem; font-weight: 600; color: var(--deep-soft);
  background: #fff; border: 1px solid var(--hairline);
  padding: .5rem 1rem; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm);
}
.zim-art { position: relative; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.zim-bubbles { display: flex; flex-direction: column; gap: 12px; width: min(440px, 100%); }
.zim-bubble {
  max-width: 88%;
  padding: .85rem 1.1rem;
  border-radius: 20px;
  font-size: .98rem; line-height: 1.45;
  box-shadow: var(--shadow-sm);
}
.zim-bubble-user {
  align-self: flex-end;
  background: var(--terra); color: #fff;
  border-bottom-right-radius: 6px;
}
.zim-bubble-z {
  align-self: flex-start;
  display: flex; gap: .6rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--hairline); color: var(--deep);
  border-bottom-left-radius: 6px;
}
.zim-bubble-z p { margin: 0; }
.zim-avatar {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  overflow: hidden; background: var(--cream-warm); margin-top: 1px;
}
.zim-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.zim-mascot { width: clamp(110px, 10vw, 150px); height: auto; filter: drop-shadow(0 18px 22px rgba(59,36,18,.22)); }

/* ═══ RUNDE 3 — dybde-laget: heroens varme arbejder ned gennem siden ═══
   1) body = én lang, langsom gradient (lys top → varmere bund) i stedet for flad cream
   2) hver desktop-sektion får sin egen svage varme "lyskilde" (radial wash → transparent),
      så lyset vandrer fra side til side ned gennem beats'ene
   3) fint filmgrain-lag over det hele (desktop) — binder fotos, mocks og flader sammen */
body {
  background: linear-gradient(to bottom in oklab,
    #f8f4f0 0%, var(--cream) 22%, #f4ebe1 62%, #f1e5d8 100%);
}
@media (min-width: 720px) {
  /* VIGTIGT (runde 4): hver radial skal nå ALPHA 0 *inden* sektionens top/bund-kant —
     ellers klippes den ved grænsen og efterlader en synlig kant mod nabo-beatet.
     Tommelfingerregel: center-Y ± (v-size × 0.74) skal ligge inden for 2..95%. */
  #explore {
    background:
      radial-gradient(48% 40% at 88% 32% in oklab, rgba(240,212,168,.34) 0%, transparent 74%),
      radial-gradient(40% 26% at 4% 72% in oklab, rgba(232,149,109,.12) 0%, transparent 74%);
  }
  .paths#paths {
    background:
      radial-gradient(46% 26% at 0% 28% in oklab, rgba(240,212,168,.28) 0%, transparent 74%),
      radial-gradient(46% 26% at 100% 72% in oklab, rgba(232,149,109,.13) 0%, transparent 74%);
  }
  .atstove {
    background:
      radial-gradient(48% 36% at 96% 48% in oklab, rgba(240,212,168,.32) 0%, transparent 74%);
  }
  .paths--zim {
    background:
      radial-gradient(38% 26% at 8% 26% in oklab, rgba(240,212,168,.24) 0%, transparent 74%),
      radial-gradient(50% 30% at 55% 62% in oklab, rgba(232,149,109,.15) 0%, transparent 74%);
  }
  /* Trust: blød tonet bånd uden hårde kanter (før: flad opaque cream-warm) */
  .trust-desktop.section {
    background: linear-gradient(to bottom in oklab,
      transparent 0%, rgba(241,233,224,.85) 16%, rgba(241,233,224,.85) 84%, transparent 100%);
  }
  /* Filmgrain — statisk SVG-noise, ~3.5% opacity. Over alt indhold (pointer-events: none). */
  body::after {
    content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 240px 240px;
  }
}

/* ═══ RUNDE 3 — rytme: bro (2 beats) → Ved gryden → Zimmie som selvstændige sektioner.
   Default .section-padding ville give dobbelt luft mellem dem — stram til samme
   kadence som .bro's interne gap. ═══ */
@media (min-width: 720px) {
  #paths.section { padding-bottom: clamp(40px, 5vw, 72px); }
  .atstove.section { padding-top: clamp(40px, 5vw, 72px); padding-bottom: clamp(40px, 5vw, 72px); }
  .paths--zim.section { padding-top: clamp(40px, 5vw, 72px); }
  .paths--zim .bro { margin-top: 0; }
}

/* ═══ RUNDE 3 — større tekst på Udforsk-beatet (beatet før del-link) ═══ */
#explore .section-head p {
  font-size: clamp(1.12rem, 1.7vw, 1.32rem);
  max-width: 58ch;
}

/* ═══ RUNDE 4 — tekst-dybde på serif-overskrifter ═══
   Blød, varm skygge-fane under headings (samme "lys ovenfra" som telefonernes
   drop-shadows) — løfter typografien af papiret uden effekt-agtighed.
   Hvid-på-billede-captions (xp-tz-hero-cap, reel-cap) har egne text-shadows
   med højere specificitet og rammes ikke. */
h1.h-serif, h2.h-serif, h3.h-serif, .sp-mobile-headline, .trust-mobile-headline {
  text-shadow:
    0 2px 3px rgba(59, 36, 18, 0.05),
    0 14px 36px rgba(59, 36, 18, 0.12);
}

/* ═══ RUNDE 5 — let entrance på undersider (FAQ, artikler) ═══
   Samme "simre ind"-følelse som forsiden: elementer med [data-reveal] starter
   let sænket + usynlige og fader ind når de rammer viewporten (lille inline-IO
   på hver side). Gated bag html.js så no-JS aldrig gemmer indhold. */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1);
}
html.js [data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ═══ RUNDE 4 — standalone FAQ-side (/faq/) ═══
   Mobil-reglen gemmer .faq-extra bag en toggle på forsiden — på den dedikerede
   side skal alle spørgsmål altid være synlige. */
.faq-page .section { padding: clamp(40px, 6vw, 80px) 0; }
.faq-page { min-height: calc(100vh - 260px); padding-top: var(--nav-h); }
.faq-page .section-head { margin-bottom: clamp(28px, 4vw, 48px); }
.faq-page h1.h-serif { font-size: clamp(2.0rem, 4.4vw, 3.4rem); }
.faq.faq-standalone .faq-extra { display: block; }
/* Links i FAQ-svar og -intro: diskret terra m. fin underlinje (før: usynlige) */
.faq details p a, .faq-page .section-head p a {
  color: var(--terra-deep);
  border-bottom: 1px solid rgba(184, 95, 40, 0.35);
  transition: border-color 0.15s ease;
}
.faq details p a:hover, .faq-page .section-head p a:hover { border-color: var(--terra-deep); }
