/* ════════════════════════════════════════════════════════════════════════
   IVARO — LANDING v5
   Editorial · Swiss · Parchment.
   ──────────────────────────────────────────────────────────────────────── */

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

:root {
  --ink:        #0F292F;
  --ink-2:      #1a3c44;
  --ink-3:      #2a4e57;
  --secondary:  #455A64;
  --mute:       #6b7e83;
  --mute-2:     #b0bec5;
  --line:       #d9dfe1;
  --line-2:     #e9ecee;
  --paper:      #f3f1ea;
  --paper-2:    #ecebe2;
  --paper-3:    #fbfaf6;
  --paper-4:    #faf7ef;
  --white:      #ffffff;
  --accent:     #2E7D32;
  --accent-2:   #4caf50;
  --accent-3:   #81c784;
  --accent-ink: #1c4f1f;
  --warn:       #b76b1a;
  --warn-bg:    #fbeede;

  --ff-h: "Manrope", system-ui, sans-serif;
  --ff-b: "Inter", system-ui, sans-serif;
  --ff-m: "JetBrains Mono", ui-monospace, monospace;
  --ff-s: "Fraunces", "Times New Roman", serif;

  --easing: cubic-bezier(.2,.7,.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-b);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }
em { font-style: normal; }

/* ════════════════════════════════════════════════════════════════════════
   COMMON
   ──────────────────────────────────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-h);
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: transform 140ms var(--easing),
              background 160ms var(--easing),
              color 160ms var(--easing),
              box-shadow 160ms var(--easing);
}
.btn:active { transform: translateY(1px); }

.btn-pill {
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  font-size: 13.5px;
  border-radius: 999px;
}
.btn-pill:hover { background: var(--ink-2); }

.btn-cta {
  background: var(--ink);
  color: #fff;
  padding: 18px 28px 18px 32px;
  font-size: 16px;
  border-radius: 0;
  border: 1px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform 380ms var(--easing);
  z-index: 0;
}
.btn-cta > * { position: relative; z-index: 1; }
.btn-cta:hover::before { transform: translateY(0); }
.btn-cta svg { transition: transform 240ms var(--easing); }
.btn-cta:hover svg { transform: translateX(4px); }

.btn-cta-big {
  padding: 26px 38px 26px 42px;
  font-size: 21px;
  letter-spacing: -0.01em;
}

.margin-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.margin-dash {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.margin-tag.dark { color: rgba(255,255,255,0.55); }
.margin-tag.dark .margin-dash { background: var(--accent-3); }

.section-head {
  display: block;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 20px;
}
.section-h2 {
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: clamp(28px, 3.3vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-wrap: balance;
  position: relative;
  padding-left: 28px;
}
.section-h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.14em;
  width: 6px;
  height: 0.74em;
  background: var(--accent);
  border-radius: 2px;
}
.section-h2.light { color: #fff; }
.section-h2.light::before { background: var(--accent-3); }
.section-h2 em {
  font-family: var(--ff-s);
  font-weight: 500;
  font-style: italic;
  font-size: 0.95em;
  letter-spacing: -0.03em;
  color: var(--accent);
}
.section-h2.light em { color: var(--accent-3); }

/* ════════════════════════════════════════════════════════════════════════
   REVEAL ANIMATION
   ──────────────────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms var(--easing) var(--d, 0ms),
    transform 700ms var(--easing) var(--d, 0ms);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════════════════════════════
   NAV
   ──────────────────────────────────────────────────────────────────────── */
/* Uniform-ish section heights — short sections grow to match claim/trust.
   Trimmed from 760 so each section fits on smaller screens; on short viewports
   the floor is dropped so a section is never taller than its content needs. */
.problem, .wow, .caps, .audiences, .claim, .trust, .pricing, .faq {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-height: 860px) {
  .problem, .wow, .caps, .audiences, .claim, .trust, .pricing, .faq {
    min-height: auto;
  }
}
.problem > .container, .wow > .container, .caps > .container,
.audiences > .container, .claim > .container, .trust > .container,
.pricing > .container, .faq > .container, .final > .container {
  width: 100%;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 24px 0;
  transition: padding 320ms var(--easing), transform 360ms var(--easing), opacity 360ms var(--easing);
  pointer-events: none;
}
.nav.is-scrolled { padding-top: 10px; }
.nav.is-hidden {
  transform: translateY(-130%);
  opacity: 0;
}
.nav-capsule {
  pointer-events: auto;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 62px;
  padding: 0 12px 0 18px;
  border-radius: 999px;
  background: rgba(251,250,246,0.72);
  border: 1px solid rgba(15,41,47,0.1);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 10px 30px -16px rgba(15,41,47,0.28);
  transition: height 320ms var(--easing), box-shadow 320ms var(--easing), background 320ms var(--easing);
}
.nav.is-scrolled .nav-capsule {
  height: 54px;
  background: rgba(251,250,246,0.9);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 16px 36px -18px rgba(15,41,47,0.4);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: 23px;
  letter-spacing: -0.04em;
  color: var(--ink);
  flex-shrink: 0;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background-image: url(livaro-icon-rounded.png);
  background-size: cover;
  background-position: center;
  box-shadow: 0 2px 8px rgba(15,41,47,0.22);
}
.brand-beta {
  font-family: var(--ff-m);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(46,125,50,0.12);
  padding: 3px 7px;
  border-radius: 999px;
  align-self: center;
  margin-top: 1px;
}

/* Center links with sliding indicator */
.nav-links {
  position: relative;
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
}
.nav-link {
  position: relative;
  z-index: 1;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-3);
  border-radius: 999px;
  transition: color 200ms var(--easing);
  white-space: nowrap;
}
.nav-link:hover { color: var(--ink); }
.nav-ind {
  position: absolute;
  top: 4px;
  left: 0;
  height: calc(100% - 8px);
  width: 0;
  border-radius: 999px;
  background: rgba(15,41,47,0.07);
  opacity: 0;
  transition: transform 320ms var(--easing), width 320ms var(--easing), opacity 240ms var(--easing);
  pointer-events: none;
}
.nav-links:hover .nav-ind { opacity: 1; }

.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Language toggle */
.lang-toggle {
  position: relative;
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: rgba(15,41,47,0.06);
  border: 1px solid rgba(15,41,47,0.1);
}
.lang-pill {
  position: absolute;
  top: 3px; bottom: 3px; left: 3px;
  width: calc(50% - 3px);
  border-radius: 999px;
  background: var(--ink);
  transition: transform 300ms var(--easing);
  z-index: 0;
}
.lang-toggle[data-lang="de"] .lang-pill { transform: translateX(100%); }
.lang-btn {
  position: relative;
  z-index: 1;
  padding: 6px 12px;
  font-family: var(--ff-m);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  border-radius: 999px;
  transition: color 300ms var(--easing);
}
.lang-btn.is-on { color: #fff; }

/* Live portfolio ticker chip — product flavor */
.nav-ticker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15,41,47,0.1);
  background: rgba(255,255,255,0.5);
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.nt-dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(76,175,80,0.5);
  animation: nt-pulse 2.4s ease-in-out infinite;
}
@keyframes nt-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76,175,80,0.5); }
  50%      { box-shadow: 0 0 0 5px rgba(76,175,80,0); }
}
.nt-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 9px;
  color: var(--mute);
}
.nt-val {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.btn-pill svg { transition: transform 220ms var(--easing); }
.btn-pill:hover svg { transform: translateY(2px); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-ticker { display: none; }
}

/* ════════════════════════════════════════════════════════════════════════
   1 · HERO
   ──────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 22px 0 28px;
  overflow: hidden;
}
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 50% 45% at 14% 12%, rgba(46,125,50,0.10), transparent 60%),
    radial-gradient(ellipse 45% 40% at 88% 30%, rgba(15,41,47,0.06), transparent 70%),
    radial-gradient(ellipse 40% 50% at 70% 95%, rgba(46,125,50,0.05), transparent 65%);
}
/* Architectural floor-plan / grid motif */
.grain::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,41,47,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,41,47,0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 0%, transparent 78%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 0%, transparent 78%);
  opacity: 0.9;
}
/* Soft concentric "value" rings on the right, behind the phone */
.grain::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16%;
  width: 620px;
  height: 620px;
  transform: translate(50%, -50%);
  border-radius: 999px;
  background:
    radial-gradient(circle, transparent 0 28%, rgba(46,125,50,0.06) 28.5% 29%, transparent 29.5%),
    radial-gradient(circle, transparent 0 40%, rgba(46,125,50,0.05) 40.5% 41%, transparent 41.5%),
    radial-gradient(circle, transparent 0 52%, rgba(15,41,47,0.04) 52.5% 53%, transparent 53.5%);
  -webkit-mask-image: radial-gradient(circle, #000 30%, transparent 70%);
  mask-image: radial-gradient(circle, #000 30%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero-copy { padding-right: 24px; }

.hero-h1 {
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--ink);
  margin: 18px 0 40px;
  white-space: nowrap;
}
.hero-h1 .word {
  display: inline-block;
  margin-right: 0.18em;
}
.hero-h1 .word.italic {
  font-family: var(--ff-s);
  font-style: italic;
  font-weight: 500;
  font-size: 0.94em;
  letter-spacing: -0.04em;
  color: var(--accent);
}
.hero-h1 .reveal {
  opacity: 0;
  transform: translateY(40%);
  transition: opacity 700ms var(--easing) var(--d, 0ms),
              transform 700ms var(--easing) var(--d, 0ms);
}
.hero-h1 .reveal.is-in { opacity: 1; transform: translateY(0); }

.hero-sub {
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink-3);
  max-width: 580px;
  margin-bottom: 30px;
  text-wrap: pretty;
}
.hero-sub-em {
  font-family: var(--ff-s);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-reassure {
  font-family: var(--ff-m);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  line-height: 1.5;
}
.hero-reassure div { position: relative; padding-left: 14px; }
.hero-reassure div::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 6px; height: 1px; background: var(--accent);
}

/* HERO PHONE ─────────────────────────────────────────── */
.hero-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 0;
}
.phone-shadow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15,41,47,0.16), transparent 65%);
  filter: blur(40px);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.phone {
  position: relative;
  width: 320px;
  height: 660px;
  animation: phone-float 8s ease-in-out infinite;
}
@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotate(-1.6deg); }
  50%      { transform: translateY(-10px) rotate(-1.2deg); }
}
/* Hero showcase phone: static & upright — no float, no tilt. The phone now
   hosts the embedded Flutter app, which shouldn't drift up/down or sit
   angled. (Other `.phone` mockups keep the float.) */
#heroPhone {
  animation: none;
  transform: none;
}
/* ── Interactive-demo affordance around the hero phone ──────────────────── */
.demo-badge {
  position: absolute;
  top: -16px;
  right: 4px;
  z-index: 7;
  /* Small sticker tilted toward the phone. The dark, high-contrast card keeps
     the text readable even at an angle. */
  transform: rotate(7deg);
  transform-origin: top left;
  background: var(--ink);
  color: #fff;
  padding: 6px 12px;
  border-radius: 11px;
  box-shadow: 0 10px 22px -12px rgba(15, 41, 47, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 168px;
}
.demo-badge-main {
  font-family: var(--ff-m);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--accent-3);
}
.demo-badge-sub {
  margin-top: 2px;
  font-family: var(--ff-b);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.005em;
  color: #fff;
}
/* Anchored to the phone's centre (the phone is 320px and centred in the wrap),
   so it always hangs just to the RIGHT of the phone regardless of column width.
   Text is left-aligned and the arrow points left, into the screen. */
.demo-hint {
  position: absolute;
  top: 42%;
  left: calc(50% + 176px);
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 8px;
  color: var(--accent);
  pointer-events: none;
}
.demo-hint-label {
  font-family: var(--ff-h);
  font-style: italic;
  font-weight: 500;
  font-size: 13.5px;
  line-height: 1.2;
  white-space: nowrap;
  color: var(--ink);
}
.demo-hint-arrow {
  width: 92px;
  height: 54px;
  color: var(--accent);
}
/* When the hero stacks / gets narrow the phone is centred and there's no room
   beside it — keep just the badge, centred on top. */
@media (max-width: 1040px) {
  .demo-hint {
    display: none;
  }
  .demo-badge {
    top: 12px;
    right: 50%;
    transform: translateX(50%);
  }
}
.phone-bezel {
  width: 100%;
  height: 100%;
  border-radius: 46px;
  background: linear-gradient(180deg, #08181c 0%, #0a1e23 100%);
  padding: 7px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 40px 80px -30px rgba(15,41,47,0.45),
    0 20px 40px -20px rgba(15,41,47,0.3);
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background: var(--paper-3);
  overflow: hidden;
  color: var(--ink);
}
.phone-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 26px;
  border-radius: 14px;
  background: #000;
  z-index: 5;
}
.phone-status {
  position: absolute;
  top: 16px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 26px;
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 12px;
  color: var(--ink);
  z-index: 4;
}
.phone-status .status-right { display: inline-flex; gap: 5px; align-items: center; }
.status-dot { width: 4px; height: 4px; border-radius: 999px; background: var(--ink); }
.status-bat {
  width: 18px; height: 9px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  position: relative;
}
.status-bat::after {
  content: ""; position: absolute;
  inset: 1px; right: 6px;
  background: var(--ink);
  border-radius: 1px;
}
.phone-status.light { color: rgba(255,255,255,0.95); }
.phone-status.light .status-dot { background: rgba(255,255,255,0.95); }
.phone-status.light .status-bat { border-color: rgba(255,255,255,0.95); }
.phone-status.light .status-bat::after { background: rgba(255,255,255,0.95); }

.phone-home-bar {
  position: absolute;
  bottom: 6px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 4px;
  border-radius: 999px;
  background: rgba(15,41,47,0.35);
}
.phone-home-bar.light { background: rgba(255,255,255,0.4); }

.hp-content {
  position: absolute;
  inset: 50px 4px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hp-eyebrow {
  font-family: var(--ff-m);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mute);
}
.hp-greet {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 2px;
}
.hp-avatar {
  width: 30px; height: 30px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 13px;
}

.hp-hero-card {
  background: var(--ink);
  color: #fff;
  border-radius: 18px;
  padding: 16px 18px 14px;
  position: relative;
  overflow: hidden;
}
.hp-hero-card::after {
  content: "";
  position: absolute;
  right: -30px; top: -30px;
  width: 100px; height: 100px;
  background: var(--accent);
  opacity: 0.18;
  border-radius: 999px;
}
.hp-label {
  font-family: var(--ff-m);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hp-big-num {
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 4px 0 4px;
  font-variant-numeric: tabular-nums;
}
.hp-delta { display: flex; gap: 8px; align-items: baseline; font-size: 10.5px; }
.hp-delta-up { color: var(--accent-3); font-weight: 600; }
.hp-delta-meta { color: rgba(255,255,255,0.55); font-family: var(--ff-m); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; }

.hp-spark { width: 100%; height: 64px; margin-top: 8px; display: block; }
.hp-spark-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 1800ms var(--easing) 600ms;
}
.hp-spark-fill {
  opacity: 0;
  transition: opacity 800ms 1800ms ease;
}
.hp-spark-dot {
  opacity: 0;
  transform: scale(0);
  transform-origin: 280px 12px;
  transition: opacity 400ms 2200ms, transform 600ms cubic-bezier(.5, 1.6, .4, 1) 2200ms;
}
.phone.is-anim .hp-spark-line { stroke-dashoffset: 0; }
.phone.is-anim .hp-spark-fill { opacity: 1; }
.phone.is-anim .hp-spark-dot { opacity: 1; transform: scale(1); }

.hp-spark-axis {
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-m);
  font-size: 8px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  text-transform: uppercase;
}

.hp-section-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-m);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 4px 0 0;
}
.hp-section-meta { color: var(--ink-3); }

.hp-rooms {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hp-room {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 10px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 12px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 380ms var(--easing) calc(700ms + var(--i, 0) * 110ms),
              transform 380ms var(--easing) calc(700ms + var(--i, 0) * 110ms);
}
.phone.is-anim .hp-room { opacity: 1; transform: translateX(0); }
.hp-room-icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: rgba(46,125,50,0.08);
  color: var(--accent);
}
.hp-room-icon svg { width: 14px; height: 14px; }
.hp-room-icon[data-tone="0"] { background: rgba(46,125,50,0.14);  color: #2E7D32; }
.hp-room-icon[data-tone="1"] { background: rgba(76,175,80,0.16);  color: #2E7D32; }
.hp-room-icon[data-tone="2"] { background: rgba(129,199,132,0.22); color: #2E7D32; }
.hp-room-icon[data-tone="3"] { background: rgba(69,90,100,0.16);  color: var(--secondary); }
.hp-room-icon[data-tone="4"] { background: rgba(176,190,197,0.28); color: var(--ink-3); }
.hp-room-name { font-weight: 500; color: var(--ink); }
.hp-room-val {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.hp-tabs {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  padding: 8px 6px 6px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  font-family: var(--ff-m);
  font-size: 8.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hp-tab {
  text-align: center;
  padding: 6px 2px;
  color: var(--mute);
  border-radius: 8px;
}
.hp-tab.is-on { background: var(--ink); color: #fff; }

/* Floating chips */
.float-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 18px 36px -16px rgba(15,41,47,0.25);
  font-size: 12px;
  opacity: 0;
  transform: translateY(8px);
  animation: chip-in 600ms var(--easing) forwards;
  min-width: 180px;
}
.float-chip-1 {
  top: 24px;
  left: -100px;
  animation-delay: 1.6s;
}
.float-chip-2 {
  bottom: 30px;
  right: -90px;
  animation-delay: 2.2s;
}
@keyframes chip-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fc-label {
  font-family: var(--ff-m);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.fc-value {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 4px 0 2px;
}
.fc-meta { font-size: 11px; color: var(--ink-3); }
.fc-row { display: flex; gap: 6px; margin-top: 6px; }
.fc-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #e8f3e9;
  color: var(--accent-ink);
  font-size: 10px;
  font-weight: 600;
}
.fc-pill.warn { background: var(--warn-bg); color: var(--warn); }

/* ════════════════════════════════════════════════════════════════════════
   2 · PROBLEM
   ──────────────────────────────────────────────────────────────────────── */
.problem {
  padding: 22px 0 22px;
  background: var(--paper-2);
}
.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.receipt-stack {
  position: relative;
  height: 600px;
}
.receipt {
  position: absolute;
  background: #fffefb;
  border: 1px solid rgba(15,41,47,0.08);
  padding: 14px 16px;
  font-family: var(--ff-m);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  box-shadow: 0 18px 28px -18px rgba(15,41,47,0.18),
              0 1px 0 rgba(15,41,47,0.03);
  transition: transform 320ms var(--easing), box-shadow 320ms var(--easing);
  border-radius: 2px;
}
.receipt:hover {
  transform: translateY(-4px) rotate(0deg) !important;
  z-index: 10;
  box-shadow: 0 30px 50px -20px rgba(15,41,47,0.3);
}
.r-head {
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px dashed var(--line);
  padding-bottom: 6px;
  margin-bottom: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 9px;
}
.r-line { display: flex; justify-content: space-between; padding: 3px 0; }
.r-line.muted { color: var(--mute); font-style: italic; }

/* Polaroid item photo */
.polaroid {
  padding: 10px 10px 14px;
  background: #fffefb;
}
.polaroid-photo {
  aspect-ratio: 1 / 1;
  background: var(--paper-3);
  border: 1px solid var(--line-2);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}
.polaroid-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(0.96);
}
.polaroid-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,41,47,0.04), transparent 30%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(15,41,47,0.18), transparent 70%);
  pointer-events: none;
}

.polaroid-cap {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 10px;
  padding: 0 4px;
}
.pc-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pc-stat:last-child { text-align: right; align-items: flex-end; }
.pc-l {
  font-family: var(--ff-m);
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
.pc-v {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.pc-v.warn { color: var(--warn); }
.pc-v.pos { color: var(--accent); }

.r-a { top: 8px;   left: 12%;  width: 172px; transform: rotate(-11deg); z-index: 3; }
.r-b { top: 44px;  right: 4%;  width: 158px; transform: rotate(9deg);   z-index: 5; }
.r-c { top: 188px; left: -2%;  width: 166px; transform: rotate(4deg);   z-index: 6; }
.r-d { top: 168px; left: 38%;  width: 156px; transform: rotate(-7deg);  z-index: 7; }
.r-e { top: 344px; left: 10%;  width: 170px; transform: rotate(12deg);  z-index: 4; }
.r-f { top: 360px; right: 2%;  width: 164px; transform: rotate(-9deg);  z-index: 8; }

.problem-copy { padding-top: 8px; }
.problem-lede {
  font-family: var(--ff-h);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: pretty;
  margin-bottom: 28px;
}
.problem-lede strong { font-weight: 700; }
.problem-body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-3);
  text-wrap: pretty;
  margin-bottom: 40px;
}

.agitate {
  display: block;
  padding: 28px 32px;
  background: var(--ink);
  color: #fff;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.agitate::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--accent);
}
.agitate-mark {
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--accent-3);
  border: 2px solid rgba(129,199,132,0.4);
  background: rgba(129,199,132,0.08);
}
.agitate-headline {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.agitate-meta {
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}

/* ════════════════════════════════════════════════════════════════════════
   3 · MEET IVARO · 3-STEP FLOW
   ──────────────────────────────────────────────────────────────────────── */
.meet {
  padding: 22px 0;
}
.meet-pitch {
  font-family: var(--ff-h);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--ink-3);
  max-width: 880px;
  margin-bottom: 22px;
  text-wrap: balance;
}
.meet-pitch strong {
  color: var(--ink);
  font-weight: 600;
}

/* Flow: 3 cards + 2 arrows */
.flow {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr;
  gap: 0;
  align-items: stretch;
}
.flow-arrow {
  display: grid;
  place-items: center;
  color: var(--mute-2);
  align-self: center;
}
.flow-arrow svg { width: 32px; height: 16px; }

.flow-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  box-shadow:
    0 1px 0 rgba(15,41,47,0.04),
    0 24px 56px -28px rgba(15,41,47,0.18);
  transition: transform 240ms var(--easing), box-shadow 240ms var(--easing);
}
.flow-step:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(15,41,47,0.04),
    0 32px 64px -24px rgba(15,41,47,0.24);
}

.flow-step-dark {
  background: linear-gradient(170deg, #0F292F, #08171b);
  color: #fff;
  border-color: #08171b;
  position: relative;
  overflow: hidden;
}
.flow-step-dark::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(76,175,80,0.22), transparent 65%);
  pointer-events: none;
}
.flow-step-dark > * { position: relative; z-index: 1; }

.fs-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fs-num {
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
}
.flow-step-dark .fs-num { color: var(--accent-3); }
.fs-kind {
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.flow-step-dark .fs-kind { color: rgba(255,255,255,0.85); }

.fs-title {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.035em;
  line-height: 1.04;
  color: var(--ink);
  text-wrap: balance;
}
.flow-step-dark .fs-title { color: #fff; }
.fs-body {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-3);
  text-wrap: pretty;
  max-width: 32ch;
}
.flow-step-dark .fs-body { color: rgba(255,255,255,0.65); }

.fs-vis {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px dashed var(--line);
}
.flow-step-dark .fs-vis { border-top-color: rgba(255,255,255,0.12); }

/* Step 01 — Add: recent items list */
.fs-vis-add { display: flex; flex-direction: column; gap: 6px; }
.fsa-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 7px 10px 7px 8px;
  background: var(--paper-3);
  border: 1px solid var(--line-2);
  border-radius: 8px;
}
.fsa-thumb {
  width: 36px; height: 36px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
}
.fsa-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.fsa-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.fsa-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fsa-meta {
  font-family: var(--ff-m);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  color: var(--mute);
}
.fsa-tick {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: rgba(46,125,50,0.12);
  color: var(--accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

/* Step 02 — Value: portfolio + sparkline */
.fs-vis-value { color: #fff; }
.fsv-label {
  font-family: var(--ff-m);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.fsv-num {
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 6px 0 8px;
  font-variant-numeric: tabular-nums;
}
.fsv-delta {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 12px;
}
.fsv-delta-up { color: var(--accent-3); font-weight: 600; }
.fsv-delta-meta {
  font-family: var(--ff-m);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.fsv-spark { width: 100%; height: 50px; margin-top: 12px; display: block; }

/* Step 03 — Insure: rooms checklist */
.fs-vis-insure { display: flex; flex-direction: column; gap: 8px; }
.fsi-rows { display: flex; flex-direction: column; gap: 0; }
.fsi-row {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 7px 0;
  font-size: 13px;
  color: var(--ink);
  border-bottom: 1px solid var(--line-2);
}
.fsi-row:last-child { border-bottom: 0; }
.fsi-tick {
  width: 20px; height: 20px;
  display: grid; place-items: center;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}
.fsi-tick.ok { background: rgba(46,125,50,0.12); color: var(--accent); }
.fsi-tick.warn { background: var(--warn-bg); color: var(--warn); }
.fsi-name { font-weight: 500; }
.fsi-val {
  font-family: var(--ff-m);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--mute);
}
.fsi-row.warn .fsi-val { color: var(--warn); text-transform: uppercase; letter-spacing: 0.12em; }
.fsi-foot {
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-m);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.fsi-foot-r.warn { color: var(--warn); }

/* ════════════════════════════════════════════════════════════════════════
   4 · WOW MOMENT
   ──────────────────────────────────────────────────────────────────────── */
.wow {
  padding: 22px 0;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.wow::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(76,175,80,0.18), transparent 60%);
  pointer-events: none;
}
.wow .section-head { border-bottom-color: rgba(255,255,255,0.16); }
.wow-body {
  font-family: var(--ff-h);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin-bottom: 22px;
  text-wrap: pretty;
}
.wow-body strong { color: #fff; font-weight: 600; }

.flowx {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
  gap: 48px;
  align-items: start;
}

/* ── Flow rail ─────────────────────────────────────── */
.flowx-rail {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 8px;
  justify-content: center;
}
.fx-step {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 26px;
  padding: 20px 22px 20px 0;
}
.fx-txt { padding-top: 6px; opacity: 0.45; transition: opacity 360ms var(--easing); }
.fx-step.is-on .fx-txt { opacity: 1; }
/* connector line behind the number markers */
.flowx-rail::before {
  content: "";
  position: absolute;
  left: 43px; top: 52px; bottom: 52px;
  width: 2px;
  background: rgba(255,255,255,0.12);
  z-index: 0;
}
.fx-marker {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}
.fx-numbig {
  width: 72px; height: 72px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.7);
  background: #0c2228;
  border: 1.5px solid rgba(255,255,255,0.16);
  font-variant-numeric: tabular-nums;
  transition: background 360ms var(--easing), border-color 360ms var(--easing), color 360ms var(--easing), transform 360ms var(--easing), box-shadow 360ms var(--easing);
}
.fx-step.is-on .fx-numbig {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 14px 32px -12px rgba(46,125,50,0.85);
}
.fx-tag {
  display: inline-block;
  font-family: var(--ff-m);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
  margin-bottom: 10px;
}
.fx-tag.you { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }
.fx-tag.auto { background: rgba(76,175,80,0.2); color: var(--accent-3); }
.fx-title {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 6px;
}
.fx-desc {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.62);
  max-width: 42ch;
}
.fx-progress {
  display: none;
}

/* ── Phone column ──────────────────────────────────── */
.flowx-phone-col {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  margin-top: -40px;
}
.flowx-phone-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px; height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(76,175,80,0.22), transparent 62%);
  filter: blur(20px);
  animation: vx-breathe 6s ease-in-out infinite;
}
.flowx-phone-col .phone {
  position: relative;
  z-index: 1;
  transform: scale(0.74);
  transform-origin: center;
  margin: -78px 0;
}

/* ── Outcome / payoff strip ────────────────────────── */
.wow-payoff {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.wp-lead {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-h);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  text-wrap: pretty;
}
.wp-lead strong { color: #fff; font-weight: 700; }
.wp-arrow { flex-shrink: 0; color: var(--accent-3); display: inline-flex; }
.wp-arrow svg { width: 40px; height: 16px; }
.wp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.wp-stat {
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wp-stat:last-child { border-right: 0; }
.wp-num {
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.04em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.wp-lbl {
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.phone-dark .phone-screen { background: #0a1c20; color: #fff; }

.wow-screen {
  position: absolute;
  inset: 50px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 380ms var(--easing), transform 380ms var(--easing);
}
.wow-screen.is-on {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Step 1 viewfinder */
.wf {
  flex: 1;
  position: relative;
  background:
    radial-gradient(circle at 50% 45%, rgba(76,175,80,0.12), transparent 55%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 4px, transparent 4px 12px),
    #08171b;
  border-radius: 14px;
  overflow: hidden;
}
.wf-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 33.33% 33.33%;
}
.wf-art {
  position: absolute;
  top: 22%; left: 22%; right: 22%; bottom: 22%;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.06) inset,
    0 18px 32px -10px rgba(0,0,0,0.55);
  overflow: hidden;
}
.wf-art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95);
}
.wf-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55), transparent 30%, transparent 60%, rgba(0,0,0,0.75));
  z-index: 1;
  pointer-events: none;
}
.wf-art-badge {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 2;
  font-family: var(--ff-m);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(15,41,47,0.85);
  color: var(--accent-3);
  padding: 4px 8px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.wf-art-label {
  position: absolute;
  bottom: 10px; left: 0; right: 0;
  z-index: 2;
  font-family: var(--ff-m);
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  text-align: center;
}
.wf-target {
  position: absolute;
  top: 22%; left: 22%; right: 22%; bottom: 22%;
  pointer-events: none;
}
.wf-target::before, .wf-target::after,
.wf-target > span::before, .wf-target > span::after {
  content: "";
  position: absolute;
  width: 16px; height: 16px;
  border: 2px solid var(--accent-3);
}
.wf-target::before  { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.wf-target::after   { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.wf-target > span::before { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.wf-target > span::after  { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.wf-scan {
  position: absolute;
  top: 22%; left: 22%; right: 22%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-3), transparent);
  animation: scan-line 2s ease-in-out infinite;
}
@keyframes scan-line {
  0%   { transform: translateY(0); opacity: 0.2; }
  50%  { transform: translateY(180px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.2; }
}
.wf-meta {
  position: absolute;
  bottom: 16px; left: 0; right: 0;
  display: flex; justify-content: center;
}
.wf-mono {
  font-family: var(--ff-m);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-3);
  background: rgba(0,0,0,0.5);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.wf-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 8px;
}
.wf-pill {
  font-family: var(--ff-m);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.wf-pill.is-active { color: var(--accent-3); }
.wf-shutter {
  width: 56px; height: 56px;
  border-radius: 999px;
  border: 3px solid #fff;
  background: rgba(255,255,255,0.1);
  position: relative;
}
.wf-shutter::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 999px;
  background: #fff;
  animation: shutter-pulse 2s ease-in-out infinite;
}
@keyframes shutter-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(0.86); opacity: 0.8; }
}

/* Step 2 confirm */
.ws-back, .ws-tag {
  font-family: var(--ff-m);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.ws-thumb {
  height: 140px;
  border-radius: 10px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}
.ws-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95);
}
.ws-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.75));
  pointer-events: none;
  z-index: 1;
}
.ws-thumb-label {
  position: absolute;
  bottom: 10px; left: 12px; right: 12px;
  z-index: 2;
  font-family: var(--ff-m);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
}
.ws-title {
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
  margin-top: 2px;
}
.ws-meta {
  font-family: var(--ff-m);
  font-size: 8.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
.ws-fields {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  margin-top: 4px;
}
.ws-field {
  display: flex;
  justify-content: space-between;
  padding: 9px 12px;
  font-size: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ws-field:first-child { border-top: 0; }
.ws-field-l { color: rgba(255,255,255,0.5); font-family: var(--ff-m); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; }
.ws-field-v { font-weight: 500; color: #fff; display: inline-flex; align-items: center; gap: 6px; }
.ws-tick {
  display: inline-grid; place-items: center;
  width: 14px; height: 14px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 9px;
}
.ws-cta {
  margin-top: auto;
  padding: 12px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  font-family: var(--ff-h);
  font-weight: 600;
  font-size: 13px;
  color: #fff;
}
.ws-cta.solid {
  background: var(--accent);
  border-color: var(--accent);
}

/* Step 3 valuation */
.ws-title-2 {
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.025em;
  color: #fff;
  margin-top: 2px;
}
.ws-value-card {
  background: rgba(76,175,80,0.08);
  border: 1px solid rgba(76,175,80,0.24);
  border-radius: 14px;
  padding: 14px 16px;
  position: relative;
  overflow: hidden;
}
.ws-value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(129,199,132,0.18), transparent 50%);
  pointer-events: none;
}
.ws-vc-row { position: relative; }
.ws-vc-label {
  font-family: var(--ff-m);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.ws-vc-num {
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 2px 0 2px;
  font-variant-numeric: tabular-nums;
}
.ws-vc-meta {
  font-family: var(--ff-m);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}
.ws-vc-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 10px 0; }
.ws-stripe {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
}
.ws-stripe strong { color: #fff; }
.ws-stripe-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--accent-2);
}
.ws-stripe-meta {
  margin-left: auto;
  font-family: var(--ff-m);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}

/* Auto-fill banner */
.ws-autobar {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(76,175,80,0.16);
  border: 1px solid rgba(76,175,80,0.32);
  color: var(--accent-3);
  font-family: var(--ff-m);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ws-spark { font-size: 11px; }

/* Place picker (step 3) */
.ws-places {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 4px 0;
}
.ws-place {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.ws-place-sub { margin-left: 22px; }
.ws-place.is-sel {
  background: rgba(76,175,80,0.12);
  border-color: rgba(76,175,80,0.4);
}
.ws-place-ic {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
}
.ws-place.is-sel .ws-place-ic { background: rgba(76,175,80,0.2); color: var(--accent-3); }
.ws-place-ic svg { width: 16px; height: 16px; }
.ws-place-name { font-weight: 500; display: flex; align-items: center; gap: 8px; }
.ws-place-pill {
  font-family: var(--ff-m);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-3);
  background: rgba(76,175,80,0.16);
  padding: 2px 6px;
  border-radius: 999px;
}
.ws-place-check { color: var(--accent-3); font-weight: 700; font-size: 13px; }

/* ════════════════════════════════════════════════════════════════════════
   5 · CAPABILITIES — editorial chapters
   ──────────────────────────────────────────────────────────────────────── */
.caps { padding: 34px 0 32px; background: var(--paper-3); }

/* ── Interactive explorer ───────────────────────────── */
.deck {
  position: relative;
}

/* Navigation pips */
.deck-nav {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 28px;
  position: relative;
  flex-wrap: wrap;
}
.dn-pip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  transition: background 280ms var(--easing), border-color 280ms var(--easing), color 280ms var(--easing);
  cursor: pointer;
}
.dn-pip:hover { border-color: var(--mute-2); }
.dn-pip.is-on {
  background: var(--ink);
  border-color: var(--ink);
}
.dn-num {
  font-family: var(--ff-m);
  font-size: 14px;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--mute);
  font-variant-numeric: tabular-nums;
  transition: color 280ms var(--easing);
}
.dn-pip.is-on .dn-num { color: var(--accent-3); }
.dn-label {
  font-family: var(--ff-h);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink-3);
  transition: color 280ms var(--easing);
}
.dn-pip.is-on .dn-label { color: #fff; }
/* progress bar tucked at the far right of the nav */
.dn-bar {
  flex: 1;
  min-width: 80px;
  align-self: center;
  height: 2px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-left: 6px;
}
.dn-bar-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}
.deck.is-playing .dn-bar-fill {
  animation: cx-progress var(--cx-dwell, 5200ms) linear forwards;
}
@keyframes cx-progress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Card deck stage */
.deck-stage {
  position: relative;
  min-height: 560px;
  perspective: 1800px;
}
.deck-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(15,41,47,0.04),
    0 36px 80px -36px rgba(15,41,47,0.32),
    0 16px 32px -20px rgba(15,41,47,0.18);
  transform-origin: center top;
  transition:
    transform 720ms cubic-bezier(.22,.61,.36,1),
    opacity 520ms cubic-bezier(.22,.61,.36,1);
  will-change: transform, opacity;
  opacity: 0;
}
.deck-card:first-child { opacity: 1; z-index: 50; }

/* LEFT side of a card */
.dc-left {
  padding: 40px 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--paper-3);
  border-right: 1px solid var(--line);
}
.dc-badge {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 12px 28px -16px rgba(15,41,47,0.5);
}
.dc-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(76,175,80,0.4), transparent 65%);
}
.dc-eyebrow {
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.dc-title {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 34px;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--ink);
  text-wrap: balance;
  margin-bottom: 16px;
}
.dc-sub {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-3);
  margin-bottom: 24px;
  text-wrap: pretty;
}
.dc-bullets {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.dc-bullets li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
}
.cb-mark {
  color: var(--accent);
  font-family: var(--ff-m);
  font-weight: 500;
}

/* RIGHT side of a card */
.dc-right {
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(46,125,50,0.04), transparent 60%),
    var(--paper-4);
  min-width: 0;
}
.dc-right > .cap-vis-frame,
.dc-right > .gauge-card {
  width: 100%;
}

/* Visualization frame */
.cap-vis-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow:
    0 1px 0 rgba(15,41,47,0.04),
    0 28px 64px -32px rgba(15,41,47,0.22),
    0 12px 24px -16px rgba(15,41,47,0.12);
  overflow: hidden;
}
.cap-vis-chrome {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-3);
}
.cvc-title {
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.cap-vis-pad {
  padding: 28px 28px 32px;
}

/* Make the card's visualization fill its side nicely */
.dc-right > .cap-vis-frame,
.dc-right > .gauge-card {
  max-height: 100%;
  display: flex;
  flex-direction: column;
}
.dc-right > .cap-vis-frame .cap-vis-pad {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dc-right > .cap-vis-frame .cap-vis-pad.cap-vis-tree {
  justify-content: flex-start;
}

/* Valuation legend */
.time-legend {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.tl-cell { display: flex; flex-direction: column; gap: 4px; }
.tl-l {
  font-family: var(--ff-m);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.tl-v {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.tl-v.pos { color: var(--accent); }

/* Claim pack extras */
.pack-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 12px 14px;
  margin-bottom: 14px;
  background: var(--paper-2);
  border-radius: 6px;
  font-family: var(--ff-m);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
.pack-export {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 14px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  font-family: var(--ff-h);
  font-weight: 600;
  font-size: 14px;
  transition: background 200ms;
}
.pack-export:hover { background: var(--accent-ink); }

/* Cap 1 — inventory tree */
.cap-vis-pad.cap-vis-tree {
  padding: 14px 14px 18px;
  background: var(--paper-3);
}
.tree {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  padding: 4px;
}
.tn {
  display: grid;
  grid-template-columns: 14px 24px 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 40px;
  padding: 7px 14px 7px 10px;
  border-radius: 6px;
  font-size: 12.5px;
  transition: background 200ms var(--easing);
  position: relative;
}
.tn:hover { background: var(--paper-3); }
.tn-caret {
  font-size: 9px;
  color: var(--mute);
  text-align: center;
  font-family: var(--ff-m);
  width: 14px;
}
.tn-icon {
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  background: var(--paper-3);
  border: 1px solid var(--line-2);
  border-radius: 5px;
  color: var(--ink-3);
}
.tn-icon svg { width: 14px; height: 14px; }
.tn-thumb {
  width: 24px; height: 24px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  box-shadow: 0 1px 3px rgba(15,41,47,0.12);
}
.tn-meta {
  font-family: var(--ff-m);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--mute);
  font-variant-numeric: tabular-nums;
  justify-self: end;
  text-align: right;
  white-space: nowrap;
}
.tn-name {
  color: var(--ink);
  font-weight: 500;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.tn-pill {
  font-family: var(--ff-m);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(46,125,50,0.1);
  padding: 2px 6px;
  border-radius: 999px;
}
.tn-tag {
  font-family: var(--ff-s);
  font-style: italic;
  font-size: 13px;
  color: var(--mute);
  font-weight: 400;
}

/* Level indentation + connection lines */
.tn.lvl-0 { padding-left: 8px; }
.tn.lvl-1 { padding-left: 28px; }
.tn.lvl-2 { padding-left: 48px; }
.tn.lvl-3 { padding-left: 68px; }
.tn.lvl-4 { padding-left: 88px; }

.tn.lvl-1::before,
.tn.lvl-2::before,
.tn.lvl-3::before,
.tn.lvl-4::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--line);
}
.tn.lvl-1::before { left: 18px; }
.tn.lvl-2::before { left: 38px; }
.tn.lvl-3::before { left: 58px; }
.tn.lvl-4::before { left: 78px; }

/* Hierarchy emphasis per level */
.tn.lvl-0 {
  background: var(--ink);
  color: #fff;
  border-radius: 6px;
  margin-bottom: 2px;
}
.tn.lvl-0:hover { background: var(--ink-2); }
.tn.lvl-0 .tn-name { color: #fff; font-weight: 700; font-size: 14px; }
.tn.lvl-0 .tn-icon { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); color: #fff; }
.tn.lvl-0 .tn-meta { color: rgba(255,255,255,0.65); }
.tn.lvl-0 .tn-caret { color: var(--accent-3); }

.tn.lvl-1 .tn-name { font-weight: 600; }

.tn.is-container .tn-icon {
  background: rgba(46,125,50,0.08);
  border-color: rgba(46,125,50,0.18);
  color: var(--accent);
}
.tn.is-container .tn-caret { color: var(--accent); }

.tn.leaf .tn-icon {
  background: #fff;
  border-color: var(--line);
}

.tn.collapsed { opacity: 0.62; }
.tn.collapsed .tn-caret { color: var(--mute); }

.tree-foot {
  margin-top: 12px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tf-l {
  font-family: var(--ff-m);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.tf-r {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

/* Cap 2 — timeline */
.cap-vis-pad.cap-vis-time { padding: 24px 28px 28px; }
.time-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 12px; }
.time-l {
  font-family: var(--ff-m);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.time-v {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  margin-top: 4px;
}
.time-range {
  display: inline-flex;
  gap: 2px;
  background: var(--paper-3);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  font-family: var(--ff-m);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.time-range span {
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--mute);
}
.time-range .on { background: var(--ink); color: #fff; }
.time-chart { width: 100%; height: 180px; display: block; }
.is-in .time-chart .time-line { stroke-dashoffset: 0 !important; transition: stroke-dashoffset 2200ms var(--easing); }
.time-fill { opacity: 0; transition: opacity 800ms ease 1400ms; }
.is-in .time-fill { opacity: 1; }
.time-dots circle { opacity: 0; transition: opacity 300ms ease; }
.is-in .time-dots circle:nth-child(1) { opacity: 1; transition-delay: 800ms; }
.is-in .time-dots circle:nth-child(2) { opacity: 1; transition-delay: 1200ms; }
.is-in .time-dots circle:nth-child(3) { opacity: 1; transition-delay: 1700ms; }
.is-in .time-dots circle:nth-child(4) { opacity: 1; transition-delay: 2100ms; }

.time-axis {
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-m);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 4px 4px 0;
}

/* Cap 3 — gap */
.cap-vis-pad.cap-vis-gap { padding: 24px 28px 28px; text-align: center; }
.gap-head { margin-bottom: 8px; }
.gap-mono {
  font-family: var(--ff-m);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.gap-arc-wrap {
  position: relative;
  display: inline-block;
  margin: 8px auto 20px;
}
.gap-arc { width: 240px; height: 150px; }
.gap-arc-fill {
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 1800ms var(--easing) 200ms;
}
.is-in .gap-arc-fill { stroke-dashoffset: 18; }
.gap-arc-center {
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  text-align: center;
}
.gap-arc-pct {
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: 52px;
  letter-spacing: -0.05em;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.gap-arc-pct::after { content: "%"; font-size: 26px; vertical-align: top; margin-left: 2px; }
.gap-arc-l {
  font-family: var(--ff-m);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 4px;
}

.gap-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: left;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.gap-cell .gap-l {
  display: block;
  font-family: var(--ff-m);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 4px;
}
.gap-cell .gap-v {
  display: block;
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.gap-cell.warn .gap-v.warn { color: var(--warn); }

/* Cap 3 — Insurance gauge card (dark teal w/ glowing house) */
.gauge-card {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(76,175,80,0.18), transparent 60%),
    linear-gradient(170deg, #0F292F, #08171b);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 28px 24px;
  box-shadow:
    0 30px 70px -30px rgba(15,41,47,0.55),
    0 12px 24px -16px rgba(15,41,47,0.35);
  overflow: hidden;
}
.gauge-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.gauge-eyebrow {
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.gauge-pill {
  font-family: var(--ff-m);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 5px 10px;
  border-radius: 999px;
}

/* Ring + figures */
.ghouse {
  position: relative;
  margin: 4px 0 16px;
}
.ghouse-svg {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.gh-shield { transition: stroke-dashoffset 1800ms var(--easing) 300ms; }
.is-in .gh-shield { stroke-dashoffset: 0; }
.gh-rooms rect { opacity: 0; transition: opacity 420ms var(--easing); }
.is-in .gh-rooms rect:nth-child(1) { opacity: 1; transition-delay: 700ms; }
.is-in .gh-rooms rect:nth-child(2) { opacity: 1; transition-delay: 840ms; }
.is-in .gh-rooms rect:nth-child(3) { opacity: 1; transition-delay: 980ms; }
.is-in .gh-rooms rect:nth-child(4) { opacity: 1; transition-delay: 1120ms; }
.gh-room-exposed { animation: gh-expose 2.6s ease-in-out infinite; }
@keyframes gh-expose {
  0%, 100% { fill: rgba(224,98,60,0.16); }
  50%      { fill: rgba(224,98,60,0.3); }
}
.gh-pin { opacity: 0; transform-origin: center; transition: opacity 400ms ease 1400ms; }
.is-in .gh-pin { opacity: 1; animation: gh-pin-pop 600ms cubic-bezier(.5,1.6,.4,1) 1400ms backwards; }
@keyframes gh-pin-pop { from { transform: translate(216px,150px) scale(0); } }

.ghouse-stat {
  position: absolute;
  left: 8px; top: 4px;
  text-align: left;
}
.ghs-num {
  display: flex;
  align-items: flex-start;
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.05em;
  color: #fff;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}
.ghs-pct { font-size: 20px; color: var(--accent-3); margin-top: 3px; }
.ghs-l {
  font-family: var(--ff-m);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  max-width: 12ch;
}

.gauge-figs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 14px;
}
.gfig {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-right: 1px solid rgba(255,255,255,0.1);
  padding-left: 14px;
}
.gfig:last-child { border-right: 0; }
.gfig-l {
  font-family: var(--ff-m);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.gfig-v {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.gfig.exposed .gfig-l { color: #e6754f; }
.gfig.exposed .gfig-v { color: #e6754f; }

.gauge-alert {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 11px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(224,98,60,0.1);
  border: 1px solid rgba(224,98,60,0.3);
  border-radius: 10px;
}
.ga-ic {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: rgba(224,98,60,0.22);
  color: #e6754f;
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: 14px;
}
.ga-txt {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255,255,255,0.8);
}
.ga-txt strong { color: #e6754f; font-weight: 600; }

/* Cap 4 — pack */
.cap-vis-pad.cap-vis-pack { padding: 18px 18px 22px; background: var(--paper-3); }
.pack-files {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pack-file {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13.5px;
  color: var(--ink);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 380ms var(--easing), transform 380ms var(--easing);
}
.is-in .pack-file { opacity: 1; transform: translateY(0); }
.is-in .pack-file:nth-child(1) { transition-delay: 100ms; }
.is-in .pack-file:nth-child(2) { transition-delay: 220ms; }
.is-in .pack-file:nth-child(3) { transition-delay: 340ms; }
.is-in .pack-file:nth-child(4) { transition-delay: 460ms; }
.is-in .pack-file:nth-child(5) { transition-delay: 580ms; }
.pf-icon { font-size: 16px; }
.pf-name { font-family: var(--ff-m); font-size: 12.5px; letter-spacing: 0.02em; }
.pf-meta {
  font-family: var(--ff-m);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--mute);
}

/* ════════════════════════════════════════════════════════════════════════
   6 · AUDIENCES
   ──────────────────────────────────────────────────────────────────────── */
.audiences { padding: 34px 0; background: var(--paper); }

/* ── Expanding image accordion ───────────────────────── */
.personas {
  display: flex;
  gap: 12px;
  height: 540px;
}
.persona {
  position: relative;
  flex: 1;
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  flex-grow: 1;
  flex-basis: 0;
  transition: flex-grow 760ms cubic-bezier(.22,.61,.36,1);
  box-shadow: 0 24px 56px -34px rgba(15,41,47,0.4);
}
.persona.is-on { flex-grow: 6.2; cursor: default; }

.persona-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 1200ms cubic-bezier(.22,.61,.36,1), filter 600ms ease;
  filter: grayscale(0.3);
}
.persona.is-on .persona-img {
  transform: scale(1);
  filter: grayscale(0);
}
.persona-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,23,27,0.1) 0%, rgba(8,23,27,0.35) 45%, rgba(8,23,27,0.92) 100%);
  transition: background 600ms ease;
}
.persona.is-on .persona-scrim {
  background:
    linear-gradient(105deg, rgba(8,23,27,0.92) 0%, rgba(8,23,27,0.72) 38%, rgba(8,23,27,0.3) 100%);
}

/* Collapsed rail — number + vertical name */
.persona-rail {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  z-index: 2;
  transition: opacity 360ms ease;
}
.persona.is-on .persona-rail { opacity: 0; pointer-events: none; }
.persona-num {
  font-family: var(--ff-m);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.persona-vert {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  white-space: nowrap;
}

/* Expanded detail */
.persona-detail {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 44px;
  z-index: 3;
  color: #fff;
  max-width: 640px;
  pointer-events: none;
}
.persona.is-on .persona-detail { pointer-events: auto; }

/* Each child fades + lifts in, staggered, only on the active card */
.persona-detail > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 240ms ease, transform 240ms ease;
}
.persona.is-on .persona-detail > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 760ms ease, transform 880ms cubic-bezier(.16,.7,.3,1);
}
.persona.is-on .persona-detail > *:nth-child(1) { transition-delay: 240ms; }
.persona.is-on .persona-detail > *:nth-child(2) { transition-delay: 380ms; }
.persona.is-on .persona-detail > *:nth-child(3) { transition-delay: 520ms; }
.persona.is-on .persona-detail > *:nth-child(4) { transition-delay: 660ms; }
.persona.is-on .persona-detail > *:nth-child(5) { transition-delay: 800ms; }

/* Each use-bullet also staggers in within the list */
.persona-uses li {
  opacity: 0;
  transform: translateX(14px);
  transition: opacity 220ms ease, transform 220ms ease;
}
.persona.is-on .persona-uses li {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 700ms ease, transform 760ms cubic-bezier(.16,.7,.3,1);
}
.persona.is-on .persona-uses li:nth-child(1) { transition-delay: 760ms; }
.persona.is-on .persona-uses li:nth-child(2) { transition-delay: 900ms; }
.persona.is-on .persona-uses li:nth-child(3) { transition-delay: 1040ms; }
.persona-kicker {
  display: inline-block;
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 14px;
}
.persona-eyebrow {
  display: inline-block;
  font-family: var(--ff-m);
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 16px;
}
.persona-title {
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.04em;
  line-height: 1.04;
  margin-bottom: 14px;
  text-wrap: balance;
}
.persona-recog {
  font-family: var(--ff-h);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: rgba(255,255,255,0.82);
  margin-bottom: 22px;
  text-wrap: pretty;
}
.persona-uses {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 20px;
}
.persona-uses li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 14.5px;
  line-height: 1.45;
  color: rgba(255,255,255,0.9);
}
.pu-dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--accent-3);
  margin-top: 7px;
}
.persona-foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255,255,255,0.2);
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
}
.persona-foot a { color: var(--accent-3); }
.persona-foot a:hover { color: #fff; }

/* ════════════════════════════════════════════════════════════════════════
   7 · CLAIM PACK
   ──────────────────────────────────────────────────────────────────────── */
.claim {
  padding: 22px 0;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.claim::before {
  content: "";
  position: absolute;
  bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(76,175,80,0.16), transparent 65%);
  pointer-events: none;
}
.claim .section-head { border-bottom-color: rgba(255,255,255,0.16); }
.claim-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 80px;
  align-items: center;
}
.claim-copy p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin-bottom: 24px;
  text-wrap: pretty;
}
.claim-copy p strong { color: #fff; font-weight: 600; }

.claim-quote {
  margin: 8px 0 0;
}
.cq-rule {
  display: block;
  width: 44px;
  height: 2px;
  background: var(--accent-3);
  border-radius: 2px;
  margin-bottom: 20px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 700ms var(--easing) 120ms;
}
.is-in .cq-rule { transform: scaleX(1); }
.claim-copy p.cq-text {
  font-family: var(--ff-s);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 700ms ease 220ms, transform 760ms cubic-bezier(.16,.7,.3,1) 220ms;
}
.claim-quote.is-in .cq-text { opacity: 1; transform: translateY(0); }
.cq-text em { color: var(--accent-3); font-style: italic; }
html:not(.anims-ok) .cq-rule { transform: scaleX(1) !important; }
html:not(.anims-ok) .claim-copy p.cq-text { opacity: 1 !important; transform: none !important; }

/* Vis stage */



.claim-vis { position: relative; }

/* Sealed certified dossier */
.dossier {
  position: relative;
  perspective: 1200px;
  padding: 18px 12px 8px;
}
.dossier-sheet {
  border-radius: 10px;
  background: #fffefb;
  border: 1px solid var(--line);
}
.dossier-back-1, .dossier-back-2 {
  position: absolute;
  left: 12px; right: 12px;
  height: 92%;
  top: 24px;
  box-shadow: 0 20px 40px -28px rgba(15,41,47,0.4);
}
.dossier-back-1 { transform: rotate(-2deg); background: #faf7ef; }
.dossier-back-2 { transform: rotate(2.6deg); background: #f3efe4; }
.dossier-main {
  position: relative;
  z-index: 2;
  padding: 26px 28px 24px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 40px 80px -36px rgba(15,41,47,0.5),
    0 16px 30px -20px rgba(15,41,47,0.25);
  transform: rotate(-1deg);
  transition: transform 460ms var(--easing);
}
.dossier:hover .dossier-main { transform: rotate(0deg) translateY(-4px); }

.dossier-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1.5px solid var(--ink);
  margin-bottom: 4px;
}
.dossier-crest { width: 34px; flex-shrink: 0; }
.dossier-crest svg { width: 30px; height: 34px; display: block; }
.dossier-kicker {
  font-family: var(--ff-m);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.dossier-title {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-top: 3px;
}
.dossier-rows {
  display: flex;
  flex-direction: column;
}
.dossier-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px dotted var(--line);
}
.dr-l {
  font-family: var(--ff-m);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
}
.dr-v {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.dr-v.dr-strong {
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.025em;
}
.dossier-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
}
.dossier-sign { display: flex; flex-direction: column; gap: 6px; }
.ds-script {
  font-family: var(--ff-s);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
}
.ds-meta {
  font-family: var(--ff-m);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}
.dossier-seal {
  width: 96px; height: 96px;
  flex-shrink: 0;
  transform: rotate(-12deg) scale(0.4);
  opacity: 0;
  transition: transform 700ms cubic-bezier(.34,1.56,.5,1) 500ms, opacity 400ms ease 500ms;
}
.is-in .dossier-seal { transform: rotate(-12deg) scale(1); opacity: 1; }
.dossier-seal svg { width: 100%; height: 100%; display: block; }
.seal-text {
  font-family: var(--ff-m);
  font-size: 8.2px;
  letter-spacing: 0.18em;
  fill: var(--accent);
  text-transform: uppercase;
}

.claim-stamp {
  margin-top: 22px;
  font-family: var(--ff-m);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* ════════════════════════════════════════════════════════════════════════
   8 · TRUST
   ──────────────────────────────────────────────────────────────────────── */
.trust {
  padding: 22px 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(46,125,50,0.14), transparent 55%),
    radial-gradient(circle at 84% 80%, rgba(46,125,50,0.06), transparent 45%),
    linear-gradient(180deg, var(--paper-4), var(--paper-3));
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,41,47,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,41,47,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 12%, #000, transparent 72%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 12%, #000, transparent 72%);
  pointer-events: none;
}
.trust .container { position: relative; z-index: 1; }
.trust .section-head { border-bottom-color: var(--ink); }

/* Emblem lockup */
.privsec-emblem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}
.pe-shield {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 84px; height: 84px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow:
    0 18px 40px -18px rgba(46,125,50,0.5),
    0 2px 0 rgba(255,255,255,0.8) inset;
}
.pe-shield svg { width: 44px; height: 52px; filter: drop-shadow(0 4px 8px rgba(46,125,50,0.3)); }
.pe-rings {
  position: absolute;
  top: -8px;
  left: 50%;
  width: 200px; height: 200px;
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(circle, transparent 0 38%, rgba(46,125,50,0.16) 38.5% 39.5%, transparent 40%),
    radial-gradient(circle, transparent 0 50%, rgba(46,125,50,0.1) 50.5% 51.5%, transparent 52%),
    radial-gradient(circle, transparent 0 62%, rgba(46,125,50,0.06) 62.5% 63.5%, transparent 64%);
  pointer-events: none;
  animation: pe-pulse 4s ease-in-out infinite;
}
@keyframes pe-pulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;   transform: translateX(-50%) scale(1.06); }
}
.pe-label {
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(46,125,50,0.1);
  border: 1px solid rgba(46,125,50,0.22);
  padding: 7px 16px;
  border-radius: 999px;
}

.tz { max-width: 1040px; margin: 0 auto; }

.tz-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
  margin-bottom: 24px;
}

/* Intro */
.tz-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px 9px 13px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-family: var(--ff-h); font-weight: 600; font-size: 13px;
  letter-spacing: -0.005em;
  margin-bottom: 18px;
  box-shadow: 0 12px 28px -16px rgba(15,41,47,0.5);
}
.tz-badge svg { width: 17px; height: 17px; color: var(--accent-3); }
.tz-badge { margin-top: 4px; }

/* Snapshot stage with floating chips */
.tz-stage {
  position: relative;
  padding: 26px 44px;
  display: flex;
  justify-content: center;
}
.tz-card {
  width: 100%;
  max-width: 320px;
  position: relative;
  z-index: 1;
}
.tz-lead {
  font-family: var(--ff-h); font-weight: 500;
  font-size: 23px; line-height: 1.4; letter-spacing: -0.025em;
  color: var(--ink); margin-bottom: 20px; text-wrap: pretty;
}
.tz-lead strong { color: var(--accent); font-weight: 700; }
.tz-body {
  font-size: 15.5px; line-height: 1.5; color: var(--ink-3);
  margin-bottom: 20px; max-width: 42ch; text-wrap: pretty;
}
.tz-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.tz-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 13px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  font-family: var(--ff-m); font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink);
  box-shadow: 0 8px 20px -14px rgba(15,41,47,0.3);
  transition: border-color 200ms var(--easing), transform 200ms var(--easing);
}
.tz-chip:hover { border-color: rgba(46,125,50,0.4); transform: translateY(-2px); }
.tz-chip svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }
.tz-note { font-size: 14px; color: var(--ink-3); }
.tz-note strong { color: var(--ink); font-weight: 600; }
.tz-note a { color: var(--accent); font-weight: 600; white-space: nowrap; }
.tz-note a:hover { color: var(--ink); }

/* Snapshot card */
.tz-card {
  background: linear-gradient(180deg, #0f292f, #0a1c20);
  color: #fff;
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 34px 64px -32px rgba(15,41,47,0.6);
  overflow: hidden;
}
.tz-card::after {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(76,175,80,0.25), transparent 65%);
  pointer-events: none;
}
.tzc-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px; margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  position: relative; z-index: 1;
}
.tzc-lock {
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 10px; background: rgba(76,175,80,0.16);
  border: 1px solid rgba(76,175,80,0.34); color: var(--accent-3); flex-shrink: 0;
}
.tzc-lock svg { width: 19px; height: 19px; }
.tzc-title { font-family: var(--ff-h); font-weight: 700; font-size: 15px; letter-spacing: -0.02em; color: #fff; }
.tzc-sub { font-family: var(--ff-m); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 2px; }
.tzc-rows { display: flex; flex-direction: column; position: relative; z-index: 1; }
.tzc-row {
  display: grid; grid-template-columns: 22px 1fr auto; gap: 12px; align-items: center;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tzc-ic { color: var(--accent-3); display: grid; place-items: center; }
.tzc-ic svg { width: 16px; height: 16px; }
.tzc-l { font-family: var(--ff-m); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.tzc-v { font-family: var(--ff-h); font-weight: 700; font-size: 17px; color: #fff; font-variant-numeric: tabular-nums; }
.tzc-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 12px; padding: 12px 14px;
  background: rgba(76,175,80,0.1); border: 1px solid rgba(76,175,80,0.28);
  border-radius: 11px; position: relative; z-index: 1;
}
.tzc-total-l { font-family: var(--ff-m); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-3); }
.tzc-total-v { font-family: var(--ff-h); font-weight: 800; font-size: 19px; letter-spacing: -0.03em; color: #fff; font-variant-numeric: tabular-nums; }

/* Floating guarantee chips around the card */
.tz-fchip {
  position: absolute;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 13px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  box-shadow: 0 16px 34px -16px rgba(15,41,47,0.34);
  font-family: var(--ff-m); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink);
  white-space: nowrap;
  animation: tz-float 6.5s ease-in-out infinite;
}
.tz-fchip svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
.tz-fchip-1 { top: 6%;   left: -4%;  animation-delay: 0s; }
.tz-fchip-2 { top: 28%;  right: -6%; animation-delay: 1.0s; }
.tz-fchip-3 { bottom: 26%; left: -7%; animation-delay: 2.0s; }
.tz-fchip-4 { bottom: 5%; right: -5%; animation-delay: 3.0s; }
@keyframes tz-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Modes — compact strip */
.tz-modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-top: 8px;
}
.tzm {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 18px;
  transition: border-color 200ms var(--easing), transform 200ms var(--easing);
}
.tzm:hover { border-color: rgba(46,125,50,0.28); transform: translateY(-2px); }
.tzm-top {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 12px; margin-bottom: 8px; border-bottom: 1px solid var(--line-2);
}
.tzm-ic {
  width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: 9px; background: var(--paper-3); border: 1px solid var(--line);
  color: var(--ink-3); flex-shrink: 0;
}
.tzm-ic svg { width: 17px; height: 17px; }
.tzm-name { font-family: var(--ff-h); font-weight: 700; font-size: 16px; letter-spacing: -0.02em; color: var(--ink); }
.tzm-tag {
  margin-left: auto;
  font-family: var(--ff-m); font-size: 9px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--mute);
  background: var(--paper-3); border: 1px solid var(--line);
  padding: 4px 9px; border-radius: 999px;
}
.tzm-rows { display: flex; flex-direction: column; }
.tzm-rows li {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 6px 0; border-bottom: 1px solid var(--line-2); font-size: 13px;
}
.tzm-rows li:last-child { border-bottom: 0; }
.tzm-rows li span:first-child {
  color: var(--mute); font-family: var(--ff-m); font-size: 10px;
  letter-spacing: 0.06em; text-transform: uppercase; flex-shrink: 0;
}
.tzm-rows strong { font-weight: 600; color: var(--ink); text-align: right; }
.tzm-yes { color: var(--accent) !important; display: inline-flex; align-items: center; gap: 6px; }
.tzm-yes::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--accent); }
.tzm-dash { color: var(--mute-2); }

.tz-foot {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 8px;
  font-family: var(--ff-m); font-size: 11px; letter-spacing: 0.02em;
  color: var(--mute); text-align: center;
}
.tz-foot svg { color: var(--accent); flex-shrink: 0; }

@media (max-width: 860px) {
  .tz-grid { grid-template-columns: 1fr; gap: 28px; }
  .tz-modes { grid-template-columns: 1fr; }
  .tz-stage { padding: 26px 30px; }
  .tz-fchip-1, .tz-fchip-3 { left: 0; }
  .tz-fchip-2, .tz-fchip-4 { right: 0; }
}

/* ════════════════════════════════════════════════════════════════════════
   9 · PRICING
   ──────────────────────────────────────────────────────────────────────── */
.pricing { padding: 34px 0; background: var(--paper-2); }

.price-sub {
  font-family: var(--ff-h);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink-3);
  margin-bottom: 28px;
  max-width: 760px;
  line-height: 1.4;
  text-wrap: pretty;
}

/* ─── Billing cycle toggle ─────────────────────────── */
.price-toolbar {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}
.cycle-toggle {
  position: relative;
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  box-shadow: 0 12px 28px -16px rgba(15,41,47,0.18);
  gap: 0;
}
.cycle-pill {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: calc(50% - 5px);
  background: var(--ink);
  border-radius: 999px;
  transition: transform 360ms var(--easing);
  z-index: 0;
}
.cycle-toggle[data-cycle="year"] .cycle-pill {
  transform: translateX(100%);
}
.cycle-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  font-family: var(--ff-h);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--ink-3);
  border-radius: 999px;
  transition: color 320ms var(--easing);
  min-width: 150px;
  justify-content: center;
}
.cycle-btn.is-on { color: #fff; }
.cycle-save {
  font-family: var(--ff-m);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(46,125,50,0.18);
  color: var(--accent);
  transition: background 320ms var(--easing), color 320ms var(--easing);
}
.cycle-btn.is-on .cycle-save {
  background: var(--accent);
  color: #fff;
}

/* ─── Price grid ───────────────────────────────────── */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 20px;
  align-items: stretch;
}

.price {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 30px 28px;
  border-radius: 6px;
  transition: transform 240ms var(--easing), box-shadow 240ms var(--easing);
}
.price:hover { transform: translateY(-4px); }

.price-free {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 48px -32px rgba(15,41,47,0.18);
}
.price-pro {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  box-shadow: 0 32px 64px -28px rgba(15,41,47,0.5);
  overflow: hidden;
}
.price-pro::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(76,175,80,0.22), transparent 65%);
  pointer-events: none;
}
.price-pro > * { position: relative; z-index: 1; }

.price-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--accent);
  color: #fff;
  font-family: var(--ff-m);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}

/* Card header */
.price-head {
  margin-bottom: 22px;
}
.price-eyebrow {
  display: block;
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}
.price-pro .price-eyebrow { color: var(--accent-3); }
.price-tagline {
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink-3);
  margin-top: 8px;
  text-wrap: pretty;
}
.price-pro .price-tagline { color: rgba(255,255,255,0.62); }
.price-name {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--ink);
  text-wrap: balance;
}
.price-pro .price-name { color: #fff; }

/* Number card — inset block highlighting the price */
.price-num-card {
  padding: 20px 24px;
  background: var(--paper-3);
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.price-num-card-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
}
.price-num-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
}
.price-num-card-dark::before { background: var(--accent-3); }

.price-num-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-variant-numeric: tabular-nums;
}
.price-currency {
  font-family: var(--ff-m);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--mute);
  text-transform: uppercase;
}
.price-pro .price-currency { color: rgba(255,255,255,0.55); }
.price-big {
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: 64px;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--ink);
}
.price-pro .price-big { color: #fff; }
.price-free .price-big {
  font-family: var(--ff-s);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: 56px;
  color: var(--accent);
}
.price-period {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.05;
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  margin-left: 2px;
}
.price-pro .price-period { color: rgba(255,255,255,0.55); }
.period-slash {
  font-family: var(--ff-h);
  font-size: 20px;
  color: var(--mute);
  letter-spacing: 0;
}
.price-pro .period-slash { color: rgba(255,255,255,0.4); }
.period-word { font-size: 11px; letter-spacing: 0.14em; }

.price-altline {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-size: 13px;
  color: var(--ink-3);
}
.price-pro .price-altline {
  border-top-color: rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.75);
}
.price-altline strong { color: var(--ink); font-weight: 600; }
.price-pro .price-altline strong { color: #fff; }
.alt-save {
  display: inline-block;
  margin-left: 4px;
  padding: 2px 8px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-family: var(--ff-m);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.price-pro .alt-save {
  background: var(--accent-3);
  color: var(--ink);
}

/* Cycle state switching — only Pro card switches */
.price-state {
  transition: opacity 240ms var(--easing);
}
.price-pro .price-state[data-state="year"] {
  display: none;
}
.price-pro[data-cycle="year"] .price-state[data-state="month"] {
  display: none;
}
.price-pro[data-cycle="year"] .price-state[data-state="year"] {
  display: block;
}

/* Feature list */
.price-plus {
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 14px;
}
.price-free .price-plus { color: var(--accent); }
.price-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}
.price-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.4;
}
.price-list li:first-child { border-top: 0; }
.price-pro .price-list li {
  border-top-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
}
.pl-tick {
  color: var(--accent);
  font-weight: 700;
  display: grid;
  place-items: center;
  width: 18px; height: 18px;
  border-radius: 999px;
  background: rgba(46,125,50,0.12);
  font-size: 10px;
  margin-top: 2px;
}
.price-pro .pl-tick {
  color: var(--accent-3);
  background: rgba(129,199,132,0.16);
}

/* CTA */
.price-cta {
  margin-top: 0;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 22px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-family: var(--ff-h);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  width: 100%;
  transition: background 200ms, color 200ms, border-color 200ms;
}
.price-cta:hover {
  background: var(--ink);
  color: #fff;
}
.price-cta .cta-arrow { transition: transform 220ms var(--easing); }
.price-cta:hover .cta-arrow { transform: translateX(4px); }

.price-cta-solid {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.price-cta-solid:hover {
  background: var(--accent-3);
  border-color: var(--accent-3);
  color: var(--ink);
}

.price-risk {
  text-align: center;
  margin-top: 40px;
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ── Feature comparison table ──────────────────────── */
.pricetable {
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 28px 64px -34px rgba(15,41,47,0.26);
}

/* Pricing header (card-style) */
.pt-top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}
.pt-top-feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 26px 28px;
}
.pt-top-eyebrow {
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.pt-top-note {
  font-size: 13px;
  color: var(--ink-3);
  max-width: 28ch;
}

/* Billing cycle toggle — standalone, centered above the table */
.pt-cycle-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}
.pt-cycle {
  position: relative;
  /* Two equal-width columns: with `1fr 1fr` both tabs size to the WIDER label
     (e.g. the longer German "Jährlich · 33% sparen"), so each tab is exactly
     50% and the sliding pill below stays aligned in every locale. */
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  padding: 5px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px -16px rgba(15,41,47,0.3);
}
.ptc-pill {
  position: absolute;
  top: 5px; bottom: 5px; left: 5px;
  width: calc(50% - 5px);
  border-radius: 999px;
  background: var(--ink);
  transition: transform 340ms var(--easing);
  z-index: 0;
}
.pt-cycle[data-cycle="year"] .ptc-pill { transform: translateX(100%); }
.ptc-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: var(--ff-h);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--ink-3);
  border-radius: 999px;
  transition: color 340ms var(--easing);
  white-space: nowrap;
  min-width: 130px;
  justify-content: center;
}
.ptc-btn.is-on { color: #fff; }
.ptc-save {
  font-family: var(--ff-m);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(46,125,50,0.18);
  color: var(--accent);
  transition: background 340ms var(--easing), color 340ms var(--easing);
}
.ptc-btn.is-on .ptc-save { background: var(--accent-3); color: var(--ink); }

/* Pro price state switching */
.pt-top-pro .ptp-price.ptp-state,
.pt-top-pro .ptp-sub.ptp-state { display: none; }
.pt-top:not(.is-year) .ptp-price.ptp-state[data-cycle="month"] { display: inline-flex; }
.pt-top:not(.is-year) .ptp-sub.ptp-state[data-cycle="month"] { display: block; }
.pt-top.is-year .ptp-price.ptp-state[data-cycle="year"] { display: inline-flex; }
.pt-top.is-year .ptp-sub.ptp-state[data-cycle="year"] { display: block; }
.ptp-sub.ptp-state[data-cycle="year"] {
  margin-top: 6px;
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--accent);
  font-weight: 500;
  text-transform: none;
}

.pt-top-plan {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 30px 16px 28px;
  text-align: center;
  border-left: 1px solid var(--line-2);
  position: relative;
}
.pt-top-pro {
  background: linear-gradient(180deg, rgba(46,125,50,0.12), rgba(46,125,50,0.04));
  border-left: 1px solid rgba(46,125,50,0.2);
}
.ptp-badge {
  position: absolute;
  top: -1px; left: 0; right: 0;
  margin: 0 auto;
  width: max-content;
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.ptp-name {
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--secondary);
  margin-top: 6px;
  margin-bottom: 2px;
}
.pt-top-pro .ptp-name { color: var(--accent); }
.ptp-cur {
  font-family: var(--ff-m);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--mute);
  align-self: flex-start;
  margin-top: 6px;
}
.ptp-price {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.ptp-big {
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: 46px;
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.ptp-per {
  font-family: var(--ff-m);
  font-size: 11px;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
  text-align: left;
}
.ptp-sub {
  font-family: var(--ff-m);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 4px;
}
.ptp-save {
  margin-top: 8px;
  font-family: var(--ff-m);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.ptp-cancel {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  font-family: var(--ff-m);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.ptp-cancel svg { color: var(--accent); }

.pt-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  border-top: 1px solid var(--line-2);
  transition: background 160ms var(--easing);
}
.pt-row:first-child { border-top: 0; }
.pt-row:hover { background: var(--paper-3); }
.pt-feature {
  padding: 15px 28px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.pt-col {
  padding: 15px 16px;
  text-align: center;
  font-variant-numeric: tabular-nums;
  border-left: 1px solid var(--line-2);
}
.pt-pro {
  background: rgba(46,125,50,0.05);
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 18px;
  color: var(--accent-ink);
  border-left: 1px solid rgba(46,125,50,0.16);
}
.pt-free {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 17px;
  color: var(--secondary);
}
.pt-free.pt-num, .pt-free.pt-word { color: var(--mute); font-weight: 600; }
.pt-free.pt-dash { color: var(--mute-2); font-weight: 600; }
.pt-weekly {
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pt-check {
  color: var(--accent);
  font-size: 17px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .pt-top-feature { padding: 18px 16px; }
  .pt-top-note { display: none; }
  .ptp-big { font-size: 26px; }
  .pt-feature { font-size: 14px; padding: 14px 16px; }
  .pt-col { padding: 14px 10px; }
}

/* ════════════════════════════════════════════════════════════════════════
   10 · FAQ
   ──────────────────────────────────────────────────────────────────────── */
.faq { padding: 22px 0; }

.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  transition: background 200ms;
}
.faq-item:hover { background: var(--paper-3); }
.faq-item summary {
  display: grid;
  grid-template-columns: 56px 1fr 32px;
  gap: 20px;
  padding: 24px 8px;
  cursor: pointer;
  align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q-num {
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.faq-q-text {
  font-family: var(--ff-h);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
}
.faq-q-mark {
  font-family: var(--ff-m);
  font-weight: 400;
  font-size: 20px;
  color: var(--ink-3);
  text-align: center;
  transition: transform 240ms var(--easing), color 200ms;
}
.faq-item[open] .faq-q-mark { transform: rotate(45deg); color: var(--accent); }
.faq-a {
  padding: 0 8px 28px 84px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 80ch;
  animation: faq-in 360ms var(--easing);
}
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════════════════════
   11 · WHY
   ──────────────────────────────────────────────────────────────────────── */
.why { padding: 48px 0; background: var(--paper-2); }
.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 96px;
  align-items: start;
}
.why-prose p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 24px;
  text-wrap: pretty;
}
.why-prose p:first-child::first-letter {
  font-family: var(--ff-s);
  font-style: italic;
  font-size: 4.5em;
  float: left;
  line-height: 0.85;
  padding: 6px 14px 0 0;
  color: var(--accent);
}

.why-sig { margin-top: 32px; }
.sig-script {
  font-family: var(--ff-s);
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.sig-meta {
  font-family: var(--ff-m);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 6px;
}

.why-side { padding-top: 16px; }
.why-quote {
  font-family: var(--ff-s);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 32px 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
  box-shadow: 0 28px 56px -28px rgba(15,41,47,0.18);
}
.why-q-mark {
  font-family: var(--ff-s);
  font-size: 100px;
  position: absolute;
  top: -30px; left: 16px;
  color: var(--accent);
  opacity: 0.3;
  font-style: italic;
  line-height: 1;
}
.why-quote em {
  font-style: italic;
  color: var(--accent);
}

/* ════════════════════════════════════════════════════════════════════════
   12 · FINAL CALL
   ──────────────────────────────────────────────────────────────────────── */
.final {
  padding: 26px 0 26px;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(76,175,80,0.18), transparent 60%);
}
.final-head { margin-bottom: 12px; position: relative; }
.final-h2 {
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: clamp(46px, 6vw, 84px);
  line-height: 0.94;
  letter-spacing: -0.06em;
  color: #fff;
  margin-top: 6px;
  text-wrap: balance;
}
.final-h2 em {
  font-family: var(--ff-s);
  font-style: italic;
  font-weight: 500;
  color: var(--accent-3);
}
.final-body {
  font-family: var(--ff-h);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.4;
  color: rgba(255,255,255,0.7);
  max-width: 680px;
  margin-bottom: 32px;
  text-wrap: pretty;
  position: relative;
}

.final-cta-wrap {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  position: relative;
}
.final .btn-cta {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.final .btn-cta::before { background: var(--accent); }
.final .btn-cta:hover { color: #fff; border-color: var(--accent); }

.store-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
/* Official "Get it on Google Play" image badge. */
.store-badge-img { display: inline-flex; align-items: center; }
.store-badge-img img { height: 58px; width: auto; display: block; }
/* Same badge in the hero CTA row (top of the page). */
.hero-store-badge { display: inline-flex; align-items: center; }
.hero-store-badge img { height: 56px; width: auto; display: block; }
/* Official "Download on the App Store" image badge, shown planned / not yet
   downloadable. Apple's artwork fills its viewBox (no built-in padding, unlike
   the Google Play badge), so render it a touch shorter to match the visible
   button height. */
.store-badge-soon { opacity: 0.55; cursor: default; flex-direction: column; align-items: center; }
.store-badge-soon img { height: 46px; }
.sb-soon-tag {
  margin-top: 6px;
  font-family: var(--ff-m);
  font-size: 8.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  padding: 3px 7px;
  border-radius: 999px;
  white-space: nowrap;
}
/* Hover lift on the clickable Google Play badges (not the disabled App Store
   "planned" badge). The global prefers-reduced-motion guard neutralizes this. */
.store-badge-img:not(.store-badge-soon),
.hero-store-badge:not(.store-badge-soon) {
  transition: transform 240ms var(--easing), filter 240ms var(--easing);
}
.store-badge-img:not(.store-badge-soon):hover,
.hero-store-badge:not(.store-badge-soon):hover {
  transform: translateY(-3px) scale(1.04);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.28));
}
.store-badge-img:not(.store-badge-soon):active,
.hero-store-badge:not(.store-badge-soon):active {
  transform: translateY(-1px) scale(1.01);
}

.final-fine {
  margin-top: 40px;
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  position: relative;
}

/* ════════════════════════════════════════════════════════════════════════
   13 · FOOTER
   ──────────────────────────────────────────────────────────────────────── */
.foot {
  background: var(--ink);
  color: #fff;
  padding: 52px 0 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.foot-tagline {
  font-family: var(--ff-h);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.foot-tagline em {
  font-family: var(--ff-s);
  font-style: italic;
  font-weight: 500;
  color: var(--accent-3);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 56px;
  margin-bottom: 36px;
}
.foot-brand .brand { color: #fff; font-size: 40px; gap: 16px; }
.foot-brand .brand-mark { width: 58px; height: 58px; border-radius: 17px; }
.foot-meta {
  margin-top: 16px;
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.foot-col h5 {
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  margin-bottom: 16px;
}
.foot-col ul { display: flex; flex-direction: column; gap: 10px; }
.foot-col a {
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
  transition: color 160ms;
}
.foot-col a:hover { color: var(--accent-3); }

.foot-bot {
  display: none;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-family: var(--ff-m);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.foot-copy {
  display: block;
  margin-top: 18px;
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.foot-wordmark {
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: clamp(120px, 22vw, 320px);
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: rgba(255,255,255,0.04);
  margin: 16px 0 -36px -8px;
  user-select: none;
  pointer-events: none;
}

/* ════════════════════════════════════════════════════════════════════════
   INTERACTION POLISH — hover / focus micro-interactions
   ──────────────────────────────────────────────────────────────────────── */

/* Buttons get a tactile press + lift everywhere */
.btn-pill {
  transition: transform 160ms var(--easing), background 160ms var(--easing), box-shadow 200ms var(--easing);
}
.btn-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(15,41,47,0.5);
}
.btn-pill:active { transform: translateY(0); }

/* Nav brand mark reacts */
.brand-mark { transition: transform 280ms var(--easing), box-shadow 280ms var(--easing); }
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.08); box-shadow: 0 6px 16px rgba(15,41,47,0.3); }

/* Flow tabs (pips) — lift, tint, icon kick */
.dn-pip {
  transition: background 280ms var(--easing), border-color 280ms var(--easing),
              color 280ms var(--easing), transform 220ms var(--easing), box-shadow 220ms var(--easing);
}
.dn-pip:not(.is-on):hover {
  transform: translateY(-2px);
  border-color: var(--ink);
  box-shadow: 0 12px 24px -14px rgba(15,41,47,0.4);
}
.dn-pip:not(.is-on):hover .dn-num { color: var(--accent); }

/* Flow steps on the left — respond on hover even when not active */
.fx-step { cursor: pointer; }
.fx-step:not(.is-on):hover .fx-txt { opacity: 0.75; }
.fx-step:not(.is-on):hover .fx-numbig {
  border-color: rgba(129,199,132,0.5);
  color: #fff;
  transform: translateY(-2px);
}

/* FAQ rows — nudge the question, light up the number */
.faq-item summary { transition: padding-left 220ms var(--easing); }
.faq-q-text { transition: color 200ms var(--easing); }
.faq-q-num { transition: color 200ms var(--easing); }
.faq-item:hover summary { padding-left: 14px; }
.faq-item:hover .faq-q-text { color: var(--accent-ink); }
.faq-item:hover .faq-q-num { color: var(--accent); }

/* Outcome strip stats — tint + lift on hover */
.wp-stat { transition: background 240ms var(--easing); }
.wp-stat:hover { background: rgba(76,175,80,0.08); }

/* Trust promises — hover handled inline */

/* Pricing feature rows — static, no hover animation */


/* Pack / claim files — slide + tint */
.pack-file, .cfb-file { transition: transform 200ms var(--easing), background 200ms var(--easing), border-color 200ms var(--easing); }
.pack-file:hover, .cfb-file:hover {
  transform: translateX(4px);
  border-color: rgba(46,125,50,0.4);
}

/* Gauge stats + tree foot subtle */
.gauge-stat { transition: transform 220ms var(--easing); }
.gauge-stat:hover { transform: translateY(-2px); }

/* Time range pills */
.time-range span { transition: color 180ms var(--easing), background 180ms var(--easing); cursor: pointer; }
.time-range span:not(.on):hover { color: var(--ink); background: var(--line-2); }

/* Footer links — static (no shift), color handled in base styles */

/* Persona slivers brighten the vertical label on hover */
.persona:not(.is-on) { transition: flex-grow 760ms cubic-bezier(.22,.61,.36,1); }
.persona:not(.is-on):hover .persona-vert { color: var(--accent-3); }

/* Wow CTA link arrow already animates; add color shift */
.wow-link span { transition: transform 200ms var(--easing); }

/* Generic: anything clickable shows pointer */
.dn-pip, .cycle-btn, .faq-item summary, .aud-tab, .time-range span { cursor: pointer; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════
   RESPONSIVE — basics only
   ──────────────────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-grid,
  .problem-grid,
  .meet-pitch,
  .trust-grid,
  .claim-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero-phone-wrap { transform: scale(0.9); }
  .flow { grid-template-columns: 1fr; gap: 16px; }
  .flow-arrow { transform: rotate(90deg); padding: 4px 0; }
  .cx {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .deck-card {
    grid-template-columns: 1fr;
    position: relative !important;
    inset: auto !important;
    opacity: 1 !important;
    transform: none !important;
    margin-bottom: 18px;
  }
  .dc-left { border-right: 0; border-bottom: 1px solid var(--line); padding: 32px 28px; }
  .dc-title { font-size: 26px; }
  .deck-stage { min-height: 0; }
  .dn-bar { display: none; }
  .dn-label { display: none; }
  .wow-stage-grid { grid-template-columns: 1fr; }
  .flowx { grid-template-columns: 1fr; gap: 24px; }
  .flowx-phone-col { order: -1; }
  .wp-stats { grid-template-columns: 1fr; }
  .wp-stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .personas {
    flex-direction: column;
    height: auto;
  }
  .persona {
    flex: none !important;
    height: 360px;
  }
  .persona-rail { display: none; }
  .persona-detail {
    position: absolute;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    padding: 28px;
  }
  .persona-img { transform: scale(1) !important; filter: grayscale(0) !important; }
  /* Mobile cards are full-width and stacked, so showing every card's text is
     fine here (no squish) — re-enable it for the no-anim fallback too. */
  html:not(.anims-ok) .persona-detail > *,
  html:not(.anims-ok) .persona-uses li { opacity: 1 !important; transform: none !important; }
  .persona-scrim {
    background: linear-gradient(180deg, rgba(8,23,27,0.25), rgba(8,23,27,0.9)) !important;
  }
  .persona-title { font-size: 26px; }
  .trust-tiles { grid-template-columns: 1fr; }
  .trust-tile { border-right: 0; border-bottom: 1px solid var(--line); }
  .vaultx { grid-template-columns: 1fr; gap: 40px; }
  .vaultx-stage { min-height: 420px; order: 2; }
  .price-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .vault { grid-template-columns: 1fr; }
  .vault-wire { display: none; }
  .receipt-stack { height: 720px; }
}

/* ════════════════════════════════════════════════════════════════════════
   NO-ANIMATION FALLBACK
   ────────────────────────────────────────────────────────────────────────
   If JS hasn't added html.anims-ok (because CSS transitions/animations
   don't tick in this environment), force everything to its final, visible
   state. Reveals appear instantly, SVG paths render fully drawn, all
   wow-screens collapse to step 1, decorative loops are disabled.
   ──────────────────────────────────────────────────────────────────────── */

html:not(.anims-ok) .reveal,
html:not(.anims-ok) .hero-h1 .reveal,
html:not(.anims-ok) .hp-room,
html:not(.anims-ok) .pack-file,
/* Only the ACTIVE persona's text is revealed in the no-anim fallback. Revealing
   every card forced the collapsed slivers to render their full text, squished
   into a ~60px column (the "wrong layout" on non-selected cards). */
html:not(.anims-ok) .persona.is-on .persona-detail > *,
html:not(.anims-ok) .persona.is-on .persona-uses li,
html:not(.anims-ok) .float-chip {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

html:not(.anims-ok) .hp-spark-line,
html:not(.anims-ok) .pv-spark-line,
html:not(.anims-ok) .time-line,
html:not(.anims-ok) .gap-arc-fill {
  stroke-dashoffset: 0 !important;
  transition: none !important;
}

html:not(.anims-ok) .hp-spark-fill,
html:not(.anims-ok) .hp-spark-dot,
html:not(.anims-ok) .time-fill,
html:not(.anims-ok) .time-dots circle {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

html:not(.anims-ok) .dossier-seal {
  opacity: 1 !important;
  transform: rotate(-12deg) scale(1) !important;
  transition: none !important;
}

/* Wow stage: only show step 1 if cycling can't run */
html:not(.anims-ok) .wow-screen {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  display: none !important;
  pointer-events: auto !important;
}
html:not(.anims-ok) .wow-screen.is-on {
  display: flex !important;
}

/* Stop infinite decorative loops that would otherwise hide things */
html:not(.anims-ok) .phone {
  animation: none !important;
}
html:not(.anims-ok) .wf-scan,
html:not(.anims-ok) .pv-cell.active,
html:not(.anims-ok) .wf-shutter::after {
  animation: none !important;
}

/* Ensure transition-driven elements in anims-ok mode behave fine if
   they happen to get is-in re-applied — no override needed there. */
