/* ================================================================
 * Headway Internal Educational Talks — AI talk by Maksym Petrovskyi
 * One-page interactive landing · Hybrid theme (95% Headway + 5% Goodly orange)
 * ================================================================ */

@import url('tokens.css');

/* Reset & globals */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  background: var(--hy-bg-primary);
  color: var(--hy-text-primary);
  font-family: var(--hy-font-body);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }

/* Subtle background texture — radial gradient bloom at hero */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(900px 700px at 12% -8%, rgba(211,255,85,0.08), transparent 60%),
    radial-gradient(700px 600px at 92% 10%, rgba(255,137,29,0.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
main { position: relative; z-index: 1; }

/* ================================================================
 * STICKY NAV
 * ================================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  background: rgba(11,18,21,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: opacity .3s, transform .3s;
}
.nav.hidden { opacity: 0; transform: translateY(-100%); pointer-events: none; }
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  font: 700 15px/1 var(--hy-font-display);
  letter-spacing: -0.01em;
}
.nav__brand .divider { width: 1px; height: 18px; background: rgba(255,255,255,0.3); }
.nav__brand img { width: 22px; height: 22px; border-radius: 5px; }
.nav__list {
  display: flex; gap: 36px; list-style: none;
  font: 600 13px/1 var(--hy-font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav__link {
  color: rgba(255,255,255,0.5);
  transition: color .2s;
  display: inline-block;
  padding: 6px 0;
  border-bottom: 1.5px solid transparent;
}
.nav__link:hover { color: rgba(255,255,255,0.9); }
.nav__link.active {
  color: var(--hy-accent-lime);
  border-bottom-color: var(--hy-accent-orange-500);
}
.nav__progress {
  font: 500 12px/1 'JetBrains Mono', 'SF Mono', monospace;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
}
@media (max-width: 900px) {
  .nav__list { display: none; }
}

/* ================================================================
 * Layout primitives
 * ================================================================ */
.section {
  position: relative;
  padding: 120px 80px;
  max-width: 1440px;
  margin: 0 auto;
  scroll-margin-top: 70px;
}
.section--full { max-width: none; padding-left: 0; padding-right: 0; }
.section + .section { padding-top: 60px; }

.divider {
  max-width: 1440px;
  margin: 0 auto;
  height: 1.5px;
  background: var(--hy-accent-orange-500);
  margin-block: 24px;
}

.eyebrow {
  display: inline-block;
  font: 700 14px/1 var(--hy-font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hy-accent-lime);
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--hy-accent-orange-500);
  margin-bottom: 24px;
}

.headline {
  font: 600 56px/1.15 var(--hy-font-display);
  letter-spacing: -0.015em;
  max-width: 1100px;
  margin-bottom: 28px;
}
.headline .accent { color: var(--hy-highlight-lime); }

.lede {
  font: 400 22px/1.5 var(--hy-font-body);
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.005em;
  max-width: 760px;
}

/* ================================================================
 * HERO
 * ================================================================ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 56px 80px 80px;
  position: relative;
  overflow: hidden;
}
.hero__top {
  display: flex; align-items: center; justify-content: space-between;
  font: 600 13px/1 var(--hy-font-body);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero__cobrand { display: inline-flex; align-items: center; gap: 14px; }
.hero__cobrand .h-mark {
  font: 700 22px/1 var(--hy-font-display);
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--hy-text-primary);
}
.hero__cobrand .divider {
  width: 1px; height: 22px; background: rgba(255,255,255,0.35);
  margin: 0;
}
.hero__cobrand .g-icon { width: 26px; height: 26px; border-radius: 6px; }

.hero__center { display: flex; flex-direction: column; gap: 28px; max-width: 1280px; }
.hero__eyebrow {
  display: inline-block; align-self: flex-start;
  font: 700 14px/1 var(--hy-font-body);
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--hy-accent-lime);
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--hy-accent-orange-500);
}
.hero__title {
  font: 700 88px/1.05 var(--hy-font-display);
  letter-spacing: -0.025em;
  max-width: 1200px;
}
.hero__title .accent { color: var(--hy-highlight-lime); }
.hero__subtitle {
  font: 400 24px/1.4 var(--hy-font-body);
  color: rgba(255,255,255,0.7);
  max-width: 720px;
}

.hero__bottom {
  display: flex; align-items: flex-end; justify-content: space-between;
  font: 500 13px/1.3 var(--hy-font-body);
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.hero__scroll {
  display: inline-flex; align-items: center; gap: 12px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
}
.hero__scroll-arrow {
  display: inline-block; width: 14px; height: 14px;
  border-right: 1.5px solid var(--hy-accent-lime);
  border-bottom: 1.5px solid var(--hy-accent-lime);
  transform: rotate(45deg);
  margin-bottom: 4px;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: rotate(45deg) translate(0,0); }
  50% { transform: rotate(45deg) translate(3px,3px); }
}

@media (max-width: 1100px) {
  .hero__title { font-size: 64px; }
  .hero { padding: 48px 32px; }
  .section { padding: 80px 32px; }
}

/* ================================================================
 * INTRO — 2-column bio + pull quote
 * ================================================================ */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.intro__bio { display: flex; flex-direction: column; gap: 18px; }
.intro__bio-line {
  font: 400 19px/1.6 var(--hy-font-body);
  color: rgba(255,255,255,0.85);
}
.intro__bio-line .step {
  display: inline-block;
  padding: 2px 10px;
  font: 600 13px/1.4 'JetBrains Mono', monospace;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  margin-right: 4px;
  letter-spacing: 0.04em;
}
.intro__bio-line .step.lime { color: var(--hy-accent-lime); background: rgba(211,255,85,0.1); }
.intro__bio-line .step.now { color: var(--hy-accent-orange-500); background: rgba(255,137,29,0.12); }

.pullquote {
  border-left: 2px solid var(--hy-accent-orange-500);
  padding: 8px 0 8px 32px;
  font: 500 32px/1.35 var(--hy-font-display);
  letter-spacing: -0.005em;
  color: rgba(255,255,255,0.92);
}
.pullquote__author {
  margin-top: 24px;
  font: 600 13px/1 var(--hy-font-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 900px) {
  .intro { grid-template-columns: 1fr; gap: 32px; }
  .pullquote { font-size: 24px; padding-left: 20px; }
}

/* ================================================================
 * QR REVEAL — appears beneath the laziness pullquote on cue
 * ================================================================ */
/* Floating overlay — never affects document flow. Centered on viewport
   with backdrop blur so the QR stays readable from the back of the room
   without pushing the laziness slide around. */
.qr-reveal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.qr-reveal[hidden] { display: none; }
.qr-reveal:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}
.qr-reveal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 21, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.qr-reveal__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  transform: scale(0.92);
  transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.qr-reveal:not([hidden]) .qr-reveal__card { transform: scale(1); }
.qr-reveal__svg {
  width: 360px; height: 360px;
  display: block;
  border-radius: 18px;
  background: #0B1215; /* matches QR bg */
}
.qr-reveal__label {
  font: 600 15px/1.5 var(--hy-font-body);
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}
.qr-reveal__url {
  font: 600 13px/1 'JetBrains Mono', ui-monospace, monospace;
  color: var(--hy-accent-orange-500);
  letter-spacing: 0.06em;
}

/* ── Persistent mini QR (bottom-left) ──────────────────────────── */
.qr-mini {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 50;
  display: block;
  width: 88px;
  height: 88px;
  padding: 6px;
  border-radius: 12px;
  background: rgba(11, 18, 21, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: opacity 320ms ease, transform 200ms ease;
  -webkit-tap-highlight-color: transparent;
}
.qr-mini img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}
.qr-mini:hover { transform: scale(1.04); }
body.credits-active .qr-mini { opacity: 0; pointer-events: none; }
/* Hide the QR on slides where the bottom-left footprint collides with
   essential slide content (audited 2026-05-02): hero byline, smm and
   practices bottom-anchored numbers blocks. data-current-slide is
   driven by the IntersectionObserver in scripts.js. */
body[data-current-slide="hero"] .qr-mini,
body[data-current-slide="smm"] .qr-mini,
body[data-current-slide="practices"] .qr-mini { opacity: 0; pointer-events: none; }
@media (prefers-reduced-motion: reduce) {
  .qr-mini { transition: none; }
}

.qr-toggle {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(11, 18, 21, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font: 600 12px/1 var(--hy-font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.qr-toggle:hover { background: rgba(11, 18, 21, 0.92); color: #fff; }
.qr-toggle:active { transform: scale(0.97); }
.qr-toggle__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--hy-accent-orange-500);
  box-shadow: 0 0 0 4px rgba(255, 137, 29, 0.18);
}
.qr-toggle.is-on { background: rgba(255, 137, 29, 0.16); border-color: var(--hy-accent-orange-500); color: #fff; }
.qr-toggle.is-on .qr-toggle__dot { box-shadow: 0 0 0 6px rgba(255, 137, 29, 0.28); }

/* Position the toggle relative to the intro section (a relative parent) */
.intro { position: relative; }

@media (max-width: 900px) {
  .qr-reveal__svg { width: 280px; height: 280px; }
  .qr-toggle { right: 16px; bottom: 16px; }
}

/* ================================================================
 * CATEGORY SECTION (shared)
 * ================================================================ */
.category__head { margin-bottom: 56px; max-width: 1100px; }
.category__num {
  font: 700 14px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.18em;
  color: var(--hy-accent-orange-500);
  margin-bottom: 8px;
}
.category__lead {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 48px;
}
.category__need {
  font: 400 20px/1.5 var(--hy-font-body);
  color: rgba(255,255,255,0.78);
  max-width: 540px;
}
.category__need strong { color: var(--hy-accent-lime); font-weight: 600; }

@media (max-width: 900px) {
  .category__lead { grid-template-columns: 1fr; gap: 24px; }
}

/* ================================================================
 * BROWSER CHROME CARD (for mockups)
 * ================================================================ */
.chrome-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.chrome-card__bar {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.chrome-card__dots { display: inline-flex; gap: 7px; }
.chrome-card__dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.chrome-card__dot:nth-child(1) { background: rgba(255,95,87,0.7); }
.chrome-card__dot:nth-child(2) { background: rgba(255,189,46,0.7); }
.chrome-card__dot:nth-child(3) { background: rgba(40,201,64,0.7); }
.chrome-card__url {
  flex: 1;
  padding: 6px 14px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  font: 500 12px/1.3 'JetBrains Mono', monospace;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}
.chrome-card__live {
  display: inline-flex; align-items: center; gap: 6px;
  font: 600 10px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hy-accent-green);
}
.chrome-card__live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--hy-accent-green);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.7); }
}
.chrome-card__body { background: #F2EDE6; min-height: 540px; }
.chrome-card__body--dark { background: #0E0F12; min-height: 540px; }

/* Tabs inside chrome */
.chrome-tabs {
  display: flex; gap: 4px;
  padding: 12px 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: #F2EDE6;
}
.chrome-tabs.dark {
  background: #0E0F12;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.chrome-tab {
  padding: 10px 18px;
  font: 500 13px/1 var(--hy-font-body);
  border-radius: 8px 8px 0 0;
  color: rgba(46,16,30,0.55);
  border: 1px solid transparent;
  border-bottom: none;
  transition: all .15s;
}
.chrome-tab:hover { background: rgba(46,16,30,0.05); }
.chrome-tab.active {
  background: #fff;
  color: #2E101E;
  font-weight: 600;
  border-color: rgba(46,16,30,0.08);
}
.chrome-tabs.dark .chrome-tab { color: rgba(255,201,108,0.55); }
.chrome-tabs.dark .chrome-tab:hover { background: rgba(255,201,108,0.06); }
.chrome-tabs.dark .chrome-tab.active {
  background: rgba(255,201,108,0.08);
  color: #ffc96c;
  border-color: rgba(255,201,108,0.2);
}

.tab-panel { display: none; padding: 28px 32px; }
.tab-panel.active { display: block; }

/* ================================================================
 * GoodlySMM mockup — Goodly's authentic palette inside chrome
 * (cream canvas + plum + marigold + periwinkle + rose)
 * ================================================================ */
.smm {
  --plum: #2E101E;
  --plum-soft: #4a2236;
  --marigold: #F1AE1B;
  --periwinkle: #9F9DD6;
  --rose: #D3B9BF;
  --cream: #F2EDE6;
  --paper: #FAF7F2;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--plum);
}
.smm h1, .smm h2, .smm h3, .smm h4 { font-family: inherit; color: var(--plum); }

/* SMM dashboard */
.smm-dash {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.smm-stat {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid rgba(46,16,30,0.06);
}
.smm-stat__label {
  display: flex; align-items: center; gap: 8px;
  font: 500 11px/1 var(--hy-font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(46,16,30,0.55);
  margin-bottom: 12px;
}
.smm-stat__icon {
  width: 26px; height: 26px;
  border-radius: 7px;
  display: inline-flex; align-items: center; justify-content: center;
  font: 600 13px/1 'Inter', sans-serif;
}
.smm-stat__icon.plum { background: rgba(46,16,30,0.08); color: var(--plum); }
.smm-stat__icon.marigold { background: rgba(241,174,27,0.18); color: #b8830f; }
.smm-stat__icon.peri { background: rgba(159,157,214,0.22); color: #5854a0; }
.smm-stat__icon.rose { background: rgba(211,185,191,0.3); color: #9c5e6c; }
.smm-stat__value {
  font: 600 32px/1 var(--hy-font-body);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.smm-stat__delta {
  font: 500 12px/1 var(--hy-font-body);
  color: #1a8e3e;
}
.smm-stat__delta.warn { color: #c1681e; }

/* SMM feed grid */
.smm-feed-controls {
  display: flex; gap: 8px; margin-bottom: 16px;
  font: 500 13px/1 var(--hy-font-body);
}
.smm-pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(46,16,30,0.05);
  color: rgba(46,16,30,0.65);
  border: 1px solid transparent;
  font-size: 12px;
}
.smm-pill.active {
  background: var(--plum);
  color: #fff;
}
/* SMM Generate Week wizard */
.smm-wiz { display: flex; flex-direction: column; gap: 16px; }
.smm-wiz__steps { display: flex; gap: 4px; align-items: center; margin-bottom: 8px; }
.smm-wiz__step {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 8px;
  font: 600 11px/1 var(--hy-font-body);
  letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(46,16,30,0.05);
  color: rgba(46,16,30,0.55);
}
.smm-wiz__step.active { background: var(--plum); color: #fff; }
.smm-wiz__step.done { background: rgba(26,142,62,0.12); color: #1a8e3e; }
.smm-wiz__connector { flex: 0 1 24px; height: 1px; background: rgba(46,16,30,0.15); }

.smm-progress {
  background: #fff;
  border: 1px solid rgba(46,16,30,0.08);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.smm-progress__head {
  display: flex; align-items: center; justify-content: space-between;
  font: 500 13px/1 var(--hy-font-body);
}
.smm-progress__head strong { font-weight: 600; color: var(--plum); }
.smm-progress__bar {
  height: 8px; background: rgba(46,16,30,0.08); border-radius: 999px; overflow: hidden;
}
.smm-progress__bar-fill {
  height: 100%; width: 43%;
  background: linear-gradient(90deg, var(--marigold), #d39a16);
  border-radius: 999px;
  animation: smm-grow 2.4s ease-out;
}
@keyframes smm-grow { from { width: 0; } }
.smm-progress__list {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px;
  margin-top: 4px;
}
.smm-progress__cell {
  aspect-ratio: 1;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font: 600 11px/1 var(--hy-font-body);
}
.smm-progress__cell.done { background: rgba(26,142,62,0.18); color: #1a8e3e; }
.smm-progress__cell.running { background: rgba(241,174,27,0.22); color: #b8830f; }
.smm-progress__cell.pending { background: rgba(46,16,30,0.05); color: rgba(46,16,30,0.4); }

.smm-notes {
  background: #fff;
  border: 1px solid rgba(46,16,30,0.08);
  border-radius: 12px;
  padding: 18px 20px;
}
.smm-notes__head {
  display: flex; align-items: center; gap: 8px;
  font: 600 13px/1 var(--hy-font-body);
  margin-bottom: 12px;
}
.smm-notes__sparkle {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--periwinkle), #7a78b8);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px;
}
.smm-note-row {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  font: 400 12.5px/1.5 var(--hy-font-body);
  color: rgba(46,16,30,0.78);
  border-top: 1px solid rgba(46,16,30,0.06);
}
.smm-note-row:first-of-type { border-top: 0; }
.smm-note-row__dot {
  width: 6px; height: 6px; border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}
.smm-note-row.warn .smm-note-row__dot { background: var(--marigold); }
.smm-note-row.info .smm-note-row__dot { background: var(--periwinkle); }
.smm-note-row.good .smm-note-row__dot { background: #1a8e3e; }

/* SMM Calendar */
.smm-cal {
  background: #fff;
  border: 1px solid rgba(46,16,30,0.08);
  border-radius: 12px;
  padding: 18px 20px;
}
.smm-cal__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.smm-cal__title {
  font: 600 16px/1 var(--hy-font-body);
}
.smm-cal__legend {
  display: inline-flex; gap: 12px;
  font: 500 11px/1 var(--hy-font-body);
  color: rgba(46,16,30,0.5);
  letter-spacing: 0.04em;
}
.smm-cal__dot { display: inline-flex; align-items: center; gap: 4px; }
.smm-cal__dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; }
.smm-cal__dot.scheduled::before { background: var(--periwinkle); }
.smm-cal__dot.posted::before { background: #1a8e3e; }
.smm-cal__dot.review::before { background: var(--marigold); }
.smm-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.smm-cal__cell {
  aspect-ratio: 1;
  border-radius: 6px;
  border: 1px solid rgba(46,16,30,0.06);
  padding: 6px;
  font: 500 10px/1 var(--hy-font-body);
  color: rgba(46,16,30,0.5);
  display: flex; flex-direction: column; gap: 4px;
}
.smm-cal__cell.muted { background: rgba(46,16,30,0.025); border-color: transparent; }
.smm-cal__cell-dots { display: flex; flex-wrap: wrap; gap: 2px; margin-top: auto; }
.smm-cal__cell-dot { width: 6px; height: 6px; border-radius: 50%; }

/* ================================================================
 * Numbers panel (Headway-style KPIs)
 * ================================================================ */
.numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 40px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 48px;
}
.numbers__cell { display: flex; flex-direction: column; gap: 12px; }
.numbers__label {
  font: 600 13px/1 var(--hy-font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.numbers__value {
  font: 600 64px/1 var(--hy-font-display);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.numbers__value .accent { color: var(--hy-highlight-lime); }
.numbers__value .small { font-size: 32px; opacity: 0.65; }
.numbers__delta {
  font: 500 18px/1.3 var(--hy-font-display);
  color: var(--hy-accent-green);
}
.numbers__delta.tbd { color: rgba(255,137,29,0.85); }
.numbers__delta.muted { color: rgba(255,255,255,0.5); }
@media (max-width: 900px) {
  .numbers { grid-template-columns: 1fr; gap: 24px; }
  .numbers__value { font-size: 48px; }
}

/* ================================================================
 * Practices feature gallery
 * ================================================================ */
.practices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.practice {
  position: relative;
  aspect-ratio: 9/19;
  background: #1a1a1a;
  border-radius: 36px;
  overflow: hidden;
  border: 8px solid #0E0F12;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  cursor: pointer;
  transition: transform .2s;
}
.practice:hover { transform: translateY(-4px); }
.practice__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(160deg, #2a1f30, #1a1428);
  color: rgba(255,255,255,0.55);
  font: 500 12px/1.4 var(--hy-font-body);
  text-align: center; padding: 16px;
}
.practice__placeholder-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(211,255,85,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--hy-accent-lime);
  font-size: 18px;
}
.practice__label {
  position: absolute; bottom: 18px; left: 12px; right: 12px;
  text-align: center;
  font: 600 13px/1.3 var(--hy-font-display);
  color: var(--hy-text-primary);
}
.practice__sub {
  position: absolute; top: 16px; left: 12px; right: 12px;
  text-align: center;
  font: 500 9px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.practice video, .practice img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
@media (max-width: 1100px) {
  .practices-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
 * MC mockups — phosphor amber palette inside chrome cards
 * ================================================================ */
.mc {
  --phos-bg: #0E0F12;
  --phos-elev: #16181C;
  --phos-line: rgba(255,201,108,0.12);
  --phos-amber: #ffc96c;
  --phos-cyan: #5fd6e8;
  --phos-text: #f5e9d2;
  --phos-text-mute: rgba(245,233,210,0.55);
  --phos-text-dim: rgba(245,233,210,0.35);
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  color: var(--phos-text);
  background: var(--phos-bg);
}

.mc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 1100px) {
  .mc-grid { grid-template-columns: 1fr; }
}

/* MC chrome variant — slightly different bar styling for amber theme */
.chrome-card.mc-card { background: rgba(255,201,108,0.025); border-color: rgba(255,201,108,0.1); }
.chrome-card.mc-card .chrome-card__bar { background: rgba(255,201,108,0.04); border-bottom-color: rgba(255,201,108,0.08); }
.chrome-card.mc-card .chrome-card__url { background: rgba(255,201,108,0.05); color: var(--phos-text-mute); }

/* MC Home: aurora hero + KPIs + nudge feed + agenda */
.mc-home { padding: 24px; display: flex; flex-direction: column; gap: 16px; min-height: 540px; }
.mc-home__hero {
  position: relative;
  border-radius: 14px;
  padding: 22px 24px;
  background: linear-gradient(135deg, rgba(255,201,108,0.18), rgba(95,214,232,0.12) 60%, rgba(255,60,242,0.08));
  overflow: hidden;
}
.mc-home__hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(450px 200px at 80% 50%, rgba(255,201,108,0.12), transparent 70%);
  pointer-events: none;
}
.mc-home__greeting {
  font: 500 11px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--phos-amber);
  margin-bottom: 8px;
}
.mc-home__clock {
  font: 600 36px/1 'JetBrains Mono', monospace;
  letter-spacing: -0.01em;
  color: var(--phos-text);
  margin-bottom: 4px;
}
.mc-home__hello {
  font: 500 14px/1.4 'Inter', sans-serif;
  color: var(--phos-text-mute);
  max-width: 480px;
}
.mc-home__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mc-kpi {
  background: var(--phos-elev);
  border: 1px solid var(--phos-line);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.mc-kpi__label {
  font: 500 9px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--phos-text-dim);
}
.mc-kpi__value {
  font: 600 24px/1 'Source Serif 4', 'Georgia', serif;
  color: var(--phos-amber);
  font-variant-numeric: tabular-nums;
}
.mc-kpi__sub {
  font: 400 11px/1.3 'Inter', sans-serif;
  color: var(--phos-text-mute);
}

.mc-feed { display: flex; flex-direction: column; gap: 6px; }
.mc-feed__title {
  display: flex; align-items: center; justify-content: space-between;
  font: 600 10px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--phos-text-dim);
  margin-bottom: 4px;
}
.mc-feed__live {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--phos-amber);
}
.mc-feed__live::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--phos-amber);
  animation: pulse 1.4s ease-in-out infinite;
}
.mc-nudge {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 12px; align-items: start;
  padding: 10px 14px;
  background: var(--phos-elev);
  border: 1px solid var(--phos-line);
  border-radius: 8px;
}
.mc-nudge__icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  font: 600 11px/1 'JetBrains Mono', monospace;
}
.mc-nudge__icon.tg { background: rgba(95,214,232,0.16); color: var(--phos-cyan); }
.mc-nudge__icon.bank { background: rgba(255,201,108,0.16); color: var(--phos-amber); }
.mc-nudge__icon.warn { background: rgba(255,90,90,0.18); color: #ff7878; }
.mc-nudge__body {
  font: 500 12.5px/1.45 'Inter', sans-serif;
  color: var(--phos-text);
}
.mc-nudge__source {
  font: 500 10px/1 'JetBrains Mono', monospace;
  color: var(--phos-text-dim);
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.mc-nudge__time {
  font: 500 10px/1 'JetBrains Mono', monospace;
  color: var(--phos-text-dim);
}

.mc-agenda {
  margin-top: 4px;
  background: var(--phos-elev);
  border: 1px solid var(--phos-line);
  border-radius: 10px;
  padding: 12px 14px;
}
.mc-agenda__title {
  font: 600 10px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--phos-text-dim);
  margin-bottom: 10px;
}
.mc-agenda__row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 10px; align-items: center;
  padding: 8px 0;
  font: 500 12.5px/1.4 'Inter', sans-serif;
  color: var(--phos-text);
  border-top: 1px solid var(--phos-line);
}
.mc-agenda__row:first-of-type { border-top: 0; }
.mc-agenda__time { font-family: 'JetBrains Mono', monospace; color: var(--phos-amber); font-size: 12px; }
.mc-agenda__dur { color: var(--phos-text-dim); font-family: 'JetBrains Mono', monospace; font-size: 11px; }

/* MC Telegram — iPhone frame */
.mc-tg-wrapper {
  display: flex; align-items: stretch; justify-content: center;
  padding: 36px 24px;
  min-height: 540px;
}
.iphone {
  width: 320px;
  background: #0a0a0a;
  border-radius: 42px;
  padding: 8px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
}
.iphone::before {
  content: ""; position: absolute;
  top: 16px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 26px;
  background: #000;
  border-radius: 14px;
  z-index: 2;
}
.iphone__screen {
  background: #17212B;
  border-radius: 36px;
  overflow: hidden;
  height: 600px;
  display: flex; flex-direction: column;
  padding-top: 50px;
}
.iphone__topbar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: #17212B;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.iphone__back {
  width: 8px; height: 8px;
  border-left: 2px solid #5fa8e0; border-bottom: 2px solid #5fa8e0;
  transform: rotate(45deg);
}
.iphone__chat-name {
  font: 600 14px/1 'Inter', sans-serif;
  color: #fff;
}
.iphone__chat-sub {
  font: 400 11px/1 'Inter', sans-serif;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
.iphone__chat-meta { flex: 1; }
.iphone__avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #ffc96c, #c79040);
  display: flex; align-items: center; justify-content: center;
  font: 700 12px/1 'JetBrains Mono', monospace;
  color: #2a1a08;
}
.tg-thread {
  flex: 1;
  background: #0E1620;
  padding: 14px 12px;
  display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.tg-msg {
  align-self: flex-start;
  max-width: 92%;
  background: #182533;
  border-radius: 4px 14px 14px 14px;
  padding: 10px 12px;
  font: 400 12.5px/1.5 'Inter', sans-serif;
  color: rgba(255,255,255,0.95);
  position: relative;
}
.tg-msg__author {
  font: 600 11.5px/1 'Inter', sans-serif;
  color: #ffc96c;
  margin-bottom: 6px;
}
.tg-msg__row {
  display: flex; gap: 8px; align-items: flex-start;
  padding: 2px 0;
  font-size: 12px;
}
.tg-msg__row strong { color: #ffc96c; font-weight: 600; }
.tg-msg__row em { color: #ff8a8a; font-style: normal; font-weight: 600; }
.tg-msg__row.good strong { color: #6fdb88; }
.tg-msg__bullet {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,201,108,0.6);
  margin-top: 8px; flex-shrink: 0;
}
.tg-msg__bullet.warn { background: #ff8a8a; }
.tg-msg__bullet.good { background: #6fdb88; }
.tg-msg__time {
  font: 500 10px/1 'Inter', sans-serif;
  color: rgba(255,255,255,0.4);
  text-align: right;
  margin-top: 8px;
}
.tg-msg__head-line {
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.tg-msg__head-line strong { color: #ffc96c; }
.tg-input {
  background: #17212B;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.tg-input__field {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 8px 14px;
  font: 400 12px/1 'Inter', sans-serif;
  color: rgba(255,255,255,0.5);
}

/* MC Finance */
.mc-fin { padding: 24px; display: flex; flex-direction: column; gap: 16px; min-height: 540px; }
.mc-fin__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
}
.mc-fin__title {
  font: 500 11px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--phos-text-dim);
}
.mc-fin__title-main {
  font: 600 24px/1 'Source Serif 4', serif;
  color: var(--phos-text);
  margin-top: 8px;
}
.mc-fin__hero {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 12px;
}
.mc-fin__savings {
  background: var(--phos-elev);
  border: 1px solid var(--phos-line);
  border-radius: 12px;
  padding: 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.mc-fin__savings-label {
  font: 500 10px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--phos-text-dim);
}
.mc-fin__savings-value {
  font: 600 56px/1 'Source Serif 4', serif;
  color: var(--phos-amber);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.mc-fin__savings-delta {
  font: 500 12px/1 'JetBrains Mono', monospace;
  color: #6fdb88;
}
.mc-fin__sparkline { margin-top: auto; }

.mc-fin__ai {
  background: linear-gradient(135deg, rgba(95,214,232,0.1), rgba(255,201,108,0.06));
  border: 1px solid rgba(95,214,232,0.18);
  border-radius: 12px;
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.mc-fin__ai-head {
  display: flex; align-items: center; gap: 8px;
  font: 600 11px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--phos-cyan);
}
.mc-fin__ai-spark {
  width: 18px; height: 18px;
  border-radius: 5px;
  background: linear-gradient(135deg, #5fd6e8, #2da7b9);
  display: inline-flex; align-items: center; justify-content: center;
  color: #082c33; font-size: 11px;
}
.mc-fin__ai-body {
  font: 400 13px/1.55 'Inter', sans-serif;
  color: var(--phos-text);
}
.mc-fin__ai-body strong { color: var(--phos-amber); font-weight: 600; }

.mc-fin__currencies {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.mc-fin__currency {
  background: var(--phos-elev);
  border: 1px solid var(--phos-line);
  border-radius: 8px;
  padding: 10px 12px;
}
.mc-fin__currency-code {
  font: 600 10px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.12em;
  color: var(--phos-text-dim);
}
.mc-fin__currency-val {
  font: 600 16px/1 'Source Serif 4', serif;
  color: var(--phos-text);
  font-variant-numeric: tabular-nums;
  margin-top: 4px;
}

.mc-fin__categories {
  background: var(--phos-elev);
  border: 1px solid var(--phos-line);
  border-radius: 10px;
  padding: 14px 16px;
}
.mc-fin__cat-title {
  font: 500 10px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--phos-text-dim);
  margin-bottom: 10px;
}
.mc-fin__cat-row {
  display: grid; grid-template-columns: 90px 1fr 60px;
  gap: 10px; align-items: center;
  padding: 6px 0;
  font: 500 12px/1 'Inter', sans-serif;
}
.mc-fin__cat-bar {
  height: 6px;
  background: rgba(255,201,108,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.mc-fin__cat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--phos-amber), #c79040);
}
.mc-fin__cat-pct {
  text-align: right;
  font-family: 'JetBrains Mono', monospace;
  color: var(--phos-text-mute);
  font-size: 11px;
}

/* MC Orchestrator */
.mc-orch { padding: 24px; display: flex; flex-direction: column; gap: 14px; min-height: 540px; }
.mc-orch__head { display: flex; justify-content: space-between; align-items: flex-start; }
.mc-orch__title-main {
  font: 600 22px/1 'Source Serif 4', serif;
  color: var(--phos-text);
  margin-top: 8px;
}
.mc-orch__wave {
  display: inline-flex; align-items: center; gap: 6px;
  font: 600 10px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--phos-amber);
  background: rgba(255,201,108,0.08);
  border: 1px solid rgba(255,201,108,0.18);
  border-radius: 999px;
  padding: 6px 12px;
}
.mc-orch__wave::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--phos-amber);
  animation: pulse 1.4s ease-in-out infinite;
}
.mc-orch__phases {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.mc-orch__phase {
  padding: 8px 10px;
  border-radius: 6px;
  font: 500 9px/1 'JetBrains Mono', monospace;
  text-align: center;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(255,201,108,0.04);
  color: var(--phos-text-dim);
  border: 1px solid var(--phos-line);
}
.mc-orch__phase.done { background: rgba(111,219,136,0.1); color: #6fdb88; border-color: rgba(111,219,136,0.2); }
.mc-orch__phase.active {
  background: rgba(255,201,108,0.12); color: var(--phos-amber);
  border-color: rgba(255,201,108,0.35);
}
.mc-orch__columns {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; flex: 1;
}
.mc-orch__col {
  background: var(--phos-elev);
  border: 1px solid var(--phos-line);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.mc-orch__proj {
  font: 600 11px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  color: var(--phos-amber);
  display: flex; justify-content: space-between; align-items: center;
}
.mc-orch__proj-status {
  font: 500 9px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.12em;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(255,201,108,0.1);
  color: var(--phos-amber);
}
.mc-task {
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  padding: 10px;
  border: 1px solid var(--phos-line);
}
.mc-task__name {
  font: 500 11.5px/1.4 'Inter', sans-serif;
  color: var(--phos-text);
  margin-bottom: 8px;
}
.mc-task__meta {
  display: flex; justify-content: space-between;
  font: 500 10px/1 'JetBrains Mono', monospace;
  color: var(--phos-text-dim);
}
.mc-task__meta .running { color: var(--phos-amber); }
.mc-task__meta .cost { color: #6fdb88; }
.mc-task__bar {
  height: 3px; margin-top: 8px;
  background: rgba(255,201,108,0.1);
  border-radius: 999px; overflow: hidden;
}
.mc-task__bar-fill {
  height: 100%;
  background: var(--phos-amber);
  animation: orch-grow 3s ease-out infinite;
}
@keyframes orch-grow {
  0% { width: 0; }
  100% { width: 70%; }
}

/* MC Feature catalog */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 56px;
  margin-bottom: 48px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
}
.features__col h4 {
  font: 600 12px/1 var(--hy-font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hy-accent-lime);
  margin-bottom: 16px;
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--hy-accent-orange-500);
  display: inline-block;
}
.features__list {
  display: flex; flex-wrap: wrap; gap: 6px 8px;
  list-style: none;
}
.features__list li {
  padding: 6px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font: 500 13px/1 var(--hy-font-body);
  color: rgba(255,255,255,0.85);
}
.features__list li.lime {
  background: rgba(211,255,85,0.08);
  border-color: rgba(211,255,85,0.25);
  color: var(--hy-accent-lime);
}
@media (max-width: 900px) {
  .features { grid-template-columns: 1fr; gap: 24px; }
}

/* MC mockup tabs (top-level chooser between 4 mocks) */
.mc-chooser {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.mc-chooser__tab {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font: 600 13px/1 var(--hy-font-body);
  letter-spacing: 0.04em;
  transition: all .15s;
}
.mc-chooser__tab:hover { background: rgba(255,255,255,0.07); color: var(--hy-text-primary); }
.mc-chooser__tab.active {
  background: rgba(211,255,85,0.1);
  border-color: rgba(211,255,85,0.4);
  color: var(--hy-accent-lime);
}
.mc-chooser__tab .num {
  font-family: 'JetBrains Mono', monospace;
  color: var(--hy-accent-orange-500);
  margin-right: 6px;
  font-size: 11px;
}

/* ================================================================
 * Statement (full-bleed)
 * ================================================================ */
.statement {
  padding: 140px 80px;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
}
.statement__text {
  font: 700 80px/1.1 var(--hy-font-display);
  letter-spacing: -0.025em;
}
.statement__text .accent { color: var(--hy-highlight-lime); }
.statement__sub {
  margin-top: 32px;
  font: 400 22px/1.5 var(--hy-font-body);
  color: rgba(255,255,255,0.55);
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}
@media (max-width: 900px) {
  .statement { padding: 80px 32px; }
  .statement__text { font-size: 48px; }
}

/* ================================================================
 * Three talking points
 * ================================================================ */
.points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.point {
  background: var(--hy-card-dark-bg);
  border-radius: var(--hy-radius-card);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.point::before {
  content: ""; position: absolute;
  top: 0; left: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--hy-accent-lime), transparent);
  opacity: 0; transition: opacity .25s;
}
.point:hover { transform: translateY(-3px); border-color: rgba(211,255,85,0.25); }
.point:hover::before { opacity: 1; }
.point__num {
  font: 700 14px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.18em;
  color: var(--hy-accent-orange-500);
}
.point__title {
  font: 600 28px/1.2 var(--hy-font-display);
  letter-spacing: -0.005em;
  color: var(--hy-text-primary);
}
.point__body {
  font: 400 16px/1.5 var(--hy-font-body);
  color: rgba(255,255,255,0.78);
}
.point__expand {
  font: 400 14px/1.55 var(--hy-font-body);
  color: rgba(255,255,255,0.55);
  max-height: 0; overflow: hidden;
  transition: max-height .35s;
}
.point:hover .point__expand { max-height: 200px; }
@media (max-width: 1100px) {
  .points { grid-template-columns: 1fr; }
  .point__expand { max-height: none; }
}

/* ================================================================
 * Closing CTA
 * ================================================================ */
.closing {
  text-align: center;
  padding: 120px 80px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.closing__big {
  font: 700 100px/1.05 var(--hy-font-display);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.closing__big .accent { color: var(--hy-highlight-lime); }
.closing__big .strike {
  position: relative;
  display: inline-block;
}
.closing__sub {
  font: 400 24px/1.5 var(--hy-font-body);
  color: rgba(255,255,255,0.6);
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}
.closing__cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 32px;
  background: var(--hy-accent-lime);
  color: #0B1215;
  font: 700 16px/1 var(--hy-font-body);
  letter-spacing: 0.04em;
  border-radius: 12px;
  transition: transform .15s;
}
.closing__cta:hover { transform: translateY(-2px); }
.closing__joke {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font: 400 16px/1.55 var(--hy-font-body);
  color: rgba(255,255,255,0.55);
  font-style: italic;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}
.closing__joke::before {
  content: "P.S. ";
  font-style: normal; font-weight: 700;
  color: var(--hy-accent-orange-500);
  letter-spacing: 0.14em;
}
@media (max-width: 900px) {
  .closing__big { font-size: 56px; }
  .closing { padding: 64px 32px; }
}

/* ================================================================
 * Footer
 * ================================================================ */
.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 56px 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}
.footer__cobrand {
  display: inline-flex; align-items: center; gap: 14px;
  font: 700 18px/1 var(--hy-font-display);
}
.footer__cobrand .divider { width: 1px; height: 22px; background: rgba(255,255,255,0.3); }
.footer__cobrand img { width: 24px; height: 24px; border-radius: 6px; }

.footer__center {
  text-align: center;
  font: 500 14px/1.5 var(--hy-font-body);
  color: rgba(255,255,255,0.65);
}
.footer__center strong {
  display: block;
  color: var(--hy-text-primary);
  font: 600 16px/1.3 var(--hy-font-display);
  margin-bottom: 4px;
}

.footer__meta {
  text-align: right;
  font: 500 11px/1.5 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
@media (max-width: 900px) {
  .footer { grid-template-columns: 1fr; gap: 16px; padding: 32px; text-align: center; }
  .footer__cobrand, .footer__meta { justify-content: center; text-align: center; }
}

/* ================================================================
 * Reveal-on-scroll
 * ================================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ================================================================
 * v2 OVERRIDES — round of feedback fixes (2026-04-29)
 * Appended; takes precedence via CSS cascade.
 * ================================================================ */

/* ── Bio timeline (intro) ───────────────────────────────────── */
.bio-timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 1.5px solid rgba(255,255,255,0.1);
  padding-left: 0;
  counter-reset: bio;
}
.bio-timeline li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 11px 0 11px 20px;
  margin-left: 0;
  position: relative;
  font: 400 16px/1.4 var(--hy-font-body);
}
.bio-timeline li::before {
  content: "";
  position: absolute;
  left: -5px; top: 18px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1.5px solid var(--hy-bg-primary);
}
.bio-timeline li:has(.highlight)::before { background: var(--hy-accent-lime); }
.bio-timeline li:has(.now)::before { background: var(--hy-accent-orange-500); }
.bio-timeline__year {
  font: 600 13px/1.4 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.bio-timeline__year.highlight { color: var(--hy-accent-lime); }
.bio-timeline__year.now { color: var(--hy-accent-orange-500); }
.bio-timeline__label { color: rgba(255,255,255,0.85); }
.bio-timeline__label.highlight { color: var(--hy-text-primary); font-weight: 500; }
.bio-timeline__label.now { color: var(--hy-text-primary); font-weight: 600; }

@media (max-width: 700px) {
  .bio-timeline li { grid-template-columns: 100px 1fr; gap: 12px; font-size: 14px; }
}

/* ── 7-step practices flow ──────────────────────────────────── */
.flow {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin: 24px 0 56px;
  padding: 28px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow-x: auto;
}
.flow__step {
  flex: 1 0 130px;
  display: flex; flex-direction: column;
  gap: 8px;
  padding: 16px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  min-width: 130px;
}
.flow__step.ai {
  background: rgba(211,255,85,0.06);
  border-color: rgba(211,255,85,0.25);
}
.flow__num {
  font: 700 11px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
}
.flow__step.ai .flow__num { color: var(--hy-accent-lime); }
.flow__role {
  font: 600 14px/1.2 var(--hy-font-display);
  color: var(--hy-text-primary);
}
.flow__step.ai .flow__role { color: var(--hy-accent-lime); }
.flow__action {
  font: 400 12.5px/1.4 var(--hy-font-body);
  color: rgba(255,255,255,0.7);
}
.flow__arrow {
  display: flex; align-items: center;
  font: 700 18px/1 var(--hy-font-display);
  color: var(--hy-accent-orange-500);
  flex: 0 0 auto;
}
@media (max-width: 1100px) {
  .flow { flex-wrap: wrap; }
  .flow__arrow { transform: rotate(90deg); align-self: center; }
}

/* ── Practices hint footer ─────────────────────────────────── */
.practices-hint {
  text-align: center;
  margin-top: 24px;
  font: 500 13px/1.4 var(--hy-font-body);
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}
.practices-hint code {
  font: 500 12px/1 'JetBrains Mono', monospace;
  background: rgba(255,255,255,0.06);
  padding: 2px 6px;
  border-radius: 4px;
  color: rgba(255,255,255,0.7);
}
.practices-hint strong {
  font-weight: 600;
  color: var(--hy-accent-lime);
}

/* ── SMM Stat — icon-left layout (v2) ──────────────────────── */
.smm-stat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.smm-stat.alert { border-color: rgba(241,174,27,0.5); box-shadow: 0 0 0 1px rgba(241,174,27,0.2); }
.smm-stat__icon-wrap {
  flex: 0 0 auto;
}
.smm-stat__icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font: 600 16px/1 var(--hy-font-body);
}
.smm-stat__body { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
.smm-stat__label {
  font: 500 12px/1.3 var(--hy-font-body);
  text-transform: none;
  letter-spacing: 0;
  color: rgba(46,16,30,0.6);
  margin-bottom: 0;
  display: block;
}
.smm-stat__value {
  font: 700 28px/1 var(--hy-font-body);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  color: #2E101E;
}
.smm-stat__delta {
  font: 500 11px/1.3 var(--hy-font-body);
  color: rgba(46,16,30,0.5);
  margin-top: 0;
}
.smm-stat__delta.warn { color: #c1681e; }

/* ── SMM Generate Week — count badge ───────────────────────── */
.smm-progress__count {
  font: 600 12px/1 'JetBrains Mono', monospace;
  color: rgba(46,16,30,0.6);
  background: rgba(46,16,30,0.06);
  padding: 4px 8px;
  border-radius: 4px;
}

/* ── Numbers — TBD multiline ───────────────────────────────── */
.numbers__value.tbd-text {
  font: 600 36px/1.05 var(--hy-font-display);
  color: rgba(255,137,29,0.85);
  letter-spacing: -0.01em;
}

/* ── MC /telegram — sidebar + thread layout ───────────────── */
.mc-tg {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 540px;
  height: 100%;
  font-family: 'Inter', sans-serif;
}
.mc-tg__sidebar {
  background: var(--phos-bg);
  border-right: 1px solid var(--phos-line);
  padding: 16px 12px;
  display: flex; flex-direction: column; gap: 2px;
}
.mc-tg__sidebar-title {
  font: 600 10px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--phos-text-dim);
  padding: 4px 8px 14px;
}
.mc-tg__topic {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 10px; align-items: center;
  padding: 9px 10px;
  border-radius: 8px;
  font: 500 13px/1 var(--hy-font-body);
  color: var(--phos-text);
  cursor: pointer;
  transition: background .12s;
}
.mc-tg__topic:hover { background: rgba(255,201,108,0.04); }
.mc-tg__topic.active {
  background: rgba(255,201,108,0.1);
  color: var(--phos-amber);
}
.mc-tg__emoji { font-size: 14px; line-height: 1; }
.mc-tg__name { font-weight: 500; }
.mc-tg__topic.active .mc-tg__name { font-weight: 600; }
.mc-tg__badge {
  background: var(--phos-amber);
  color: #2a1a08;
  font: 700 10px/1 'JetBrains Mono', monospace;
  padding: 3px 7px;
  border-radius: 999px;
  min-width: 20px;
  text-align: center;
}

.mc-tg__thread {
  display: flex; flex-direction: column;
  background: var(--phos-bg);
  min-height: 540px;
}
.mc-tg__thread-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid var(--phos-line);
  font: 600 13px/1 var(--hy-font-body);
  color: var(--phos-text);
}
.mc-tg__thread-head .mc-tg__emoji { margin-right: 6px; }
.mc-tg__thread-meta {
  font: 500 11px/1 'JetBrains Mono', monospace;
  color: var(--phos-text-dim);
}

.mc-tg__messages {
  flex: 1;
  padding: 18px 22px;
  display: flex; flex-direction: column; gap: 12px;
  overflow-y: auto;
}
.mc-tg__msg {
  background: var(--phos-elev);
  border: 1px solid var(--phos-line);
  border-radius: 12px;
  padding: 14px 16px;
  max-width: 620px;
}
.mc-tg__msg.system {
  background: transparent;
  border: none;
  padding: 4px 8px;
  text-align: center;
  align-self: center;
  font: 500 10.5px/1.3 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
  color: var(--phos-text-dim);
  text-transform: uppercase;
}
.mc-tg__msg-source { color: var(--phos-text-dim); }
.mc-tg__msg-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
  font: 500 11px/1 'JetBrains Mono', monospace;
}
.mc-tg__msg-author { color: var(--phos-amber); font-weight: 700; letter-spacing: 0.04em; }
.mc-tg__msg-time { color: var(--phos-text-dim); }
.mc-tg__msg-body { color: var(--phos-text); font: 400 13.5px/1.55 var(--hy-font-body); }
.mc-tg__head-line {
  font-weight: 600;
  color: var(--phos-text);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255,201,108,0.2);
}
.mc-tg__head-line strong { color: var(--phos-amber); }
.mc-tg__row {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px; align-items: flex-start;
  padding: 4px 0;
}
.mc-tg__row strong { color: var(--phos-amber); font-weight: 600; }
.mc-tg__row em { color: #ff8a8a; font-style: normal; font-weight: 600; }
.mc-tg__bullet {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,201,108,0.65);
  margin-top: 8px;
}
.mc-tg__bullet.warn { background: #ff8a8a; }
.mc-tg__bullet.good { background: #6fdb88; }
.mc-tg__cta {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,201,108,0.18);
  font: 700 14px/1 var(--hy-font-display);
  color: var(--phos-amber);
  letter-spacing: 0.04em;
}

.mc-tg__compose {
  border-top: 1px solid var(--phos-line);
  padding: 12px 22px;
  display: flex; gap: 8px; align-items: center;
}
.mc-tg__compose-cmd {
  font: 600 11px/1 'JetBrains Mono', monospace;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255,201,108,0.08);
  border: 1px solid rgba(255,201,108,0.18);
  color: var(--phos-amber);
  letter-spacing: 0.02em;
}
.mc-tg__compose-input {
  flex: 1;
  font: 400 12px/1.3 var(--hy-font-body);
  color: var(--phos-text-dim);
  padding: 6px 12px;
  background: rgba(255,255,255,0.02);
  border-radius: 6px;
  border: 1px solid var(--phos-line);
}

@media (max-width: 900px) {
  .mc-tg { grid-template-columns: 1fr; }
  .mc-tg__sidebar { display: none; }
}

/* ── Finance — sparkline anchor + axis ─────────────────────── */
.mc-fin__sparkline-wrap {
  margin-top: auto;
  padding-top: 8px;
}
.mc-fin__sparkline {
  display: block;
  width: 100%; height: 60px;
}
.mc-fin__spark-axis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  font: 500 10px/1 'JetBrains Mono', monospace;
  color: var(--phos-text-dim);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  padding-left: 8px;
}

.mc-fin__head-meta {
  font: 500 11px/1.4 'JetBrains Mono', monospace;
  color: var(--phos-text-dim);
  letter-spacing: 0.04em;
  text-align: right;
  max-width: 280px;
}

/* Finance — top categories alignment fix */
.mc-fin__cat-row {
  grid-template-columns: 130px 1fr 110px;
}
.mc-fin__cat-name {
  font: 500 13px/1 var(--hy-font-body);
  color: var(--phos-text);
}
.mc-fin__cat-bar {
  height: 8px;
  background: rgba(255,201,108,0.12);
  display: block;
}
.mc-fin__cat-bar-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--phos-amber), #d39a16);
  border-radius: 3px;
  transition: width .6s ease-out;
}
.mc-fin__cat-pct {
  font: 600 12px/1 'JetBrains Mono', monospace;
  color: var(--phos-text);
  text-align: right;
}

/* AI insight body meta */
.mc-fin__ai-meta {
  font: 500 11px/1.4 'JetBrains Mono', monospace;
  color: var(--phos-text-dim);
  letter-spacing: 0.04em;
}

/* ── MC Orchestrator wave blocks ──────────────────────────── */
.mc-orch__wave-block {
  display: flex; flex-direction: column; gap: 8px;
  padding: 14px;
  background: rgba(255,201,108,0.025);
  border: 1px solid var(--phos-line);
  border-radius: 12px;
}
.mc-orch__wave-block.done {
  background: rgba(111,219,136,0.04);
  border-color: rgba(111,219,136,0.18);
}
.mc-orch__wave-block.active {
  background: rgba(255,201,108,0.05);
  border-color: rgba(255,201,108,0.22);
}
.mc-orch__wave-label {
  font: 600 10px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--phos-text-mute);
}
.mc-orch__wave-block.done .mc-orch__wave-label { color: #6fdb88; }
.mc-orch__wave-block.active .mc-orch__wave-label { color: var(--phos-amber); }

.mc-orch__col.single { padding: 10px 14px; }
.mc-orch__proj-status.done {
  background: rgba(111,219,136,0.12);
  color: #6fdb88;
}
.mc-task.done {
  background: rgba(111,219,136,0.04);
  border-color: rgba(111,219,136,0.16);
  opacity: 0.92;
}
.mc-task__meta .done { color: #6fdb88; }

.mc-orch__footer {
  margin-top: 6px;
  display: flex; justify-content: space-between;
  font: 500 11px/1.3 'JetBrains Mono', monospace;
  color: var(--phos-text-mute);
  letter-spacing: 0.04em;
}

/* ── Three rules — stacked layout (replaces 3-col) ────────── */
.rules-stack {
  display: flex; flex-direction: column;
  gap: 24px;
}
.rule {
  background: var(--hy-card-dark-bg);
  border-radius: var(--hy-radius-card);
  padding: 56px 64px;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.rule::before {
  content: ""; position: absolute;
  top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--hy-accent-lime), transparent);
  transition: width .8s ease-out;
}
.rule.in::before { width: 100%; }
.rule__num {
  font: 700 13px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.18em;
  color: var(--hy-accent-orange-500);
  margin-bottom: 24px;
}
.rule__title {
  font: 700 64px/1.1 var(--hy-font-display);
  letter-spacing: -0.025em;
  color: var(--hy-text-primary);
  margin-bottom: 32px;
  max-width: 1100px;
}
.rule__title .accent { color: var(--hy-highlight-lime); }
.rule__body {
  font: 400 22px/1.5 var(--hy-font-body);
  color: rgba(255,255,255,0.8);
  max-width: 880px;
  margin-bottom: 18px;
}
.rule__body--alt {
  color: rgba(255,255,255,0.6);
  font-size: 19px;
  border-left: 2px solid var(--hy-accent-orange-500);
  padding-left: 20px;
  margin-top: 28px;
}
.rule__body strong { color: var(--hy-accent-lime); font-weight: 600; }

.rule--ask { background: linear-gradient(135deg, var(--hy-card-dark-bg) 0%, rgba(255,137,29,0.06) 100%); }
.rule--finisher,
.rule--secret { background: linear-gradient(135deg, var(--hy-card-dark-bg) 0%, rgba(170,255,72,0.06) 100%); }
.rule__num--secret { color: var(--hy-accent-lime, #AAFF48); }

.rule__list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}
.rule__list li {
  font: 400 21px/1.5 var(--hy-font-body);
  color: rgba(255,255,255,0.85);
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 28px;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rule__list li:last-child { border-bottom: none; }
.rule__list-tag {
  font: 700 12px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hy-accent-lime);
  padding: 4px 10px;
  background: rgba(211,255,85,0.08);
  border: 1px solid rgba(211,255,85,0.22);
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
}
.rule__list-tag.accent {
  color: var(--hy-accent-orange-500);
  background: rgba(255,137,29,0.08);
  border-color: rgba(255,137,29,0.3);
}

@media (max-width: 900px) {
  .rule { padding: 32px 24px; }
  .rule__title { font-size: 36px; }
  .rule__body { font-size: 17px; }
  .rule__list li { grid-template-columns: 1fr; gap: 4px; }
}

/* ── Footer simplified ────────────────────────────────────── */
.footer__meta:empty { display: none; }
.footer { grid-template-columns: 1fr auto 1fr; }
@media (max-width: 900px) {
  .footer { grid-template-columns: 1fr; }
}

/* ================================================================
 * v3 — bio-path (no years), practice videos, sub-tag
 * ================================================================ */

/* ── Bio path (single-column flow, no years) ──────────────── */
.bio-path {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1.5px solid rgba(255,255,255,0.1);
  padding-left: 0;
  counter-reset: bio;
}
.bio-path li {
  position: relative;
  padding: 14px 0 14px 28px;
  font: 400 17px/1.45 var(--hy-font-body);
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.bio-path li:last-child { border-bottom: none; }
.bio-path li::before {
  content: "";
  position: absolute;
  left: -5px; top: 22px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1.5px solid var(--hy-bg-primary);
}
.bio-path li.highlight {
  color: var(--hy-text-primary);
  font-weight: 500;
  font-size: 18px;
}
.bio-path li.highlight::before { background: var(--hy-accent-lime); box-shadow: 0 0 0 3px rgba(211,255,85,0.16); }
.bio-path li.now {
  color: var(--hy-text-primary);
  font-weight: 600;
  font-size: 19px;
}
.bio-path li.now::before { background: var(--hy-accent-orange-500); box-shadow: 0 0 0 3px rgba(255,137,29,0.18); }

/* ── Practice video — fills the iPhone-frame card ───────── */
.practice {
  position: relative;
}
.practice__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  cursor: pointer;
  border-radius: 28px;
}
/* Hide native controls until user hovers/plays — show poster cleanly */
.practice__video::-webkit-media-controls { opacity: 0.6; }
.practice__video:hover::-webkit-media-controls { opacity: 1; }

/* Sub-tag pill — top-left badge over video */
.practice__sub-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font: 600 9px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 9px;
  border-radius: 4px;
  pointer-events: none;
}

/* Practice label — bottom overlay over video */
.practice__label {
  position: absolute;
  bottom: 16px; left: 12px; right: 12px;
  z-index: 2;
  text-align: center;
  font: 700 14px/1.3 var(--hy-font-display);
  color: var(--hy-text-primary);
  text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 0 14px rgba(0,0,0,0.5);
  pointer-events: none;
  letter-spacing: -0.005em;
}

/* When playing, dim the bottom label so it's not in the way */
.practice[data-playing="1"] .practice__label,
.practice[data-playing="1"] .practice__sub-tag { opacity: 0.45; transition: opacity .3s; }
.practice[data-playing="1"]:hover .practice__label,
.practice[data-playing="1"]:hover .practice__sub-tag { opacity: 1; }

/* ================================================================
 * v4 — SMM mockup redesign to match real product (dark plum)
 * Based on user-provided screenshots of actual GoodlySMM
 * ================================================================ */

.smm {
  --smm-bg: #1A0A14;
  --smm-bg-2: #220A19;
  --smm-elev: #2A1322;
  --smm-elev-2: #341A2A;
  --smm-border: rgba(242,220,214,0.07);
  --smm-border-strong: rgba(242,220,214,0.14);
  --smm-text: #F2DCD6;
  --smm-text-mute: rgba(242,220,214,0.6);
  --smm-text-dim: rgba(242,220,214,0.38);
  --smm-rose: #D3B9BF;
  --smm-rose-soft: #b89aa1;
  --smm-marigold: #F1AE1B;
  --smm-peri: #9F9DD6;
  --smm-green: #4ADE80;
  --smm-red: #FB7185;
  background: var(--smm-bg);
  color: var(--smm-text);
  font-family: 'Inter', system-ui, sans-serif;
}

/* Override generic chrome body for SMM */
.chrome-card__body.smm { background: var(--smm-bg); min-height: 580px; }

/* SMM chrome — show small project header inside */
.smm-shell-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--smm-border);
  background: var(--smm-bg-2);
}
.smm-shell-brand {
  display: inline-flex; align-items: center; gap: 12px;
  font: 700 16px/1 var(--hy-font-display);
  letter-spacing: -0.01em;
  color: var(--smm-rose);
}
.smm-shell-brand-icon {
  width: 22px; height: 22px;
  background: var(--smm-marigold);
  border-radius: 5px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #2A1322;
  font: 800 13px/1 var(--hy-font-display);
}
.smm-shell-project {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--smm-elev);
  border: 1px solid var(--smm-border-strong);
  border-radius: 999px;
  padding: 6px 14px;
  font: 500 13px/1 var(--hy-font-body);
  color: var(--smm-text);
}
.smm-shell-project::before {
  content: ""; width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--smm-rose);
}
.smm-shell-meta {
  display: inline-flex; align-items: center; gap: 12px;
  font: 500 12px/1 'JetBrains Mono', monospace;
  color: var(--smm-text-dim);
  letter-spacing: 0.04em;
}

/* Override smm tab-panel padding */
.smm .tab-panel { padding: 24px 28px; }

/* ── DASHBOARD v2 ─────────────────────────────────────────── */
.smm-dash-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 22px;
}
.smm-dash-title {
  font: 700 26px/1.1 var(--hy-font-display);
  color: var(--smm-text);
  letter-spacing: -0.015em;
}
.smm-dash-sub {
  font: 400 13px/1.4 var(--hy-font-body);
  color: var(--smm-text-mute);
  margin-top: 4px;
}
.smm-dash-meta {
  font: 500 11px/1.4 'JetBrains Mono', monospace;
  color: var(--smm-text-dim);
  text-align: right;
  letter-spacing: 0.04em;
}
.smm-dash-meta .ok { color: var(--smm-green); }

/* Stat cards (real layout — icon + body, dark plum) */
.smm-stat {
  background: var(--smm-elev);
  border: 1px solid var(--smm-border);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.smm-stat.alert {
  border-color: var(--smm-marigold);
  box-shadow: 0 0 0 1px rgba(241,174,27,0.25);
}
.smm-stat__icon-wrap { flex: 0 0 auto; }
.smm-stat__icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.smm-stat__icon.plum { background: rgba(242,220,214,0.08); color: var(--smm-rose); }
.smm-stat__icon.marigold { background: rgba(241,174,27,0.18); color: var(--smm-marigold); }
.smm-stat__icon.peri { background: rgba(159,157,214,0.18); color: var(--smm-peri); }
.smm-stat__icon.green { background: rgba(74,222,128,0.16); color: var(--smm-green); }
.smm-stat__icon.rose { background: rgba(211,185,191,0.16); color: var(--smm-rose); }
.smm-stat__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.smm-stat__label {
  font: 500 12px/1.3 var(--hy-font-body);
  color: var(--smm-text-mute);
  letter-spacing: 0;
  text-transform: none;
  margin: 0;
}
.smm-stat__value {
  font: 700 26px/1 var(--hy-font-body);
  color: var(--smm-text);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  margin: 4px 0 2px;
}
.smm-stat__value.alert { color: var(--smm-marigold); }
.smm-stat__delta {
  font: 500 11px/1.3 var(--hy-font-body);
  color: var(--smm-text-dim);
}
.smm-stat__delta.warn { color: var(--smm-marigold); }
.smm-stat__delta.ok { color: var(--smm-green); }

/* Pending Review row below stats */
.smm-pending-section {
  margin-top: 24px;
}
.smm-pending-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.smm-pending-title {
  font: 700 16px/1 var(--hy-font-display);
  color: var(--smm-text);
}
.smm-pending-sub {
  font: 500 12px/1 var(--hy-font-body);
  color: var(--smm-text-mute);
}
.smm-pending-link {
  font: 500 12px/1 var(--hy-font-body);
  color: var(--smm-rose);
}

.smm-pending-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.smm-pending-card {
  background: var(--smm-elev);
  border: 1px solid var(--smm-border);
  border-radius: 12px;
  overflow: hidden;
}
.smm-pending-card__img {
  aspect-ratio: 1.35;
  display: flex; align-items: center; justify-content: center;
  font: 600 13px/1.3 var(--hy-font-body);
  text-align: center;
  padding: 16px;
  position: relative;
}
.smm-pending-card__img::after {
  content: "Review"; position: absolute;
  top: 10px; right: 10px;
  font: 600 9px/1 var(--hy-font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--smm-marigold);
  color: #2A1322;
  padding: 4px 8px;
  border-radius: 999px;
}
.smm-pending-card__body { padding: 12px 14px; }
.smm-pending-card__pillar {
  font: 700 10px/1 var(--hy-font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smm-rose);
  margin-bottom: 4px;
}
.smm-pending-card__caption {
  font: 400 11.5px/1.45 var(--hy-font-body);
  color: var(--smm-text-mute);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.smm-pending-card__time {
  font: 500 10px/1 'JetBrains Mono', monospace;
  color: var(--smm-text-dim);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* ── FEED v2 — large 3-card layout ────────────────────────── */
.smm-feed-tip {
  background: var(--smm-elev);
  border: 1px solid var(--smm-border);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 16px;
  font: 500 12px/1.4 var(--hy-font-body);
  color: var(--smm-text-mute);
  display: flex; align-items: center; gap: 10px;
}
.smm-feed-tip::before {
  content: "💡";
  font-size: 13px;
}

.smm-feed-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.smm-feed-toolbar-title {
  font: 700 22px/1.1 var(--hy-font-display);
  color: var(--smm-text);
}
.smm-feed-toolbar-sub {
  font: 400 12px/1 var(--hy-font-body);
  color: var(--smm-text-mute);
  margin-top: 2px;
}
.smm-feed-toolbar-actions {
  display: inline-flex; gap: 8px; align-items: center;
}
.smm-feed-toggle {
  background: var(--smm-elev);
  border: 1px solid var(--smm-border-strong);
  border-radius: 6px;
  padding: 5px;
  display: inline-flex; gap: 2px;
}
.smm-feed-toggle-btn {
  padding: 5px 10px;
  font: 500 11px/1 var(--hy-font-body);
  border-radius: 4px;
  color: var(--smm-text-mute);
}
.smm-feed-toggle-btn.active { background: var(--smm-rose); color: #2A1322; font-weight: 600; }
.smm-feed-btn {
  padding: 8px 14px;
  font: 600 12px/1 var(--hy-font-body);
  background: var(--smm-rose);
  color: #2A1322;
  border-radius: 8px;
  display: inline-flex; align-items: center; gap: 6px;
}
.smm-feed-btn.outline {
  background: transparent;
  border: 1px solid var(--smm-border-strong);
  color: var(--smm-text);
}

.smm-feed-tabs {
  display: flex; gap: 22px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--smm-border);
}
.smm-feed-tab {
  padding: 10px 0;
  font: 500 13px/1 var(--hy-font-body);
  color: var(--smm-text-mute);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.smm-feed-tab.active {
  color: var(--smm-rose);
  border-bottom-color: var(--smm-rose);
  font-weight: 600;
}

/* Large feed post card */
.smm-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.smm-fp {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex; flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.smm-fp__head {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px;
}
.smm-fp__avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 50%, #6228d7);
  flex-shrink: 0;
}
.smm-fp__handle {
  font: 600 12px/1 var(--hy-font-body);
  color: #262626;
  display: inline-flex; align-items: center; gap: 4px;
}
.smm-fp__verified {
  width: 11px; height: 11px;
  fill: #0095F6;
}
.smm-fp__sub {
  font: 400 10px/1 var(--hy-font-body);
  color: #8e8e8e;
  margin-top: 2px;
}
.smm-fp__more {
  margin-left: auto;
  font: 700 14px/1 var(--hy-font-body);
  color: #262626;
}
.smm-fp__image {
  aspect-ratio: 1;
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 20px;
  overflow: hidden;
}
.smm-fp__image-overlay {
  font: 800 22px/1.1 var(--hy-font-display);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  position: relative; z-index: 2;
}
.smm-fp__image-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font: 700 9px/1 var(--hy-font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.92);
  color: #2A1322;
  padding: 4px 8px;
  border-radius: 4px;
}
.smm-fp__caption {
  padding: 10px 12px 6px;
  font: 400 11.5px/1.45 var(--hy-font-body);
  color: #262626;
}
.smm-fp__caption strong { font-weight: 600; }
.smm-fp__caption .more { color: #8e8e8e; }
.smm-fp__hashtags {
  padding: 0 12px;
  font: 400 11px/1.4 var(--hy-font-body);
  color: #8E5570;
}
.smm-fp__time {
  padding: 6px 12px 8px;
  font: 600 9px/1 var(--hy-font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8e8e8e;
}
.smm-fp__status-pill {
  margin: 0 12px 8px;
  display: inline-flex; align-items: center; gap: 6px;
  font: 600 9px/1 var(--hy-font-body);
  letter-spacing: 0.04em;
  background: var(--smm-marigold);
  color: #2A1322;
  padding: 5px 9px;
  border-radius: 999px;
  width: fit-content;
}
.smm-fp__status-pill::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: #2A1322;
}
.smm-fp__actions {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 6px;
  padding: 8px 12px 12px;
}
.smm-fp__btn {
  padding: 8px 10px;
  border-radius: 6px;
  font: 600 11px/1 var(--hy-font-body);
  display: inline-flex; align-items: center; justify-content: center; gap: 5px;
}
.smm-fp__btn.approve { background: var(--smm-rose); color: #2A1322; }
.smm-fp__btn.reject { background: #FB7185; color: #fff; }
.smm-fp__btn.more { background: rgba(0,0,0,0.05); color: #2A1322; padding: 8px; }

/* ── CALENDAR v2 — labeled cells + week details panel ─────── */
.smm-cal-v2 {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 16px;
  align-items: start;
}
.smm-cal-main {
  background: var(--smm-elev);
  border: 1px solid var(--smm-border);
  border-radius: 12px;
  padding: 16px;
}
.smm-cal-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.smm-cal-title-grp {
  display: flex; flex-direction: column;
}
.smm-cal-h2 {
  font: 700 18px/1.1 var(--hy-font-display);
  color: var(--smm-text);
}
.smm-cal-h3 {
  font: 400 11px/1 var(--hy-font-body);
  color: var(--smm-text-mute);
  margin-top: 3px;
}
.smm-cal-nav {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--smm-bg);
  border: 1px solid var(--smm-border-strong);
  border-radius: 8px;
  padding: 4px 10px;
  font: 500 12px/1 var(--hy-font-body);
  color: var(--smm-text);
}
.smm-cal-nav-btn { padding: 4px 6px; color: var(--smm-text-mute); }
.smm-cal-mw {
  background: var(--smm-bg);
  border: 1px solid var(--smm-border-strong);
  border-radius: 6px;
  padding: 3px;
  display: inline-flex; gap: 2px;
}
.smm-cal-mw-btn {
  padding: 4px 8px;
  font: 500 11px/1 var(--hy-font-body);
  border-radius: 4px;
  color: var(--smm-text-mute);
}
.smm-cal-mw-btn.active { background: var(--smm-rose); color: #2A1322; font-weight: 600; }

.smm-cal-grid-v2 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.smm-cal-grid-v2 > div {
  border-radius: 6px;
}
.smm-cal-day-head {
  font: 600 10px/1 var(--hy-font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--smm-text-dim);
  padding: 6px 4px 4px;
  text-align: left;
}
.smm-cal-cell-v2 {
  min-height: 64px;
  padding: 6px;
  display: flex; flex-direction: column; gap: 3px;
  font: 500 11px/1 var(--hy-font-body);
  color: var(--smm-text-mute);
  border: 1px solid transparent;
}
.smm-cal-cell-v2.muted { color: var(--smm-text-dim); }
.smm-cal-cell-v2.today {
  background: var(--smm-rose);
  color: #2A1322;
  font-weight: 700;
}
.smm-cal-cell-v2.today .smm-cal-num { background: var(--smm-marigold); color: #2A1322; padding: 1px 5px; border-radius: 8px; }
.smm-cal-cell-v2.has {
  background: var(--smm-bg);
  border-color: var(--smm-border);
}
.smm-cal-num {
  font: 700 11px/1 var(--hy-font-body);
}
.smm-cal-evt {
  font: 500 9px/1.1 var(--hy-font-body);
  padding: 2px 4px;
  border-radius: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.smm-cal-evt.review { background: rgba(241,174,27,0.18); color: var(--smm-marigold); }
.smm-cal-evt.approved { background: rgba(74,222,128,0.16); color: var(--smm-green); }
.smm-cal-evt.scheduled { background: rgba(159,157,214,0.18); color: var(--smm-peri); }
.smm-cal-more {
  font: 500 9px/1 var(--hy-font-body);
  color: var(--smm-text-dim);
  padding: 2px 4px;
}

.smm-cal-week {
  background: var(--smm-elev);
  border: 1px solid var(--smm-border);
  border-radius: 12px;
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
  max-height: 460px;
  overflow: hidden;
}
.smm-cal-week-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--smm-border);
}
.smm-cal-week-title {
  font: 700 14px/1.2 var(--hy-font-display);
  color: var(--smm-text);
}
.smm-cal-week-sub {
  font: 400 10px/1.3 var(--hy-font-body);
  color: var(--smm-text-mute);
  margin-top: 3px;
}
.smm-cal-evt-list {
  display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.smm-cal-evt-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px; align-items: flex-start;
  padding: 6px 0;
  border-bottom: 1px solid var(--smm-border);
}
.smm-cal-evt-row:last-child { border-bottom: 0; }
.smm-cal-evt-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font: 700 11px/1 var(--hy-font-body);
  color: #fff;
}
.smm-cal-evt-meta-time {
  font: 500 10px/1 'JetBrains Mono', monospace;
  color: var(--smm-text-dim);
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}
.smm-cal-evt-meta-title {
  font: 500 11px/1.35 var(--hy-font-body);
  color: var(--smm-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.smm-cal-evt-pill {
  display: inline-block;
  margin-top: 4px;
  font: 600 8px/1 var(--hy-font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 999px;
}
.smm-cal-evt-pill.approved { background: rgba(74,222,128,0.16); color: var(--smm-green); }
.smm-cal-evt-pill.review { background: rgba(241,174,27,0.18); color: var(--smm-marigold); }

.smm-cal-legend {
  display: inline-flex; gap: 14px;
  margin-top: 8px;
  font: 500 11px/1 var(--hy-font-body);
  color: var(--smm-text-mute);
}

/* SMM dashboard grid — 3 rows of stats now (3 + 3 + 1) */
.smm-dash {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 1100px) {
  .smm-cal-v2 { grid-template-columns: 1fr; }
}

/* ── Practice play overlay (custom, replaces native <video controls>) ── */
.practice {
  cursor: pointer;
}
.practice__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.practice__play::after {
  content: "";
  width: 0; height: 0;
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent rgba(255,255,255,0.95);
  margin-left: 4px;
}
.practice[data-playing="1"] .practice__play {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
}
.practice:hover .practice__play {
  background: rgba(0,0,0,0.7);
  transform: translate(-50%, -50%) scale(1.06);
}
.practice[data-playing="1"]:hover .practice__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
/* When playing — pause icon */
.practice[data-playing="1"]:hover .practice__play::after {
  border: none;
  width: 16px; height: 16px;
  background:
    linear-gradient(to right,
      rgba(255,255,255,0.95) 0 5px,
      transparent 5px 11px,
      rgba(255,255,255,0.95) 11px 16px);
  margin-left: 0;
}

/* ================================================================
 * v5 — Rules equal-height + cleaner Rule 03 list + Thanks section
 * ================================================================ */

/* Equal-height rules with evenly distributed content */
.rule {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.rule__num { margin-bottom: 0; }
.rule__title { margin-bottom: 0; }
.rule__body { margin-bottom: 0; }
.rule__body--alt { margin-top: 0; }

/* Rule 03 list — typographic, no boxed pills */
.rule__list--v2 {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 20px;
  margin-top: 4px;
}
.rule__list--v2 li {
  display: block;
  font: 400 22px/1.55 var(--hy-font-body);
  color: rgba(255,255,255,0.85);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  /* Reset old grid layout */
  grid-template-columns: unset;
  gap: 0;
}
.rule__list--v2 li:last-child { border-bottom: none; padding-bottom: 0; }
.rule__list--v2 li strong {
  font: 700 14px/1 var(--hy-font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hy-accent-lime);
  margin-right: 10px;
  display: inline;
  vertical-align: baseline;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
}
.rule__list--v2 li.rule__list--now strong {
  color: var(--hy-accent-orange-500);
}
.rule__list--v2 li.rule__list--now {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}
.rule__hours {
  font-size: 0.7em;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-left: 6px;
  letter-spacing: 0;
  font-feature-settings: "tnum";
}

/* On wide screens, distribute rule__list a bit more compactly to fit min-height */
@media (max-width: 900px) {
  .rule { min-height: auto; }
  .rule__list--v2 li { font-size: 17px; }
}

/* ── Thank you section ───────────────────────────────────── */
.thanks {
  text-align: center;
  padding: 100px 80px 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.thanks__big {
  font: 700 88px/1.05 var(--hy-font-display);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.thanks__big .accent { color: var(--hy-highlight-lime); }
.thanks__sub {
  font: 400 22px/1.5 var(--hy-font-body);
  color: rgba(255,255,255,0.6);
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .thanks { padding: 60px 32px 40px; }
  .thanks__big { font-size: 48px; }
}

/* ================================================================
 * v6 — Practices flow redesign (zigzag timeline) + avatar fix
 * ================================================================ */

/* Hide old horizontal flow — using new .flowz */
.flow { display: none; }

/* Zigzag timeline: humans left, AI right, central spine */
.flowz {
  list-style: none;
  position: relative;
  margin: 32px 0 56px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.flowz::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  transform: translateX(-1px);
  background: linear-gradient(to bottom,
    transparent,
    rgba(255,255,255,0.16) 6%,
    rgba(255,137,29,0.35) 50%,
    rgba(255,255,255,0.16) 94%,
    transparent);
}
.flowz__step {
  position: relative;
  padding: 12px 0;
  display: flex;
  align-items: stretch;
}
.flowz__step.left {
  grid-column: 1;
  justify-content: flex-end;
  padding-right: 36px;
}
.flowz__step.right {
  grid-column: 2;
  justify-content: flex-start;
  padding-left: 36px;
}
/* Marker dot on the spine */
.flowz__step::before {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  top: 30px;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 0 0 4px var(--hy-bg-primary);
  z-index: 2;
}
.flowz__step.left::before { right: -8px; }
.flowz__step.right::before { left: -8px; }
.flowz__step.ai::before {
  background: var(--hy-accent-lime);
  box-shadow: 0 0 0 4px var(--hy-bg-primary), 0 0 18px rgba(211,255,85,0.5);
}

/* Connector arrow on spine pointing toward next side */
.flowz__step::after {
  content: "";
  position: absolute;
  top: 32px;
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.18);
  transition: background .2s, width .2s;
}
.flowz__step.left::after { right: -32px; }
.flowz__step.right::after { left: -32px; }
.flowz__step.ai::after { background: var(--hy-accent-lime); opacity: 0.6; }

.flowz__card {
  background: var(--hy-card-dark-bg);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px 24px;
  max-width: 460px;
  width: 100%;
  cursor: default;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.flowz__step:hover .flowz__card {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
}
.flowz__step.ai .flowz__card {
  background: linear-gradient(135deg, rgba(211,255,85,0.06), rgba(211,255,85,0.02));
  border-color: rgba(211,255,85,0.22);
}
.flowz__step.ai:hover .flowz__card {
  border-color: rgba(211,255,85,0.55);
  box-shadow: 0 12px 36px rgba(211,255,85,0.12);
}

.flowz__num {
  font: 700 11px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}
.flowz__step.ai .flowz__num { color: var(--hy-accent-lime); }
.flowz__role {
  font: 700 22px/1.2 var(--hy-font-display);
  letter-spacing: -0.005em;
  color: var(--hy-text-primary);
  margin-bottom: 6px;
}
.flowz__step.ai .flowz__role { color: var(--hy-accent-lime); }
.flowz__action {
  font: 400 15px/1.5 var(--hy-font-body);
  color: rgba(255,255,255,0.78);
}

@media (max-width: 900px) {
  .flowz { grid-template-columns: 1fr; }
  .flowz::before { left: 24px; }
  .flowz__step.left, .flowz__step.right {
    grid-column: 1;
    justify-content: flex-start;
    padding-left: 56px;
    padding-right: 0;
  }
  .flowz__step::before { left: 16px !important; right: auto !important; }
  .flowz__step::after { left: 32px !important; right: auto !important; }
}

/* ── SMM avatar — Goodly icon instead of random gradient ── */
.smm-fp__avatar {
  background: var(--smm-marigold) url('assets/cobrand.png') center/cover no-repeat;
  background-size: contain;
}

/* ── Bio-path gradient tints (Ubisoft → orange progression) ── */
.bio-path li.tint-1 { color: #ECE3C9; }
.bio-path li.tint-1::before { background: #ECE3C9; box-shadow: 0 0 0 2px var(--hy-bg-primary); }
.bio-path li.tint-2 { color: #DBCD8C; }
.bio-path li.tint-2::before { background: #DBCD8C; box-shadow: 0 0 0 2px var(--hy-bg-primary); }
.bio-path li.tint-3 { color: #BFD865; }
.bio-path li.tint-3::before { background: #BFD865; box-shadow: 0 0 0 2px var(--hy-bg-primary); }

/* ── Calendar v2 — visible borders on every cell ────────── */
.smm-cal-cell-v2 {
  border: 1px solid rgba(242,220,214,0.08);
  background: rgba(242,220,214,0.012);
}
.smm-cal-cell-v2.muted {
  background: rgba(242,220,214,0.025);
  border-color: rgba(242,220,214,0.05);
  color: var(--smm-text-dim);
}
.smm-cal-cell-v2.has {
  background: var(--smm-bg);
  border-color: rgba(242,220,214,0.14);
}
.smm-cal-cell-v2.muted.has {
  background: rgba(242,220,214,0.025);
  border-color: rgba(242,220,214,0.1);
}

/* ================================================================
 * v7 — Goodly icon + Generate Week thumbnails + Calendar fit
 * ================================================================ */

/* Shell brand icon as image */
img.smm-shell-brand-icon {
  width: 24px; height: 24px;
  border-radius: 5px;
  background: var(--smm-marigold);
  object-fit: cover;
  display: inline-block;
}

/* Generate Week progress cells — image thumbnails + states */
.smm-progress__cell {
  position: relative;
  overflow: hidden;
  background-color: rgba(46,16,30,0.05);
}
.smm-progress__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.smm-progress__cell.done {
  background-color: transparent;
  color: transparent;
  border: 1px solid rgba(74,222,128,0.3);
}
.smm-progress__cell.done .smm-progress__bg {
  /* image full visible */
}
.smm-progress__check {
  position: absolute;
  bottom: 6px; right: 6px;
  z-index: 2;
  width: 24px; height: 24px;
  background: #1a8e3e;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font: 700 13px/1 var(--hy-font-body);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.smm-progress__cell.running {
  background-color: transparent;
  border: 1px solid rgba(241,174,27,0.4);
  color: transparent;
}
.smm-progress__cell.running .smm-progress__bg {
  filter: blur(10px) brightness(0.7);
  transform: scale(1.15);
}
.smm-progress__spinner {
  position: relative;
  z-index: 2;
  font-size: 24px;
  color: var(--smm-marigold);
  animation: smm-spin 1.6s linear infinite;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
@keyframes smm-spin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

.smm-progress__cell.pending {
  background: linear-gradient(90deg,
    rgba(46,16,30,0.04) 0%,
    rgba(46,16,30,0.10) 25%,
    rgba(46,16,30,0.18) 50%,
    rgba(46,16,30,0.10) 75%,
    rgba(46,16,30,0.04) 100%);
  background-size: 220% 100%;
  animation: smm-shimmer 1.6s ease-in-out infinite;
  color: transparent;
}
.smm-progress__loader {
  display: block;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(46,16,30,0.12);
  border-top-color: rgba(46,16,30,0.4);
  animation: smm-spin 1s linear infinite;
}
@keyframes smm-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* Calendar — strict equal columns so SAT fits */
.smm-cal-grid-v2 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.smm-cal-cell-v2 {
  min-width: 0;  /* allow shrink */
  padding: 5px;
}
.smm-cal-evt {
  font-size: 9px;
  padding: 2px 4px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Interactive states for buttons / tabs ────────────────── */
.smm-feed-tab,
.smm-pill,
.smm-feed-toggle-btn,
.smm-feed-btn,
.smm-pending-link,
.smm-fp__btn,
.chrome-tab,
.smm-cal-mw-btn,
.smm-cal-nav-btn {
  cursor: pointer;
  transition: background .15s, color .15s, transform .1s;
  user-select: none;
}
.smm-feed-tab:hover { color: var(--smm-text); }
.smm-pill:hover:not(.active) { background: rgba(46,16,30,0.1); }
.smm-feed-toggle-btn:hover:not(.active),
.smm-cal-mw-btn:hover:not(.active) {
  color: var(--smm-text);
  background: rgba(46,16,30,0.05);
}
.smm-feed-btn:hover { transform: translateY(-1px); }
.smm-feed-btn:active,
.smm-fp__btn:active,
.smm-feed-tab:active,
.smm-pill:active { transform: scale(0.97); }
.smm-fp__btn.approve:hover { background: #c89faa; }
.smm-fp__btn.reject:hover { background: #f96585; }
.smm-pending-link:hover { color: #f0d3d8; text-decoration: underline; }

/* ================================================================
 * v8 — Movie-style end credits (after Thanks)
 * ================================================================ */

.credits {
  background: #000;
  color: rgba(255,255,255,0.92);
  height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
/* Top + bottom fade masks */
.credits::before,
.credits::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 120px;
  z-index: 3;
  pointer-events: none;
}
.credits::before {
  top: 0;
  background: linear-gradient(to bottom, #000 30%, transparent);
}
.credits::after {
  bottom: 0;
  background: linear-gradient(to top, #000 30%, transparent);
}

.credits__viewport {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.credits__roll {
  width: 100%;
  max-width: 720px;
  text-align: center;
  padding: 0 40px;
  font-family: 'Inter', system-ui, sans-serif;
  transform: translateY(100vh);
}
.credits.in .credits__roll {
  animation: credit-roll 50s linear forwards;
}
@keyframes credit-roll {
  from { transform: translateY(100vh); }
  to { transform: translateY(-110%); }
}

.credits__hero {
  font: 500 13px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.credits__star {
  font: 700 64px/1.05 var(--hy-font-display);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: #fff;
}
.credits__star-role {
  font: 400 18px/1.4 var(--hy-font-body);
  color: rgba(255,255,255,0.65);
  margin-bottom: 120px;
}

.credits__group {
  margin-bottom: 80px;
}
.credits__title {
  font: 600 12px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.credits__row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.credits__row--solo { gap: 0; flex-direction: column; }
.credits__name {
  font: 600 22px/1.3 var(--hy-font-display);
  letter-spacing: -0.005em;
  color: #fff;
}
.credits__role {
  font: 400 15px/1.4 var(--hy-font-body);
  color: rgba(255,255,255,0.6);
}
.credits__whisper {
  font-style: italic;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
  margin: 0 4px;
}
.credits__end {
  font: 700 32px/1 var(--hy-font-display);
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.7);
  margin-top: 80px;
  margin-bottom: 80px;
}

/* While credits are rolling — fade out the sticky nav */
body.credits-active .nav {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s;
}

@media (max-width: 700px) {
  .credits__star { font-size: 40px; }
  .credits__name { font-size: 18px; }
  .credits__row { gap: 6px; flex-direction: column; }
}

/* ── 4K centering — cap main content width ─────────────── */
main {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Sticky nav still full-bleed (uses position fixed) — but center its content */
.nav {
  padding-left: max(40px, calc((100vw - 1920px) / 2 + 40px));
  padding-right: max(40px, calc((100vw - 1920px) / 2 + 40px));
}

/* Footer / credits / thanks must inherit centering */
.footer { max-width: 1440px; }

/* ================================================================
 * v9 — Bio gradient unified, numbers cleanup, flow staircase, footer
 * ================================================================ */

/* ── Bio path: single smooth gradient green → orange ─────── */
.bio-path li.tint-1, .bio-path li.tint-2, .bio-path li.tint-3, .bio-path li.highlight {
  /* Reset old tint classes — gradient now via :nth-child below */
}
.bio-path li:nth-child(1)  { color: #4FA040; }
.bio-path li:nth-child(1)::before  { background: #4FA040; box-shadow: 0 0 0 2px var(--hy-bg-primary); }
.bio-path li:nth-child(2)  { color: #6BAD43; }
.bio-path li:nth-child(2)::before  { background: #6BAD43; box-shadow: 0 0 0 2px var(--hy-bg-primary); }
.bio-path li:nth-child(3)  { color: #87B847; }
.bio-path li:nth-child(3)::before  { background: #87B847; box-shadow: 0 0 0 2px var(--hy-bg-primary); }
.bio-path li:nth-child(4)  { color: #A4C04A; }
.bio-path li:nth-child(4)::before  { background: #A4C04A; box-shadow: 0 0 0 2px var(--hy-bg-primary); }
.bio-path li:nth-child(5)  { color: #BDC340; }
.bio-path li:nth-child(5)::before  { background: #BDC340; box-shadow: 0 0 0 2px var(--hy-bg-primary); }
.bio-path li:nth-child(6)  { color: #D2B438; }
.bio-path li:nth-child(6)::before  { background: #D2B438; box-shadow: 0 0 0 2px var(--hy-bg-primary); }
.bio-path li:nth-child(7)  { color: #E1A22D; }
.bio-path li:nth-child(7)::before  { background: #E1A22D; box-shadow: 0 0 0 2px var(--hy-bg-primary); }
.bio-path li:nth-child(8)  { color: #ED9523; }
.bio-path li:nth-child(8)::before  { background: #ED9523; box-shadow: 0 0 0 2px var(--hy-bg-primary); }
.bio-path li:nth-child(9)  { color: #F88E1F; font-weight: 500; }
.bio-path li:nth-child(9)::before  { background: #F88E1F; box-shadow: 0 0 0 3px rgba(248,142,31,0.18); }
.bio-path li:nth-child(10) { color: #FF891D; font-weight: 600; font-size: 19px; }
.bio-path li:nth-child(10)::before { background: #FF891D; box-shadow: 0 0 0 3px rgba(255,137,29,0.22); }

/* ── Numbers panel — clean variant (only title + metric) ─── */
.numbers.numbers--clean .numbers__cell {
  gap: 16px;
}
.numbers.numbers--clean .numbers__delta { display: none; }
.numbers.numbers--clean .numbers__value {
  color: var(--hy-accent-lime);
}
.numbers.numbers--clean .numbers__value .accent {
  color: var(--hy-accent-lime);
}
.numbers__value--multi {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 36px;
  line-height: 1.1;
}
.numbers__value--multi div {
  display: flex; align-items: baseline; gap: 6px;
}
.numbers__note {
  text-align: center;
  margin-top: 24px;
  font: 400 14px/1.4 var(--hy-font-body);
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

/* ── Flow staircase — each step offset down by half ──────── */
/* v38: fixed-height rows that comfortably fit the 3-line tile content;
        dot anchored to the centre of its tile (not the top edge);
        chevrons drawn between consecutive dots in sequence. */
.flowz {
  grid-auto-rows: 70px;
  grid-template-rows: repeat(8, 70px);
}


.flowz__step { grid-row: auto / span 2; }
.flowz__step:nth-child(1) { grid-row: 1 / span 2; grid-column: 1; }
.flowz__step:nth-child(2) { grid-row: 2 / span 2; grid-column: 2; }
.flowz__step:nth-child(3) { grid-row: 3 / span 2; grid-column: 1; }
.flowz__step:nth-child(4) { grid-row: 4 / span 2; grid-column: 2; }
.flowz__step:nth-child(5) { grid-row: 5 / span 2; grid-column: 1; }
.flowz__step:nth-child(6) { grid-row: 6 / span 2; grid-column: 2; }
.flowz__step:nth-child(7) { grid-row: 7 / span 2; grid-column: 1; }

/* The connector arrow (::after) — re-position for staircase */
.flowz__step::after { display: none; }
/* Dot anchored to vertical centre of each card */
.flowz__step::before {
  top: 50%;
  transform: translateY(-50%);
}
.flowz__card { padding: 16px 22px; }

/* ── Footer cleanup — no Goodly icon, name not centered ── */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 80px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__cobrand img { display: none; }
.footer__cobrand .divider { display: none; }
.footer__cobrand {
  font: 700 16px/1 var(--hy-font-display);
  letter-spacing: -0.005em;
}
.footer__center {
  text-align: left;
  font: 500 14px/1.5 var(--hy-font-body);
  color: rgba(255,255,255,0.7);
  flex: 0 0 auto;
}
.footer__center strong { display: none; }
.footer__meta { display: none; }
@media (max-width: 700px) {
  .footer { flex-direction: column; gap: 12px; padding: 32px; align-items: flex-start; }
}

/* ================================================================
 * v10 — Features list (lime→gray gradient) + Page divider + Star Wars credits
 * ================================================================ */

/* ── Features lists with gradient (Підключено / Робить) ─── */
.features.features--v2 {
  padding: 32px 36px;
}
.features--v2 .features__col h4 {
  font: 700 14px/1 var(--hy-font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
  border-bottom: none;
  padding-bottom: 0;
  display: block;
}
.features__list--gradient {
  display: flex; flex-direction: column;
  gap: 6px;
  list-style: none;
}
.features__list--gradient li {
  background: none;
  border: none;
  border-radius: 0;
  padding: 4px 0;
  display: block;
  width: auto;
}
/* Three levels: lvl-0 lime/big, lvl-1 mid, lvl-2 small/gray */
.features__list--gradient li.lvl-0 {
  font: 600 22px/1.3 var(--hy-font-display);
  letter-spacing: -0.005em;
  color: var(--hy-accent-lime);
}
.features__list--gradient li.lvl-1 {
  font: 500 16px/1.4 var(--hy-font-body);
  color: rgba(195,213,138,0.85);
  margin-top: 4px;
}
.features__list--gradient li.lvl-2 {
  font: 400 14px/1.4 var(--hy-font-body);
  color: rgba(255,255,255,0.45);
}
.features__list--gradient li.lvl-2.etc {
  color: rgba(255,255,255,0.32);
  font-style: italic;
  margin-top: 6px;
}
/* Add subtle dividers between levels */
.features__list--gradient li.lvl-0 + li.lvl-1,
.features__list--gradient li.lvl-1 + li.lvl-2,
.features__list--gradient li.lvl-0 + li.lvl-2 {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ── Page divider — Star Wars roll trigger ─────────────── */
.page-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 40px 80px;
  max-width: 1200px;
  margin: 80px auto 0;
}
.page-divider__line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--hy-accent-orange-500), transparent);
}
.page-divider__label {
  font: 600 11px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}
@media (max-width: 700px) {
  .page-divider { padding: 24px; margin-top: 40px; }
}

/* ── Credits — green bg, Star Wars perspective ──────────── */
.credits {
  background: #0F1F0A;
  background: radial-gradient(ellipse at 50% 100%, #1a3010 0%, #0F1F0A 60%, #060d04 100%);
  height: 100vh;
  perspective: 600px;
}
.credits::before { background: linear-gradient(to bottom, #060d04 30%, transparent); }
.credits::after  { background: linear-gradient(to top, #060d04 30%, transparent); }
.credits__roll {
  /* Star Wars perspective tilt */
  transform: rotateX(18deg) translateY(100vh);
  transform-origin: 50% 100%;
}
.credits.in .credits__roll {
  animation: credit-roll-sw 28s linear forwards;
}
@keyframes credit-roll-sw {
  from { transform: rotateX(18deg) translateY(100vh); }
  to   { transform: rotateX(18deg) translateY(-180%); }
}

/* Thanks block inside credits roll */
.thanks-block {
  text-align: center;
  margin-bottom: 120px;
}
.thanks-block .thanks__big {
  font: 700 88px/1.05 var(--hy-font-display);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: #fff;
}
.thanks-block .thanks__big .accent {
  color: var(--hy-highlight-lime);
}
.thanks-block .thanks__sub {
  font: 400 22px/1.5 var(--hy-font-body);
  color: rgba(255,255,255,0.7);
  max-width: 680px;
  margin: 0 auto;
}

/* The End — bigger, brighter for finale */
.credits__end {
  font: 700 56px/1 var(--hy-font-display);
  letter-spacing: -0.01em;
  color: #fff;
  margin-top: 100px;
  margin-bottom: 100px;
}

/* When credits trigger fires, hide nav */
body.credits-active .nav {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s;
}

@media (max-width: 700px) {
  .thanks-block .thanks__big { font-size: 44px; }
  .credits__end { font-size: 36px; }
}

/* Hide standalone old .thanks section if still present (now in credits) */
.thanks { display: none; }

/* ── Footer fix v11 — bring Goodly icon back + center name ── */
.footer__cobrand img { display: inline-block !important; }
.footer__cobrand .divider { display: inline-block !important; }
.footer {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  padding: 48px 80px !important;
}
.footer__center {
  text-align: center !important;
  flex: unset !important;
}
.footer__center strong { display: block !important; }
@media (max-width: 700px) {
  .footer { grid-template-columns: 1fr !important; gap: 16px !important; padding: 32px !important; align-items: center !important; }
  .footer__cobrand, .footer__center { text-align: center !important; justify-self: center; }
}

/* ── Numbers v2 — center cells + per-cell note ─────────── */
.numbers.numbers--clean {
  justify-items: center;
  text-align: center;
}
.numbers.numbers--clean .numbers__cell {
  text-align: center;
  align-items: center;
  justify-content: flex-start;
}
.numbers.numbers--clean .numbers__label,
.numbers.numbers--clean .numbers__value {
  text-align: center;
  width: 100%;
}
.numbers.numbers--clean .numbers__value--multi {
  align-items: center;
}
.numbers.numbers--clean .numbers__value--multi div {
  justify-content: center;
}
.numbers__note-small {
  margin-top: auto;
  padding-top: 18px;
  font: 400 11px/1.3 var(--hy-font-body);
  color: rgba(255,255,255,0.32);
  font-style: italic;
  letter-spacing: 0.02em;
}
/* Force all 3 cells to stretch to the same height so the bottom-anchored
 * note lands on the same baseline regardless of value content. */
.numbers.numbers--clean { align-items: stretch; }
.numbers.numbers--clean .numbers__cell {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.numbers__note { display: none; }

/* ================================================================
 * v11 — Features pill-cloud (replaces column gradient list)
 * ================================================================ */

/* Reset previous list styles */
.features--v2 {
  padding: 32px 36px;
}
.features--v2 .features__col h4 {
  font: 600 12px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 22px;
  border-bottom: none;
  padding-bottom: 0;
  display: inline-block;
}

/* Pill cloud — flex wrap */
.features__list--gradient {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 6px;
  align-items: center;
}
.features__list--gradient li {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid;
  background: none;
  font: 500 13px/1.2 var(--hy-font-body);
  margin: 0;
  white-space: nowrap;
}
/* Top tier: bright lime pill */
.features__list--gradient li.lvl-0 {
  background: rgba(211,255,85,0.08);
  border-color: rgba(211,255,85,0.32);
  color: #C8EE5C;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
}
/* Mid tier: neutral white */
.features__list--gradient li.lvl-1 {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.78);
  font-size: 13px;
}
/* Bottom tier: subtle gray */
.features__list--gradient li.lvl-2 {
  background: transparent;
  border-color: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  padding: 6px 12px;
}
/* "та інше" tail */
.features__list--gradient li.etc {
  color: rgba(255,255,255,0.4);
  border-style: dashed;
  font-style: italic;
  font-size: 12px;
}
/* Reset old margin/padding/border between levels */
.features__list--gradient li.lvl-0 + li.lvl-1,
.features__list--gradient li.lvl-1 + li.lvl-2,
.features__list--gradient li.lvl-0 + li.lvl-2 {
  margin-top: 0;
  padding-top: 7px;
  border-top: 1px solid;  /* keep border */
}
.features__list--gradient li.lvl-0 + li.lvl-1 { border-top-color: rgba(255,255,255,0.14); }
.features__list--gradient li.lvl-1 + li.lvl-2 { border-top-color: rgba(255,255,255,0.10); }
.features__list--gradient li.lvl-0 + li.lvl-2 { border-top-color: rgba(255,255,255,0.10); }

/* Make grid responsive — single column on narrower screens */
@media (max-width: 900px) {
  .features.features--v2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ================================================================
 * v12 — Credits scroll-driven, dark bg (no green, no auto-roll)
 * ================================================================ */

.credits {
  background: var(--hy-bg-primary) !important; /* dark canvas, no green */
  height: 380vh;  /* tall enough for slow scroll-driven roll */
  perspective: none;
  position: relative;
}
.credits::before, .credits::after {
  display: none; /* no fade masks needed */
}
.credits__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.credits__viewport {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
}
.credits__roll {
  width: 100%;
  max-width: 720px;
  text-align: center;
  padding: 80px 40px 80px;
  font-family: 'Inter', system-ui, sans-serif;
  transform: translateY(0); /* initial: visible at top */
  animation: none; /* JS controls it */
  will-change: transform;
}
/* Override old animation class — no longer used */
.credits.in .credits__roll { animation: none; }
@keyframes credit-roll-sw { /* unused now */ }

/* ================================================================
 * v13 — Credits sticky/scroll fix (overflow conflict)
 * ================================================================ */

/* MUST override overflow on .credits to allow sticky child to engage */
.credits {
  overflow: visible !important;
  background: var(--hy-bg-primary) !important;
  height: 380vh !important;
  perspective: none !important;
  position: relative !important;
  margin-top: 0 !important;
  border-top: none !important;
}
.credits::before, .credits::after { display: none !important; }

.credits__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.credits__viewport {
  position: relative !important;
  inset: auto !important;
  width: 100%;
  max-width: 720px;
  display: block !important;
}
.credits__roll {
  width: 100%;
  max-width: 720px;
  text-align: center;
  padding: 60px 40px 80px;
  transform: translateY(0);
  will-change: transform;
  font-family: 'Inter', system-ui, sans-serif;
  position: relative;
}
.credits.in .credits__roll { animation: none !important; }

/* ================================================================
 * v14 — Credits timer-based auto-roll, triggered on thanks visible
 * ================================================================ */

/* Section is just tall enough for sticky lock during animation */
.credits {
  height: 100vh !important;     /* back to 100vh — animation handles roll */
  overflow: hidden !important;  /* clip rolling content */
}
.credits__sticky {
  position: relative !important;
  height: 100vh;
  overflow: hidden;
}
.credits__roll {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px;
  transform: translateY(0); /* visible at start */
  will-change: transform;
  max-width: 720px;
  margin: 0 auto;
}
/* Animation kicks in only when .credits.in is added (thanks fully visible) */
.credits.in .credits__roll {
  animation: credit-roll-auto 55s linear forwards;
}
@keyframes credit-roll-auto {
  from { transform: translateY(0); }
  to   { transform: translateY(-260vh); }
}

/* ================================================================
 * v15 — Credits final fix: sticky 380vh + absolute roll
 * ================================================================ */

.credits {
  height: 380vh !important;
  overflow: visible !important;
  background: var(--hy-bg-primary) !important;
  position: relative !important;
  margin-top: 40px !important;
  border-top: none !important;
  perspective: none !important;
}
.credits::before, .credits::after { display: none !important; }

.credits__sticky {
  position: sticky !important;
  top: 0 !important;
  height: 100vh !important;
  overflow: hidden !important;
  display: block !important;
  align-items: unset !important;
}
.credits__viewport {
  position: relative !important;
  height: 100vh !important;
  width: 100% !important;
  max-width: none !important;
  inset: auto !important;
  display: block !important;
  overflow: hidden !important;
}
.credits__roll {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 auto !important;
  width: 100% !important;
  max-width: 720px !important;
  padding: 80px 40px !important;
  text-align: center;
  transform: translateY(0);
  will-change: transform;
  font-family: 'Inter', system-ui, sans-serif;
}
.credits.in .credits__roll {
  animation: credit-roll-auto 55s linear forwards !important;
}
@keyframes credit-roll-auto {
  from { transform: translateY(0); }
  to   { transform: translateY(-260vh); }
}

/* ── Credits fade-out edges (replaces sharp overflow clip) ── */
.credits__viewport {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 14%, rgba(0,0,0,1) 86%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 14%, rgba(0,0,0,1) 86%, transparent 100%);
}

/* ================================================================
 * v16 — Background isolation: main solid dark, bloom only on hero
 * ================================================================ */

/* Move body bloom OFF body — only hero gets it */
body::before { display: none !important; }

/* Main is now solid dark — no bg leak between sections */
main {
  background: var(--hy-bg-primary);
}

/* Hero gets its own bloom via ::before */
.hero {
  position: relative;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 700px at 12% -8%, rgba(211,255,85,0.08), transparent 60%),
    radial-gradient(700px 600px at 92% 10%, rgba(255,137,29,0.06), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* Credits — already solid dark, no transition needed now */
.credits {
  margin-top: 0 !important;  /* no extra space — visual continuity with main */
}

/* ── Fin element — appears centered after roll completes ── */
.credits__fin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  opacity: 0;
  font: 700 110px/1 var(--hy-font-display);
  color: rgba(255,255,255,0.95);
  letter-spacing: -0.02em;
  text-align: center;
  pointer-events: none;
  z-index: 5;
  font-style: italic;
}
.credits.in .credits__fin {
  animation: fin-fade-in 6s ease-out forwards;
  animation-delay: 42s;
}
@keyframes fin-fade-in {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.94); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* ================================================================
 * v17 — Credits snap + center thanks + reach the end
 * ================================================================ */

/* Scroll-snap on credits — user lands at top of section */
html {
  scroll-snap-type: y proximity;
}
.credits {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Center thanks block when sticky engages */
.credits__roll {
  padding: calc(50vh - 140px) 40px 100px !important;
}

/* Increase animation distance so last lines fully scroll off */
.credits.in .credits__roll {
  animation: credit-roll-auto 60s linear forwards !important;
}
@keyframes credit-roll-auto {
  from { transform: translateY(0); }
  to   { transform: translateY(-360vh); }
}

/* Fin appears later — after roll is mostly off */
.credits.in .credits__fin {
  animation: fin-fade-in 6s ease-out forwards !important;
  animation-delay: 50s !important;
}

/* ================================================================
 * v18 — Old film filter (vignette + grain + color + flicker + weave)
 * Timed with Fin fade-in (50s into roll)
 * ================================================================ */

/* Film overlay — vignette + animated grain */
.credits__film {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  background:
    radial-gradient(ellipse at center, transparent 48%, rgba(0,0,0,0.55) 100%),
    url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.55  0 0 0 0 0.5  0 0 0 0 0.42  0 0 0 0.55 0'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: cover, 220px 220px;
  background-blend-mode: normal, multiply;
  mix-blend-mode: multiply;
}
.credits.in .credits__film {
  animation:
    film-fade-in 8s ease-out forwards 50s,
    film-grain-shake 0.2s steps(3) infinite 50s;
}
@keyframes film-fade-in {
  from { opacity: 0; }
  to   { opacity: 0.9; }
}
@keyframes film-grain-shake {
  0%   { background-position: 0 0, 0 0; }
  20%  { background-position: 0 0, -4px 2px; }
  40%  { background-position: 0 0, 3px -3px; }
  60%  { background-position: 0 0, -2px 4px; }
  80%  { background-position: 0 0, 4px -1px; }
  100% { background-position: 0 0, -1px -2px; }
}

/* Color tint + slight contrast on viewport */
.credits.in .credits__viewport {
  animation:
    film-color 8s ease-out forwards 50s,
    film-weave 1.7s linear infinite 50s;
}
@keyframes film-color {
  from { filter: none; }
  to   { filter: contrast(1.08) sepia(0.08) brightness(0.94) saturate(0.85); }
}
@keyframes film-weave {
  0%, 100% { transform: translateX(0); }
  25%      { transform: translateX(0.6px); }
  50%      { transform: translateX(-0.4px); }
  75%      { transform: translateX(0.3px); }
}

/* Flicker — overall opacity oscillation, like 24fps gate */
.credits.in .credits__sticky {
  animation: film-flicker 0.18s steps(2, end) infinite 50s;
}
@keyframes film-flicker {
  0%   { opacity: 1; }
  50%  { opacity: 0.965; }
  100% { opacity: 1; }
}

/* Fin gets slightly warmer with film */
.credits.in .credits__fin {
  text-shadow: 0 0 30px rgba(255,200,140,0.15);
}

/* ================================================================
 * v19 — Bigger Fin, faster roll, dust specks, film over Fin too
 * ================================================================ */

/* Bigger Fin */
.credits__fin {
  font-size: 160px !important;
  letter-spacing: -0.025em !important;
  font-style: italic !important;
}

/* Faster roll: 45s */
.credits.in .credits__roll {
  animation: credit-roll-auto 45s linear forwards !important;
}

/* Fin earlier delay (38s of 45s = 84% in) */
.credits.in .credits__fin {
  animation: fin-fade-in 5s ease-out forwards !important;
  animation-delay: 38s !important;
}

/* Film above Fin so vignette/grain/dust + multiply blend tint Fin too */
.credits__film {
  z-index: 10 !important;
  background:
    /* vignette */
    radial-gradient(ellipse at center, transparent 46%, rgba(0,0,0,0.6) 100%),
    /* dust spots — visible black flecks */
    url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600' viewBox='0 0 800 600'%3E%3Cg fill='rgba(0,0,0,0.7)'%3E%3Ccircle cx='80' cy='60' r='2'/%3E%3Ccircle cx='220' cy='180' r='1.5'/%3E%3Ccircle cx='410' cy='90' r='3'/%3E%3Ccircle cx='600' cy='220' r='1'/%3E%3Ccircle cx='720' cy='80' r='2.5'/%3E%3Ccircle cx='150' cy='340' r='2'/%3E%3Ccircle cx='350' cy='420' r='1.5'/%3E%3Ccircle cx='560' cy='480' r='3'/%3E%3Ccircle cx='680' cy='540' r='1.2'/%3E%3Ccircle cx='90' cy='520' r='2'/%3E%3Ccircle cx='480' cy='280' r='1'/%3E%3Ccircle cx='730' cy='350' r='2.2'/%3E%3Ccircle cx='40' cy='220' r='1.4'/%3E%3Ccircle cx='270' cy='560' r='1.8'/%3E%3Ccircle cx='510' cy='40' r='1'/%3E%3Ccircle cx='620' cy='150' r='1.5'/%3E%3Cellipse cx='440' cy='560' rx='3' ry='1'/%3E%3Cellipse cx='180' cy='100' rx='1' ry='3'/%3E%3C/g%3E%3C/svg%3E"),
    /* fine grain */
    url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.45  0 0 0 0 0.42  0 0 0 0 0.36  0 0 0 0.65 0'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: cover, 800px 600px, 220px 220px;
  background-blend-mode: normal, multiply, multiply;
  mix-blend-mode: multiply;
}

.credits.in .credits__film {
  animation:
    film-fade-in 6s ease-out forwards 38s,
    dust-drift 0.18s steps(4, end) infinite 38s,
    dust-flash 1.4s ease-in-out infinite 38s !important;
}
@keyframes dust-drift {
  0%   { background-position: 0 0, 0 0,        0 0; }
  20%  { background-position: 0 0, -8% 5%,    -3px 1px; }
  40%  { background-position: 0 0, 6% -7%,     2px -2px; }
  60%  { background-position: 0 0, -4% 9%,    -1px 3px; }
  80%  { background-position: 0 0, 9% -3%,     3px -1px; }
  100% { background-position: 0 0, -6% 6%,     0 -3px; }
}
@keyframes dust-flash {
  0%, 100% { filter: brightness(1) contrast(1); }
  20%      { filter: brightness(1.2) contrast(1.1); }
  60%      { filter: brightness(0.9) contrast(0.95); }
}

/* Fin warm glow scales with bigger size */
.credits.in .credits__fin {
  text-shadow: 0 0 50px rgba(255,200,140,0.18), 0 0 100px rgba(255,170,100,0.08) !important;
}

/* ================================================================
 * v20 — Faster Fin appearance
 *        (snap behaviour for credits is owned by the v38 block below)
 * ================================================================ */

/* Faster total roll: 30s */
.credits.in .credits__roll {
  animation: credit-roll-auto 30s linear forwards !important;
}

/* Fin much earlier: 20s of 30s = 67% in, fades fully by 24s */
.credits.in .credits__fin {
  animation: fin-fade-in 4s ease-out forwards !important;
  animation-delay: 20s !important;
}

/* Film effects start with Fin */
.credits.in .credits__film {
  animation:
    film-fade-in 5s ease-out forwards 20s,
    dust-drift 0.18s steps(4, end) infinite 20s,
    dust-flash 1.4s ease-in-out infinite 20s !important;
}

.credits.in .credits__viewport {
  animation:
    film-color 5s ease-out forwards 20s,
    film-weave 1.7s linear infinite 20s !important;
}

.credits.in .credits__sticky {
  animation: film-flicker 0.18s steps(2, end) infinite 20s !important;
}

/* ================================================================
 * v21 — Smoother start (idle period) + Fin +3s delay
 * ================================================================ */

/* Roll: 33s with first 3s idle (thanks visible static), then smooth ease-out roll */
.credits.in .credits__roll {
  animation: credit-roll-soft 33s cubic-bezier(0.32, 0.05, 0.36, 1) forwards !important;
}
@keyframes credit-roll-soft {
  0%   { transform: translateY(0); }
  3%   { transform: translateY(0); }       /* ~1s idle, thanks visible static, then roll */
  100% { transform: translateY(-360vh); }
}

/* Fin appears at 15s, fully visible by 19s */
.credits.in .credits__fin {
  animation: fin-fade-in 4s ease-out forwards !important;
  animation-delay: 15s !important;
}

/* Film effects re-aligned with new Fin time */
.credits.in .credits__film {
  animation:
    film-fade-in 5s ease-out forwards 15s,
    dust-drift 0.18s steps(4, end) infinite 15s,
    dust-flash 1.4s ease-in-out infinite 15s !important;
}
.credits.in .credits__viewport {
  animation:
    film-color 5s ease-out forwards 15s,
    film-weave 1.7s linear infinite 15s !important;
}
.credits.in .credits__sticky {
  animation: film-flicker 0.18s steps(2, end) infinite 15s !important;
}

/* ================================================================
 * v22 — Features as floating pill cloud (wrap properly + drift)
 * ================================================================ */

.features__col {
  display: block !important;
}
.features__list--gradient {
  list-style: none !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px 8px !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 0 !important;
  margin: 0 !important;
}
.features__list--gradient li {
  display: inline-flex !important;
  width: auto !important;
  flex: 0 0 auto !important;
  white-space: nowrap !important;
  margin: 0 !important;
  padding: 7px 14px !important;
  border-top: 1px solid !important;  /* always — see border-color rules per level */
  animation: pill-drift 6s ease-in-out infinite;
}
.features__list--gradient li.lvl-0 { border-color: rgba(211,255,85,0.32) !important; }
.features__list--gradient li.lvl-1 { border-color: rgba(255,255,255,0.14) !important; }
.features__list--gradient li.lvl-2 { border-color: rgba(255,255,255,0.10) !important; }
.features__list--gradient li.etc  { border-style: dashed !important; }

/* Stagger drift — each pill at different phase / duration */
.features__list--gradient li:nth-child(3n)   { animation-duration: 5.2s; animation-delay: 0.0s; }
.features__list--gradient li:nth-child(3n+1) { animation-duration: 6.4s; animation-delay: 0.6s; }
.features__list--gradient li:nth-child(3n+2) { animation-duration: 7.1s; animation-delay: 1.2s; }

@keyframes pill-drift {
  0%, 100% { transform: translate(0, 0); }
  25%      { transform: translate(2px, -3px); }
  50%      { transform: translate(-1px, 2px); }
  75%      { transform: translate(3px, 1px); }
}

@media (prefers-reduced-motion: reduce) {
  .features__list--gradient li { animation: none !important; }
}

/* ================================================================
 * v23 — Visual sub-sections (split mode) + MC visual taller
 * ================================================================ */

.section--visual {
  padding-top: 60px;
  padding-bottom: 60px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* MC visual specifically: more breathing room — was squished */
.section--mc-visual {
  min-height: 100vh;
  padding: 80px 80px 100px;
}
.section--mc-visual .mc-chooser {
  margin-bottom: 32px;
}
.section--mc-visual .chrome-card {
  /* Mockups themselves bigger */
}
.section--mc-visual [data-mc-panel] .chrome-card__body--dark {
  min-height: 660px !important;
}

@media (max-width: 900px) {
  .section--visual { padding: 40px 24px; min-height: auto; }
  .section--mc-visual { padding: 40px 24px 60px; min-height: auto; }
}

/* ── v24 — Wide screen fix: full-width main, sections center themselves ── */
main {
  max-width: none !important;
  margin: 0 !important;
}

/* Sticky nav padding: simpler — both edges equal */
.nav {
  padding-left: 40px !important;
  padding-right: 40px !important;
  max-width: none;
}

/* Body bg solid + ensure html too */
html, body {
  background: var(--hy-bg-primary) !important;
}

/* ── v25 — Hero matches section width on wide screens ─── */
.hero__top,
.hero__center,
.hero__bottom {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* ================================================================
 * v26 — Bio dots center, features oval cloud, rules per-screen, PS v2
 * ================================================================ */

/* ── Bio path: vertically center dots regardless of text wraps ── */
.bio-path li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 36px;
}
.bio-path li::before {
  top: 50%;
  transform: translateY(-50%);
}

/* ── Features: chaotic oval cloud + centered labels ── */
.features.features--v2 {
  padding: 40px 0 !important;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
}
.features--v2 .features__col {
  display: flex !important;
  flex-direction: column;
  align-items: center !important;
  text-align: center;
  padding: 0 24px;
}
.features--v2 .features__col h4 {
  display: block !important;
  text-align: center !important;
  width: 100%;
  margin-bottom: 28px !important;
}
.features__list--gradient {
  justify-content: center !important;
  align-items: center !important;
  max-width: 540px;
  margin: 0 auto !important;
  /* Oval-ish via tighter top/bottom + wide middle via per-row max-width */
  gap: 12px 10px !important;
}
/* Per-pill chaotic offsets — make cloud feel scattered */
.features__list--gradient li:nth-child(1)  { transform: translate(0px, -4px); }
.features__list--gradient li:nth-child(2)  { transform: translate(-12px, 6px); }
.features__list--gradient li:nth-child(3)  { transform: translate(8px, -2px); }
.features__list--gradient li:nth-child(4)  { transform: translate(-6px, 4px); }
.features__list--gradient li:nth-child(5)  { transform: translate(10px, -6px); }
.features__list--gradient li:nth-child(6)  { transform: translate(-14px, 2px); }
.features__list--gradient li:nth-child(7)  { transform: translate(6px, 8px); }
.features__list--gradient li:nth-child(8)  { transform: translate(-8px, -4px); }
.features__list--gradient li:nth-child(9)  { transform: translate(12px, 4px); }
.features__list--gradient li:nth-child(10) { transform: translate(-10px, -6px); }
.features__list--gradient li:nth-child(11) { transform: translate(4px, 6px); }
.features__list--gradient li:nth-child(12) { transform: translate(-12px, -3px); }
.features__list--gradient li:nth-child(13) { transform: translate(8px, 5px); }
.features__list--gradient li:nth-child(14) { transform: translate(0px, -8px); }
.features__list--gradient li:nth-child(15) { transform: translate(6px, 2px); }
/* Override drift animation translate — apply to keyframe instead so static offsets persist */
.features__list--gradient li {
  animation: none !important;
}

/* ── Rules — each on its own viewport-height screen ── */
.section--rule-intro {
  min-height: 60vh !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 40px !important;
}
.section--rule {
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column;
  justify-content: center !important;
  align-items: center !important;
  padding: 60px 80px !important;
}
.section--rule .rule {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .section--rule { padding: 40px 24px !important; }
}

/* ================================================================
 * v27 — Constrain SMM (and other showcase sections) to ~1 viewport
 * ================================================================ */

/* SMM facts section — fits in viewport */
section.section[data-nav-id="smm"]:not(.section--visual) {
  min-height: 100vh;
  padding-top: 80px !important;
  padding-bottom: 40px !important;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
}
section.section[data-nav-id="smm"]:not(.section--visual) .category__head {
  margin-bottom: 32px;
}
section.section[data-nav-id="smm"]:not(.section--visual) .category__lead {
  margin-bottom: 32px;
}
section.section[data-nav-id="smm"]:not(.section--visual) .numbers {
  margin-top: 32px;
  padding-top: 28px;
}

/* SMM visual section — fits in viewport (chrome-card a bit shorter) */
section.section--visual[data-nav-id="smm"] {
  min-height: 100vh !important;
  max-height: 100vh !important;
  padding: 40px 80px !important;
  overflow: hidden;
}
section.section--visual[data-nav-id="smm"] .chrome-card__body.smm {
  min-height: 480px !important;
}
section.section--visual[data-nav-id="smm"] .chrome-card__body--dark {
  min-height: 480px !important;
}

/* Same compact treatment for Practices visual */
section.section--visual[data-nav-id="practices"] {
  min-height: 100vh !important;
  max-height: 100vh !important;
  padding: 40px 80px !important;
  overflow: hidden;
}

@media (max-width: 900px) {
  section.section[data-nav-id="smm"]:not(.section--visual),
  section.section--visual[data-nav-id="smm"],
  section.section--visual[data-nav-id="practices"] {
    min-height: auto !important;
    max-height: none !important;
    padding: 40px 24px !important;
  }
}

/* ── v28 — SMM chrome content taller (Generate / Calendar потребують місця) ── */

section.section--visual[data-nav-id="smm"] {
  min-height: auto !important;
  max-height: none !important;
  padding: 60px 80px !important;
  overflow: visible !important;
}

section.section--visual[data-nav-id="smm"] .chrome-card__body.smm,
section.section--visual[data-nav-id="smm"] .chrome-card__body--dark {
  min-height: 620px !important;
}

/* Generate Week wizard breathing */
section.section--visual[data-nav-id="smm"] .smm-wiz {
  gap: 22px;
}
section.section--visual[data-nav-id="smm"] .smm-progress__list {
  gap: 8px;
}
section.section--visual[data-nav-id="smm"] .smm-progress__cell {
  min-height: 70px;
}

/* Calendar cells taller */
section.section--visual[data-nav-id="smm"] .smm-cal-cell-v2 {
  min-height: 78px;
}
section.section--visual[data-nav-id="smm"] .smm-cal-week {
  max-height: 540px;
}

/* Practices visual — also remove max-height cap so iPhone videos fit */
section.section--visual[data-nav-id="practices"] {
  max-height: none !important;
  overflow: visible !important;
}

/* ================================================================
 * v29 — Force pills cloud (wrap properly) + drift animation
 * ================================================================ */

/* Force ul full width so flex-wrap actually wraps rows */
.features--v2 .features__col {
  align-items: stretch !important;
}
.features--v2 .features__col h4 {
  align-self: center;
}
.features__list--gradient {
  width: 100% !important;
  max-width: none !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 14px 10px !important;
  padding: 24px !important;
}

/* v29 reset removed — was blocking animation transforms (kept disabled in v33) */
.features__list--gradient li {
  animation: pill-drift 6s ease-in-out infinite;
}

/* Stagger animation phase per pill — looks like floating cloud */
.features__list--gradient li:nth-child(1)  { animation-duration: 5.4s !important; animation-delay: 0.0s !important; }
.features__list--gradient li:nth-child(2)  { animation-duration: 6.2s !important; animation-delay: 0.5s !important; }
.features__list--gradient li:nth-child(3)  { animation-duration: 7.0s !important; animation-delay: 1.0s !important; }
.features__list--gradient li:nth-child(4)  { animation-duration: 5.8s !important; animation-delay: 1.5s !important; }
.features__list--gradient li:nth-child(5)  { animation-duration: 6.6s !important; animation-delay: 2.0s !important; }
.features__list--gradient li:nth-child(6)  { animation-duration: 7.4s !important; animation-delay: 0.3s !important; }
.features__list--gradient li:nth-child(7)  { animation-duration: 5.2s !important; animation-delay: 0.8s !important; }
.features__list--gradient li:nth-child(8)  { animation-duration: 6.8s !important; animation-delay: 1.3s !important; }
.features__list--gradient li:nth-child(9)  { animation-duration: 5.6s !important; animation-delay: 1.8s !important; }
.features__list--gradient li:nth-child(10) { animation-duration: 7.2s !important; animation-delay: 0.2s !important; }
.features__list--gradient li:nth-child(11) { animation-duration: 6.0s !important; animation-delay: 0.7s !important; }
.features__list--gradient li:nth-child(12) { animation-duration: 5.5s !important; animation-delay: 1.2s !important; }
.features__list--gradient li:nth-child(13) { animation-duration: 6.4s !important; animation-delay: 1.7s !important; }
.features__list--gradient li:nth-child(14) { animation-duration: 7.6s !important; animation-delay: 0.4s !important; }
.features__list--gradient li:nth-child(15) { animation-duration: 5.9s !important; animation-delay: 0.9s !important; }

/* More pronounced drift — visible floating */
@keyframes pill-drift {
  0%, 100% { transform: translate(0, 0); }
  25%      { transform: translate(6px, -5px); }
  50%      { transform: translate(-4px, 6px); }
  75%      { transform: translate(7px, 3px); }
}

@media (prefers-reduced-motion: reduce) {
  .features__list--gradient li { animation: none !important; }
}

/* ================================================================
 * v30 — Pills cloud REAL fix: width 100%, no transform reset, drift via translate3d
 * ================================================================ */

/* Reset previous overrides cleanly */
.features.features--v2 {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 56px !important;
  padding: 32px 24px !important;
}
.features.features--v2 .features__col {
  display: block !important;
  padding: 0 !important;
  width: 100%;
}
.features.features--v2 .features__col h4 {
  display: block !important;
  text-align: center !important;
  width: 100% !important;
  margin-bottom: 24px !important;
}

.features__list--gradient {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 12px 8px !important;
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none;
}

.features__list--gradient li {
  display: inline-flex !important;
  width: auto !important;
  flex: 0 0 auto !important;
  white-space: nowrap;
  margin: 0;
  /* Drift animation — using will-change to ensure GPU-accelerated transform */
  animation: pill-float 6s ease-in-out infinite;
  will-change: transform;
}

/* Stagger phase per pill */
.features__list--gradient li:nth-child(1)  { animation-duration: 5.4s; animation-delay: 0.0s; }
.features__list--gradient li:nth-child(2)  { animation-duration: 6.2s; animation-delay: 0.5s; }
.features__list--gradient li:nth-child(3)  { animation-duration: 7.0s; animation-delay: 1.0s; }
.features__list--gradient li:nth-child(4)  { animation-duration: 5.8s; animation-delay: 1.5s; }
.features__list--gradient li:nth-child(5)  { animation-duration: 6.6s; animation-delay: 2.0s; }
.features__list--gradient li:nth-child(6)  { animation-duration: 7.4s; animation-delay: 0.3s; }
.features__list--gradient li:nth-child(7)  { animation-duration: 5.2s; animation-delay: 0.8s; }
.features__list--gradient li:nth-child(8)  { animation-duration: 6.8s; animation-delay: 1.3s; }
.features__list--gradient li:nth-child(9)  { animation-duration: 5.6s; animation-delay: 1.8s; }
.features__list--gradient li:nth-child(10) { animation-duration: 7.2s; animation-delay: 0.2s; }
.features__list--gradient li:nth-child(11) { animation-duration: 6.0s; animation-delay: 0.7s; }
.features__list--gradient li:nth-child(12) { animation-duration: 5.5s; animation-delay: 1.2s; }
.features__list--gradient li:nth-child(13) { animation-duration: 6.4s; animation-delay: 1.7s; }
.features__list--gradient li:nth-child(14) { animation-duration: 7.6s; animation-delay: 0.4s; }
.features__list--gradient li:nth-child(15) { animation-duration: 5.9s; animation-delay: 0.9s; }

/* New keyframe with bigger amplitude — definitely visible */
@keyframes pill-float {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(8px, -7px); }
  40%  { transform: translate(-6px, 5px); }
  60%  { transform: translate(10px, 4px); }
  80%  { transform: translate(-5px, -6px); }
  100% { transform: translate(0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .features__list--gradient li { animation: none; }
}

/* ================================================================
 * v31 — DEFINITIVE pills cloud fix (high specificity + transform reset)
 * ================================================================ */

/* Use `ul.features__list.features__list--gradient` for higher specificity */
ul.features__list.features__list--gradient {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  max-width: none !important;
  padding: 8px !important;
  margin: 0 !important;
  list-style: none !important;
  gap: 14px 10px !important;
}

ul.features__list.features__list--gradient > li {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  white-space: nowrap !important;
  margin: 0 !important;
  /* Critical: undo v29 `transform: none !important` so animation can move pill */
  transform: translate(0, 0);  /* base — animation will override per-keyframe */
  animation: pill-floaty 6s ease-in-out infinite !important;
  will-change: transform;
}

/* Per-pill phase stagger — out-of-sync drifting */
ul.features__list.features__list--gradient > li:nth-child(1)  { animation-duration: 5.4s !important; animation-delay: 0.0s !important; }
ul.features__list.features__list--gradient > li:nth-child(2)  { animation-duration: 6.2s !important; animation-delay: 0.5s !important; }
ul.features__list.features__list--gradient > li:nth-child(3)  { animation-duration: 7.0s !important; animation-delay: 1.0s !important; }
ul.features__list.features__list--gradient > li:nth-child(4)  { animation-duration: 5.8s !important; animation-delay: 1.5s !important; }
ul.features__list.features__list--gradient > li:nth-child(5)  { animation-duration: 6.6s !important; animation-delay: 2.0s !important; }
ul.features__list.features__list--gradient > li:nth-child(6)  { animation-duration: 7.4s !important; animation-delay: 0.3s !important; }
ul.features__list.features__list--gradient > li:nth-child(7)  { animation-duration: 5.2s !important; animation-delay: 0.8s !important; }
ul.features__list.features__list--gradient > li:nth-child(8)  { animation-duration: 6.8s !important; animation-delay: 1.3s !important; }
ul.features__list.features__list--gradient > li:nth-child(9)  { animation-duration: 5.6s !important; animation-delay: 1.8s !important; }
ul.features__list.features__list--gradient > li:nth-child(10) { animation-duration: 7.2s !important; animation-delay: 0.2s !important; }
ul.features__list.features__list--gradient > li:nth-child(11) { animation-duration: 6.0s !important; animation-delay: 0.7s !important; }
ul.features__list.features__list--gradient > li:nth-child(12) { animation-duration: 5.5s !important; animation-delay: 1.2s !important; }
ul.features__list.features__list--gradient > li:nth-child(13) { animation-duration: 6.4s !important; animation-delay: 1.7s !important; }
ul.features__list.features__list--gradient > li:nth-child(14) { animation-duration: 7.6s !important; animation-delay: 0.4s !important; }
ul.features__list.features__list--gradient > li:nth-child(15) { animation-duration: 5.9s !important; animation-delay: 0.9s !important; }

@keyframes pill-floaty {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(8px, -7px); }
  40%  { transform: translate(-6px, 5px); }
  60%  { transform: translate(10px, 4px); }
  80%  { transform: translate(-5px, -6px); }
  100% { transform: translate(0, 0); }
}

/* ================================================================
 * v32 — Definitive paper-thin animation override + reduced-motion off
 * ================================================================ */

/* Disable the reduced-motion blocker — animation is core to the design */
@media (prefers-reduced-motion: reduce) {
  ul.features__list.features__list--gradient > li {
    animation: pill-floaty 6s ease-in-out infinite !important;
  }
}

/* Larger amplitude per pill — guaranteed visible */
@keyframes pill-floaty {
  0%   { transform: translate3d(0, 0, 0) rotate(0deg); }
  20%  { transform: translate3d(10px, -9px, 0) rotate(0.5deg); }
  40%  { transform: translate3d(-8px, 7px, 0) rotate(-0.4deg); }
  60%  { transform: translate3d(12px, 5px, 0) rotate(0.3deg); }
  80%  { transform: translate3d(-7px, -8px, 0) rotate(-0.5deg); }
  100% { transform: translate3d(0, 0, 0) rotate(0deg); }
}

ul.features__list.features__list--gradient > li {
  animation-name: pill-floaty !important;
  animation-iteration-count: infinite !important;
  animation-timing-function: ease-in-out !important;
  transform-origin: center !important;
}

/* ================================================================
 * v33 — Position-based float animation (bypasses transform conflicts)
 * ================================================================ */

ul.features__list.features__list--gradient > li {
  position: relative !important;
  left: 0;
  top: 0;
  animation: pill-pos-float 6s ease-in-out infinite !important;
}

@keyframes pill-pos-float {
  0%   { left: 0; top: 0; }
  20%  { left: 9px; top: -8px; }
  40%  { left: -7px; top: 6px; }
  60%  { left: 11px; top: 4px; }
  80%  { left: -6px; top: -7px; }
  100% { left: 0; top: 0; }
}

/* Per-pill stagger */
ul.features__list.features__list--gradient > li:nth-child(1)  { animation-duration: 5.4s !important; animation-delay: 0.0s !important; }
ul.features__list.features__list--gradient > li:nth-child(2)  { animation-duration: 6.2s !important; animation-delay: 0.5s !important; }
ul.features__list.features__list--gradient > li:nth-child(3)  { animation-duration: 7.0s !important; animation-delay: 1.0s !important; }
ul.features__list.features__list--gradient > li:nth-child(4)  { animation-duration: 5.8s !important; animation-delay: 1.5s !important; }
ul.features__list.features__list--gradient > li:nth-child(5)  { animation-duration: 6.6s !important; animation-delay: 2.0s !important; }
ul.features__list.features__list--gradient > li:nth-child(6)  { animation-duration: 7.4s !important; animation-delay: 0.3s !important; }
ul.features__list.features__list--gradient > li:nth-child(7)  { animation-duration: 5.2s !important; animation-delay: 0.8s !important; }
ul.features__list.features__list--gradient > li:nth-child(8)  { animation-duration: 6.8s !important; animation-delay: 1.3s !important; }
ul.features__list.features__list--gradient > li:nth-child(9)  { animation-duration: 5.6s !important; animation-delay: 1.8s !important; }
ul.features__list.features__list--gradient > li:nth-child(10) { animation-duration: 7.2s !important; animation-delay: 0.2s !important; }
ul.features__list.features__list--gradient > li:nth-child(11) { animation-duration: 6.0s !important; animation-delay: 0.7s !important; }
ul.features__list.features__list--gradient > li:nth-child(12) { animation-duration: 5.5s !important; animation-delay: 1.2s !important; }
ul.features__list.features__list--gradient > li:nth-child(13) { animation-duration: 6.4s !important; animation-delay: 1.7s !important; }
ul.features__list.features__list--gradient > li:nth-child(14) { animation-duration: 7.6s !important; animation-delay: 0.4s !important; }
ul.features__list.features__list--gradient > li:nth-child(15) { animation-duration: 5.9s !important; animation-delay: 0.9s !important; }

/* ── v34 — Reduce pill float amplitude (subtle drift) ── */
@keyframes pill-pos-float {
  0%   { left: 0; top: 0; }
  20%  { left: 3px; top: -2px; }
  40%  { left: -2px; top: 2px; }
  60%  { left: 3px; top: 1px; }
  80%  { left: -2px; top: -2px; }
  100% { left: 0; top: 0; }
}

/* ================================================================
 * v37 → v38 — Page-by-page snap navigation.
 *        Mandatory snap so a single trackpad scroll glides the user
 *        to the next section; smooth scroll-behavior gives the slide
 *        its animated feel both on user scroll and JS scrollIntoView.
 * ================================================================ */
html {
  scroll-snap-type: y mandatory !important;
  scroll-behavior: smooth;
}
.hero,
section[data-nav-id],
section.section--rule,
section.section--rule-intro,
.credits {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: 100vh;
}
/* The credits run their own JS-driven roll animation; the snap point
 * just lands the user at the start of the finale, then the roll plays. */
.credits { scroll-snap-stop: normal; }
/* Honour user "reduce motion" preference: drop animated scroll + the
 * mandatory lock so the page is browseable as a regular long page. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-snap-type: none !important;
    scroll-behavior: auto;
  }
}

/* ================================================================
 * Numbers anchored to the bottom of their parent section
 * (used inside SMM facts + Practices visual)
 * ================================================================ */
.numbers.numbers--bottom {
  margin-top: auto;
  width: 100%;
  padding-top: 40px;
}
@media (max-width: 900px) {
  .numbers.numbers--bottom { margin-top: 32px; padding-top: 0; }
}

/* SMM facts — column with content at top, numbers at bottom */
section.section[data-nav-id="smm"]:not(.section--visual):not(.section--numbers) {
  justify-content: flex-start !important;
}

/* Practices visual — videos at top, numbers at bottom; full screen */
section.section--visual[data-nav-id="practices"] {
  min-height: 100vh !important;
  justify-content: flex-start !important;
  display: flex !important;
  flex-direction: column !important;
}
section.section--visual[data-nav-id="practices"] .practices-grid {
  flex: 0 0 auto;
}
/* Make practice cards fit available vertical space (videos are 9/19 portrait) */
section.section--visual[data-nav-id="practices"] .practice {
  max-height: 56vh;
}
@media (max-width: 900px) {
  section.section--visual[data-nav-id="practices"] {
    min-height: auto !important;
  }
  section.section--visual[data-nav-id="practices"] .practice {
    max-height: none;
  }
}

/* ================================================================
 * Wrap-up intro ("Now — the part that lasts.") — full screen
 * Was 60vh which let the next CHALLENGE bleed in.
 * ================================================================ */
.section--rule-intro {
  min-height: 100vh !important;
  justify-content: center !important;
  padding-bottom: 120px !important;
}

/* ================================================================
 * HeadOfAI visual — fit chooser + chrome-card inside one viewport
 * ================================================================ */
.section--mc-visual {
  min-height: 100vh !important;
  max-height: 100vh !important;
  padding: 60px 80px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
}
.section--mc-visual .mc-chooser {
  margin-bottom: 16px !important;
  flex: 0 0 auto;
}
.section--mc-visual [data-mc-panel] {
  flex: 1 1 0;
  min-height: 0;
  display: none;
}
.section--mc-visual [data-mc-panel].active {
  display: flex;
  flex-direction: column;
}
.section--mc-visual [data-mc-panel].active .chrome-card {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.section--mc-visual [data-mc-panel].active .chrome-card__bar {
  flex: 0 0 auto;
}
.section--mc-visual [data-mc-panel].active .chrome-card__body--dark {
  flex: 1 1 0;
  min-height: 0 !important;
  overflow: auto;
}
@media (max-width: 900px) {
  .section--mc-visual {
    max-height: none !important;
    overflow: visible !important;
  }
  .section--mc-visual [data-mc-panel].active .chrome-card__body--dark {
    overflow: visible;
  }
}

/* ================================================================
 * v35 — SMM mock interactivity: status colors, preview modal,
 *        draggable calendar events, feed empty state, click affordance
 * ================================================================ */

/* Status-tag colour variants on feed-card images */
.smm-fp__image-tag.approved  { background: rgba(143,210,143,0.95); color: #1f3d1f; }
.smm-fp__image-tag.scheduled { background: rgba(159,157,214,0.95); color: #20204a; }
.smm-fp__image-tag.posted    { background: rgba(46,16,30,0.92);    color: #f1ae1b; }

/* Status pill variants — same hue family as image tags */
.smm-fp__status-pill.approved  { background: #C8E6C8; color: #1f3d1f; }
.smm-fp__status-pill.approved::before  { background: #1f3d1f; }
.smm-fp__status-pill.scheduled { background: #DCDBF1; color: #20204a; }
.smm-fp__status-pill.scheduled::before { background: #20204a; }
.smm-fp__status-pill.posted    { background: #2E101E; color: #F1AE1B; }
.smm-fp__status-pill.posted::before    { background: #F1AE1B; }

/* New action-button variants */
.smm-fp__btn.schedule { background: rgba(159,157,214,0.18); color: #2A1322; }
.smm-fp__btn.edit     { background: rgba(46,16,30,0.06);    color: #2A1322; }

/* Feed-card hover affordance — clicking opens preview */
.smm-fp { cursor: pointer; transition: transform .18s ease, box-shadow .18s ease; }
.smm-fp:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(46,16,30,0.16); }
.smm-fp__btn,
.smm-fp__more,
.smm-fp__actions { cursor: pointer; }

/* Pending Review cards on Dashboard — also clickable for preview */
.smm-pending-card { cursor: pointer; transition: transform .18s ease, box-shadow .18s ease; }
.smm-pending-card:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(46,16,30,0.14); }

/* Feed empty-state (when filter has no matching cards) */
.smm-feed-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 20px;
  background: rgba(46,16,30,0.02);
  border: 1px dashed rgba(46,16,30,0.18);
  border-radius: 10px;
  margin-top: 12px;
  color: rgba(46,16,30,0.55);
}
.smm-feed-empty[hidden] { display: none; }
.smm-feed-empty__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(46,16,30,0.08);
  display: flex; align-items: center; justify-content: center;
  font: 700 22px/1 var(--hy-font-body);
  margin-bottom: 12px;
}
.smm-feed-empty__text {
  font: 500 13px/1.4 var(--hy-font-body);
  letter-spacing: 0.02em;
}

/* Calendar events — draggable */
.smm-cal-evt {
  cursor: grab;
  user-select: none;
  transition: opacity .15s ease, transform .12s ease;
}
.smm-cal-evt:active { cursor: grabbing; }
.smm-cal-evt.is-dragging { opacity: 0.4; transform: scale(0.96); }
.smm-cal-cell-v2.is-drop-target {
  background: rgba(241,174,27,0.12);
  outline: 2px dashed rgba(241,174,27,0.5);
  outline-offset: -2px;
}

/* "View all" link — visual clickable */
.smm-pending-link {
  cursor: pointer;
  transition: color .15s ease;
}
.smm-pending-link:hover { color: var(--plum); }

/* ================================================================
 * Post-preview modal (mounted at body level)
 * ================================================================ */

.smm-modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  font-family: var(--hy-font-body);
}
.smm-modal[hidden] { display: none; }
.smm-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(8,10,14,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  animation: smm-modal-fade .2s ease;
}
.smm-modal__panel {
  position: relative;
  width: min(640px, 100%);
  max-height: 86vh;
  overflow: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  animation: smm-modal-pop .22s cubic-bezier(0.4, 0, 0.2, 1);
  color: #2E101E;
}
.smm-modal__close {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: #2E101E;
  font: 400 22px/1 var(--hy-font-body);
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 3;
  cursor: pointer;
}
.smm-modal__close:hover { background: #fff; }
.smm-modal__image {
  width: 100%;
  aspect-ratio: 1.05;
  background: #f6f1ec center/cover;
  border-radius: 12px 12px 0 0;
}
.smm-modal__body { padding: 18px 22px 22px; }
.smm-modal__head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.smm-modal__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f1ae1b 0%, #2E101E 100%);
  flex-shrink: 0;
}
.smm-modal__meta {
  display: flex; flex-direction: column;
  flex: 1; min-width: 0;
}
.smm-modal__handle {
  font: 700 14px/1.2 var(--hy-font-body);
  color: #2E101E;
}
.smm-modal__sub {
  font: 400 11px/1.2 var(--hy-font-body);
  color: rgba(46,16,30,0.55);
}
.smm-modal__status-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font: 600 10px/1 var(--hy-font-body);
  letter-spacing: 0.06em;
  background: var(--smm-marigold);
  color: #2A1322;
  padding: 5px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}
.smm-modal__status-pill::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: #2A1322;
}
.smm-modal__status-pill.approved  { background: #C8E6C8; color: #1f3d1f; }
.smm-modal__status-pill.approved::before  { background: #1f3d1f; }
.smm-modal__status-pill.scheduled { background: #DCDBF1; color: #20204a; }
.smm-modal__status-pill.scheduled::before { background: #20204a; }
.smm-modal__status-pill.posted    { background: #2E101E; color: #F1AE1B; }
.smm-modal__status-pill.posted::before    { background: #F1AE1B; }
.smm-modal__caption {
  font: 400 14.5px/1.55 var(--hy-font-body);
  color: #2E101E;
  margin-bottom: 10px;
}
.smm-modal__caption strong { font-weight: 600; }
.smm-modal__hashtags {
  font: 500 13px/1.5 var(--hy-font-body);
  color: #8E5570;
  margin-bottom: 14px;
}
.smm-modal__time {
  font: 700 10px/1 var(--hy-font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(46,16,30,0.5);
}

@keyframes smm-modal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ================================================================
 * v38 — Drop the nav entirely; lift the hero's left-side cobrand
 *        out of flow so it floats above every section.
 * ================================================================ */
.nav { display: none !important; }

.hero__cobrand {
  position: fixed;
  top: 32px;
  left: 40px;
  z-index: 100;
  pointer-events: none;
}
@media (max-width: 700px) {
  .hero__cobrand { top: 22px; left: 22px; }
}
@keyframes smm-modal-pop {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 700px) {
  .smm-modal { padding: 12px; }
  .smm-modal__panel { max-height: 92vh; }
}

/* ================================================================
 * "Coming up next" picture-in-picture (TV/YouTube end-card style).
 * Sits in the bottom-right while the credits roll is active and
 * teases the next bit of content.
 * ================================================================ */
.next-up {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 320px;
  padding: 14px 14px 12px;
  background: rgba(11,18,21,0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  z-index: 9999;
  opacity: 0;
  transform: translateY(28px);
  transform-origin: top left;
  display: flex;
  flex-direction: column;
  /* Initial fade-in; the maximize FLIP swaps this for a transform animation. */
  transition: opacity .55s ease .15s, transform .55s ease .15s;
  pointer-events: none;
}
body.credits-active .next-up {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.next-up__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.next-up__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hy-accent-orange-500);
  box-shadow: 0 0 10px rgba(255,137,29,0.7);
  animation: next-up-pulse 1.4s ease-in-out infinite;
}
@keyframes next-up-pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.85); }
}
.next-up__label {
  font: 700 10px/1 var(--hy-font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hy-accent-orange-500);
}
.next-up__title {
  font: 600 14px/1.35 var(--hy-font-display);
  color: var(--hy-text-primary);
  margin-bottom: 10px;
}
.next-up__video {
  width: 100%;
  display: block;
  border-radius: 8px;
  background: #000;
}
.next-up__close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  color: #FAFAFA;
  font: 600 16px/1 var(--hy-font-body);
  cursor: pointer;
  padding: 0;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
  transition: background 160ms ease, transform 120ms ease;
}
.next-up__close:hover { background: rgba(0,0,0,0.85); }
.next-up__close:active { transform: scale(0.92); }
.next-up.is-dismissed { display: none !important; }

@media (max-width: 700px) {
  .next-up { right: 12px; bottom: 12px; width: 240px; padding: 10px; }
  .next-up__title { font-size: 13px; }
  .next-up__close { width: 24px; height: 24px; font-size: 15px; }
}

/* Cinematic finale: PiP grows from its bottom-right corner to a centered
 * 50% × 50% card. Animated via FLIP in JS — the box dimensions snap,
 * a transform delta carries the visual transition. Children (label,
 * title, video) scale uniformly with the parent during animation, then
 * step up to their natural maximized sizes. */
.next-up.maximized {
  right: auto !important;
  bottom: auto !important;
  left: 25vw !important;
  top: 25vh !important;
  width: 50vw !important;
  height: 50vh !important;
  padding: 22px 22px 22px !important;
  border-radius: 18px !important;
  background: rgba(11,18,21,0.92) !important;
  box-shadow: 0 30px 90px rgba(0,0,0,0.6) !important;
  z-index: 10001;
}
.next-up.maximized .next-up__head { margin-bottom: 10px; }
.next-up.maximized .next-up__label { font-size: 12px; }
.next-up.maximized .next-up__title {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.next-up.maximized .next-up__video {
  flex: 1 1 auto;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: cover;
  border-radius: 12px;
  background: #000;
}

/* ================================================================
 * Background music — local MP3 + small toggle/volume controls.
 * The <audio> element is non-visual; controls appear when credits
 * become active.
 * ================================================================ */
.bg-music-audio { display: none; }

.bg-music-controls {
  position: fixed;
  top: 28px;
  right: 28px;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 6px 10px 6px 6px;
  background: rgba(11,18,21,0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  z-index: 10000;
}
body.credits-active .bg-music-controls { display: inline-flex; }

.bg-music-toggle {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  background: rgba(11,18,21,0.6);
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background .2s, border-color .2s, transform .2s;
  flex: 0 0 auto;
}
.bg-music-toggle:hover {
  background: rgba(11,18,21,0.95);
  border-color: rgba(255,255,255,0.32);
  transform: scale(1.08);
}
.bg-music-toggle__icon {
  display: block;
  width: 8px;
  height: 10px;
}
.bg-music-toggle__icon[data-icon="pause"] {
  border-left: 2.5px solid currentColor;
  border-right: 2.5px solid currentColor;
}
.bg-music-toggle__icon[data-icon="play"] {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

/* Volume slider — slim track + small thumb. Range 0–40 keeps things
 * quiet even at max. */
.bg-music-volume {
  -webkit-appearance: none;
  appearance: none;
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  outline: none;
}
.bg-music-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--hy-accent-lime);
  border: none;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(170,255,72,0.45);
}
.bg-music-volume::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--hy-accent-lime);
  border: none;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(170,255,72,0.45);
}

/* ─── DECK CHALLENGE / SECRET FLIP CARD ───────────────────────────── */
.section--rule { perspective: 1800px; }

.deck-flip {
  display: block;
  width: min(960px, 88vw);
  max-width: 100%;
  height: clamp(560px, 82vh, 820px);
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  /* Prevent text-selection from swallowing the tap on long-press / drag */
  -webkit-user-select: none;
  user-select: none;
  font: inherit;
  color: inherit;
  text-align: left;
}

.deck-flip__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 800ms cubic-bezier(0.34, 1.4, 0.64, 1);
}

.deck-flip[aria-pressed="true"] .deck-flip__inner {
  transform: rotateY(180deg);
}

.deck-flip__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
  /* Hide the back face from hit-testing while it's rotated away — fixes
   * Safari/Chrome where backface-visibility:hidden hides paint but still
   * receives pointer events on top of the visible front. */
  pointer-events: none;
}
.deck-flip[aria-pressed="false"] .deck-flip__front,
.deck-flip[aria-pressed="true"]  .deck-flip__back  { pointer-events: auto; }

.deck-flip__back {
  transform: rotateY(180deg);
}

/* Make the inner .rule fill the face cleanly. Anchor content to the
 * top so the SECRET label / CHALLENGE label keep their breathing room
 * and the long secret list never overflows the centred mid-line. */
.deck-flip__face .rule {
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  padding: 44px 56px 56px;
  min-height: 0; /* allow flex children to shrink + scroll */
  overflow: hidden;
}

/* Front face — vertically centred (less content, looks better balanced) */
.deck-flip__front .rule {
  justify-content: center;
  gap: 24px;
}

/* Back face content — typography tuned to fit 7 list items + title + hint */
.deck-flip__back .rule__title { font-size: 44px; line-height: 1.12; margin: 0; }
.deck-flip__back .rule__num   { margin-bottom: 4px; }
.deck-flip__back .rule__list--v2 {
  margin: 0;
  gap: 12px;
  /* Allow the list itself to scroll inside the card if the viewport is
   * exceptionally short — reserves room for the bottom hint. */
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 4px; /* keep scrollbar off the text */
  padding-bottom: 28px; /* clearance above the absolutely-positioned hint */
}
.deck-flip__back .rule__list--v2 li {
  font-size: 18px;
  line-height: 1.45;
  padding-bottom: 10px;
}
.deck-flip__back .rule__list--v2 li.rule__list--now {
  font-size: 16px;
  line-height: 1.5;
}

.deck-flip__hint {
  position: absolute;
  bottom: 14px;
  left: 0; right: 0;
  text-align: center;
  font: 500 13px/1 var(--hy-font-mono, ui-monospace, monospace);
  letter-spacing: 0.06em;
  color: var(--hy-accent-orange-500);
  margin: 0;
  pointer-events: none;
  z-index: 2;
}
.deck-flip__hint--back { color: var(--hy-accent-lime, #D3FF55); }

/* Reduced motion: instant flip */
@media (prefers-reduced-motion: reduce) {
  .deck-flip__inner { transition: none; }
}

/* ─── Snap behaviour around the flip card ───────────────────────────
 * The credits section is 380vh tall with `scroll-snap-align: start`.
 * Combined with global `scroll-snap-type: y mandatory`, scrolling even
 * a few pixels past `.section--rule` would yank the user into credits
 * before they could finish reading the SECRET face.
 *
 * Soften to `proximity` (only snaps when the user is *close* to a snap
 * point — i.e. fully released the trackpad). Keeps the page-by-page
 * feel intact for deliberate scrolls/keyboard nav while letting the
 * user dwell on the card during a small adjustment.
 *
 * Also drop `scroll-snap-stop: always` everywhere — `always` forces a
 * stop at every snap point even on a single fling, which compounds the
 * "jump to next page" feeling reported by the speaker. */
html { scroll-snap-type: y proximity !important; }
.hero,
section[data-nav-id],
section.section--rule,
section.section--rule-intro,
.credits { scroll-snap-stop: normal !important; }

/* Give the rule section a bit more vertical breathing room so the
 * card has room to "live" within its own snap zone. */
section.section--rule { min-height: max(100vh, 880px) !important; }
