/* ============================================================
   Poddle — Landing page (card-swiping deck)
   Reuses the value calculator's dark Poddle theme + tokens
   (loaded via styles.css). This file adds the horizontal
   swipe-deck shell + the story cards.
   ============================================================ */

/* lock the page to the viewport: the DECK scrolls horizontally,
   the page itself does not scroll vertically. */
html, body { height: 100%; }
body.landing {
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ---------- header: reuse .topbar from styles.css ---------- */
.topbar .prog { gap: 7px; }

.skip {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(158deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  transition: color .15s, filter .15s;
}
.skip:hover { color: var(--fg-1); filter: brightness(1.3); }
.skip svg { width: 13px; height: 13px; }

/* ============================================================
   DECK  (transform-based carousel — JS sets the X offset)
   ============================================================ */
.deck-wrap {
  flex: 1;
  position: relative;
  min-height: 0;
  overflow: hidden;
  /* Keep browser pinch zoom, but route one-finger movement through the
     axis lock in landing.js so a horizontal swipe cannot move slide scroll. */
  touch-action: pinch-zoom;
}
.deck {
  height: 100%;
  display: flex;
  will-change: transform;
  transform: translate3d(0,0,0);
  transition: transform .5s var(--ease);
}
.deck.dragging { transition: none; }

.slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: safe center;
  padding: 26px var(--pad) 30px;
  touch-action: pinch-zoom;
}
.slide::-webkit-scrollbar { display: none; }

.slide__in {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  flex: none;
}

/* Each story section is contained within its own rounded card,
   echoing the join-poddle.web.app aesthetic. The calculator card
   (.s-calc) brings its own gradient card, so it's excluded here. */
.s-hero .slide__in,
.s-prob .slide__in,
.s-sol .slide__in,
.s-how .slide__in {
  position: relative;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  box-shadow: var(--glass-edge), var(--glass-drop);
  padding: 28px 22px 26px;
  overflow: hidden;
}

/* slide content enters when the slide becomes active.
   The entrance animates TRANSFORM ONLY — opacity stays 1 at all times —
   so even if the animation clock is throttled/frozen the content is
   always visible (just un-shifted), never blank. */
.slide .rise { opacity: 1; transform: none; }

@media (prefers-reduced-motion: no-preference) {
  .slide.active .rise { animation: riseIn .5s var(--ease); }
}
@keyframes riseIn {
  from { transform: translateY(18px); }
  to   { transform: none; }
}

/* ============================================================
   SHARED CARD TYPE
   ============================================================ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.kicker::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--pink-400);
  box-shadow: 0 0 9px var(--pink-400);
  flex: none;
}
.kicker.purple { color: var(--purple-200); }
.kicker.purple::before { background: var(--purple-400); box-shadow: 0 0 9px var(--purple-400); }

.slide h1,
.slide h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 16px 0 0;
  text-wrap: balance;
}
.slide h1 { font-size: clamp(34px, 8.6vw, 46px); }
.slide h2 { font-size: clamp(29px, 7.6vw, 40px); }

.hl {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pink { color: var(--pink-300); }
.purple { color: var(--purple-200); }
.brand-deliveroo { color: #00CCBC; }
.brand-ubereats  { color: #06C167; }

.body {
  margin: 16px 0 0;
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--fg-2);
  text-wrap: pretty;
  max-width: 36ch;
}
.body b { color: var(--fg-1); font-weight: 700; }

/* floating Pod art */
.pod-float { display: block; pointer-events: none; }

/* ============================================================
   SLIDE 0 — HERO
   ============================================================ */
.s-hero { position: relative; }
.s-hero .slide__in { padding-top: 0; }
.hero-pod {
  position: absolute;
  top: -28px;
  left: -22px;
  width: calc(100% + 44px);
  height: auto;
  z-index: 0;
  pointer-events: none;
  transform: translate(4%, -23%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 52%, transparent 72%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 52%, transparent 72%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 54%;
}
.hero-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px 8px 11px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
  background: linear-gradient(158deg, rgba(20,16,28,0.62), rgba(12,10,16,0.42));
  border: 1px solid rgba(255,255,255,0.14);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
          backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 10px 24px -10px rgba(0,0,0,0.75);
}
.hero-tag svg {
  width: 14px;
  height: 14px;
  flex: none;
  color: var(--pink-300);
}
.s-hero .body { font-size: 17px; max-width: 32ch; }

.sig {
  margin-top: 22px;
  display: flex; align-items: center; gap: 11px;
}
.sig__av {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,47,158,0.12);
  display: grid; place-items: center; flex: none;
  box-shadow: 0 0 0 2px rgba(255,47,158,0.5), 0 6px 16px -6px rgba(255,47,158,0.7);
  overflow: hidden;
}
.sig__av img { width: 32px; height: 32px; }
.sig__t { font-size: 13px; font-weight: 600; color: var(--fg-3); line-height: 1.35; }
.sig__t b { color: var(--fg-1); font-weight: 800; }

/* ============================================================
   SLIDE 1 — PROBLEM
   ============================================================ */
.s-prob { position: relative; }
.pod-pin-badge {
  position: absolute;
  top: 14px; right: 14px;
  width: clamp(60px, 16vw, 76px);
  height: clamp(60px, 16vw, 76px);
  display: grid; place-items: center;
  filter: drop-shadow(0 8px 20px rgba(255,47,158,0.45));
  z-index: 2;
}
.pod-pin-badge img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.beat {
  position: relative;
  padding: 16px 17px;
  border-radius: 18px;
  background: linear-gradient(158deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-inner);
}
.beat--promise { margin-top: 22px; padding: 20px 19px; }
.beat--reality { margin-top: 12px; }

.beat__stat {
  display: flex; align-items: center; gap: 16px;
  margin: 6px 0 12px;
  min-width: 0; /* Allow flex container to shrink below content size to prevent overflow */
}
.beat__num {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(64px, 19vw, 92px);
  line-height: 0.86;
  letter-spacing: -0.05em;
  padding-right: 0.12em;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--pink-400);
  font-variant-numeric: tabular-nums;
  position: relative;
  flex: none;
}
.beat__num::after {
  content: "";
  position: absolute; inset: -12% -10% -20% -10%;
  background: radial-gradient(ellipse at center, rgba(255,47,158,0.30), transparent 70%);
  filter: blur(10px); z-index: -1;
}
.beat__pre {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--pink-300);
  flex: none;
  white-space: nowrap;
}
.beat__cap {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.03em;
  line-height: 1.28;
  color: var(--fg-1);
  flex-shrink: 1;
  min-width: 0;
}

.beat__tag {
  display: block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  white-space: nowrap;
}
.beat__tag--ask {
  display: block;
  margin-bottom: 9px;
  color: var(--pink-300);
}
.beat__txt {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.42;
  color: var(--fg-2);
  margin: 0;
  text-wrap: pretty;
}
.beat__txt b { color: var(--fg-1); font-weight: 800; }
.beat__txt .pink { color: var(--pink-300); font-weight: 800; }

/* ============================================================
   SLIDE 2 — SOLUTION
   ============================================================ */
.s-sol .pod-float {
  width: clamp(138px, 40vw, 178px);
  margin: 4px auto 0;
  filter: drop-shadow(0 16px 34px rgba(255,47,158,0.4));
}
.flip {
  margin-top: 22px;
  display: grid; gap: 10px;
}
.flip-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border-radius: 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-inner);
}
.flip-row .was { color: var(--fg-3); }
.flip-row .now { color: var(--fg-1); text-align: right; }
.flip-row .k {
  font-family: var(--font-body);
  font-weight: 800; font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-4); margin-bottom: 3px;
}
.flip-row .now .k { color: var(--pink-300); }
.flip-row .v { font-size: 14.5px; font-weight: 700; line-height: 1.25; }
.flip-row .arr {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--gradient-pink);
  box-shadow: 0 6px 16px -6px rgba(255,47,158,0.7);
}
.flip-row .arr svg { width: 16px; height: 16px; stroke: #fff; }

/* ============================================================
   SLIDE 3 — HOW IT WORKS
   ============================================================ */
.s-how h2 { margin-bottom: 2px; }
.s-how .sub {
  margin: 12px 0 0;
  font-size: 15px; font-weight: 500; line-height: 1.45;
  color: var(--fg-2); max-width: 34ch;
}
.steps {
  margin-top: 22px;
  display: grid; gap: 12px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  left: 23px; top: 28px; bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--pink-500), var(--purple-400));
  opacity: 0.4;
  z-index: 0;
}
.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.step__ico {
  width: 48px; height: 48px; border-radius: 15px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(158deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)), #16141d;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-edge);
  color: var(--pink-300);
}
.step:nth-child(4) .step__ico { color: var(--pink-300); }
.step:nth-child(4) .step__n { color: var(--pink-300); }
.step:nth-child(4) .step__t {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.step:nth-child(4) .step__d { color: var(--pink-300); }
.step__ico svg { width: 23px; height: 23px; }
.step__n {
  font-family: var(--font-body);
  font-weight: 800; font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--fg-4);
}
.step__t {
  font-family: var(--font-display);
  font-weight: 600; font-size: 16.5px;
  letter-spacing: -0.01em; color: var(--fg-1);
  margin: 3px 0 0; line-height: 1.15;
}
.step__d {
  margin: 5px 0 0; font-size: 13.5px; font-weight: 500;
  line-height: 1.45; color: var(--fg-3); max-width: 38ch;
}

/* ============================================================
   SLIDE 4 — CALCULATOR CTA
   ============================================================ */
.s-calc { }
.calc-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 30px 24px 26px;
  background: var(--gradient-hero);
  box-shadow: var(--shadow-pink-glow), var(--glass-drop);
  text-align: left;
}
.calc-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 88% 12%, rgba(255,255,255,0.22), transparent 52%);
  pointer-events: none;
}
.calc-card .kicker { color: rgba(255,255,255,0.9); }
.calc-card .kicker::before { background: #fff; box-shadow: none; }
.calc-card h2 {
  color: #fff; position: relative;
  font-size: clamp(28px, 7.4vw, 38px);
}
.calc-card .body {
  color: rgba(255,255,255,0.92);
  position: relative;
  font-weight: 600;
  max-width: 30ch;
}
.calc-card__pod {
  position: absolute;
  right: -14px; bottom: -10px;
  width: clamp(112px, 32vw, 150px);
  filter: drop-shadow(0 12px 26px rgba(0,0,0,0.35));
  pointer-events: none;
}
.calc-cta {
  position: relative;
  margin-top: 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  border: 0; border-radius: 999px;
  background: #fff;
  color: var(--pink-600);
  font-family: var(--font-body);
  font-weight: 800; font-size: 14.5px;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 18px 22px;
  text-decoration: none;
  box-shadow: 0 14px 34px -10px rgba(0,0,0,0.4);
  transition: filter .18s, transform .08s;
}
.calc-cta:hover { filter: brightness(1.02); }
.calc-cta:active { transform: scale(0.985); }
.calc-cta svg { width: 19px; height: 19px; stroke: var(--pink-600); }

.calc-note {
  position: relative;
  margin: 16px 2px 0;
  display: flex; gap: 9px; align-items: flex-start;
  font-size: 12.5px; font-weight: 500; line-height: 1.45;
  color: rgba(255,255,255,0.82);
}
.calc-note svg { width: 15px; height: 15px; flex: none; margin-top: 1px; }

.calc-foot {
  margin: 22px 2px 0;
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-body);
  font-weight: 800; font-size: 10.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-3);
}
.calc-foot img { width: 22px; }

/* ============================================================
   BOTTOM NAV (arrows + hint)
   ============================================================ */
.deck-nav {
  flex: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 10px var(--pad) max(16px, env(safe-area-inset-bottom));
}
.nav-btn {
  width: 48px; height: 48px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--glass-border);
  background: linear-gradient(158deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--fg-1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
  transition: filter .15s, transform .08s, opacity .2s, border-color .15s;
}
.nav-btn svg { width: 22px; height: 22px; }
.nav-btn:hover { filter: brightness(1.25); border-color: var(--line-pink); }
.nav-btn:active { transform: scale(0.92); }
.nav-btn[disabled] { opacity: 0.32; pointer-events: none; }
.nav-btn--next {
  background: var(--gradient-pink);
  border-color: transparent;
  box-shadow: var(--shadow-pink-glow);
}
.nav-btn--next svg { stroke: #fff; }

/* ============================================================
   TUTORIAL OVERLAY  (dark bar — matches card body)
   ============================================================ */
.tut {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
  max-width: calc(var(--maxw) + 2 * var(--pad));
  padding: 0 var(--pad);
  z-index: 30;
  pointer-events: none;
  transition: opacity .42s var(--ease), transform .42s var(--ease);
}
.tut.gone {
  opacity: 0;
  transform: translateY(16px) scale(0.985);
}
.tut__bar {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px 11px 10px 18px;
  border-radius: 26px;
  background: rgba(23,21,28,0.9);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
          backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 18px 44px -18px rgba(0,0,0,0.9);
}
.tut__chev {
  flex: none;
  display: inline-flex;
  color: var(--pink-400);
  animation: tutNudge 1.5s var(--ease) infinite;
}
.tut__chev svg { width: 17px; height: 17px; }
.tut__chev svg:nth-child(2) { margin-left: -10px; opacity: 0.85; }
.tut__txt {
  flex: 1;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.005em;
  line-height: 1.25;
  color: #fff;
}
.tut__close {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  pointer-events: auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  color: var(--fg-2);
  cursor: pointer;
  transition: background .15s, color .15s, transform .08s;
}
.tut__close:hover { background: rgba(255,255,255,0.12); color: var(--fg-1); }
.tut__close:active { transform: scale(0.9); }
.tut__close svg { width: 17px; height: 17px; }

@keyframes tutNudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* dots in header double as a tappable progress control */
.prog .dot { cursor: pointer; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 540px) {
  :root { --pad: 28px; }
}
@media (max-height: 700px) {
  .slide { justify-content: safe start; padding-top: 18px; }
  .slide h1 { font-size: clamp(30px, 7.4vw, 40px); }
  .s-hero .pod-float { width: clamp(96px, 22vw, 128px); }
  .stat__num { font-size: clamp(60px, 18vw, 92px); }
  .steps { gap: 9px; }
  .steps::before { top: 24px; bottom: 24px; }
  .step__d { font-size: 13px; }
}

/* Mobile (≤539px): two-row statistic grid keeps "up to", "35%",
   and "commission per order" fully visible.  The three-column flex
   cannot reliably fit the caption below 540px (measured caption
   falls to 15–88 px at 280–412 px vs 81–88 px needed). */
@media (max-width: 539px) {
  .beat__stat {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 2px 8px;
    align-items: baseline;
  }
  .beat__pre {
    grid-column: 1;
    grid-row: 1;
  }
  .beat__num {
    grid-column: 2;
    grid-row: 1;
    font-size: clamp(32px, calc(21vw - 20px), 92px);
  }
  .beat__num::after {
    /* decorative glow extends the ink box and causes scrollWidth > clientWidth;
       remove from layout/paint entirely inside the compact mobile grid */
    display: none;
  }
  .beat__cap {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

/* beat__num uses a continuous mobile formula inside the two-row
   grid so there is no jump at any boundary.  calc(21vw - 20px)
   scales smoothly from ~33 px @ 250 → ~43 @ 300 → ~47 @ 320 →
   ~62 @ 390 → ~80 @ 478 → 92 @ 539, keeping row1 ink within
   the stat box across the entire mobile range.
   The ::after glow pseudo-element is hidden in mobile because
   its absolute inset + blur extend the ink box beyond the
   stat container, causing scrollWidth overflow. */

/* ============================================================
   DESKTOP — wider cards so each fits within the viewport height
   ============================================================ */
@media (min-width: 900px) {
  :root { --maxw: 880px; --pad: 32px; }

  .slide { padding: 22px var(--pad) 26px; }
  .slide h1 { font-size: clamp(36px, 4.6vw, 52px); }
  .slide h2 { font-size: clamp(30px, 3.6vw, 42px); }

  .s-prob .slide__in,
  .s-sol  .slide__in,
  .s-how  .slide__in { padding: 32px 36px 28px; }

  /* ----- HERO: image left, copy right ----- */
  .s-hero .slide__in {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 1.15fr;
    gap: 36px;
    align-items: center;
    padding: 0 36px 0 0;
    min-height: min(72vh, 560px);
  }
  .s-hero .hero-pod {
    position: relative;
    width: 195%;
    height: 150%;
    transform: translateY(8%);
    object-fit: contain;
    object-position: left bottom;
    align-self: end;
    z-index: 2;
    pointer-events: none;
    -webkit-mask-image: none;
            mask-image: none;
  }
  .s-hero .hero-copy { padding-top: 0; padding-right: 0; }
  .s-hero .hero-tag { top: 22px; left: 22px; }
  .s-hero .body { max-width: 44ch; }

  /* ----- PROBLEM: title across top, two beats side-by-side ----- */
  .s-prob .slide__in {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    row-gap: 14px;
    align-items: start;
  }
  .s-prob .kicker,
  .s-prob h2 { grid-column: 1 / -1; }
  .s-prob .beat--promise,
  .s-prob .beat--reality { margin-top: 0; align-self: stretch; }
  .s-prob .beat--promise { grid-column: 1; }
  .s-prob .beat--reality { grid-column: 2; }
  .s-prob .pod-pin-badge { top: 24px; right: 24px; }

  /* ----- SOLUTION: roomier body, single flip column ----- */
  .s-sol .body { max-width: 58ch; }
  .s-sol .flip { margin-top: 18px; }

  /* ----- HOW IT WORKS: 2×2 grid of steps ----- */
  .s-how .sub { max-width: 60ch; }
  .s-how .steps {
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
    row-gap: 14px;
  }
  .s-how .steps::before { display: none; }

  /* ----- CALC CTA: horizontal, Pod art on the right ----- */
  .s-calc .calc-card {
    padding: 36px 300px 30px 36px;
  }
  .s-calc .calc-card__pod {
    width: 260px;
    right: 8px;
    bottom: -14px;
  }
  .s-calc .calc-cta { max-width: 380px; }
}

@media (prefers-reduced-motion: reduce) {
  .deck { transition: none; }
  .slide .rise, .slide.active .rise { opacity: 1; transform: none; transition: none; }
  .tut__chev { animation: none; }
}
