/* ============================================================
   THUSO — Brand Launch & Growth Strategy
   X Digital | The Building Company
   Brand colours (strict): #53C8C8 / #3A8874 / #14413E
   ============================================================ */

:root {
  --teal: #53C8C8;
  --green: #3A8874;
  --deep: #14413E;
  --ink: #0F2422;
  --body: #41544F;
  --muted: #6E837F;
  --faint: #97A8A4;
  --line: #DEE9E6;
  --wash: #F4F9F8;
  --wash2: #E9F3F1;
  --white: #ffffff;
  --grad: linear-gradient(112deg, #53C8C8 0%, #3A8874 52%, #14413E 100%);
  --grad-v: linear-gradient(180deg, #53C8C8 0%, #3A8874 52%, #14413E 100%);
  --radius: 20px;
  --shadow: 0 24px 60px rgba(20, 65, 62, .12);
  --shadow-sm: 0 10px 30px rgba(20, 65, 62, .08);
  --font: "Helvetica Neue", Helvetica, Arial, "Liberation Sans", sans-serif;
  --nav-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }

body {
  font-family: var(--font);
  color: var(--body);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: rgba(83, 200, 200, .35); color: var(--ink); }

/* ---------- type ---------- */

h1, h2, h3, h4 { color: var(--ink); line-height: 1.08; letter-spacing: -.015em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--grad);
}

.h2 {
  font-size: clamp(30px, 3.6vw, 50px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 18px;
}
.h3 {
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 800;
  margin-bottom: 10px;
}
.lead { font-size: clamp(17px, 1.5vw, 20px); max-width: 60ch; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.center { text-align: center; }
.center .lead,
.lead.center { margin-inline: auto; }
.lead.center { text-wrap: balance; }
strong { color: var(--ink); font-weight: 700; }

/* ---------- layout ---------- */

.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.wrap-wide { width: min(1320px, calc(100% - 48px)); margin-inline: auto; }

section[id] { scroll-margin-top: calc(var(--nav-h) - 6px); }

.block { padding: clamp(64px, 8vw, 110px) 0; }
.block-tight { padding: clamp(44px, 5.5vw, 80px) 0; }
.sec-head { margin-bottom: clamp(32px, 4vw, 56px); }

/* ---------- progress + nav ---------- */

#progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--grad);
  z-index: 1001;
  transition: width .1s linear;
}

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: background .3s ease, box-shadow .3s ease;
}
.nav .wrap-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 78px; width: auto; }
.nav-logo .logo-dark { display: none; }

.nav-right { display: flex; align-items: center; gap: 10px; }

.nav-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  transition: opacity .2s;
}
.nav-link:hover { opacity: .75; }

.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--deep);
  background: #fff;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s;
}
.menu-btn:hover { transform: translateY(-1px); }
.menu-btn .bars { display: inline-flex; flex-direction: column; gap: 4px; }
.menu-btn .bars i { width: 16px; height: 2px; background: var(--green); border-radius: 2px; }

.nav.scrolled { background: rgba(255, 255, 255, .92); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
.nav.scrolled .nav-logo .logo-light { display: none; }
.nav.scrolled .nav-logo .logo-dark { display: block; }
.nav.scrolled .nav-link { color: var(--deep); }
.nav.scrolled .menu-btn { background: var(--deep); color: #fff; box-shadow: none; }
.nav.scrolled .menu-btn .bars i { background: var(--teal); }

/* ---------- menu overlay ---------- */

.menu {
  position: fixed;
  inset: 0;
  z-index: 1002;
  background: var(--grad);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 26px 0 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s;
  overflow-y: auto;
}
.menu.open { opacity: 1; visibility: visible; }
.menu-head { display: flex; align-items: center; justify-content: space-between; }
.menu-head img { height: 84px; }
.menu-close {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.menu-close:hover { background: rgba(255, 255, 255, .25); }
.menu-grid {
  align-self: center;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 56px;
  padding: 34px 0;
}
.menu-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 9px 12px;
  border-radius: 12px;
  color: #fff;
  transition: background .2s, transform .2s;
}
.menu-item:hover { background: rgba(255, 255, 255, .12); transform: translateX(4px); }
.menu-item .n {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .65);
  min-width: 26px;
}
.menu-item .t { font-size: clamp(17px, 1.6vw, 21px); font-weight: 700; }
.menu-item.soon { opacity: .45; pointer-events: none; }
.menu-item.soon .tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  padding: 2px 9px;
  margin-left: 8px;
  text-transform: uppercase;
}
.menu-foot { display: flex; align-items: center; gap: 18px; }
.menu-foot img { height: 56px; opacity: .9; }
.menu-foot .sep { width: 1px; height: 26px; background: rgba(255, 255, 255, .4); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  background: var(--grad);
  color: #fff;
  display: flex;
  align-items: center;
  overflow: clip;
  padding: calc(var(--nav-h) + 24px) 0 130px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(58% 70% at 18% 18%, rgba(83, 200, 200, .5) 0%, rgba(83, 200, 200, 0) 60%),
    radial-gradient(70% 80% at 88% 88%, rgba(9, 32, 30, .55) 0%, rgba(9, 32, 30, 0) 62%);
  pointer-events: none;
}
.hero-house {
  position: absolute;
  left: 4%;
  bottom: -9%;
  width: min(38vw, 560px);
  opacity: .22;
  pointer-events: none;
}
.hero-house svg { width: 100%; height: auto; display: block; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
}
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual img {
  width: min(29vw, 400px);
  max-height: min(62vh, 720px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 40px 80px rgba(6, 24, 22, .5));
}
.hero-copy { position: relative; padding-bottom: 20px; }
.hero-wordmark { width: min(320px, 56%); margin-bottom: 8px; margin-left: -14px; }
.hero-tagpill {
  display: inline-block;
  background: rgba(255, 255, 255, .92);
  color: var(--deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 11px 22px;
  margin-bottom: 30px;
  white-space: nowrap;
}
.hero h1 {
  color: #fff;
  font-size: clamp(46px, 5.6vw, 86px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: .98;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  color: rgba(255, 255, 255, .88);
  max-width: 50ch;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 16px 28px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 14px 40px rgba(6, 24, 22, .3);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 20px 50px rgba(6, 24, 22, .4); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  padding: 15px 26px;
  transition: background .2s;
}
.btn-ghost:hover { background: rgba(255, 255, 255, .12); }
.arrow { display: inline-block; }

.hero-partners {
  position: absolute;
  left: max(24px, calc((100% - 1320px) / 2));
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 2;
}
.hero-partners img { height: 74px; width: auto; opacity: .95; }
.hero-partners img.xd { height: 30px; }
.hero-partners .sep { width: 1px; height: 30px; background: rgba(255, 255, 255, .45); }

.hero-scroll {
  position: absolute;
  right: max(24px, calc((100% - 1320px) / 2));
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .85);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-scroll .dot {
  width: 26px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, .6);
  border-radius: 999px;
  position: relative;
  writing-mode: horizontal-tb;
}
.hero-scroll .dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  width: 4px;
  height: 8px;
  border-radius: 3px;
  background: #fff;
  transform: translateX(-50%);
  animation: scrollhint 1.8s ease-in-out infinite;
}
@keyframes scrollhint {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  60% { transform: translate(-50%, 14px); opacity: .2; }
}

.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  line-height: 0;
  z-index: 1;
}
.hero-wave svg { width: 100%; height: clamp(50px, 8vw, 120px); display: block; }

/* ---------- section breakers ---------- */

.breaker {
  position: relative;
  background: var(--grad);
  color: #fff;
  text-align: center;
  padding: clamp(90px, 12vw, 170px) 0 clamp(100px, 13vw, 190px);
  overflow: clip;
}
.breaker::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 80% at 22% 20%, rgba(83, 200, 200, .42) 0%, rgba(83, 200, 200, 0) 60%),
    radial-gradient(60% 80% at 85% 85%, rgba(9, 32, 30, .5) 0%, rgba(9, 32, 30, 0) 62%);
  pointer-events: none;
}
.breaker .wrap { position: relative; }
.breaker .num {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3em;
  color: rgba(255, 255, 255, .85);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
  padding: 8px 18px 8px 22px;
  margin-bottom: 26px;
}
.breaker h2 {
  color: #fff;
  font-size: clamp(34px, 5.2vw, 74px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .005em;
  line-height: 1.02;
  margin-bottom: 14px;
  white-space: nowrap;
}
.breaker .sub {
  font-size: clamp(16px, 1.5vw, 20px);
  color: rgba(255, 255, 255, .88);
  max-width: 62ch;
  margin-inline: auto;
}
.breaker .wave-top,
.breaker .wave-bot {
  position: absolute;
  left: 0; right: 0;
  line-height: 0;
  z-index: 1;
}
.breaker .wave-top { top: -1px; }
.breaker .wave-bot { bottom: -1px; }
.breaker .wave-top svg,
.breaker .wave-bot svg { width: 100%; height: clamp(40px, 7vw, 105px); display: block; }

/* ---------- generic components ---------- */

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(58, 136, 116, .35);
  color: var(--deep);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 700;
  background: #fff;
}
.chip .arr { color: var(--green); font-weight: 800; }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }

.tick-list { list-style: none; display: grid; gap: 12px; }
.tick-list li { position: relative; padding-left: 32px; }
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--grad);
}
.tick-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.x-list { list-style: none; display: grid; gap: 11px; }
.x-list li { position: relative; padding-left: 30px; color: var(--body); }
.x-list li::before,
.x-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--faint);
}
.x-list li::before { transform: rotate(45deg); }
.x-list li::after { transform: rotate(-45deg); }

.panel-dark {
  background: var(--deep);
  color: rgba(255, 255, 255, .88);
  border-radius: 26px;
  padding: clamp(34px, 4.5vw, 64px);
  position: relative;
  overflow: clip;
}
.panel-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 90% at 90% 10%, rgba(83, 200, 200, .25) 0%, rgba(83, 200, 200, 0) 60%);
  pointer-events: none;
}
.panel-dark > * { position: relative; }
.panel-dark h3, .panel-dark h4 { color: #fff; }
.panel-dark .big {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
}
.panel-dark .big .lite { color: var(--teal); }

.banner-grad {
  background: var(--grad);
  color: #fff;
  border-radius: 26px;
  padding: clamp(34px, 4.5vw, 60px);
  text-align: center;
  position: relative;
  overflow: clip;
}
.banner-grad::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 90% at 15% 15%, rgba(255, 255, 255, .16) 0%, rgba(255, 255, 255, 0) 60%);
}
.banner-grad > * { position: relative; }
.banner-grad .big {
  font-size: clamp(24px, 3.4vw, 46px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.12;
}
.banner-grad .sub { margin-top: 12px; color: rgba(255, 255, 255, .88); }

.next-row { display: flex; justify-content: flex-end; margin-top: clamp(40px, 5vw, 64px); }
.next-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--deep);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 14px 24px;
  transition: border-color .2s, transform .2s, background .2s;
}
.next-link small { color: var(--muted); letter-spacing: .14em; }
.next-link:hover { border-color: var(--green); transform: translateX(4px); background: var(--wash); }

/* ---------- mockup slots + phone frames ---------- */

.phone-frame {
  width: 100%;
  max-width: 250px;
  aspect-ratio: 9 / 18.6;
  background: #101B19;
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 30px 60px rgba(20, 65, 62, .18);
  position: relative;
  margin-inline: auto;
}
.phone-frame .screen {
  position: absolute;
  inset: 10px;
  background: #fff;
  border-radius: 31px;
  overflow: clip;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-frame .notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 20px;
  border-radius: 999px;
  background: #101B19;
  z-index: 2;
}
/* ---------- media in phone frames ---------- */

/* the screen (not the outer frame) is exactly 9:16, so 1080x1920 artwork fills it uncropped */
.phone-frame.is-media { aspect-ratio: auto; max-width: 340px; }
.phone-frame.is-media .screen {
  position: static;
  inset: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  background: #0F2422;
}
.phone-frame.is-media .screen img,
.phone-frame.is-media .screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* play / pause overlay */
.vplay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .94);
  color: var(--green);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(6, 24, 22, .38);
  transition: opacity .25s ease, transform .2s ease;
  z-index: 3;
}
.vplay:hover { transform: translate(-50%, -50%) scale(1.06); }
.vplay svg { width: 24px; height: 24px; margin-left: 2px; }
.vplay .i-pause { display: none; }
.is-playing .vplay { opacity: 0; }
.is-playing:hover .vplay { opacity: 1; }
.is-playing .vplay .i-play { display: none; }
.is-playing .vplay .i-pause { display: block; margin-left: 0; }
.video-phone .screen video { cursor: pointer; }

/* wide video embed (dashboard) */
.video-embed {
  position: relative;
  margin-top: 22px;
  border-radius: 16px;
  overflow: clip;
  background: #0F2422;
  aspect-ratio: 16 / 10;
}
.video-embed video { width: 100%; height: 100%; object-fit: contain; display: block; background: #04120E; }
.video-embed.on-dark { border: 1px solid rgba(255, 255, 255, .18); }
.demo-btn { margin-top: 20px; }

/* laptop mockup */
.laptop { width: min(100%, 880px); margin: 0 auto; }
.laptop-screen {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #101B19;
  border: 12px solid #101B19;
  border-radius: 16px 16px 4px 4px;
  overflow: clip;
  box-shadow: 0 30px 60px rgba(20, 65, 62, .22);
}
.laptop-screen video { width: 100%; height: 100%; object-fit: contain; display: block; background: #04120E; }
.laptop-base {
  height: 16px;
  background: linear-gradient(180deg, #1B2A27 0%, #101B19 60%, #0B1412 100%);
  border-radius: 0 0 14px 14px;
  width: 112%;
  margin-left: -6%;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 24px rgba(20, 65, 62, .18);
}
.laptop-base .notchbar { width: 96px; height: 4px; border-radius: 0 0 6px 6px; background: rgba(255, 255, 255, .16); margin-top: -6px; }

/* solid button on light backgrounds */
.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--grad);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 16px 30px;
  box-shadow: 0 14px 34px rgba(20, 65, 62, .28);
  transition: transform .2s, box-shadow .2s;
}
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(20, 65, 62, .36); }

/* launch-arc creative showcase */
.creative-band { margin-top: clamp(34px, 4.5vw, 60px); text-align: center; }
.creative-2up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 48px);
  max-width: 760px;
  margin: 22px auto 0;
}
.creative-item { margin: 0; }
.creative-item figcaption {
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* in-store signage photography */
.tp-media { grid-column: 2 / -1; }
.tp-media img {
  height: 300px;
  width: auto;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(20, 65, 62, .16);
}

/* cost structure */
.cost-table {
  max-width: 900px;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: clip;
  background: #fff;
}
.cost-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 26px clamp(20px, 3vw, 34px);
  border-bottom: 1px solid var(--line);
}
.cost-row:last-child { border-bottom: 0; }
.cost-item { display: flex; align-items: baseline; gap: 16px; }
.cost-item .n {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cost-item h4 { font-size: clamp(17px, 1.8vw, 21px); font-weight: 800; }
.cost-fig {
  font-size: clamp(19px, 2.1vw, 26px);
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}
.cost-fig.is-note {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  white-space: normal;
  max-width: 30ch;
  text-align: right;
  line-height: 1.45;
}

/* ---------- contents / roadmap ---------- */

#contents { background: #fff; }
.toc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.toc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 20px 20px;
  color: var(--body);
  transition: transform .22s, box-shadow .22s, border-color .22s;
  overflow: clip;
}
.toc-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--grad);
  opacity: 0;
  transition: opacity .22s;
}
.toc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: transparent; }
.toc-card:hover::after { opacity: 1; }
.toc-card .n {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.toc-card .t { font-size: 16.5px; font-weight: 800; color: var(--ink); line-height: 1.25; }
.toc-card .d { font-size: 13px; color: var(--muted); line-height: 1.5; }
.toc-card.soon { opacity: .55; pointer-events: none; background: var(--wash); }
.toc-card.soon .tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 9px;
  background: #fff;
}

/* ---------- opportunity: strategic shift orbit ---------- */

.shift-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.orbit {
  position: relative;
  aspect-ratio: 1;
  max-width: 540px;
  margin-inline: auto;
  width: 100%;
}
.orbit .halo {
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  background: var(--grad);
  opacity: .92;
}
.orbit .halo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(60% 60% at 30% 25%, rgba(255, 255, 255, .3) 0%, rgba(255, 255, 255, 0) 60%);
}
.orbit .ring {
  position: absolute;
  inset: -2%;
  border: 1.5px dashed rgba(58, 136, 116, .35);
  border-radius: 50%;
  animation: spin 60s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.orbit .phone-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 69%; /* canvas is body-centred + padded; body reads ~30% of orbit */
  filter: drop-shadow(0 30px 50px rgba(20, 65, 62, .35));
  z-index: 2;
}
.orbit .tile {
  position: absolute;
  width: 21%;
  aspect-ratio: 1;
  border-radius: 22%;
  overflow: clip;
  box-shadow: 0 18px 40px rgba(20, 65, 62, .28);
  z-index: 3;
  background: #fff;
  animation: floaty 5.5s ease-in-out infinite;
}
.orbit .tile img { width: 100%; height: 100%; object-fit: contain; }
.orbit .t1 { left: 2%; top: 16%; }
.orbit .t2 { right: 2%; top: 16%; animation-delay: 1.4s; }
.orbit .t3 { left: 2%; bottom: 16%; animation-delay: 2.8s; }
.orbit .t4 { right: 2%; bottom: 16%; animation-delay: 2s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.quote-band {
  border-left: 4px solid;
  border-image: var(--grad-v) 1;
  padding: 6px 0 6px 22px;
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 700;
  color: var(--ink);
  margin-top: 26px;
}

/* ---------- exists block ---------- */

.exists { background: var(--wash); }

/* the "before" state: five capable things, sitting apart */
.exists-row {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.ex-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.ex-card .ic {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--wash2);
  color: var(--muted);
  display: grid;
  place-items: center;
}
.ex-card .ic svg { width: 23px; height: 23px; }
.ex-card h4 { font-size: 15px; font-weight: 700; color: var(--body); line-height: 1.3; }
.ex-card .tag {
  margin-top: auto;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--faint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px;
}

/* the connection itself */
.converge { height: clamp(58px, 6vw, 86px); }
.converge svg { width: 100%; height: 100%; display: block; }

.hub {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--grad);
  color: #fff;
  border-radius: 999px;
  padding: 12px 26px 12px 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(20, 65, 62, .28);
  margin: 0 auto;
}
.hub img { width: 34px; height: 34px; filter: brightness(0) invert(1); }
.exists .hub { display: flex; width: fit-content; }

.exists-punch {
  font-size: clamp(26px, 3.6vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.08;
  max-width: 24ch;
  margin: clamp(28px, 3.4vw, 44px) auto 18px;
  text-align: center;
  text-wrap: balance;
}

/* ---------- why thuso matters callouts ---------- */

.matters-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
}
.matters-center { position: relative; display: flex; justify-content: center; }
.matters-center .halo {
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--grad);
}
.matters-center img {
  position: relative;
  width: 100%;
  max-width: 450px; /* body-centred canvas is wider than the phone itself */
  filter: drop-shadow(0 30px 60px rgba(20, 65, 62, .3));
}
.matters-col { display: grid; gap: clamp(24px, 3.4vw, 44px); }
.callout { display: flex; gap: 16px; align-items: flex-start; }
.matters-col.left .callout { flex-direction: row-reverse; text-align: right; }
.callout .ic {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--grad);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 24px rgba(20, 65, 62, .25);
}
.callout .ic svg { width: 24px; height: 24px; }
.callout h4 { font-size: 15px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 4px; }
.callout p { font-size: 14.5px; line-height: 1.55; color: var(--body); }

/* ---------- brand positioning ---------- */

.bigidea-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.bigidea-grid .phone-tilt {
  width: min(100%, 500px);
  margin-inline: auto;
  transform: rotate(10deg);
  filter: drop-shadow(0 40px 70px rgba(20, 65, 62, .28));
}
.idea-lines { display: grid; gap: 18px; margin-top: 26px; }
.idea-lines .l1 { font-size: clamp(22px, 2.6vw, 34px); font-weight: 800; color: var(--ink); }
.idea-lines p { color: var(--body); }
.connected-line {
  margin-top: 30px;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.system-grid .card h4 {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.system-grid .card p { font-size: 15.5px; color: var(--body); }
.system-grid .card p.b { font-size: clamp(19px, 1.8vw, 24px); font-weight: 800; color: var(--ink); line-height: 1.25; }

.ambition-quote {
  font-size: clamp(30px, 4.4vw, 60px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.05;
  margin: 22px 0 26px;
}
.formula {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  font-weight: 800;
  color: var(--ink);
}
.formula .op { color: var(--faint); font-size: 20px; }

.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.voice-card { display: flex; flex-direction: column; gap: 16px; padding: 32px; }
.voice-card .vhead { display: flex; align-items: center; gap: 16px; }
.voice-card .avatar {
  flex: 0 0 auto;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 2px dashed rgba(58, 136, 116, .45);
  background: var(--wash);
  display: grid;
  place-items: center;
  color: var(--green);
}
.voice-card .avatar svg { width: 30px; height: 30px; }
.voice-card .vtag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
}
.voice-card h4 { font-size: 21px; }
.voice-card .triad {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-weight: 700;
  color: var(--ink);
  font-size: 15.5px;
}
.voice-note { margin-top: 14px; font-size: 13px; color: var(--muted); display: flex; gap: 8px; align-items: center; }

/* ---------- audience tabs ---------- */

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 36px;
}
.tab-btn {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--muted);
  transition: color .2s, background .2s, box-shadow .2s;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--deep); }
.tab-btn.active {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 24px rgba(20, 65, 62, .28);
}
.persona { display: none; }
.persona.active { display: block; animation: fadein .4s ease; }
@keyframes fadein { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.persona-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.persona-head .pic {
  width: 96px;
  height: 96px;
  border-radius: 26px;
  object-fit: cover;
  background: var(--wash2);
  box-shadow: 0 14px 30px rgba(20, 65, 62, .25);
}
.persona-head .who h3 { font-size: clamp(22px, 2.4vw, 30px); text-transform: uppercase; }
.persona-head .who .alias { font-size: 14px; font-weight: 700; color: var(--green); letter-spacing: .08em; text-transform: uppercase; }
.persona-head .pquote {
  margin-left: auto;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700;
  color: var(--ink);
  border-left: 4px solid;
  border-image: var(--grad-v) 1;
  padding-left: 16px;
  max-width: 34ch;
}
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.persona-grid .card h4 {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.persona-grid .card p { font-size: 15px; }
.persona-grid .x-list li, .persona-grid .tick-list li { font-size: 14.5px; }
.persona-msg { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; }
.persona-msg .chip { font-size: 14px; }
.persona-opp {
  margin-top: 18px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 14.5px;
}
.persona-opp b { color: var(--ink); }

/* residential steps */
.stepstrip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  counter-reset: step;
}
.stepstrip .st { text-align: center; padding: 26px 14px 22px; }
.stepstrip .st .n {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 15px;
}
.stepstrip .st h4 { font-size: 15px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.stepstrip .st p { font-size: 13.5px; color: var(--muted); }

/* ---------- migration ---------- */

.feel-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.feel-chips .chip { font-size: 16px; padding: 12px 22px; }

.journey {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}
.jstep { position: relative; padding: 26px 20px 22px; }
.jstep .idx {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--green);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.jstep .idx::after { content: ""; flex: 1; height: 2px; background: var(--wash2); border-radius: 2px; }
.jstep h4 { font-size: 16px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.jstep .line { font-weight: 800; color: var(--ink); font-size: 14.5px; margin-bottom: 6px; }
.jstep p { font-size: 13.5px; color: var(--muted); }
.jstep.hot { background: var(--deep); border-color: var(--deep); }
.jstep.hot h4, .jstep.hot .line { color: #fff; }
.jstep.hot p { color: rgba(255, 255, 255, .75); }
.jstep.hot .idx { color: var(--teal); }
.jstep.hot .idx::after { background: rgba(255, 255, 255, .18); }
.date-badge {
  display: inline-block;
  margin-top: 10px;
  background: var(--teal);
  color: var(--deep);
  font-weight: 800;
  font-size: 13px;
  border-radius: 999px;
  padding: 6px 14px;
}

.touchcloud { display: flex; flex-wrap: wrap; gap: 10px; }
.touchcloud .chip { border-color: var(--line); font-weight: 600; color: var(--body); }
.touchcloud .chip:hover { border-color: var(--green); color: var(--deep); }

/* ---------- feature messaging ---------- */

.msg-legend { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.legend-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
}
.legend-pill.v1 { background: var(--wash2); color: var(--deep); }
.legend-pill.v2 { background: var(--deep); color: #fff; }
.legend-pill .dot { width: 9px; height: 9px; border-radius: 50%; }
.legend-pill.v1 .dot { background: var(--green); }
.legend-pill.v2 .dot { background: var(--teal); }

.msg-layout {
  display: grid;
  grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}
.msg-nav { display: grid; gap: 6px; position: sticky; top: calc(var(--nav-h) + 20px); }
.msg-nav button {
  text-align: left;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 12px;
  padding: 11px 16px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--muted);
  transition: all .2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.msg-nav button .cnt {
  font-size: 11px;
  font-weight: 800;
  background: var(--wash2);
  color: var(--green);
  border-radius: 999px;
  padding: 2px 8px;
}
.msg-nav button:hover { color: var(--deep); background: var(--wash); }
.msg-nav button.active { background: var(--grad); color: #fff; box-shadow: 0 10px 24px rgba(20, 65, 62, .25); }
.msg-nav button.active .cnt { background: rgba(255, 255, 255, .2); color: #fff; }

.msg-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.ad-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 26px 22px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 190px;
  position: relative;
  overflow: clip;
  transition: transform .22s, box-shadow .22s;
}
.ad-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.ad-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--grad-v);
}
.ad-card .vlabel {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
}
.ad-card h4 { font-size: 19px; line-height: 1.25; }
.ad-card p { font-size: 14.5px; color: var(--body); }
.ad-card .cta {
  margin-top: auto;
  align-self: flex-start;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #fff;
  background: var(--grad);
  border-radius: 999px;
  padding: 8px 16px;
}
.ad-card.v2 { background: var(--deep); border-color: var(--deep); }
.ad-card.v2 .vlabel { color: var(--teal); }
.ad-card.v2 h4 { color: #fff; }
.ad-card.v2 p { color: rgba(255, 255, 255, .78); }
.ad-card.v2 .cta { background: var(--teal); color: var(--deep); }

/* ---------- launch arc ---------- */

.arc-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: clamp(14px, 1.6vw, 19px);
  color: var(--ink);
}
.arc-flow .fase { background: var(--wash2); border-radius: 999px; padding: 10px 22px; }
.arc-flow .a { color: var(--green); font-size: 20px; }
.arc-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.arc-card { display: flex; flex-direction: column; gap: 14px; padding: 30px; }
.arc-card .ph {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.arc-card h3 { font-size: clamp(21px, 2vw, 26px); text-transform: uppercase; }
.arc-card h3 span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.arc-card .x-list li, .arc-card ul li { font-size: 14.5px; }
.arc-card .plain { list-style: none; display: grid; gap: 9px; }
.arc-card .plain li { position: relative; padding-left: 24px; font-size: 14.5px; }
.arc-card .plain li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad);
}
.arc-card .phone-frame { margin-top: 8px; max-width: 210px; }
.arc-note { text-align: center; margin-top: 30px; color: var(--muted); font-size: 15px; }

/* ---------- objectives ---------- */

.obj-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.obj-card { padding: 28px 24px; }
.obj-card .n {
  font-size: 30px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 10px;
}
.obj-card h4 { font-size: 16px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; }
.obj-card p { font-size: 14px; color: var(--body); }

/* ---------- campaigns ---------- */

.bmw-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-bottom: 22px; }
.bmw-card { text-align: center; padding: 30px 22px; }
.bmw-card .aud {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.bmw-card p { font-size: clamp(17px, 1.7vw, 21px); font-weight: 800; color: var(--ink); line-height: 1.3; }

.celebrate-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.celebrate-list { list-style: none; display: grid; gap: 12px; }
.celebrate-list li { position: relative; padding-left: 30px; font-size: 16.5px; color: var(--body); }
.celebrate-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--grad);
  transform: rotate(45deg);
}

.compare-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.compare-card { overflow: clip; padding: 0; display: grid; grid-template-rows: auto 1fr; }
.compare-card .old { padding: 24px 26px 20px; background: var(--wash); border-bottom: 1px solid var(--line); }
.compare-card .old h5, .compare-card .new h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.compare-card .old h5 { color: var(--faint); }
.compare-card .old p { color: var(--muted); font-size: 15px; }
.compare-card .new { padding: 24px 26px 26px; background: var(--deep); position: relative; overflow: clip; }
.compare-card .new::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 100% at 90% 0%, rgba(83, 200, 200, .25), transparent 60%);
}
.compare-card .new > * { position: relative; }
.compare-card .new h5 { color: var(--teal); }
.compare-card .new p { color: #fff; font-size: 17px; font-weight: 700; }
.compare-note { text-align: center; margin-top: 26px; font-size: 15.5px; color: var(--body); }

.janoburst {
  text-align: center;
  margin: 10px 0 34px;
}
.janoburst .line {
  font-size: clamp(30px, 4.6vw, 62px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.04;
}
.jano-phones { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(20px, 3vw, 48px); max-width: 760px; margin: 0 auto 36px; }
.verb-panel { text-align: center; }
.verb-panel .chips { justify-content: center; margin-top: 18px; }

/* ---------- funnel ---------- */

.funnel-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.funnel-stack { display: grid; gap: 10px; }
.funnel-band {
  height: 86px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 15px;
  margin-inline: auto;
  box-shadow: 0 14px 30px rgba(20, 65, 62, .18);
  cursor: pointer;
  border: 0;
  transition: transform .2s, filter .2s;
  width: 100%;
}
.funnel-band:hover { transform: translateY(-2px); filter: brightness(1.06); }
.funnel-band.f1 { background: linear-gradient(112deg, #53C8C8, #47ABA2); }
.funnel-band.f2 { width: 82%; background: linear-gradient(112deg, #47ABA2, #3A8874); }
.funnel-band.f3 { width: 64%; background: linear-gradient(112deg, #3A8874, #27655C); }
.funnel-band.f4 { width: 46%; background: linear-gradient(112deg, #27655C, #14413E); font-size: 13px; }
.funnel-band.active { outline: 3px solid rgba(83, 200, 200, .5); outline-offset: 3px; }
.funnel-detail { position: relative; min-height: 320px; }
.fstage { display: none; }
.fstage.active { display: block; animation: fadein .35s ease; }
.fstage .fjob { font-size: clamp(20px, 2vw, 26px); font-weight: 800; color: var(--ink); margin-bottom: 18px; }
.fstage h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  margin: 18px 0 10px;
}

/* ---------- activation & growth ---------- */

.juu {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 20px 0 26px;
}
.juu .word {
  font-size: clamp(26px, 3.4vw, 46px);
  font-weight: 800;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.juu .a { color: var(--faint); font-size: 26px; font-weight: 800; }

.incentive-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.incentive { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 22px; padding: 32px; align-items: center; }
.incentive .aud {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.incentive h3 { font-size: clamp(20px, 2vw, 27px); text-transform: uppercase; line-height: 1.15; margin-bottom: 12px; }
.incentive p { font-size: 15px; }
.incentive .phone-frame { max-width: 210px; width: 210px; }
.incentive .not-instead { margin-top: 16px; display: grid; gap: 6px; font-size: 14.5px; }
.incentive .not-instead .no { color: var(--faint); text-decoration: line-through; }
.incentive .not-instead .yes { color: var(--ink); font-weight: 700; }

.instore-rows { display: grid; gap: 12px; }
.tp-row {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 190px;
  gap: 20px;
  align-items: center;
  padding: 22px 26px;
}
.tp-row .tp {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .06em;
}
.tp-row .tp .ic {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
}
.tp-row .tp .ic svg { width: 22px; height: 22px; }
.tp-row .play { font-size: 14.5px; color: var(--body); }
.tp-row .play b { display: block; color: var(--ink); }
.tp-row .drives {
  justify-self: end;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--deep);
  background: var(--wash2);
  border-radius: 999px;
  padding: 8px 16px;
  text-align: center;
}
.tp-row .mocknote {
  grid-column: 2 / -1;
  font-size: 12.5px;
  color: var(--muted);
  border-top: 1px dashed var(--line);
  padding-top: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.tp-row .mocknote svg { width: 15px; height: 15px; color: var(--green); flex: 0 0 auto; }

.leader-panel { margin-top: 26px; }
.leader-ui {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  padding: 24px;
  margin-top: 24px;
}
.leader-ui .lhead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.leader-ui .lhead .t { font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); }
.leader-ui .lhead .live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
}
.leader-ui .lhead .live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }
.lrow { display: grid; grid-template-columns: 130px minmax(0, 1fr) 46px; gap: 14px; align-items: center; padding: 7px 0; }
.lrow .s { font-size: 13px; font-weight: 700; color: rgba(255, 255, 255, .85); white-space: nowrap; }
.lrow .bar { height: 10px; border-radius: 999px; background: rgba(255, 255, 255, .12); overflow: clip; }
.lrow .bar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, #53C8C8, #3A8874); width: 0; transition: width 1.2s cubic-bezier(.2, .7, .3, 1); }
.lrow .r { font-size: 12px; font-weight: 700; color: rgba(255, 255, 255, .6); text-align: right; }
.leader-metrics { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.leader-metrics .chip { background: transparent; border-color: rgba(255, 255, 255, .25); color: rgba(255, 255, 255, .85); font-weight: 600; font-size: 12.5px; }
.leader-note { margin-top: 14px; font-size: 12px; color: rgba(255, 255, 255, .55); }

.creator-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: start; }

/* ---------- PR ---------- */

.pr-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.pr-card { display: flex; flex-direction: column; gap: 14px; padding: 30px 26px; }
.pr-card .sn { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--green); }
.pr-card h4 { font-size: 19px; line-height: 1.3; }
.pr-card p { font-size: 14.5px; }
.pr-card .targets { margin-top: auto; display: flex; flex-wrap: wrap; gap: 7px; padding-top: 14px; }
.pr-card .targets .chip { font-size: 12px; padding: 5px 12px; font-weight: 600; border-color: var(--line); color: var(--muted); }

.challenge-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin: 24px 0; }
.challenge-list .cstep {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  padding: 16px;
  font-weight: 700;
  color: #fff;
  font-size: 14.5px;
  text-align: center;
}
.becomes { display: flex; flex-wrap: wrap; gap: 8px; }
.becomes .chip { background: transparent; border-color: rgba(255, 255, 255, .3); color: rgba(255, 255, 255, .9); font-weight: 600; }
.imp-note {
  margin-top: 18px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .65);
  border-left: 3px solid var(--teal);
  padding-left: 14px;
}

/* ---------- content system ---------- */

.chapters { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 10px; }
.chap {
  padding: 20px 14px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform .2s, box-shadow .2s;
}
.chap:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.chap .n {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 6px;
}
.chap h5 { font-size: 13.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink); margin-bottom: 4px; }
.chap p { font-size: 12px; color: var(--muted); }

.ctype-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.ctype { padding: 24px 22px; }
.ctype h4 { font-size: 14px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.ctype p { font-size: 13.5px; color: var(--body); }
.ctype .ex { margin-top: 10px; font-size: 12.5px; color: var(--muted); }
.ctype .ex b { color: var(--green); }

.pillar-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.pillar { padding: 22px; border-left: 4px solid; border-image: var(--grad-v) 1; }
.pillar h5 { font-size: 15px; margin-bottom: 6px; }
.pillar p { font-size: 13px; color: var(--muted); }

.mixflow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: clamp(13px, 1.5vw, 17px);
}
.mixflow .m { background: var(--wash2); color: var(--deep); border-radius: 999px; padding: 10px 20px; }
.mixflow .a { color: var(--green); }

/* ---------- onboarding ---------- */

.onb-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.onb-card { padding: 28px; }
.onb-card h4 { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.onb-card ol { list-style: none; counter-reset: onb; display: grid; gap: 10px; }
.onb-card ol li { counter-increment: onb; position: relative; padding-left: 36px; font-size: 15px; font-weight: 600; color: var(--ink); }
.onb-card ol li::before {
  content: counter(onb, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 11.5px;
  font-weight: 800;
  color: #fff;
  background: var(--grad);
  border-radius: 8px;
  padding: 3px 6px;
}
.habit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.habit-grid .card h4 { font-size: 13px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 8px; }
.habit-grid .card h4 span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.habit-grid .card p { font-size: 14px; color: var(--body); }

/* ---------- data loop ---------- */

.loop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.loop-visual { position: relative; aspect-ratio: 1; max-width: 520px; margin-inline: auto; width: 100%; }
.loop-visual .ring2 {
  position: absolute;
  inset: 11%;
  border: 2px dashed rgba(58, 136, 116, .3);
  border-radius: 50%;
}
.loop-visual .core {
  position: absolute;
  inset: 32%;
  border-radius: 50%;
  background: var(--grad);
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(12px, 1.3vw, 15px);
  letter-spacing: .1em;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(20, 65, 62, .3);
}
.loop-node {
  position: absolute;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--deep);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.loop-node span { color: var(--green); margin-right: 5px; }
.loop-list { list-style: none; display: grid; gap: 0; }
.loop-list li { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 16px; position: relative; padding-bottom: 20px; }
.loop-list li:last-child { padding-bottom: 0; }
.loop-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 42px;
  bottom: 2px;
  width: 2px;
  background: var(--wash2);
}
.loop-list li:last-child::before { display: none; }
.loop-list .n {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}
.loop-list h5 { font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); padding-top: 3px; }
.loop-list p { font-size: 14px; color: var(--muted); }

.overtime { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 40px; }
.overtime .card { padding: 22px; font-size: 14.5px; font-weight: 700; color: var(--ink); text-align: center; }

/* ---------- KPIs ---------- */

.kpi-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.kpi-card { padding: 28px 24px; }
.kpi-card h4 {
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid;
  border-image: var(--grad) 1;
}
.kpi-card ul { list-style: none; display: grid; gap: 9px; }
.kpi-card ul li { position: relative; padding-left: 20px; font-size: 14.5px; color: var(--body); }
.kpi-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad);
}

/* ---------- rollout ---------- */

.phase-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.phase-card { padding: 28px 24px; display: flex; flex-direction: column; gap: 12px; }
.phase-card .pn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.phase-card h4 {
  font-size: 17px;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.phase-card ul { list-style: none; display: grid; gap: 7px; }
.phase-card ul li { position: relative; padding-left: 18px; font-size: 13.5px; color: var(--body); }
.phase-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad);
}

.prio-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.prio { padding: 24px; }
.prio .n {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 8px;
}
.prio h5 { font-size: 15.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink); margin-bottom: 8px; }
.prio p { font-size: 13.5px; color: var(--muted); }

.m90-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.m90 { padding: 30px 26px; }
.m90 .mn {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 14px;
}
.m90 h4 { font-size: 20px; text-transform: uppercase; margin-bottom: 14px; }

/* ---------- closing ---------- */

.closing {
  position: relative;
  background: var(--grad);
  color: #fff;
  padding: clamp(110px, 14vw, 190px) 0 60px;
  overflow: clip;
  text-align: center;
}
.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 70% at 20% 15%, rgba(83, 200, 200, .45) 0%, transparent 60%),
    radial-gradient(60% 80% at 85% 90%, rgba(9, 32, 30, .55) 0%, transparent 62%);
}
.closing .wave-top { position: absolute; top: -1px; left: 0; right: 0; line-height: 0; }
.closing .wave-top svg { width: 100%; height: clamp(40px, 7vw, 105px); display: block; }
.closing .wrap { position: relative; }
.closing h2 {
  color: #fff;
  font-size: clamp(40px, 6.4vw, 92px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: .98;
  margin-bottom: 30px;
}
.closing .helped {
  display: grid;
  gap: 6px;
  margin: 0 auto 36px;
  max-width: 640px;
  font-size: clamp(15px, 1.6vw, 19px);
  color: rgba(255, 255, 255, .85);
}
.closing .punch {
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 10px;
}
.closing .punch .mute { color: rgba(255, 255, 255, .55); }
.closing .final {
  font-size: clamp(17px, 1.8vw, 22px);
  color: rgba(255, 255, 255, .9);
  margin-bottom: 46px;
}
.closing .final b { color: #fff; text-transform: uppercase; font-size: 1.25em; display: block; margin-top: 6px; letter-spacing: .04em; }
.closing-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 36px;
}
.closing-logos img { height: 84px; opacity: .95; }
.closing-logos img.xd { height: 34px; }
.closing-logos .sep { width: 1px; height: 34px; background: rgba(255, 255, 255, .4); }
.closing .followup {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 40px;
}
.closing .credits {
  border-top: 1px solid rgba(255, 255, 255, .2);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .6);
}
.closing .credits a { color: rgba(255, 255, 255, .85); font-weight: 700; }
.toplink {
  position: absolute;
  right: 24px;
  bottom: 100px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .35);
  display: grid;
  place-items: center;
  color: #fff;
  transition: background .2s, transform .2s;
}
.toplink:hover { background: rgba(255, 255, 255, .25); transform: translateY(-3px); }

/* ---------- reveal ---------- */

.rv { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; }
.rv-d2 { transition-delay: .16s; }
.rv-d3 { transition-delay: .24s; }
.rv-d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  .orbit .tile, .orbit .ring, .hero-scroll .dot::after, .leader-ui .lhead .live i { animation: none; }
  * { transition-duration: .01ms !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1120px) {
  .toc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .obj-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kpi-grid, .phase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .chapters { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .ctype-grid, .pillar-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .overtime { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .breaker h2 { white-space: normal; }
}

@media (max-width: 900px) {
  .hero { flex-direction: column; justify-content: center; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; padding-bottom: 40px; }
  .hero-visual { order: 2; margin-top: 28px; }
  .hero-visual img {
    width: auto;
    height: min(38vh, 380px); /* viewport-relative so the phone never slices at the fold */
    max-height: none;
    max-width: 62vw;
  }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-wordmark { margin-left: 0; }
  .hero-house { left: 50%; transform: translateX(-50%); width: 80vw; }
  .hero-partners { position: static; justify-content: center; margin-top: 28px; }
  .hero { padding-bottom: 48px; }
  .hero-scroll { display: none; }

  .shift-grid, .bigidea-grid, .celebrate-grid, .funnel-layout, .loop-layout { grid-template-columns: 1fr; }

  .exists-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .exists-row .ex-card:last-child { grid-column: 1 / -1; }
  .converge { height: 48px; position: relative; }
  .converge svg { display: none; }
  .converge::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    border-radius: 2px;
    background: linear-gradient(180deg, #CBDCD8, #53C8C8, #3A8874);
  }
  .bigidea-grid .visual { order: 2; }
  .matters-stage { grid-template-columns: 1fr; }
  .matters-center { order: 1; margin: 10px 0 30px; }
  .matters-col.left { order: 2; }
  .matters-col.right { order: 3; }
  .matters-col.left .callout { flex-direction: row; text-align: left; }
  .matters-col { gap: 22px; }

  .persona-grid { grid-template-columns: 1fr; }
  .persona-head .pquote { margin-left: 0; }
  .stepstrip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journey { grid-template-columns: 1fr 1fr; }
  .msg-layout { grid-template-columns: 1fr; }
  .msg-nav {
    position: static;
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .msg-nav button { white-space: nowrap; flex: 0 0 auto; }
  .msg-cards { grid-template-columns: 1fr; }
  .arc-grid { grid-template-columns: 1fr; }
  .bmw-grid, .pr-grid, .onb-grid, .habit-grid, .m90-grid { grid-template-columns: 1fr; }
  .compare-grid, .incentive-grid { grid-template-columns: 1fr; }
  .jano-phones, .creative-2up { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 560px; }
  .laptop-base { width: 106%; margin-left: -3%; }
  .challenge-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tp-row { grid-template-columns: 1fr; gap: 12px; }
  .tp-row .drives { justify-self: start; }
  .tp-media { grid-column: 1 / -1; }
  .tp-media img { height: auto; width: 100%; max-width: 320px; }
  .tp-row .mocknote { grid-column: 1 / -1; }
  .creator-grid { grid-template-columns: 1fr; }
  .prio-grid { grid-template-columns: 1fr 1fr; }
  .system-grid { grid-template-columns: 1fr 1fr; }
  .voice-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; gap: 2px; align-self: start; }
  .loop-visual { display: none; }
  .toplink { right: 16px; bottom: 84px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap, .wrap-wide { width: calc(100% - 40px); }
  .nav-logo img { height: 60px; }
  .nav .nav-link { display: none; }
  .toc-grid { grid-template-columns: 1fr; }
  .obj-grid, .kpi-grid, .phase-grid, .prio-grid, .system-grid,
  .ctype-grid, .pillar-grid, .overtime, .journey { grid-template-columns: 1fr; }
  .chapters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stepstrip { grid-template-columns: 1fr; }

  .jano-phones, .creative-2up { grid-template-columns: 1fr; max-width: 300px; }
  .cost-row { grid-template-columns: 1fr; gap: 10px; padding: 22px 20px; }
  .cost-fig.is-note { text-align: left; max-width: none; }
  .cost-fig { white-space: normal; }
  .vplay { width: 50px; height: 50px; }
  .vplay svg { width: 20px; height: 20px; }

  .exists-row { grid-template-columns: 1fr; gap: 10px; }
  .exists-row .ex-card:last-child { grid-column: auto; }
  .ex-card {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 14px;
    padding: 14px 16px;
  }
  .ex-card h4 { flex: 1; }
  .ex-card .tag { margin-top: 0; }
  .hub { font-size: 12.5px; padding: 10px 20px 10px 12px; letter-spacing: .08em; }
  .challenge-list { grid-template-columns: 1fr; }
  .incentive { grid-template-columns: 1fr; }
  .incentive .phone-frame { margin: 0; }
  .hero-tagpill { font-size: 11px; padding: 9px 16px; letter-spacing: .14em; }
  .hero-partners img { height: 58px; }
  .hero-partners img.xd { height: 24px; }
  .breaker .sub { font-size: 15px; }
  .menu-head img { height: 64px; }
  .menu-foot img { height: 44px; }
  .closing-logos img { height: 62px; }
  .closing-logos img.xd { height: 26px; }
  .persona-head { gap: 14px; }
  .next-row { justify-content: stretch; }
  .next-link { width: 100%; justify-content: space-between; }
}
