/* =========================================================================
   Kliow Landing Page — section, layout, component styles
   ========================================================================= */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-page);
  color: var(--fg-primary);
  font-feature-settings: "ss01", "ss02";
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
.tnum { font-variant-numeric: tabular-nums; }

:root {
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-reveal: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Scroll anchor offsets (compensate for sticky header ~69px + 27px breathing) ---------- */
#demo, #problema, #como-funciona, #oferta, #faq { scroll-margin-top: 96px; }

/* ---------- Layout primitives ---------- */
.container {
  max-width: var(--max-page);
  margin: 0 auto;
  padding-left: var(--page-pad-desktop);
  padding-right: var(--page-pad-desktop);
}
.section {
  padding-top: var(--section-gap-desktop);
  padding-bottom: var(--section-gap-desktop);
}
.section--tight { padding-top: 80px; padding-bottom: 80px; }
.section--dark {
  background: var(--kl-forest);
  color: var(--kl-paper);
}
.section--dark .t-section,
.section--dark .t-hero,
.section--dark .t-sub { color: var(--kl-paper); }

/* ---------- Mono caption ---------- */
.section-mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 0 28px 0;
  font-weight: 500;
}
.section--dark .section-mono { color: var(--kl-sage); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 16px 26px;
  text-decoration: none;
  transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 350ms ease-out, background-color 200ms ease-out;
  white-space: nowrap;
}
.btn .arrow { transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1); display: inline-block; }
.btn:hover { transform: scale(1.03); }
.btn:hover .arrow { transform: translateX(6px); }
.btn:active { transform: scale(0.98); transition: transform 150ms ease-out, box-shadow 150ms ease-out, background-color 150ms ease-out; }
.btn--primary { background: var(--kl-forest); color: var(--kl-paper); }
.btn--primary:hover { box-shadow: 0 12px 28px rgba(31, 61, 39, 0.28), 0 4px 8px rgba(31, 61, 39, 0.12); }
.btn--secondary {
  background: transparent;
  color: var(--kl-forest);
  border: 1.5px solid var(--kl-forest);
  padding: 14.5px 24.5px;
}
.btn--secondary:hover { background: rgba(31,61,39,0.05); box-shadow: 0 8px 20px rgba(31, 61, 39, 0.10); }
.btn--accent { background: var(--kl-sage); color: var(--kl-forest); font-weight: 600; }
.btn--small { padding: 10px 18px; font-size: 13px; }
.btn--lg { padding: 18px 32px; font-size: 16px; }
.btn:focus-visible { outline: 2px solid var(--kl-sage); outline-offset: 2px; }

/* ---------- Header ---------- */
.kl-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0;
  background: transparent;
  transition: background var(--t-base), backdrop-filter var(--t-base), box-shadow var(--t-base);
}
.kl-header.is-scrolled {
  background: rgba(250, 247, 240, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--kl-forest-08);
}
.kl-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.kl-logo-wrap {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.025em;
  color: var(--kl-forest);
  line-height: 1;
}
.kl-logo-wrap .k { font-weight: 700; font-style: italic; }
.kl-logo-wrap .liow { font-weight: 500; }
.kl-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.kl-nav a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--kl-forest);
  opacity: 0.75;
  position: relative;
  padding: 4px 0;
  transition: opacity var(--t-base);
}
.kl-nav a:hover { opacity: 1; }
.kl-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--kl-forest);
  transition: width var(--t-base);
}
.kl-nav a:hover::after { width: 100%; }

/* ---------- Hero (02) ---------- */
.hero { padding-top: 72px; padding-bottom: 120px; position: relative; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--kl-coral);
  color: var(--kl-forest);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 28px;
}
.hero__badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--kl-forest); }
.hero h1 {
  margin: 0 0 24px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.94;
  letter-spacing: -3px;
  color: var(--kl-forest);
  max-width: 13ch;
}
.hero h1 em { font-style: italic; font-weight: 600; }
.hero h1 .num {
  font-weight: 700;
  font-feature-settings: "tnum";
}
.hero__sub {
  font-family: var(--font-body);
  font-size: 23px;
  line-height: 1.45;
  color: var(--kl-forest-90);
  max-width: 580px;
  margin: 0 0 36px 0;
}
@media (max-width: 760px) {
  .hero__sub { font-size: 20px; }
}
.hero__cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero__cta-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 18px;
}

/* Hero right column — Sage card with mockup + floating pills */
.hero__viz {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__sage-card {
  background: var(--kl-sage);
  border-radius: 24px;
  padding: 26px;
  width: 100%;
  max-width: 460px;
  transform: rotate(2deg);
  position: relative;
}
.hero__sage-card .mono-cap {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--kl-forest);
  margin-bottom: 16px;
  font-weight: 500;
}
.mockup-card {
  background: var(--kl-white);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-mockup);
  padding: 18px;
}
.pendency {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--r-pendency);
  border-left: 3px solid;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--kl-forest);
  font-family: var(--font-body);
}
.pendency:last-child { margin-bottom: 0; }
.pendency .p-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  color: var(--kl-forest);
}
.pendency--coral { background: var(--kl-coral-soft); border-left-color: var(--kl-coral); }
.pendency--butter { background: var(--kl-butter-soft); border-left-color: var(--kl-butter); }
.pendency--sage { background: var(--kl-sage-soft); border-left-color: var(--kl-sage); }
.pendency--lilac { background: var(--kl-lilac-soft); border-left-color: var(--kl-lilac); }
.pendency--cinnabar { background: var(--kl-cinnabar-soft); border-left-color: var(--kl-cinnabar); }
.pendency strong { font-weight: 600; }
.pendency .p-meta { color: var(--kl-forest-55); font-size: 11px; margin-top: 2px; display: block; }

.float-pill {
  position: absolute;
  background: var(--kl-butter);
  color: var(--kl-forest);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-pill);
  z-index: 3;
  white-space: nowrap;
}
.float-pill--tl { top: -14px; left: -28px; transform: rotate(-6deg); background: var(--kl-butter); }
.float-pill--br { bottom: -14px; right: -16px; transform: rotate(4deg); background: var(--kl-lilac); }

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: opacity 300ms var(--ease-soft);
}
.scroll-indicator.fade { opacity: 0; }
.scroll-indicator .chev { animation: bobbing 2.4s ease-in-out infinite; }
@keyframes bobbing {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

/* ===========================================================
   Hero entrance choreography — CSS @keyframes, load-triggered
   Elements start invisible via animation-fill-mode: both/backwards
   =========================================================== */

/* --- Keyframe shapes --- */
@keyframes kl-h-rise-sm {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes kl-h-rise-md {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes kl-h-rise-xs {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes kl-h-slide-r {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes kl-h-pop-tl {
  from { opacity: 0; transform: rotate(-6deg) scale(0.7); }
  to   { opacity: 1; transform: rotate(-6deg) scale(1); }
}
@keyframes kl-h-pop-br {
  from { opacity: 0; transform: rotate(4deg) scale(0.7); }
  to   { opacity: 1; transform: rotate(4deg) scale(1); }
}
@keyframes kl-h-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* Chevron: drifts down 8px + fades, snaps back, every 2s */
@keyframes kl-chev-down {
  0%   { opacity: 1; transform: translateY(0); }
  55%  { opacity: 0; transform: translateY(8px); }
  56%  { opacity: 0; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(0); }
}

/* --- 1 · Badge (0ms) --- */
.hero .hero__badge {
  animation: kl-h-rise-sm 600ms cubic-bezier(0.22, 1, 0.36, 1) 0ms both;
}
/* --- 2 · Headline (150ms) --- */
.hero h1 {
  animation: kl-h-rise-md 700ms cubic-bezier(0.22, 1, 0.36, 1) 150ms both;
}
/* --- 3 · Subtitle (300ms) --- */
.hero .hero__sub {
  animation: kl-h-rise-sm 600ms cubic-bezier(0.22, 1, 0.36, 1) 300ms both;
}
/* --- 4 · CTA row + note (450ms / 470ms) --- */
.hero .hero__cta-row {
  animation: kl-h-rise-xs 500ms cubic-bezier(0.22, 1, 0.36, 1) 450ms both;
}
.hero .hero__cta-note {
  animation: kl-h-rise-xs 500ms cubic-bezier(0.22, 1, 0.36, 1) 470ms both;
}
/* --- 5 · Right column — slides in from right (400ms) --- */
.hero .hero__viz {
  animation: kl-h-slide-r 800ms cubic-bezier(0.22, 1, 0.36, 1) 400ms both;
}
/* --- 6 · Floating pills — micro-bounce overshoot (900ms / 920ms) --- */
.float-pill--tl {
  animation: kl-h-pop-tl 400ms cubic-bezier(0.34, 1.56, 0.64, 1) 900ms both;
}
.float-pill--br {
  animation: kl-h-pop-br 400ms cubic-bezier(0.34, 1.56, 0.64, 1) 920ms both;
}
/* --- 7 · Scroll indicator (600ms) --- */
/* fill-mode: backwards only — so the fade-on-scroll JS transition still works after */
#scroll-indicator {
  animation: kl-h-fade 500ms ease-out 600ms backwards;
}
/* Chevron loop — starts after indicator has faded in */
.scroll-indicator .chev {
  animation: kl-chev-down 2s cubic-bezier(0.4, 0, 0.2, 1) 1200ms infinite;
}

/* --- Mobile: translate distances reduced by 40% --- */
@media (max-width: 760px) {
  @keyframes kl-h-rise-sm {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes kl-h-rise-md {
    from { opacity: 0; transform: translateY(15px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes kl-h-rise-xs {
    from { opacity: 0; transform: translateY(9px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes kl-h-slide-r {
    from { opacity: 0; transform: translateX(36px); }
    to   { opacity: 1; transform: translateX(0); }
  }
}

/* ---------- Demo video (03) ---------- */
.demo { text-align: center; }
.demo .container { max-width: 980px; }
.demo h2 {
  margin: 0 auto 40px auto;
  max-width: 720px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--kl-forest);
}
.demo h2 em { font-style: italic; }
.video-frame {
  background: var(--kl-paper);
  border-radius: var(--r-card-lg);
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--t-base);
  box-shadow: 0 16px 48px rgba(31, 61, 39, 0.14);
  border: 1px solid rgba(31, 61, 39, 0.08);
}
.video-frame:hover { transform: translateY(-2px); }
.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 61, 39, 0.04);
  pointer-events: none;
}
.play-btn {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--kl-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  opacity: 0.5;
  transition: transform var(--t-base), opacity var(--t-base);
}
.video-frame:hover .play-btn { transform: scale(1.06); opacity: 1; }
.play-btn svg { width: 32px; height: 32px; color: var(--kl-forest); margin-left: 4px; }
.video-corner {
  position: absolute;
  bottom: 18px;
  left: 22px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--kl-sage);
}
.video-corner-r {
  position: absolute;
  bottom: 18px;
  right: 22px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.4px;
  color: var(--kl-paper);
  opacity: 0.6;
}
.demo__caption {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 18px;
}

/* Demo video badge + dashboard mock */
.video-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  background: var(--kl-paper);
  color: var(--kl-forest);
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid rgba(31, 61, 39, 0.12);
  box-shadow: 0 8px 20px rgba(31, 61, 39, 0.10);
}
.video-mock {
  position: absolute;
  inset: 0;
  padding: 56px 8% 8% 8%;
  display: flex;
  flex-direction: column;
  background: var(--kl-paper);
  z-index: 1;
}
.video-mock__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 14px 4px;
  border-bottom: 1px solid rgba(31, 61, 39, 0.08);
  margin-bottom: 14px;
}
.video-mock__dots { display: inline-flex; gap: 6px; }
.video-mock__dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(31, 61, 39, 0.18); }
.video-mock__dots span:first-child { background: var(--kl-cinnabar); }
.video-mock__dots span:nth-child(2) { background: var(--kl-butter); }
.video-mock__dots span:last-child { background: var(--kl-sage); }
.video-mock__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.video-mock__body { display: flex; flex-direction: column; gap: 10px; min-height: 0; }
.video-mock__row {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(31, 61, 39, 0.04);
  border-left: 3px solid;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--kl-forest);
}
.video-mock__row.coral { border-left-color: var(--kl-coral); background: rgba(244, 168, 138, 0.18); }
.video-mock__row.butter { border-left-color: var(--kl-butter); background: rgba(244, 221, 142, 0.20); }
.video-mock__row.sage { border-left-color: var(--kl-sage); background: rgba(157, 184, 155, 0.18); }
.video-mock__row.lilac { border-left-color: var(--kl-lilac); background: rgba(201, 194, 220, 0.22); }
.video-mock__row .dot { display: none; }
.video-mock__row .t { font-size: 13px; }
.video-mock__row .t strong { font-weight: 600; }
.video-mock__row .pill {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--kl-paper);
  color: var(--kl-forest);
  border: 1px solid rgba(31, 61, 39, 0.1);
}
@media (max-width: 760px) {
  .video-mock { padding: 48px 5% 5% 5%; }
  .video-mock__row { padding: 10px 12px; }
  .video-mock__row .t { font-size: 12px; }
}

/* §02 manifesto video */
.kh-manifesto-video {
  position: relative;
  cursor: pointer;
  max-width: 880px;
  margin: 3rem auto 4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.kh-manifesto-video.is-in {
  opacity: 1;
  transform: translateY(0);
}
.kh-manifesto-video video {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(31, 61, 39, 0.12), 0 4px 12px rgba(31, 61, 39, 0.06);
  display: block;
}
.kh-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #1F3D27;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(31, 61, 39, 0.25), 0 2px 6px rgba(31, 61, 39, 0.1);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 300ms ease-out, opacity 400ms ease-out;
  animation: kh-play-pulse 2.5s ease-in-out infinite;
}
.kh-video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 12px 32px rgba(31, 61, 39, 0.3), 0 4px 8px rgba(31, 61, 39, 0.12);
}
.kh-video-play-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
}
@keyframes kh-play-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(31, 61, 39, 0.25), 0 0 0 0 rgba(31, 61, 39, 0.15); }
  50%       { box-shadow: 0 8px 24px rgba(31, 61, 39, 0.25), 0 0 0 12px rgba(31, 61, 39, 0); }
}

/* Guarantee seal (12) */
.guarantee-card__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  margin-bottom: 24px;
}
.guarantee-seal {
  position: relative;
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  border: 2px solid var(--kl-forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(250, 247, 240, 0.4);
}
.guarantee-seal__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: kl-seal-rotate 24s linear infinite;
}
.guarantee-seal__text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.6px;
  fill: var(--kl-forest);
  text-transform: uppercase;
}
.guarantee-seal__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 64px;
  color: var(--kl-forest);
  line-height: 1;
  letter-spacing: -2px;
}
@keyframes kl-seal-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .guarantee-seal__ring { animation: none; } }
@media (max-width: 760px) {
  .guarantee-card__head { grid-template-columns: 1fr; gap: 24px; }
  .guarantee-seal { width: 110px; height: 110px; }
  .guarantee-seal__num { font-size: 52px; }
}

/* Urgency math note (13) */
.urgency__math {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(31, 61, 39, 0.8);
  text-align: left;
  max-width: 720px;
  margin: 32px 0 0 0;
}

/* ---------- Section title (general) ---------- */
.t-section-h {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--kl-forest);
  max-width: 880px;
}
.t-section-h em { font-style: italic; }
.section--dark .t-section-h { color: var(--kl-paper); }

/* ---------- Diagnosis bento (04) ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--bento-gap);
  margin-top: 56px;
}
.bento-card {
  padding: 32px;
  border-radius: var(--r-card-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(31, 61, 39, 0.06), 0 1px 2px rgba(31, 61, 39, 0.04);
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 400ms ease-out;
}
.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(31, 61, 39, 0.14), 0 4px 8px rgba(31, 61, 39, 0.06);
}
/* Section 03 entrance stagger */
.bento.reveal-stagger > .bento-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 400ms ease-out;
}
.bento.reveal-stagger.is-in > .bento-card { opacity: 1; transform: translateY(0); }
.bento.reveal-stagger.is-in > .bento-card:nth-child(1) { transition-delay: 0ms; }
.bento.reveal-stagger.is-in > .bento-card:nth-child(2) { transition-delay: 100ms; }
.bento.reveal-stagger.is-in > .bento-card:nth-child(3) { transition-delay: 200ms; }
.bento.reveal-stagger.is-in > .bento-card:nth-child(4) { transition-delay: 300ms; }
.bento.reveal-stagger.is-in > .bento-card:nth-child(5) { transition-delay: 400ms; }
.bento.reveal-stagger.is-in > .bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(31, 61, 39, 0.14), 0 4px 8px rgba(31, 61, 39, 0.06);
}
.bento-card .b-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--kl-forest);
  font-weight: 500;
  margin-bottom: 18px;
}
.bento-card .b-mono.on-dark { color: var(--kl-sage); }
.bento-card .b-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 96px;
  line-height: 0.92;
  letter-spacing: -3.5px;
  color: var(--kl-forest);
  margin: 0;
  font-feature-settings: "tnum";
}
.bento-card .b-num.on-dark { color: var(--kl-paper); }
.bento-card .b-num--mid { font-size: 72px; letter-spacing: -2.8px; }
.bento-card .b-body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--kl-forest-90);
  margin-top: 18px;
}
.bento-card .b-body.on-dark { color: rgba(250, 247, 240, 0.85); }
.bento-card .b-source {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--kl-sage);
  margin-top: 24px;
}
/* layout */
.bento-card.b-forest { grid-column: span 7; background: var(--kl-forest); color: var(--kl-paper); min-height: 320px; }
.bento-card.b-coral { grid-column: span 5; background: var(--kl-coral); }
.bento-card.b-butter { grid-column: span 4; background: var(--kl-butter); opacity: 0.92; }
.bento-card.b-pendency { grid-column: span 5; background: var(--kl-paper); border: 1px solid var(--border-card); padding: 24px; opacity: 0.92; }
.bento-card.b-lilac { grid-column: span 3; background: var(--kl-lilac); opacity: 0.92; }
.bento-card.b-butter .b-mono,
.bento-card.b-pendency .b-mono,
.bento-card.b-lilac .b-mono { font-size: 10px; }
.bento-card.b-butter .b-body,
.bento-card.b-pendency .b-body,
.bento-card.b-lilac .b-body { font-size: 13px; }
.bento-card.b-butter .b-tagline { font-size: 19px; }
.bento-card.b-lilac .b-num--mid { font-size: 65px; letter-spacing: -2.5px; }

.bento-card .b-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
  color: var(--kl-forest);
}
.bento-card .b-tagline em { font-style: italic; }

.diagnosis__closing {
  max-width: 720px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--kl-forest-90);
  margin: 56px 0 0 0;
}
.diagnosis__closing em { font-family: var(--font-display); font-style: italic; font-weight: 500; color: var(--kl-forest); }

/* mini-pendency in bento */
.mini-pendency-list { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.mini-pendency {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-pendency);
  background: var(--kl-paper);
  border-left: 3px solid;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--kl-forest);
}
.mini-pendency.coral { background: var(--kl-coral-soft); border-left-color: var(--kl-coral); }
.mini-pendency.butter { background: var(--kl-butter-soft); border-left-color: var(--kl-butter); }
.mini-pendency.sage { background: var(--kl-sage-soft); border-left-color: var(--kl-sage); }
.mini-pendency.lilac { background: var(--kl-lilac-soft); border-left-color: var(--kl-lilac); }

/* ---------- Before/After (05) ---------- */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}
.compare-card {
  padding: 36px;
  border-radius: var(--r-card-lg);
}
.compare-card--before {
  background: var(--kl-paper);
  border: 1px solid var(--border-card);
  color: var(--kl-forest);
}
.compare-card--after {
  background: var(--kl-forest);
  color: var(--kl-paper);
}
.compare-card__head {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 0 14px 0;
}
.compare-card--after .compare-card__head { color: var(--kl-sage); }
.compare-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.8px;
  margin: 0 0 28px 0;
  color: var(--kl-forest);
}
.compare-card--after .compare-card__title { color: var(--kl-paper); }
.compare-list { list-style: none; padding: 0; margin: 0; }
.compare-list li {
  padding: 16px 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 1px solid var(--kl-forest-12);
  color: var(--kl-forest-90);
}
.compare-card--after .compare-list li {
  border-bottom-color: rgba(157, 184, 155, 0.25);
  color: rgba(250, 247, 240, 0.92);
}
.compare-list li:last-child { border-bottom: none; padding-bottom: 0; }
.compare-list li:first-child { padding-top: 0; }
.compare-list li em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--kl-sage);
}

/* ---------- Solution split (05) ---------- */
.sol-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 64px 0;
}
.sol-split__col {
  border-radius: 28px;
  padding: 36px;
  height: 480px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.sol-before {
  background: var(--kl-paper);
  border: 1px solid rgba(31, 61, 39, 0.15);
}
.sol-after {
  background: #9DB89B;
}
.sol-split__cap {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--kl-forest);
  opacity: 0.6;
  margin-bottom: 12px;
  font-weight: 500;
}
.sol-split__sub {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--kl-forest);
  margin: 0 0 20px 0;
}
.sol-chaos {
  position: relative;
  flex: 1;
  width: 100%;
}
.chaos-tool {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}
.ct-1 { top: 4%;   left: 4%;   font-size: 30px; color: var(--kl-coral); transform: rotate(-6deg); }
.ct-2 { top: 8%;   right: 4%;  font-size: 42px; color: var(--kl-forest); opacity: 0.85; transform: rotate(4deg); }
.ct-3 { top: 36%;  left: 4%;   font-size: 22px; color: var(--kl-cinnabar); opacity: 0.7; transform: rotate(-12deg); }
.ct-4 { top: 38%;  right: 6%;  font-size: 32px; color: var(--kl-lilac); transform: rotate(8deg); }
.ct-5 { bottom: 30%; left: 22%; font-size: 18px; color: var(--kl-forest); opacity: 0.55; transform: rotate(-3deg); }
.ct-6 { bottom: 6%; left: 4%;   font-size: 28px; color: var(--kl-forest); opacity: 0.55; transform: rotate(2deg); }
.ct-7 { bottom: 8%; right: 4%;  font-size: 24px; color: var(--kl-sage); transform: rotate(-7deg); }
.sol-order {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.sol-order__logo {
  font-family: var(--font-display);
  font-size: 80px;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--kl-forest);
  display: flex;
  align-items: baseline;
}
.sol-order__logo .k { font-weight: 700; font-style: italic; }
.sol-order__logo .liow { font-weight: 500; }
.sol-order__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.order-pill {
  background: var(--kl-paper);
  color: var(--kl-forest);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 500;
}
.sol-split__caption {
  grid-column: span 2;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.2px;
  color: var(--kl-forest);
  margin: 32px auto 0 auto;
  max-width: 640px;
}
.sol-split__caption em { font-style: italic; font-weight: 700; }
@media (max-width: 768px) {
  .sol-split { grid-template-columns: 1fr; gap: 24px; }
  .sol-split__col { height: auto; min-height: 380px; padding: 28px; }
  .sol-split__caption { grid-column: span 1; }
  .sol-order__logo { font-size: 64px; }
}

/* ---------- Solution (06) ---------- */
.solution__body {
  max-width: 720px;
  margin: 40px 0 36px 0;
}
.solution__body p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--kl-forest-90);
  margin: 0 0 18px 0;
}
.solution__body p em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--kl-forest);
}
/* ========================================
   Kliow Hub diagram — Section 04
   ======================================== */

/* Section overflow guard — prevents icon labels from causing horizontal scroll */
#como-funciona { overflow-x: clip; }

.kliow-hub {
  position: relative;
  width: 600px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  margin: 72px auto 0;
}

/* SVG connector layer — sits behind icons */
.kh-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 1;
  pointer-events: none;
}

.kh-line {
  stroke: #1F3D27;
  stroke-width: 1.5;
  stroke-opacity: 0.22;
  stroke-linecap: round;
  fill: none;
  will-change: stroke-dashoffset;
}

/* K center */
.kh-center {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: #1F3D27;
  box-shadow:
    0 2px 4px rgba(31, 61, 39, 0.28),
    0 8px 24px rgba(31, 61, 39, 0.22),
    0 20px 48px rgba(31, 61, 39, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  transform: scale(0);
  transition: opacity 800ms cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 800ms cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
.kh-center__shine {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, transparent 100%);
  border-radius: 28px 28px 0 0;
  pointer-events: none;
}
.kh-center__k {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 72px;
  line-height: 1;
  color: #FAF7F0;
  margin-top: -6px;
  position: relative;
  z-index: 1;
  user-select: none;
}
.kh-center.is-visible {
  opacity: 1;
  transform: scale(1);
}
.kh-center.is-breathing {
  animation: kh-breathe 4s ease-in-out infinite;
}
@keyframes kh-breathe {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.03); }
}

/* Pulse rings */
.kh-pulse {
  position: absolute;
  left: 50%; top: 50%;
  width: 120px; height: 120px;
  margin-left: -60px; margin-top: -60px;
  border-radius: 50%;
  border: 1.5px solid rgba(31, 61, 39, 0.35);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  animation: kh-pulse-expand 3.5s ease-out infinite;
  animation-play-state: paused;
}
.kh-pulse--2 { animation-delay: -1.167s; }
.kh-pulse--3 { animation-delay: -2.333s; }
@keyframes kh-pulse-expand {
  0%   { transform: scale(1);   opacity: 0.35; }
  100% { transform: scale(3.2); opacity: 0;    }
}
.kliow-hub.pulses-running .kh-pulse {
  animation-play-state: running;
}

/* Icon nodes */
/* Icon positions — desktop (600×600 stage, top-left corner of 88px icon) */
.kh-node[data-idx="0"] { top:  76px; left: 256px; }
.kh-node[data-idx="1"] { top: 166px; left: 481px; }
.kh-node[data-idx="2"] { top: 346px; left: 481px; }
.kh-node[data-idx="3"] { top: 436px; left: 256px; }
.kh-node[data-idx="4"] { top: 346px; left:  31px; }
.kh-node[data-idx="5"] { top: 166px; left:  31px; }

.kh-node {
  position: absolute;
  width: 88px;
  text-align: center;
  z-index: 5;
  overflow: visible;
  transition: transform 600ms ease-out;
}
.kh-icon-wrap {
  display: inline-block;
  opacity: 0;
  transform: scale(0.6);
  transition: none;
}
.kh-node.is-visible .kh-icon-wrap {
  opacity: 1;
  transform: scale(1);
  transition: opacity 400ms ease-out,
              transform 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.kh-node.is-floating .kh-icon-wrap {
  animation: kh-float var(--kh-dur, 4.2s) ease-in-out infinite;
}
.kh-icon-wrap img {
  display: block;
  width: 88px;
  height: 88px;
  transition: transform 300ms ease-out, filter 300ms ease-out;
}
.kh-icon-wrap:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
}
@keyframes kh-float {
  0%, 100% { transform: translateY(0)    scale(1); }
  50%       { transform: translateY(-6px) scale(1); }
}

/* Labels */
.kh-label {
  display: block;
  margin-top: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.3;
  color: #5C5C5C;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 400ms ease-out 200ms;
}
.kh-node.is-visible .kh-label { opacity: 1; }

/* Anchor phrase */
.kh-caption {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.2px;
  color: var(--fg-secondary);
  text-align: center;
  margin: 56px 0 40px;
}

/* Mobile ---------------------------------------- */
@media (max-width: 640px) {
  .kliow-hub { width: 360px; margin-top: 56px; }
  .kh-center { width: 80px; height: 80px; border-radius: 22px; }
  .kh-center__k { font-size: 52px; }
  .kh-center__shine { border-radius: 22px 22px 0 0; }
  .kh-pulse { width: 80px; height: 80px; margin-left: -40px; margin-top: -40px; }
  .kh-node { width: 56px; }
  .kh-icon-wrap img { width: 56px; height: 56px; }
  .kh-label { font-size: 10px; }
  .kh-caption { font-size: 16px; }
  /* Mobile icon positions (360×360 stage, top-left corner of 56px icon) */
  .kh-node[data-idx="0"] { top:  44px; left: 152px; }
  .kh-node[data-idx="1"] { top:  92px; left: 308px; }
  .kh-node[data-idx="2"] { top: 220px; left: 308px; }
  .kh-node[data-idx="3"] { top: 268px; left: 152px; }
  .kh-node[data-idx="4"] { top: 220px; left:    0; }
  .kh-node[data-idx="5"] { top:  92px; left:    0; }
}

/* Touch devices: disable parallax */
@media (hover: none) {
  .kh-node { transition: none !important; }
}

/* Reduced motion -------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .kh-center {
    opacity: 1 !important;
    transform: scale(1) !important;
    transition: none !important;
    animation: none !important;
  }
  .kh-icon-wrap {
    opacity: 1 !important;
    transform: scale(1) !important;
    transition: none !important;
    animation: none !important;
  }
  .kh-label { opacity: 1 !important; transition: none !important; }
  .kh-pulse { animation: none !important; opacity: 0 !important; }
  .kh-line { stroke-dashoffset: 0 !important; transition: none !important; }
  .kh-dot { opacity: 0 !important; }
}

/* WhatsApp PNG fills edge-to-edge; scale down to match padded icons */
.kh-node[data-tool="whatsapp"] .kh-icon-wrap img { transform: scale(0.85); }
.kh-node[data-tool="whatsapp"] .kh-icon-wrap:hover img { transform: scale(0.918); }

/* ========================================
   Kliow Bento grid — Section 04
   ======================================== */
.kliow-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 920px;
  margin: 4rem auto 0;
}
.kliow-bento-not,
.kliow-bento-anchor { grid-column: 1 / -1; }

.kliow-bento-card {
  border-radius: 22px;
  padding: 32px 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.kliow-bento-card.bento-in {
  opacity: 1;
  transform: translateY(0);
}
.kliow-bento-not   { background: #EDEBF3; }
.kliow-bento-is    { background: #FAF1D0; }
.kliow-bento-where { background: #E8EDE7; }

/* Per-card text colors */
.kliow-bento-not .kliow-bento-label { color: #5B4F7A; opacity: 1; }
.kliow-bento-not .kliow-bento-title { color: #2E2548; }
.kliow-bento-not .kliow-bento-body  { color: #5B4F7A; }
.kliow-bento-is  .kliow-bento-label { color: #7A5E12; opacity: 1; }
.kliow-bento-is  .kliow-bento-title { color: #4A3E0F; }
.kliow-bento-is  .kliow-bento-body  { color: #6B5618; }
.kliow-bento-where .kliow-bento-label { opacity: 0.75; }
.kliow-bento-anchor {
  background: #1F3D27;
  color: #FAF7F0;
  text-align: center;
  padding: 48px 32px;
}

.kliow-bento-label {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1F3D27;
  opacity: 0.7;
}
.kliow-bento-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
  color: #1F3D27;
  margin: 0 0 12px;
}
.kliow-bento-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: #5C5C5C;
  margin: 0;
}
.kliow-bento-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.kliow-bento-pills li {
  background: #FFFFFF;
  color: #1F3D27;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 100px;
  white-space: nowrap;
  cursor: default;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 300ms ease-out,
              transform 250ms cubic-bezier(0.2, 0.8, 0.2, 1),
              background-color 150ms cubic-bezier(0.2, 0.8, 0.2, 1),
              color 150ms cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 150ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.kliow-bento-where.pills-in .kliow-bento-pills li { opacity: 1; transform: scale(1); }
.kliow-bento-pills li:hover {
  background: #1F3D27;
  color: #FAF7F0;
  transform: scale(1) translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 61, 39, 0.15);
}
.kliow-bento-anchor p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  color: #FAF7F0;
  margin: 0;
}
.kliow-bento-accent { color: #F4A88A; }
/* Blur-reveal words — anchor card */
.kh-blur-word {
  display: inline-block;
  filter: blur(12px);
  opacity: 0;
  transform: translateY(4px);
  transition: filter 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
              opacity 700ms ease,
              transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.kh-blur-word.revealed {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .kliow-bento {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 3rem;
  }
  .kliow-bento-not,
  .kliow-bento-anchor { grid-column: 1; }
  .kliow-bento-card { padding: 24px; }
  .kliow-bento-anchor { padding: 40px 24px; }
  .kliow-bento-title { font-size: 20px; }
  .kliow-bento-anchor p { font-size: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .kliow-bento-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .kliow-bento-pills li {
    opacity: 1 !important;
    transform: scale(1) !important;
    transition: none !important;
  }
}

/* ---------- Pendency mock (05) ---------- */
.pend-mock {
  margin: 40px 0 36px 0;
  border-radius: 28px;
  background: var(--kl-paper);
  border: 1px solid rgba(31, 61, 39, 0.10);
  box-shadow: 0 16px 48px -24px rgba(31, 61, 39, 0.18), 0 2px 6px rgba(31, 61, 39, 0.04);
  overflow: hidden;
}
.pend-mock__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(31, 61, 39, 0.08);
  background: rgba(31, 61, 39, 0.025);
}
.pend-mock__dots { display: flex; gap: 6px; }
.pend-mock__dots .d { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.pend-mock__dots .d--cinnabar { background: var(--kl-cinnabar); opacity: 0.75; }
.pend-mock__dots .d--butter { background: var(--kl-butter); opacity: 0.85; }
.pend-mock__dots .d--sage { background: var(--kl-sage); }
.pend-mock__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.6px;
  color: var(--kl-forest);
  opacity: 0.6;
  font-weight: 500;
}
.pend-mock__list { list-style: none; padding: 0; margin: 0; }
.pend-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(31, 61, 39, 0.08);
}
.pend-row:last-child { border-bottom: 0; }
.pend-row__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pend-row__dot--coral { background: var(--kl-coral); }
.pend-row__dot--butter { background: var(--kl-butter); }
.pend-row__dot--sage { background: var(--kl-sage); }
.pend-row__dot--lilac { background: var(--kl-lilac); }
.pend-row__text {
  flex: 1;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--kl-forest);
}
.pend-row__badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.pend-row__badge--coral { background: var(--kl-coral-soft); color: var(--kl-cinnabar); }
.pend-row__badge--butter { background: var(--kl-butter-soft); color: var(--kl-forest); }
.pend-row__badge--sage { background: var(--kl-sage-soft); color: var(--kl-forest); }
.pend-row__badge--lilac { background: var(--kl-lilac-soft); color: var(--kl-forest); }
@media (max-width: 640px) {
  .pend-row { padding: 14px 16px; gap: 12px; }
  .pend-row__text { font-size: 14px; }
}

/* ---------- Day in Kliow (07) ---------- */
.day-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  column-gap: 48px;
  row-gap: 96px;
  margin-top: 64px;
  align-items: start;
  position: relative;
}
/* Scroll-driven vertical timeline line — anchored to first/last .hour element via JS */
.day-grid::before {
  content: '';
  position: absolute;
  left: calc(var(--tl-left, 8px) - 0.75px); /* center the 1.5px line on --tl-left */
  top: var(--tl-top, 16px);
  height: var(--tl-height, calc(100% - 32px));
  bottom: auto;
  width: 1.5px;
  background: #9DB89B;
  transform-origin: top center;
  transform: scaleY(var(--tl-progress, 0));
  pointer-events: none;
  z-index: 0;
}
.day-cell { display: contents; }
.day-time {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--kl-forest);
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 4px;
  position: relative;
  z-index: 1;
}
/* Single traveling dot — JS positions top and left via style / CSS custom props */
.day-tl-dot {
  position: absolute;
  left: var(--tl-left, 8px);
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1F3D27;
  box-shadow: 0 0 0 4px rgba(157, 184, 155, 0.35), 0 0 12px rgba(157, 184, 155, 0.2);
  transform: translate(-50%, -50%) scale(1);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  animation: tl-dot-pulse 2s ease-in-out infinite;
}
@keyframes tl-dot-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%       { transform: translate(-50%, -50%) scale(1.2); }
}
.day-time .glyph { font-family: 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif; font-size: 18px; }
.day-time .hour {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 24px;
  letter-spacing: -0.5px;
  text-transform: none;
  color: var(--kl-forest);
  background-color: #FAF7F0;
  padding: 4px 8px;
}
.day-content {
  padding-bottom: 0;
  border-bottom: none;
}
.day-content:last-child { border-bottom: none; }
.day-content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.6px;
  color: var(--kl-forest);
  margin: 0 0 18px 0;
}
.day-content p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--kl-forest-90);
  margin: 0 0 16px 0;
  max-width: 640px;
}
.day-content p em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--kl-forest);
}
.day-mockup {
  margin-top: 24px;
  background: var(--kl-white);
  border-radius: var(--r-card);
  border: 1px solid var(--kl-forest-06);
  box-shadow: var(--shadow-mockup);
  overflow: hidden;
}
.day-mockup__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--kl-forest-08);
  background: var(--kl-paper);
}
.day-mockup__bar .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--kl-forest);
}
.day-mockup__bar .dots { display: flex; gap: 6px; }
.day-mockup__bar .dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--kl-forest-12); }
.day-mockup__body { padding: 22px 24px; }

/* §05 demo videos */
.kh-demo-video {
  margin-top: 24px;
  border-radius: 14px;
  overflow: hidden;
}
.kh-demo-video video {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(31, 61, 39, 0.10), 0 2px 6px rgba(31, 61, 39, 0.05);
  display: block;
}

.day-closing {
  max-width: 720px;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--kl-forest-90);
  margin: 64px 0 0 0;
  padding-top: 36px;
  border-top: 1px solid var(--kl-forest-12);
}
.day-closing em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--kl-forest);
}

/* Mockup variants for each day cell */
.mock-foco .row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-top: 1px solid var(--kl-forest-08); font-size: 13px; }
.mock-foco .row:first-child { border-top: none; padding-top: 4px; }
.mock-foco .left { display: flex; align-items: center; gap: 10px; color: var(--kl-forest); }
.mock-foco .pill {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-weight: 500;
}
.mock-foco .pill.coral { background: var(--kl-coral); color: var(--kl-forest); }
.mock-foco .pill.cinnabar { background: var(--kl-cinnabar); color: var(--kl-paper); }
.mock-foco .pill.butter { background: var(--kl-butter); color: var(--kl-forest); }
.mock-foco .pill.sage { background: var(--kl-sage); color: var(--kl-forest); }
.mock-foco .pill.lilac { background: var(--kl-lilac); color: var(--kl-forest); }
.mock-foco .marker {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
}
.mock-foco .marker.coral { background: var(--kl-coral); }
.mock-foco .marker.cinnabar { background: var(--kl-cinnabar); }
.mock-foco .marker.butter { background: var(--kl-butter); }
.mock-foco .marker.sage { background: var(--kl-sage); }
.mock-foco .marker.lilac { background: var(--kl-lilac); }

.mock-cliente .field {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--kl-forest-08);
  font-size: 13px;
}
.mock-cliente .field:first-child { border-top: none; padding-top: 0; }
.mock-cliente .field-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  align-self: center;
}
.mock-cliente .field-value { color: var(--kl-forest); display: flex; align-items: center; gap: 8px; }
.mock-cliente .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--kl-paper);
  border: 1px solid var(--kl-forest-12);
  border-radius: var(--r-pill);
  padding: 4px 10px;
  font-size: 12px;
}
.mock-cliente .chip svg { width: 12px; height: 12px; }
.mock-cliente .chip.has-link { color: var(--kl-forest); }

.mock-pay table { width: 100%; border-collapse: collapse; font-size: 13px; }
.mock-pay th, .mock-pay td { padding: 10px 0; text-align: left; border-bottom: 1px solid var(--kl-forest-08); }
.mock-pay th {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}
.mock-pay tbody tr:last-child td { border-bottom: none; }
.mock-pay td .b { font-weight: 600; color: var(--kl-forest); }
.mock-pay td .due { color: var(--kl-cinnabar); font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 1px; text-transform: uppercase; }
.mock-pay .tot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 14px;
  padding: 14px;
  background: var(--kl-coral-soft);
  border-left: 3px solid var(--kl-coral);
  border-radius: var(--r-pendency);
}
.mock-pay .tot .l { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--kl-forest); }
.mock-pay .tot .v { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--kl-forest); letter-spacing: -0.5px; }

.mock-content .tabs { display: flex; gap: 0; margin-bottom: 18px; border-bottom: 1px solid var(--kl-forest-08); }
.mock-content .tab {
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.mock-content .tab.active { color: var(--kl-forest); border-bottom-color: var(--kl-forest); }
.mock-content .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.mock-content .input {
  padding: 10px 12px;
  border: 1px solid var(--kl-forest-12);
  border-radius: 12px;
  font-size: 13px;
  background: var(--kl-paper);
  color: var(--kl-forest);
}
.mock-content .gen-btn {
  background: var(--kl-forest);
  color: var(--kl-paper);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.mock-kanban { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.mock-kanban .col { background: var(--kl-paper); border: 1px solid var(--kl-forest-08); border-radius: 12px; padding: 10px; min-height: 130px; }
.mock-kanban .col-head { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 8px; display: flex; justify-content: space-between; }
.mock-kanban .card-mini { background: var(--kl-white); border-radius: 8px; padding: 8px; font-size: 11px; border-left: 2px solid var(--kl-sage); margin-bottom: 6px; line-height: 1.3; color: var(--kl-forest); }
.mock-kanban .card-mini.coral { border-left-color: var(--kl-coral); }
.mock-kanban .card-mini.butter { border-left-color: var(--kl-butter); }
.mock-kanban .card-mini.lilac { border-left-color: var(--kl-lilac); }

/* mock-fornec — supplier list (12h) */
.mock-fornec { display: flex; flex-direction: column; gap: 0; }
.mock-fornec .fornec-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; border-top: 1px solid var(--kl-forest-08);
}
.mock-fornec .fornec-row:first-child { border-top: none; padding-top: 4px; }
.mock-fornec .fornec-row__who { display: flex; align-items: center; gap: 14px; }
.mock-fornec .fornec-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--kl-paper); border: 1px solid var(--kl-forest-12);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.5px;
  color: var(--kl-forest); flex-shrink: 0;
}
.mock-fornec .fornec-meta { display: flex; flex-direction: column; gap: 2px; line-height: 1.2; }
.mock-fornec .fornec-meta strong { font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--kl-forest); }
.mock-fornec .fornec-meta span { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 1.1px; text-transform: uppercase; color: var(--fg-muted); }
.mock-fornec .fornec-badge {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.1px;
  text-transform: uppercase; padding: 6px 12px; border-radius: 100px; font-weight: 500;
}
.mock-fornec .fb--coral { background: var(--kl-coral); color: var(--kl-forest); }
.mock-fornec .fb--sage { background: var(--kl-sage); color: var(--kl-forest); }
.mock-fornec .fb--butter { background: var(--kl-butter); color: var(--kl-forest); }
.mock-fornec .fb--forest { background: var(--kl-forest); color: var(--kl-paper); }

/* mock-finance — revenue chart (18h) */
.mock-finance .finance-legend { display: flex; gap: 20px; margin-bottom: 18px; }
.mock-finance .finance-legend__item {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 1.1px;
  text-transform: uppercase; color: var(--kl-forest);
}
.mock-finance .finance-legend .dot { width: 10px; height: 2px; border-radius: 2px; }
.mock-finance .finance-legend .dot--forest { background: var(--kl-forest); }
.mock-finance .finance-legend .dot--coral { background: var(--kl-coral); }
.mock-finance .finance-legend .dot--butter { background: var(--kl-butter); }
.mock-finance .finance-chart { width: 100%; aspect-ratio: 600 / 220; margin-bottom: 22px; }
.mock-finance .finance-chart__svg { width: 100%; height: 100%; overflow: visible; }
.mock-finance .finance-chart__svg .grid { stroke: var(--kl-forest-08); stroke-width: 1; }
.mock-finance .finance-chart__svg .line { fill: none; stroke-width: 2; vector-effect: non-scaling-stroke; }
.mock-finance .finance-chart__svg .line--forest { stroke: var(--kl-forest); }
.mock-finance .finance-chart__svg .line--coral { stroke: var(--kl-coral); }
.mock-finance .finance-chart__svg .line--butter { stroke: #d9b860; }
.mock-finance .finance-chart__svg .months text {
  font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 0.5px;
  text-transform: uppercase; fill: var(--fg-muted);
}
.mock-finance .finance-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock-finance .finance-stat {
  background: var(--kl-paper); border: 1px solid var(--kl-forest-08);
  border-radius: 12px; padding: 14px;
}
.mock-finance .finance-stat__lab { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 8px; }
.mock-finance .finance-stat__val { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.5px; color: var(--kl-forest); margin-bottom: 4px; }
.mock-finance .finance-stat__delta { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--kl-forest-90); opacity: 0.7; }

/* ---------- Benefits (08) ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.benefit-card {
  background: var(--kl-paper);
  border: 1px solid var(--border-card);
  position: relative;
  border-radius: var(--r-card-sm);
  padding: 28px 30px;
  box-shadow: 0 4px 12px rgba(31, 61, 39, 0.08), 0 1px 3px rgba(31, 61, 39, 0.05);
  transition: border-color var(--t-base), transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 400ms ease-out;
}
.benefit-card:hover {
  border-color: var(--kl-forest-12);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 32px rgba(31, 61, 39, 0.16), 0 4px 8px rgba(31, 61, 39, 0.06);
}
.benefit-card .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.benefit-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--kl-forest);
  margin: 0 0 14px 0;
}
.benefit-card p {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--kl-forest-90);
  margin: 0;
}
.benefit-card.feature { background: var(--kl-butter); border-color: transparent; grid-column: span 2; }
.benefit-card--coral { background: var(--kl-coral); border-color: transparent; }
.benefit-card--lilac { background: var(--kl-lilac); border-color: transparent; }
.benefit-card__icon {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 24px;
  height: 24px;
  color: var(--kl-forest);
  opacity: 0.85;
}
.benefit-card { padding-right: 64px; }

/* Section 06 — deeper entrance stagger (overrides generic reveal-stagger) */
.benefits-grid.reveal-stagger > * {
  transform: translateY(24px);
  transition: opacity 600ms cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.benefits-grid.reveal-stagger.is-in > *:nth-child(1) { transition-delay: 0ms; }
.benefits-grid.reveal-stagger.is-in > *:nth-child(2) { transition-delay: 100ms; }
.benefits-grid.reveal-stagger.is-in > *:nth-child(3) { transition-delay: 200ms; }
.benefits-grid.reveal-stagger.is-in > *:nth-child(4) { transition-delay: 300ms; }
.benefits-grid.reveal-stagger.is-in > *:nth-child(5) { transition-delay: 400ms; }
.benefits-grid.reveal-stagger.is-in > *:nth-child(6) { transition-delay: 500ms; }
.benefits-grid.reveal-stagger.is-in > *:nth-child(7) { transition-delay: 600ms; }

/* Section 06 — icon idle + hover animations */
.benefit-card__icon {
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Card 01 — clock hand spin */
.benefit-card:nth-child(1):not(:hover) .icon-hand {
  transform-box: view-box;
  transform-origin: 12px 12px;
  animation: bc-clock-spin 4s linear infinite;
}
.benefit-card:nth-child(1):hover .icon-hand {
  transform-box: view-box;
  transform-origin: 12px 12px;
  animation: bc-clock-spin 1.5s linear infinite;
}
@keyframes bc-clock-spin { to { transform: rotate(360deg); } }

/* Card 02 — trend line stroke flow + draw on hover */
.benefit-card:nth-child(2):not(:hover) .icon-trend {
  stroke-dasharray: 0.18 0.08;
  stroke-dashoffset: 0;
  animation: bc-trend-flow 3s linear infinite;
}
.benefit-card:nth-child(2):hover .icon-trend {
  animation: bc-trend-draw 600ms ease-in-out;
}
@keyframes bc-trend-flow { to { stroke-dashoffset: -0.26; } }
@keyframes bc-trend-draw {
  from { stroke-dasharray: 1; stroke-dashoffset: 1; }
  to   { stroke-dasharray: 1; stroke-dashoffset: 0; }
}

/* Card 03 — credit card horizontal drift + Y-flip on hover */
.benefit-card:nth-child(3):not(:hover) .benefit-card__icon {
  animation: bc-card-drift 3.5s ease-in-out infinite;
}
.benefit-card:nth-child(3):hover .benefit-card__icon {
  animation: bc-card-flip 600ms ease-in-out forwards;
}
@keyframes bc-card-drift {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-2px); }
  75%       { transform: translateX(2px); }
}
@keyframes bc-card-flip {
  0%   { transform: perspective(200px) rotateY(0deg); }
  100% { transform: perspective(200px) rotateY(360deg); }
}

/* Card 04 — document breathing scale + lift on hover */
.benefit-card:nth-child(4):not(:hover) .benefit-card__icon {
  animation: bc-doc-breathe 3s ease-in-out infinite;
}
.benefit-card:nth-child(4):hover .benefit-card__icon {
  animation: bc-doc-lift 600ms ease-out forwards;
}
@keyframes bc-doc-breathe {
  0%, 100% { transform: scale(0.97); }
  50%       { transform: scale(1.03); }
}
@keyframes bc-doc-lift {
  0%   { transform: scale(1) translateY(0); }
  50%  { transform: scale(1.1) translateY(-3px); }
  100% { transform: scale(1) translateY(0); }
}

/* Card 05 — people drift apart + snap on hover */
.benefit-card:nth-child(5):not(:hover) .icon-left  { animation: bc-people-left  3.5s ease-in-out infinite; }
.benefit-card:nth-child(5):not(:hover) .icon-right { animation: bc-people-right 3.5s ease-in-out infinite; }
.benefit-card:nth-child(5):hover .icon-left  { animation: none; transform: translateX(0); transition: transform 300ms ease-out; }
.benefit-card:nth-child(5):hover .icon-right { animation: none; transform: translateX(0); transition: transform 300ms ease-out; }
@keyframes bc-people-left  { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(-1.5px); } }
@keyframes bc-people-right { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(1.5px);  } }

/* Card 06 — user-plus opacity pulse + pop on hover */
.benefit-card:nth-child(6):not(:hover) .benefit-card__icon {
  animation: bc-user-pulse 2.5s ease-in-out infinite;
}
.benefit-card:nth-child(6):hover .benefit-card__icon {
  animation: bc-user-pop 500ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes bc-user-pulse { 0%, 100% { opacity: 0.85; transform: scale(1); }  50% { opacity: 1; transform: scale(1.04); } }
@keyframes bc-user-pop   { 0%        { transform: scale(1); }  50% { transform: scale(1.15); }  100% { transform: scale(1); } }

/* Card 07 — invoice sway + slide on hover */
.benefit-card:nth-child(7):not(:hover) .benefit-card__icon {
  transform-origin: center bottom;
  animation: bc-invoice-sway 3s ease-in-out infinite;
}
.benefit-card:nth-child(7):hover .benefit-card__icon {
  animation: bc-invoice-slide 400ms ease-out forwards;
}
@keyframes bc-invoice-sway  { 0%, 100% { transform: rotate(0deg); }  25% { transform: rotate(-2deg); }  75% { transform: rotate(2deg); } }
@keyframes bc-invoice-slide { 0% { transform: translateY(0); }  40% { transform: translateY(-3px); }  100% { transform: translateY(0); } }

/* ---------- Differences (08) — bento ---------- */
.diff-bento {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.diff-card {
  position: relative;
  border-radius: 28px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: none;
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 400ms ease-out;
}
.diff-card--01 { grid-column: span 4; background: var(--kl-sage);     color: var(--kl-forest); min-height: 320px; }
.diff-card--02 { grid-column: span 4; background: var(--kl-butter);   color: var(--kl-forest); min-height: 320px; }
.diff-card--03 { grid-column: span 4; background: var(--kl-coral);    color: var(--kl-forest); min-height: 320px; }
.diff-card--04 { grid-column: span 4; background: var(--kl-lilac);    color: var(--kl-forest); min-height: 320px; }
.diff-card--05 { grid-column: span 4; background: var(--kl-forest);   color: var(--kl-paper);  min-height: 320px; }
.diff-card--06 { grid-column: span 4; background: var(--kl-cinnabar); color: var(--kl-paper);  min-height: 320px; }
.diff-card--06 .diff-card__label { color: rgba(250, 247, 240, 0.7); }
.diff-card--06 .diff-card__body { opacity: 0.92; }
.diff-card--06 .diff-card__body em { color: var(--kl-paper); }
.diff-card--06 .diff-card__deco { opacity: 0.55; color: var(--kl-paper); }
.diff-card__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.62;
  margin-bottom: 4px;
}
.diff-card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 116px;
  line-height: 0.85;
  letter-spacing: -4px;
  font-feature-settings: "tnum";
  margin: 0 0 28px -2px;
}
.diff-card--02 .diff-card__num { font-size: 104px; }
.diff-card--03 .diff-card__num,
.diff-card--04 .diff-card__num,
.diff-card--05 .diff-card__num,
.diff-card--06 .diff-card__num { font-size: 96px; }
.diff-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin: 0 0 12px 0;
  max-width: 22ch;
}
.diff-card--01 .diff-card__title,
.diff-card--02 .diff-card__title,
.diff-card--03 .diff-card__title,
.diff-card--04 .diff-card__title,
.diff-card--05 .diff-card__title,
.diff-card--06 .diff-card__title { font-size: 26px; max-width: 22ch; }
.diff-card__body {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
  opacity: 0.92;
  max-width: 46ch;
  margin-top: auto;
}
.diff-card--05 .diff-card__body { opacity: 0.86; }
.diff-card__body em { font-family: var(--font-display); font-style: italic; font-weight: 500; }
.diff-card__deco {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 28px;
  height: 28px;
  opacity: 0.42;
  pointer-events: none;
}
.diff-card--05 .diff-card__deco { opacity: 0.55; color: var(--kl-sage); }
@media (max-width: 960px) {
  .diff-card--01, .diff-card--02,
  .diff-card--03, .diff-card--04, .diff-card--05, .diff-card--06 { grid-column: span 12; min-height: 260px; }
  .diff-card--06 { grid-template-columns: 1fr; gap: 12px; }
  .diff-card { padding: 32px; }
  .diff-card__num { font-size: 88px !important; }
}

/* ── Card hover: lift + elastic shadow ───────────────────────── */
.diff-card:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 16px 32px rgba(31, 61, 39, 0.18), 0 4px 8px rgba(31, 61, 39, 0.08);
  z-index: 2;
}

/* ── Section 07 entrance stagger ─────────────────────────────── */
@keyframes diff-card-enter {
  from { translate: 0 24px; opacity: 0; }
  to   { translate: 0 0;    opacity: 1; }
}
.diff-bento > .diff-card {
  opacity: 0;
  translate: 0 24px;
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 400ms ease-out;
}
.diff-bento.diff-in > .diff-card { animation: diff-card-enter 600ms cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.diff-bento.diff-in > .diff-card:nth-child(1) { animation-delay:   0ms; }
.diff-bento.diff-in > .diff-card:nth-child(2) { animation-delay: 100ms; }
.diff-bento.diff-in > .diff-card:nth-child(3) { animation-delay: 200ms; }
.diff-bento.diff-in > .diff-card:nth-child(4) { animation-delay: 300ms; }
.diff-bento.diff-in > .diff-card:nth-child(5) { animation-delay: 400ms; }
.diff-bento.diff-in > .diff-card:nth-child(6) { animation-delay: 500ms; }

/* ==========================================================================
   Section 07 · principle card icon animations (v2)
   ========================================================================== */

/* ── Card 01: radio-wave rings ──────────────────────────────── */
.dc01-dot { fill: currentColor; stroke: none; transform-box: fill-box; transform-origin: center; }
.dc01-r1, .dc01-r2, .dc01-r3, .dc01-r4, .dc01-r5 { transform-box: fill-box; transform-origin: center; }
.dc01-r5 { opacity: 0; }
@keyframes dc01-dot-pulse {
  0%, 100% { transform: scale(1);    }
  50%       { transform: scale(1.15); }
}
@keyframes dc01-ring {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}
.dc01-dot { animation: dc01-dot-pulse 2s ease-in-out infinite; }
.dc01-r1  { animation: dc01-ring 2s ease-out infinite 0s; }
.dc01-r2  { animation: dc01-ring 2s ease-out infinite 0.5s; }
.dc01-r3  { animation: dc01-ring 2s ease-out infinite 1s; }
.dc01-r4  { animation: dc01-ring 2s ease-out infinite 1.5s; }
.diff-card--01:hover .dc01-r1 { animation: dc01-ring 1.4s ease-out infinite 0s; }
.diff-card--01:hover .dc01-r2 { animation: dc01-ring 1.4s ease-out infinite 0.28s; }
.diff-card--01:hover .dc01-r3 { animation: dc01-ring 1.4s ease-out infinite 0.56s; }
.diff-card--01:hover .dc01-r4 { animation: dc01-ring 1.4s ease-out infinite 0.84s; }
.diff-card--01:hover .dc01-r5 { animation: dc01-ring 1.4s ease-out infinite 1.12s; }

/* ── Card 02: flow lines drift ──────────────────────────────── */
@keyframes dc02-top-flow { 0%, 100% { transform: translateX(0); }    50% { transform: translateX(4px);  } }
@keyframes dc02-mid-flow { 0%, 100% { transform: translateX(0); }    50% { transform: translateX(-3px); } }
@keyframes dc02-bot-flow { 0%, 100% { transform: translateX(0); }    50% { transform: translateX(3px);  } }
@keyframes dc02-top-fan  { 0%, 100% { transform: translateY(0); } 30%, 70% { transform: translateY(-2px); } }
@keyframes dc02-bot-fan  { 0%, 100% { transform: translateY(0); } 30%, 70% { transform: translateY(2px);  } }
.dc02-top { animation: dc02-top-flow 3s   ease-in-out infinite; }
.dc02-mid { animation: dc02-mid-flow 2.5s ease-in-out infinite 0.8s; }
.dc02-bot { animation: dc02-bot-flow 3.5s ease-in-out infinite 0.4s; }
.diff-card--02:hover .dc02-top { animation: dc02-top-fan 0.8s ease-in-out infinite; }
.diff-card--02:hover .dc02-mid { animation: none; transform: none; }
.diff-card--02:hover .dc02-bot { animation: dc02-bot-fan 0.8s ease-in-out infinite; }

/* ── Card 03: grid drift + diagonal swap ────────────────────── */
@keyframes dc03-ra-drift { 0%, 100% { transform: translate(0, 0);      } 50% { transform: translate(2px, -2px);  } }
@keyframes dc03-rb-drift { 0%, 100% { transform: translate(0, 0);      } 50% { transform: translate(2px, 2px);   } }
@keyframes dc03-rc-drift { 0%, 100% { transform: translate(0, 0);      } 50% { transform: translate(-2px, -2px); } }
@keyframes dc03-rd-drift { 0%, 100% { transform: translate(0, 0);      } 50% { transform: translate(-2px, 2px);  } }
@keyframes dc03-rb-swap  {
  0%           { transform: translate(0, 0); }
  35%, 65%     { transform: translate(-10px, 10px); }
  100%         { transform: translate(0, 0); }
}
@keyframes dc03-rc-swap  {
  0%           { transform: translate(0, 0); }
  35%, 65%     { transform: translate(10px, -10px); }
  100%         { transform: translate(0, 0); }
}
.dc03-ra { animation: dc03-ra-drift 2s   ease-in-out infinite;       transform-box: fill-box; }
.dc03-rb { animation: dc03-rb-drift 2.4s ease-in-out infinite;       transform-box: fill-box; }
.dc03-rc { animation: dc03-rc-drift 2.2s ease-in-out infinite 0.4s;  transform-box: fill-box; }
.dc03-rd { animation: dc03-rd-drift 2.6s ease-in-out infinite 0.2s;  transform-box: fill-box; }
.diff-card--03:hover .dc03-rb { animation: dc03-rb-swap 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) infinite; }
.diff-card--03:hover .dc03-rc { animation: dc03-rc-swap 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) infinite; }

/* ── Card 04: typing dots idle + bubble hover ────────────────── */
@keyframes dc04-dot-blink {
  0%, 20%  { opacity: 1;    }
  50%, 80% { opacity: 0.25; }
  100%     { opacity: 1;    }
}
@keyframes dc04-dot-fast {
  0%, 15%  { opacity: 1;    }
  40%, 75% { opacity: 0.25; }
  100%     { opacity: 1;    }
}
@keyframes dc04-bubble-send {
  0%        { transform: scale(1);    }
  20%       { transform: scale(1.1);  }
  35%       { transform: scale(1.05); }
  50%, 100% { transform: scale(1);    }
}
.dc04-d1 { fill: currentColor; stroke: none; animation: dc04-dot-blink 1.2s ease-in-out infinite 0s; }
.dc04-d2 { fill: currentColor; stroke: none; animation: dc04-dot-blink 1.2s ease-in-out infinite 0.3s; }
.dc04-d3 { fill: currentColor; stroke: none; animation: dc04-dot-blink 1.2s ease-in-out infinite 0.6s; }
.dc04-bubble { transform-box: fill-box; transform-origin: center; }
.diff-card--04:hover .dc04-bubble { animation: dc04-bubble-send 3s cubic-bezier(0.34, 1.56, 0.64, 1) infinite; }
.diff-card--04:hover .dc04-d1 { animation: dc04-dot-fast 0.6s ease-in-out infinite 0s; }
.diff-card--04:hover .dc04-d2 { animation: dc04-dot-fast 0.6s ease-in-out infinite 0.15s; }
.diff-card--04:hover .dc04-d3 { animation: dc04-dot-fast 0.6s ease-in-out infinite 0.3s; }

/* ── Card 05: sparkle twinkle + second sparkle ───────────────── */
@keyframes dc05-spin  { to { rotate: 360deg; } }
@keyframes dc05-pulse { 0%, 100% { scale: 0.9; } 50% { scale: 1.1; } }
@keyframes dc05-pop   {
  0%        { scale: 0;   opacity: 0;   }
  30%       { scale: 1.2; opacity: 1;   }
  60%, 100% { scale: 0.8; opacity: 0.7; }
}
.dc05-star  { transform-box: fill-box; transform-origin: center; animation: dc05-spin 4s linear infinite, dc05-pulse 2s ease-in-out infinite; }
.dc05-star2 { transform-box: fill-box; transform-origin: center; scale: 0; opacity: 0; }
.diff-card--05:hover .dc05-star  { animation: dc05-spin 2s linear infinite, dc05-pulse 1s ease-in-out infinite; }
.diff-card--05:hover .dc05-star2 { animation: dc05-pop 2s ease-in-out infinite 0.2s; }

/* ── Card 06: arrow flow + trails ───────────────────────────── */
@keyframes dc06-flow {
  0%   { transform: translateX(0);   opacity: 1;   }
  100% { transform: translateX(6px); opacity: 0;   }
}
@keyframes dc06-trail-flow {
  0%   { transform: translateX(0);   opacity: 0.4; }
  100% { transform: translateX(6px); opacity: 0;   }
}
.dc06-main  { animation: dc06-flow       1.4s linear infinite; }
.dc06-trail { animation: dc06-trail-flow 1.4s linear infinite 0.3s; }
.dc06-trail2 { opacity: 0; }
.diff-card--06:hover .dc06-main   { animation: dc06-flow       0.9s linear infinite; }
.diff-card--06:hover .dc06-trail  { animation: dc06-trail-flow 0.9s linear infinite 0.2s; }
.diff-card--06:hover .dc06-trail2 { animation: dc06-trail-flow 0.9s linear infinite 0.4s; }

/* ── Reduced-motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .dc01-dot, .dc01-r1, .dc01-r2, .dc01-r3, .dc01-r4,
  .dc02-top, .dc02-mid, .dc02-bot,
  .dc03-ra, .dc03-rb, .dc03-rc, .dc03-rd,
  .dc04-d1, .dc04-d2, .dc04-d3, .dc04-bubble,
  .dc05-star,
  .dc06-main, .dc06-trail {
    animation: none !important;
    transform: none !important;
    scale: unset !important;
    rotate: unset !important;
    opacity: 1 !important;
  }
  .dc01-r5, .dc05-star2, .dc06-trail2 { opacity: 0 !important; }
  .diff-bento > .diff-card { opacity: 1 !important; translate: none !important; animation: none !important; }
  .diff-card:hover { transform: none !important; }
}

.diff-intro {
  max-width: 720px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--kl-forest-90);
  margin: 36px 0 0 0;
}
.diff-intro p { margin: 0 0 16px 0; }
.diff-intro em { font-family: var(--font-display); font-style: italic; font-weight: 500; color: var(--kl-forest); }

/* ---------- Laura (10) ---------- */
.laura-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 56px;
  margin-top: 56px;
  align-items: start;
}
.laura-photo {
  position: relative;
  align-self: start;
}
.laura-photo__mat {
  background: var(--kl-sage);
  border-radius: 28px;
  padding: 24px;
  overflow: hidden;
}
.laura-photo__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 28%;
}
.laura-h__l1 { font-style: normal; font-weight: 400; }
.laura-h__l2 { display: inline-block; font-style: italic; font-weight: 700; }
.laura-photo .frame-cap {
  position: absolute;
  bottom: 40px;
  left: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--kl-forest);
  background: var(--kl-paper);
  padding: 6px 12px;
  border-radius: var(--r-pill);
}
.laura-text p {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--kl-forest-90);
  margin: 0 0 18px 0;
}
.laura-text p em { font-family: var(--font-display); font-style: italic; font-weight: 500; color: var(--kl-forest); }
.laura-text { max-width: 64ch; }
.laura-photo-wrap { position: sticky; top: 32px; align-self: start; }
.laura-chapter + .laura-pull,
.laura-pull + .laura-chapter { /* spacing handled on .laura-pull */ }
.laura-chapter__head {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(31, 61, 39, 0.60);
  margin: 0 0 14px 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(31, 61, 39, 0.15);
}
.laura-pull {
  margin: 48px 0;
  padding: 32px;
  border-radius: 20px;
}
.laura-pull--sage { background: var(--kl-sage); }
.laura-pull--coral { background: var(--kl-coral); }
.laura-pull p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  color: var(--kl-forest);
  margin: 0;
}
.laura-text .laura-text__close {
  margin-top: 32px;
  font-size: 22px !important;
  line-height: 1.4;
}
.laura-text .laura-text__close em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--kl-forest);
}
@media (max-width: 960px) {
  .laura-photo-wrap { position: static; }
  .laura-pull { margin: 32px 0; padding: 24px; }
  .laura-pull p { font-size: 22px; }
}

/* ==========================================================================
   Section 08 — Laura: choreographed entrance + hover interactions
   ========================================================================== */

/* ── Photo hover ──────────────────────────────────────────────── */
.laura-photo__mat {
  transition: box-shadow 500ms ease-out;
}
.laura-photo__img {
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.laura-photo .frame-cap {
  transition: background-color 300ms ease, transform 300ms ease;
}
.laura-photo:hover .laura-photo__mat {
  box-shadow: 0 24px 48px rgba(31, 61, 39, 0.18), 0 8px 16px rgba(31, 61, 39, 0.08);
}
.laura-photo:hover .laura-photo__img {
  transform: scale(1.02);
}
.laura-photo:hover .frame-cap {
  background: #ffffff;
  transform: scale(1.04);
}

/* ── Scroll-driven text blocks ─────────────────────────────────── */
.laura-enter {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.laura-enter.is-in { opacity: 1; transform: none; }

/* ── Pull-quote differentiated entrances ───────────────────────── */
.laura-pull--sage {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 700ms cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 700ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.laura-pull--sage.is-in  { opacity: 1; transform: scale(1); }
.laura-pull--coral {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 800ms cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.laura-pull--coral.is-in { opacity: 1; transform: translateX(0); }

/* ── Choreographed entrance — initial hidden states ────────────── */
#s08-laura .laura-h__l1,
#s08-laura .laura-h__l2         { opacity: 0; }
#s08-laura .laura-photo__mat    { clip-path: inset(0 100% 0 0 round 28px); opacity: 0; }
#s08-laura .frame-cap           { opacity: 0; transform: translateY(20px); }
#s08-laura .laura-chapter:first-child { opacity: 0; }

/* ── Choreographed entrance — @keyframes ──────────────────────── */
@keyframes laura-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes laura-photo-reveal {
  0%   { clip-path: inset(0 100% 0 0 round 28px); opacity: 0; }
  22%  { opacity: 1; }
  100% { clip-path: inset(0 0%   0 0 round 28px); opacity: 1; }
}
@keyframes laura-badge-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes laura-ch1-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ── Choreographed entrance — triggered on .is-revealed ────────── */
#s08-laura.is-revealed .laura-h__l1 {
  animation: laura-fade-up 600ms cubic-bezier(0.2, 0.8, 0.2, 1) 0ms both;
}
#s08-laura.is-revealed .laura-h__l2 {
  animation: laura-fade-up 600ms cubic-bezier(0.2, 0.8, 0.2, 1) 400ms both;
}
#s08-laura.is-revealed .laura-photo__mat {
  animation: laura-photo-reveal 900ms cubic-bezier(0.77, 0, 0.18, 1) 700ms both;
}
#s08-laura.is-revealed .frame-cap {
  animation: laura-badge-in 500ms ease-out 1100ms both;
}
#s08-laura.is-revealed .laura-chapter:first-child {
  animation: laura-ch1-in 600ms cubic-bezier(0.2, 0.8, 0.2, 1) 1300ms both;
}

/* ── Reduced-motion ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  #s08-laura .laura-h__l1,
  #s08-laura .laura-h__l2,
  #s08-laura .laura-photo__mat,
  #s08-laura .frame-cap,
  #s08-laura .laura-chapter:first-child {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    animation: none !important;
  }
  .laura-enter        { opacity: 1 !important; transform: none !important; transition: none !important; }
  .laura-pull--sage,
  .laura-pull--coral  { opacity: 1 !important; transform: none !important; transition: none !important; }
  .laura-photo:hover .laura-photo__img { transform: none !important; }
  .laura-photo:hover .frame-cap        { transform: none !important; }
}

/* ---------- Offer (11) ---------- */
.offer-orient {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(31, 61, 39, 0.80);
  max-width: 600px;
  margin: 18px 0 48px 0;
}
.offer-value {
  background: rgba(214, 196, 230, 0.30);
  border-radius: 24px;
  padding: 24px;
  max-width: 800px;
  margin: 48px auto 0 auto;
  text-align: center;
}
.offer-value p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--kl-forest);
  margin: 0;
}
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 16px;
  margin-top: 56px;
  align-items: stretch;
}
.plan {
  border-radius: var(--r-card-lg);
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan--annual {
  background: var(--kl-sage);
  border: 1px solid rgba(31, 61, 39, 0.12);
  color: var(--kl-forest);
}
.plan--annual .plan__label { color: var(--kl-forest); opacity: 0.75; }
.plan--annual .plan__feats li { border-top-color: rgba(31, 61, 39, 0.18); color: var(--kl-forest); }
.plan--lifetime {
  background: var(--kl-forest);
  color: var(--kl-paper);
}
.plan__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 32px;
}
.plan--lifetime .plan__label { color: var(--kl-sage); }
.plan__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -2.5px;
  color: var(--kl-forest);
  font-feature-settings: "tnum";
  margin: 0;
}
.plan__price .cur { font-size: 28px; vertical-align: super; letter-spacing: 0; margin-right: 4px; font-weight: 600; }
.plan--lifetime .plan__price { color: var(--kl-paper); font-size: 80px; letter-spacing: -3.5px; }
.plan__sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--kl-forest-70);
  margin: 16px 0 32px 0;
}
.plan--lifetime .plan__sub { color: rgba(250, 247, 240, 0.8); }
.plan__feats { list-style: none; padding: 0; margin: 0 0 32px 0; flex: 1; }
.plan__feats li {
  font-family: var(--font-body);
  font-size: 13.5px;
  padding: 10px 0;
  border-top: 1px solid var(--kl-forest-12);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--kl-forest-90);
}
.plan__feats li:first-child { border-top: none; }
.plan--lifetime .plan__feats li {
  border-top-color: rgba(157, 184, 155, 0.25);
  color: rgba(250, 247, 240, 0.92);
  font-size: 14px;
}
.plan__feats li::before {
  content: "·";
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--kl-forest-55);
  line-height: 0;
}
.plan--lifetime .plan__feats li::before { color: var(--kl-sage); }
.plan__feats li.dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--kl-sage); }
.plan__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--kl-butter);
  color: var(--kl-forest);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 7px 13px 7px 11px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.plan__badge svg { display: block; }

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244, 221, 142, 0); transform: scale(1); }
  50%       { box-shadow: 0 0 0 8px rgba(244, 221, 142, 0.4); transform: scale(1.04); }
}
@keyframes badge-star-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.plan__badge {
  animation: badge-glow 2.5s ease-in-out infinite;
  transition: box-shadow 300ms ease-out, transform 300ms ease-out;
}
.plan__badge svg {
  animation: badge-star-spin 8s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}
/* ---------- Accordion (12, 15) ---------- */
.accordion { margin-top: 56px; max-width: 880px; }
.acc-item {
  border-top: 1px solid var(--kl-forest-12);
}
.acc-item:last-child { border-bottom: 1px solid var(--kl-forest-12); }
.acc-trigger {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 24px 8px;
  margin: 0 -8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--kl-forest);
  line-height: 1.4;
  transition: color var(--t-base), background-color 200ms ease-out;
}
.acc-trigger:hover { color: var(--kl-forest-90); background-color: rgba(31, 61, 39, 0.04); }
.acc-trigger .icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--kl-forest-12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1), background 200ms ease-out;
  color: var(--kl-forest);
}
.acc-trigger:hover .icon { transform: scale(1.08); }
.acc-item.is-open .acc-trigger .icon { transform: rotate(45deg); background: var(--kl-forest); color: var(--kl-paper); }
.acc-item.is-open .acc-trigger:hover .icon { transform: rotate(45deg) scale(1.08); }
.acc-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.3px;
  color: var(--fg-muted);
  margin-right: 16px;
  font-weight: 500;
}
.acc-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 400ms ease, opacity 250ms ease; /* closing: opacity out first, height collapses */
}
.acc-item.is-open .acc-content {
  max-height: 800px;
  opacity: 1;
  transition: max-height 400ms ease, opacity 250ms 100ms ease; /* opening: height expands, then opacity fades in */
}
.acc-content-inner {
  padding: 0 0 28px 0;
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--kl-forest-90);
  max-width: 720px;
}
/* FAQ: subtle tint + rounded bottom on open answers */
.faq-section .acc-content {
  background-color: transparent;
  transition: max-height 400ms ease, opacity 250ms ease, background-color 300ms ease;
}
.faq-section .acc-item.is-open .acc-content {
  background-color: rgba(31, 61, 39, 0.04);
  border-radius: 0 0 12px 12px;
  transition: max-height 400ms ease, opacity 250ms 100ms ease, background-color 300ms ease;
}
.faq-section .acc-content-inner {
  padding: 0 20px 28px 20px;
}

/* ---------- Guarantee (13) ---------- */
.guarantee-card {
  background: var(--kl-butter);
  border-radius: var(--r-card-lg);
  padding: 56px;
  margin-top: 48px;
  box-shadow: 0 8px 24px rgba(31,61,39,0.12), 0 2px 6px rgba(31,61,39,0.06), 0 32px 64px rgba(244,221,142,0.15);
  transition: transform 400ms cubic-bezier(0.34,1.56,0.64,1), box-shadow 400ms ease-out;
}
.guarantee-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(31,61,39,0.16), 0 4px 10px rgba(31,61,39,0.08), 0 40px 72px rgba(244,221,142,0.2);
}
.guarantee-card .t-section-h { max-width: 800px; }
.guarantee-card p {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--kl-forest);
  margin: 18px 0 0 0;
  max-width: 700px;
}
.guarantee-card p em { font-family: var(--font-display); font-style: italic; font-weight: 500; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(31, 61, 39, 0.15);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--kl-forest);
  line-height: 1.4;
}
.trust-item svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--kl-forest); }

/* ---------- Objections (12) — dark grid ---------- */
.obj-section { background: var(--kl-forest); color: var(--kl-paper); }
.obj-section .obj-mono { color: var(--kl-sage); }
.obj-section .obj-h { color: var(--kl-paper); }
.obj-section .obj-h em { color: var(--kl-butter); }
.obj-section .obj-h { font-size: clamp(46px, 5.5vw, 78px); letter-spacing: -1.8px; line-height: 1.04; font-style: normal; font-weight: 400; }
.obj-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.obj-card {
  background: rgba(250, 247, 240, 0.04);
  border: 1px solid rgba(250, 247, 240, 0.12);
  border-radius: 24px;
  overflow: hidden;
  transition: background var(--t-base), border-color var(--t-base);
}
.obj-card:hover { background: rgba(250, 247, 240, 0.06); border-color: rgba(250, 247, 240, 0.18); }
.obj-card.is-open { background: rgba(250, 247, 240, 0.07); border-color: rgba(250, 247, 240, 0.22); }
.obj-card__trigger {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 32px;
  display: grid;
  grid-template-columns: 64px 1fr 40px;
  column-gap: 20px;
  row-gap: 0;
  align-items: start;
  text-align: left;
  cursor: pointer;
  color: var(--kl-paper);
}
.obj-card__num { text-align: left; min-width: 0; grid-column: 1; }
.obj-card__title { text-align: left; min-width: 0; word-break: normal; overflow-wrap: break-word; grid-column: 2; }
.obj-card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -1px;
  color: var(--kl-sage);
  line-height: 1;
  font-feature-settings: "tnum";
  padding-top: 4px;
}
.obj-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.4px;
  color: var(--kl-paper);
}
.obj-card__icon {
  grid-column: 3;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 100px;
  border: 1px solid rgba(250, 247, 240, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--kl-paper);
  transition: transform var(--t-base), background var(--t-base), color var(--t-base);
  margin-top: 2px;
}
.obj-card.is-open .obj-card__icon { transform: rotate(45deg); background: var(--kl-butter); color: var(--kl-forest); border-color: var(--kl-butter); }
.obj-card .acc-content { max-height: 0; overflow: hidden; transition: max-height 400ms var(--ease-soft); }
.obj-card.is-open .acc-content { max-height: 600px; }
.obj-card__answer {
  padding: 0 32px 32px 32px;
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(250, 247, 240, 0.82);
  max-width: 60ch;
}
@media (max-width: 760px) {
  .obj-grid { grid-template-columns: 1fr; }
}

/* ---------- Trust pills (13) ---------- */
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(31, 61, 39, 0.12);
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  background: var(--kl-forest);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--kl-paper);
  cursor: default;
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 300ms ease-out, opacity 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.trust-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(31, 61, 39, 0.12);
}
.trust-pill.pill-hidden {
  opacity: 0;
  transform: translateY(12px);
}
.trust-pill svg { width: 14px; height: 14px; color: var(--kl-paper); }

/* ---------- Urgency (14) ---------- */
.escalate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin: 40px 0;
}
.esc-card {
  border-radius: 28px;
  padding: 32px;
  border: 0;
  background: var(--kl-paper);
  color: var(--kl-forest);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 200px;
}
.esc--now { background: var(--kl-butter); border: 2px solid var(--kl-forest); overflow: visible; }
.esc--next { background: var(--kl-coral); opacity: 0.6; }
.esc--saas { background: var(--kl-lilac); opacity: 0.4; color: var(--kl-forest); }

/* HOJE badge — floats over top border of R$297 card */
span.kh-pricing-today-badge {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  background: var(--kl-forest);
  color: var(--kl-paper);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
  pointer-events: none;
}
span.kh-pricing-today-badge.reveal {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
  transition: opacity 600ms var(--ease-reveal), transform 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
span.kh-pricing-today-badge.reveal.is-in {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.esc__lab {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--kl-forest);
  opacity: 0.7;
}
.esc__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  letter-spacing: -2px;
  line-height: 1;
  margin-top: auto;
  color: var(--kl-forest);
}
.esc--saas .esc__price { color: var(--kl-forest); }
.esc__per { font-family: var(--font-display); font-weight: 500; font-size: 22px; letter-spacing: -1px; opacity: 0.7; }
.esc__sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--kl-forest-90);
  opacity: 0.85;
}
@media (max-width: 760px) {
  .escalate-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ (15) ---------- */
.faq-section { background: linear-gradient(180deg, var(--kl-paper) 0%, rgba(201, 194, 220, 0.40) 100%); }
.faq-search {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 40px 0 24px 0;
  max-width: 520px;
  padding: 14px 20px;
  background: var(--kl-paper);
  border: 1px solid var(--kl-forest-12);
  border-radius: 100px;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.faq-search:focus-within { border-color: var(--kl-forest); box-shadow: 0 0 0 4px rgba(31, 61, 39, 0.06); }
.faq-search svg { width: 16px; height: 16px; color: var(--kl-forest-90); flex-shrink: 0; }
.faq-search input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--kl-forest);
}
.faq-search input::placeholder { color: var(--kl-forest-90); opacity: 0.55; }
.acc-group {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--kl-forest);
  opacity: 0.65;
  margin: 32px 0 4px 0;
  padding-bottom: 8px;
}
.accordion--grouped .acc-group:first-child { margin-top: 16px; }


.urgency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 40px 0;
}
.urgency-card {
  border-radius: var(--r-card-lg);
  padding: 32px;
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--kl-forest);
}
.urgency-card.butter { background: var(--kl-butter); }
.urgency-card.sage { background: var(--kl-sage); }
.urgency-card .lab {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--kl-forest);
  margin-bottom: 14px;
}
.urgency-card .price-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.8px;
  color: var(--kl-forest);
}
.urgency__body {
  max-width: 720px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--kl-forest-90);
  margin: 36px 0 0 0;
}
.urgency__body em { font-family: var(--font-display); font-style: italic; font-weight: 500; color: var(--kl-forest); }
.urgency__close {
  max-width: 720px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--kl-forest-90);
  margin-top: 16px;
}
.urgency__close em { font-family: var(--font-display); font-style: italic; font-weight: 500; color: var(--kl-forest); }

/* ---------- Final CTA (16) — Cinábrio ---------- */
.final-cta { padding: 128px 0; text-align: center; }
.final-cta--cinnabar { background: var(--kl-cinnabar); color: var(--kl-paper); }
.final-cta--cinnabar .section-mono { color: var(--kl-paper); opacity: 0.6; }
.final-cta--cinnabar .t-section-h { color: var(--kl-paper); }
.final-cta--cinnabar .t-section-h em { color: var(--kl-paper); font-style: italic; font-weight: 700; }
.final-cta .t-section-h { margin: 0 auto; }
.final-cta__body { max-width: 680px; margin: 36px auto 0 auto; }
.final-cta__body p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--kl-paper);
  margin: 0 0 18px 0;
}
.final-cta__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: var(--kl-paper);
  margin: 48px auto 48px auto;
  max-width: 720px;
}
.final-cta__tagline em { font-style: italic; font-weight: 700; }
.final-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 100px;
  background: var(--kl-paper);
  color: var(--kl-forest);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.2px;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 350ms ease-out, background-color 200ms ease-out;
}
.final-cta__btn:hover { transform: scale(1.03); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28); }
.final-cta__btn:active { transform: scale(0.98); transition: transform 150ms ease-out, box-shadow 150ms ease-out; }
.final-cta__btn .arrow { color: var(--kl-forest); transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1); }
.final-cta__btn:hover .arrow { transform: translateX(6px); }
.final-cta__micro {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--kl-paper);
  opacity: 0.6;
  margin-top: 24px;
}

/* ---------- P.S. (17) ---------- */
.ps-section { padding: 120px 0 96px 0; }
.ps { max-width: 640px; margin: 0 auto; }
.ps__rule { width: 60px; height: 1.5px; background: rgba(31, 61, 39, 0.20); margin: 0 auto 48px auto; }
.ps__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--kl-forest);
  opacity: 0.6;
  margin: 0 0 32px 0;
}
.ps p {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: -0.2px;
  color: var(--kl-forest);
  margin: 0 0 32px 0;
}
.ps__lede { font-weight: 500; }
.ps__close { margin-top: 64px !important; margin-bottom: 0 !important; }
.ps__close em { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 30px; line-height: 1.2; letter-spacing: -0.8px; color: var(--kl-forest); }

/* ---------- Footer (18) ---------- */
.footer {
  border-top: 1px solid rgba(31, 61, 39, 0.15);
  padding: 32px 0;
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__brand .kl-logo-wrap { font-size: 22px; }
.footer__tag {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 8px;
}
.footer__right { text-align: right; }
.footer__copy { font-family: var(--font-body); font-size: 13px; color: var(--kl-forest-70); }
.footer__opmono {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 6px;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms var(--ease-reveal), transform 600ms var(--ease-reveal);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 500ms var(--ease-reveal), transform 500ms var(--ease-reveal);
}
.reveal-stagger.is-in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: 400ms; }
.reveal-stagger.is-in > *:nth-child(7) { transition-delay: 480ms; }
.reveal-stagger.is-in > *:nth-child(n+8) { transition-delay: 560ms; }

/* hero load reveal */
.hero-rise { opacity: 0; transform: translateY(8px); transition: opacity 600ms var(--ease-reveal), transform 600ms var(--ease-reveal); }
.hero-rise.is-in { opacity: 1; transform: translateY(0); }
.hero h1.hero-rise { transform: translateY(8px) scale(0.96); transform-origin: left center; }
.hero h1.hero-rise.is-in { transform: translateY(0) scale(1); }

/* ---------- Scroll-driven clip-rise reveal — JS sets inline clip-path on scroll ---------- */
.kl-clip-reveal {
  clip-path: inset(100% 0 0 0);
  will-change: clip-path;
}
.guarantee-card.kl-clip-reveal {
  clip-path: inset(100% 0 0 0 round 24px);
}
.esc-card.kl-clip-reveal {
  clip-path: inset(100% 0 0 0 round 28px);
}
.kl-clip-inner {
  opacity: 0;
  will-change: opacity;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-stagger > *, .hero-rise { animation: none !important; opacity: 1 !important; transform: none !important; }
  .kh-manifesto-video { opacity: 1 !important; transform: none !important; transition: none !important; }
  .kh-video-play-btn { animation: none !important; }
  .float-pill--tl, .float-pill--br { animation: none !important; opacity: 1 !important; }
  .float-pill--tl { transform: rotate(-6deg) !important; }
  .float-pill--br { transform: rotate(4deg) !important; }
  #scroll-indicator, .scroll-indicator .chev { animation: none !important; opacity: 1 !important; transform: none !important; }
  /* Clip-path reveals: show immediately */
  .kl-clip-reveal,
  .guarantee-card.kl-clip-reveal,
  .esc-card.kl-clip-reveal { clip-path: none !important; will-change: auto !important; }
  .kl-clip-inner { opacity: 1 !important; will-change: auto !important; }
  /* HOJE badge: appear at final position instantly, no scale animation */
  span.kh-pricing-today-badge.reveal { opacity: 1 !important; transform: translate(-50%, -50%) scale(1) !important; }
  /* Blur-reveal words: show all immediately */
  .kh-blur-word { filter: none !important; opacity: 1 !important; transform: translateY(0) !important; transition: none !important; }
  /* Timeline: fully drawn, traveling dot shown at bottom immediately */
  .day-grid { --tl-progress: 1; }
  .day-tl-dot { animation: none !important; opacity: 1 !important; }
  /* RECOMENDADO badge: no pulse, no star rotation */
  .plan__badge { animation: none !important; }
  .plan__badge svg { animation: none !important; }
  /* Section 03 bento cards: visible immediately, no stagger */
  .bento.reveal-stagger > .bento-card { opacity: 1 !important; transform: none !important; transition: box-shadow 400ms ease-out !important; }
  /* Trust pills: visible immediately (JS skips stagger), hover shadow only */
  .trust-pill:hover { transform: none !important; }
  /* Benefit card hover: shadow intensifies, no transform */
  .benefit-card:hover { transform: none !important; }
  /* Bento card hover: shadow only, no transform */
  .bento-card:hover, .bento.reveal-stagger.is-in > .bento-card:hover { transform: none !important; }
  /* CTA: no scale or arrow translate, shadow still appears */
  .btn:hover, .btn:active, .final-cta__btn:hover, .final-cta__btn:active { transform: none !important; }
  .btn:hover .arrow, .final-cta__btn:hover .arrow { transform: none !important; }
  /* Accordion: instant open/close, no icon scale on hover */
  .acc-content { transition: none !important; }
  .acc-item.is-open .acc-content { transition: none !important; }
  .acc-trigger .icon, .acc-item.is-open .acc-trigger .icon,
  .acc-item.is-open .acc-trigger:hover .icon { transition: none !important; }
  .acc-trigger:hover .icon { transform: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .container { padding-left: 32px; padding-right: 32px; }
  .section { padding-top: 96px; padding-bottom: 96px; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__viz { order: -1; max-width: 480px; }
  .laura-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .day-grid { grid-template-columns: 1fr; column-gap: 24px; row-gap: 64px; }
  .day-time { position: static; flex-direction: row; padding-top: 0; }
  .offer-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .urgency-grid { grid-template-columns: 1fr; }
  .bento-card.b-forest, .bento-card.b-coral, .bento-card.b-butter, .bento-card.b-pendency, .bento-card.b-lilac { grid-column: span 6; }
  .diff-item { grid-template-columns: 1fr; gap: 12px; }
  .diff-num strong { font-size: 48px; }
  .day-mockup__body { padding: 16px; }
  .mock-kanban { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .container { padding-left: 24px; padding-right: 24px; }
  .section { padding-top: 80px; padding-bottom: 80px; }
  .kl-nav { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .laura-grid { grid-template-columns: 1fr; }
  .compare-card, .bento-card, .plan { padding: 28px; }
  .guarantee-card { padding: 36px 28px; }
  .trust-row { grid-template-columns: 1fr; }
  .bento-card.b-forest { grid-column: span 12; }
  .bento-card.b-coral, .bento-card.b-butter, .bento-card.b-pendency, .bento-card.b-lilac { grid-column: span 12; }
  .bento-card .b-num { font-size: 72px; }
  .benefit-card.feature { grid-column: span 1; }
}

@media (max-width: 480px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .section { padding-top: 64px; padding-bottom: 64px; }
  .hero { padding-top: 40px; padding-bottom: 80px; }
  .hero h1 { letter-spacing: -2px; }
  .hero__cta-row { flex-direction: column; align-items: stretch; }
  .hero__cta-row .btn { justify-content: center; }
  .float-pill--tl { left: -8px; top: -10px; }
  .float-pill--br { right: -8px; bottom: -10px; }
  .compare-card, .bento-card, .plan, .guarantee-card { padding: 24px; }
  .ps p { font-size: 18px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__right { text-align: left; }
  .mock-kanban { grid-template-columns: repeat(2, 1fr); }
  .day-mockup__body { padding: 14px; }
  .acc-trigger { font-size: 15px; gap: 12px; padding: 18px 0; }
  .acc-num { display: none; }
}
