/* ================================================================
   BookyAI Sales Page — global styles
   Palette modeled on reference hero: deep teal-navy + neon lime
   ================================================================ */

:root {
  --bg:        #04121b;
  --bg-deep:   #020a10;
  --bg-card:   #071c28;
  --ink:       #eef7f2;
  --ink-muted: #9db4ae;
  --lime:      #cdf549;
  --lime-soft: #e4ff8a;
  --lime-dim:  rgba(205, 245, 73, 0.14);
  --line:      rgba(205, 245, 73, 0.12);
  --line-soft: rgba(255, 255, 255, 0.07);
  --radius:    18px;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; }

a { color: inherit; text-decoration: none; }

b, strong { color: var(--ink); }

/* ---------------- Buttons ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  color: #06130b;
  background: var(--lime);
  border-radius: 999px;
  padding: 18px 34px;
  font-size: 18px;
  letter-spacing: 0.01em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: 0 0 0 6px rgba(205,245,73,.08), 0 12px 40px rgba(205,245,73,.25);
}
.btn:hover {
  background: var(--lime-soft);
  transform: translateY(-2px);
  box-shadow: 0 0 0 6px rgba(205,245,73,.12), 0 16px 50px rgba(205,245,73,.35);
}
.btn .btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  background: #06130b;
  color: var(--lime);
  border-radius: 50%;
  font-size: 15px;
}
.btn-small { padding: 11px 20px; font-size: 15px; box-shadow: none; }
.btn-small .btn-arrow { width: 24px; height: 24px; font-size: 13px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink-muted);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 17px 28px;
  transition: color .15s ease, border-color .15s ease;
}
.btn-ghost:hover { color: var(--lime); border-color: var(--line); }

/* ---------------- Header ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 10, 16, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.logo-mark {
  display: inline-flex;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.logo-mark img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.logo-accent { color: var(--lime); }

.main-nav { display: flex; gap: 34px; }
.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-muted);
  transition: color .15s ease;
}
.main-nav a:hover { color: var(--lime); }

/* ---------------- Hero ---------------- */

.hero {
  position: relative;
  padding: 92px 0 100px;
  background:
    radial-gradient(1100px 520px at 50% -8%, rgba(205,245,73,.10), transparent 60%),
    radial-gradient(900px 600px at 50% 108%, rgba(205,245,73,.07), transparent 55%),
    var(--bg);
  overflow: hidden;
}

/* perspective wireframe grids, like the reference */
.hero-grid {
  position: absolute;
  width: 560px;
  height: 420px;
  background-image:
    linear-gradient(rgba(205,245,73,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(205,245,73,.18) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .35;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(closest-side, #000, transparent);
          mask-image: radial-gradient(closest-side, #000, transparent);
}
.hero-grid-left  { bottom: -60px; left: -180px;  transform: perspective(600px) rotateX(55deg) rotateZ(-12deg); }
.hero-grid-right { bottom: -60px; right: -180px; transform: perspective(600px) rotateX(55deg) rotateZ(12deg); }

.hero-glow {
  position: absolute;
  top: -220px; left: 50%;
  width: 760px; height: 460px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(205,245,73,.16), transparent);
  pointer-events: none;
}

/* wireframe rings drifting in the hero background */
.hero-ring {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  height: auto;
}
.hero-ring-left {
  width: 440px;
  left: -190px;
  top: 24%;
  opacity: .26;
  animation: ring-drift-l 13s ease-in-out infinite alternate;
}
.hero-ring-right {
  width: 360px;
  right: 0;
  top: 46%;
  opacity: .3;
  animation: ring-drift-r 16s ease-in-out infinite alternate;
}
@keyframes ring-drift-l {
  from { transform: translateY(0) rotate(0deg); }
  to   { transform: translateY(-26px) rotate(7deg); }
}
@keyframes ring-drift-r {
  from { transform: translateY(0) rotate(0deg); }
  to   { transform: translateY(22px) rotate(-5deg); }
}
@media (prefers-reduced-motion: reduce) { .hero-ring { animation: none; } }

.hero-inner { z-index: 1; }

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  background: var(--lime-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
}

.hero-headline {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.headline-line { display: block; text-wrap: balance; }
.headline-accent {
  background: linear-gradient(100deg, var(--lime) 10%, var(--lime-soft) 55%, #8fd13f 95%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px rgba(205,245,73,.25);
}

.hero-sub {
  max-width: 640px;
  font-size: 19px;
  color: var(--ink-muted);
  margin-bottom: 22px;
  text-wrap: balance;
}

.hero-pipeline {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 0;
  margin-bottom: 40px;
}
.hero-pipeline li {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
}
.hero-pipeline li + li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px rgba(205,245,73,.7);
  margin: 0 16px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}
.cta-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 12px 18px 12px 12px;
  transition: border-color .15s ease, transform .15s ease;
}
.cta-badge:hover { border-color: var(--line); transform: translateY(-2px); }
.badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 42px; height: 42px;
  border-radius: 11px;
  color: var(--lime);
  background: var(--lime-dim);
  border: 1px solid var(--line);
  box-shadow: 0 0 18px rgba(205,245,73,.12) inset, 0 0 14px rgba(205,245,73,.08);
}
.badge-icon svg { width: 22px; height: 22px; }
.badge-text { display: flex; flex-direction: column; line-height: 1.3; }
.badge-text b {
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
}
.badge-text small { font-size: 12.5px; color: var(--ink-muted); }

/* ---------------- VSL placeholder ---------------- */

.hero-vsl {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 6px 0 40px;
}
.vsl-frame {
  position: relative;
  z-index: 2;
  border-radius: 22px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(205,245,73,.28), rgba(205,245,73,.06));
  box-shadow:
    0 30px 90px rgba(0,0,0,.55),
    0 0 90px rgba(205,245,73,.12);
}
.vsl-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background:
    radial-gradient(620px 320px at 50% 0%, rgba(205,245,73,.10), transparent 65%),
    linear-gradient(180deg, #0a2231 0%, #04121b 100%);
  border: 1px solid rgba(205,245,73,.18);
}
.vsl-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px; height: 92px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #06130b;
  background: var(--lime);
  box-shadow: 0 0 0 14px rgba(205,245,73,.10), 0 0 60px rgba(205,245,73,.45);
  transition: transform .15s ease, box-shadow .15s ease;
  animation: vsl-pulse 2.4s ease-in-out infinite;
}
.vsl-play:hover { transform: scale(1.07); }
.vsl-play svg { width: 38px; height: 38px; margin-left: 4px; }
@keyframes vsl-pulse {
  0%, 100% { box-shadow: 0 0 0 10px rgba(205,245,73,.10), 0 0 50px rgba(205,245,73,.35); }
  50%      { box-shadow: 0 0 0 22px rgba(205,245,73,.05), 0 0 70px rgba(205,245,73,.5); }
}
.vsl-caption {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .02em;
  color: var(--ink-muted);
}

/* ---------------- App mockup ---------------- */

.hero-app { position: relative; width: 100%; max-width: 980px; margin-top: 64px; }

.app-window {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #0a2231 0%, #061722 100%);
  border: 1px solid rgba(205,245,73,.22);
  border-radius: 22px;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.4),
    0 30px 90px rgba(0,0,0,.55),
    0 0 90px rgba(205,245,73,.10);
  overflow: hidden;
  text-align: left;
}

.app-titlebar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(2,10,16,.45);
}
.tb-dots { display: flex; gap: 7px; }
.tb-dots i {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
}
.tb-dots i:first-child { background: rgba(205,245,73,.7); }
.app-name {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-muted);
}
.app-tabs { margin-left: auto; display: flex; gap: 6px; }
.app-tab {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-muted);
  padding: 6px 14px;
  border-radius: 999px;
}
.app-tab.active {
  color: #06130b;
  background: var(--lime);
  font-weight: 600;
}

.app-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 22px;
}

.app-card {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 18px;
}
.app-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.app-card-head h4 {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}
.pill {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-muted);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 4px 10px;
}
.pill-done { color: #06130b; background: var(--lime); border-color: transparent; }
.pill-live { color: var(--lime); border-color: var(--line); background: var(--lime-dim); }

.app-list { list-style: none; font-size: 13.5px; color: var(--ink-muted); }
.app-list li { display: flex; align-items: center; gap: 9px; padding: 6px 0; }
.app-list b { color: var(--lime); font-weight: 600; }
.dot { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.dot-lime { background: var(--lime); box-shadow: 0 0 8px rgba(205,245,73,.6); }
.app-title-line {
  font-family: var(--font-head);
  color: var(--ink);
  font-size: 13.5px;
  border-top: 1px dashed var(--line-soft);
  margin-top: 8px;
  padding-top: 12px !important;
}

.app-progress { list-style: none; font-size: 13px; color: var(--ink-muted); }
.app-progress li { padding: 7px 0; }
.app-progress span { display: block; margin-bottom: 6px; }
.bar {
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #8fd13f, var(--lime));
  box-shadow: 0 0 12px rgba(205,245,73,.5);
}

.app-export { display: flex; gap: 14px; align-items: stretch; }
.cover-thumb {
  flex: none;
  width: 86px;
  border-radius: 8px;
  background: linear-gradient(160deg, #cdf549 0%, #5a8f2a 120%);
  color: #06130b;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.45);
}
.cover-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 10.5px;
  line-height: 1.25;
  letter-spacing: .04em;
}
.cover-author { font-size: 8.5px; font-weight: 600; letter-spacing: .18em; }
.format-chips { display: flex; flex-wrap: wrap; gap: 7px; align-content: flex-start; }
.chip {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--lime);
  background: var(--lime-dim);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 5px 10px;
  height: fit-content;
}
.export-note { width: 100%; font-size: 12px; color: var(--ink-muted); margin-top: 2px; }

.app-shadow {
  position: absolute;
  left: 8%; right: 8%; bottom: -26px;
  height: 60px;
  background: radial-gradient(closest-side, rgba(205,245,73,.22), transparent);
  filter: blur(14px);
  z-index: 1;
}

/* ---------------- Proof ticker (section seam) ---------------- */

/* the band sits ON the boundary: half over the hero, half over the next section */
.ticker-band {
  position: relative;
  z-index: 6;
  margin: -54px 0;
  padding: 22px 0;
  overflow: hidden; /* clips the rotated band's horizontal overshoot */
  pointer-events: none;
}
.ticker-band .proof-ticker { pointer-events: auto; }

.proof-ticker {
  position: relative;
  transform: rotate(-1.4deg) scale(1.03);
  background: linear-gradient(95deg, #b8e335 0%, var(--lime) 45%, var(--lime-soft) 100%);
  overflow: hidden;
  z-index: 3;
}
.proof-ticker::before,
.proof-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.proof-ticker::before { left: 0;  background: linear-gradient(90deg, rgba(184,227,53,.9), transparent); }
.proof-ticker::after  { right: 0; background: linear-gradient(270deg, rgba(228,255,138,.9), transparent); }

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}
.proof-ticker:hover .ticker-track { animation-play-state: paused; }

.ticker-group {
  display: flex;
  align-items: center;
  flex: none;
  padding: 15px 0;
}
.ticker-item {
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #06130b;
  white-space: nowrap;
}
.ticker-star {
  display: inline-flex;
  color: #06130b;
  margin: 0 26px;
  animation: star-spin 6s linear infinite;
}
.ticker-star svg { width: 15px; height: 15px; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes star-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .ticker-star { animation: none; }
}

/* ---------------- Sparkle accents ---------------- */

.sparkle {
  position: absolute;
  width: 110px;
  height: auto;
  pointer-events: none;
  z-index: 2;
  animation: sparkle-pulse 3.8s ease-in-out infinite;
}
.sparkle.sp-slow  { animation-duration: 5.6s; animation-delay: 1.4s; }
.sparkle.sp-small { width: 78px; }
@keyframes sparkle-pulse {
  0%, 100% { opacity: .4;  transform: scale(.94); }
  50%      { opacity: .95; transform: scale(1); }
}
@media (max-width: 900px) { .sparkle { width: 60px; } .sparkle.sp-small { width: 46px; } }
@media (prefers-reduced-motion: reduce) { .sparkle { animation: none; opacity: .7; } }

/* ---------------- Shared section pieces ---------------- */

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}
.section-title {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 860px;
  text-wrap: balance;
}
.title-dim { color: var(--ink-muted); }
.eyebrow-neutral {
  color: var(--ink-muted);
  background: rgba(255,255,255,.04);
  border-color: var(--line-soft);
}
.eyebrow-neutral .eyebrow-dot { background: var(--ink-muted); box-shadow: none; }
.bp-desktop { display: block; content: ''; }

/* ---------------- Problem section ---------------- */

.problem {
  position: relative;
  padding: 84px 0 90px;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(255,255,255,.03), transparent 60%),
    var(--bg-deep);
}
.problem .section-head { margin-bottom: 40px; }

.problem-split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto 64px;
}

.problem-story { text-align: left; }
.problem-story p { margin-bottom: 18px; color: var(--ink-muted); font-size: 17.5px; }
.problem-story b { color: var(--ink); font-weight: 600; }

/* nagging-thought pills */
.doubt-cloud {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 22px 0 26px;
}
.doubt-cloud li {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 9px 16px;
  transition: transform .15s ease, border-color .15s ease, color .15s ease;
}
.doubt-cloud li:nth-child(odd)  { transform: rotate(-1.6deg); }
.doubt-cloud li:nth-child(even) { transform: rotate(1.4deg); }
.doubt-cloud li:nth-child(3)    { transform: rotate(2.2deg); }
.doubt-cloud li:hover { transform: rotate(0) scale(1.04); border-color: rgba(255,138,122,.45); color: #ff8a7a; }

/* the draft that died — paper mockup */
.doc-mock {
  position: relative;
  transform: rotate(-2deg);
  filter: drop-shadow(0 24px 50px rgba(0,0,0,.5));
}
.doc-titlebar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1a2530;
  border-radius: 14px 14px 0 0;
  padding: 12px 16px;
}
.doc-dots { display: flex; gap: 6px; }
.doc-dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.15); }
.doc-dots i:first-child { background: #ff8a7a; }
.doc-filename {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.doc-paper {
  background: linear-gradient(180deg, #f7f4ea 0%, #efeadd 100%);
  border-radius: 0 0 14px 14px;
  padding: 30px 30px 38px;
}
.doc-chapter {
  font-family: 'Georgia', serif;
  font-size: 21px;
  font-weight: 700;
  color: #1d2730;
  margin-bottom: 14px;
}
.doc-line-text {
  font-family: 'Georgia', serif;
  font-size: 15px;
  color: #3a4750;
  margin-bottom: 16px;
}
.doc-cursor {
  display: inline-block;
  width: 2px; height: 17px;
  background: #1d2730;
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: cursor-blink 1.1s steps(1) infinite;
}
@keyframes cursor-blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
.doc-skeleton {
  display: block;
  height: 9px;
  border-radius: 4px;
  background: rgba(29,39,48,.10);
  margin-bottom: 12px;
}
.doc-skeleton.w90 { width: 90%; }
.doc-skeleton.w85 { width: 85%; }
.doc-skeleton.w75 { width: 75%; }
.doc-skeleton.w40 { width: 40%; }
.doc-skeleton.w0  { width: 0; background: transparent; }
.doc-stamp {
  position: absolute;
  right: -14px; bottom: 22px;
  transform: rotate(-8deg);
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #e05b4b;
  border: 2px solid #e05b4b;
  border-radius: 8px;
  padding: 7px 12px;
  background: rgba(247,244,234,.92);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

.fail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
}

.fail-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  transition: transform .15s ease, border-color .15s ease;
}
.fail-card:nth-child(1) { transform: rotate(-1.2deg); }
.fail-card:nth-child(2) { transform: rotate(0.8deg) translateY(10px); }
.fail-card:nth-child(3) { transform: rotate(1.6deg); }
.fail-card:hover { transform: rotate(0) translateY(-4px); border-color: rgba(255,138,122,.25); }

.fail-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.fail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 42px; height: 42px;
  border-radius: 11px;
  color: var(--ink-muted);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-soft);
}
.fail-icon svg { width: 22px; height: 22px; }
.fail-head h3 { font-size: 18px; font-weight: 700; }

.fail-result {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: #ff8a7a;
  margin-bottom: 10px;
}
.fail-card > p:not(.fail-result) {
  font-size: 15px;
  color: var(--ink-muted);
  margin-bottom: 18px;
}

.fail-tag {
  margin-top: auto;
  align-self: flex-start;
  transform: rotate(-3deg);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #ff8a7a;
  background: rgba(255,122,107,.06);
  border: 1.5px solid rgba(255,122,107,.35);
  border-radius: 8px;
  padding: 6px 13px;
}

.problem-closer {
  max-width: 640px;
  margin: 52px auto 0;
  text-align: center;
  font-size: 19px;
  color: var(--ink-muted);
}
.problem-closer b { color: var(--ink); font-weight: 600; }

/* ---------------- 3D book shelf slider ---------------- */

.shelf {
  position: relative;
  padding: 80px 0 90px;
  background:
    radial-gradient(1000px 480px at 50% 110%, rgba(205,245,73,.08), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.shelf-head { margin-bottom: 56px; }

.shelf-stage {
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.shelf-row {
  position: relative;
  width: 100%;
  overflow: visible;
}
/* edge fades so books melt into the page background */
.shelf-row::before,
.shelf-row::after {
  content: '';
  position: absolute;
  top: -40px; bottom: -40px;
  width: 160px;
  z-index: 5;
  pointer-events: none;
}
.shelf-row::before { left: 0;  background: linear-gradient(90deg, var(--bg), transparent); }
.shelf-row::after  { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }

.shelf-track {
  display: flex;
  width: max-content;
  animation: shelf-scroll 55s linear infinite;
}
.shelf-row-rtl .shelf-track {
  animation: shelf-scroll-back 62s linear infinite;
}
.shelf-row:hover .shelf-track { animation-play-state: paused; }

.shelf-group {
  display: flex;
  align-items: flex-end;
  flex: none;
  gap: 58px;
  padding-right: 58px;
}

@keyframes shelf-scroll      { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes shelf-scroll-back { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* --- one 3D book --- */

.book-wrap {
  position: relative;
  flex: none;
  perspective: 900px;
  padding-bottom: 18px;
}

.book {
  --bw: 158px;            /* cover width  */
  --bh: 237px;            /* cover height */
  --bd: 34px;             /* book depth   */
  position: relative;
  width: var(--bw);
  height: var(--bh);
  transform-style: preserve-3d;
  transform: rotateY(-26deg);
  transition: transform .45s cubic-bezier(.22, .68, .35, 1.1);
}
.book-wrap:hover .book {
  transform: rotateY(-9deg) translateY(-12px) scale(1.05);
}

.bk-front {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px 8px 8px 3px;
  transform: translateZ(calc(var(--bd) / 2));
  box-shadow: inset 4px 0 10px rgba(0,0,0,.18);
}
/* spine hinge + glossy sheen over the cover */
.book::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 3px 8px 8px 3px;
  transform: translateZ(calc(var(--bd) / 2 + 0.4px));
  background:
    linear-gradient(90deg,
      rgba(0,0,0,.28) 0%, rgba(255,255,255,.14) 2.5%, rgba(0,0,0,.16) 5%, transparent 7%),
    linear-gradient(118deg, transparent 38%, rgba(255,255,255,.13) 47%, transparent 56%);
  pointer-events: none;
}
.bk-pages {
  position: absolute;
  top: 4px;
  right: calc(var(--bd) / -2);
  width: var(--bd);
  height: calc(100% - 8px);
  transform: rotateY(90deg);
  background:
    repeating-linear-gradient(90deg,
      #f1eddc 0px, #f1eddc 2px,
      #d9d4bf 2px, #d9d4bf 3px);
  border-radius: 0 6px 6px 0;
}
.bk-back {
  position: absolute;
  inset: 0;
  border-radius: 8px 3px 3px 8px;
  background: #131c24;
  transform: translateZ(calc(var(--bd) / -2)) rotateY(180deg);
}

.book-shadow {
  position: absolute;
  left: 0; right: -26px; bottom: 2px;
  height: 22px;
  background: radial-gradient(closest-side, rgba(0,0,0,.55), transparent);
  filter: blur(7px);
  transform: skewX(-18deg);
  transition: opacity .45s ease, transform .45s ease;
}
.book-wrap:hover .book-shadow {
  transform: skewX(-10deg) scaleX(1.05);
  opacity: .75;
}

@media (prefers-reduced-motion: reduce) {
  .shelf-track { animation: none; }
}

/* ---------------- Agitation: 20/80 + job stickers ---------------- */

.agitation {
  position: relative;
  padding: 70px 0 96px;
  background: var(--bg-deep);
}
.agitation .section-head { margin-bottom: 26px; }

.agitation-lead {
  max-width: 620px;
  margin: 0 auto 44px;
  text-align: center;
}
.agitation-lead p { color: var(--ink-muted); font-size: 17.5px; }

.split-bar-wrap { max-width: 880px; margin: 0 auto 64px; }

.split-legend {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-muted);
}
.legend-item b { color: var(--ink); }
.legend-dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.legend-lime  { background: var(--lime);  box-shadow: 0 0 8px rgba(205,245,73,.7); }
.legend-coral { background: #ff8a7a; box-shadow: 0 0 8px rgba(255,138,122,.5); }

.split-bar {
  display: flex;
  height: 58px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: rgba(255,255,255,.03);
}
.seg {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 0%;
  overflow: hidden;
  transition: flex-basis 1.4s cubic-bezier(.25, .8, .25, 1);
}
.seg span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .5s ease 1s;
}
.in-view .seg span { opacity: 1; }
.seg-write {
  position: relative;
  background: linear-gradient(90deg, #9ed13f, var(--lime));
  color: #06130b;
  animation: seg-breathe 3s ease-in-out infinite;
}
/* glossy sweep across the lime segment */
.seg-write::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 55%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,.5) 50%, transparent 80%);
  animation: seg-shine 2.8s ease-in-out infinite;
}
.seg-rest {
  position: relative;
  background: rgba(255,138,122,.04);
  color: #ff8a7a;
  border-left: 2px solid rgba(255,138,122,.4);
}
/* seamless marching stripes: square tile + GPU transform */
.seg-rest::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: calc(100% + 56px);
  background-image: linear-gradient(-45deg,
    rgba(255,138,122,.14) 25%, transparent 25%,
    transparent 50%, rgba(255,138,122,.14) 50%,
    rgba(255,138,122,.14) 75%, transparent 75%);
  background-size: 56px 56px;
  animation: seg-stripes 1.5s linear infinite;
  pointer-events: none;
}
.seg span { position: relative; z-index: 1; }
.in-view .seg-write { flex-basis: 20%; }
.in-view .seg-rest  { flex-basis: 80%; }

@keyframes seg-stripes {
  from { transform: translateX(-56px); }
  to   { transform: translateX(0); }
}
@keyframes seg-shine {
  0%       { left: -60%; }
  60%, 100% { left: 110%; }
}
@keyframes seg-breathe {
  0%, 100% { box-shadow: 0 0 18px rgba(205,245,73,.25); }
  50%      { box-shadow: 0 0 38px rgba(205,245,73,.55); }
}
@media (prefers-reduced-motion: reduce) {
  .seg-write, .seg-rest::before { animation: none; }
  .seg-write::after { display: none; }
}

/* sticker badges */
.job-stickers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px 26px;
  max-width: 1020px;
  margin: 0 auto;
}
.job-sticker {
  display: flex;
  flex-direction: column;
  width: 216px;
  border-radius: 12px;
  overflow: hidden;
  background: #f7f4ea;
  box-shadow: 0 14px 30px rgba(0,0,0,.4);
  transition: transform .2s ease;
}
.job-sticker:nth-child(odd)      { transform: rotate(-2.2deg); }
.job-sticker:nth-child(even)     { transform: rotate(1.8deg); }
.job-sticker:nth-child(3n)       { transform: rotate(3deg); }
.job-sticker:hover               { transform: rotate(0) scale(1.06); z-index: 2; }
.sticker-top {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #f7f4ea;
  background: #e05b4b;
  text-align: center;
  padding: 7px 10px 6px;
}
.sticker-role {
  font-family: 'Caveat', cursive;
  font-size: 30px;
  font-weight: 700;
  color: #1d2730;
  text-align: center;
  padding: 10px 14px 2px;
  line-height: 1.05;
}
.sticker-note {
  font-size: 12.5px;
  color: #6b7680;
  text-align: center;
  padding: 2px 16px 16px;
}

.agitation-closer {
  max-width: 660px;
  margin: 56px auto 0;
  text-align: center;
  font-size: 19px;
  color: var(--ink-muted);
}
.agitation-closer b { color: var(--ink); font-weight: 600; }

/* ---------------- Cost of inaction: two futures ---------------- */

.inaction {
  position: relative;
  z-index: 2; /* lets the route-tease chevrons paint over the next section */
  padding: 80px 0 26px;
  background:
    radial-gradient(900px 460px at 50% 0%, rgba(205,245,73,.05), transparent 60%),
    var(--bg);
}
.inaction .section-head { margin-bottom: 24px; }

.inaction-lead {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.inaction-lead p { color: var(--ink-muted); font-size: 17.5px; }
.inaction-lead em { color: var(--ink); font-style: italic; }

/* --- desktop diverging-paths scene --- */

.futures-scene { max-width: 1080px; margin: 0 auto; }

.futures-canvas {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background:
    radial-gradient(700px 280px at 18% 50%, rgba(205,245,73,.05), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.022), rgba(255,255,255,.008));
}

.fc-time  { font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: .08em; }
.fc-note  { font-family: var(--font-body); font-size: 13.5px; }
.fc-route { font-family: var(--font-head); font-size: 17px; font-weight: 700; }
.fc-badge { font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: .06em; }

/* path draw-in */
.fc-path {
  stroke-dasharray: 1100;
  stroke-dashoffset: 1100;
  transition: stroke-dashoffset 2s cubic-bezier(.3, .6, .3, 1) .15s;
}
.fc-path-coral { transition-delay: .35s; }
.in-view .fc-path { stroke-dashoffset: 0; }
/* keep the coral dashes visible after draw-in completes */
.in-view .fc-path-coral { stroke-dasharray: 7 9; transition: stroke-dasharray 0s 2.2s, stroke-dashoffset 2s cubic-bezier(.3,.6,.3,1) .35s; }

/* node reveals */
.fc-node, .fc-origin {
  opacity: 0;
  transition: opacity .55s ease;
}
.in-view .fc-origin { opacity: 1; transition-delay: 0s; }
.in-view .fc-n1 { opacity: 1; transition-delay: .8s; }
.in-view .fc-n2 { opacity: 1; transition-delay: 1.25s; }
.in-view .fc-end-lime { opacity: 1; transition-delay: 1.8s; }
.in-view .fc-n3 { opacity: 1; transition-delay: 1s; }
.in-view .fc-n4 { opacity: 1; transition-delay: 1.45s; }
.in-view .fc-end-coral { opacity: 1; transition-delay: 2s; }

/* --- mobile fallback rows --- */

.futures {
  display: none;
  flex-direction: column;
  gap: 26px;
  max-width: 1080px;
  margin: 0 auto;
}

.future-row {
  display: grid;
  grid-template-columns: 175px 1fr 150px;
  gap: 26px;
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}
.future-lime {
  border-color: var(--line);
  background:
    radial-gradient(600px 200px at 18% 50%, rgba(205,245,73,.07), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  box-shadow: 0 0 50px rgba(205,245,73,.07);
}

.future-label { display: flex; flex-direction: column; gap: 3px; }
.future-name {
  font-family: var(--font-head);
  font-size: 16.5px;
  font-weight: 700;
}
.future-dim .future-name { color: var(--ink-muted); }
.future-lime .future-name { color: var(--lime); }
.future-sub { font-size: 12.5px; color: var(--ink-muted); }

/* track + nodes */
.future-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 4px;
}
/* the line */
.future-track::before {
  content: '';
  position: absolute;
  left: 7px; right: 7px; top: 10px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.6s cubic-bezier(.25, .8, .25, 1) .2s;
}
.future-dim .future-track::before {
  background: repeating-linear-gradient(90deg, rgba(255,138,122,.55) 0 7px, transparent 7px 14px);
}
.future-lime .future-track::before {
  background: linear-gradient(90deg, #8fd13f, var(--lime));
  box-shadow: 0 0 12px rgba(205,245,73,.55);
}
.in-view .future-track::before { transform: scaleX(1); }

.fnode {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
}
.in-view .fnode { opacity: 1; transform: translateY(0); }
.in-view .fnode:nth-child(1) { transition-delay: .15s; }
.in-view .fnode:nth-child(2) { transition-delay: .55s; }
.in-view .fnode:nth-child(3) { transition-delay: .95s; }
.in-view .fnode:nth-child(4) { transition-delay: 1.35s; }

.fdot {
  width: 15px; height: 15px;
  border-radius: 50%;
  flex: none;
  border: 3px solid var(--bg);
}
.future-dim .fdot { background: #5a6a72; }
.future-lime .fdot { background: var(--lime); box-shadow: 0 0 12px rgba(205,245,73,.7); }

.ftime {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.future-dim .ftime { color: var(--ink-muted); }
.future-lime .ftime { color: var(--lime); }
.ftext { font-size: 13.5px; color: var(--ink-muted); padding-right: 14px; }
.future-lime .ftext { color: var(--ink); }

.future-result {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border-radius: 12px;
  padding: 14px 12px;
}
.future-dim .future-result {
  color: #ff8a7a;
  background: rgba(255,122,107,.07);
  border: 1px dashed rgba(255,122,107,.3);
}
.future-lime .future-result {
  color: #06130b;
  background: var(--lime);
  box-shadow: 0 0 24px rgba(205,245,73,.35);
}

/* the "someday" receipt */

.someday-receipt-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 56px;
}
.someday-receipt {
  position: relative;
  width: 330px;
  transform: rotate(1.6deg);
  background: linear-gradient(180deg, #f9f6ec 0%, #efeadd 100%);
  color: #2a343c;
  font-family: 'Courier New', Courier, monospace;
  padding: 30px 26px 24px;
  border-radius: 4px;
  box-shadow: 0 22px 50px rgba(0,0,0,.5);
}
/* perforated top/bottom edges */
.someday-receipt::before,
.someday-receipt::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 8px;
  background-image: radial-gradient(circle at 8px 0, transparent 5px, #f9f6ec 5.5px);
  background-size: 16px 8px;
}
.someday-receipt::before { top: -7px; transform: rotate(180deg); }
.someday-receipt::after  { bottom: -7px; background-image: radial-gradient(circle at 8px 8px, transparent 5px, #efeadd 5.5px); }

.receipt-tape {
  position: absolute;
  top: -16px; left: 50%;
  width: 96px; height: 26px;
  transform: translateX(-50%) rotate(-3deg);
  background: rgba(205,245,73,.30);
  border-left: 1px dashed rgba(0,0,0,.12);
  border-right: 1px dashed rgba(0,0,0,.12);
  backdrop-filter: blur(1px);
}

.receipt-title {
  text-align: center;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .02em;
}
.receipt-sub {
  text-align: center;
  font-size: 12px;
  color: #6b7680;
  margin-top: 3px;
}
.receipt-rule {
  border-top: 1.5px dashed rgba(42,52,60,.35);
  margin: 14px 0;
}
.receipt-rows { display: flex; flex-direction: column; gap: 8px; }
.receipt-rows > div {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 13px;
}
.receipt-rows dt {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
}
.receipt-rows dt::after {
  content: ' ......................................';
  letter-spacing: 2px;
  color: rgba(42,52,60,.35);
}
.receipt-rows dd { flex: none; margin-left: 6px; white-space: nowrap; font-weight: 700; }

.receipt-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
}
.receipt-note {
  text-align: center;
  font-size: 11.5px;
  color: #6b7680;
  line-height: 1.5;
}
.receipt-barcode {
  height: 34px;
  margin-top: 14px;
  background: repeating-linear-gradient(90deg,
    #2a343c 0 2px, transparent 2px 5px,
    #2a343c 5px 6px, transparent 6px 11px,
    #2a343c 11px 14px, transparent 14px 17px,
    #2a343c 17px 18px, transparent 18px 24px);
  opacity: .8;
}
.receipt-stamp {
  position: absolute;
  top: 51%; left: 50%;
  transform: translate(-50%, -50%) rotate(-9deg);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(224,91,75,.85);
  border: 3px solid rgba(224,91,75,.75);
  border-radius: 10px;
  padding: 8px 16px;
  white-space: nowrap;
  mix-blend-mode: multiply;
}

.receipt-intro {
  text-align: center;
  max-width: 540px;
  margin-bottom: 40px;
}
.receipt-intro h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.receipt-intro p { color: var(--ink-muted); font-size: 16.5px; }

/* transition into the solution */
.route-tease {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 48px;
  text-align: center;
}
.tease-label {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.tease-line {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(100deg, var(--lime) 15%, var(--lime-soft) 50%, #8fd13f 85%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  animation: tease-shimmer 3.5s ease-in-out infinite;
  transition: transform .2s ease;
}
.route-tease:hover .tease-line { transform: scale(1.04); }
@keyframes tease-shimmer {
  0%, 100% { background-position: 0% 0; }
  50%      { background-position: 100% 0; }
}
.tease-chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  margin-bottom: -58px; /* cascade crosses into the next section */
  position: relative;
  z-index: 6;
  color: var(--lime);
}
.tease-chevrons svg {
  width: 26px;
  height: 13px;
  animation: chev-cascade 1.8s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(205,245,73,.5));
}
.tease-chevrons svg:nth-child(2) { animation-delay: .18s; opacity: .65; }
.tease-chevrons svg:nth-child(3) { animation-delay: .36s; opacity: .35; }
@keyframes chev-cascade {
  0%, 100% { transform: translateY(0);   opacity: var(--o, 1); }
  50%      { transform: translateY(7px); }
}
@media (prefers-reduced-motion: reduce) {
  .tease-line { animation: none; }
  .tease-chevrons svg { animation: none; }
}

/* ---------------- Solution introduction ---------------- */

section[id] { scroll-margin-top: 84px; }

.solution {
  position: relative;
  padding: 92px 0 54px;
  background:
    radial-gradient(1100px 560px at 50% 18%, rgba(205,245,73,.10), transparent 60%),
    var(--bg-deep);
  overflow: hidden;
}
.solution-head { margin-bottom: 26px; }

.solution-title {
  font-size: clamp(40px, 5.4vw, 66px);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.brand-grad {
  background: linear-gradient(100deg, var(--lime) 10%, var(--lime-soft) 55%, #8fd13f 95%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  text-shadow: 0 0 70px rgba(205,245,73,.3);
}
.solution-sub {
  margin-top: 14px;
  font-size: 18px;
  color: var(--ink-muted);
}

.solution-breath {
  max-width: 700px;
  margin: 0 auto 38px;
  text-align: center;
  font-size: 18px;
  color: var(--ink-muted);
}
.solution-breath b { color: var(--ink); font-weight: 600; }

/* not this → this: the rejection reel */
.notis-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 56px;
}
.notis-prefix {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.notis-window {
  position: relative;
  width: min(660px, 100%);
  height: 78px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}
.notis-track {
  height: 500%;
  display: flex;
  flex-direction: column;
  animation: notis-cycle 14s cubic-bezier(.7, 0, .3, 1) infinite;
}
.notis-item {
  height: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 26px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(14.5px, 2.2vw, 19px);
  letter-spacing: -0.01em;
}
.ni-no { color: var(--ink-muted); }
.ni-x  { color: #ff8a7a; font-size: .9em; }
.ni-yes {
  color: #06130b;
  background: linear-gradient(100deg, #b8e335, var(--lime) 55%, var(--lime-soft));
  box-shadow: 0 0 50px rgba(205,245,73,.5) inset;
}

/* animated strike-outs, synced to the reel */
.strike { position: relative; }
.strike::after {
  content: '';
  position: absolute;
  left: -3%; right: -3%; top: 52%;
  height: 2.5px;
  border-radius: 2px;
  background: #ff8a7a;
  box-shadow: 0 0 8px rgba(255,138,122,.6);
  transform: scaleX(0);
  transform-origin: left center;
  animation: strike-a 14s linear infinite;
}
.strike-2::after { animation-name: strike-b; }
.strike-3::after { animation-name: strike-c; }

@keyframes notis-cycle {
  0%, 15%   { transform: translateY(0); }
  19%, 34%  { transform: translateY(-20%); }
  38%, 53%  { transform: translateY(-40%); }
  57%, 93%  { transform: translateY(-60%); }
  97%, 100% { transform: translateY(-80%); }
}
@keyframes strike-a {
  0%, 4%    { transform: scaleX(0); }
  10%, 21%  { transform: scaleX(1); }
  23%, 94%  { transform: scaleX(0); }
  98%, 100% { transform: scaleX(0); } /* dup item at loop end stays clean */
}
@keyframes strike-b {
  0%, 23%   { transform: scaleX(0); }
  29%, 40%  { transform: scaleX(1); }
  42%, 100% { transform: scaleX(0); }
}
@keyframes strike-c {
  0%, 42%   { transform: scaleX(0); }
  48%, 59%  { transform: scaleX(1); }
  61%, 100% { transform: scaleX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .notis-track { animation: none; transform: translateY(-60%); } /* rest on the lime answer */
  .strike::after { animation: none; transform: scaleX(1); }
}

/* product visual reveal */
.solution-app {
  margin: 0 auto;
  opacity: 0;
  transform: translateY(34px) scale(.98);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22, .68, .35, 1.05);
}
.solution-app.in-view { opacity: 1; transform: translateY(0) scale(1); }

.solution-visual {
  position: relative;
  width: min(620px, 100%);
}
.solution-visual.has-scene {
  width: min(960px, 100%);
}

/* the scene: full image, wrapped in a lime aura that melts into the background */
.scene-blend {
  position: relative;
}
.scene-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  /* layered lime halo — strong at the edge, dissolving outward into the page */
  box-shadow:
    0 0 0 1px rgba(205,245,73,.35),
    0 0 38px rgba(205,245,73,.30),
    0 0 110px rgba(205,245,73,.16),
    0 0 220px rgba(205,245,73,.07);
}
.solution-box-img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.55)) drop-shadow(0 0 50px rgba(205,245,73,.14));
}
.box-placeholder {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  aspect-ratio: 4 / 3;
  border: 2px dashed rgba(205,245,73,.30);
  border-radius: 22px;
  background:
    radial-gradient(420px 260px at 50% 45%, rgba(205,245,73,.06), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01));
  text-align: center;
  padding: 30px;
}
.bp-icon {
  display: inline-flex;
  width: 64px; height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: var(--lime);
  background: var(--lime-dim);
  border: 1px solid var(--line);
  margin-bottom: 4px;
}
.bp-icon svg { width: 34px; height: 34px; }
.bp-title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
}
.bp-note { font-size: 13.5px; color: var(--ink-muted); max-width: 320px; }
.bp-note code {
  font-size: 12.5px;
  color: var(--lime);
  background: var(--lime-dim);
  border-radius: 6px;
  padding: 2px 7px;
}

/* audience chips */
.solution-audience {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
}
.audience-head {
  text-align: center;
  max-width: 740px;
  margin-bottom: 14px;
}
.audience-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lime);
  background: var(--lime-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 16px;
}
.audience-head h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  text-wrap: balance;
}
.audience-head p {
  color: var(--ink-muted);
  font-size: 16.5px;
  max-width: 580px;
  margin: 0 auto;
}

.audience-outro {
  max-width: 600px;
  margin-top: 10px;
  text-align: center;
  font-size: 16.5px;
  color: var(--ink-muted);
}
.audience-outro b { color: var(--ink); font-weight: 600; }
.audience-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1040px;
}
.audience-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.audience-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: 0 24px 50px rgba(0,0,0,.45), 0 0 40px rgba(205,245,73,.08);
}
.ac-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.ac-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.audience-card:hover .ac-media img { transform: scale(1.06); }
/* blend the photo into the card */
.ac-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4,18,27,.18) 0%, transparent 35%, transparent 60%, rgba(4,18,27,.88) 100%);
}
.ac-body {
  position: relative;
  padding: 18px 22px 22px;
  margin-top: -34px; /* text rises into the photo fade */
  z-index: 2;
}
.ac-body h4 {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 18.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 7px;
}
.ac-body h4::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(205,245,73,.8);
  flex: none;
}
.ac-body p { font-size: 14px; color: var(--ink-muted); }

/* ---------------- Unique mechanism ---------------- */

.mechanism {
  position: relative;
  padding: 56px 0 96px;
  background:
    radial-gradient(900px 480px at 50% 0%, rgba(205,245,73,.05), transparent 60%),
    var(--bg);
  overflow: hidden;
}

.mech-lead {
  max-width: 640px;
  margin: 0 auto 54px;
  text-align: center;
}
.mech-lead p { color: var(--ink-muted); font-size: 17.5px; }
.mech-lead em { color: var(--ink); font-style: italic; }

.mech-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 980px;
  margin: 0 auto;
  align-items: start;
}

.way-card {
  border-radius: var(--radius);
  padding: 28px 26px 26px;
  border: 1px solid var(--line-soft);
}
.way-old {
  background: linear-gradient(180deg, rgba(255,255,255,.028), rgba(255,255,255,.01));
  transform: rotate(-0.6deg);
}
.way-new {
  background:
    radial-gradient(420px 300px at 50% 0%, rgba(205,245,73,.08), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.012));
  border-color: var(--line);
  box-shadow: 0 0 60px rgba(205,245,73,.08);
}

.way-head { margin-bottom: 22px; }
.way-head h3 { font-size: 20px; font-weight: 700; color: var(--ink-muted); }
.mech-name {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #06130b;
  background: linear-gradient(100deg, #b8e335, var(--lime));
  border-radius: 9px;
  padding: 8px 14px;
  box-shadow: 0 0 26px rgba(205,245,73,.3);
}
.way-sub { display: block; margin-top: 8px; font-size: 13px; color: var(--ink-muted); }

.way-chain { list-style: none; }
.way-chain li {
  position: relative;
  display: flex;
  gap: 14px;
  padding: 9px 0 9px 4px;
}
/* connectors */
.way-chain li + li::before {
  content: '';
  position: absolute;
  left: 10px;
  top: -10px;
  height: 18px;
  width: 2px;
}
.way-old .way-chain li + li::before {
  background: repeating-linear-gradient(180deg, rgba(255,138,122,.5) 0 4px, transparent 4px 8px);
}
.way-new .way-chain li + li::before { background: rgba(205,245,73,.4); }

.step-dot {
  width: 14px; height: 14px;
  flex: none;
  margin-top: 4px;
  border-radius: 50%;
}
.old-step .step-dot { background: #4d5b63; }
.pipe-step .step-dot { background: var(--lime); box-shadow: 0 0 10px rgba(205,245,73,.5); }

.way-chain b {
  display: block;
  font-family: var(--font-head);
  font-size: 15.5px;
  color: var(--ink);
}
.way-chain small { font-size: 13px; color: var(--ink-muted); }
.old-step b { color: var(--ink-muted); }

/* the pipeline runs: stages light up in order */
.pipe-step { border-radius: 10px; animation: pipe-pulse 9.1s linear infinite; animation-delay: calc(var(--i) * 1.3s); }
.pipe-step .step-dot { animation: pipe-dot 9.1s linear infinite; animation-delay: calc(var(--i) * 1.3s); }
@keyframes pipe-pulse {
  0%, 2%   { background: rgba(205,245,73,.10); }
  10%, 100% { background: transparent; }
}
@keyframes pipe-dot {
  0%, 2%  { box-shadow: 0 0 18px rgba(205,245,73,.95); transform: scale(1.35); }
  10%, 100% { box-shadow: 0 0 10px rgba(205,245,73,.5); transform: scale(1); }
}

.way-verdict {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 10px;
  padding: 10px 16px;
}
.verdict-bad {
  color: #ff8a7a;
  background: rgba(255,122,107,.07);
  border: 1px dashed rgba(255,122,107,.35);
  transform: rotate(-1.5deg);
}
.verdict-good {
  color: #06130b;
  background: var(--lime);
  box-shadow: 0 0 26px rgba(205,245,73,.35);
}

.vs-coin {
  position: absolute;
  left: 50%; top: 46%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  background: var(--bg-deep);
  border: 1px solid var(--line);
  box-shadow: 0 0 0 6px var(--bg), 0 0 30px rgba(205,245,73,.15);
}

/* proof bar */
.mech-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 64px;
  text-align: center;
}
.mech-proof-title {
  font-family: var(--font-head);
  font-size: clamp(21px, 2.4vw, 27px);
  font-weight: 700;
}
.proof-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 200px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 18px 26px;
  transition: border-color .15s ease, transform .15s ease;
}
.proof-stat:hover { border-color: var(--line); transform: translateY(-2px); }
.proof-stat b {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--lime);
  text-shadow: 0 0 24px rgba(205,245,73,.35);
}
.proof-stat small { font-size: 13px; color: var(--ink-muted); }
.mech-proof-note { font-size: 12.5px; color: var(--ink-muted); opacity: .8; }

/* ---------------- Benefits bento ---------------- */

.benefits {
  position: relative;
  padding: 64px 0 96px;
  background: var(--bg-deep);
  overflow: hidden;
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.bento-tile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  padding: 26px 26px 24px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.bento-tile:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  box-shadow: 0 18px 44px rgba(0,0,0,.4), 0 0 36px rgba(205,245,73,.07);
}
.b-wide { grid-column: span 2; flex-direction: row; align-items: center; gap: 30px; }
.b-wide .bt-text { flex: 1.1; }
.b-wide .bt-visual { flex: 1; }

.bento-tile h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.bento-tile p { font-size: 14.5px; color: var(--ink-muted); }
.bento-tile p em { color: var(--ink); font-style: italic; }

.bt-visual { margin-top: auto; }

/* market mini-chart */
.mini-market {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(2,10,16,.45);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 18px;
}
.mm-row {
  display: grid;
  grid-template-columns: 96px 1fr 44px;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--ink-muted);
}
.mm-row b { color: var(--lime); font-size: 12px; text-align: right; }
.mm-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  overflow: hidden;
}
.mm-bar i {
  display: block;
  height: 100%;
  width: var(--w);
  border-radius: 999px;
  background: linear-gradient(90deg, #8fd13f, var(--lime));
  box-shadow: 0 0 10px rgba(205,245,73,.45);
}
.mm-bar .mm-low { background: rgba(255,255,255,.22); box-shadow: none; }

/* speed visual */
.speed-visual {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 16px;
  padding-top: 8px;
}
.speed-visual s { color: var(--ink-muted); text-decoration-color: rgba(255,138,122,.7); }
.speed-arrow { color: var(--lime); font-weight: 700; }
.speed-visual b { color: var(--lime); font-weight: 700; }

/* cover visual */
.tile-cover { padding-top: 10px; }
.tile-cover img {
  width: 104px;
  height: auto;
  border-radius: 6px;
  transform: rotate(-3.5deg);
  box-shadow: 0 14px 30px rgba(0,0,0,.5), 0 0 24px rgba(205,245,73,.12);
  transition: transform .25s ease;
}
.bento-tile:hover .tile-cover img { transform: rotate(0) scale(1.04); }

/* export visual */
.export-visual {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-top: 8px;
  flex-wrap: wrap;
}
.export-check {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  color: #06130b;
  background: var(--lime);
  border-radius: 7px;
  padding: 6px 11px;
}

/* zero-cost visual */
.zero-visual {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 6px;
}
.zero-visual b {
  font-family: var(--font-head);
  font-size: 46px;
  font-weight: 700;
  color: var(--lime);
  text-shadow: 0 0 30px rgba(205,245,73,.4);
  line-height: 1;
}
.zero-visual small { font-size: 12px; color: var(--ink-muted); line-height: 1.5; }

/* also-handles chips */
.also-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 52px;
}
.also-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.also-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 880px;
}
.also-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-muted);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 9px 16px;
  transition: color .15s ease, border-color .15s ease;
}
.also-chip::before {
  content: '✓';
  color: var(--lime);
  font-weight: 700;
  font-size: 12px;
}
.also-chip:hover { color: var(--ink); border-color: var(--line); }

/* ---------------- How it works + mid CTA ---------------- */

.how {
  position: relative;
  padding: 90px 0 96px;
  background:
    radial-gradient(900px 460px at 50% 100%, rgba(205,245,73,.07), transparent 60%),
    var(--bg);
  overflow: hidden;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  max-width: 1040px;
  margin: 0 auto;
}
/* flowing current between the steps */
.steps-line {
  position: absolute;
  top: 34px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(205,245,73,.55) 0 10px, transparent 10px 20px);
  animation: dash-flow 0.9s linear infinite;
  z-index: 0;
}
@keyframes dash-flow { to { background-position: 20px 0; } }
@keyframes dash-flow-v { to { background-position: 0 20px; } }
@media (prefers-reduced-motion: reduce) { .steps-line { animation: none; } }

.step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step-num {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(205,245,73,.55);
  background: var(--bg);
  align-self: flex-start;
  padding-right: 14px;
  text-shadow: 0 0 30px rgba(205,245,73,.15);
}
.step-time {
  align-self: flex-start;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lime);
  background: var(--lime-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 12px;
}
.step h3 { font-size: 20px; font-weight: 700; margin-top: 4px; }
.step p { font-size: 15px; color: var(--ink-muted); }

/* mid-page CTA banner */
.mid-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  max-width: 1040px;
  margin: 120px auto 0; /* room for the box popping above the card */
  border-radius: 24px;
  padding: 40px 46px 36px;
  background: linear-gradient(100deg, #b8e335 0%, var(--lime) 55%, var(--lime-soft) 100%);
  box-shadow: 0 24px 70px rgba(205,245,73,.25);
}
.mid-cta-text { flex: 1; }
.mid-cta-text h3 {
  font-size: clamp(21px, 2.6vw, 28px);
  font-weight: 700;
  color: #06130b;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.mid-cta-text p { margin-top: 6px; font-size: 15px; color: rgba(6,19,11,.75); }
.mid-cta-action {
  display: flex;
  flex-direction: column;
  align-items: stretch; /* button spans the trust row's width */
  width: fit-content;
  gap: 12px;
  margin-top: 24px;
}
.mid-cta-action .btn { justify-content: center; }

/* the box that breaks out of the card */
.mid-cta-box {
  flex: none;
  width: 250px;
  align-self: flex-end;
  margin-bottom: -36px; /* sits on the card's bottom edge */
}
.mid-cta-box img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -120px; /* surpasses the card top */
  transform: rotate(3deg);
  filter:
    drop-shadow(0 30px 40px rgba(6,19,11,.45))
    drop-shadow(0 0 40px rgba(205,245,73,.25));
}
.cta-box-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-top: -120px;
  transform: rotate(3deg);
  border: 2px dashed rgba(6,19,11,.45);
  border-radius: 16px;
  background: linear-gradient(180deg, #f9f6ec 0%, #e9e4d4 100%);
  color: #06130b;
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
}
.cbp-icon {
  display: inline-flex;
  width: 52px; height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(6,19,11,.12);
  border: 1px solid rgba(6,19,11,.25);
}
.cbp-icon svg { width: 28px; height: 28px; }
.cbp-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; }
.cbp-note {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  background: rgba(6,19,11,.12);
  border-radius: 6px;
  padding: 3px 8px;
}
.btn-dark {
  background: #06130b;
  color: var(--lime);
  box-shadow: 0 14px 40px rgba(6,19,11,.35);
}
.btn-dark:hover { background: #0c2014; box-shadow: 0 18px 50px rgba(6,19,11,.45); }
.btn-dark .btn-arrow { background: var(--lime); color: #06130b; }
.mid-cta-note { font-size: 12.5px; font-weight: 600; color: rgba(6,19,11,.8); }

/* trust row: payment + platform icons */
.cta-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
}
.trust-pay { display: inline-flex; gap: 6px; }
.trust-pay img {
  display: block;
  width: auto;
  height: 26px;
  background: #fff;
  border-radius: 5px;
  padding: 4px 6px;
  box-shadow: 0 2px 8px rgba(6,19,11,.2);
}
.trust-item {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(6,19,11,.8);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.trust-os img {
  display: block;
  width: auto;
  height: 16px;
  filter: brightness(0); /* white marks → dark, for the lime card */
  opacity: .8;
}
.trust-guarantee svg {
  width: 17px;
  height: 17px;
  color: rgba(6,19,11,.85);
  flex: none;
}

/* ---------------- Proof: wall of love ---------------- */

.proof {
  position: relative;
  padding: 90px 0 70px;
  background:
    radial-gradient(900px 460px at 50% 10%, rgba(205,245,73,.05), transparent 60%),
    var(--bg-deep);
  overflow: hidden;
}
.proof .section-head { margin-bottom: 8px; }

.wall {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 36px auto 0;
  padding: 0 24px;
  height: 660px;
  overflow: hidden;
}
/* top & bottom fades */
.wall::before, .wall::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 110px;
  z-index: 2;
  pointer-events: none;
}
.wall::before { top: 0;    background: linear-gradient(180deg, var(--bg-deep), transparent); }
.wall::after  { bottom: 0; background: linear-gradient(0deg,  var(--bg-deep), transparent); }

.wall-col { overflow: visible; }
.wall-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
}
.wall-col-1 .wall-group { animation: wall-up 46s linear infinite; }
.wall-col-2 .wall-group { animation: wall-up 58s linear infinite; }
.wall-col-3 .wall-group { animation: wall-up 51s linear infinite; }
.wall:hover .wall-group { animation-play-state: paused; }
@keyframes wall-up { to { transform: translateY(calc(-100% - 20px)); } }
@media (prefers-reduced-motion: reduce) { .wall-group { animation: none !important; } }

.t-card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  transition: border-color .2s ease;
}
.t-card:hover { border-color: var(--line); }
.t-stars {
  color: var(--lime);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-shadow: 0 0 12px rgba(205,245,73,.4);
}
.t-card blockquote {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 16px;
}
.t-card figcaption {
  display: flex;
  align-items: center;
  gap: 11px;
}
.t-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  flex: none;
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: #06130b;
  background: var(--av, var(--lime));
}
.t-meta { display: flex; flex-direction: column; line-height: 1.3; }
.t-meta b { font-family: var(--font-head); font-size: 14px; color: var(--ink); }
.t-meta small { font-size: 12px; color: var(--ink-muted); }

.wall-note {
  text-align: center;
  margin-top: 26px;
  font-size: 12.5px;
  color: var(--ink-muted);
  opacity: .8;
}

/* ---------------- Case file ---------------- */

.casefile {
  position: relative;
  padding: 80px 0 96px;
  background: var(--bg);
  overflow: hidden;
}

.folder-wrap {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.folder {
  position: relative;
  width: min(720px, 100%);
  background: linear-gradient(180deg, #f6f0dd 0%, #ece4cd 100%);
  border-radius: 6px 18px 18px 18px;
  padding: 56px 46px 92px;
  transform: rotate(-0.8deg);
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
  color: #2a343c;
}
.folder-tab {
  position: absolute;
  top: -30px; left: 0;
  background: #ece4cd;
  border-radius: 10px 10px 0 0;
  font-family: 'Courier New', Courier, monospace;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .06em;
  color: #4d5b63;
  padding: 8px 18px 6px;
  box-shadow: 0 -6px 16px rgba(0,0,0,.12);
}
.folder-clip {
  position: absolute;
  top: -14px; right: 54px;
  width: 22px; height: 52px;
  border: 3.5px solid #9aa6ad;
  border-bottom: none;
  border-radius: 11px 11px 0 0;
  opacity: .85;
}

.folder-entry { position: relative; padding-left: 22px; margin-bottom: 30px; }
.folder-entry:last-of-type { margin-bottom: 0; }
.folder-entry::before {
  content: '';
  position: absolute;
  left: 0; top: 6px; bottom: 4px;
  width: 3px;
  border-radius: 2px;
  background: rgba(42,52,60,.18);
}
.folder-entry:nth-of-type(3)::before { background: #8fb33f; }

.fe-label {
  font-family: 'Courier New', Courier, monospace;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #b3522f;
}
.folder-entry h3 {
  font-size: 21px;
  font-weight: 700;
  color: #1d2730;
  margin: 6px 0 8px;
  letter-spacing: -0.01em;
}
.folder-entry p { font-size: 15px; line-height: 1.65; color: #4a565f; }
.folder-entry p b { color: #1d2730; }

.fe-results { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; }
.fe-chip {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  color: #3f5a14;
  background: rgba(143,179,63,.18);
  border: 1px solid rgba(143,179,63,.45);
  border-radius: 999px;
  padding: 7px 14px;
}

.folder-stamp {
  position: absolute;
  right: 34px; bottom: 22px;
  transform: rotate(-6deg);
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(78,118,28,.8);
  border: 3.5px solid rgba(78,118,28,.7);
  border-radius: 12px;
  padding: 10px 18px;
  mix-blend-mode: multiply;
  white-space: nowrap;
}

.case-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 52px;
  text-align: center;
}
.case-cta-note { font-size: 13.5px; color: var(--ink-muted); max-width: 420px; }

/* ---------------- Offer stack + price card ---------------- */

.offer {
  position: relative;
  padding: 90px 0 110px;
  background:
    radial-gradient(1100px 600px at 80% 30%, rgba(205,245,73,.08), transparent 60%),
    var(--bg-deep);
  overflow: hidden;
}

/* half-ring hugging the right edge of the bonuses area */
.offer-halfring {
  position: absolute;
  right: 0;
  top: 30%;
  width: 215px;
  height: auto;
  opacity: .22;
  pointer-events: none;
  z-index: 0;
  animation: halfring-drift 15s ease-in-out infinite alternate;
}
@keyframes halfring-drift {
  from { transform: translateY(0); }
  to   { transform: translateY(-30px); }
}
@media (prefers-reduced-motion: reduce) { .offer-halfring { animation: none; } }

.offer-flow {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
.offer-flow .offer-list { width: 100%; }

/* the stack */
.offer-list { display: flex; flex-direction: column; gap: 12px; }
.offer-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 18px 20px;
  opacity: 0;
  transform: translateX(-26px);
  transition: opacity .55s ease var(--d, 0ms), transform .55s cubic-bezier(.22,.68,.35,1.05) var(--d, 0ms),
              border-color .2s ease;
}
.offer-list.in-view .offer-item { opacity: 1; transform: translateX(0); }
.offer-item:hover { border-color: var(--line); }

.oi-num {
  flex: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(205,245,73,.65);
  width: 30px;
}
.oi-text { flex: 1; min-width: 0; }
.oi-text h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.oi-bonus {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lime);
  border: 1px solid var(--line);
  background: var(--lime-dim);
  border-radius: 6px;
  padding: 2.5px 7px;
}
.oi-text p { font-size: 13px; color: var(--ink-muted); margin-top: 3px; }
.oi-value {
  flex: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--lime);
  text-shadow: 0 0 16px rgba(205,245,73,.3);
}

/* ----- bonus vault ----- */

.vault-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  margin: 46px 0 30px;
}
.vault-plus {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: var(--lime);
  text-shadow: 0 0 30px rgba(205,245,73,.5);
}
.vault-head h3 { font-size: clamp(22px, 2.6vw, 28px); font-weight: 700; letter-spacing: -0.015em; }
.vault-head p { font-size: 14.5px; color: var(--ink-muted); }

.vault-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  width: 100%;
}
.vault-card {
  display: flex;
  align-items: stretch;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(205,245,73,.16);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.012));
  opacity: 0;
  transform: translateY(22px) scale(.97);
  transition:
    opacity .6s ease var(--d, 0ms),
    transform .6s cubic-bezier(.22,.68,.35,1.05) var(--d, 0ms),
    border-color .25s ease, box-shadow .25s ease;
}
.vault-grid.in-view .vault-card { opacity: 1; transform: translateY(0) scale(1); }
.vault-card:hover {
  border-color: rgba(205,245,73,.5);
  box-shadow: 0 18px 44px rgba(0,0,0,.5), 0 0 44px rgba(205,245,73,.14);
}

.vc-media {
  flex: none;
  width: 168px;
  overflow: hidden;
  background: #04121b;
}
.vc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.vault-card:hover .vc-media img { transform: scale(1.08); }

.vc-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px 16px;
  min-width: 0;
}
.vc-bonus-tag {
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lime);
}
.vc-body h4 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.vc-body p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-muted);
}
.vc-value {
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #06130b;
  background: var(--lime);
  border-radius: 999px;
  padding: 6px 13px;
  box-shadow: 0 0 18px rgba(205,245,73,.25);
}

/* the price card */
.price-card-wrap {
  width: min(640px, 100%);
  margin-top: 150px; /* room for the box popping above the card */
}
.price-card {
  position: relative;
  text-align: center;
  border-radius: 26px;
  padding: 38px 36px 34px;
  background:
    radial-gradient(420px 300px at 50% 0%, rgba(205,245,73,.12), transparent 70%),
    linear-gradient(180deg, #0a2231 0%, #061722 100%);
  border: 1px solid rgba(205,245,73,.35);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.4),
    0 30px 80px rgba(0,0,0,.5),
    0 0 80px rgba(205,245,73,.12);
}

/* the box breaking out of the price card */
.pc-box {
  width: 225px;
  margin: -160px auto 16px;
}
.pc-box img {
  display: block;
  width: 100%;
  height: auto;
  transform: rotate(-3deg);
  filter:
    drop-shadow(0 30px 40px rgba(0,0,0,.55))
    drop-shadow(0 0 40px rgba(205,245,73,.22));
}
.pc-box .cta-box-placeholder {
  margin-top: 0;
  transform: rotate(-3deg);
  border-color: rgba(205,245,73,.4);
}
.pc-glow {
  position: absolute;
  top: -120px; left: 50%;
  width: 420px; height: 240px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(205,245,73,.22), transparent);
  pointer-events: none;
  animation: pc-breathe 4s ease-in-out infinite;
}
@keyframes pc-breathe { 0%,100% { opacity: .7; } 50% { opacity: 1; } }

.pc-label {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.pc-total {
  position: relative;
  display: inline-block;
  font-family: var(--font-head);
  font-size: 46px;
  font-weight: 700;
  color: var(--ink);
  margin: 4px 0 14px;
  letter-spacing: -0.02em;
}
.pc-strike {
  position: absolute;
  left: -4%; right: -4%; top: 54%;
  height: 4px;
  border-radius: 3px;
  background: #ff8a7a;
  box-shadow: 0 0 14px rgba(255,138,122,.6);
  transform: rotate(-5deg) scaleX(0);
  transform-origin: left center;
  transition: transform .45s cubic-bezier(.7, 0, .3, 1);
}
.pc-struck .pc-strike { transform: rotate(-5deg) scaleX(1); }
.pc-struck .pc-total { color: var(--ink-muted); }

.pc-today {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-muted);
  opacity: 0;
  transition: opacity .5s ease;
}
.pc-price {
  font-family: var(--font-head);
  font-size: 88px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(100deg, var(--lime) 10%, var(--lime-soft) 55%, #8fd13f 95%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  opacity: 0;
  transform: scale(.7);
  transition: opacity .5s ease, transform .55s cubic-bezier(.2, 1.2, .35, 1);
  margin: 2px 0 6px;
}
.pc-reveal .pc-today { opacity: 1; }
.pc-reveal .pc-price {
  opacity: 1;
  transform: scale(1);
  filter: drop-shadow(0 0 34px rgba(205,245,73,.45));
}
.pc-terms { font-size: 12.5px; color: var(--ink-muted); line-height: 1.6; margin-bottom: 22px; }

/* social proof strip above the CTA */
.pc-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.ps-avatars { display: inline-flex; }
.ps-av {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--av, var(--lime)), color-mix(in srgb, var(--av, var(--lime)) 60%, #04121b));
  border: 2.5px solid #0a2231;
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
  overflow: hidden;
}
.ps-av + .ps-av { margin-left: -12px; }
.ps-av svg { width: 26px; height: 26px; margin-top: 3px; }
.ps-av img { width: 100%; height: 100%; object-fit: cover; }
.ps-av-more {
  background: var(--lime);
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 700;
  color: #06130b;
  box-shadow: 0 4px 12px rgba(0,0,0,.4), 0 0 16px rgba(205,245,73,.35);
}
.ps-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  text-align: left;
}
.ps-stars {
  font-size: 15px;
  letter-spacing: 2.5px;
  color: var(--lime);
  text-shadow: 0 0 14px rgba(205,245,73,.5);
}
.ps-stars b {
  font-family: var(--font-head);
  font-size: 15.5px;
  letter-spacing: 0;
  color: var(--ink);
  margin-left: 5px;
}
.ps-meta small { font-size: 12.5px; color: var(--ink-muted); }

.pc-btn { width: 100%; justify-content: center; }

.pc-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.pc-trust .trust-pay img { height: 24px; box-shadow: 0 2px 10px rgba(0,0,0,.35); }
.pc-trust-line {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-muted);
}
.pc-trust-line svg { width: 16px; height: 16px; color: var(--lime); }
.pc-os img { width: auto; height: 15px; filter: brightness(0) invert(.75); }

/* ---------------- Guarantee certificate ---------------- */

.guarantee {
  position: relative;
  padding: 90px 0 96px;
  background:
    radial-gradient(900px 460px at 50% 100%, rgba(205,245,73,.06), transparent 60%),
    var(--bg);
  overflow: hidden;
}

.cert-wrap { display: flex; justify-content: center; }
.cert {
  position: relative;
  width: min(680px, 100%);
  background: linear-gradient(165deg, #f9f6ec 0%, #efe9d8 100%);
  border-radius: 14px;
  padding: 52px 56px 44px;
  transform: rotate(0.7deg);
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
  color: #2a343c;
  text-align: center;
}
/* double ornamental border */
.cert-border {
  position: absolute;
  inset: 14px;
  border: 2px solid rgba(78,118,28,.45);
  border-radius: 9px;
  pointer-events: none;
}
.cert-border::after {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(78,118,28,.3);
  border-radius: 6px;
}

.cert-kicker {
  font-family: 'Courier New', Courier, monospace;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #8a958d;
  margin-bottom: 14px;
}
.cert-name {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #1d2730;
  margin-bottom: 18px;
}
.cert-body {
  max-width: 480px;
  margin: 0 auto 20px;
  font-size: 15.5px;
  line-height: 1.7;
  color: #4a565f;
}
.cert-body b { color: #1d2730; }

.cert-points {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-bottom: 30px;
}
.cert-points li {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  color: #3f5a14;
}

.cert-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  border-top: 1.5px dashed rgba(42,52,60,.25);
  padding-top: 20px;
  text-align: left;
}
.cert-serial { display: flex; flex-direction: column; gap: 2px; }
.cert-serial span {
  font-family: 'Courier New', Courier, monospace;
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8a958d;
}
.cert-serial b {
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  color: #2a343c;
}
.cert-sign {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  text-align: right;
  margin-right: 120px; /* room for the seal */
}
.cert-script {
  font-family: 'Caveat', cursive;
  font-size: 34px;
  font-weight: 700;
  color: #1d2730;
  line-height: 1;
}
.cert-sign span:last-child {
  font-size: 11px;
  color: #8a958d;
  border-top: 1px solid rgba(42,52,60,.3);
  padding-top: 4px;
  margin-top: 4px;
}

.cert-seal {
  position: absolute;
  right: 30px; bottom: 18px;
  width: 122px; height: 122px;
  transform: rotate(8deg);
  filter: drop-shadow(0 10px 16px rgba(60,10,7,.45));
  animation: seal-bob 5s ease-in-out infinite;
}
@keyframes seal-bob {
  0%, 100% { transform: rotate(8deg) scale(1); }
  50%      { transform: rotate(5deg) scale(1.04); }
}
@media (prefers-reduced-motion: reduce) { .cert-seal { animation: none; } }

.cert-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 50px;
  text-align: center;
}
.cert-cta-note { font-size: 14px; color: var(--ink-muted); line-height: 1.6; }

/* ---------------- FAQ accordion ---------------- */

.faq {
  position: relative;
  padding: 90px 0 90px;
  background: var(--bg-deep);
  overflow: hidden;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item.open {
  border-color: rgba(205,245,73,.4);
  box-shadow: 0 0 36px rgba(205,245,73,.08);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 16.5px;
  font-weight: 700;
  padding: 19px 22px;
}
.faq-q:hover span:first-child { color: var(--lime); transition: color .15s ease; }

.faq-icon {
  position: relative;
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--lime-dim);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 2px;
  border-radius: 2px;
  background: var(--lime);
  transform: translate(-50%, -50%);
  transition: transform .3s ease;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p {
  padding: 0 22px 20px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 660px;
}

.faq-more {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--ink-muted);
}
.faq-more a {
  color: var(--lime);
  font-weight: 600;
  border-bottom: 1px solid rgba(205,245,73,.35);
  transition: border-color .15s ease;
}
.faq-more a:hover { border-color: var(--lime); }

/* ---------------- Urgency: price tags ---------------- */

.urgency {
  position: relative;
  padding: 88px 0 80px;
  background: var(--bg);
  overflow: hidden;
}
.urgency .section-title em { font-style: italic; color: var(--lime); }

.price-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.ptag {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-radius: 14px;
  padding: 20px 28px 18px 46px;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}
.ptag-now {
  background: linear-gradient(120deg, #b8e335, var(--lime));
  color: #06130b;
  transform: rotate(-2.4deg);
}
.ptag-later {
  background: linear-gradient(165deg, #f7f4ea, #e9e4d4);
  color: #6b7680;
  transform: rotate(1.8deg);
  border: 1px dashed rgba(42,52,60,.3);
}
.ptag-hole {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: inset 0 1px 3px rgba(0,0,0,.5);
}
.ptag-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .75;
}
.ptag-price {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.ptag-later .ptag-price { color: #4a565f; }
.ptag-sub { font-size: 12px; opacity: .8; }
.ptag-arrow {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink-muted);
}

.urgency-copy {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.urgency-copy p { color: var(--ink-muted); font-size: 16.5px; margin-bottom: 16px; }
.urgency-copy b { color: var(--ink); font-weight: 600; }

/* ---------------- Finale ---------------- */

.finale {
  position: relative;
  padding: 110px 0 96px;
  background:
    radial-gradient(1100px 560px at 50% 0%, rgba(205,245,73,.12), transparent 60%),
    var(--bg-deep);
  overflow: hidden;
}
.finale-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.finale-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 22px;
}
.finale-lines {
  font-size: 18px;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.finale-lines b { color: var(--ink); }
.finale-offer {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 34px;
}
.finale-offer b { color: var(--lime); }
.finale-btn {
  font-size: 20px;
  padding: 21px 42px;
}
.finale .cta-badges { margin-top: 30px; }
.finale-last {
  margin-top: 34px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-muted);
}

/* ---------------- Footer ---------------- */

.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line-soft);
  padding: 44px 0 36px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-muted);
  transition: color .15s ease;
}
.footer-nav a:hover { color: var(--lime); }

.footer-legal {
  border-top: 1px solid var(--line-soft);
  padding-top: 24px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 14px; }
.footer-links a {
  font-size: 12.5px;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--line-soft);
  transition: color .15s ease, border-color .15s ease;
}
.footer-links a:hover { color: var(--lime); border-color: var(--line); }
.footer-legal p {
  font-size: 12px;
  color: var(--ink-muted);
  opacity: .75;
  line-height: 1.7;
  margin-bottom: 8px;
  max-width: 720px;
}

/* ---------------- Responsive ---------------- */

@media (max-width: 900px) {
  .main-nav { display: none; }
  .app-body { grid-template-columns: 1fr; }
  .app-tabs { display: none; }
  .fail-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .fail-card:nth-child(1),
  .fail-card:nth-child(2),
  .fail-card:nth-child(3) { transform: none; }
  .bp-desktop { display: none; }
  .title-dim { display: block; margin-top: 6px; }
  .hero-ring-left { width: 240px; left: -130px; opacity: .18; }
  .hero-ring-right { width: 190px; opacity: .2; }
  .audience-cards { grid-template-columns: 1fr; max-width: 440px; }
  .bento { grid-template-columns: 1fr; max-width: 480px; }
  .offer-grid { grid-template-columns: 1fr; max-width: 520px; }
  .price-card-wrap { position: static; }
  .pc-price { font-size: 72px; }
  .oi-value { font-size: 14px; }
  .vault-grid { grid-template-columns: 1fr; gap: 14px; }
  .vc-media { width: 124px; }
  .vc-body { padding: 14px 16px 14px; }
  .vc-body h4 { font-size: 15px; }
  .vc-body p { font-size: 12.5px; }
  .wall { grid-template-columns: 1fr; height: 560px; max-width: 480px; }
  .price-tags { flex-direction: column; gap: 18px; }
  .ptag-arrow { transform: rotate(90deg); }
  .finale-btn { width: 100%; justify-content: center; font-size: 17px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .cert { padding: 40px 22px 36px; transform: none; }
  .cert-footer { flex-direction: column; align-items: center; text-align: center; gap: 14px; padding-bottom: 110px; }
  .cert-sign { align-items: center; text-align: center; margin-right: 0; }
  .cert-seal { right: 50%; transform: translateX(50%) rotate(6deg); width: 96px; height: 96px; animation: none; }
  .folder { padding: 44px 24px 36px; transform: none; }
  .folder-tab { font-size: 11px; padding: 7px 12px 5px; }
  .folder-clip { right: 26px; }
  .folder-stamp { position: static; display: inline-block; margin-top: 24px; font-size: 16px; transform: rotate(-3deg); }
  .wall-col-2, .wall-col-3 { display: none; }
  .steps { grid-template-columns: 1fr; max-width: 480px; gap: 40px; }
  .steps-line {
    top: 8px; bottom: 8px; left: 12px; right: auto;
    width: 2px; height: auto;
    background: repeating-linear-gradient(180deg, rgba(205,245,73,.55) 0 10px, transparent 10px 20px);
    animation: dash-flow-v 0.9s linear infinite;
  }
  .step { padding-left: 46px; }
  .step-num { background: transparent; }
  .mid-cta { flex-direction: column; text-align: center; padding: 32px 24px; margin-top: 130px; }
  .mid-cta-action { align-items: center; width: 100%; }
  .mid-cta-action .btn {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 16px 20px;
    white-space: nowrap;
  }
  .cta-trust { justify-content: center; }
  .mid-cta-box { order: -1; align-self: center; width: 190px; margin-bottom: 0; }
  .mid-cta-box img, .cta-box-placeholder { margin-top: -110px; }
  .b-wide { grid-column: span 1; flex-direction: column; align-items: stretch; gap: 16px; }
  .mech-grid { grid-template-columns: 1fr; max-width: 480px; gap: 20px; }
  .way-old { transform: none; }
  .vs-coin {
    position: static;
    transform: none;
    justify-self: center;
    margin: 2px auto;
    box-shadow: 0 0 30px rgba(205,245,73,.15);
  }
  /* two-futures: hide desktop scene, show vertical timelines */
  .futures-canvas { display: none; }
  .futures { display: flex; }
  .future-row { grid-template-columns: 1fr; gap: 20px; }
  .future-track {
    flex-direction: column;
    gap: 18px;
    padding-top: 0;
    padding-left: 2px;
  }
  .future-track::before {
    left: 8px; right: auto; top: 8px; bottom: 8px;
    width: 2px; height: auto;
    transform: scaleY(0);
    transform-origin: top center;
  }
  .future-dim .future-track::before {
    background: repeating-linear-gradient(180deg, rgba(255,138,122,.55) 0 7px, transparent 7px 14px);
  }
  .in-view .future-track::before { transform: scaleY(1); }
  .fnode {
    display: grid;
    grid-template-columns: 15px 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    align-items: center;
  }
  .fnode .fdot { grid-row: 1 / 3; }
  .ftext { padding-right: 0; }
  .future-result { justify-self: start; padding: 11px 18px; }
  .problem-split { grid-template-columns: 1fr; gap: 44px; max-width: 540px; }
  .doc-mock { transform: rotate(-1.4deg); max-width: 420px; margin: 0 auto; }
  .doc-stamp { right: 4px; }
  .book { --bw: 118px; --bh: 177px; --bd: 26px; }
  .futures { gap: 18px; }
  .inaction-closer { font-size: 17px; }
  .split-legend { flex-direction: column; align-items: flex-start; gap: 8px; }
  .legend-item { align-items: flex-start; }
  .legend-dot { margin-top: 5px; }
  .split-bar { height: 48px; }
  .shelf-group { gap: 40px; padding-right: 40px; }
  .shelf-stage { gap: 40px; }
  .shelf-row::before, .shelf-row::after { width: 70px; }
}

@media (max-width: 560px) {
  .hero { padding-top: 64px; }
  .eyebrow { font-size: 11.5px; padding: 8px 14px; }
  .eyebrow-extra { display: none; }
  .hero-pipeline li { font-size: 12.5px; }
  .hero-pipeline li + li::before { margin: 0 10px; }
  .hero-sub { font-size: 16.5px; }
  .btn-primary { width: 100%; justify-content: center; }
  .btn-ghost { width: 100%; justify-content: center; }
  .proof-strip { flex-direction: column; align-items: flex-start; gap: 12px; }
  .proof-strip li { text-align: left; }
  .cta-badge { width: 100%; max-width: 340px; }
}

/* one-word wordmark fix: stop the flex gap from splitting "Booky"+"AI" */
.logo { gap: 0; }
.logo .logo-mark { margin-right: 10px; }

/* VSL embed fills the 16:9 frame */
.vsl-screen iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
