:root {
  color-scheme: light;
  --ink: #121719;
  --muted: #5c666b;
  --quiet: #879096;
  --line: #dde5e7;
  --paper: #f7f8f6;
  --white: #ffffff;
  --blue: #1769ff;
  --blue-deep: #123f91;
  --green: #0d6f61;
  --amber: #b87b1e;
  --shadow: 0 24px 80px rgba(18, 23, 25, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

.site-header {
  align-items: center;
  background: rgba(247, 248, 246, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(18, 23, 25, 0.08);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto 1fr;
  min-height: 76px;
  padding: 0 clamp(20px, 5vw, 64px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand,
.nav-links,
.hero-actions {
  align-items: center;
  display: flex;
}

.brand {
  font-size: 15px;
  font-weight: 680;
  gap: 10px;
  letter-spacing: 0;
}

.brand-mark {
  background: var(--white);
  border: 1px solid rgba(18, 23, 25, 0.22);
  border-radius: 999px;
  display: inline-flex;
  height: 32px;
  width: 54px;
  align-items: center;
  justify-content: center;
}

.brand-wave svg {
  display: block;
  height: 22px;
  width: 38px;
}

.brand-wave .wave-path {
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-width: 6;
}

.brand-wave .quote-path {
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 6;
}

.brand-wave .quote-second {
  opacity: 0.72;
}

.nav-links {
  color: var(--muted);
  font-size: 14px;
  gap: 28px;
  justify-content: center;
}

.nav-links a,
.nav-cta,
.menu-toggle {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  border: 1px solid rgba(18, 23, 25, 0.2);
  border-radius: 999px;
  font-size: 14px;
  justify-self: end;
  padding: 10px 16px;
}

.menu-toggle {
  align-items: center;
  border: 1px solid rgba(18, 23, 25, 0.16);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: none;
  gap: 4px;
  height: 42px;
  justify-self: end;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.menu-toggle span {
  background: currentColor;
  border-radius: 99px;
  display: block;
  height: 2px;
  width: 16px;
}

.mobile-menu {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(18, 23, 25, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: none;
  grid-column: 1 / -1;
  margin-bottom: 14px;
  padding: 8px;
}

.mobile-menu a {
  border-radius: 6px;
  color: var(--ink);
  display: block;
  font-size: 15px;
  font-weight: 650;
  padding: 12px 14px;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  background: rgba(18, 23, 25, 0.06);
  outline: none;
}

.site-header.menu-open .mobile-menu {
  display: block;
}

.nav-cta:hover,
.menu-toggle:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.hero {
  display: grid;
  gap: clamp(44px, 7vw, 94px);
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  min-height: calc(100vh - 76px);
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 64px) clamp(44px, 7vw, 78px);
}

.hero-copy {
  align-self: center;
  max-width: 760px;
}

.eyebrow,
.section-kicker,
.card-label {
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.11em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 7.4vw, 104px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 28px;
  max-width: 980px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 0;
}

h3 {
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 650;
  line-height: 1.12;
  margin-bottom: 18px;
}

.hero-intro {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  max-width: 710px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 680;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
}

.button.secondary {
  border: 1px solid rgba(18, 23, 25, 0.22);
  color: var(--ink);
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 12px 32px rgba(18, 23, 25, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.signal-panel {
  align-self: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42)),
    radial-gradient(circle at 25% 8%, rgba(23, 105, 255, 0.15), transparent 30%),
    radial-gradient(circle at 70% 90%, rgba(13, 111, 97, 0.13), transparent 26%);
  border: 1px solid rgba(18, 23, 25, 0.1);
  border-radius: 6px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: minmax(280px, 1fr) auto;
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.signal-panel::before {
  background-image:
    linear-gradient(rgba(18, 23, 25, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 23, 25, 0.055) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, black 0%, transparent 83%);
  pointer-events: none;
  position: absolute;
}

.signal-map {
  min-height: 355px;
  position: relative;
}

.radar-panel {
  grid-template-rows: minmax(360px, 1fr) auto;
}

.radar-visual {
  display: grid;
  min-height: 390px;
  place-items: center;
  position: relative;
}

.radar-ring {
  border: 1px solid rgba(18, 23, 25, 0.12);
  border-radius: 50%;
  position: absolute;
}

.ring-one {
  height: 150px;
  width: 150px;
}

.ring-two {
  height: 285px;
  width: 285px;
}

.ring-three {
  height: 425px;
  width: 425px;
}

.radar-sweep {
  background: conic-gradient(from 30deg, rgba(23, 105, 255, 0.24), transparent 32%);
  border-radius: 50%;
  height: 430px;
  position: absolute;
  width: 430px;
}

.radar-center {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-size: 14px;
  font-weight: 760;
  height: 94px;
  justify-content: center;
  position: relative;
  width: 94px;
  z-index: 2;
}

.radar-dot {
  background: var(--blue);
  border: 5px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(23, 105, 255, 0.24);
  height: 18px;
  position: absolute;
  width: 18px;
  z-index: 3;
}

.dot-one { left: 28%; top: 34%; }
.dot-two { right: 26%; top: 44%; }
.dot-three { left: 52%; bottom: 22%; }

.radar-label {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 23, 25, 0.1);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 12px;
  position: absolute;
  z-index: 4;
}

.label-one { left: 14%; top: 25%; }
.label-two { right: 12%; top: 35%; }
.label-three { left: 48%; bottom: 14%; }

.node {
  background: var(--white);
  border: 1px solid rgba(18, 23, 25, 0.18);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(18, 23, 25, 0.08);
  height: 18px;
  position: absolute;
  width: 18px;
  z-index: 2;
}

.node::after {
  background: var(--blue);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 5px;
  position: absolute;
  top: 5px;
  width: 6px;
}

.node-a { left: 12%; top: 24%; }
.node-b { left: 37%; top: 14%; }
.node-c { left: 68%; top: 26%; }
.node-d { left: 21%; top: 62%; }
.node-e { left: 54%; top: 58%; }
.node-f { left: 80%; top: 72%; }

.line {
  background: linear-gradient(90deg, rgba(23, 105, 255, 0.02), rgba(23, 105, 255, 0.8), rgba(13, 111, 97, 0.2));
  height: 1px;
  left: 0;
  position: absolute;
  top: 0;
  transform-origin: left center;
}

.line-a { left: 15%; top: 27%; transform: rotate(-15deg); width: 25%; }
.line-b { left: 40%; top: 18%; transform: rotate(15deg); width: 31%; }
.line-c { left: 23%; top: 64%; transform: rotate(-8deg); width: 33%; }
.line-d { left: 57%; top: 61%; transform: rotate(20deg); width: 26%; }
.line-e { left: 39%; top: 20%; transform: rotate(112deg); width: 44%; }

.insight-stack {
  display: grid;
  gap: 10px;
  padding: 0 22px 22px;
  position: relative;
}

.insight-stack article {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(18, 23, 25, 0.1);
  border-radius: 6px;
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr;
  padding: 17px;
}

.insight-stack span {
  color: var(--quiet);
  font-size: 12px;
  font-weight: 760;
}

.insight-stack p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.insight-stack .selected {
  background: var(--ink);
  border-color: var(--ink);
}

.insight-stack .selected p,
.insight-stack .selected span {
  color: var(--white);
}

.band {
  background: var(--white);
  border-block: 1px solid rgba(18, 23, 25, 0.08);
}

.problem,
.secret-sauce,
.ai-layer,
.method,
.services,
.signature,
.fit,
.insights-strip,
.contact {
  padding: clamp(66px, 9vw, 116px) clamp(20px, 5vw, 64px);
}

.two-column {
  display: grid;
  gap: clamp(28px, 6vw, 76px);
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
}

.text-column {
  align-self: start;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
}

.text-column p:last-child,
.signature-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 820px;
}

.secret-sauce {
  background:
    linear-gradient(180deg, rgba(247, 248, 246, 0.96), rgba(247, 248, 246, 0.98)),
    radial-gradient(circle at 88% 12%, rgba(23, 105, 255, 0.12), transparent 28%);
}

.secret-layout {
  display: grid;
  gap: clamp(34px, 6vw, 76px);
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  margin-top: clamp(30px, 5vw, 58px);
}

.secret-lede {
  color: var(--muted);
  font-size: clamp(19px, 2.1vw, 26px);
  line-height: 1.34;
  margin: 0;
}

.secret-grid {
  display: grid;
  gap: 14px;
}

.secret-grid article {
  background: var(--white);
  border: 1px solid rgba(18, 23, 25, 0.1);
  border-radius: 6px;
  display: grid;
  gap: 20px;
  grid-template-columns: 42px minmax(0, 0.72fr) minmax(220px, 1fr);
  padding: clamp(20px, 3vw, 30px);
}

.secret-grid span {
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.secret-grid h3 {
  font-size: clamp(20px, 2vw, 26px);
  margin: 0;
}

.secret-grid p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}

.ai-layer {
  display: grid;
  gap: clamp(34px, 6vw, 76px);
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
}

.ai-layer-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(18px, 1.9vw, 21px);
  margin: 26px 0 0;
  max-width: 760px;
}

.ai-capabilities {
  align-self: center;
  border-top: 1px solid rgba(18, 23, 25, 0.12);
  display: grid;
}

.ai-capabilities article {
  border-bottom: 1px solid rgba(18, 23, 25, 0.12);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(130px, 0.38fr) minmax(0, 1fr);
  padding: 24px 0;
}

.ai-capabilities span {
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ai-capabilities p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}

.method-flow {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(34px, 6vw, 70px);
}

.flow-step {
  border-left: 1px solid rgba(18, 23, 25, 0.16);
  min-height: 230px;
  padding: 22px 24px 0;
  position: relative;
}

.flow-step:last-child {
  border-right: 1px solid rgba(18, 23, 25, 0.16);
}

.flow-step::before {
  background: var(--blue);
  border-radius: 50%;
  content: "";
  height: 9px;
  left: -5px;
  position: absolute;
  top: 0;
  width: 9px;
}

.flow-step span {
  display: block;
  font-size: clamp(25px, 2.6vw, 36px);
  font-weight: 650;
  margin-bottom: 18px;
}

.flow-step p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
  max-width: 270px;
}

.service-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(34px, 6vw, 66px);
}

.service-card {
  background: #fbfcfb;
  border: 1px solid rgba(18, 23, 25, 0.12);
  border-radius: 6px;
  min-height: 320px;
  padding: clamp(24px, 3.4vw, 36px);
}

.service-card p:not(.card-label) {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}

.signature {
  display: grid;
  gap: clamp(32px, 6vw, 80px);
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.7fr);
}

.signature-copy p {
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  margin-top: 24px;
  max-width: 720px;
}

.deliverables {
  background: transparent !important;
  align-self: center;
  border-block: 1px solid rgba(18, 23, 25, 0.16);
  color: var(--ink);
  counter-reset: deliverable;
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
}

.deliverables p {
  background: transparent !important;
  border-right: 0 !important;
  align-items: center;
  border-bottom: 1px solid rgba(18, 23, 25, 0.1);
  counter-increment: deliverable;
  display: grid;
  gap: 22px;
  grid-template-columns: 44px 1fr;
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 560;
  margin: 0;
  min-height: 72px;
  padding: 18px 0;
}

.deliverables p::before {
  align-items: center;
  border: 1px solid rgba(18, 23, 25, 0.18);
  border-radius: 50%;
  color: var(--blue-deep);
  content: counter(deliverable, decimal-leading-zero);
  display: inline-flex;
  font-size: 11px;
  font-weight: 760;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.deliverables p:last-child {
  border-bottom: 0;
}

.fit-list {
  background: transparent !important;
  border-block: 1px solid rgba(18, 23, 25, 0.14);
  counter-reset: sector;
  display: grid;
  gap: 0 clamp(34px, 6vw, 80px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(34px, 6vw, 64px);
  padding-block: 10px;
}

.fit-list p {
  background: transparent !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-top: 0 !important;
  align-items: center;
  border-bottom: 1px solid rgba(18, 23, 25, 0.09);
  color: var(--ink);
  counter-increment: sector;
  display: grid;
  gap: 18px;
  grid-template-columns: 38px 1fr;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
  margin: 0;
  min-height: 108px;
  padding: 24px 0;
}

.fit-list p::before {
  color: var(--quiet);
  content: counter(sector, decimal-leading-zero);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.fit-list p:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.contact {
  background:
    linear-gradient(rgba(18, 23, 25, 0.84), rgba(18, 23, 25, 0.84)),
    linear-gradient(135deg, rgba(23, 105, 255, 0.35), rgba(13, 111, 97, 0.35));
  color: var(--white);
  display: grid;
  gap: clamp(30px, 6vw, 76px);
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.62fr);
  min-height: 440px;
  scroll-margin-top: 82px;
}

section[id] {
  scroll-margin-top: 82px;
}

.contact .eyebrow {
  color: #9fc2ff;
}

.contact h2 {
  max-width: 900px;
  margin-bottom: 34px;
}

.contact .button.primary {
  background: var(--white);
  color: var(--ink);
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.8vw, 20px);
  max-width: 680px;
}

.contact-form {
  align-self: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
}

.contact-form label {
  color: rgba(255, 255, 255, 0.86);
  display: grid;
  font-size: 13px;
  font-weight: 760;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  min-height: 46px;
  padding: 12px 13px;
  width: 100%;
}

.contact-form textarea {
  min-height: 112px;
  resize: vertical;
}

.contact-form .form-note {
  color: rgba(255, 255, 255, 0.62);
}

.form-honeypot {
  display: none;
}

.about-hero {
  padding: clamp(66px, 9vw, 116px) clamp(20px, 5vw, 64px);
}

.about-hero h1 {
  max-width: 1100px;
}

.about-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  max-width: 820px;
}

.entity-summary {
  border-block: 1px solid rgba(18, 23, 25, 0.14);
  margin-top: clamp(30px, 5vw, 58px);
  max-width: 980px;
  padding-block: 28px;
}

.entity-summary p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
  margin: 0;
}

.podcast-strip,
.podcast-cta,
.podcast-hero,
.guest-section,
.waitlist-hero {
  padding: clamp(66px, 9vw, 116px) clamp(20px, 5vw, 64px);
}

.podcast-strip {
  align-items: center;
  background: var(--paper);
  border-top: 1px solid rgba(18, 23, 25, 0.08);
  display: grid;
  gap: clamp(24px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) auto;
}

.podcast-strip h2 {
  margin-bottom: 14px;
}

.podcast-strip p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  margin: 0;
  max-width: 760px;
}

.podcast-cta {
  align-items: center;
  background:
    linear-gradient(rgba(18, 23, 25, 0.84), rgba(18, 23, 25, 0.84)),
    linear-gradient(135deg, rgba(23, 105, 255, 0.35), rgba(13, 111, 97, 0.35));
  color: var(--white);
  display: grid;
  gap: clamp(24px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) auto;
}

.podcast-cta .eyebrow {
  color: #9fc2ff;
}

.podcast-cta h2 {
  margin: 0;
  max-width: 960px;
}

.podcast-cta .button.primary {
  background: var(--white);
  color: var(--ink);
}

.insights-strip {
  display: grid;
  gap: clamp(28px, 5vw, 54px);
}

.insights-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.insights-grid.large {
  margin-top: clamp(34px, 6vw, 66px);
}

.insight-card {
  background: #fbfcfb;
  border: 1px solid rgba(18, 23, 25, 0.12);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: clamp(24px, 3.4vw, 36px);
}

.insight-card h3 {
  font-size: clamp(22px, 2.25vw, 32px);
}

.insight-card p:not(.card-label) {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 26px;
}

.insight-card a {
  border-top: 1px solid rgba(18, 23, 25, 0.12);
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
  margin-top: auto;
  padding-top: 18px;
}

.insight-card a:hover {
  color: var(--blue-deep);
}

.feature-card {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.feature-card .card-label,
.feature-card a {
  color: #9fc2ff;
}

.feature-card p:not(.card-label) {
  color: rgba(255, 255, 255, 0.72);
}

.feature-card a {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.insights-hero,
.insights-index,
.article-hero,
.editorial-cta {
  padding: clamp(66px, 9vw, 116px) clamp(20px, 5vw, 64px);
}

.insights-hero h1,
.article-hero h1 {
  max-width: 1120px;
}

.insights-hero p:not(.eyebrow),
.article-hero > p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  max-width: 820px;
}

.editorial-cta {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: clamp(24px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) auto;
}

.editorial-cta .eyebrow {
  color: #9fc2ff;
}

.editorial-cta h2 {
  margin-bottom: 20px;
  max-width: 900px;
}

.editorial-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.8vw, 20px);
  margin: 0;
  max-width: 760px;
}

.editorial-cta .button.primary {
  background: var(--white);
  color: var(--ink);
}

.article-page {
  background: var(--paper);
}

.article-hero {
  border-bottom: 1px solid rgba(18, 23, 25, 0.08);
}

.article-back {
  color: var(--muted);
  display: inline-flex;
  font-size: 14px;
  font-weight: 760;
  margin-bottom: 32px;
}

.article-back:hover {
  color: var(--ink);
}

.article-meta {
  border-top: 1px solid rgba(18, 23, 25, 0.14);
  color: var(--quiet);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 760;
  gap: 12px 22px;
  margin-top: 34px;
  max-width: 820px;
  padding-top: 18px;
}

.article-body {
  background: var(--white);
  border-inline: 1px solid rgba(18, 23, 25, 0.08);
  margin: 0 auto;
  max-width: 880px;
  padding: clamp(44px, 7vw, 78px) clamp(20px, 5vw, 72px);
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.58;
}

.article-body p {
  margin-bottom: 24px;
}

.article-body h2 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(25px, 2.7vw, 36px);
  font-weight: 720;
  line-height: 1.12;
  margin: 54px 0 18px;
}

.article-callout {
  background: var(--ink);
  border-radius: 8px;
  margin-top: 48px;
  padding: clamp(24px, 4vw, 36px);
}

.article-callout p {
  color: var(--white);
  font-size: clamp(19px, 2.1vw, 24px);
  line-height: 1.42;
  margin: 0;
}

.podcast-hero {
  display: grid;
  gap: clamp(36px, 6vw, 84px);
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.62fr);
  min-height: calc(100vh - 76px);
}

.podcast-hero-copy {
  align-self: center;
  max-width: 940px;
}

.podcast-hero-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  max-width: 760px;
}

.podcast-card {
  align-self: center;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--white);
  min-height: 520px;
  padding: clamp(24px, 4vw, 44px);
}

.podcast-label {
  color: #9fc2ff;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.11em;
  margin-bottom: clamp(40px, 7vw, 84px);
  text-transform: uppercase;
}

.podcast-art {
  border-block: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 8px;
  margin-bottom: 32px;
  padding-block: 28px;
}

.podcast-art span,
.podcast-art strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 500;
  line-height: 0.94;
}

.podcast-art strong {
  color: #9fc2ff;
}

.podcast-card > p:not(.podcast-label) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  margin: 0;
}

.platforms {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 30px;
  padding-top: 22px;
}

.platforms p {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.platform {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 14px;
  font-weight: 720;
  gap: 8px;
  min-height: 42px;
  padding: 8px 12px;
}

.platform svg {
  fill: none;
  height: 24px;
  width: 24px;
}

.platform.spotify svg circle {
  fill: #1db954;
  stroke: none;
}

.platform.spotify svg path {
  stroke: #08110c;
  stroke-linecap: round;
  stroke-width: 2.1;
}

.platform.amazon svg path {
  stroke: #8dc7ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.podcast-themes {
  padding: clamp(66px, 9vw, 116px) clamp(20px, 5vw, 64px);
}

.fit-list.compact p {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(20px, 2.4vw, 30px);
}

.waitlist-hero,
.waitlist-embed {
  display: grid;
  gap: clamp(34px, 7vw, 92px);
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.62fr);
  min-height: calc(100vh - 76px);
}

.waitlist-embed {
  min-height: auto;
  padding: clamp(66px, 9vw, 116px) clamp(20px, 5vw, 64px);
}

.waitlist-copy {
  align-self: center;
  max-width: 860px;
}

.waitlist-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  max-width: 720px;
}

.waitlist-form {
  align-self: center;
  background: var(--white);
  border: 1px solid rgba(18, 23, 25, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
}

.waitlist-form label {
  color: var(--ink);
  display: grid;
  font-size: 13px;
  font-weight: 760;
  gap: 8px;
}

.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
  appearance: none;
  background: #fbfcfb;
  border: 1px solid rgba(18, 23, 25, 0.16);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  min-height: 46px;
  padding: 12px 13px;
  width: 100%;
}

.waitlist-form textarea {
  min-height: 112px;
  resize: vertical;
}

.form-note {
  color: var(--quiet);
  font-size: 13px;
  margin: 0;
}

.site-footer {
  align-items: center;
  border-top: 1px solid rgba(18, 23, 25, 0.08);
  color: var(--muted);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 64px);
}

.site-footer p {
  color: var(--ink);
  font-weight: 720;
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.site-footer a:hover {
  color: var(--ink);
}

.privacy-content {
  display: grid;
  gap: 34px;
  max-width: 980px;
  padding: 0 clamp(20px, 5vw, 64px) clamp(66px, 9vw, 116px);
}

.policy-block {
  border-top: 1px solid rgba(18, 23, 25, 0.12);
  padding-top: 28px;
}

.policy-block h2 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 720;
  line-height: 1.12;
  margin-bottom: 14px;
}

.policy-block p,
.policy-block li {
  color: var(--muted);
  font-size: 17px;
}

.policy-block ul {
  margin: 0;
  padding-left: 20px;
}

.cookie-banner {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(18, 23, 25, 0.12);
  border-radius: 8px;
  bottom: 18px;
  box-shadow: var(--shadow);
  display: none;
  gap: 18px;
  grid-template-columns: 1fr auto;
  left: 18px;
  max-width: 760px;
  padding: 18px;
  position: fixed;
  right: 18px;
  z-index: 30;
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-banner p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.cookie-banner strong {
  color: var(--ink);
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.cookie-actions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.cookie-actions button,
.cookie-actions a {
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 680;
  min-height: 40px;
  padding: 9px 14px;
}

.cookie-actions button {
  border: 1px solid rgba(18, 23, 25, 0.2);
  cursor: pointer;
}

.cookie-actions .accept-cookies {
  background: var(--ink);
  color: var(--white);
}

.cookie-actions .reject-cookies {
  background: transparent;
  color: var(--ink);
}

.cookie-actions a {
  align-items: center;
  border: 1px solid rgba(18, 23, 25, 0.16);
  color: var(--ink);
  display: inline-flex;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .hero,
  .two-column,
  .secret-layout,
  .ai-layer,
  .signature,
  .contact,
  .podcast-strip,
  .podcast-cta,
  .podcast-hero,
  .editorial-cta,
  .waitlist-hero {
    grid-template-columns: 1fr;
  }

  .waitlist-embed {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 42px;
    min-height: auto;
  }

  .hero-copy {
    max-width: 820px;
  }

  .signal-panel {
    align-self: stretch;
    max-width: 760px;
    min-height: 560px;
    width: 100%;
  }

  .method-flow,
  .service-grid,
  .insights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fit-list {
    grid-template-columns: 1fr;
  }

  .fit-list p:nth-last-child(2) {
    border-bottom: 1px solid rgba(18, 23, 25, 0.09);
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .brand {
    font-size: 14px;
    gap: 8px;
    min-width: 0;
  }

  .brand-mark {
    height: 28px;
    width: 48px;
  }

  .brand-wave svg {
    height: 19px;
    width: 34px;
  }

  .nav-cta {
    display: none;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-actions button,
  .cookie-actions a {
    justify-content: center;
    width: 100%;
  }

  .hero,
  .problem,
  .secret-sauce,
  .ai-layer,
  .method,
  .services,
  .signature,
  .fit,
  .insights-strip,
  .contact,
  .about-hero,
  .insights-hero,
  .insights-index,
  .article-hero,
  .editorial-cta,
  .podcast-strip,
  .podcast-cta,
  .podcast-hero,
  .podcast-themes,
  .guest-section,
  .waitlist-hero {
    padding-inline: 16px;
  }

  .hero {
    gap: 30px;
    padding-top: 44px;
    padding-bottom: 42px;
  }

  .podcast-hero,
  .waitlist-hero {
    min-height: auto;
    padding-top: 44px;
  }

  .waitlist-embed {
    padding-inline: 16px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 54px);
    line-height: 0.96;
    margin-bottom: 22px;
  }

  h2 {
    font-size: clamp(33px, 10.5vw, 46px);
    line-height: 1.04;
  }

  h3 {
    font-size: 22px;
  }

  .eyebrow,
  .section-kicker,
  .card-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
  }

  .hero-intro,
  .text-column,
  .signature-copy p,
  .ai-layer-copy p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 28px;
  }

  .button {
    min-height: 50px;
    width: 100%;
  }

  .signal-panel {
    border-radius: 6px;
    box-shadow: 0 18px 48px rgba(18, 23, 25, 0.08);
    min-height: auto;
  }

  .radar-panel {
    grid-template-rows: 310px auto;
  }

  .radar-visual {
    min-height: 310px;
  }

  .ring-three {
    height: 300px;
    width: 300px;
  }

  .radar-sweep {
    height: 306px;
    width: 306px;
  }

  .ring-two {
    height: 205px;
    width: 205px;
  }

  .ring-one {
    height: 110px;
    width: 110px;
  }

  .radar-center {
    font-size: 12px;
    height: 76px;
    width: 76px;
  }

  .radar-dot {
    border-width: 4px;
    height: 16px;
    width: 16px;
  }

  .radar-label {
    display: none;
  }

  .insight-stack {
    gap: 8px;
    padding: 0 12px 12px;
  }

  .insight-stack article {
    gap: 10px;
    padding: 14px;
  }

  .insight-stack p {
    font-size: 13px;
  }

  .method-flow,
  .service-grid,
  .insights-grid,
  .secret-grid article,
  .ai-capabilities article,
  .fit-list {
    grid-template-columns: 1fr;
  }

  .flow-step {
    border-right: 1px solid rgba(18, 23, 25, 0.16);
    min-height: auto;
    padding: 20px 18px 34px;
  }

  .flow-step span {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .flow-step p {
    max-width: none;
  }

  .secret-layout,
  .ai-layer,
  .signature {
    gap: 28px;
  }

  .secret-grid article {
    gap: 12px;
    padding: 20px;
  }

  .ai-capabilities article {
    gap: 8px;
    padding: 20px 0;
  }

  .service-card {
    min-height: auto;
    padding: 22px;
  }

  .insight-card {
    min-height: auto;
    padding: 22px;
  }

  .article-body {
    border-inline: 0;
    padding-inline: 18px;
  }

  .deliverables p {
    gap: 14px;
    grid-template-columns: 38px 1fr;
    min-height: auto;
    padding: 16px 0;
  }

  .deliverables p::before {
    height: 30px;
    width: 30px;
  }

  .fit-list p {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 21px;
    grid-template-columns: 34px 1fr;
    min-height: auto;
    padding: 20px 0;
  }

  .fit-list p:nth-last-child(2) {
    border-bottom: 1px solid rgba(18, 23, 25, 0.09);
  }

  .contact {
    min-height: 360px;
  }

  .contact-copy h2 {
    margin-bottom: 18px;
  }

  .contact-form,
  .waitlist-form {
    max-width: 100%;
  }

  .contact-form {
    border-radius: 6px;
    padding: 18px;
  }

  .podcast-card {
    min-height: auto;
    padding: 24px;
  }

  .platform {
    width: 100%;
  }

  .podcast-label {
    margin-bottom: 34px;
  }

  .waitlist-form {
    border-radius: 6px;
    padding: 18px;
  }
}

@media (max-width: 390px) {
  .hero,
  .problem,
  .secret-sauce,
  .ai-layer,
  .method,
  .services,
  .signature,
  .fit,
  .contact {
    padding-inline: 14px;
  }

  h1 {
    font-size: 40px;
  }

  .radar-panel {
    grid-template-rows: 280px auto;
  }

  .radar-visual {
    min-height: 280px;
  }

  .ring-three,
  .radar-sweep {
    height: 278px;
    width: 278px;
  }

  .ring-two {
    height: 188px;
    width: 188px;
  }
}
