/* =========================================================================
   ALEXUS LAB — Funnel landing styles
   Builds on assets/tokens.css. Dark surfaces + paper document interludes.
   ========================================================================= */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink-1000);
  color: #EEEDEA;
  overflow-x: hidden;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
}

/* Smooth-image */
img { display: block; max-width: 100%; height: auto; }

/* =========================================================================
   TOP NAV
   ========================================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  background: rgba(10, 11, 12, 0.72);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__logo { height: 28px; }
.nav__right { display: flex; align-items: center; gap: 20px; }
.nav__spots {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #EEEDEA;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}
.nav__spots .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 0 0 rgba(127, 176, 105, 0.6);
  animation: pulse 2.4s var(--ease-out) infinite;
}
.nav__cta {
  font-family: var(--font-sans); font-weight: 500; font-size: 14px;
  padding: 10px 20px;
  color: var(--ink-1000);
  background: #EEEDEA;
  border: 0; border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--dur-2) var(--ease-out), background var(--dur-2);
}
.nav__cta:hover { background: #fff; transform: translateY(-1px); }
.nav__cta:active { transform: translateY(0.5px); opacity: 0.92; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(127,176,105,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(127,176,105,0); }
  100% { box-shadow: 0 0 0 0 rgba(127,176,105,0); }
}

/* =========================================================================
   PAGE WRAPPER
   ========================================================================= */
.page { width: 100%; }
.section {
  position: relative;
  padding: 96px 32px;
}
.section--paper {
  background: var(--paper);
  color: var(--paper-ink);
}
.section--paper {
  --line: rgba(26, 24, 20, 0.10);
  --line-strong: rgba(26, 24, 20, 0.22);
}
.section--ink-deep { background: #050506; }

.container {
  max-width: 1160px;
  margin: 0 auto;
}
.container--narrow { max-width: 880px; }
.container--wide { max-width: 1280px; }

/* =========================================================================
   TYPOGRAPHY HELPERS
   ========================================================================= */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px;
  background: var(--ink-400);
}
.section--paper .eyebrow { color: var(--ink-500); }
.section--paper .eyebrow::before { background: var(--ink-500); }

.headline {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0;
  color: #F2F1EE;          /* default = on dark surfaces */
}
.section--paper .headline { color: var(--paper-ink); }
/* All dark-surface headings need to be light. tokens.css points h1..h6
   at var(--fg) which is paper-ink by default; override here. */
.hero h1, .hero h2, .hero h3,
.section:not(.section--paper) h1,
.section:not(.section--paper) h2,
.section:not(.section--paper) h3,
.section:not(.section--paper) h4,
.testimonials h1, .testimonials h2, .testimonials h3, .testimonials h4,
.final-cta h1, .final-cta h2, .final-cta h3 { color: #F2F1EE; }
.section--paper h1, .section--paper h2, .section--paper h3, .section--paper h4 { color: var(--paper-ink); }
.headline .it {
  font-style: italic;
  font-weight: 400;
}
.headline--xl { font-size: clamp(44px, 6.4vw, 92px); }
.headline--lg { font-size: clamp(36px, 4.6vw, 64px); }
.headline--md { font-size: clamp(28px, 3.4vw, 44px); }

.sub {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--ink-300);
  margin: 0;
  max-width: 60ch;
}
.section--paper .sub { color: var(--ink-500); }

.num, .num-tabular {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.005em;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--dur-2) var(--ease-out), background var(--dur-2),
              border-color var(--dur-2), color var(--dur-2);
  white-space: nowrap;
}
.btn:active { transform: translateY(0.5px); opacity: 0.92; }
.btn--primary {
  background: var(--accent-green);
  color: var(--ink-1000);
  padding: 18px 32px;
  border-radius: 999px;
  font-weight: 600;
}
.btn--primary:hover { background: #91C075; transform: translateY(-1px); }
.btn--lg { padding: 22px 40px; font-size: 18px; }
.btn--ghost {
  background: transparent;
  color: inherit;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.32); }
.section--paper .btn--ghost { border-color: var(--line-strong); }
.section--paper .btn--ghost:hover { background: rgba(0,0,0,0.04); }

.btn .arrow {
  display: inline-block;
  transition: transform var(--dur-2) var(--ease-out);
}
.btn:hover .arrow { transform: translateX(3px); }

.cta-meta {
  display: flex; align-items: center; gap: 14px;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink-400);
}
.cta-meta .dot { width: 4px; height: 4px; background: var(--ink-400); border-radius: 50%; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  padding: 80px 32px 96px;
  overflow: hidden;
}
.hero__monogram {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 720px;
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
}
.hero__inner {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
}
.hero__eyebrow { margin-bottom: 36px; }
.hero__h1 {
  margin: 0 0 28px;
  max-width: 18ch;
}
.hero__h1 .accent { color: var(--accent-green); }
.hero__sub {
  margin: 0 0 40px;
  max-width: 60ch;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.5;
  color: var(--ink-200);
}
.hero__cta-row {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}
.hero__urgency {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 22px;
  background: rgba(232, 197, 71, 0.08);
  border: 1px solid rgba(232, 197, 71, 0.32);
  border-radius: 999px;
  font-size: 14px;
}
.hero__urgency .label {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 10.5px;
  color: var(--accent-yellow);
}
.hero__urgency .meter {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  color: #EEEDEA;
}
.hero__urgency .meter .num { font-weight: 600; color: var(--accent-yellow); }
.hero__urgency .bar {
  width: 80px; height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.hero__urgency .bar > i {
  display: block; height: 100%;
  background: var(--accent-yellow);
  border-radius: 999px;
}

.hero__offer {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 22px;
  background: rgba(127, 176, 105, 0.08);
  border: 1px solid rgba(127, 176, 105, 0.32);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: #EEEDEA;
  animation: offerGlow 4s ease-in-out infinite;
}
.hero__offer .label {
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 10.5px;
  color: var(--accent-green);
}
.hero__offer .divider {
  width: 1px; height: 14px;
  background: rgba(255, 255, 255, 0.16);
}
.hero__offer .text {
  font-family: var(--font-sans);
  font-size: 15px;
  color: #EEEDEA;
  display: inline-flex; align-items: baseline; gap: 10px;
}
.hero__offer .text b {
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--accent-green);
  font-size: 17px;
}
.hero__offer .strike {
  position: relative;
  font-size: 13px;
  color: var(--ink-400);
}
.hero__offer .strike::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px; top: 50%;
  height: 1.5px;
  background: var(--signal-down);
  transform: rotate(-8deg);
}

/* =========================================================================
   TRUST STRIP — beneath hero
   ========================================================================= */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 32px;
  background: rgba(255,255,255,0.015);
}
.trust__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.trust__item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--ink-200);
  letter-spacing: 0.005em;
}
.trust__item svg { flex-shrink: 0; }

/* =========================================================================
   VIDEO BLOCK
   ========================================================================= */
.video-section {
  padding: 96px 32px;
  border-top: 1px solid var(--line);
}
.video-frame {
  position: relative;
  max-width: 1040px;
  margin: 48px auto 0;
  aspect-ratio: 16 / 9;
  background: #0d0f11;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}
.video-frame__chart {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(232,197,71,0.08), transparent 70%),
    linear-gradient(180deg, #0d0f11 0%, #14110a 100%);
}
.video-frame__caption {
  position: absolute; top: 24px; left: 28px;
  display: flex; align-items: center; gap: 14px;
}
.video-frame__caption img { height: 36px; opacity: 0.85; }
.video-frame__caption .title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: #EEEDEA;
}
.video-frame__caption .author {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--ink-300);
  text-transform: uppercase;
}
.video-frame__play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
}
.video-frame__play .circle {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: grid; place-items: center;
  transition: transform var(--dur-2) var(--ease-out);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.video-frame:hover .video-frame__play .circle { transform: scale(1.06); }
.video-frame__play .triangle {
  width: 0; height: 0;
  border-left: 22px solid var(--ink-1000);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}
.video-frame__candles {
  position: absolute;
  inset: auto 0 0 0;
  height: 65%;
  display: flex; align-items: flex-end; justify-content: center;
  gap: 6px;
  padding: 0 40px 40px;
  opacity: 0.4;
  pointer-events: none;
}
.video-frame__candles span {
  display: block;
  width: 14px;
  background: var(--accent-yellow);
  border-radius: 1px;
  opacity: 0.7;
}

/* =========================================================================
   ANTES / DESPUÉS — paper, document-style
   ========================================================================= */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--ink-0);
}
.compare__col { padding: 40px 36px; }
.compare__col + .compare__col {
  border-left: 1px solid var(--line);
  background: #FBFAF7;
}
.compare__col .label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 24px;
}
.compare__col--after .label { color: var(--accent-green-deep); }
.compare__col h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 24px;
  color: var(--paper-ink);
}
.compare__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.compare__list li {
  display: flex; gap: 14px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-700);
}
.compare__list li .icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  margin-top: 1px;
}
.compare__col--before .icon { color: var(--signal-down-deep); }
.compare__col--after .icon { color: var(--accent-green-deep); }

/* =========================================================================
   FEATURES — ¿Qué incluye?
   ========================================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.feature-card {
  position: relative;
  background: var(--ink-900);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 18px;
  min-height: 360px;
  transition: transform var(--dur-3) var(--ease-out), border-color var(--dur-3);
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.18);
}
.feature-card__visual {
  height: 170px;
  border-radius: 8px;
  background: var(--ink-800);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.feature-card__visual.tall { height: 240px; }
.feature-card__visual img { width: 100%; height: 100%; object-fit: cover; }
.feature-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: -4px;
}
.feature-card__tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--accent-green);
  background: rgba(127, 176, 105, 0.08);
  border: 1px solid rgba(127, 176, 105, 0.22);
  padding: 5px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}
.feature-card__index {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-500);
  font-weight: 500;
}
.feature-card__index::before {
  content: "— ";
  opacity: 0.6;
}
.feature-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #EEEDEA;
  margin: 0;
}
.feature-card__title .it { font-style: italic; }
.feature-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-300);
  margin: 0;
}

/* Synthetic visuals (when no image) */
.viz {
  position: absolute; inset: 0;
  display: grid; place-items: center;
}
.viz-candles {
  width: 86%; height: 70%;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 3px;
}
.viz-candles i {
  flex: 1; min-width: 4px;
  background: linear-gradient(180deg, var(--accent-yellow), #AB8A2D);
  border-radius: 1px; opacity: 0.85;
}
.viz-candles i.down { background: linear-gradient(180deg, var(--signal-down), var(--signal-down-deep)); }

.viz-ecg {
  width: 88%; height: 60%;
}
.viz-ecg svg { width: 100%; height: 100%; }

.viz-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  width: 80%;
  height: 70%;
}
.viz-calendar i {
  background: var(--ink-700);
  border-radius: 2px;
}
.viz-calendar i.active { background: var(--accent-green); opacity: 0.85; }
.viz-calendar i.dim { background: var(--ink-800); }

/* =========================================================================
   ALEX STORY — Paper, long-form
   ========================================================================= */
.story-section { padding: 120px 32px; }
.story-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  margin-top: 64px;
  align-items: start;
}
.story-photo {
  position: sticky;
  top: 100px;
  display: flex; flex-direction: column;
  gap: 16px;
}
.story-photo__main {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--paper-deep);
}
.story-photo__main img { width: 100%; height: 100%; object-fit: cover; }
.story-photo__caption {
  font-family: var(--font-sans);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-500);
  text-align: center;
}
.story-prose {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-700);
  max-width: 60ch;
}
.story-prose > p { margin: 0 0 22px; }
.story-prose > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 4em;
  float: left;
  line-height: 0.85;
  padding: 6px 12px 0 0;
  color: var(--paper-ink);
}
.story-prose strong { color: var(--paper-ink); font-weight: 600; }
.story-prose .pull {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.3;
  color: var(--paper-ink);
  margin: 32px 0;
  padding: 0;
  border-left: 2px solid var(--paper-ink);
  padding-left: 24px;
  max-width: 28ch;
}
.story-divider {
  text-align: center;
  margin: 48px 0;
  color: var(--ink-400);
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.4em;
}

/* Photo timeline */
.timeline {
  margin-top: 88px;
  border-top: 1px solid var(--line);
  padding-top: 56px;
}
.timeline__head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 32px;
}
.timeline__head h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  color: var(--paper-ink);
}
.timeline__head .meta {
  font-family: var(--font-sans);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.timeline__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.timeline__item {
  display: flex; flex-direction: column; gap: 10px;
}
.timeline__item .photo {
  aspect-ratio: 4 / 5;
  background: var(--paper-deep);
  overflow: hidden;
  border-radius: 4px;
}
.timeline__item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.18) contrast(1.02); }
.timeline__item .label {
  display: flex; justify-content: space-between; gap: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--ink-500);
}
.timeline__item .label .yr { color: var(--paper-ink); font-weight: 600; }
.timeline__item .label .where { text-transform: uppercase; }

/* =========================================================================
   PRICING
   ========================================================================= */
.pricing-section {
  padding: 120px 32px;
  border-top: 1px solid var(--line);
}
.pricing-head {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  margin-bottom: 56px;
}
.pricing-urgency {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 16px 24px;
  background: rgba(232, 197, 71, 0.08);
  border: 1px solid rgba(232, 197, 71, 0.32);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
}
.pricing-urgency .label {
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 10.5px;
  color: var(--accent-yellow);
}
.pricing-urgency .meter { font-family: var(--font-mono); color: #EEEDEA; }
.pricing-urgency .meter b { color: var(--accent-yellow); font-weight: 700; }
.pricing-urgency .bar {
  width: 100px; height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px; overflow: hidden;
}
.pricing-urgency .bar > i { display: block; height: 100%; background: var(--accent-yellow); }

.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}
.plan {
  position: relative;
  background: var(--ink-900);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 44px 40px;
  display: flex; flex-direction: column;
}
.plan--featured {
  border-color: rgba(127, 176, 105, 0.4);
  background: linear-gradient(180deg, #14201A 0%, var(--ink-900) 60%);
}
.plan__ribbon {
  position: absolute;
  top: -1px; right: 32px;
  padding: 6px 14px;
  background: var(--accent-green);
  color: var(--ink-1000);
  border-radius: 0 0 6px 6px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.plan__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #EEEDEA;
  margin: 0 0 6px;
}
.plan__name .it { font-style: italic; color: var(--ink-300); }
.plan__sub {
  font-size: 13px;
  color: var(--ink-400);
  margin: 0 0 24px;
}
.plan__price-row {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 6px;
}
.plan__price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}
.plan__period {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--ink-300);
}
.plan__crossed {
  position: relative;
  font-family: var(--font-mono);
  color: var(--ink-400);
  font-size: 18px;
  letter-spacing: -0.02em;
}
.plan__crossed::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px; top: 50%;
  height: 2px;
  background: var(--signal-down);
  transform: rotate(-8deg);
}
.plan__save {
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-green);
}
.plan__save .arrow { font-size: 14px; }
.plan__features {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.plan__features li {
  display: flex; gap: 12px;
  font-size: 14.5px;
  color: var(--ink-200);
  line-height: 1.5;
}
.plan__features .check {
  flex-shrink: 0;
  color: var(--accent-green);
  margin-top: 2px;
}
.plan__cta {
  margin-top: auto;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.plan__cta .btn { width: 100%; }
.plan__cta .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--ink-400);
}

.pricing-guarantee {
  max-width: 720px;
  margin: 56px auto 0;
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-300);
  line-height: 1.6;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.pricing-guarantee svg { flex-shrink: 0; color: var(--ink-300); }

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.testimonials {
  padding: 120px 32px;
  background: #050506;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.testi {
  background: var(--ink-900);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 32px 28px;
  display: flex; flex-direction: column;
  gap: 24px;
}
.testi__quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: #EEEDEA;
  margin: 0;
  letter-spacing: -0.01em;
}
.testi__quote::before {
  content: "“";
  display: block;
  font-size: 64px;
  line-height: 0.4;
  margin-bottom: 18px;
  color: var(--accent-green);
  opacity: 0.65;
}
.testi__author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testi__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink-700);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: #EEEDEA;
}
.testi__meta {
  display: flex; flex-direction: column;
  gap: 2px;
}
.testi__name {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: #EEEDEA;
}
.testi__sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--ink-400);
}

/* =========================================================================
   FINAL CTA
   ========================================================================= */
.final-cta {
  position: relative;
  padding: 140px 32px;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.final-cta__monogram {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
}
.final-cta__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
}
.final-cta h2 .it { font-style: italic; }
.final-cta p { color: var(--ink-300); margin: 0; max-width: 50ch; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
  padding: 48px 32px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--ink-400);
}
.footer__logo { height: 24px; opacity: 0.85; }
.footer__legal {
  display: flex; gap: 24px;
}

/* =========================================================================
   SECTION HEADERS (generic)
   ========================================================================= */
.section-head {
  display: flex; flex-direction: column; gap: 24px;
  max-width: 720px;
}
.section-head--center {
  text-align: center;
  margin: 0 auto;
  align-items: center;
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-photo { position: static; max-width: 380px; margin: 0 auto; }
  .timeline__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__inner { grid-template-columns: repeat(3, 1fr); }
  .section, .hero, .video-section, .story-section, .pricing-section,
  .testimonials, .final-cta { padding-top: 72px; padding-bottom: 72px; }
  .story-section { padding-top: 88px; padding-bottom: 88px; }
}
@media (max-width: 720px) {
  .nav { padding: 14px 18px; }
  .nav__cta { display: none; }
  .nav__spots { padding: 5px 10px; font-size: 11px; }
  .nav__logo { height: 24px; }
  .section, .hero, .video-section, .story-section, .pricing-section,
  .testimonials, .final-cta { padding-left: 20px; padding-right: 20px; padding-top: 64px; padding-bottom: 64px; }
  .hero { padding-top: 52px; padding-bottom: 64px; }
  .hero__monogram { width: 460px; right: -180px; bottom: -200px; }
  .hero__h1 { margin-bottom: 22px; }
  .hero__sub { font-size: 16px; }
  .hero__cta-row { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 36px; }
  .hero__cta-row .btn { width: 100%; }
  .btn--lg { padding: 18px 24px; font-size: 16px; }
  .hero__offer { flex-wrap: wrap; padding: 12px 16px; font-size: 13px; gap: 10px; }
  .hero__offer .text { font-size: 14px; }
  .hero__offer .divider { display: none; }
  .trust { padding: 22px 20px; }
  .trust__inner { grid-template-columns: 1fr 1fr; gap: 14px 18px; }
  .trust__item { font-size: 12.5px; gap: 8px; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .feature-card { min-height: 0; padding: 22px; }
  .feature-card__visual { height: 150px; }
  .feature-card__title { font-size: 19px; }
  .feature-card__desc { font-size: 13.5px; }
  .compare { grid-template-columns: 1fr; margin-top: 36px; }
  .compare__col { padding: 30px 24px; }
  .compare__col h3 { font-size: 22px; margin-bottom: 18px; }
  .compare__col + .compare__col { border-left: 0; border-top: 1px solid var(--line); }
  .compare__list li { font-size: 14px; }
  .story-section { padding: 64px 20px; }
  .story-prose { font-size: 16px; line-height: 1.7; }
  .story-prose .pull { font-size: 22px; padding-left: 18px; margin: 24px 0; }
  .story-prose > p:first-of-type::first-letter { font-size: 3.2em; padding: 4px 9px 0 0; }
  .timeline { margin-top: 56px; padding-top: 36px; }
  .timeline__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .timeline__head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .pricing-section { padding-top: 72px; padding-bottom: 72px; }
  .pricing-head { margin-bottom: 40px; gap: 18px; }
  .pricing-urgency { padding: 12px 16px; flex-wrap: wrap; gap: 10px; font-size: 12.5px; }
  .pricing-urgency .bar { width: 70px; }
  .plans { grid-template-columns: 1fr; gap: 18px; }
  .plan { padding: 32px 26px; }
  .plan__price { font-size: 52px; }
  .plan__price-row { flex-wrap: wrap; gap: 10px; }
  .plan__features li { font-size: 14px; }
  .pricing-guarantee { flex-direction: column; text-align: center; gap: 10px; margin-top: 40px; padding: 0 8px; font-size: 13px; }
  .testimonials { padding: 72px 20px; }
  .testi-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .testi { padding: 26px 24px 22px; gap: 18px; }
  .testi__quote { font-size: 18px; }
  .testi__quote::before { font-size: 48px; margin-bottom: 12px; }
  .final-cta { padding: 88px 20px; }
  .final-cta h2 { font-size: 36px; }
  .final-cta__monogram { width: 360px; }
  .final-cta__inner > div:last-of-type { flex-direction: column; width: 100%; align-items: stretch; }
  .final-cta__inner > div:last-of-type .btn { width: 100%; }
  .footer { flex-direction: column; align-items: flex-start; padding: 36px 20px; }
  .section-head .headline,
  .section-head--center .headline { font-size: clamp(28px, 8vw, 38px) !important; }
  .headline--xl { font-size: clamp(36px, 11vw, 56px); line-height: 1.05; }
}
@media (max-width: 420px) {
  .timeline__grid { grid-template-columns: 1fr; }
  .nav__spots span:last-child { display: none; }
  .nav__spots { padding: 5px; }
  .nav__spots .dot { margin: 0 2px; }
  .plan__price { font-size: 44px; }
}

/* =========================================================================
   ANIMATIONS
   ========================================================================= */

/* Slow drift on the hero monogram — cortisol-aware, barely-there motion */
@keyframes monogramDrift {
  0%   { transform: translate(0, 0) rotate(0deg); }
  50%  { transform: translate(-12px, -10px) rotate(2deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}
.hero__monogram,
.final-cta__monogram { animation: monogramDrift 24s ease-in-out infinite; }

/* Subtle live pulse on the offer pill */
@keyframes offerGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(127, 176, 105, 0); }
  50%      { box-shadow: 0 0 0 6px rgba(127, 176, 105, 0.08); }
}

/* Shimmer sweep across the primary CTA */
.btn--primary { position: relative; overflow: hidden; isolation: isolate; }
.btn--primary::before {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 70%; height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: -1;
  animation: ctaShimmer 5.5s ease-in-out infinite;
}
@keyframes ctaShimmer {
  0%   { left: -120%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}

/* Plan ribbon — gentle breath so the recommended plan reads as "active" */
@keyframes ribbonBreath {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-2px); }
}
.plan--featured .plan__ribbon { animation: ribbonBreath 3.8s ease-in-out infinite; }
.plan--featured {
  position: relative;
  overflow: hidden;
}
.plan--featured::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: radial-gradient(circle at 50% -10%, rgba(127, 176, 105, 0.22), transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.plan--featured > * { position: relative; z-index: 1; }

/* Animated underline accent on hero headline accent words */
.hero__h1 .accent {
  background-image: linear-gradient(transparent calc(100% - 5px), rgba(127, 176, 105, 0.7) 5px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  animation: accentUnderline 1.6s 0.6s var(--ease-out) forwards;
  padding-bottom: 2px;
}
@keyframes accentUnderline {
  to { background-size: 100% 100%; }
}

/* Hero entry choreography */
.hero__eyebrow,
.hero__h1,
.hero__sub,
.hero__cta-row,
.hero__offer {
  opacity: 0;
  transform: translateY(14px);
  animation: heroIn 0.8s var(--ease-out) forwards;
}
.hero__eyebrow  { animation-delay: 0.05s; }
.hero__h1       { animation-delay: 0.18s; }
.hero__sub      { animation-delay: 0.34s; }
.hero__cta-row  { animation-delay: 0.50s; }
.hero__offer    { animation-delay: 0.66s; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Generic reveal-on-scroll — toggled by IntersectionObserver in app.jsx */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-stagger.in > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.00s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.40s; }

/* Card hover lift — stronger affordance on desktop, kept calm on mobile */
@media (hover: hover) {
  .feature-card { transition: transform 0.5s var(--ease-out), border-color 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out); }
  .feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  }
  .plan { transition: transform 0.5s var(--ease-out), border-color 0.5s var(--ease-out); }
  .plan:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.22); }
  .plan--featured:hover { border-color: rgba(127, 176, 105, 0.6); }
}

/* Live dot pulse — already there, just slowed to a breathing rhythm */
.nav__spots .dot { animation-duration: 3s; }

/* Animated candles on the live-room feature card */
.feature-card .viz-candles i {
  animation: candleTick 4.5s ease-in-out infinite;
  transform-origin: bottom center;
}
.feature-card .viz-candles i:nth-child(odd)  { animation-delay: 0.0s; }
.feature-card .viz-candles i:nth-child(3n)   { animation-delay: 0.8s; }
.feature-card .viz-candles i:nth-child(4n)   { animation-delay: 1.6s; }
.feature-card .viz-candles i:nth-child(5n)   { animation-delay: 2.4s; }
@keyframes candleTick {
  0%, 100% { transform: scaleY(1); opacity: 0.85; }
  45%      { transform: scaleY(1.18); opacity: 1; }
  55%      { transform: scaleY(0.92); opacity: 0.9; }
}

/* ECG line dash sweep on the repaso card */
.feature-card .viz-ecg svg path[stroke="var(--accent-green)"] {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: ecgDraw 5s ease-in-out infinite;
}
@keyframes ecgDraw {
  0%   { stroke-dashoffset: 600; }
  60%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -600; }
}

/* Reduce motion respect */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero__eyebrow, .hero__h1, .hero__sub, .hero__cta-row, .hero__offer,
  .reveal, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================================================================
   V2 — CONVERSION OVERHAUL
   Sticky mobile CTA, live ticker, live chart, story toggle, scroll progress
   ========================================================================= */

/* Scroll progress bar at the very top */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-yellow));
  z-index: 100;
  transition: width 0.08s linear;
  box-shadow: 0 0 12px rgba(127, 176, 105, 0.5);
}

/* Hero live chart — ambient animated background */
.hero__chart {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.75;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 75%, transparent 100%);
}
.hero { position: relative; }
.hero__inner { position: relative; z-index: 2; }
.hero__monogram { z-index: 1; }

/* Live dot inside hero eyebrow */
.live-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-green);
  margin-right: 6px;
  position: relative;
  box-shadow: 0 0 0 0 rgba(127, 176, 105, 0.5);
  animation: liveDotPulse 2s ease-out infinite;
  vertical-align: middle;
}
@keyframes liveDotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(127, 176, 105, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(127, 176, 105, 0); }
  100% { box-shadow: 0 0 0 0 rgba(127, 176, 105, 0); }
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  display: grid;
  place-items: start center;
  padding-top: 7px;
  text-decoration: none;
  z-index: 3;
  transition: border-color 0.3s var(--ease-out);
}
.hero__scroll:hover { border-color: rgba(255,255,255,0.4); }
.hero__scroll span {
  display: block;
  width: 3px; height: 7px;
  background: var(--accent-green);
  border-radius: 2px;
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(10px); opacity: 0.2; }
}
@media (max-width: 720px) {
  .hero__scroll { display: none; }
}

/* =========================================================================
   LIVE TICKER — infinite marquee, replaces trust strip
   ========================================================================= */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  padding: 16px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker__track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: tickerScroll 48s linear infinite;
  will-change: transform;
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--ink-200);
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent-green);
  opacity: 0.7;
  flex-shrink: 0;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker:hover .ticker__track { animation-play-state: paused; }
@media (max-width: 720px) {
  .ticker { padding: 14px 0; }
  .ticker__item { font-size: 13px; gap: 10px; }
  .ticker__track { gap: 26px; animation-duration: 38s; }
}

/* =========================================================================
   COMPARE — with center arrow on desktop
   ========================================================================= */
.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
}
.compare__arrow {
  display: grid;
  place-items: center;
  padding: 0 8px;
  color: var(--ink-500);
  background: linear-gradient(180deg, var(--ink-0), #FBFAF7);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  position: relative;
}
.compare__arrow::before,
.compare__arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  background: var(--line);
  transform: translateX(-50%);
}
.compare__arrow::before { top: 0; height: calc(50% - 28px); }
.compare__arrow::after  { bottom: 0; height: calc(50% - 28px); }
.compare__arrow svg {
  background: #FBFAF7;
  padding: 6px;
  border-radius: 50%;
  border: 1px solid var(--line);
  position: relative;
  z-index: 1;
  animation: arrowNudge 3s ease-in-out infinite;
}
@keyframes arrowNudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(4px); }
}
.compare__col .label .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.compare__col--before .label .dot { background: var(--signal-down); }
.compare__col--after .label .dot  { background: var(--accent-green); }
.compare__col h3 { display: none; }  /* removed in v2 — cleaner */
.compare__col { padding: 36px 32px; }
@media (max-width: 720px) {
  .compare { grid-template-columns: 1fr; }
  .compare__arrow {
    border-left: 0; border-right: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
    background: #FBFAF7;
  }
  .compare__arrow svg { transform: rotate(90deg); animation: arrowNudgeV 3s ease-in-out infinite; }
  @keyframes arrowNudgeV {
    0%, 100% { transform: rotate(90deg) translateX(0); }
    50%      { transform: rotate(90deg) translateX(4px); }
  }
  .compare__arrow::before,
  .compare__arrow::after { display: none; }
  .compare__col { padding: 28px 22px; }
}

/* =========================================================================
   STORY — collapsible on mobile
   ========================================================================= */
.story-toggle {
  display: none;
  margin: 28px auto 0;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--paper-ink);
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  gap: 8px;
  align-items: center;
  transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.story-toggle:hover { background: rgba(0,0,0,0.04); }
.story-toggle .chev {
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
  margin-left: 6px;
}
.story-toggle .chev.up { transform: rotate(180deg); }

@media (max-width: 720px) {
  .story-toggle { display: inline-flex; }
  .story-prose {
    max-height: 280px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s var(--ease-out);
  }
  .story-prose::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 100px;
    background: linear-gradient(180deg, transparent, var(--paper));
    pointer-events: none;
    transition: opacity 0.3s var(--ease-out);
  }
  .story-prose.expanded {
    max-height: 3000px;
  }
  .story-prose.expanded::after { opacity: 0; }
  /* Drop-cap a touch smaller on mobile */
  .story-prose > p:first-of-type::first-letter { font-size: 3em; }
}

/* =========================================================================
   PRICING — mobile polish
   ========================================================================= */
@media (max-width: 720px) {
  .plan { padding: 28px 22px; }
  .plan__price { font-size: 48px; }
  .plan__name { font-size: 20px; }
  .plan__features li { font-size: 13.5px; gap: 10px; }
  .plan__features { padding-top: 18px; gap: 10px; margin-bottom: 24px; }
  .plan__ribbon { padding: 5px 12px; font-size: 10px; right: 22px; }
  .pricing-section { padding-top: 64px; padding-bottom: 96px; }
  .pricing-head .headline { font-size: 32px !important; }
}

/* =========================================================================
   FINAL CTA — wrap buttons stack on mobile
   ========================================================================= */
.final-cta__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 720px) {
  .final-cta__buttons { flex-direction: column; width: 100%; }
  .final-cta__buttons .btn { width: 100%; }
  .final-cta { padding: 72px 20px 120px; }
  .final-cta h2 { font-size: 34px; }
}

/* =========================================================================
   MOBILE STICKY CTA BAR — only visible on phones
   ========================================================================= */
.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 18px;
  background: rgba(10, 11, 12, 0.92);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  pointer-events: none;
}
.mobile-cta.in {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-cta__price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex: 1;
  min-width: 0;
  color: #EEEDEA;
}
.mobile-cta__price .num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}
.mobile-cta__price .per {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--ink-300);
}
.mobile-cta__price .strike {
  position: relative;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-400);
  margin-left: 8px;
}
.mobile-cta__price .strike::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px; top: 50%;
  height: 1.5px;
  background: var(--signal-down);
  transform: rotate(-8deg);
}
.mobile-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-green);
  color: var(--ink-1000);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.mobile-cta__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
  transform: translateX(-100%);
  z-index: -1;
  animation: mobileCtaShimmer 4.5s ease-in-out infinite;
}
@keyframes mobileCtaShimmer {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}
.mobile-cta__btn .arrow {
  display: inline-block;
  transition: transform 0.2s var(--ease-out);
}
.mobile-cta__btn:active .arrow { transform: translateX(2px); }

@media (max-width: 720px) {
  .mobile-cta { display: flex; }
  /* Make sure floor content isn't hidden behind the sticky bar */
  .footer { padding-bottom: 88px; }
  /* Hide hero offer pill (redundant on mobile when sticky bar is active) */
  /* Keep it actually — it's useful in hero. Just tighten. */
}

/* =========================================================================
   MOBILE TYPOGRAPHY — final tightening
   ========================================================================= */
@media (max-width: 720px) {
  /* Make hero headline punchier, kill subline */
  .hero__h1 { font-size: clamp(38px, 11.5vw, 56px); line-height: 1.02; margin-bottom: 18px; }
  .hero__sub { font-size: 15.5px; line-height: 1.5; max-width: 38ch; margin-bottom: 28px; }
  .hero__eyebrow { margin-bottom: 24px; font-size: 10.5px; }
  .hero { padding-top: 44px; padding-bottom: 56px; }

  /* Sections — tighter, less air */
  .section { padding-top: 56px; padding-bottom: 56px; }
  .section-head { gap: 14px; margin-bottom: 4px; }
  .section-head .sub { font-size: 14px; line-height: 1.5; }

  /* Headlines all flatter on mobile */
  .headline--lg { font-size: clamp(28px, 8.5vw, 38px) !important; line-height: 1.05; }

  /* Feature card text */
  .feature-card { padding: 20px; min-height: 0; gap: 14px; }
  .feature-card__visual { height: 140px; }
  .feature-card__visual.tall { height: 220px; }
  .feature-card__title { font-size: 18px; }
  .feature-card__desc { font-size: 13.5px; line-height: 1.5; }
  .feature-card__tag { font-size: 9.5px; padding: 4px 9px; }
  .feature-card__index { font-size: 10px; }

  /* Compare list — tighter */
  .compare__list li { font-size: 14px; gap: 12px; }
  .compare__col .label { font-size: 10.5px; margin-bottom: 18px; gap: 8px; }

  /* Story */
  .story-prose { font-size: 15.5px; line-height: 1.65; }
  .story-prose .pull { font-size: 20px; padding-left: 16px; }

  /* Testimonials */
  .testi__quote { font-size: 16.5px; line-height: 1.45; }
  .testi__quote::before { font-size: 44px; margin-bottom: 8px; }
  .testi { padding: 24px 20px 20px; gap: 16px; }

  /* Pricing guarantee — tighter */
  .pricing-guarantee { font-size: 12.5px; padding: 0 8px; }
}

/* =========================================================================
   HERO OFFER — desktop visual punch
   ========================================================================= */
.hero__offer { animation: offerGlow 4s ease-in-out infinite, heroIn 0.8s var(--ease-out) 0.66s backwards; }

/* =========================================================================
   HERO PROOF ROW — quick social-proof stats under offer pill
   ========================================================================= */
.hero__proof {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink-300);
  max-width: 560px;
  opacity: 0;
  transform: translateY(14px);
  animation: heroIn 0.8s var(--ease-out) 0.82s forwards;
}
.hero__proof b {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 15px;
  color: var(--accent-green);
  margin-right: 5px;
  letter-spacing: -0.01em;
}
.hero__proof .sep { color: var(--ink-500); opacity: 0.5; }
@media (max-width: 720px) {
  .hero__proof { font-size: 12px; gap: 6px 12px; margin-top: 14px; }
  .hero__proof b { font-size: 13.5px; }
  .hero__proof .sep { display: none; }
  .hero__proof span:not(.sep) {
    display: inline-flex; align-items: center;
    padding: 5px 11px;
    background: rgba(127, 176, 105, 0.06);
    border: 1px solid rgba(127, 176, 105, 0.22);
    border-radius: 999px;
  }
}

/* =========================================================================
   INSIDE THE LAB — platform mock
   ========================================================================= */
.inside {
  padding: 96px 32px;
  background: linear-gradient(180deg, var(--ink-1000) 0%, #06070A 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.inside::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 400px at 20% 0%, rgba(127, 176, 105, 0.10), transparent 70%),
    radial-gradient(ellipse 600px 300px at 90% 100%, rgba(232, 197, 71, 0.07), transparent 70%);
  pointer-events: none;
}
.inside > .container { position: relative; }
.inside-card {
  margin-top: 56px;
  background: linear-gradient(180deg, #0E1014 0%, #0A0B0D 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(127, 176, 105, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.inside-card__pulse {
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(127, 176, 105, 0.18) 40%, transparent 60%);
  background-size: 200% 100%;
  animation: insidePulse 8s ease-in-out infinite;
  opacity: 0.5;
  mix-blend-mode: screen;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1.5px;
}
@keyframes insidePulse {
  0%, 100% { background-position: -200% 0; }
  50%      { background-position: 200% 0; }
}
.inside-card__chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--line);
}
.inside-card__dot {
  width: 10px; height: 10px; border-radius: 50%;
  display: inline-block;
}
.inside-card__dot--r { background: #E26B5C; }
.inside-card__dot--y { background: #E8C547; }
.inside-card__dot--g { background: var(--accent-green); }
.inside-card__title {
  margin-left: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-300);
}
.inside-card__live {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--accent-green);
  text-transform: uppercase;
}
.inside-card__body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 460px;
}
.inside-card__nav {
  background: rgba(255, 255, 255, 0.015);
  border-right: 1px solid var(--line);
  padding: 14px 8px;
  font-family: var(--font-sans);
  overflow: hidden;
}
.inside-card__nav-group {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
  padding: 12px 10px 6px;
}
.inside-card__nav-group:first-of-type { padding-top: 4px; }
.inside-card__nav-item {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  font-size: 12.5px;
  color: var(--ink-300);
  border-radius: 5px;
  cursor: default;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.inside-card__nav-item:hover { color: #EEEDEA; background: rgba(255, 255, 255, 0.03); }
.inside-card__nav-item .h { color: var(--ink-500); font-weight: 600; }
.inside-card__nav-item.active {
  background: rgba(127, 176, 105, 0.16);
  color: #EEEDEA;
  font-weight: 500;
}
.inside-card__nav-item.active .h { color: var(--accent-green); }
.inside-card__stage {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 0;
  min-height: 0;
}
.inside-card__chart {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}
.inside-card__chart-head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-300);
}
.inside-card__chart-head b { color: #EEEDEA; font-weight: 600; margin-right: 4px; }
.inside-card__chart-head .green { color: var(--accent-green); font-family: var(--font-mono); }
.inside-card__chart-svg {
  flex: 1;
  width: 100%;
  min-height: 180px;
}
.inside-card__chart-svg path[stroke="var(--accent-green)"] {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: insideChartDraw 3.2s var(--ease-out) 0.4s forwards;
}
@keyframes insideChartDraw {
  to { stroke-dashoffset: 0; }
}
.inside-card__feed {
  padding: 18px 18px 8px;
  display: flex; flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.012);
  overflow: hidden;
}
.inside-card__msg {
  display: flex; gap: 10px;
  opacity: 0;
  transform: translateY(8px);
  animation: insideMsgIn 0.5s var(--ease-out) forwards;
}
.inside-card__msg:nth-child(1) { animation-delay: 0.5s; }
.inside-card__msg:nth-child(2) { animation-delay: 1.4s; }
.inside-card__msg:nth-child(3) { animation-delay: 2.4s; }
.inside-card__msg:nth-child(4) { animation-delay: 3.4s; }
@keyframes insideMsgIn {
  to { opacity: 1; transform: translateY(0); }
}
.inside-card__msg .av {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink-700);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  color: #EEEDEA;
  flex-shrink: 0;
}
.inside-card__msg .av--alex {
  background: var(--accent-green);
  color: var(--ink-1000);
  font-weight: 600;
}
.inside-card__msg .bd { flex: 1; min-width: 0; }
.inside-card__msg .who {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  margin-bottom: 2px;
}
.inside-card__msg .who b { font-weight: 600; color: #EEEDEA; }
.inside-card__msg .who span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-400);
  letter-spacing: 0.03em;
  display: inline-flex; align-items: center; gap: 4px;
}
.inside-card__msg .tx {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-200);
}
.inside-card__msg .tx .green { color: var(--accent-green); font-weight: 500; }
.inside-card__msg.typing .who span { color: var(--ink-300); font-style: italic; }
.inside-card__msg.typing .dots {
  display: inline-flex; gap: 2px; align-items: center;
}
.inside-card__msg.typing .dots i {
  width: 3px; height: 3px;
  background: var(--ink-400);
  border-radius: 50%;
  animation: typingDot 1.2s ease-in-out infinite;
}
.inside-card__msg.typing .dots i:nth-child(2) { animation-delay: 0.15s; }
.inside-card__msg.typing .dots i:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingDot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30%           { opacity: 1;   transform: translateY(-2px); }
}

.inside-cta {
  margin-top: 56px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.inside-cta p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #EEEDEA;
  margin: 0;
  max-width: 36ch;
}

/* Mobile collapse: stack chart over feed, hide sidebar */
@media (max-width: 860px) {
  .inside { padding: 64px 20px; }
  .inside-card { margin-top: 36px; border-radius: 12px; }
  .inside-card__body { grid-template-columns: 1fr; min-height: 0; }
  .inside-card__nav { display: none; }
  .inside-card__stage { grid-template-columns: 1fr; }
  .inside-card__chart { border-right: 0; border-bottom: 1px solid var(--line); padding: 16px; }
  .inside-card__chart-svg { min-height: 160px; }
  .inside-card__feed { padding: 14px; }
  .inside-card__title { font-size: 10px; margin-left: 8px; }
  .inside-card__live { font-size: 9.5px; letter-spacing: 0.12em; }
  .inside-cta { margin-top: 36px; }
  .inside-cta p { font-size: 18px; }
}

/* =========================================================================
   FAQ
   ========================================================================= */
.faq-section { padding: 96px 32px; }
.faq {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
  transition: background 0.2s var(--ease-out);
}
.faq__item.open { background: rgba(127, 176, 105, 0.03); }
.faq__q {
  appearance: none;
  background: transparent;
  border: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: #EEEDEA;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s var(--ease-out);
}
.faq__q:hover { color: var(--accent-green); }
.faq__chev {
  width: 28px; height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-200);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.faq__item.open .faq__chev {
  transform: rotate(45deg);
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: var(--ink-1000);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
  padding: 0 24px;
}
.faq__item.open .faq__a {
  max-height: 600px;
}
.faq__a > p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-300);
  margin: 0;
  padding-bottom: 22px;
  max-width: 64ch;
}
@media (max-width: 720px) {
  .faq-section { padding: 64px 20px; }
  .faq__q { padding: 18px 18px; font-size: 16px; gap: 14px; }
  .faq__chev { width: 24px; height: 24px; font-size: 14px; }
  .faq__a { padding: 0 18px; }
  .faq__a > p { font-size: 14.5px; padding-bottom: 18px; }
  .faq { margin-top: 32px; }
}

/* =========================================================================
   FEATURE CARDS — stronger hover/tap, green echo
   ========================================================================= */
.feature-card {
  transition: transform 0.5s var(--ease-out), border-color 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
@media (hover: hover) {
  .feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(127, 176, 105, 0.38);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(127, 176, 105, 0.18);
  }
  .feature-card:hover .feature-card__tag {
    background: rgba(127, 176, 105, 0.18);
    border-color: rgba(127, 176, 105, 0.48);
  }
}
.feature-card:active { transform: translateY(-1px); }

/* Pricing plan hover: tighter green glow */
@media (hover: hover) {
  .plan:hover { box-shadow: 0 14px 40px rgba(0,0,0,0.35); }
  .plan--featured:hover { box-shadow: 0 16px 48px rgba(127,176,105,0.18); }
}

/* Testimonial hover */
.testi {
  transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
@media (hover: hover) {
  .testi:hover { transform: translateY(-3px); border-color: rgba(127, 176, 105, 0.25); }
}

/* Stronger primary CTA */
.btn--primary {
  position: relative;
  box-shadow: 0 8px 22px rgba(127, 176, 105, 0.22);
  transition: transform 0.2s var(--ease-out), background 0.2s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.btn--primary:hover {
  box-shadow: 0 12px 32px rgba(127, 176, 105, 0.4);
}

/* Mobile tap feedback */
@media (max-width: 720px) {
  .btn:active, .nav__cta:active, .mobile-cta__btn:active, .inside-cta .btn:active {
    transform: scale(0.97);
    transition: transform 0.1s ease-out;
  }
  .feature-card:active { transform: scale(0.985); }
  .faq__q:active { background: rgba(127, 176, 105, 0.06); }
}

/* =========================================================================
   TOP BANNER — thin sticky offer bar above nav
   ========================================================================= */
.top-banner {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 44px 10px 18px;
  background:
    linear-gradient(90deg, rgba(127, 176, 105, 0.18), rgba(232, 197, 71, 0.10) 60%, rgba(127, 176, 105, 0.18)),
    #0A0B0D;
  border-bottom: 1px solid rgba(127, 176, 105, 0.28);
  color: #EEEDEA;
  font-family: var(--font-sans);
  font-size: 13px;
  overflow: hidden;
}
.top-banner__pulse {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(127, 176, 105, 0.18) 40%, transparent 60%);
  background-size: 200% 100%;
  animation: topBannerShimmer 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes topBannerShimmer {
  0%, 100% { background-position: 200% 0; }
  50%      { background-position: -200% 0; }
}
.top-banner > * { position: relative; }
.top-banner__text {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  letter-spacing: 0.005em;
}
.top-banner__text b {
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--accent-green);
}
.top-banner__text .sep { color: rgba(255, 255, 255, 0.3); }
.top-banner__text .price {
  font-family: var(--font-mono);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.top-banner__text .strike {
  position: relative;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-400);
}
.top-banner__text .strike::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px; top: 50%;
  height: 1.5px;
  background: var(--signal-down);
  transform: rotate(-8deg);
}
.top-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-green);
  color: var(--ink-1000);
  font-weight: 600;
  font-size: 12.5px;
  padding: 6px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out);
  flex-shrink: 0;
}
.top-banner__cta:hover { transform: translateY(-1px); }
.top-banner__cta:active { transform: scale(0.97); }
.top-banner__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  line-height: 1;
  width: 24px; height: 24px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.top-banner__close:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }

/* Adjust scroll progress and nav to sit below the banner */
.scroll-progress { top: 0; }

@media (max-width: 560px) {
  .top-banner { padding: 8px 38px 8px 14px; gap: 10px; font-size: 12px; }
  .top-banner__text { gap: 6px; flex-wrap: wrap; justify-content: center; }
  .top-banner__text b { font-size: 9.5px; letter-spacing: 0.06em; }
  .top-banner__text .sep { display: none; }
  .top-banner__text .strike { font-size: 11px; }
  .top-banner__cta { font-size: 11.5px; padding: 5px 11px; }
  .top-banner__close { right: 8px; font-size: 16px; }
}

/* =========================================================================
   LIVE TOAST — floating notification bottom-left
   ========================================================================= */
.live-toast {
  position: fixed;
  left: 16px;
  bottom: 18px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 36px 10px 14px;
  background: rgba(15, 17, 20, 0.95);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink-200);
  max-width: 320px;
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  pointer-events: none;
}
.live-toast.in {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.live-toast b { color: #EEEDEA; font-weight: 600; }
.live-toast__icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.live-toast--join .live-toast__icon {
  background: rgba(127, 176, 105, 0.18);
  color: var(--accent-green);
}
.live-toast--live .live-toast__icon {
  background: rgba(127, 176, 105, 0.12);
  color: var(--accent-green);
}
.live-toast--alert .live-toast__icon {
  background: rgba(232, 197, 71, 0.16);
  color: var(--accent-yellow);
}
.live-toast__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 0 0 rgba(127, 176, 105, 0.5);
  animation: liveDotPulse 1.8s ease-out infinite;
}
.live-toast__text { line-height: 1.35; }
.live-toast__close {
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  line-height: 1;
  width: 20px; height: 20px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.live-toast__close:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }

@media (max-width: 720px) {
  .live-toast {
    left: 10px;
    right: 10px;
    bottom: 80px;
    max-width: none;
    font-size: 12.5px;
    padding: 9px 32px 9px 12px;
  }
}

/* =========================================================================
   V3 ADDITIONS — hero microcopy, bullets, new sections styling
   ========================================================================= */

/* Hide the old hero__proof (now replaced by microcopy + bullets) */
.hero__offer { display: none; }
.hero__proof { display: none; }

.hero__microcopy {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink-300);
  opacity: 0;
  transform: translateY(14px);
  animation: heroIn 0.8s var(--ease-out) 0.66s forwards;
}
.hero__microcopy .price {
  color: #EEEDEA;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: -0.01em;
}
.hero__microcopy .dot {
  width: 3px; height: 3px;
  background: var(--ink-500);
  border-radius: 50%;
  opacity: 0.6;
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex; flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(14px);
  animation: heroIn 0.8s var(--ease-out) 0.82s forwards;
}
.hero__bullets li {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink-100);
  padding: 12px 16px;
  background: rgba(127, 176, 105, 0.05);
  border: 1px solid rgba(127, 176, 105, 0.18);
  border-radius: 8px;
}
.hero__bullet-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent-green);
  width: 24px;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .hero__microcopy { font-size: 12px; }
  .hero__bullets { margin-top: 22px; gap: 8px; }
  .hero__bullets li { padding: 10px 14px; font-size: 14px; }
}

/* Compare kicker (closing line under Antes/Después) */
.compare__kicker {
  margin: 36px auto 0;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
  color: var(--paper-ink);
  max-width: 42ch;
}
.compare__kicker strong {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  color: var(--accent-green-deep);
}
@media (max-width: 720px) {
  .compare__kicker { font-size: 17px; margin-top: 28px; padding: 0 8px; }
}

/* =========================================================================
   FEATURE VIZ — trade card (replaces candle bars)
   ========================================================================= */
.viz--trade { padding: 0 !important; align-items: stretch !important; justify-content: stretch !important; }
.trade-card {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  padding: 12px 14px;
  background: linear-gradient(180deg, #0D1014 0%, #0A0B0C 100%);
  border-radius: 6px;
  gap: 8px;
}
.trade-card__head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-300);
}
.trade-card__sym b, .trade-card__sym {
  color: #EEEDEA;
  font-weight: 600;
  font-family: var(--font-mono);
  font-size: 11px;
}
.trade-card__sym em {
  font-style: normal;
  color: var(--ink-400);
  margin-left: 4px;
  font-weight: 500;
}
.trade-card__side {
  background: rgba(127, 176, 105, 0.16);
  color: var(--accent-green);
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 700;
}
.trade-card__chart {
  flex: 1;
  min-height: 90px;
}
.trade-card__meta {
  display: flex; gap: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-100);
  border-top: 1px solid var(--line);
  padding-top: 6px;
}
.trade-card__meta span {
  display: inline-flex; align-items: baseline; gap: 4px;
}
.trade-card__meta em {
  font-style: normal;
  color: var(--ink-400);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =========================================================================
   INSIDE — doc-style replacement for chat panel
   ========================================================================= */
.inside-card__stage--solo { grid-template-columns: 1fr 1fr; }
.inside-doc {
  padding: 22px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.012);
}
.inside-doc__head {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  margin-bottom: 4px;
}
.inside-doc__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: #EEEDEA;
}
.inside-doc__date {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--ink-400);
  text-transform: uppercase;
}
.inside-doc__row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: baseline;
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--ink-200);
  line-height: 1.45;
}
.inside-doc__lbl {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-green);
  padding-top: 1px;
}
.inside-doc__val { color: var(--ink-200); }
.inside-doc__val b { color: #EEEDEA; font-family: var(--font-mono); font-weight: 600; }

.inside-card__chart-head .yellow { color: var(--accent-yellow); }

.inside-note {
  margin: 28px auto 0;
  max-width: 60ch;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-300);
}
.inside-cta .meta-line {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-400);
}

@media (max-width: 860px) {
  .inside-card__stage--solo { grid-template-columns: 1fr; }
  .inside-doc { border-right: 0; border-bottom: 1px solid var(--line); padding: 18px; }
  .inside-doc__row { grid-template-columns: 84px 1fr; font-size: 12px; gap: 8px; }
  .inside-doc__lbl { font-size: 9px; }
}

/* =========================================================================
   PRICING ANCHOR PHRASE
   ========================================================================= */
.pricing-anchor {
  margin: 8px auto 0;
  max-width: 60ch;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-300);
  padding: 14px 22px;
  background: rgba(127, 176, 105, 0.06);
  border: 1px solid rgba(127, 176, 105, 0.18);
  border-radius: 8px;
}
@media (max-width: 720px) {
  .pricing-anchor { font-size: 14.5px; padding: 12px 16px; }
}

/* =========================================================================
   TESTIMONIALS DISCLAIMER
   ========================================================================= */
.testi-disclaimer {
  margin: 36px auto 0;
  max-width: 50ch;
  text-align: center;
  font-size: 12px;
  font-style: italic;
  color: var(--ink-500);
}

/* =========================================================================
   ESTO ES PARA TI
   ========================================================================= */
.paratip-section {
  padding: 88px 32px;
  background: linear-gradient(180deg, var(--ink-1000) 0%, #06070A 100%);
  border-bottom: 1px solid var(--line);
}
.paratip-list {
  list-style: none; padding: 0; margin: 48px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.paratip-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink-100);
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
@media (hover: hover) {
  .paratip-item:hover {
    border-color: rgba(127, 176, 105, 0.4);
    background: rgba(127, 176, 105, 0.04);
  }
}
.paratip-item__num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent-green);
  flex-shrink: 0;
  width: 22px;
  padding-top: 1px;
}
.paratip-kicker {
  margin: 32px auto 0;
  max-width: 56ch;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: #EEEDEA;
}
.paratip-kicker strong {
  font-style: normal;
  font-weight: 600;
  color: var(--accent-green);
}
.paratip-cta {
  margin-top: 28px;
  text-align: center;
}
@media (max-width: 720px) {
  .paratip-section { padding: 64px 20px; }
  .paratip-list { grid-template-columns: 1fr; margin-top: 32px; gap: 10px; }
  .paratip-item { padding: 14px 16px; font-size: 14px; }
  .paratip-kicker { font-size: 18px; margin-top: 24px; }
  .paratip-cta .btn { width: 100%; }
}

/* =========================================================================
   SISTEMA SEMANAL
   ========================================================================= */
.sistema-section {
  padding: 96px 32px;
  border-top: 1px solid var(--line);
  background: #050506;
}
.sistema-list {
  list-style: none; padding: 0; margin: 56px auto 0;
  max-width: 760px;
  display: flex; flex-direction: column;
}
.sistema-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding-bottom: 32px;
}
.sistema-step:last-child { padding-bottom: 0; }
.sistema-step__rail {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px;
}
.sistema-step__num {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(127, 176, 105, 0.4);
  background: rgba(127, 176, 105, 0.10);
  font-family: var(--font-mono);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-green);
}
.sistema-step__line {
  flex: 1;
  width: 1px;
  background: linear-gradient(180deg, rgba(127, 176, 105, 0.4), rgba(127, 176, 105, 0));
  min-height: 24px;
}
.sistema-step:last-child .sistema-step__line { display: none; }
.sistema-step__body {
  padding-top: 4px;
  padding-bottom: 8px;
}
.sistema-step__when {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 6px;
}
.sistema-step__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #EEEDEA;
  margin: 0 0 6px;
}
.sistema-step__desc {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-300);
  margin: 0;
  max-width: 52ch;
}
@media (max-width: 720px) {
  .sistema-section { padding: 64px 20px; }
  .sistema-list { margin-top: 36px; }
  .sistema-step { grid-template-columns: 44px 1fr; gap: 14px; padding-bottom: 24px; }
  .sistema-step__num { width: 36px; height: 36px; font-size: 12px; }
  .sistema-step__title { font-size: 19px; }
  .sistema-step__desc { font-size: 14px; }
  .sistema-step__when { font-size: 9.5px; letter-spacing: 0.10em; }
}

/* =========================================================================
   LO QUE NO ES
   ========================================================================= */
.noes-section {
  padding: 96px 32px;
  background: var(--paper);
  color: var(--paper-ink);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  --line: rgba(26, 24, 20, 0.10);
  --line-strong: rgba(26, 24, 20, 0.22);
}
.noes-section .eyebrow { color: var(--ink-500); }
.noes-section .eyebrow::before { background: var(--ink-500); }
.noes-section .headline { color: var(--paper-ink); }
.noes {
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 960px;
}
.noes__col {
  background: var(--ink-0);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 26px;
}
.noes__col--no { background: #FBFAF7; }
.noes__col--si { background: var(--ink-0); border-color: rgba(127, 176, 105, 0.4); }
.noes__label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.noes__col--no .noes__label { color: var(--signal-down-deep); }
.noes__col--si .noes__label { color: var(--accent-green-deep); }
.noes ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.noes li {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-700);
}
.noes li .icon {
  flex-shrink: 0;
  display: grid; place-items: center;
  width: 22px; height: 22px;
  margin-top: 1px;
}
.noes__col--no li .icon { color: var(--signal-down-deep); }
.noes__col--si li .icon { color: var(--accent-green-deep); }
.noes-kicker {
  margin: 36px auto 0;
  max-width: 50ch;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--paper-ink);
}
.noes-kicker strong { font-style: normal; font-weight: 600; color: var(--accent-green-deep); }
@media (max-width: 720px) {
  .noes-section { padding: 64px 20px; }
  .noes { grid-template-columns: 1fr; margin-top: 32px; gap: 12px; }
  .noes__col { padding: 22px 20px; }
  .noes li { font-size: 14px; }
  .noes-kicker { font-size: 18px; margin-top: 28px; }
}

/* =========================================================================
   V4 — Section background alternation + Hero tightening
   ========================================================================= */

/* When EstoEsParaTi is on paper, override its dark gradient */
.section--paper.paratip-section {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.section--paper.paratip-section .paratip-item {
  background: var(--ink-0);
  border-color: var(--line);
  color: var(--ink-700);
}
.section--paper.paratip-section .paratip-item__num { color: var(--accent-green-deep); }
.section--paper.paratip-section .paratip-kicker { color: var(--paper-ink); }
.section--paper.paratip-section .paratip-kicker strong { color: var(--accent-green-deep); }
@media (hover: hover) {
  .section--paper.paratip-section .paratip-item:hover {
    border-color: rgba(127, 176, 105, 0.5);
    background: #FBFAF7;
  }
}

/* When SistemaSemanal is on paper, recolor its dark steps */
.section--paper.sistema-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.section--paper.sistema-section .sistema-step__num {
  background: var(--ink-0);
  border-color: rgba(127, 176, 105, 0.45);
  color: var(--accent-green-deep);
}
.section--paper.sistema-section .sistema-step__when { color: var(--ink-500); }
.section--paper.sistema-section .sistema-step__title { color: var(--paper-ink); }
.section--paper.sistema-section .sistema-step__desc { color: var(--ink-700); }
.section--paper.sistema-section .sistema-step__line {
  background: linear-gradient(180deg, rgba(127, 176, 105, 0.45), rgba(127, 176, 105, 0));
}

/* When Testimonials is on paper, override the deep-black bg */
.section--paper.testimonials {
  background: var(--paper);
  padding: 96px 32px;
}
.section--paper.testimonials .testi {
  background: var(--ink-1000);
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
}
.section--paper.testimonials .testi__quote { color: #F2F1EE; }
.section--paper.testimonials .testi__name { color: #F2F1EE; }
.section--paper.testimonials .testi__sub { color: var(--ink-400); }
.section--paper.testimonials .testi-disclaimer { color: var(--ink-500); }
@media (max-width: 720px) {
  .section--paper.testimonials { padding: 72px 20px; }
}

/* Hero — tighten now that the headline is a single phrase (2 lines max) */
.hero__h1 {
  margin-bottom: 22px;
}
@media (max-width: 720px) {
  .hero__h1 {
    font-size: clamp(40px, 12vw, 60px);
    line-height: 1.02;
    margin-bottom: 18px;
  }
  .hero { padding-top: 36px; padding-bottom: 48px; }
  .hero__eyebrow { margin-bottom: 22px; }
  .hero__sub { font-size: 15px; margin-bottom: 24px; }
  .hero__cta-row { gap: 10px; margin-bottom: 18px; }
  .hero__microcopy { font-size: 11.5px; }
  .hero__bullets { margin-top: 18px; gap: 8px; }
}





/* =========================================================================
   FEATURE VIZ — weekly calendar (forecast)
   ========================================================================= */
.viz--cal { padding: 0 !important; align-items: stretch !important; justify-content: stretch !important; }
.cal {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  padding: 10px 12px;
  gap: 4px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 40%),
    var(--ink-900);
  border-radius: 6px;
}
.cal__head {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.04em;
  color: var(--ink-300);
  padding: 4px 6px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
}
.cal__head-right { color: var(--accent-green); }
.cal__row {
  display: grid;
  grid-template-columns: 38px 22px 1fr;
  align-items: center;
  gap: 7px;
  padding: 3px 6px;
  font-family: var(--font-sans);
  font-size: 10px;
  line-height: 1.25;
  color: var(--ink-200);
}
.cal__day {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  color: var(--ink-300);
}
.cal__day b { color: var(--ink-100); margin-right: 3px; font-weight: 600; }
.cal__pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.04em;
  padding: 2px 5px;
  border-radius: 3px;
  color: var(--ink-1000);
}
.cal__pill--low  { background: var(--ink-500); color: var(--ink-100); }
.cal__pill--med  { background: var(--accent-yellow); }
.cal__pill--high { background: var(--signal-down); color: #fff; }
.cal__note {
  font-size: 9.5px;
  color: var(--ink-200);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cal__row--high .cal__note { color: #FFB8B0; }
.cal__row--med  .cal__note { color: #F5D58A; }
.cal__strip {
  margin-top: 6px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  border-top: 1px solid var(--line);
  padding-top: 6px;
}
.cal__strip-cell {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 4px 5px;
  display: flex; flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.cal__strip-cell em {
  font-family: var(--font-mono);
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  color: var(--ink-200);
}
.cal__strip-cell span {
  font-family: var(--font-sans);
  font-size: 8px;
  color: var(--ink-400);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cal__strip-cell.op {
  background: rgba(127, 176, 105, 0.10);
  border-color: rgba(127, 176, 105, 0.4);
}
.cal__strip-cell.op em { color: var(--accent-green); }
.cal__strip-cell.op span { color: var(--accent-green); }

/* =========================================================================
   FEATURE VIZ — Discord-style channel sidebar (community card)
   ========================================================================= */
.viz--channels { padding: 0 !important; align-items: stretch !important; justify-content: stretch !important; }
.channels {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  padding: 8px 6px 8px 8px;
  font-family: var(--font-sans);
  background: linear-gradient(180deg, #0F1114 0%, #0A0B0C 100%);
  border-radius: 6px;
  overflow: hidden;
}
.channels__head {
  font-size: 10.5px;
  font-weight: 600;
  color: #EEEDEA;
  padding: 4px 6px 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
  letter-spacing: 0.005em;
}
.channels__group {
  display: flex; flex-direction: column;
  margin-top: 4px;
}
.channels__group:first-of-type { margin-top: 0; }
.channels__group-label {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-400);
  padding: 3px 4px;
}
.channels__item {
  display: flex; align-items: center; gap: 4px;
  padding: 2.5px 6px;
  font-size: 10px;
  color: var(--ink-300);
  border-radius: 3px;
}
.channels__item.active {
  background: rgba(127, 176, 105, 0.12);
  color: #EEEDEA;
  font-weight: 500;
}
.channels__item.active .channels__hash { color: var(--accent-green); }
.channels__hash {
  color: var(--ink-500);
  font-weight: 600;
}

/* =========================================================================
   FEATURE VIZ — Cortisol / nervous-system control card
   ========================================================================= */
.viz--cortisol { padding: 0 !important; align-items: stretch !important; justify-content: stretch !important; }
.cortisol {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  padding: 12px 14px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(178, 107, 92, 0.12), transparent 70%),
    var(--ink-900);
  border-radius: 6px;
  gap: 6px;
}
.cortisol__top {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.05em;
}
.cortisol__label {
  color: var(--signal-down);
  text-transform: uppercase;
  font-weight: 600;
}
.cortisol__label::before {
  content: "● ";
  font-size: 8px;
  animation: liveDotPulse 1.4s ease-out infinite;
  display: inline;
  vertical-align: middle;
}
.cortisol__pulse { color: var(--ink-200); }
.cortisol__pulse b {
  color: var(--signal-down);
  font-weight: 600;
  font-size: 14px;
  margin-right: 2px;
}
.cortisol__ecg {
  width: 100%;
  height: 40px;
  margin-top: 2px;
}
.cortisol__ecg path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: ecgScan 3.2s linear infinite;
}
@keyframes ecgScan {
  0%   { stroke-dashoffset: 600; }
  100% { stroke-dashoffset: -600; }
}
.cortisol__protocol {
  display: flex; flex-direction: column;
  gap: 3px;
  margin-top: 4px;
}
.cortisol__protocol span {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--ink-200);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cortisol__protocol i {
  flex-shrink: 0;
  width: 16px;
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent-green);
  border: 1px solid rgba(127, 176, 105, 0.32);
  background: rgba(127, 176, 105, 0.08);
  border-radius: 2px;
  text-align: center;
  padding: 1px 0;
}

/* Mobile tightening for the new vizs */
@media (max-width: 720px) {
  .cal__row { grid-template-columns: 36px 22px 1fr; font-size: 9.5px; gap: 6px; }
  .cal__note { font-size: 9px; }
  .cal__strip-cell span { font-size: 7.5px; }
  .channels__item { font-size: 9.5px; padding: 2px 5px; }
  .channels__head { font-size: 10px; }
  .channels__group-label { font-size: 8px; }
  .cortisol__protocol span { font-size: 9.5px; }
}

