/* =====================================================================
   PUSH — Google Search Shift POV page
   Built on tokens.css. Uses MADE Outer Sans + Work Sans only.
   ===================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--push-black);
  color: var(--push-white);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* ---------------------------------------------------------------------
   Layout container — page max width 1440 with consistent padding
   --------------------------------------------------------------------- */
:root {
  --gutter: clamp(32px, 6vw, 112px);
  --container: 1440px;
  --nav-h: 72px;
  --display: 'MADE Outer Sans', 'Arial Black', system-ui, sans-serif;
  --body: 'Work Sans', system-ui, -apple-system, sans-serif;
}

/* =====================================================================
   STICKY NAV
   ===================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(17,17,17,0.62);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
  color: var(--push-white);
}
.nav.is-light {
  background: rgba(255,255,255,0.78);
  border-bottom-color: rgba(17,17,17,0.06);
  color: var(--push-black);
}
.nav.is-light .nav__sub,
.nav.is-light .nav__crumb { color: rgba(17,17,17,0.55); }
.nav.is-light .nav__sep   { color: rgba(17,17,17,0.25); }

.nav__mark {
  display: flex; align-items: baseline; gap: 10px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: inherit;
}
.nav__sub {
  font-family: var(--body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.nav__meta {
  display: flex; align-items: center; gap: 28px;
}
.nav__crumb {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}
.nav__sep {
  margin: 0 8px;
  color: rgba(255,255,255,0.25);
}

/* =====================================================================
   BUTTONS & LINKS
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--push-purple);
  color: var(--push-white);
  box-shadow: 0 8px 28px rgba(138,102,255,0.30);
}
.btn--primary:hover {
  background: #9F80FF;
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(138,102,255,0.45);
}
.btn--sm { padding: 10px 18px; font-size: 11px; }
.btn--lg { padding: 20px 36px; font-size: 14px; }

.btn span { transition: transform .15s ease; display: inline-block; }
.btn:hover span { transform: translateX(2px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--push-white);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: color .15s ease;
}
.sec--light .link-arrow,
.close .link-arrow { color: var(--push-purple); }
.link-arrow:hover { color: var(--push-purple); }
.sec--light .link-arrow:hover { color: var(--push-black); }
.link-arrow span { transition: transform .15s ease; }
.link-arrow:hover span { transform: translate(2px, -2px); }
.link-arrow--inline { margin-top: 24px; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 64px) var(--gutter) 96px;
  overflow: hidden;
  background: var(--push-black);
  isolation: isolate;
  display: flex;
  align-items: center;
}

.hero__field {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__field svg {
  width: 100%; height: 100%;
  display: block;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1216px;
  width: 100%;
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--push-purple);
  padding: 10px 16px;
  border: 1px solid rgba(138,102,255,0.35);
  border-radius: 999px;
  background: rgba(138,102,255,0.06);
  margin-bottom: 36px;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--push-purple);
  box-shadow: 0 0 12px rgba(138,102,255,0.8);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.7); }
}

.hero__title {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.94;
  letter-spacing: -0.015em;
  color: var(--push-white);
  margin: 0 0 32px;
  max-width: 1100px;
}

.hero__sub {
  font-family: var(--body);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  max-width: 720px;
  margin: 0 0 44px;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero__meta-sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  z-index: 2;
}
.hero__scroll-line {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.5), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--push-purple);
  transform: translateX(-100%);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(0%); }
  100% { transform: translateX(100%); }
}

/* =====================================================================
   SECTION BASE
   ===================================================================== */
.sec {
  position: relative;
  padding: clamp(96px, 12vw, 168px) var(--gutter) clamp(96px, 12vw, 168px);
  overflow: hidden;
  isolation: isolate;
}
.sec--light {
  background: var(--push-white);
  color: var(--push-black);
}
.sec--dark {
  background: var(--push-black);
  color: var(--push-white);
}
.sec--purple {
  background: var(--push-purple-900);
  color: var(--push-white);
}
.sec--tight { padding-top: clamp(72px, 9vw, 128px); padding-bottom: clamp(72px, 9vw, 128px); }

.sec__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}
.sec__bg-svg { width: 100%; height: 100%; display: block; }
.sec > *:not(.sec__bg) { position: relative; z-index: 1; }

.sec__head {
  max-width: 1216px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}
.sec__head--center {
  grid-template-columns: 1fr;
  text-align: center;
  margin-bottom: 64px;
}

.sec__index {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 18px;
  border-top: 2px solid var(--push-purple);
}
.sec__index--center {
  border-top: none;
  padding-top: 0;
  align-items: center;
  margin-bottom: 32px;
}
.sec__num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 18px;
  color: var(--push-purple);
  letter-spacing: 0;
}
.sec__index--center .sec__num {
  font-size: 28px;
  padding: 0 16px;
  border-left: 2px solid var(--push-purple);
  border-right: 2px solid var(--push-purple);
}
.sec__kicker {
  font-family: var(--body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.sec--light .sec__kicker { color: rgba(17,17,17,0.55); }
.sec--purple .sec__kicker { color: rgba(255,255,255,0.7); }

.sec__title {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(40px, 5.4vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.012em;
  margin: 0;
  max-width: 1100px;
}
.sec__title--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* body & layouts */
.sec__body {
  max-width: 1216px;
  margin: 0 auto;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}
.two-col--reverse > :first-child { order: 2; }
.two-col--reverse > :last-child  { order: 1; }
.two-col--ratio { grid-template-columns: 1.1fr 0.9fr; }

.prose p {
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.65;
  margin: 0 0 24px;
  color: rgba(17,17,17,0.82);
  text-wrap: pretty;
}
.sec--dark .prose p,
.sec--purple .prose p {
  color: rgba(255,255,255,0.78);
}
.prose strong {
  color: var(--push-black);
  font-weight: 700;
}
.sec--dark .prose strong,
.sec--purple .prose strong { color: var(--push-white); }

.prose--wide {
  max-width: 920px;
  margin: 0 auto;
}
.prose--wide p { font-size: 20px; line-height: 1.6; }

/* =====================================================================
   SECTION FOOTER STRIP (PUSH wordmark + page count)
   ===================================================================== */
.sec__footer {
  max-width: 1216px;
  margin: 96px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.sec--light .sec__footer {
  border-top-color: rgba(17,17,17,0.08);
  color: rgba(17,17,17,0.45);
}
.sec--purple .sec__footer { border-top-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.6); }

.sec__footer-mark {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: inherit;
}
.sec--light .sec__footer-mark { color: var(--push-black); }
.sec--dark .sec__footer-mark,
.sec--purple .sec__footer-mark { color: var(--push-white); }

/* =====================================================================
   SECTION 1 — SERP COMPARE
   ===================================================================== */
.serp-compare {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 18px;
  align-items: stretch;
}
.serp { display: flex; flex-direction: column; }
.serp__label {
  font-family: var(--body);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.55);
  margin-bottom: 12px;
}
.serp--after .serp__label { color: var(--push-purple); }
.serp__box {
  flex: 1;
  background: var(--push-white);
  border: 1.5px solid rgba(17,17,17,0.12);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 24px 48px -32px rgba(17,17,17,0.18);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 360px;
}
.serp__search {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(17,17,17,0.12);
  font-size: 12px;
  color: rgba(17,17,17,0.7);
}
.serp__g {
  width: 22px; height: 22px; border-radius: 50%;
  background: conic-gradient(from 0deg, #4285F4, #34A853, #FBBC05, #EA4335, #4285F4);
  flex-shrink: 0;
  position: relative;
}
.serp__g::after {
  content: ""; position: absolute; inset: 5px; border-radius: 50%;
  background: var(--push-white);
}
.serp__query { font-weight: 500; }
.serp__sparkle {
  margin-left: auto;
  color: var(--push-purple);
  font-size: 14px;
}

.serp__results { display: flex; flex-direction: column; gap: 14px; }
.serp__result {
  display: flex; flex-direction: column; gap: 5px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(17,17,17,0.06);
}
.serp__result:last-child { border-bottom: none; }
.serp__url   { height: 6px;  width: 38%; background: rgba(17,17,17,0.18); border-radius: 3px; }
.serp__title { height: 10px; width: 78%; background: rgba(17,17,17,0.6);  border-radius: 4px; }
.serp__snip  { height: 5px;  width: 92%; background: rgba(17,17,17,0.15); border-radius: 2px; }
.serp__snip--short { width: 64%; }
.serp__results--compressed .serp__result { padding: 6px 0; }
.serp__result--fade { opacity: 0.35; }

.serp__ai {
  background: linear-gradient(180deg, rgba(138,102,255,0.10), rgba(138,102,255,0.04));
  border: 1.5px solid rgba(138,102,255,0.35);
  border-radius: 12px;
  padding: 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.serp__ai-tag {
  font-family: var(--body);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--push-purple);
  display: flex; align-items: center; gap: 6px;
}
.serp__ai-tag::before {
  content: "✦";
  font-size: 12px;
}
.serp__ai-line {
  height: 7px; border-radius: 3px;
  background: rgba(138,102,255,0.28);
  width: 100%;
}
.serp__ai-line--med { width: 70%; }
.serp__ai-cites {
  display: flex; gap: 6px; margin-top: 4px;
}
.serp__ai-cites span {
  width: 28px; height: 18px; border-radius: 4px;
  background: rgba(138,102,255,0.18);
  border: 1px solid rgba(138,102,255,0.4);
}

.serp__arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--push-purple);
}

.serp__caption {
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(17,17,17,0.6);
  margin-top: 14px;
  max-width: 320px;
}

/* =====================================================================
   STATS ROW
   ===================================================================== */
.stats {
  max-width: 1216px;
  margin: 88px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat {
  padding: 36px 32px 32px;
  border: 1.5px solid var(--push-purple);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: rgba(138,102,255,0.04);
  position: relative;
  overflow: hidden;
}
.stat::before {
  content: "";
  position: absolute;
  top: -32px; right: -32px;
  width: 96px; height: 96px; border-radius: 50%;
  border: 1.5px solid var(--push-purple);
  opacity: 0.35;
}
.stat__num {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--push-purple);
}
.stat__label {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(17,17,17,0.78);
  font-weight: 500;
}

/* =====================================================================
   SECTION 2 — Findings + exposure scale
   ===================================================================== */
.findings {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.findings li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid rgba(17,17,17,0.1);
}
.findings li:last-child { border-bottom: 1px solid rgba(17,17,17,0.1); }
.findings strong {
  font-family: var(--display);
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -0.01em;
  color: var(--push-purple);
}
.findings span {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(17,17,17,0.78);
}

.exposure {
  background: var(--push-black);
  color: var(--push-white);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.exposure__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  gap: 16px;
}
.exposure__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0;
}
.exposure__scale {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.exposure__scale-bar {
  width: 80px; height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--push-purple), rgba(138,102,255,0.15));
}

.exposure__rows {
  display: flex; flex-direction: column; gap: 18px;
}
.exp-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: center;
}
.exp-row__label {
  display: flex; flex-direction: column; gap: 4px;
}
.exp-row__name {
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  color: var(--push-white);
}
.exp-row__ex {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
}
.exp-row__bar {
  height: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.exp-row__fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0;
  background: linear-gradient(90deg, var(--push-purple) 0%, rgba(138,102,255,0.45) 100%);
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.is-revealed .exp-row__fill { width: var(--w); }
.exp-row__pct {
  position: relative;
  z-index: 2;
  padding-left: 14px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--push-white);
}

.exposure__note {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
}

/* =====================================================================
   PULL QUOTE
   ===================================================================== */
.pullquote {
  max-width: 1100px;
  margin: 112px auto 0;
  padding: 56px 32px 0;
  position: relative;
  text-align: center;
}
.pullquote__mark {
  font-family: var(--display);
  font-weight: 900;
  font-size: 240px;
  line-height: 0.5;
  color: var(--push-purple);
  margin-bottom: -40px;
  height: 80px;
  user-select: none;
}
.pullquote blockquote {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--push-black);
  max-width: 1000px;
  margin-inline: auto;
}
.sec--dark .pullquote blockquote,
.sec--purple .pullquote blockquote { color: var(--push-white); }
.pullquote figcaption {
  margin-top: 32px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.55);
}
.sec--dark .pullquote figcaption,
.sec--purple .pullquote figcaption { color: rgba(255,255,255,0.55); }

/* =====================================================================
   SECTION 3 — diverging paths + rollout
   ===================================================================== */
.sec__body--stack {
  display: flex;
  flex-direction: column;
  gap: 88px;
  align-items: stretch;
}

.paths {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.paths__svg {
  width: 100%;
  height: auto;
  display: block;
}

#adaptPath, #waitPath {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  transition: stroke-dashoffset 1.8s ease-out;
}
#gap { transition: opacity 1.4s ease-out 0.6s; }
.is-revealed #adaptPath, .is-revealed #waitPath { stroke-dashoffset: 0; }
.is-revealed #gap { opacity: 1; }

.paths__labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.paths__label {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  pointer-events: auto;
  font-family: var(--body);
}
.paths__label--adapt { top: 4%; right: 2%; max-width: 240px; text-align: left; }
.paths__label--wait  { bottom: 28%; right: 2%; max-width: 240px; }
.paths__label--gap   { top: 42%; left: 38%; }

.paths__dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--push-purple);
  margin-top: 4px;
  flex-shrink: 0;
}
.paths__dot--ghost {
  background: none;
  border: 2px solid rgba(255,255,255,0.55);
}
.paths__name {
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--push-white);
}
.paths__detail {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.paths__gap-pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(138,102,255,0.18);
  border: 1px solid rgba(138,102,255,0.5);
  color: var(--push-purple);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.paths__axis {
  display: flex; justify-content: space-between;
  margin-top: 18px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 0 60px;
}

.rollout { width: 100%; max-width: 1200px; margin: 0 auto; }
.rollout__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.rollout__stat {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.005em;
  color: var(--push-white);
  max-width: 520px;
  text-align: right;
}
.rollout__track {
  position: relative;
  height: 120px;
  padding: 32px 0;
}
.rollout__line {
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 2px;
  background: rgba(255,255,255,0.15);
}
.rollout__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--push-purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.6s ease-out 0.3s;
}
.is-revealed .rollout__line::after { transform: scaleX(1); }

.rollout__pt {
  position: absolute;
  top: 50%;
  left: var(--x);
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.rollout__pt::before {
  content: "";
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--push-black);
  border: 2px solid var(--push-purple);
  order: 2;
}
.rollout__pt--major::before {
  background: var(--push-purple);
  width: 22px; height: 22px;
  box-shadow: 0 0 0 6px rgba(138,102,255,0.18);
}
.rollout__month {
  order: 1;
  font-family: var(--display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--push-white);
  text-transform: uppercase;
  position: absolute; top: -22px;
  white-space: nowrap;
}
.rollout__pt--major .rollout__month { color: var(--push-purple); font-size: 15px; }
.rollout__event {
  order: 3;
  font-family: var(--body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  position: absolute; top: 38px;
  text-align: center;
  width: 160px;
  line-height: 1.4;
}
.rollout__pt--major .rollout__event { color: var(--push-white); font-weight: 600; }

.callout-line {
  margin: 0 auto;
  max-width: 920px;
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--push-white);
  padding: 48px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.callout-line--light {
  color: var(--push-black);
  border-top-color: rgba(17,17,17,0.12);
  font-family: var(--body);
  font-weight: 600;
  text-transform: none;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 56px;
  max-width: 880px;
}

/* =====================================================================
   SECTION 4 — Channel mix + plays
   ===================================================================== */
.mix {
  max-width: 1100px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 36px;
  align-items: center;
}
.mix__col { display: flex; flex-direction: column; gap: 16px; }
.mix__label {
  display: flex; align-items: center; gap: 12px;
}
.mix__tag {
  font-family: var(--body);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(17,17,17,0.08);
  color: rgba(17,17,17,0.6);
}
.mix__tag--purple { background: var(--push-purple); color: var(--push-white); }
.mix__name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.mix__funnel {
  height: 220px;
  position: relative;
}
.mix__funnel svg { width: 100%; height: 100%; display: block; }
.mix__caption {
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(17,17,17,0.6);
  max-width: 280px;
}
.mix__arrow {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--push-purple);
}
.mix__arrow span {
  font-family: var(--body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.plays {
  max-width: 1216px;
  margin: 88px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.play {
  padding: 32px 28px 36px;
  border: 1.5px solid rgba(17,17,17,0.12);
  border-radius: 18px;
  background: var(--push-white);
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
}
.play::before {
  content: "";
  position: absolute;
  top: -1.5px; left: -1.5px; right: -1.5px;
  height: 4px;
  background: var(--push-purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.play:hover {
  border-color: var(--push-purple);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -24px rgba(138,102,255,0.4);
}
.play:hover::before { transform: scaleX(1); }
.play__num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 13px;
  color: var(--push-purple);
}
.play__title {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--push-black);
}
.play__body {
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(17,17,17,0.7);
  margin-top: 4px;
}

/* =====================================================================
   SECTION 5 — Perpetual Performance ring
   ===================================================================== */
.sec--stratis { padding-bottom: clamp(112px, 14vw, 200px); }
.stratis-name {
  letter-spacing: 0.04em;
  font-weight: 800;
}

.ring {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 88px auto 24px;
  aspect-ratio: 1.1 / 1;
  min-height: 600px;
}
.ring__svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.ring__svg circle,
.ring__svg path { transition: opacity .8s ease, stroke-dashoffset 1.6s ease-out; }

.ring__center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 280px;
}
.ring__center-eyebrow {
  font-family: var(--body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--push-purple);
  margin-bottom: 10px;
}
.ring__center-name {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 0.95;
  letter-spacing: -0.005em;
  color: var(--push-white);
  margin-bottom: 16px;
}
.ring__center-tag {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: var(--push-yellow);
}

.ring__node {
  position: absolute;
  width: 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.ring__node--n { top: 1%;  left: 50%; transform: translateX(-50%); }
.ring__node--e { top: 50%; right: 1%; transform: translateY(-50%); text-align: left; }
.ring__node--s { bottom: 1%; left: 50%; transform: translateX(-50%); }
.ring__node--w { top: 50%; left: 1%; transform: translateY(-50%); text-align: right; }
.ring__node--e, .ring__node--w { width: 240px; }

.ring__node-num {
  font-family: var(--body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--push-purple);
}
.ring__node-name {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 32px;
  line-height: 0.95;
  letter-spacing: -0.005em;
  color: var(--push-white);
}
.ring__node-body {
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}

/* =====================================================================
   SECTION 6 — Why Push (purple)
   ===================================================================== */
.sec--purple { color: var(--push-white); }
.sec--purple .sec__num { color: var(--push-yellow); }
.sec--purple .sec__index { border-top-color: var(--push-yellow); }
.sec--purple .sec__title { color: var(--push-white); }
.c-white-strong { color: var(--push-yellow); }
.sec--purple .prose strong { color: var(--push-white); }

.categories {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 36px;
}
.categories__head { margin-bottom: 24px; }
.categories__head .t-eyebrow { color: var(--push-yellow); letter-spacing: 0.18em; }
.categories__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.categories__list li {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 17px;
  color: var(--push-white);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.categories__list li:last-child { border-bottom: none; }
.cat-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--push-yellow);
}
.categories__note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  font-style: italic;
}

/* =====================================================================
   CLOSING CTA
   ===================================================================== */
.close {
  position: relative;
  padding: clamp(112px, 14vw, 200px) var(--gutter) 0;
  background: var(--push-black);
  color: var(--push-white);
  overflow: hidden;
  isolation: isolate;
}
.close__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.close__circle {
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(138,102,255,0.28) 0%, rgba(138,102,255,0.06) 40%, transparent 70%);
  border: 1.5px solid rgba(138,102,255,0.25);
  position: relative;
  animation: closeFloat 14s ease-in-out infinite;
}
.close__circle::before, .close__circle::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px dashed rgba(138,102,255,0.18);
}
.close__circle::before { inset: -60px; }
.close__circle::after  { inset: -140px; opacity: 0.6; }
@keyframes closeFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-20px) scale(1.04); }
}

.close__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 120px;
}
.close__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--push-yellow);
  padding: 10px 18px;
  border: 1px solid rgba(243,208,2,0.35);
  border-radius: 999px;
  background: rgba(243,208,2,0.06);
  margin-bottom: 32px;
}
.close__eyebrow .dot { background: var(--push-yellow); box-shadow: 0 0 12px rgba(243,208,2,0.6); }
.close__title {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(56px, 8vw, 144px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  margin: 0 0 32px;
}
.close__body {
  font-family: var(--body);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 720px;
  margin: 0 auto 48px;
}
.close__cta {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}

/* Footer */
.foot {
  position: relative;
  z-index: 2;
  padding: 56px 0 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 1216px;
  margin: 0 auto;
}
.foot__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.foot__mark { display: flex; flex-direction: column; gap: 4px; }
.foot__wordmark {
  font-family: var(--display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.01em;
}
.foot__tag {
  font-family: var(--body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.foot__meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-family: var(--body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
}
.foot__meta a { color: var(--push-purple); }

.foot__sources {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
}
.foot__sources .t-eyebrow { margin-bottom: 14px; display: block; }
.foot__sources ol {
  margin: 0 0 16px;
  padding-left: 20px;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}
.foot__sources li { margin-bottom: 4px; }
.foot__note {
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  margin: 0;
  max-width: 760px;
}

/* =====================================================================
   REVEAL
   ===================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease-out, transform .9s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* counter num bumps */
.counter { display: inline-block; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1100px) {
  .sec__head { grid-template-columns: 1fr; gap: 16px; }
  .sec__head .sec__index { padding-top: 0; max-width: 240px; }
  .two-col { grid-template-columns: 1fr; gap: 64px; }
  .two-col--reverse > :first-child { order: 1; }
  .two-col--reverse > :last-child  { order: 2; }
  .serp-compare { grid-template-columns: 1fr; gap: 32px; }
  .serp__arrow { transform: rotate(90deg); }
  .stats { grid-template-columns: 1fr; }
  .plays { grid-template-columns: 1fr 1fr; }
  .exp-row { grid-template-columns: 1fr; gap: 10px; }
  .mix { grid-template-columns: 1fr; }
  .mix__arrow { transform: rotate(90deg); margin: 12px 0; }
  .ring { aspect-ratio: auto; min-height: 0; }
  .ring__svg { display: none; }
  .ring__center { position: relative; transform: none; top: auto; left: auto; margin: 0 auto 48px; }
  .ring__node { position: relative; width: 100%; transform: none; inset: auto; text-align: left; margin-bottom: 24px; padding: 24px; border: 1px solid rgba(255,255,255,0.18); border-radius: 16px; }
  .ring__node--e, .ring__node--w { text-align: left; }
  .rollout__head { flex-direction: column; align-items: flex-start; }
  .rollout__stat { text-align: left; }
  .nav__crumb { display: none; }
  .findings li { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 720px) {
  :root { --gutter: 24px; }
  .hero__cta { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero__scroll { display: none; }
  .plays { grid-template-columns: 1fr; }
  .nav__meta { gap: 12px; }
}


/* =====================================================================
   ACCESSIBILITY — small-text purple contrast (WCAG AA)
   Brand #8A66FF stays on large headings & graphics; small text uses
   the accessible purple tokens. Placed late so it wins by source order.
   ===================================================================== */
/* On light backgrounds */
.sec--light .sec__num,
.sec--light .link-arrow,
.serp--after .serp__label,
.serp__ai-tag,
.serp__sparkle,
.play__num,
.mix__arrow span { color: var(--push-purple-on-light); }

/* On dark backgrounds */
.sec--dark .sec__num,
.hero__eyebrow,
.close .link-arrow,
.link-arrow:hover,
.ring__center-eyebrow,
.ring__node-num,
.t-eyebrow.c-purple,
.paths__gap-pill,
.foot__meta a { color: var(--push-purple-on-dark); }

/* =====================================================================
   NO-JS / SCRIPT-FAILURE FALLBACK
   <html> gets class "js" from an inline script before paint. If JS is
   disabled or errors, that class is absent and reveal-gated content is
   forced into its final visible state so nothing stays hidden.
   ===================================================================== */
html:not(.js) [data-reveal] { opacity: 1; transform: none; }
html:not(.js) .exp-row__fill { width: var(--w); }
html:not(.js) #adaptPath,
html:not(.js) #waitPath { stroke-dashoffset: 0; }
html:not(.js) #gap { opacity: 1; }
html:not(.js) .rollout__line::after { transform: scaleX(1); }

/* =====================================================================
   TWEAKS — rhythm modes
   ===================================================================== */
/* Mostly dark: invert sections that are .sec--light to dark */
body.rhythm-dark .sec--light { background: var(--push-black); color: var(--push-white); }
body.rhythm-dark .sec--light .prose p,
body.rhythm-dark .sec--light .findings span { color: rgba(255,255,255,0.78); }
body.rhythm-dark .sec--light .prose strong { color: var(--push-white); }
body.rhythm-dark .sec--light .sec__kicker { color: rgba(255,255,255,0.6); }
body.rhythm-dark .sec--light .findings li,
body.rhythm-dark .sec--light .findings li:last-child { border-color: rgba(255,255,255,0.1); }
body.rhythm-dark .sec--light .callout-line--light { color: var(--push-white); border-top-color: rgba(255,255,255,0.15); }
body.rhythm-dark .sec--light .play {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
}
body.rhythm-dark .sec--light .play__title { color: var(--push-white); }
body.rhythm-dark .sec--light .play__body { color: rgba(255,255,255,0.7); }
body.rhythm-dark .sec--light .pullquote blockquote { color: var(--push-white); }
body.rhythm-dark .sec--light .pullquote figcaption { color: rgba(255,255,255,0.55); }
body.rhythm-dark .sec--light .sec__footer { border-top-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }
body.rhythm-dark .sec--light .sec__footer-mark { color: var(--push-white); }
body.rhythm-dark .sec--light .stat__label { color: rgba(255,255,255,0.78); }
body.rhythm-dark .sec--light .link-arrow { color: var(--push-purple); }
body.rhythm-dark .sec--light .findings strong { color: var(--push-purple); }
body.rhythm-dark .sec--light .serp__caption { color: rgba(255,255,255,0.6); }
body.rhythm-dark .sec--light .mix__caption { color: rgba(255,255,255,0.6); }
body.rhythm-dark .sec--light .mix__tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }

/* Mostly light: invert sec--dark to white */
body.rhythm-light .sec--dark:not(.sec--stratis) { background: var(--push-white); color: var(--push-black); }
body.rhythm-light .sec--dark:not(.sec--stratis) .prose p { color: rgba(17,17,17,0.82); }
body.rhythm-light .sec--dark:not(.sec--stratis) .prose strong { color: var(--push-black); }
body.rhythm-light .sec--dark:not(.sec--stratis) .sec__kicker { color: rgba(17,17,17,0.55); }
body.rhythm-light .sec--dark:not(.sec--stratis) .sec__title { color: var(--push-black); }
body.rhythm-light .sec--dark:not(.sec--stratis) .pullquote blockquote { color: var(--push-black); }
body.rhythm-light .sec--dark:not(.sec--stratis) .pullquote figcaption { color: rgba(17,17,17,0.55); }
body.rhythm-light .sec--dark:not(.sec--stratis) .sec__footer { border-top-color: rgba(17,17,17,0.08); color: rgba(17,17,17,0.45); }
body.rhythm-light .sec--dark:not(.sec--stratis) .sec__footer-mark { color: var(--push-black); }
body.rhythm-light .sec--dark:not(.sec--stratis) .callout-line { color: var(--push-black); border-top-color: rgba(17,17,17,0.12); }
body.rhythm-light .sec--dark:not(.sec--stratis) .paths__name { color: var(--push-black); }
body.rhythm-light .sec--dark:not(.sec--stratis) .paths__detail { color: rgba(17,17,17,0.6); }
body.rhythm-light .sec--dark:not(.sec--stratis) .paths__axis { color: rgba(17,17,17,0.45); }
body.rhythm-light .sec--dark:not(.sec--stratis) .rollout__month { color: var(--push-black); }
body.rhythm-light .sec--dark:not(.sec--stratis) .rollout__event { color: rgba(17,17,17,0.6); }
body.rhythm-light .sec--dark:not(.sec--stratis) .rollout__line { background: rgba(17,17,17,0.15); }
body.rhythm-light .sec--dark:not(.sec--stratis) .rollout__pt::before { background: var(--push-white); }
body.rhythm-light .sec--dark:not(.sec--stratis) .rollout__stat { color: var(--push-black); }
body.rhythm-light .sec--dark:not(.sec--stratis) .sec__bg { display: none; }

/* =====================================================================
   TWEAKS — hide section numbers
   ===================================================================== */
body.hide-section-nums .sec__num,
body.hide-section-nums .sec__footer-page { display: none; }
body.hide-section-nums .sec__index { border-top: none; padding-top: 0; }
body.hide-section-nums .sec__index--center { display: none; }

/* =====================================================================
   TWEAKS — hero motif: type only (hide field)
   ===================================================================== */
body.hero-type .hero__field { display: none; }
body.hero-type .hero { background: linear-gradient(180deg, var(--push-black) 0%, #1a1430 50%, var(--push-black) 100%); }

/* =====================================================================
   TWEAKS — reveals off
   ===================================================================== */
body.reveals-off [data-reveal] { transition: none !important; }

/* =====================================================================
   TWEAKS PANEL
   ===================================================================== */
.twk {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 2147483646;
  width: 304px;
  max-height: calc(100vh - 32px);
  display: none;
  flex-direction: column;
  background: rgba(17, 17, 17, 0.92);
  color: var(--push-white);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
  font-family: var(--body);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  overflow: hidden;
}
.twk.is-open { display: flex; }
.twk__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 12px 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.twk__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--push-white);
}
.twk__close {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.55);
  width: 28px; height: 28px;
  border-radius: 8px;
  font-size: 18px; line-height: 1;
  cursor: pointer;
}
.twk__close:hover { background: rgba(255,255,255,0.08); color: var(--push-white); }
.twk__body {
  padding: 14px 18px 18px;
  display: flex; flex-direction: column; gap: 16px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.twk__body::-webkit-scrollbar { width: 6px; }
.twk__body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 3px; }
.twk__section {
  font-family: var(--body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--push-purple);
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: -4px;
}
.twk__section:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.twk__row { display: flex; flex-direction: column; gap: 8px; }
.twk__row--inline { flex-direction: row; align-items: center; justify-content: space-between; }
.twk__lbl {
  font-family: var(--body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
}
.twk__swatches { display: flex; gap: 8px; }
.twk__swatch {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.18);
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease;
  padding: 0;
}
.twk__swatch:hover { transform: scale(1.05); }
.twk__swatch.is-on {
  border-color: var(--push-white);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.15);
}
.twk__seg {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  padding: 3px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
}
.twk__seg-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.6);
  padding: 7px 4px;
  border-radius: 7px;
  font: 600 10.5px/1.1 var(--body);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.twk__seg-btn:hover { color: var(--push-white); }
.twk__seg-btn.is-on {
  background: var(--push-purple);
  color: var(--push-white);
}
.twk__textarea, .twk__input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--push-white);
  border-radius: 8px;
  padding: 8px 10px;
  font: 500 12px/1.4 var(--body);
  resize: vertical;
  outline: none;
  transition: border-color .15s, background .15s;
}
.twk__textarea:focus, .twk__input:focus {
  border-color: var(--push-purple);
  background: rgba(138,102,255,0.08);
}
.twk__toggle {
  appearance: none;
  border: 0;
  width: 36px; height: 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  position: relative;
  cursor: pointer;
  transition: background .15s;
  padding: 0;
  flex-shrink: 0;
}
.twk__toggle span {
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--push-white);
  transition: transform .18s ease;
}
.twk__toggle.is-on { background: var(--push-purple); }
.twk__toggle.is-on span { transform: translateX(16px); }
.twk__hint {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}
