/* Self-hosted condensed display font so every device (including Android,
   which has no Arial Narrow) renders the same typography. */
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/barlow-condensed-latin-800-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("assets/fonts/barlow-condensed-latin-900-normal.woff2") format("woff2");
}

:root {
  --ink: #0c1024;
  --ink-2: #171d39;
  --ink-3: #242b4c;
  --paper: #f4f1e9;
  --paper-2: #e9e5db;
  --white: #fffdf8;
  --aqua: #5ce1d4;
  --aqua-dark: #0f968d;
  --coral: #ff7152;
  --orange: #ee7b36;
  --blue: #69c9eb;
  --line: rgba(12, 16, 36, .16);
  --line-light: rgba(255, 255, 255, .18);
  --display: "Barlow Condensed", "Arial Narrow", "Aptos Narrow", "Helvetica Neue", sans-serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1320px;
  --pad: clamp(22px, 4vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--aqua); color: var(--ink); }

.skip-link {
  position: fixed; left: 16px; top: -100px; z-index: 1000;
  padding: 10px 16px; background: var(--white); color: var(--ink);
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: 84px; display: flex; align-items: center;
  background: rgba(12, 16, 36, .84); color: white;
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin: auto; display: flex; align-items: center; gap: 28px;
}
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark { width: 38px; height: 38px; object-fit: contain; flex: 0 0 auto; }
.brand-name {
  font-family: var(--display); font-size: 18px; font-weight: 900;
  letter-spacing: -.01em; line-height: .9; text-transform: uppercase;
}
.brand-name small {
  display: block; color: var(--aqua); font-size: 8px; letter-spacing: .18em;
  margin-top: 5px; font-family: var(--body); font-weight: 700;
}
.site-nav { display: flex; align-items: center; gap: clamp(15px, 1.6vw, 27px); }
.site-nav a {
  font-family: var(--display); text-transform: uppercase; font-weight: 800;
  font-size: 12px; letter-spacing: .08em; position: relative; white-space: nowrap;
}
.site-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: -7px;
  background: var(--aqua); transition: right .25s ease;
}
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
.nav-cta {
  padding: 12px 18px; background: var(--aqua); color: var(--ink);
  border: 1px solid var(--aqua); transition: .25s ease;
}
.nav-cta:hover { background: transparent; color: white; }
.menu-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line-light);
  background: transparent; align-items: center; justify-content: center; cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: ""; display: block; width: 21px; height: 2px; background: white;
  position: absolute; transition: .25s ease;
}
.menu-toggle::before { transform: translateY(-7px); }
.menu-toggle::after { transform: translateY(7px); }
.menu-open .menu-toggle span { opacity: 0; }
.menu-open .menu-toggle::before { transform: rotate(45deg); }
.menu-open .menu-toggle::after { transform: rotate(-45deg); }

main { min-height: 80vh; }
.shell { width: min(var(--max), calc(100% - (var(--pad) * 2))); margin-inline: auto; }
.section { padding: clamp(82px, 10vw, 150px) 0; position: relative; }
.section-tight { padding: clamp(55px, 7vw, 95px) 0; }
.dark { background: var(--ink); color: var(--white); }
.ink-2 { background: var(--ink-2); color: var(--white); }
.aqua { background: var(--aqua); color: var(--ink); }
.paper { background: var(--paper); color: var(--ink); }
.white { background: var(--white); color: var(--ink); }
.coral { background: var(--coral); color: var(--ink); }
.eyebrow {
  margin: 0 0 20px; display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.section-label {
  display: inline-block; padding: 5px 9px; border: 1px solid currentColor;
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .16em;
}
h1, h2, h3, h4 {
  font-family: var(--display); margin: 0 0 .55em; line-height: .95;
  letter-spacing: -.01em; text-wrap: balance;
}
h1 { font-size: clamp(58px, 8.6vw, 132px); font-weight: 900; text-transform: uppercase; }
h2 { font-size: clamp(45px, 6vw, 88px); font-weight: 900; text-transform: uppercase; }
h3 { font-size: clamp(27px, 3vw, 45px); font-weight: 850; }
h4 { font-size: clamp(21px, 2vw, 28px); }
.display-small { font-size: clamp(45px, 6.5vw, 92px); }
.display-medium { font-size: clamp(52px, 7vw, 106px); }
.lede { font-size: clamp(19px, 2vw, 27px); line-height: 1.38; max-width: 780px; }
.prose { max-width: 760px; font-size: clamp(17px, 1.4vw, 20px); }
.muted { opacity: .68; }
.aqua-text { color: var(--aqua); }
.coral-text { color: var(--coral); }
.outline-text { color: transparent; -webkit-text-stroke: 1px currentColor; opacity: .7; }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 16px;
  min-height: 52px; padding: 13px 21px; border: 1px solid currentColor;
  font-family: var(--display); text-transform: uppercase; font-size: 12px;
  font-weight: 900; letter-spacing: .11em; transition: .22s ease;
}
.button::after { content: "\2197"; font-size: 17px; line-height: 1; }
.button:hover { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 currentColor; }
.button-solid { background: var(--aqua); color: var(--ink); border-color: var(--aqua); }
.button-coral { background: var(--coral); color: var(--ink); border-color: var(--coral); }
.button-light { background: var(--white); color: var(--ink); border-color: var(--white); }
.button-ink { background: var(--ink); color: var(--white); border-color: var(--ink); }
.text-link {
  font-family: var(--display); font-size: 12px; font-weight: 900; letter-spacing: .1em;
  text-transform: uppercase; border-bottom: 2px solid currentColor; padding-bottom: 4px;
}

.home-hero {
  min-height: min(930px, 100svh); padding-top: 84px; background: var(--ink); color: white;
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  position: relative; overflow: hidden;
}
.hero-copy {
  padding: clamp(75px, 9vw, 145px) var(--pad) 75px max(var(--pad), calc((100vw - var(--max)) / 2));
  position: relative; z-index: 3; display: flex; flex-direction: column; justify-content: center;
}
.hero-copy h1 { max-width: 840px; font-size: clamp(62px, 7.7vw, 122px); }
.hero-copy h1 span { display: block; color: var(--aqua); }
.hero-copy .lede { max-width: 690px; margin: 8px 0 0; }
.hero-image { position: relative; min-height: 600px; overflow: hidden; }
.hero-image img { height: 100%; object-fit: cover; object-position: 55% center; }
.hero-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 28%),
              linear-gradient(0deg, rgba(12,16,36,.55), transparent 45%);
}
.hero-stamp {
  position: absolute; right: var(--pad); bottom: 40px; z-index: 4;
  width: 178px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.55); border-radius: 50%;
  display: grid; place-items: center; text-align: center; transform: rotate(8deg);
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: 12px; line-height: 1.05; letter-spacing: .07em;
}
.hero-stamp::before { content: ""; position: absolute; inset: 10px; border: 1px dashed var(--aqua); border-radius: 50%; }
.signal-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: .15;
  background-image: linear-gradient(rgba(92,225,212,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(92,225,212,.3) 1px, transparent 1px);
  background-size: 48px 48px; mask-image: linear-gradient(90deg,#000,transparent 72%);
}
.signal-dot {
  width: 7px; height: 7px; background: var(--coral); border-radius: 50%; display: inline-block;
  margin-right: 8px; box-shadow: 0 0 0 7px rgba(255,113,82,.15); animation: pulse 1.8s infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 13px rgba(255,113,82,0); } }

.ticker { overflow: hidden; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.ticker-track {
  width: max-content; display: flex; align-items: center; gap: 34px; padding: 15px 0;
  animation: ticker 28s linear infinite; font-family: var(--display); font-weight: 900;
  text-transform: uppercase; font-size: 13px; letter-spacing: .12em;
}
.ticker-track span::after { content: "+"; color: var(--coral); margin-left: 34px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.door-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
.door {
  min-height: 560px; padding: clamp(35px, 5vw, 72px); position: relative;
  display: flex; flex-direction: column; justify-content: space-between; overflow: hidden;
}
.door + .door { border-left: 1px solid var(--line); }
.door .door-number { font-size: 12px; letter-spacing: .15em; font-weight: 800; }
.door h3 { max-width: 520px; font-size: clamp(42px, 5vw, 72px); text-transform: uppercase; }
.door p { max-width: 570px; font-size: 18px; }
.door-stage { background: var(--ink); color: white; }
.door-board { background: var(--aqua); color: var(--ink); }
.door-arrow { font-size: 44px; align-self: flex-end; transition: .25s; }
.door:hover .door-arrow { transform: translate(8px,-8px); }
.door-pattern {
  position: absolute; width: 340px; height: 340px; right: -110px; top: -110px;
  border: 1px solid currentColor; border-radius: 50%; opacity: .18;
}
.door-pattern::before, .door-pattern::after {
  content: ""; position: absolute; border: 1px solid currentColor; border-radius: 50%;
}
.door-pattern::before { inset: 35px; }
.door-pattern::after { inset: 75px; }

.feature-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; }
.feature-media { min-height: 660px; overflow: hidden; position: relative; }
.feature-media img { height: 100%; object-fit: cover; }
.feature-media img.home-feature-image { object-position: center 25%; }
.feature-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12,16,36,.45), transparent 45%); }
.feature-copy { padding: clamp(50px, 7vw, 105px); display: flex; flex-direction: column; justify-content: center; }
.feature-copy h2 { font-size: clamp(50px, 6vw, 92px); }

.quote {
  margin: 0; font-family: var(--display); font-weight: 800;
  font-size: clamp(28px, 3.5vw, 54px); line-height: 1.08; letter-spacing: 0;
}
.quote::before { content: "\201c"; color: var(--coral); }
.quote cite { display: block; margin-top: 25px; font-family: var(--body); font-size: 13px; line-height: 1.5; font-style: normal; letter-spacing: .04em; text-transform: uppercase; }

.clock-strip {
  background: var(--ink); color: white;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.clock-head { margin-bottom: clamp(28px, 4vw, 52px); }
.clock-head h2 { max-width: 1040px; font-size: clamp(28px, 3.2vw, 48px); line-height: 1; }
.clock-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.clock-card {
  min-height: 320px; padding: clamp(25px, 3.4vw, 46px);
  border: 1px solid rgba(255,255,255,.18);
  background:
    radial-gradient(circle at 18% 16%, rgba(255,42,166,.20), transparent 32%),
    radial-gradient(circle at 86% 12%, rgba(94,211,204,.16), transparent 34%),
    rgba(255,255,255,.045);
  display: flex; flex-direction: column; justify-content: space-between;
}
.clock-number {
  font-family: var(--display); font-size: clamp(42px, 4.4vw, 72px);
  line-height: .88; letter-spacing: -.01em; text-transform: uppercase;
  font-weight: 900; color: var(--aqua);
}
.clock-card:nth-child(2) .clock-number { color: var(--coral); }
.clock-card:nth-child(3) .clock-number { color: var(--yellow); }
.clock-card:nth-child(3) .clock-number { font-size: clamp(34px, 3.55vw, 58px); line-height: .92; }
.clock-card p { margin: 34px 0 0; font-size: clamp(17px, 1.35vw, 20px); line-height: 1.45; }
.clock-note {
  max-width: 1000px; margin: clamp(34px, 4.5vw, 62px) 0 0;
  font-family: var(--display); font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.1; letter-spacing: 0; font-weight: 800;
  color: var(--yellow);
}
.org-case {
  margin-top: clamp(32px, 5vw, 72px);
  padding: clamp(26px, 4vw, 50px);
  border: 1px solid rgba(255,255,255,.18);
  background:
    linear-gradient(135deg, rgba(94,211,204,.12), transparent 45%),
    rgba(255,255,255,.045);
}
.org-case-head {
  display: grid; grid-template-columns: minmax(160px, .32fr) 1fr;
  gap: clamp(24px, 4vw, 56px); align-items: start;
  margin-bottom: clamp(24px, 4vw, 44px);
}
.org-case-head .eyebrow { margin-top: 7px; }
.org-case-head p:last-child {
  margin: 0; max-width: 940px;
  font-family: var(--display); font-size: clamp(24px, 3vw, 46px);
  line-height: 1.08; letter-spacing: 0; font-weight: 800;
}
.org-case-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.org-case-grid article {
  padding: clamp(22px, 3vw, 34px);
  background: var(--paper); color: var(--ink);
}
.org-case-grid h3 {
  margin: 0 0 18px;
  font-size: clamp(26px, 2.7vw, 42px);
  line-height: .95; text-transform: uppercase;
}
.org-case-grid p {
  margin: 0; font-size: 16px; line-height: 1.48;
}
.fit-call {
  display: flex; gap: 24px; align-items: center; justify-content: space-between;
  margin-top: 14px; padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(12,16,36,.5);
}
.fit-call p { margin: 0; max-width: 780px; font-size: clamp(17px, 1.35vw, 20px); }
.fit-call .button { flex: 0 0 auto; }

.proof-band {
  background: var(--aqua); color: var(--ink);
  border-bottom: 1px solid rgba(12,16,36,.16);
}
.proof-head { margin-bottom: clamp(28px, 4vw, 52px); }
.proof-head h2 { max-width: 900px; font-size: clamp(34px, 4.5vw, 66px); }
.proof-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.proof-card {
  margin: 0; min-height: 285px; padding: clamp(25px, 3vw, 38px);
  background: var(--ink); color: var(--white);
  border: 1px solid rgba(255,255,255,.16);
  display: flex; flex-direction: column; justify-content: space-between;
  font-family: var(--display); font-size: clamp(25px, 2.5vw, 38px);
  line-height: 1.05; letter-spacing: 0; font-weight: 800;
}
.proof-card::before {
  content: "\201c"; color: var(--coral); font-size: 60px; line-height: .7;
  margin-bottom: 16px;
}
.proof-card cite {
  display: block; margin-top: 30px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.18);
  font-family: var(--body); font-size: 12px; line-height: 1.45;
  font-style: normal; letter-spacing: .08em; text-transform: uppercase;
  color: var(--aqua);
}
.booking-proof {
  display: block;
}
.booking-proof > p {
  margin: 0 0 clamp(22px, 3vw, 38px); max-width: 900px;
  font-family: var(--display); font-weight: 800;
  font-size: clamp(24px, 2.5vw, 38px); line-height: 1.14; letter-spacing: 0;
}
.compact-quotes { grid-template-columns: repeat(2, 1fr); margin-top: clamp(24px, 4vw, 56px); }
.compact-quotes .proof-card {
  min-height: 220px;
  font-size: clamp(22px, 2vw, 31px);
}
.compact-quotes .proof-card::before { font-size: 44px; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.booking-proof .metric-grid { grid-template-columns: repeat(3, 1fr); }
.metric-card {
  min-height: 230px; padding: clamp(22px, 3vw, 34px);
  background: var(--ink); color: white;
  border: 1px solid rgba(255,255,255,.14);
  display: flex; flex-direction: column; justify-content: space-between;
}
.metric-card strong {
  display: block; font-family: var(--display); font-size: clamp(38px, 5vw, 72px);
  line-height: .86; letter-spacing: -.01em; color: var(--yellow);
}
.metric-card span {
  display: block; margin-top: 14px; font-size: 12px;
  line-height: 1.45; text-transform: uppercase; letter-spacing: .12em; font-weight: 800;
}
.metric-link {
  display: inline-block; margin-top: 20px;
  color: var(--aqua); font-size: 12px; line-height: 1.35;
  text-transform: uppercase; letter-spacing: .1em; font-weight: 900;
  text-decoration: underline; text-underline-offset: 5px;
}
.metric-link:hover { color: var(--yellow); }

.video-frame { position: relative; aspect-ratio: 16/9; background: #050712; overflow: hidden; }
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.video-frame img { height: 100%; object-fit: cover; opacity: .76; transition: .35s; }
.video-frame:hover img { transform: scale(1.025); opacity: .58; }
.play-button {
  position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%);
  width: 92px; height: 92px; border: 1px solid white; border-radius: 50%; background: rgba(12,16,36,.5);
  color: white; display: grid; place-items: center; cursor: pointer; backdrop-filter: blur(8px);
}
.play-button::after { content: ""; border-left: 18px solid white; border-top: 11px solid transparent; border-bottom: 11px solid transparent; margin-left: 5px; }

.book-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(40px, 8vw, 130px); align-items: center; }
.intro-split { display: grid; grid-template-columns: minmax(0,.75fr) minmax(0,1.25fr); gap: clamp(30px,7vw,100px); align-items: end; }
.section-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; }
.book-art { position: relative; padding: 40px; }
.book-art img { max-width: 520px; margin: auto; filter: drop-shadow(25px 30px 30px rgba(12,16,36,.2)); }
.book-art::before { content: ""; position: absolute; inset: 8% 12%; background: var(--orange); border-radius: 50%; opacity: .16; }
.book-copy h2 { font-size: clamp(50px, 6vw, 91px); }
.amazon-availability {
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px; max-width: 360px;
  padding: 8px 0; color: var(--ink); text-align: center;
  font-size: 14px; line-height: 1.3; font-weight: 700;
}
.amazon-availability img {
  width: 112px; height: auto; flex: 0 0 auto;
}
.amazon-availability span { opacity: .74; }
.amazon-availability:hover span { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }

.page-hero {
  padding: clamp(160px, 19vw, 250px) 0 clamp(80px, 10vw, 145px); background: var(--ink); color: white;
  position: relative; overflow: hidden;
}
.page-hero .shell { position: relative; z-index: 2; }
.page-hero h1 { max-width: 1100px; }
.page-hero .lede { max-width: 850px; }
.page-hero-vector { padding-top: clamp(135px, 15vw, 185px); }
.page-hero-vector::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(12,16,36,.96) 37%, rgba(12,16,36,.35) 70%, rgba(12,16,36,.08) 100%);
}
.page-hero-vector .signal-grid { z-index: 0; opacity: .09; mask-image: linear-gradient(90deg,#000,rgba(0,0,0,.8) 55%,transparent 92%); }
.hero-vector-art {
  position: absolute; z-index: 0; width: clamp(560px, 60vw, 860px); height: auto; max-width: none;
  right: -4vw; bottom: -2%; opacity: .52; transform-origin: center;
  filter: saturate(1.15) contrast(1.05) drop-shadow(0 0 24px rgba(255,42,166,.18));
}
.hero-advisory .hero-vector-art { right: -5vw; bottom: -4%; transform: rotate(-2deg); }
.hero-keynotes .hero-vector-art { right: -5vw; bottom: -5%; transform: rotate(-2deg); }
.hero-about .hero-vector-art { right: -7vw; bottom: -4%; transform: rotate(3deg); }
.hero-media { min-height: 680px; display: flex; align-items: center; }
.hero-media .hero-vector-art { right: -2vw; bottom: 50%; transform: translateY(50%); }
.hero-contact .hero-vector-art { right: -6vw; bottom: -5%; transform: rotate(-3deg); }
.hero-advisory .hero-vector-art, .hero-keynotes .hero-vector-art, .hero-about .hero-vector-art, .hero-media .hero-vector-art, .hero-contact .hero-vector-art { opacity: .4; }

.talk { overflow: hidden; }
.talk-media { width: 100%; aspect-ratio: 3 / 2; overflow: hidden; background: var(--ink); }
.talk-media img { height: 100%; object-fit: cover; }
.talk-copy { width: min(1040px, calc(100% - (var(--pad) * 2))); margin-inline: auto; padding: clamp(58px, 7vw, 100px) 0 clamp(82px, 10vw, 145px); }
.talk-copy h2 { font-size: clamp(45px, 5.4vw, 78px); }
.talk-copy > p:not(.talk-tag) { max-width: 850px; font-size: clamp(17px, 1.4vw, 19px); }
.talk-tag { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--aqua-dark); }
.talk-number { font-family: var(--display); font-size: 14px; font-weight: 900; letter-spacing: .15em; }
.talk-copy h4 {
  margin: clamp(40px, 5vw, 64px) 0 0; padding: clamp(26px, 4vw, 42px) clamp(24px, 4vw, 48px) 16px;
  background: var(--ink); color: var(--aqua); border-top: 4px solid var(--aqua);
  font-size: 13px; line-height: 1.2; letter-spacing: .16em; text-transform: uppercase;
}
.outcome-line {
  padding: 0 clamp(24px, 4vw, 48px) clamp(22px, 3vw, 34px);
  background: var(--ink); color: var(--white);
  font-size: clamp(18px, 1.6vw, 22px); line-height: 1.45;
}
.outcome-line strong { color: var(--yellow); }
.takeaways {
  list-style: none; padding: 0 clamp(24px, 4vw, 48px) clamp(26px, 4vw, 42px); margin: 0 0 38px;
  background: var(--ink); color: white; border-top: 1px solid var(--line-light);
}
.takeaways li { padding: 16px 0 16px 34px; border-bottom: 1px solid var(--line-light); position: relative; }
.takeaways li::before { content: "→"; color: var(--coral); position: absolute; left: 0; font-weight: 900; }
.takeaways li:last-child { border-bottom: 0; }
.takeaways strong { color: var(--aqua); }

.offering-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.offering {
  min-height: 570px; padding: clamp(36px, 5vw, 70px); border: 1px solid var(--line);
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.offering:first-child { background: var(--aqua); }
.offering:nth-child(2) { background: var(--ink); color: white; }
.offering.diagnostic-offer {
  grid-column: 1 / -1; min-height: auto;
  background: var(--white); color: var(--ink);
}
.offering .button { margin-top: auto; align-self: flex-start; }
.offering .section-label { margin-bottom: clamp(18px, 2vw, 28px); }
.offering h3 { font-size: clamp(40px, 4vw, 62px); text-transform: uppercase; }
.offering p { max-width: 580px; font-size: 18px; }
.advisory-photo-grid { display: grid; grid-template-columns: 1.45fr .55fr; grid-template-rows: 1fr 1fr; gap: 12px; height: 650px; }
.advisory-photo-grid img { height: 100%; object-fit: cover; min-height: 0; }
.advisory-photo-grid .panel-photo { grid-row: 1 / 3; object-position: 55% center; }
.advisory-photo-grid .briefing-photo { object-position: center 35%; }
.advisory-photo-grid .brandwatch-photo { object-position: 42% center; }

.about-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(45px, 8vw, 120px); align-items: start; }
.portrait-wrap { position: sticky; top: 120px; }
.portrait-wrap img { aspect-ratio: 2/3; object-fit: cover; }
.portrait-caption { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 11px; text-transform: uppercase; letter-spacing: .13em; }
.bio-copy p { font-size: clamp(18px, 1.5vw, 21px); }
.bio-copy p:first-of-type { font-size: clamp(23px, 2.5vw, 35px); line-height: 1.35; font-weight: 600; }
.credential-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line-light); }
.credential-list li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line-light); }
.credential-list b { color: var(--aqua); }
.quote-stack { display: grid; gap: 55px; }
.quote-stack .quote { padding-bottom: 55px; border-bottom: 1px solid rgba(12,16,36,.22); }
.quote-stack .quote:last-child { border-bottom: 0; padding-bottom: 0; }
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line-light); margin: 45px 0; }
.stat { padding: clamp(28px,4vw,55px); }
.stat + .stat { border-left: 1px solid var(--line-light); }
.stat-number { font-family: var(--display); font-size: clamp(60px,8vw,110px); font-weight: 900; line-height: .85; color: var(--aqua); }
.stat-label { margin-top: 15px; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; }
.stage-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.stage-cloud span { padding: 11px 14px; border: 1px solid var(--line-light); font-size: 13px; }
.stage-cloud b { color: var(--aqua); }

.media-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 20px; }
.media-card { grid-column: span 4; border: 1px solid var(--line); background: var(--white); }
.media-card.featured { grid-column: span 8; }
.media-card .card-image { aspect-ratio: 16/10; overflow: hidden; background: var(--ink); }
.media-card .card-image img { height: 100%; object-fit: cover; transition: .35s; }
.media-card:hover .card-image img { transform: scale(1.025); opacity: .85; }
.media-card .card-copy { padding: 24px; }
.media-card h3 { font-size: 26px; line-height: 1.05; }
.media-type { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; font-weight: 800; color: var(--aqua-dark); }
.press-list { border-top: 1px solid var(--line); }
.press-item { display: grid; grid-template-columns: 180px 1fr 40px; gap: 30px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--line); }
.press-item h3 { margin: 0; font-size: clamp(24px,2.5vw,36px); }
.press-item .arrow { font-size: 26px; }

.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 9vw, 150px); align-items: start; }
.contact-aside { position: sticky; top: 120px; }
.response-promise { font-size: 18px; line-height: 1.45; margin: 18px 0 30px; }
.contact-detail { border-top: 1px solid var(--line); padding: 18px 0; }
.contact-detail small { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .15em; opacity: .65; }
.contact-detail a { font-weight: 700; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field label { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%; border: 0; border-bottom: 1px solid var(--ink); background: transparent;
  border-radius: 0; padding: 13px 0; outline: none; color: var(--ink);
}
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--aqua-dark); box-shadow: 0 2px 0 var(--aqua-dark); }
.form-note { grid-column: 1/-1; font-size: 12px; opacity: .62; }
.form-status { grid-column: 1/-1; padding: 14px 18px; background: var(--aqua); display: none; }
.form-status.visible { display: block; }
.form-status.error { background: var(--coral); }

/* Book landing page */
.book-hero { min-height: min(900px, 100svh); padding: 150px 0 100px; background: var(--ink-2); color: var(--white); position: relative; overflow: hidden; }
.book-hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); align-items: center; gap: clamp(40px, 7vw, 110px); position: relative; z-index: 1; }
.book-hero-art { align-self: end; }
.book-hero-art img { max-height: 640px; object-fit: contain; filter: drop-shadow(0 22px 24px rgba(0,0,0,.25)); }
.book-hero-copy h1 { font-size: clamp(64px, 9vw, 138px); line-height: .82; }
.book-hero-copy h2 { font-size: clamp(34px, 4.6vw, 70px); margin-top: 28px; }
.book-kicker { color: var(--blue); font-family: var(--display); font-size: clamp(23px, 2.5vw, 38px); line-height: 1; font-weight: 900; text-transform: uppercase; }
.book-hero-copy .lede { max-width: 720px; }
.book-formats { font-size: 13px; opacity: .75; }
.book-about-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(45px, 8vw, 120px); align-items: start; }
.book-prose { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.5; }
.book-prose .display-small { font-size: clamp(42px, 5.6vw, 82px); }
.book-quote { font-family: var(--display); font-size: clamp(24px, 2.5vw, 38px); line-height: 1.05; font-weight: 900; }
.book-card { background: var(--blue); color: var(--ink); padding: clamp(30px, 4vw, 58px); border-radius: 0 48px 0 48px; }
.book-card h3 { text-transform: uppercase; color: var(--ink-3); }
.book-card ul { margin: 28px 0 0; padding-left: 20px; font-size: 18px; }
.book-card li { padding: 8px 0 8px 8px; }
.book-card li::marker { color: var(--coral); }
.book-reviews { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 42px; }
.book-review { margin: 0; padding: 28px; background: var(--white); color: var(--ink); border-top: 5px solid var(--coral); }
.book-review span { display: block; color: var(--coral); letter-spacing: .12em; font-size: 20px; line-height: 1; margin-bottom: 14px; }
.book-review strong { display: block; font-size: 18px; line-height: 1.2; }
.book-review p { margin: 14px 0 0; line-height: 1.45; }
.book-fit-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.book-fit-copy { font-size: clamp(20px, 2vw, 28px); line-height: 1.35; }

.cta-band { padding: clamp(72px, 9vw, 130px) 0; background: var(--coral); color: var(--ink); }
.cta-band .shell { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }
.cta-band h2 { margin: 0; max-width: 900px; }

.site-footer { background: var(--ink); color: white; padding: 70px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; padding-bottom: 65px; }
.footer-title { font-family: var(--display); font-size: clamp(40px,5vw,68px); font-weight: 900; line-height: .95; text-transform: uppercase; max-width: 620px; }
.newsletter { align-self: end; }
.newsletter p { max-width: 520px; }
.hubspot-newsletter {
  margin-top: 22px; padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255,255,255,.18);
  background: var(--paper);
  color: var(--ink);
}
.hubspot-newsletter .hs-form-frame,
.hubspot-newsletter iframe {
  min-height: 520px;
  background: var(--paper) !important;
}
.hubspot-newsletter,
.hubspot-newsletter .hs-form,
.hubspot-newsletter .hs-form * {
  font-family: var(--body) !important;
}
.hubspot-newsletter .hs-form > fieldset {
  max-width: none !important;
}
.hubspot-newsletter label,
.hubspot-newsletter legend,
.hubspot-newsletter .hs-richtext,
.hubspot-newsletter .hs-richtext p,
.hubspot-newsletter .hs-form-field > label,
.hubspot-newsletter .hs-form-booleancheckbox-display span,
.hubspot-newsletter .legal-consent-container,
.hubspot-newsletter .legal-consent-container p,
.hubspot-newsletter .legal-consent-container div,
.hubspot-newsletter .hs_error_rollup,
.hubspot-newsletter .hs-error-msgs label {
  color: rgba(255,255,255,.88) !important;
}
.hubspot-newsletter .hs-richtext:first-child,
.hubspot-newsletter .hs-richtext:first-child p {
  color: white !important;
  font-weight: 800 !important;
}
.hubspot-newsletter .hs-form-required,
.hubspot-newsletter .hs-error-msgs label {
  color: var(--coral) !important;
}
.hubspot-newsletter input[type="text"],
.hubspot-newsletter input[type="email"],
.hubspot-newsletter input[type="tel"],
.hubspot-newsletter select,
.hubspot-newsletter textarea {
  width: 100% !important;
  min-height: 46px !important;
  background: white !important;
  color: var(--ink) !important;
  border: 1px solid rgba(255,255,255,.6) !important;
  border-radius: 0 !important;
  padding: 11px 12px !important;
}
.hubspot-newsletter input[type="checkbox"] {
  width: 18px !important; height: 18px !important;
  accent-color: var(--aqua);
}
.hubspot-newsletter .hs-button,
.hubspot-newsletter input[type="submit"] {
  margin-top: 12px !important;
  border: 1px solid var(--aqua) !important;
  background: var(--aqua) !important;
  color: var(--ink) !important;
  border-radius: 999px !important;
  padding: 13px 20px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
  cursor: pointer !important;
}
.hubspot-newsletter .hs-button:hover,
.hubspot-newsletter input[type="submit"]:hover {
  background: var(--yellow) !important;
  border-color: var(--yellow) !important;
}
.footer-bottom { border-top: 1px solid var(--line-light); padding-top: 25px; display: flex; flex-wrap: wrap; gap: 20px; align-items: center; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; margin-left: auto; }
.footer-links a:hover { color: var(--aqua); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .site-nav { position: fixed; inset: 84px 0 auto 0; width: 100vw; height: calc(100dvh - 84px); z-index: 120; overflow-y: auto; background-color: #0c1024; padding: 45px var(--pad); display: flex; flex-direction: column; align-items: flex-start; gap: 23px; transform: translateX(100%); transition: .3s ease; }
  .menu-open .site-nav { transform: translateX(0); }
  .site-nav a { font-size: 22px; }
  .site-nav .nav-cta { margin-top: 12px; }
  .menu-toggle { display: flex; }
  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { min-height: 720px; padding-bottom: 100px; background: linear-gradient(90deg,var(--ink) 15%,rgba(12,16,36,.75)); }
  .hero-image { position: absolute; inset: 84px 0 0 28%; z-index: 0; }
  .hero-image::after { background: linear-gradient(90deg,var(--ink),rgba(12,16,36,.25)); }
  .hero-stamp { display: none; }
  .clock-grid { grid-template-columns: 1fr; }
  .clock-card { min-height: auto; }
  .org-case-head, .org-case-grid { grid-template-columns: 1fr; }
  .fit-call { align-items: flex-start; flex-direction: column; }
  .booking-proof { display: block; }
  .metric-grid { grid-template-columns: 1fr; }
  .booking-proof .metric-grid { grid-template-columns: 1fr; }
  .metric-card { min-height: auto; }
  .offering-grid { grid-template-columns: 1fr; }
  .offering { min-height: 520px; }
  .media-card, .media-card.featured { grid-column: span 6; }
}

@media (max-width: 760px) {
  :root { --pad: 20px; }
  html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
  .site-header { height: 72px; }
  .brand-name { font-size: 16px; }
  .brand-mark { width: 31px; height: 31px; }
  .site-nav { inset: 72px 0 auto 0; height: calc(100dvh - 72px); }
  .home-hero { padding-top: 72px; }
  .hero-copy { min-height: 740px; padding-top: 95px; justify-content: flex-end; background: linear-gradient(0deg,var(--ink) 20%,rgba(12,16,36,.25) 72%); }
  .hero-copy, .hero-copy h1, .hero-copy .lede { min-width: 0; max-width: 100%; }
  .hero-copy { width: 100%; max-width: 100vw; overflow: hidden; padding-left: var(--pad); padding-right: var(--pad); }
  .hero-copy h1 { width: 100%; max-width: calc(100vw - (var(--pad) * 2)); font-size: clamp(44px, 13vw, 72px); overflow-wrap: normal; word-break: normal; }
  .hero-copy .lede { width: 100%; max-width: calc(100vw - (var(--pad) * 2)); font-size: 18px; overflow-wrap: normal; }
  .hero-image { inset: 72px 0 30% 0; min-height: 0; }
  .hero-image img { object-position: 58% center; }
  .hero-image::after { background: linear-gradient(0deg,var(--ink),transparent 60%); }
  .button-row { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .door-grid { grid-template-columns: 1fr; }
  .door { min-height: 500px; }
  .door + .door { border-left: 0; border-top: 1px solid var(--line); }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-card { min-height: 0; }
  .booking-proof > p { font-size: clamp(24px, 8vw, 36px); }
  .feature-grid, .book-grid, .about-grid, .contact-layout { grid-template-columns: 1fr; }
  .intro-split { grid-template-columns: 1fr; align-items: start; }
  .section-head { display: grid; align-items: start; }
  .feature-media { min-height: 420px; }
  .feature-media img.home-feature-image { object-position: center 20%; }
  .book-art { order: 2; padding: 0 22px; }
  .page-hero { padding-top: 145px; }
  .page-hero h1 { font-size: clamp(56px,18vw,84px); }
  .page-hero-vector { padding-top: 122px; }
  .page-hero-vector::after { background: linear-gradient(90deg, var(--ink) 0%, rgba(12,16,36,.93) 62%, rgba(12,16,36,.38) 100%); }
  .hero-vector-art { width: 540px; right: -90px; bottom: -3%; opacity: .38; }
  .hero-advisory .hero-vector-art, .hero-keynotes .hero-vector-art, .hero-about .hero-vector-art, .hero-media .hero-vector-art, .hero-contact .hero-vector-art { opacity: .28; }
  .hero-advisory .hero-vector-art { width: 560px; right: -110px; bottom: -3%; }
  .hero-keynotes .hero-vector-art { right: -80px; bottom: -3%; }
  .hero-about .hero-vector-art { right: -70px; bottom: -1%; }
  .hero-contact .hero-vector-art { width: 560px; right: -90px; bottom: -4%; }
  .hero-media { min-height: 590px; }
  .hero-media .hero-vector-art { right: -75px; bottom: 50%; transform: translateY(50%); }
  .advisory-photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 220px; height: auto; }
  .advisory-photo-grid .panel-photo { grid-column: 1 / -1; grid-row: auto; }
  .portrait-wrap, .contact-aside { position: relative; top: auto; }
  .stat-row { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line-light); }
  .portrait-wrap img { max-height: 670px; object-position: center 30%; }
  .media-card, .media-card.featured { grid-column: 1/-1; }
  .press-item { grid-template-columns: 1fr 28px; gap: 15px; }
  .press-item .media-type { grid-column: 1/-1; }
  .contact-form { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .cta-band .shell { grid-template-columns: 1fr; }
  .book-hero { min-height: auto; padding: 126px 0 72px; }
  .book-hero-grid, .book-about-grid, .book-fit-grid { grid-template-columns: 1fr; gap: 40px; }
  .book-hero-art { order: 2; }
  .book-hero-art img { max-height: 410px; }
  .book-hero-copy h1 { font-size: clamp(58px, 18vw, 88px); }
  .book-hero-copy h2 { font-size: clamp(32px, 9vw, 52px); }
  .book-reviews { grid-template-columns: 1fr; }
  .book-card { border-radius: 0 30px 0 30px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-links { margin-left: 0; }
}
