@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #f7f9fb;
  --card: #ffffff;
  --hairline: #E3E8EE;
  --border: #D0D8E2;
  --ink: #0c1b2a;
  --navy: #0b3d5c;
  --signal: #0b7fc7;
  --mist: #edf4fa;
  --mist-deep: #e3eef7;
  --ink-soft: #41556b;
  --faint: #8a99a8;
  --up: #0fa958;
  --down: #d93a2b;
  --warning: #e88c30;
  --navy-caption: #8fb4cc;
  --radius: 3px;
  --content-padding: 24px;
  --sans: "Inter", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--mist);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--signal);
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 2px;
}

/* ============ TASK BAR ============ */
.taskbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 52px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 16px;
  z-index: 50;
}

.taskbar-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}

.taskbar-brand:hover {
  text-decoration: none;
}

.taskbar-brand img {
  width: 26px;
  height: 26px;
}

.wordmark-slash {
  color: var(--signal);
}

.taskbar-tabs {
  display: flex;
  gap: 2px;
  height: 100%;
}

.taskbar-tab {
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  border-bottom: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.taskbar-tab.active {
  color: var(--ink);
  border-bottom-color: var(--signal);
}

.taskbar-tab:hover {
  color: var(--ink);
  text-decoration: none;
}

.taskbar-spacer {
  flex: 1;
}

.taskbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.taskbar-menu {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 7px 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink);
}

.taskbar-nav-mobile {
  display: none;
  position: absolute;
  top: 52px;
  left: 0;
  right: 0;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px 16px;
  flex-direction: column;
  gap: 4px;
  z-index: 51;
}

.taskbar.is-open .taskbar-nav-mobile {
  display: flex;
}

.taskbar-nav-mobile a {
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.taskbar-nav-mobile a:last-child {
  border-bottom: none;
}

.btn {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid var(--navy);
  text-decoration: none;
  transition: transform 0.15s;
  display: inline-block;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn.outline {
  background: transparent;
  color: var(--navy);
}

.btn.solid,
.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-signal {
  background: var(--signal);
  color: #fff;
  border-color: var(--signal);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ============ SHELL GRID ============ */
.shell {
  max-width: 1400px;
  margin: 0 auto;
  padding: 76px 16px 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 16px;
  align-items: start;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

/* ============ SURFACES ============ */
.surface {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
}

.surface-navy {
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.surface-navy h2,
.surface-navy p,
.surface-navy blockquote {
  color: #fff;
}

.surface-navy .muted,
.surface-navy .stat-note {
  color: var(--navy-caption);
}

.surface-navy .btn.outline {
  border-color: #fff;
  color: #fff;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--signal);
  text-transform: uppercase;
  margin: 0 0 10px;
}

.surface h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 14px;
}

.surface p {
  margin: 0 0 12px;
}

.muted {
  color: var(--ink-soft);
}

/* ============ BRIEFING ============ */
.briefing {
  padding: 30px 32px;
  position: relative;
}

.briefing-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
  margin-bottom: 18px;
  gap: 12px;
}

.briefing-head .title {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 0;
}

.briefing-mark {
  flex-shrink: 0;
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  margin: 0;
}

.briefing-head .briefing-label,
.briefing-head .briefing-label.eyebrow,
.home-main .briefing-head .briefing-label.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 0;
  padding: 0;
  color: var(--signal);
  text-transform: uppercase;
}

.briefing-typed-wrap {
  overflow: visible;
}

.briefing-typed-wrap.is-scrollable {
  overflow: visible;
}

.briefing.briefing-collapsed .briefing-typed-wrap {
  max-height: none;
}

.briefing.briefing-collapsed #typed .briefing-sentence:not(:first-child) {
  display: none;
}

.briefing-player-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.briefing-read-again {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
}

.briefing-read-again:hover {
  color: var(--signal);
}

.briefing-static {
  margin-bottom: 8px;
}

.briefing-static p {
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 8px;
}

.briefing-label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}

.briefing-date {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-soft);
  white-space: nowrap;
}

.briefing-play {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 16px;
  background: var(--navy);
  color: var(--paper);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  margin-bottom: 0;
}

.briefing-play:hover {
  transform: translateY(-1px);
}

.briefing-progress-track {
  flex: 1 1 100%;
  min-width: 140px;
  height: 2px;
  background: var(--hairline);
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}

.briefing-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--signal);
  border-radius: var(--radius);
  transition: width 0.1s linear;
}

.briefing-skip {
  position: absolute;
  top: 30px;
  right: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
}

.briefing-skip:hover {
  color: var(--signal);
}

#typed {
  font-size: 19px;
  line-height: 1.65;
  min-height: 120px;
  font-weight: 400;
  list-style: none;
}

#typed p {
  margin-bottom: 10px;
  list-style: none;
  padding-inline-start: 0;
  margin-inline-start: 0;
}

#typed strong {
  font-weight: 800;
}

.typed-cursor {
  display: inline-block;
  width: 9px;
  height: 1.1em;
  background: var(--signal);
  vertical-align: text-bottom;
  animation: blink 1s steps(1) infinite;
  margin-left: 2px;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.briefing-h1 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 24px 0 12px;
}

.briefing-sub {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 0;
  max-width: 68ch;
}

.hero-lookup {
  margin-top: 24px;
}

.hero-lookup-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--signal);
  text-transform: uppercase;
  margin: 0 0 8px;
}

.hero-lookup-intro {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 0 16px;
}

.wingman-ref-mobile {
  display: none;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.stat {
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
}

.stat .n {
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}

.stat .l {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-top: 2px;
}

.audit-form {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.audit-form input {
  font-family: var(--mono);
  font-size: 13.5px;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--paper);
  min-width: 0;
}

.audit-form input:focus {
  outline: 2px solid var(--signal);
  outline-offset: -1px;
}

.audit-form .ticker-field {
  width: 100%;
  text-transform: uppercase;
}

.ticker-input-wrap {
  position: relative;
  display: block;
}

.ticker-input-wrap--lookup {
  flex: 1;
  min-width: 0;
}

.ticker-input-wrap--audit {
  width: 110px;
  flex-shrink: 0;
}

.ticker-input-wrap input {
  width: 100%;
  position: relative;
  z-index: 1;
  background: var(--paper);
}

.ticker-input-wrap:not(.is-focused):not(.has-value) input {
  background: transparent;
}

.audit-form .ticker-input-wrap:not(.is-focused):not(.has-value) .ticker-field {
  background: transparent;
}

.symbol-lookup-form .ticker-input-wrap:not(.is-focused):not(.has-value) input {
  background: transparent;
}

.ticker-watermark {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  pointer-events: none;
  padding: 11px 13px;
  font-family: var(--mono);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(65, 85, 107, 0.55);
}

.ticker-input-wrap--lookup .ticker-watermark {
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.ticker-watermark-chars {
  display: inline-block;
  min-width: 4ch;
  font-variant-numeric: tabular-nums;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.48s ease, transform 0.48s ease;
  will-change: opacity, transform;
}

.ticker-watermark-chars.is-fading {
  opacity: 0;
  transform: translateY(-3px);
}

.ticker-watermark-chars.is-entering {
  opacity: 0;
  transform: translateY(3px);
}

@media (prefers-reduced-motion: reduce) {
  .ticker-watermark-chars {
    transition: none !important;
  }
}

.ticker-input-wrap.is-focused .ticker-watermark,
.ticker-input-wrap.has-value .ticker-watermark {
  opacity: 0;
  visibility: hidden;
}

.audit-form .ticker-input-wrap--audit .ticker-field {
  width: 100%;
}

.audit-form .ticker-input-wrap--audit .ticker-watermark {
  padding: 11px 13px;
  font-size: 13.5px;
}

.audit-form .email-field {
  flex: 1;
  min-width: 200px;
}

.audit-form .go {
  background: var(--signal);
  color: #fff;
  border: none;
  font-weight: 500;
  font-size: 13.5px;
  padding: 11px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.15s;
  font-family: var(--sans);
}

.audit-form .go:hover {
  transform: translateY(-1px);
}

.form-micro {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 10px;
}

.form-error {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--down);
  margin-top: 8px;
}

.form-success {
  font-family: var(--mono);
  font-size: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  background: var(--mist);
  border-radius: var(--radius);
  margin-top: 16px;
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.trust-chip {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--mist-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 12px;
}

/* ============ BANNER BAND ============ */
.banner-band {
  padding: 0;
  overflow: hidden;
  height: 180px;
  display: flex;
  flex-direction: column;
}

.banner-viewport {
  position: relative;
  flex: 1;
  min-height: 0;
  background: var(--mist);
  overflow: hidden;
}

.banner-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 20px 8px;
  background: var(--mist);
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.banner-slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.banner-slide img {
  max-height: 120px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.banner-caption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 8px 0 0;
  text-align: center;
}

.banner-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px 12px;
  border-top: 1px solid var(--border);
  background: var(--card);
}

.banner-dot {
  width: 3px;
  height: 3px;
  padding: 0;
  border: none;
  background: var(--hairline);
  border-radius: 0;
  cursor: pointer;
}

.banner-dot.is-active {
  background: var(--signal);
}

.banner-dot:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 2px;
}

.banner-slide-text {
  background: var(--card);
}

.banner-text-frame {
  border: 1px solid var(--border);
  background: var(--mist);
  padding: 18px 22px;
  max-width: 560px;
  width: 100%;
}

.banner-text-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--signal);
  text-transform: uppercase;
  margin: 0 0 10px;
}

.banner-text-quote {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.45;
  margin: 0;
}

.banner-slide-feed {
  background: var(--mist);
}

.banner-slide-feed .feed {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  background: var(--card);
}

.banner-slide-feed .feed-list {
  max-height: 88px;
  overflow: hidden;
}

/* ============ MORE TASK LIST ============ */
.task-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.task-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

.task-check {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--signal);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ============ ATTENTION FEED ============ */
.feed {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.feed-head {
  background: var(--mist);
  border-bottom: 1px solid var(--border);
  padding: 9px 13px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.feed-item {
  padding: 11px 13px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.feed-item:last-child {
  border-bottom: none;
}

.feed-list {
  overflow: hidden;
}

.feed-item.feed-exit {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.35s, transform 0.35s;
}

.feed-item .t {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-soft);
  flex: none;
  width: 44px;
}

.feed-item .m {
  font-size: 13px;
}

.chip {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  padding: 1px 7px;
  border-radius: var(--radius);
  margin-left: 6px;
  vertical-align: middle;
}

.chip.up {
  background: #e7f6ee;
  color: var(--up);
}

.chip.sig {
  background: var(--mist-deep);
  color: var(--signal);
}

/* ============ ENGINE CARDS ============ */
.engine-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.engine-card {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.engine-close {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.engine-close p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 10px;
}

.engine-close p:last-child {
  margin-bottom: 0;
}

/* ============ CLAIMS ============ */
.claims {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.claim {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  transition: transform 0.15s;
}

.claim:hover {
  transform: translateY(-2px);
}

.claim .k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 7px;
}

.claim .v {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0;
}

/* ============ PERFORMANCE LOOP ============ */
.loop-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.loop-wheel-wrap {
  flex-shrink: 0;
  width: 200px;
}

.perf-rows {
  list-style: none;
  margin: 0;
  padding: 0;
}

.perf-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.perf-row:last-child {
  border-bottom: none;
}

.perf-head {
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 15px;
}

.perf-head .loop-num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--signal);
  margin-right: 4px;
}

.perf-row > p {
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: 14px;
}

.perf-outcome {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--signal);
  margin: 0;
}

/* ============ WINGMAN SURFACE POINTER ============ */
.wingman-pointer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.wingman-arrow {
  font-size: 48px;
  color: var(--signal);
  line-height: 1;
}

.wingman-caption {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  max-width: 18ch;
}

.wingman-caption-mobile {
  display: none;
}

/* ============ FOUR MODES TABS ============ */
.mode-tabs {
  display: flex;
  gap: 2px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.mode-tab {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-family: var(--sans);
  margin-bottom: -1px;
}

.mode-tab.active {
  color: var(--ink);
  border-bottom-color: var(--signal);
}

.mode-tab:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: -2px;
}

.mode-panel {
  display: none;
}

.mode-panel.active {
  display: block;
}

.mode-panel h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.mode-panel p {
  color: var(--ink-soft);
  font-size: 15px;
}

.mode-shot {
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.modes-closer {
  font-weight: 500;
  margin: 20px 0 0;
}

/* ============ PRICING ============ */
.pricing-positioning {
  margin: 18px 0 22px;
  max-width: 640px;
}

.pricing-quote {
  margin: 0 0 12px;
  padding-left: 16px;
  border-left: 1px solid var(--border);
  font-size: 15px;
  font-style: italic;
  color: var(--ink-soft);
}

.pricing-quote p {
  margin: 0 0 6px;
}

.pricing-quote cite {
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  color: var(--faint);
  letter-spacing: 0.06em;
}

.pricing-positioning-lead {
  margin: 16px 0 0;
  font-size: 15px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 0;
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-card h3 {
  font-size: 1.125rem;
  margin: 0 0 8px;
}

.pricing-price {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.pricing-card ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  flex: 1;
}

.pricing-card li {
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.pricing-card li:last-child {
  border-bottom: none;
}

.pricing-card .btn {
  width: 100%;
}

/* ============ 0.97 ============ */
.section-number-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.stat-figure {
  font-family: var(--mono);
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 16px;
}

.stat-lead {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 12px;
}

.stat-note {
  font-size: 14px;
  margin: 0;
}

/* ============ VIDEO ============ */
.video-slot {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--paper);
  padding: 0;
  cursor: pointer;
  font: inherit;
  text-align: inherit;
  color: inherit;
}

.video-slot:hover .video-label {
  color: var(--paper);
}

.video-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.video-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--navy);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: var(--radius);
  white-space: nowrap;
  pointer-events: none;
}

/* ============ VIDEO MODAL ============ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.video-modal[hidden] {
  display: none;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 27, 42, 0.6);
  border: none;
  padding: 0;
  cursor: pointer;
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.video-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 32px;
  height: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
  padding: 0;
}

.video-modal-close:hover {
  color: var(--ink);
}

.video-modal-body {
  aspect-ratio: 16 / 9;
  position: relative;
  background: var(--paper);
}

.video-modal-body video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

.video-modal-body video[hidden] {
  display: none;
}

.video-modal-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--paper);
}

.video-modal-fallback[hidden] {
  display: none;
}

.video-modal-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.video-modal-arriving {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--navy);
  padding: 12px 20px;
  border-radius: var(--radius);
  white-space: nowrap;
}

/* ============ FAQ ============ */
.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
}

.faq-q:hover {
  color: var(--signal);
}

.faq-icon {
  font-family: var(--mono);
  font-size: 18px;
  color: var(--faint);
  flex-shrink: 0;
}

.faq-a {
  display: none;
  padding: 0 0 18px;
  color: var(--ink-soft);
  font-size: 15px;
}

.faq-item.is-open .faq-a {
  display: block;
}

/* ============ FINAL CTA ============ */
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

/* ============ WINGMAN DOCK ============ */
.wingman-dock {
  position: sticky;
  top: 72px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  height: calc(100vh - 96px);
  max-height: 640px;
}

.wm-head {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 9px;
}

.wm-mark {
  flex-shrink: 0;
  display: block;
}

/* Legacy mark on agents/blog until those pages pick up .wm-mark img */
.wm-disc {
  width: 22px;
  height: 22px;
  border-radius: var(--radius);
  background: var(--ink-soft);
  position: relative;
  flex-shrink: 0;
}

.wm-disc::after {
  content: "";
  position: absolute;
  left: 54%;
  top: 22%;
  width: 2px;
  height: 56%;
  background: #fff;
  transform: rotate(-20deg);
}

.wm-name {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.wm-live {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--up);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.wm-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.wm-close {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
  padding: 0 4px;
  margin-left: 8px;
}

.wingman-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 120px;
}

.wingman-msg {
  max-width: 88%;
  padding: 10px 13px;
  border-radius: var(--radius);
  font-size: 13.5px;
  line-height: 1.5;
}

.wingman-msg.user {
  align-self: flex-end;
  background: var(--mist-deep);
}

.wingman-msg.assistant {
  align-self: flex-start;
  background: var(--paper);
  border: 1px solid var(--border);
}

.wingman-msg.assistant .wingman-msg-p {
  margin: 0 0 0.55em;
}

.wingman-msg.assistant .wingman-msg-p:last-child {
  margin-bottom: 0;
}

.wingman-msg.assistant .wingman-book-btn {
  display: inline-block;
  margin-top: 10px;
}

.wingman-clear-row {
  flex-shrink: 0;
  padding: 0 16px 12px;
  text-align: center;
}

.wingman-clear-chat {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--signal);
  background: none;
  border: none;
  padding: 4px 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.wingman-clear-chat:hover {
  color: var(--ink);
}

.wingman-msg.error {
  color: var(--down);
  font-size: 13px;
}

.wingman-starters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 12px;
}

.wingman-starters[hidden] {
  display: none !important;
}

.wingman-starter-chip {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--signal);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 12px;
  cursor: pointer;
  text-align: left;
  line-height: 1.35;
}

.wingman-starter-chip:hover {
  border-color: var(--signal);
}

.wingman-book-btn {
  display: inline-block;
  margin-top: 9px;
  background: var(--signal);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 7px 12px;
  border-radius: var(--radius);
  text-decoration: none;
  text-transform: uppercase;
}

.wingman-book-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.wm-input-row {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--border);
}

.wm-input-row input {
  flex: 1;
  font-size: 13px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--paper);
}

.wm-input-row input:focus {
  outline: 2px solid var(--signal);
  outline-offset: -1px;
}

.wm-input-row button {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 0 16px;
  border-radius: var(--radius);
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--sans);
}

.wm-input-row button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ============ WINGMAN LAUNCH (mobile) ============ */
.wingman-pill {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--navy);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 16px;
  border-radius: var(--radius);
  z-index: 60;
  cursor: pointer;
  border: none;
  align-items: center;
  gap: 8px;
}

.wingman-pill .pill-mark {
  flex-shrink: 0;
  display: block;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 48px 16px 32px;
  margin-top: 16px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.footer-wordmark {
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  color: #e3e8ee;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-copy {
  flex: 1 1 100%;
}

.footer-copy p {
  margin: 0;
  font-size: 12px;
  color: var(--ink-soft);
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

/* ============ HOW IT WORKS ============ */
.how-split {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin: 0;
}

.how-step-text {
  flex: 0 0 320px;
  max-width: 320px;
}

.how-step-card {
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 4px;
}

.how-step-card-inner {
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 24px;
  transition: opacity 0.2s ease;
}

.how-step-card-inner.how-step-fading {
  opacity: 0;
}

.how-step-number {
  font-family: var(--mono);
  font-size: 48px;
  color: var(--signal);
  font-weight: 800;
  line-height: 1;
}

.how-step-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 8px 0 0;
}

.how-step-desc {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 12px 0 0;
}

.how-counter-card {
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 4px;
  margin-top: 16px;
  max-width: 320px;
}

.how-counter-card-inner {
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 20px;
}

.counter-strip {
  display: flex;
  gap: 16px;
  justify-content: space-around;
}

.counter-item {
  flex: 0 1 auto;
  min-width: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.counter-value {
  font-family: monospace;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}

.counter-label {
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  text-transform: uppercase;
  white-space: nowrap;
}

.how-diagram-wrap {
  flex: 1;
  min-width: 440px;
  max-width: 560px;
  aspect-ratio: 1;
}

.how-loop-diagram {
  width: 100%;
  height: 100%;
  display: block;
}

.how-loop-diagram .node-rect {
  transition: stroke 0.25s ease, stroke-width 0.25s ease;
}

.how-loop-diagram .loop-arrow {
  transition: stroke 0.25s ease, stroke-width 0.25s ease;
}

.how-loop-diagram .node-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  fill: var(--ink);
  pointer-events: none;
}

.how-loop-diagram .loop-watermark {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 800;
  fill: #41556B;
  opacity: 0.35;
  pointer-events: none;
}

@media (max-width: 768px) {
  .how-split {
    flex-direction: column-reverse;
    gap: 32px;
  }

  .how-step-text {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .how-step-card {
    width: 100%;
  }

  .how-diagram-wrap {
    min-width: unset;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .how-step-card-inner {
    transition: none;
  }

  .how-loop-diagram .node-rect,
  .how-loop-diagram .loop-arrow {
    transition: none;
  }
}

/* ============ LEGAL PAGES ============ */
.legal-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 76px 16px 40px;
}

.legal-page {
  opacity: 1;
  transform: none;
}

.legal-page h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 8px;
}

.legal-effective {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 28px;
}

.legal-page h2 {
  font-size: 1.125rem;
  margin: 28px 0 10px;
}

.legal-page p {
  margin: 0 0 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.legal-page a {
  color: var(--signal);
}

.legal-page ul {
  margin: 0 0 16px;
  padding-left: 1.25rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============ AGENTS / BLOG PAGES ============ */
.page-hero {
  opacity: 1;
  transform: none;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 12px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.filter-chips .chip {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--mist);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink-soft);
}

.filter-chips .chip.is-active {
  border-color: var(--signal);
  color: var(--signal);
}

.agent-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.agent-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.agent-row:last-child {
  border-bottom: none;
}

.agent-row[hidden] {
  display: none;
}

.agent-title {
  font-weight: 800;
  font-size: 16px;
  margin: 0;
}

.agent-fn {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--faint);
  margin: 4px 0 0;
}

.agent-desc {
  grid-column: 1 / -1;
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0;
}

.category-chip {
  align-self: start;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

.empty-state {
  color: var(--ink-soft);
  font-size: 16px;
}

.blog-post-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-card-date {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 10px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.blog-card-media {
  display: block;
  aspect-ratio: 1200 / 630;
  overflow: hidden;
  background: var(--surface-2, #f0f4f8);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 20px 22px 24px;
}

.blog-index-lede {
  max-width: 42rem;
  margin-bottom: 28px;
}

.blog-hero-image {
  margin: 0 0 28px;
  border-radius: var(--radius, 12px);
  overflow: hidden;
  background: var(--surface-2, #f0f4f8);
}

.blog-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.25;
}

.blog-card-title a {
  color: var(--ink);
  text-decoration: none;
}

.blog-card-title a:hover {
  color: var(--signal);
}

.blog-card-excerpt {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.blog-back {
  margin: 0 0 20px;
  font-size: 14px;
}

.blog-back a {
  color: var(--signal);
}

.blog-article time {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 16px;
}

.blog-lede {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.6;
  margin: 0 0 24px;
}

.blog-article footer p {
  margin-top: 28px;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .shell {
    grid-template-columns: 1fr;
    padding-top: 68px;
  }

  .taskbar-tabs {
    display: none;
  }

  .taskbar-menu {
    display: block;
  }

  .taskbar-actions .btn.outline {
    display: none;
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .claims {
    grid-template-columns: 1fr;
  }

  .engine-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .loop-layout {
    grid-template-columns: 1fr;
  }

  .loop-wheel-wrap {
    display: none;
  }

  .wingman-ref-desktop,
  .wingman-caption-desktop {
    display: none;
  }

  .wingman-ref-mobile,
  .wingman-caption-mobile {
    display: inline;
  }

  .briefing-skip {
    top: 16px;
    right: 16px;
  }

  .briefing {
    padding: 24px 20px;
  }

  .banner-band {
    height: 140px;
  }

  .banner-slide img {
    max-height: 84px;
  }

  .banner-text-frame {
    padding: 14px 16px;
  }

  .banner-text-quote {
    font-size: 14px;
  }

  .video-modal {
    padding: 12px;
  }

  .video-modal-arriving {
    font-size: 10px;
    padding: 10px 14px;
    white-space: normal;
    text-align: center;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .engine-cards {
    grid-template-columns: 1fr;
  }

  .taskbar-actions .btn {
    padding: 8px 12px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .briefing-typed-wrap {
    transition: none;
  }
}

/* Honeypot field */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* 404 page */
.page-404-shell {
  grid-template-columns: 1fr;
}

.page-404-surface {
  opacity: 1;
  transform: none;
  text-align: center;
}

.page-404-surface h1 {
  margin-bottom: 24px;
}

.page-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ============ AGENTS EXPLORER ============ */
.agents-explorer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.explorer-title {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 14px;
}

.explorer-controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.explorer-search {
  font-family: var(--mono);
  font-size: 13px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--paper);
  width: 100%;
  max-width: 360px;
}

.explorer-search:focus {
  outline: 2px solid var(--signal);
  outline-offset: -1px;
}

.explorer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.explorer-count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-soft);
  margin: 0 0 10px;
}

.explorer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.explorer-row {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.explorer-row:last-child {
  border-bottom: none;
}

.explorer-row-name {
  font-weight: 800;
  font-size: 14px;
  margin: 0 0 4px;
}

.explorer-row-desc {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
}

.explorer-more {
  margin: 12px 0 0;
}

/* ============ DEMO PANEL ============ */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}

.demo-card {
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.demo-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.funnel-stages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.funnel-stage {
  display: grid;
  grid-template-columns: 72px 1fr 48px;
  gap: 8px;
  align-items: center;
}

.funnel-name {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.funnel-bar-wrap {
  height: 8px;
  background: var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
}

.funnel-bar {
  height: 100%;
  width: 0%;
  background: var(--signal);
  border-radius: var(--radius);
  transition: width 0.8s ease-out;
}

.funnel-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.demo-chart {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 12px;
}

.chart-axis-label {
  font-family: var(--mono);
  font-size: 8px;
  fill: var(--ink-soft);
}

.chart-line {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 1.2s ease-out;
}

.chart-line.drawn {
  stroke-dashoffset: 0;
}

.demo-replay {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--ink-soft);
}

.demo-replay:hover {
  color: var(--signal);
  border-color: var(--signal);
}

@media (max-width: 768px) {
  .demo-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feed-item.feed-exit {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .funnel-bar {
    transition: none;
  }

  .chart-line {
    transition: none;
    stroke-dashoffset: 0;
  }

  .briefing-progress-fill {
    transition: none;
  }
}

/* ============ SPINE REBUILD (Command 2) ============ */
.section {
  padding-top: 48px;
  padding-bottom: 48px;
}

section.section.surface {
  padding: 48px 0;
}

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}

/* GLOBAL card surface - every white card on the page */
.surface-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 24px;
  margin: 0;
}

#book-audit-cta .section-inner,
#how-it-works .section-inner,
#video-hero .section-inner,
#agents-showcase .section-inner,
#philosophy .section-inner,
#pricing .section-inner,
#faq .section-inner {
  padding-left: 16px;
  padding-right: 16px;
}

.lookup-card.surface-card {
  padding: 0;
  overflow: hidden;
}

.video-container.surface-card {
  padding: 0;
  overflow: hidden;
}

.surface-mist {
  background: var(--mist);
}

.surface-white {
  background: var(--card);
}

.section-headline {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.25;
}

.section-subline,
.how-subline,
.video-subline,
.agents-subline,
.cta-subline {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.5;
  margin: 8px 0 24px;
}

.btn-large {
  padding: 14px 28px;
  font-size: 14px;
}

.btn-secondary {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
}

.btn-secondary:hover {
  color: var(--signal);
  border-color: var(--signal);
  text-decoration: none;
}

.link-arrow {
  color: var(--signal);
  font-weight: 500;
  text-decoration: none;
}

.link-arrow:hover {
  text-decoration: underline;
}

/* Symbol lookup */
.symbol-lookup-form {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 24px;
  max-width: 560px;
}

.symbol-lookup-form input {
  flex: unset;
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  font-size: 16px;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.symbol-lookup-form input:focus {
  outline: none;
  border-color: var(--signal);
  box-shadow: 0 0 0 1px var(--signal);
}

.symbol-lookup-result {
  margin-top: 8px;
}

.loading-state {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
}

.loading-spinner {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border);
  border-top-color: var(--signal);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-text {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

/* Compact lookup card */
.lookup-card {
  max-width: 100%;
}

.lookup-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}

.lookup-company h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
}

.lookup-52w {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
}

.lookup-price {
  text-align: right;
  flex-shrink: 0;
}

.lookup-price-value {
  display: block;
  font-family: var(--mono);
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
}

.lookup-price-change {
  display: block;
  font-family: var(--mono);
  font-size: 14px;
  margin-top: 4px;
}

.lookup-price-change.is-up {
  color: var(--up);
}

.lookup-price-change.is-down {
  color: var(--down);
}

.lookup-chart {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 200px;
  padding: 16px 24px 0;
  position: relative;
}

.lookup-chart-svg {
  width: 100%;
  height: 200px;
  display: block;
  flex: 0 0 auto;
}

.chart-watermark {
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 28px;
  font-weight: 800;
  fill: #0b3d5c;
  pointer-events: none;
}

.chart-legend {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 0 14px;
  margin: 0;
  font-size: 12px;
  line-height: 1;
  color: var(--ink-soft);
}

.legend-item {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.legend-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0;
  flex-shrink: 0;
}

.legend-dot-pr {
  background: #0fa958;
}

.legend-dot-mention {
  background: #0b7fc7;
}

.mentions-empty {
  margin: 0;
  padding: 8px 0 4px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.mentions-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 4px;
  align-items: start;
}

.mention-type-badge {
  grid-row: 1 / span 2;
  align-self: start;
  margin-top: 2px;
  padding: 3px 7px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mention-type-badge--social {
  background: rgba(11, 127, 199, 0.12);
  color: #0b7fc7;
}

.mention-type-badge--pr {
  background: rgba(15, 169, 88, 0.14);
  color: #0a8a4a;
}

.mentions-list a {
  grid-column: 2;
}
.mention-source {
  grid-column: 2;
}

.lookup-chart.lookup-chart-loading::after {
  content: "";
  position: absolute;
  inset: 16px 24px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(11, 127, 199, 0.08),
    transparent
  );
  animation: lookup-chart-pulse 1s ease-in-out infinite;
  pointer-events: none;
}

@keyframes lookup-chart-pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

.lookup-chart-svg {
  width: 100%;
  height: 200px;
  display: block;
  flex: 0 0 auto;
}

.lookup-chart-empty {
  margin: 0;
  padding: 60px 16px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 14px;
}

.chart-axis-label {
  font-family: var(--mono);
  font-size: 10px;
  fill: var(--ink-soft);
}

.chart-axis-label-price,
.chart-axis-label-vol {
  font-size: 10px;
}

.chart-dot-pulse-pr {
  animation: pulse-pr 2s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.chart-dot-pulse-mention {
  animation: pulse-mention 2.5s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}

@keyframes pulse-pr {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

@keyframes pulse-mention {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.chart-tooltip {
  position: fixed;
  max-width: 280px;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  font-size: 13px;
  border-radius: 3px;
  z-index: 100;
  pointer-events: none;
  line-height: 1.4;
}

.chart-tooltip strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}

.chart-tooltip span {
  display: block;
  font-size: 12px;
  color: #c8d4e0;
}

.lookup-ir-score {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ir-score-top {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.ir-score-left {
  flex-shrink: 0;
  width: 100px;
}

.ir-score-number {
  font-family: var(--mono);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.ir-score-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-top: 4px;
  text-transform: uppercase;
}

.ir-score-range {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}

.ir-score-right {
  flex: 1;
  min-width: 0;
}

.ir-score-text {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
  margin: 0;
}

.ir-score-key {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  font-size: 11px;
  color: var(--ink-soft);
  flex-wrap: wrap;
}

.key-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.key-swatch {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  display: inline-block;
  flex-shrink: 0;
}

.ir-score-bar-wrap {
  margin-top: 14px;
}

.ir-score-bar-track {
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(
    to right,
    #d93a2b 0%,
    #d93a2b 40%,
    #0fa958 40%,
    #0fa958 80%,
    #ffd700 80%,
    #ffd700 100%
  );
  position: relative;
  overflow: visible;
}

.ir-score-bar-marker {
  position: absolute;
  top: -4px;
  width: 12px;
  height: 16px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 3px;
  transform: translateX(-50%);
  pointer-events: none;
}

.lookup-mentions {
  padding: 16px 24px;
}

.mentions-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 12px;
}

.mentions-title {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
}

.mentions-title .legend-dot-mention {
  margin-right: 6px;
}

.mentions-toggle {
  display: block;
  margin-top: 12px;
  padding: 0;
  text-align: left;
  font-size: 13px;
  color: var(--signal);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  font-family: var(--sans);
}

.mentions-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mentions-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.mentions-list li:last-child {
  border-bottom: none;
}

.mentions-list a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
}

.mentions-list a:hover {
  color: var(--signal);
}

.mention-source {
  display: block;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 4px;
}

.mentions-list li.mention-hidden {
  display: none;
}

.lookup-cta {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.lookup-cta-text {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--ink-soft);
}

.lookup-cta-btn {
  margin-top: 4px;
}

.lookup-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.lookup-cta-buttons .chip {
  font-family: var(--sans);
  font-size: 14px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--signal);
  cursor: pointer;
}

#symbol-lookup-error {
  padding: 16px;
  color: var(--down);
  font-size: 14px;
}

.symbol-lookup-placeholder {
  display: flex;
  align-items: center;
  gap: 24px;
}

.placeholder-chart-wrap {
  flex: 1;
  min-width: 0;
}

.placeholder-chart-svg {
  width: 100%;
  height: 180px;
  display: block;
}

.placeholder-context {
  flex: 0 0 240px;
  max-width: 240px;
}

.placeholder-text {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.5;
  font-style: italic;
  margin: 0;
}

.placeholder-axis-label {
  font-family: var(--mono);
  font-size: 10px;
  fill: var(--ink-soft);
}

.placeholder-dot-label {
  font-family: var(--mono);
  font-size: 12px;
}

.placeholder-dot-mention {
  fill: var(--signal);
}

.placeholder-dot-pr {
  fill: var(--up);
}

/* Book audit CTA */
.cta-card {
  padding: 32px;
}

.cta-split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.cta-text {
  flex: 1;
}

#book-audit-cta .cta-headline {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}

.cta-body {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

.cta-calendar-btn {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  background: var(--navy);
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s;
}

.cta-calendar-btn:hover {
  background: var(--ink);
}

.cta-calendar-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 10px;
}

.cta-calendar-label {
  font-family: monospace;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
}

/* Video hero */
.video-container {
  position: relative;
  width: 100%;
  margin: 0 0 16px;
  aspect-ratio: 16 / 9;
  background: var(--ink);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-hero-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--paper);
}

.video-hero-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.video-hero-arriving {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 14px;
  border-radius: var(--radius);
}

.video-caption {
  text-align: center;
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 auto;
}

/* Agents showcase */
.agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 0;
}

.agent-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.agent-icon {
  font-size: 28px;
  line-height: 1;
  font-family: var(--mono);
  text-align: center;
}

.agent-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
}

.agent-card .agent-desc {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  flex: 1;
}

.agent-progress {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.progress-bar {
  height: 2px;
  background: var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.progress-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--signal);
  animation: agent-progress 2s ease-in-out infinite;
}

@keyframes agent-progress {
  0% {
    width: 0;
  }
  80% {
    width: 80%;
  }
  100% {
    width: 0;
  }
}

.progress-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
}

.agents-footer {
  text-align: center;
  margin-top: 24px;
}

.agents-footer p {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--ink-soft);
}

/* Philosophy */
.section-philosophy {
  max-width: none;
}

.philosophy-split {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.philosophy-grid {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 240px;
}

.profile-square {
  width: 72px;
  height: 72px;
  border-radius: 3px;
  overflow: hidden;
  background: var(--hairline);
}

.profile-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-content {
  flex: 1;
}

.philosophy-header {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 800;
  margin: 0 0 8px;
}

.philosophy-beliefs {
  margin: 32px 0;
}

.philosophy-belief {
  margin: 0 0 12px;
  line-height: 1.5;
}

.philosophy-narrative p {
  margin: 0 0 20px;
  line-height: 1.6;
  max-width: 68ch;
}

/* Pricing spine overrides */
.pricing-card-gold {
  border-color: #ffd700;
}

.pricing-card-silver {
  border-color: #c0c0c0;
}

.pricing-card-black {
  border-color: #000;
}

.pricing-card h4 {
  margin: 0 0 8px;
  font-size: 1.125rem;
}

.custom-quote {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin: 12px 0 0;
}

.pricing-features {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  flex: 1;
  line-height: 1.6;
}

.pricing-features li {
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-cta {
  text-align: center;
  margin-top: 32px;
}

.pricing-cta-btn {
  margin: 0 auto;
}

/* FAQ details */
.faq-details {
  margin: 0;
}

.faq-details .faq-item {
  margin-bottom: 16px;
}

.faq-details summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--ink);
  list-style: none;
}

.faq-details summary::-webkit-details-marker {
  display: none;
}

.faq-details summary:hover {
  color: var(--signal);
}

.faq-details .faq-item p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 15px;
}

@media (max-width: 1199px) {
  .agents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .symbol-lookup-form {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
  }

  .symbol-lookup-form input,
  .symbol-lookup-form .btn,
  .symbol-lookup-form .btn-market-snapshot {
    width: auto;
    height: 48px;
  }

  .symbol-lookup-form input {
    flex: 1 1 auto;
    min-width: 0;
  }

  .symbol-lookup-form .btn-market-snapshot,
  .symbol-lookup-form .btn {
    flex: 0 0 auto;
    padding: 0 16px;
    font-size: 12px;
  }

  .lookup-header {
    flex-direction: column;
  }

  .lookup-price {
    text-align: left;
    margin-top: 12px;
  }

  .lookup-ir-score {
    padding: 16px;
  }

  .ir-score-top {
    flex-direction: column;
    gap: 16px;
  }

  .ir-score-left {
    width: 100%;
    display: flex;
    gap: 12px;
    align-items: baseline;
    flex-wrap: wrap;
  }

  .ir-score-number {
    font-size: 36px;
  }

  .ir-score-key {
    flex-wrap: wrap;
  }

  .symbol-lookup-placeholder {
    flex-direction: column;
    align-items: stretch;
  }

  .placeholder-context {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .philosophy-split {
    flex-direction: column;
    align-items: center;
  }

  .philosophy-grid {
    width: 200px;
    margin-bottom: 24px;
  }

  .profile-square {
    width: 60px;
    height: 60px;
  }

  .cta-split {
    flex-direction: column;
    text-align: center;
  }

  .cta-calendar-btn {
    width: 130px;
    height: 130px;
    margin: 20px auto 0;
  }

  .agents-grid {
    grid-template-columns: 1fr;
  }

  .agent-card {
    padding: 16px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .loading-spinner {
    animation: none;
    border-top-color: var(--border);
  }

  .progress-bar::after {
    animation: none;
    width: 60%;
  }

  .lookup-chart.lookup-chart-loading::after {
    animation: none;
    opacity: 0.5;
  }

  .chart-dot-pulse-pr,
  .chart-dot-pulse-mention {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  #walkthrough-video {
    pointer-events: auto;
  }
}

/* ============ FULL SITE POLISH (2026-07) ============ */
.main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  padding: 96px 24px;
  background: var(--paper);
}

@media (max-width: 768px) {
  .section {
    padding: 64px 16px;
  }
}

.surface-paper {
  background: var(--paper);
}

.content-column {
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.section-card-wrap {
  position: relative;
}

.section .eyebrow,
.briefing-label.eyebrow {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal);
  margin: 0 0 16px;
}

.section-headline,
.hero-headline-card .section-headline {
  font-size: 40px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 16px;
}

.hero-title-signal.section-headline {
  color: var(--signal);
}

@media (max-width: 768px) {
  .section-headline,
  .hero-headline-card .section-headline {
    font-size: 28px;
  }
}

.section-body,
.section-subline {
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.6;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .section-body,
  .section-subline {
    font-size: 16px;
  }
}

.section-subline {
  color: var(--ink);
  text-align: center;
}

.briefing-card {
  margin-bottom: 0;
}

.hero-headline-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 32px;
  text-align: center;
}

.hero-headline-card .section-body {
  margin-bottom: 0;
}

.briefing-text-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
  margin-bottom: 16px;
}

.briefing-typed-viewport {
  flex: 1;
  outline: none;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  min-width: 0;
  min-height: 0;
  max-height: min(320px, 50vh);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: auto;
  touch-action: pan-y;
  scrollbar-width: thin;
}

.briefing-typed-viewport.is-scrollable {
  overflow-y: auto;
}

.briefing-typed-viewport .briefing-typed-wrap.is-scrollable {
  overflow: visible;
  max-height: none;
}

.briefing.briefing-collapsed #typed .briefing-sentence:not(:first-child) {
  display: none;
}

.briefing-scroll-controls {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.briefing-scroll-btn {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 3px;
  width: 32px;
  height: 32px;
  font-size: 12px;
  cursor: pointer;
  color: var(--ink-soft);
}

.briefing-scroll-btn:hover {
  background: var(--paper);
  color: var(--signal);
}

.market-lookup-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 28px 32px 36px;
  text-align: center;
}

.market-try-invite {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 12px;
}

.symbol-lookup-form input,
.symbol-lookup-form .btn-market-snapshot {
  height: 56px;
  border-radius: 3px;
}

.symbol-lookup-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 520px;
  margin: 20px auto;
}

.symbol-lookup-form input {
  flex: 1;
  font-size: 17px;
  min-width: 0;
}

.btn-market-snapshot {
  white-space: nowrap;
  padding: 0 24px;
  font-weight: 600;
}

.placeholder-tagline {
  font-size: 16px;
  color: var(--ink-soft);
  margin-top: 12px;
}

.book-call-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 12px 24px;
  background: var(--navy);
  border-radius: 3px;
  margin-top: 20px;
}

.book-call-banner-text {
  color: #fff;
  font-size: 16px;
  margin: 0;
  text-align: left;
}

.btn-book-call-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
}

.how-section-compact {
  padding-top: 48px;
  padding-bottom: 48px;
}

.how-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: start;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .how-layout {
    grid-template-columns: 1fr;
  }
  .how-right-col {
    order: -1;
  }
}

.how-desc-card {
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--card);
  padding: 24px;
  margin-bottom: 16px;
}

.how-desc-icon-wrap {
  margin-bottom: 16px;
}

.how-desc-icon-wrap.icon-animate .how-octagon-icon {
  animation: how-icon-pop 0.55s ease-out 1 forwards;
}

@keyframes how-icon-pop {
  0% { transform: scale(0.92); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

.how-counters-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.how-counter-row {
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--card);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.how-carousel-viewport {
  position: relative;
  height: 220px;
  perspective: 900px;
  margin-bottom: 20px;
}

.how-carousel-track {
  position: relative;
  height: 100%;
  width: 100%;
}

.carousel-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(320px, 88%);
  transform: translate(-50%, -50%);
  transition: transform 0.45s ease, opacity 0.45s ease;
  transform-origin: center center;
}

.carousel-card-frame {
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--card);
  padding: 20px;
  text-align: center;
}

.carousel-card-desc {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  margin: 12px 0 0;
}

.carousel-card:not(.is-center) .carousel-card-desc {
  display: none;
}

.how-timeline-strip {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  padding: 0 8px;
  max-width: 520px;
  margin: 0 auto;
}

.how-timeline-strip::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 14px;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.how-timeline-dot-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.how-timeline-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-timeline-dot.is-active {
  border-color: var(--signal);
  transform: scale(1.12);
}

.how-timeline-dot.is-active .how-timeline-dot-inner {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--signal);
  display: block;
}

.how-timeline-dot:not(.is-active) .how-timeline-dot-inner {
  font-size: 9px;
  font-weight: 600;
  color: var(--ink-soft);
}

.how-timeline-label {
  font-size: 9px;
  letter-spacing: 0.06em;
  margin-top: 6px;
  color: var(--ink-soft);
  opacity: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.how-timeline-label.is-visible {
  opacity: 1;
  color: var(--signal);
  font-weight: 600;
}

.video-section-compact {
  padding-top: 48px;
  padding-bottom: 48px;
}

.video-caption {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--sans);
  color: var(--ink);
  text-align: center;
  max-width: 720px;
  margin: 40px auto 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .video-caption {
    font-size: 18px;
  }
}

.cta-unified-card {
  max-height: 78vh;
  overflow-y: auto;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 3px;
}

.cta-mid-divider {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  margin: 24px auto;
  letter-spacing: 0.04em;
}

.cta-calendar-btn--slim {
  height: 56px;
  padding: 0 28px;
  border-radius: 3px;
  letter-spacing: 0.08em;
  font-weight: 600;
  white-space: nowrap;
}

.cta-unified-action {
  margin-top: 28px;
}

.book-audit-compact {
  padding-top: 48px;
  padding-bottom: 48px;
}

.agents-grid-tight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .agents-grid-tight {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .agents-grid-tight {
    grid-template-columns: 1fr;
  }
}

.agents-grid-tight .agent-card {
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--card);
  padding: 20px;
}

.agent-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 12px 0 6px;
}

.agent-desc {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 12px;
  line-height: 1.4;
}

.agent-card-typing {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-soft);
  min-height: 2.6em;
}

.philosophy-section {
  position: relative;
  overflow: hidden;
}

.philosophy-chart-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  pointer-events: none;
}

.philosophy-inner {
  position: relative;
  max-width: 800px;
  text-align: center;
}

.philosophy-prose {
  text-align: left;
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink);
}

.philosophy-prose p {
  margin: 0 0 12px;
}

@media (max-width: 768px) {
  .philosophy-prose {
    font-size: 16px;
  }
}

.philosophy-book-banner {
  margin-top: 32px;
}

.pricing-grid-clean .pricing-card {
  border: 1px solid var(--border);
  border-radius: 3px;
  box-shadow: none;
  outline: none;
}

.pricing-grid-clean .pricing-card::before,
.pricing-grid-clean .pricing-card::after {
  display: none;
}

#philosophy .philosophy-inner {
  position: relative;
}

#how-it-works .section-inner.content-column,
#video-hero .section-inner.content-column {
  position: relative;
  padding-bottom: 52px;
}

.faq-accordion {
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--card);
  overflow: hidden;
}

.faq-accordion-item + .faq-accordion-item {
  border-top: 1px solid var(--border);
}

.faq-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: var(--card);
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.faq-plus {
  font-size: 22px;
  line-height: 1;
  color: var(--ink-soft);
  transition: transform 0.2s ease;
}

.faq-accordion-trigger.is-expanded .faq-plus {
  transform: rotate(45deg);
}

.faq-answer-seo {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.faq-see-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 20px auto 0;
  background: none;
  border: none;
  color: var(--signal);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

.faq-chevron.is-up {
  transform: rotate(180deg);
}

.faq-wingman-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 32px auto 0;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  max-width: 480px;
  text-align: left;
}

.wingman-inline-mobile.wingman-dock {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto 64px;
  border: 1px solid var(--border);
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track,
  .how-carousel-track,
  .agent-card-typing {
    animation: none !important;
    transition: none !important;
  }
  .carousel-card {
    transform: scale(1) !important;
    opacity: 1 !important;
  }
}

/* ============ HOMEPAGE LAYOUT CONSISTENCY (2026-07) ============ */
body:has(.home-main) {
  background: var(--paper);
}

.home-main {
  gap: 0;
  background: var(--paper);
}

@media (max-width: 768px) {
  .home-main {
    gap: 32px;
  }
}

.home-hero-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.home-section {
  background: var(--paper);
  padding: 64px var(--content-padding);
  margin: 0;
  border: none;
  border-radius: 0;
}

@media (max-width: 768px) {
  .home-section {
    padding: 40px 16px;
  }
}

.home-section-inner.content-column,
.home-main .content-column {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}

.home-content-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 40px var(--content-padding);
  position: relative;
}

@media (max-width: 768px) {
  .home-content-card {
    padding: 24px 16px;
  }
}

.home-main .eyebrow,
.home-main .briefing-label.eyebrow {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal);
  line-height: 1.4;
  margin: 0 0 16px;
  text-align: left;
}

.home-main .section-headline {
  font-size: 40px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 16px;
  text-align: left;
}

@media (max-width: 768px) {
  .home-main .section-headline {
    font-size: 28px;
  }
}

.hero-headline-card {
  text-align: left;
  padding: 40px var(--content-padding);
}

@media (max-width: 768px) {
  .hero-headline-card {
    padding: 24px 16px;
  }
}

.hero-h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--signal);
  line-height: 1.15;
  margin: 0 0 16px;
  text-align: left;
}

@media (max-width: 768px) {
  .hero-h1 {
    font-size: 32px;
  }
}

.home-main .section-body,
.home-main .section-subline,
.home-main .hero-h1-body {
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.6;
  text-align: left;
  max-width: none;
  margin: 0 0 16px;
}

@media (max-width: 768px) {
  .home-main .section-body,
  .home-main .section-subline,
  .home-main .hero-h1-body {
    font-size: 16px;
  }
}

.home-main .hero-h1-body {
  margin-bottom: 0;
}

.market-try-invite {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 12px;
  text-align: left;
}

.symbol-lookup-form {
  justify-content: flex-start;
  margin: 20px 0;
  max-width: 100%;
}

@media (max-width: 640px) {
  .symbol-lookup-form {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
  }

  .symbol-lookup-form .btn-market-snapshot {
    white-space: nowrap;
  }
}

.symbol-lookup-placeholder {
  display: block;
  border: none;
  padding: 0;
  background: transparent;
}

.placeholder-tagline {
  font-size: 20px;
  font-style: italic;
  color: var(--ink-soft);
  text-align: left;
  margin: 24px 0 0;
  line-height: 1.5;
}

.book-call-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
  padding: 24px 32px;
  background: var(--navy);
  border-radius: 3px;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .book-call-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 16px;
    text-align: left;
  }
}

.book-call-banner-text {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  text-align: left;
  flex: 1;
}

.btn-book-call-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 24px;
  background: #fff;
  color: var(--navy);
  border: none;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-book-call-banner-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.how-layout {
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  gap: 32px;
  margin-top: 8px;
}

.how-left-col {
  max-width: 400px;
}

.how-desc-card {
  padding: 32px;
}

.how-step-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--signal);
  line-height: 1;
  margin: 12px 0 8px;
}

.how-step-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
  text-align: left;
}

.how-step-desc {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  text-align: left;
  margin: 0;
}

.how-right-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.how-carousel-viewport {
  position: relative;
  height: auto;
  min-height: 200px;
  perspective: none;
  overflow: hidden;
  margin-bottom: 0;
}

.how-carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 200px;
  position: relative;
  width: 100%;
}

.carousel-card {
  position: relative;
  left: auto;
  top: auto;
  width: 160px;
  flex: 0 0 160px;
  transform: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.carousel-card.is-center {
  width: 200px;
  flex: 0 0 200px;
}

.carousel-card-frame {
  padding: 16px;
  text-align: center;
}

.carousel-stage-num {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--signal);
  margin-bottom: 8px;
}

.carousel-card-desc {
  display: none;
}

.how-timeline-strip {
  margin-top: 0;
  padding-top: 8px;
}

.how-timeline-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
}

@media (max-width: 900px) {
  .how-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .how-left-col {
    max-width: none;
    order: 3;
  }

  .how-right-col {
    order: 1;
  }

  .how-desc-card,
  .how-step-desc,
  .how-step-title,
  .how-counters-stack {
    text-align: center;
  }

  .how-desc-icon-wrap {
    display: flex;
    justify-content: center;
  }
}

#video-hero .video-container {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 3px;
  border: 1px solid var(--border);
}

.video-caption {
  text-align: center;
  max-width: 720px;
  margin: 40px auto 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .video-caption {
    font-size: 18px;
  }
}

.cta-unified-card {
  max-height: none;
  overflow: visible;
  padding: 40px var(--content-padding);
  text-align: left;
  position: relative;
}

@media (max-width: 768px) {
  .cta-unified-card {
    padding: 24px 16px;
  }
}

.cta-mid-divider {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 32px auto;
}

.cta-unified-action {
  text-align: center;
  margin-top: 28px;
}

.cta-calendar-btn--standalone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 28px;
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.cta-calendar-btn--standalone .cta-calendar-label {
  white-space: nowrap;
}

.philosophy-inner {
  max-width: 800px;
  text-align: left;
}

.philosophy-prose {
  text-align: left;
}

.pricing-grid-clean .pricing-card {
  border: 1px solid var(--border) !important;
  box-shadow: none !important;
  outline: none !important;
  background: var(--card);
}

.pricing-grid-clean .pricing-card::before,
.pricing-grid-clean .pricing-card::after {
  display: none !important;
}

.pricing-cta {
  text-align: center;
  margin-top: 32px;
}

.home-main .section-card-wrap {
  position: relative;
}

@media (max-width: 1023px) {
  .wingman-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(12, 27, 42, 0.4);
    z-index: 65;
  }

  .wingman-backdrop.is-visible {
    display: block;
  }
}

@media (min-width: 1024px) {
  .shell {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .wingman-dock:not(.wingman-inline-mobile) {
    display: flex !important;
    position: sticky;
    top: 72px;
  }

  .wingman-pill {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .shell {
    grid-template-columns: 1fr;
  }

  .wingman-dock.wingman-inline-mobile {
    display: flex;
    height: min(520px, 70vh);
    max-height: 560px;
    margin: 0 auto 32px;
  }

  .wingman-dock.wingman-inline-mobile.is-mobile-open {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 70;
    height: min(85vh, 560px);
    max-height: none;
    margin: 0;
    border-radius: 3px 3px 0 0;
  }

  .wingman-pill {
    display: inline-flex !important;
  }

  .wm-close {
    display: block;
  }
}

.wingman-mobile-anchor {
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  margin: 0;
}

/* ============ HOME FLOW REVISION (tight cards, aligned actions) ============ */
body:has(.home-main) {
  background: var(--paper);
}

.home-main {
  gap: 0;
  background: transparent;
}

@media (max-width: 768px) {
  .home-main {
    gap: 0;
  }
}

.home-block {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
}

.home-content-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 28px 32px 24px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .home-content-card {
    padding: 22px 18px 18px;
  }
}

.home-main .section-subline,
.home-main .section-body,
.home-main .hero-h1-body {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.home-main .section-subline {
  margin-bottom: 20px;
}

.hero-headline-card {
  text-align: left;
  padding: 28px 32px;
}

.section-ask-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.section-ask-row .ask-wingman-chip {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 3px;
  cursor: pointer;
  white-space: nowrap;
}

.section-ask-row .ask-wingman-chip:hover {
  background: var(--paper);
}

.home-block.section-card-wrap {
  padding-bottom: 0;
}

.cta-calendar-btn.cta-calendar-btn--slim,
.cta-calendar-btn.cta-calendar-btn--standalone {
  flex-direction: row;
  width: auto;
  min-width: 0;
  height: 56px;
  padding: 0 24px;
  gap: 12px;
  background: var(--navy);
  border-radius: 3px;
  text-decoration: none;
}

.cta-calendar-btn--standalone .cta-calendar-icon {
  width: 22px;
  height: 22px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.cta-calendar-btn--standalone .cta-calendar-label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.pricing-cta {
  margin-top: 24px;
}

.symbol-lookup-placeholder {
  margin-top: 8px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--paper);
}

.how-carousel-panel {
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 16px 12px 12px;
  background: var(--paper);
  margin-bottom: 0;
}

.how-carousel-flow-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 10px 4px;
}

.how-carousel-viewport {
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  align-items: center;
  gap: 8px;
  min-height: 168px;
  overflow: visible;
}

.how-flow-chevron {
  font-size: 28px;
  line-height: 1;
  color: var(--signal);
  text-align: center;
  opacity: 0.85;
  user-select: none;
}

.how-carousel-viewport.is-advancing .how-flow-chevron--right {
  animation: how-flow-nudge 0.45s ease-out;
}

@keyframes how-flow-nudge {
  0% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(4px); opacity: 1; }
  100% { transform: translateX(0); opacity: 0.85; }
}

.how-carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 140px;
}

.carousel-card-frame {
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--card);
  padding: 14px 12px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.35s ease;
}

.carousel-card.is-center .carousel-card-frame {
  border-color: var(--signal);
  box-shadow: 0 0 0 1px rgba(11, 127, 199, 0.25);
}

.carousel-card.is-center .carousel-card-frame {
  animation: carousel-focus-pulse 2.8s ease-in-out infinite;
}

@keyframes carousel-focus-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(11, 127, 199, 0.2); }
  50% { box-shadow: 0 0 0 3px rgba(11, 127, 199, 0.18); }
}

.carousel-stage-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-top: 8px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.25s ease;
}

.carousel-card.is-center .carousel-stage-label {
  opacity: 1;
  max-height: 2em;
  color: var(--signal);
}

.how-timeline-strip {
  --how-progress: 12.5%;
  position: relative;
  margin-top: 24px;
  padding-top: 4px;
}

.how-timeline-strip::after {
  content: "";
  position: absolute;
  left: 8%;
  top: 18px;
  height: 3px;
  width: calc(var(--how-progress) * 0.84);
  max-width: 84%;
  background: var(--signal);
  border-radius: 2px;
  transition: width 0.45s ease;
  z-index: 0;
  pointer-events: none;
}

.how-timeline-dot.is-active {
  box-shadow: 0 0 0 3px rgba(11, 127, 199, 0.2);
}

.philosophy-card {
  overflow: hidden;
}

.philosophy-card .philosophy-chart-bg {
  opacity: 0.08;
}

.philosophy-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.philosophy-book-banner,
.cta-unified-card.home-content-card {
  padding-bottom: 24px;
}

.home-main .agents-footer {
  margin-top: 16px;
  text-align: left;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-card.is-center .carousel-card-frame,
  .how-carousel-viewport.is-advancing .how-flow-chevron--right {
    animation: none !important;
  }
}

/* ============ HOME TIGHT + PROCESS VISUAL (2026-07-27) ============ */
.home-main {
  gap: 0;
}

@media (max-width: 768px) {
  .home-main {
    gap: 0;
  }
}

.home-content-card {
  padding: 22px 26px 20px;
}

@media (max-width: 768px) {
  .home-content-card {
    padding: 18px 16px 16px;
  }
}

.home-main .section-subline {
  margin-bottom: 14px;
  font-size: 17px;
  line-height: 1.55;
}

.home-main .section-body {
  font-size: 17px;
  line-height: 1.55;
}

.hero-tagline {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  text-align: left;
}

.hero-tagline-head {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
  margin: 0 0 10px;
  max-width: none;
}

.hero-tagline-body {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  max-width: 52rem;
}

.market-try-invite {
  color: var(--signal);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}

body:has(.home-main) .section-ask-row {
  display: none !important;
}

body:has(.home-main) .wingman-pill {
  display: none !important;
}

#how-it-works .how-layout {
  gap: 20px;
  align-items: stretch;
}

.how-process-visual {
  --how-spine-fill: 0.0625;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 0;
}

.how-process-stage {
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--paper);
  overflow: hidden;
  min-height: 200px;
}

.how-scene-svg {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.how-process-stage.is-entering .how-scene-svg {
  animation: how-scene-in 0.45s ease-out;
}

@keyframes how-scene-in {
  from {
    opacity: 0.4;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.how-process-rail-wrap {
  position: relative;
  margin-top: 14px;
  padding: 28px 4px 0;
}

.how-process-spine {
  position: absolute;
  top: 38px;
  left: 0;
  right: 0;
  width: 100%;
  height: 24px;
  pointer-events: none;
}

.how-process-spine-active {
  stroke-dasharray: 648;
  transition: stroke-dashoffset 0.55s ease;
}

.how-process-rail {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 6px;
  position: relative;
  z-index: 1;
}

.how-process-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.how-process-node-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1.05;
  max-height: 52px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: var(--card);
  padding: 4px;
  box-sizing: border-box;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.how-process-node-thumb svg {
  width: 100%;
  height: 100%;
}

.how-process-node.is-active .how-process-node-thumb {
  border-color: var(--signal);
  box-shadow: 0 0 0 2px rgba(11, 127, 199, 0.18);
  transform: translateY(-2px);
}

.how-process-node-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.2;
  text-align: center;
}

.how-process-node.is-active .how-process-node-label {
  color: var(--signal);
}

.how-desc-icon-wrap svg {
  width: 48px;
  height: 48px;
}

@media (max-width: 900px) {
  .how-process-rail {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .how-process-node {
    flex: 0 0 64px;
  }

  .how-process-spine {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .how-process-stage.is-entering .how-scene-svg {
    animation: none;
  }
}

/* ============ HOME TYPO + PRICING FIX (2026-07-27) ============ */
.home-main .eyebrow,
.home-main h2.eyebrow,
.home-main .section-headline,
.home-main .section-subline,
.home-main .section-body,
.home-main .video-caption {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
}

.home-card-kicker,
.home-main .home-card-kicker {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--signal);
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}

.page-h1-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-tagline-head {
  font-size: 18px;
  font-weight: 600;
  color: var(--signal);
}

.hero-tagline-body {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}

.market-try-invite {
  font-size: 18px;
  font-weight: 600;
  color: var(--signal);
  margin: 0 0 12px;
}

.home-main .section-subline {
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 14px;
}

#pricing .pricing-grid-clean {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
  align-items: stretch;
}

#pricing .pricing-grid-clean .pricing-card {
  padding: 22px 20px 20px;
  border: 1px solid var(--border) !important;
  border-radius: 3px;
  background: var(--card);
  box-shadow: none !important;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

#pricing .pricing-card-company {
  border-top: 4px solid var(--signal) !important;
}

#pricing .pricing-card-silver {
  border-top: 4px solid #9aa3ad !important;
}

#pricing .pricing-card-enterprise {
  border-top: 4px solid #c9a227 !important;
}

#pricing .pricing-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
}

#pricing .custom-quote {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

#pricing .pricing-features {
  margin: 0;
  padding: 0;
  flex: 1;
}

#pricing .pricing-features li {
  font-size: 15px;
  line-height: 1.5;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}

#pricing .pricing-features li:last-child {
  border-bottom: none;
}

#pricing .pricing-cta {
  text-align: left;
  margin-top: 22px;
}

@media (max-width: 900px) {
  #pricing .pricing-grid-clean {
    grid-template-columns: 1fr;
  }
}

.how-process-stage {
  min-height: 220px;
  background: var(--paper);
}

.how-scene-svg {
  min-height: 200px;
}

.how-process-rail-wrap {
  min-height: 88px;
}

@media (max-width: 900px) {
  .how-left-col {
    order: 2;
  }

  .how-right-col {
    order: 1;
  }

  .how-desc-card,
  .how-step-title,
  .how-step-desc {
    text-align: left !important;
  }

  .how-desc-icon-wrap {
    justify-content: flex-start !important;
  }

  .how-counter-row {
    text-align: left;
    align-items: flex-start;
  }
}

/* ============ SECTION REDESIGN PASS (2026-07-27) ============ */

/* Shared horizontal book strip */
.book-call-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 20px;
  margin-top: 22px;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 3px;
}

.book-call-strip-text {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  flex: 1;
  min-width: 200px;
}

/* How it works: stage above, timeline full width below */
.how-work-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}

.how-work-stack .how-layout {
  align-items: stretch;
  margin-top: 0;
}

.how-stage-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}

.how-stage-col .how-process-stage {
  flex: 1;
  min-height: min(380px, 44vh);
  display: flex;
  flex-direction: column;
}

.how-stage-col .how-scene-svg {
  flex: 1;
  min-height: 280px;
  object-fit: contain;
}

.how-process-timeline {
  width: 100%;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.how-timeline-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 12px;
  text-align: left;
}

.how-process-timeline .how-process-rail-wrap {
  margin-top: 0;
  padding: 32px 8px 4px;
}

.how-process-timeline .how-process-node-thumb {
  max-height: 72px;
  aspect-ratio: 1.15;
  border-radius: 4px;
}

.how-process-timeline .how-process-node-label {
  font-size: 10px;
}

/* Get your life back - split CTA */
.cta-life-card {
  text-align: left !important;
  max-height: none !important;
  overflow: visible !important;
  padding: 22px 26px 24px !important;
}

.cta-life-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .cta-life-grid {
    grid-template-columns: 1fr;
  }

  .cta-life-panel {
    min-height: 0;
  }
}

.cta-life-list {
  margin: 12px 0 16px;
  padding-left: 1.25rem;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}

.cta-life-list li {
  margin-bottom: 6px;
}

.cta-life-kicker {
  margin-bottom: 0 !important;
}

.cta-life-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  min-height: 100%;
  padding: 28px 26px 26px;
  background: linear-gradient(145deg, #eaf4fb 0%, #f4f7fa 55%, #fff 100%);
  border: 1px solid var(--border);
  border-radius: 3px;
  box-sizing: border-box;
}

.cta-life-panel-inner {
  flex: 1;
}

.cta-life-panel-points {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.cta-life-panel-points li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink);
}

.cta-life-panel-points li:last-child {
  margin-bottom: 0;
}

.cta-life-panel-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 1px;
  background: var(--signal);
}

.cta-life-panel-action {
  padding-top: 4px;
  border-top: 1px solid rgba(11, 61, 92, 0.08);
  margin-top: auto;
}

.cta-life-headline {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 12px;
  text-align: left;
  text-transform: none;
  letter-spacing: -0.02em;
}

.cta-life-panel .section-body {
  margin-bottom: 0;
}

.home-main #hero-lookup .symbol-lookup-placeholder {
  margin-top: 12px;
}

.home-main #hero-lookup .placeholder-chart-svg {
  border: 1px solid var(--border);
  border-radius: 3px;
  background: #fff;
}

#pricing .pricing-book-strip,
.home-main .book-call-strip {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#pricing .pricing-book-strip .book-call-strip-text,
.home-main .book-call-strip .book-call-strip-text {
  text-align: center;
  min-width: 0;
}

.cta-life-panel-action {
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.cta-life-panel .cta-calendar-btn--standalone {
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
}

.wingman-dock-intro {
  margin: 0;
  padding: 12px 16px 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.wingman-dock-home .wingman-starters:not([hidden]) {
  padding: 10px 16px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Agents - compact 6-up */
.agents-grid-compact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

@media (max-width: 900px) {
  .agents-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .agents-grid-compact {
    grid-template-columns: 1fr;
  }
}

.agents-grid-compact .agent-card {
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 2px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--card);
  align-items: start;
}

.agents-grid-compact .agent-icon-svg {
  width: 36px;
  height: 36px;
  grid-row: 1 / span 2;
  align-self: center;
}

.agents-grid-compact .agent-name {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  align-self: end;
}

.agents-grid-compact .agent-desc {
  font-size: 13px;
  line-height: 1.35;
  margin: 0;
  grid-column: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.agents-grid-compact .agent-card-typing {
  display: none;
}

.agents-grid-compact + .agents-footer {
  margin-top: 12px;
}

/* Philosophy split */
.philosophy-card {
  overflow: visible;
}

.philosophy-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

@media (max-width: 960px) {
  .philosophy-split {
    grid-template-columns: 1fr;
  }

  .philosophy-visual {
    order: -1;
  }
}

.philosophy-chart-bg {
  display: none !important;
}

.philosophy-visual {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.philosophy-chart-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--card);
  padding: 14px 14px 10px;
}

.philosophy-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.philosophy-chart-ticker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.philosophy-chart-badge {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: #0fa958;
}

.philosophy-chart-svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 200px;
  aspect-ratio: 2 / 1;
}

.philosophy-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

@media (max-width: 640px) {
  .philosophy-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.philosophy-stat-card {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--paper);
}

.philosophy-stat-value {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--signal);
  line-height: 1.1;
}

.philosophy-stat-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}

.philosophy-chart-note {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 10px 0 0;
  line-height: 1.4;
}

.philosophy-book-strip {
  margin-top: 22px;
}

/* Pricing visual headers - uniform with site cards (no gradient fills) */
#pricing .pricing-grid-clean .pricing-card,
.pricing-card-tier-hero {
  padding: 22px 20px 20px !important;
  overflow: visible;
  border-top-width: 4px !important;
  border-top-style: solid !important;
}

.pricing-card-company,
.pricing-card-tier-hero.pricing-card-company {
  border-top-color: var(--signal) !important;
}

.pricing-card-silver,
.pricing-card-tier-hero.pricing-card-silver {
  border-top-color: #9aa3ad !important;
}

.pricing-card-enterprise,
.pricing-card-tier-hero.pricing-card-enterprise {
  border-top-color: #c9a227 !important;
}

.pricing-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 0 14px;
  margin: 0 0 0;
  background: none;
  border-bottom: 1px solid var(--border);
}

.pricing-card-head h4,
.pricing-card-head .pricing-tier-hero-title {
  margin: 0 !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: var(--ink) !important;
}

.pricing-card-company .pricing-head-icon {
  color: var(--signal);
}

.pricing-card-silver .pricing-head-icon {
  color: #5c6670;
}

.pricing-card-enterprise .pricing-head-icon {
  color: #9a7b1a;
}

.pricing-head-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.pricing-card-head--blue,
.pricing-card-head--gold,
.pricing-card-head--silver,
.pricing-card-head--black {
  background: none;
  color: var(--ink);
}

#pricing .pricing-book-strip {
  margin-top: 22px;
}

#pricing .pricing-cta {
  text-align: left;
  margin-top: 0;
}

#pricing .pricing-card .custom-quote {
  margin: 16px 0 14px;
  padding-bottom: 14px;
}

#pricing .pricing-features {
  padding: 0;
}

/* FAQ Wingman CTA */
.faq-wingman-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin-top: 24px;
  padding: 16px 18px;
  text-align: left;
  background: linear-gradient(90deg, #eaf4fb 0%, #fff 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--signal);
  border-radius: 3px;
  cursor: pointer;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-wingman-cta:hover {
  border-color: var(--signal);
  box-shadow: 0 2px 12px rgba(11, 127, 199, 0.12);
}

.faq-wingman-cta-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 3px;
}

.faq-wingman-cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.faq-wingman-cta-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.faq-wingman-cta-sub {
  font-size: 14px;
  color: var(--ink-soft);
}

.faq-wingman-cta-arrow {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 600;
  color: var(--signal);
}

/* Enforce horizontal book buttons site-wide on home */
.home-main .cta-calendar-btn--standalone {
  flex-direction: row !important;
  width: auto !important;
  min-width: 0 !important;
  height: 56px !important;
  padding: 0 24px !important;
}

.home-main .cta-calendar-btn--standalone .cta-calendar-icon {
  width: 22px !important;
  height: 22px !important;
  margin-bottom: 0 !important;
}

/* ============ BRIEFING SCROLL FIX ============ */
.briefing-text-row {
  align-items: stretch;
  min-height: 0;
}

.briefing-typed-viewport {
  flex: 1;
  min-width: 0;
  min-height: 0;
  max-height: min(320px, 50vh);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: auto;
  touch-action: pan-y;
  scrollbar-width: thin;
}

.briefing-typed-viewport.is-ready,
.briefing-typed-viewport:focus-within {
  outline: none;
}

.briefing-typed-wrap {
  overflow: visible;
}

.briefing-typed-wrap.is-scrollable {
  overflow: visible;
  max-height: none;
  height: auto;
}

.briefing.briefing-collapsed .briefing-typed-wrap {
  overflow: visible;
  max-height: none;
  height: auto;
}

.briefing.briefing-collapsed #typed .briefing-sentence:not(:first-child) {
  display: none;
}

.briefing.briefing-collapsed #typed .briefing-sentence:first-child {
  margin-bottom: 0;
}

.briefing.briefing-collapsed #typed .briefing-sentence:not(:first-child) {
  display: none !important;
}

.home-main .briefing-head .briefing-label.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 0;
  padding: 0;
  color: var(--signal);
  text-transform: uppercase;
  text-align: left;
}

.home-main .briefing-head .title {
  align-items: center;
}

.home-main .briefing-head .briefing-mark {
  width: 22px;
  height: 22px;
}

/* ============ HOW IT WORKS - COMPACT (2026-07-27) ============ */
#how-it-works.section-card-wrap,
#how-it-works .home-content-card,
#how-it-works .process-stage,
#how-it-works .process-wheel-col {
  overflow: visible;
}

#how-it-works .process-wheel-frame {
  overflow: visible;
  max-width: 100%;
}

#how-it-works.process-section-wrap {
  padding-top: 28px;
  padding-bottom: 28px;
  overflow-x: clip;
}

#how-it-works .process-section-card {
  padding: 20px 22px 18px;
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

#how-it-works .section-subline {
  margin-bottom: 0;
}

.how-work-compact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.how-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
}

.how-left-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  min-height: 0;
}

@media (max-width: 900px) {
  .how-main-grid {
    grid-template-columns: 1fr;
  }

  .how-visual-card {
    order: -1;
  }
}

.how-side-col,
.how-step-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.how-counters-panel {
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--paper);
  padding: 8px 10px 8px;
  max-width: none;
  flex: 0 0 auto;
}

#how-it-works .how-desc-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  flex: 1 1 auto;
  min-height: 132px;
  padding: 16px 18px;
  margin-bottom: 0;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--card);
}

#how-it-works .how-desc-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

#how-it-works .how-desc-icon-wrap {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--paper);
}

#how-it-works .how-desc-icon-wrap svg {
  width: 32px;
  height: 32px;
}

#how-it-works .how-desc-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
}

#how-it-works .how-step-number {
  font-size: 22px;
  font-weight: 800;
  color: var(--signal);
  line-height: 1;
  margin: 0;
}

#how-it-works .how-step-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

#how-it-works .how-step-desc {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  flex: 1;
  min-height: 3.5em;
}

.how-visual-card {
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--card);
  padding: 4px;
  min-width: 0;
  min-height: 0;
  display: flex;
  align-self: stretch;
}

#how-it-works .how-visual-card .how-process-stage {
  flex: 1;
  width: 100%;
  min-height: 260px;
  height: 100%;
  max-height: none;
  border: none;
  border-radius: 2px;
  background: var(--paper);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

#how-it-works .how-visual-card .how-scene-svg {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  flex: 1;
}

#how-it-works .how-counters-stack {
  gap: 5px;
}

#how-it-works .how-counter-row {
  padding: 8px 10px;
}

.how-work-compact {
  gap: 8px;
}

.how-timeline-card {
  padding: 8px 10px 6px;
}

#how-it-works .how-process-rail-wrap {
  padding: 18px 2px 0;
}

#how-it-works .how-process-node-thumb {
  max-height: 40px;
}

@media (max-width: 900px) {
  #how-it-works .how-visual-card .how-process-stage,
  #how-it-works .how-visual-card .how-scene-svg {
    min-height: 200px;
  }
}


.how-counters-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 8px;
  text-align: left;
}

#how-it-works .how-counters-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#how-it-works .how-counters-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#how-it-works .how-counter-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--card);
}

#how-it-works .how-counter-row .counter-value {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  flex-shrink: 0;
}

#how-it-works .how-counter-row .counter-label {
  font-size: 9px;
  letter-spacing: 0.06em;
  margin-top: 0;
  text-align: right;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .how-counters-panel {
    max-width: none;
    width: 100%;
  }
}

/* ============ 2026-07-28 homepage pass: signal emphasis, FAB Wingman, stat modals ============ */

.home-main strong,
.home-main .cta-life-kicker strong,
#typed strong {
  color: var(--signal);
  font-weight: 700;
}

.shell.shell--single-col {
  grid-template-columns: minmax(0, 1fr);
  max-width: 920px;
}

@media (min-width: 768px) {
  body:has(.home-main) .shell {
    grid-template-columns: minmax(0, 1fr) 320px;
    max-width: 1400px;
    padding-left: 24px;
    padding-right: 24px;
  }

  body:has(.home-main) .wingman-dock-home {
    display: flex !important;
  }

  body:has(.home-main) .wingman-fab,
  body:has(.home-main) .wingman-float-panel,
  body:has(.home-main) .wingman-float-backdrop {
    display: none !important;
  }
}

@media (max-width: 767px) {
  body:has(.home-main) .wingman-dock-home {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .home-main {
    gap: 0 !important;
  }

  .home-block.section-card-wrap {
    margin-bottom: 0;
  }
}

.market-try-invite {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--signal);
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.hero-lookup-tagline {
  font-size: 16px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0 0 16px;
  max-width: 42ch;
}

.hero-chart-tease {
  margin: 14px 0 0;
  font-size: 16px;
  font-style: italic;
  color: var(--signal);
  text-align: center;
}

@media (min-width: 768px) {
  .hero-chart-tease {
    text-align: left;
  }
}

.philosophy-eyebrow {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
  font-weight: 500;
  margin: 0 0 10px;
}

#philosophy .section-headline {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--ink);
}

.agents-section-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: none;
  color: var(--ink-soft);
  margin: 14px 0 10px;
  font-weight: 600;
}

.agents-footer--link-only {
  margin-top: 12px;
  padding-top: 0;
  border-top: none;
}

.agents-footer--link-only p {
  display: none;
}

#agents-showcase .agents-grid-compact {
  gap: 10px;
}

#agents-showcase .agent-card {
  padding: 12px 14px;
}

#agents-showcase .section-subline {
  margin-bottom: 0;
}

.philosophy-lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 16px;
  max-width: 42ch;
}

.philosophy-points {
  margin: 0 0 18px;
  padding-left: 1.15rem;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.philosophy-points li {
  margin-bottom: 10px;
}

.philosophy-points li:last-child {
  margin-bottom: 0;
}

.philosophy-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.philosophy-metric {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--mist);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.philosophy-opener .philosophy-card--intro {
  padding: clamp(28px, 5vw, 44px) clamp(22px, 4vw, 36px);
}

.philosophy-opener-headline {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem) !important;
  line-height: 1.12;
  max-width: 22ch;
  margin-bottom: 18px;
}

.philosophy-lead--intro {
  font-size: clamp(17px, 2.2vw, 19px);
  max-width: 52ch;
  margin-bottom: 22px;
}

.philosophy-points--intro {
  font-size: clamp(15px, 1.8vw, 17px);
  margin-bottom: 28px;
}

.philosophy-points--intro li {
  margin-bottom: 14px;
}

.philosophy-copy--intro {
  max-width: 720px;
}

#conviction .philosophy-lead {
  max-width: 48ch;
}

.book-call-section .section-subline--tight {
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

.lookup-cta-buttons .lookup-cta-secondary {
  font-size: 14px;
  padding: 12px 18px;
}

.lookup-cta-text {
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

.philosophy-stat-card {
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.philosophy-stat-card:hover,
.philosophy-stat-card:focus-visible {
  border-color: var(--signal);
  box-shadow:
    0 0 0 2px rgba(11, 127, 199, 0.35),
    0 6px 16px rgba(11, 127, 199, 0.12);
  transform: translateY(-1px);
  outline: none;
}

/* Floating Wingman */
.wingman-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 4px 12px rgba(15, 76, 129, 0.24);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.wingman-fab-icon {
  width: 28px;
  height: 28px;
}

@media (max-width: 767px) {
  .wingman-fab {
    width: 56px;
    height: 56px;
  }

  .wingman-fab-icon {
    width: 24px;
    height: 24px;
  }
}

.wingman-float-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(12, 27, 42, 0.45);
}

.wingman-float-backdrop[hidden] {
  display: none !important;
}

.wingman-float-backdrop.is-visible {
  display: block;
}

.wingman-float-panel[hidden],
.wingman-float-panel:not(.is-open) {
  display: none !important;
}

.wingman-float-panel {
  position: fixed;
  z-index: 10001;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(12, 27, 42, 0.18);
}

.wingman-float-panel.is-open {
  display: flex !important;
  animation: wingman-panel-in 0.2s ease-out;
}

@keyframes wingman-panel-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .wingman-float-panel.is-open {
    inset: 0;
    width: 100vw;
    height: 100vh;
    max-height: none;
    border-radius: 0;
    animation-name: wingman-panel-in;
  }
}

@media (min-width: 768px) {
  .wingman-float-panel.is-open {
    top: 0;
    right: 0;
    width: 420px;
    height: 100vh;
    max-height: none;
    border-radius: 0;
    animation-name: wingman-drawer-in;
  }

  @keyframes wingman-drawer-in {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }
}

.wingman-float-panel .wm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.wingman-float-panel .wm-name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
}

.wingman-float-panel .wm-close {
  display: block;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
}

.wingman-float-intro {
  margin: 0;
  padding: 14px 16px 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.wingman-float-panel .wingman-starters:not([hidden]) {
  padding: 12px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wingman-float-panel .wingman-messages {
  flex: 1;
  overflow-y: auto;
  padding: 8px 16px 12px;
  min-height: 80px;
}

.wingman-float-panel .wm-input-row {
  padding: 12px 16px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
}

body:has(.home-main) .wingman-pill,
body:has(.home-main) .wingman-backdrop {
  display: none !important;
}

/* Stat report modals */
.stat-modal-root {
  display: none !important;
}

.stat-modal-root.is-active {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.stat-modal-root[hidden]:not(.is-active) {
  display: none !important;
}

.stat-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.stat-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: 3px;
  border: 1px solid var(--border);
  padding: 0;
}

.stat-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: #fff;
}

.stat-modal-header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.stat-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
  padding: 0 4px;
}

.stat-modal-body {
  padding: 18px 20px 22px;
}

.mock-report {
  border: 1px solid var(--hairline);
  border-radius: 3px;
  padding: 14px;
  background: #fff;
  margin-bottom: 18px;
}

.mock-report-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 10px;
}

.mock-report-metrics {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.mock-metric {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--mist);
}

.mock-report-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.mock-report-table th,
.mock-report-table td {
  border-bottom: 1px solid var(--hairline);
  padding: 6px 8px;
  text-align: left;
}

.mock-chart-svg {
  width: 100%;
  height: auto;
  display: block;
}

.mock-report-caption {
  margin: 10px 0 0;
  font-size: 11px;
  color: var(--faint);
}

.sig-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
}

.sig-dot.sig-2 {
  opacity: 0.75;
}

.sig-dot.sig-1 {
  opacity: 0.45;
}

.stat-modal-subhead {
  font-size: 16px;
  margin: 0 0 8px;
  color: var(--ink);
}

.stat-modal-copy {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 12px;
}

.stat-modal-footnote {
  font-size: 12px;
  color: var(--faint);
  margin: 0;
}

body.stat-modal-open {
  overflow: hidden;
}

body.wingman-panel-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .philosophy-stat-grid {
    gap: 16px;
  }
}

/* ============ 2026-07-28 polish pass: briefing fade, chips, section rhythm, mock IR charts ============ */

.briefing-sentence {
  display: block;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 455ms ease-out, transform 455ms ease-out;
}

.briefing-sentence.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.briefing-typed-wrap #typed {
  padding-top: 16px;
  padding-bottom: 12px;
}

/* ============ 2026-07-28 polish pass (4): invite, dial, pitch ============ */

.symbol-lookup-invite.hero-tagline {
  width: 100%;
  max-width: 100%;
  margin-top: 18px;
  padding: 18px 0 0;
  border-top: 1px solid var(--border);
}

.symbol-lookup-invite.hero-tagline .hero-tagline-head {
  margin: 0;
  max-width: none;
}

.symbol-lookup-invite-text {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--signal);
  letter-spacing: 0.01em;
  max-width: none;
}

.symbol-lookup-invite-em {
  color: var(--signal);
  font-weight: 500;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px 20px;
  align-items: center;
  max-width: 100%;
}

.process-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  max-width: 400px;
  justify-content: center;
}

.process-intro {
  margin: 0;
}

.process-intro .eyebrow {
  margin: 0 0 6px;
}

.process-intro-headline {
  margin: 0 0 6px;
}

.process-intro-lede {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted, #5a6572);
  max-width: 28em;
}

.process-copy {
  min-width: 0;
  max-width: 300px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: 0;
}

.process-kicker {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--signal);
  transition: opacity 455ms ease;
}

.process-title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.32;
  color: var(--ink, #0b3d5c);
  transition: opacity 455ms ease;
}

.process-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted, #5a6572);
  transition: opacity 455ms ease;
}

.process-stat {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink, #0b3d5c);
  transition: opacity 455ms ease;
}

/* stat line lives above wheel (.process-wheel-stat) */

.process-copy.is-changing .process-kicker,
.process-copy.is-changing .process-title,
.process-copy.is-changing .process-desc {
  opacity: 0.42;
}

.process-wheel-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  width: 100%;
}

.process-wheel-caption {
  width: 100%;
  max-width: 420px;
  text-align: center;
  margin: 0;
  padding: 0 4px;
}

.process-wheel-kicker {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--signal);
  transition: opacity 455ms ease;
}

.process-wheel-stat {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink, #0b3d5c);
  transition: opacity 455ms ease;
}

.process-layout:has(.process-copy.is-changing) .process-wheel-kicker,
.process-layout:has(.process-copy.is-changing) .process-wheel-stat {
  opacity: 0.42;
}

.process-stage {
  display: flex;
  flex-direction: column;
  margin: 0;
  position: relative;
  width: 100%;
}

.process-wheel-frame {
  position: relative;
  width: min(100%, 420px);
  max-width: 420px;
  aspect-ratio: 1;
  flex-shrink: 0;
  margin: 0 auto;
}

.process-dial-labels-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.process-wheel-pointer {
  position: absolute;
  left: 50%;
  top: -2px;
  z-index: 3;
  width: 0;
  height: 0;
  margin-left: -7px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 10px solid var(--signal);
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.9));
}

.process-dial-section {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
  position: relative;
}

.process-dial-grid {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 16px 12px;
  align-items: start;
}

.process-dial-col {
  position: relative;
  min-height: 0;
  width: 160px;
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-self: center;
  overflow: visible;
  padding-right: 0;
}

.process-dial-viewport {
  position: relative;
  width: 160px;
  height: 320px;
  flex-shrink: 0;
  overflow: hidden;
  border-right: 3px solid var(--signal);
  box-sizing: border-box;
}

.process-stage .process-dial-rotator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  right: auto;
  top: auto;
  transform-origin: 50% 50%;
  will-change: transform;
}

.process-stage .process-dial-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.process-dial-rotator {
  position: absolute;
  right: 0;
  top: 50%;
  width: 160px;
  height: 320px;
  margin-top: -160px;
  transform-origin: 100% 50%;
  transition: transform 750ms cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}

.process-dial-svg {
  display: block;
  width: 160px;
  height: 320px;
}

.process-step-card {
  min-width: 0;
  text-align: left;
  padding: 4px 0;
}

.process-step-eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
}

.process-step-headline {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink, #0b3d5c);
}

.process-step-body {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted, #5a6572);
}

.process-step-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 3px;
  background: rgba(11, 127, 199, 0.08);
  max-width: 420px;
}

.process-step-stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--signal);
}

.process-step-stat-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink, #0b3d5c);
}

.process-stage .process-dial-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  right: auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 68px;
  height: 68px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--signal);
  pointer-events: none;
  box-sizing: border-box;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.9);
}

.process-dial-hub {
  position: absolute;
  left: calc(100% - 39px);
  top: 50%;
  right: auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--signal);
  pointer-events: none;
  box-sizing: border-box;
}

.process-wedge-path {
  stroke: #fff;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  transition: d 1200ms cubic-bezier(0.33, 1, 0.68, 1), fill 280ms ease;
  cursor: pointer;
  pointer-events: all;
}

.process-wheel-frame.is-wheel-hot {
  cursor: pointer;
}

.process-wedge.is-hovered:not(.is-active) .process-wedge-path {
  fill: rgba(11, 127, 199, 0.42);
}

.process-wedge--shade-0 .process-wedge-path {
  fill: rgba(11, 127, 199, 0.16);
}

.process-wedge--shade-1 .process-wedge-path {
  fill: rgba(11, 127, 199, 0.28);
}

.process-wedge.is-active .process-wedge-path {
  fill: var(--signal);
}

.process-wedge-label-group {
  pointer-events: none;
}

.process-wedge-label {
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  fill: var(--signal);
}

.process-wedge-label-stack {
  text-anchor: middle;
}

.process-wedge-label-stack .process-wedge-num {
  fill: var(--signal);
}

.process-wedge-label-stack .process-wedge-name {
  fill: var(--signal);
  letter-spacing: 0.03em;
}

.process-wedge-name {
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.04em;
  fill: var(--signal);
}

.process-wedge.is-active .process-wedge-num,
.process-wedge.is-active .process-wedge-name {
  fill: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .process-stage .process-dial-rotator,
  .process-dial-rotator {
    transition: none;
  }

  .process-wedge-path {
    transition: none;
  }
}

.process-wedge.is-active .process-wedge-label {
  fill: #fff;
}

.process-dial-hub-num {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  color: var(--signal);
}

.process-dial-hub-rule {
  display: block;
  width: 28px;
  height: 1px;
  margin: 4px 0;
  background: #d0d8e2;
}

.process-dial-hub-name {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--signal);
  text-align: center;
  text-transform: none;
  line-height: 1.15;
  max-width: 58px;
}

.process-timeline-wrap {
  position: relative;
  width: 100%;
  margin-top: 20px;
  padding: 14px 0 0;
}

.process-timeline-rail {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(11, 127, 199, 0.15),
    rgba(11, 127, 199, 0.45),
    rgba(11, 127, 199, 0.15)
  );
  border-radius: 1px;
  pointer-events: none;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  align-items: stretch;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.process-timeline .process-step-btn {
  display: inline-flex !important;
  flex-direction: row !important;
  flex: 1 1 0;
  width: 100%;
  min-width: 0;
  max-width: none;
  white-space: nowrap;
  padding: 8px 6px;
  font-size: clamp(9px, 1.05vw, 11px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  min-height: 36px;
  justify-content: center;
}

.process-step-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  line-height: 1.2;
  min-height: 36px;
  border-radius: var(--radius);
  white-space: nowrap;
  width: auto;
  flex: 0 0 auto;
}

.process-step-btn.btn.outline.is-active,
.process-step-btn.btn.is-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.process-step-btn.btn.outline.is-active:hover,
.process-step-btn.btn.is-active:hover {
  color: #fff;
}

.process-dial-wingman-chip {
  align-self: flex-end;
  margin-left: auto;
  margin-top: 12px;
  margin-bottom: 0;
}

.cta-pitch-wrap {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border-radius: 12px;
}

#book-audit-cta.section-card-wrap {
  padding-bottom: 0;
}

#book-audit-cta .home-content-card.cta-pitch-wrap {
  border-radius: 12px;
  padding: 40px;
}

.cta-pitch-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(58%, 520px);
  pointer-events: none;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 8px 12px 0;
  box-sizing: border-box;
}

.cta-pitch-watermarks {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  opacity: 0.42;
}

.cta-pitch-wm {
  opacity: 0.85;
}

.cta-pitch-faux-header {
  font-size: 11px;
  font-weight: 600;
  color: #0b3d5c;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e8edf2;
}

.cta-pitch-market-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e8edf2;
}

.cta-pitch-market-head .cta-pitch-faux-header {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.cta-pitch-market-change {
  font-size: 12px;
  font-weight: 700;
  color: #d93a2b;
  white-space: nowrap;
}

.cta-pitch-email-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid #eef2f6;
}

.cta-pitch-email-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cta-pitch-email-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.cta-pitch-email-from {
  font-size: 11px;
  font-weight: 600;
  color: #0b3d5c;
}

.cta-pitch-email-subject {
  font-size: 10px;
  color: #5a6572;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cta-pitch-email-time {
  flex-shrink: 0;
  font-size: 9px;
  color: #94a3b8;
  padding-top: 2px;
}

.cta-pitch-mini-chart {
  display: block;
  width: 100%;
  height: 72px;
}

.cta-pitch-chart-axis {
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 9px;
  fill: #94a3b8;
}

.cta-pitch-wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 255, 255, 0.92) 42%,
    rgba(255, 255, 255, 0.72) 58%,
    rgba(255, 255, 255, 0.45) 100%
  );
}

.cta-pitch-foreground {
  position: relative;
  z-index: 2;
  max-width: 640px;
  text-align: left;
}

.cta-pitch-eyebrow {
  margin-bottom: 12px;
}

.cta-pitch-headline {
  margin: 0 0 20px;
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 500;
  line-height: 1.12;
}

.cta-pitch-foreground .cta-pitch-body:first-of-type {
  margin-top: 8px;
}

.cta-pitch-headline-line {
  display: block;
}

.cta-pitch-headline-line--signal {
  color: var(--signal);
}

.cta-pitch-body {
  margin: 8px 0 24px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted, #5a6572);
}

.cta-pitch-body:last-of-type {
  margin-bottom: 8px;
}

.cta-pitch-tagline {
  margin: 8px 0 12px;
  font-size: 20px;
  font-weight: 500;
  color: var(--signal);
}

.cta-pitch-cta {
  margin-top: 0;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .cta-pitch-bg {
    width: 50%;
  }

  .cta-pitch-watermarks {
    opacity: 0.34;
  }

  .cta-pitch-wash {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.9) 48%,
      rgba(255, 255, 255, 0.55) 100%
    );
  }
}

/* HOW IT WORKS - stack below desktop; side-by-side only when there is room */
@media (max-width: 960px) {
  #how-it-works .process-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: stretch;
  }

  #how-it-works .process-left {
    max-width: none;
    width: 100%;
    order: 1;
  }

  #how-it-works .process-intro-lede {
    max-width: none;
  }

  #how-it-works .process-copy {
    max-width: none;
    min-height: 0;
    padding: 0;
  }

  #how-it-works .process-intro-headline.section-headline {
    font-size: clamp(1.45rem, 5.5vw, 1.85rem);
    line-height: 1.2;
    margin-bottom: 8px;
  }

  #how-it-works .process-wheel-col {
    order: 2;
    width: 100%;
    margin: 0 auto;
  }

  /* Stat line stays above wheel; hide duplicate step kicker (copy block has it) */
  #how-it-works .process-wheel-caption {
    display: block;
    text-align: center;
    max-width: 100%;
    padding: 0 8px;
  }

  #how-it-works .process-wheel-kicker {
    display: none;
  }

  #how-it-works .process-wheel-stat {
    margin-bottom: 4px;
  }

  #how-it-works .process-stage {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  #how-it-works .process-wheel-frame {
    width: min(100%, 340px);
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  #how-it-works .process-timeline-wrap {
    order: 3;
    margin-top: 4px;
    width: 100%;
  }

  #how-it-works .process-section-card {
    padding: 18px 16px 16px;
  }

  #how-it-works .process-timeline {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-width: 0;
    gap: 4px;
  }

  #how-it-works .process-timeline .process-step-btn {
    font-size: clamp(8px, 2.4vw, 10px);
    padding: 8px 3px;
    min-height: 32px;
  }
}

@media (min-width: 961px) {
  #how-it-works .process-layout {
    grid-template-columns: minmax(0, 420px) minmax(280px, 1fr);
    gap: 8px 24px;
  }

  #how-it-works .process-left {
    max-width: 420px;
  }
}

@media (max-width: 767px) {
  .home-main {
    overflow-x: clip;
  }

  .lookup-chart-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  #how-it-works .process-wheel-frame {
    width: min(100%, 300px);
    max-width: 300px;
  }

  #how-it-works .process-timeline-wrap {
    overflow-x: visible;
  }

  #book-audit-cta .home-content-card.cta-pitch-wrap {
    padding: 22px 18px 18px;
    border-radius: 12px;
    min-height: 0;
  }

  .cta-pitch-bg {
    display: flex;
    width: 100%;
    height: 38%;
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 0 12px 8px;
    opacity: 1;
  }

  .cta-pitch-watermarks {
    opacity: 0.32;
    max-height: 260px;
  }

  .cta-pitch-wash {
    display: block;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.94) 50%,
      rgba(255, 255, 255, 0.78) 72%,
      rgba(255, 255, 255, 0.55) 100%
    );
  }

  .cta-pitch-foreground {
    max-width: none;
  }

  .home-main .home-content-card {
    overflow-x: clip;
  }

  .process-dial-grid {
    grid-template-columns: 1fr;
  }

  .process-dial-wingman-chip {
    align-self: flex-start;
    margin-left: 0;
  }
}

@media (min-width: 961px) and (max-width: 1024px) {
  #how-it-works .process-layout {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    gap: 12px 16px;
  }

  #how-it-works .process-wheel-frame {
    max-width: 340px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .process-dial-grid {
    grid-template-columns: 1fr 150px;
  }

  .process-dial-col {
    width: 150px;
  }

  .process-dial-viewport,
  .process-dial-rotator,
  .process-dial-svg {
    width: 150px;
    height: 300px;
  }

  .process-dial-rotator {
    margin-top: -150px;
  }
}

.home-main .home-block {
  padding-top: 36px;
  padding-bottom: 36px;
}

@media (max-width: 767px) {
  .home-main .home-block {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

.home-content-card {
  display: flex;
  flex-direction: column;
}

.wingman-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 36px;
  margin-top: 16px;
  margin-bottom: 20px;
  padding: 0 14px;
  border: 1.5px solid var(--signal);
  border-radius: 3px;
  background: #fff;
  color: var(--signal);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.wingman-chip--philosophy {
  align-self: flex-start;
  margin-bottom: 0;
}

.philosophy-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.wingman-chip-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .wingman-chip {
    align-self: center;
  }
}

@media (min-width: 768px) {
  .wingman-chip {
    align-self: flex-end;
  }
}

@media (hover: hover) {
  .wingman-chip:hover {
    background: var(--signal);
    color: #fff;
    box-shadow: 0 2px 8px rgba(15, 76, 129, 0.2);
  }
}

.mock-report-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #64748B;
  margin: 0 0 8px;
}

.mock-report-caption,
.mock-report-source {
  font-size: 11px;
  color: #94A3B8;
  margin: 8px 0 0;
}

.mock-report-table-catalysts thead th {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: #64748B;
  border-bottom: 1px solid #E5E7EB;
}

.mock-report-table-catalysts tbody tr:nth-child(even) {
  background: #F9FAFB;
}

.mock-report-table-catalysts tbody tr:nth-child(odd) {
  background: #fff;
}

.mock-detected {
  text-align: right;
  color: #64748B;
}

.strength-dots {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.strength-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E5E7EB;
}

.strength-dot.is-on {
  background: var(--signal);
}

.mock-chart-legend {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
  font-size: 11px;
  color: #64748B;
}

.mock-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mock-swatch {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  display: inline-block;
}

.mock-swatch-muted {
  background: #94A3B8;
}

.mock-swatch-signal {
  background: var(--signal);
}

.mock-report-has-callout {
  position: relative;
}

.mock-report-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  border-radius: 3px;
  background: var(--signal);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

.stat-modal-dialog--demo {
  max-width: 480px;
}

.stat-modal-body--demo {
  padding: 32px;
}

.demo-request-copy {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

.demo-request-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  padding: 0 24px;
  border-radius: 3px;
  background: var(--signal);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.demo-request-secondary {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 8px 0;
  border: none;
  background: none;
  color: var(--signal);
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
  text-align: center;
}

/* ============ 2026-07-28 site flow & polish ============ */

.home-main > .home-block.section-card-wrap,
.home-main > .surface.briefing-card {
  margin-bottom: 0;
}

.home-main .home-block.section-card-wrap {
  padding-top: 20px;
  padding-bottom: 20px;
}

.home-main .home-content-card {
  padding: 24px 28px 22px;
}

@media (max-width: 767px) {
  .home-main .home-content-card {
    padding: 18px 16px 16px;
  }

  .home-main .home-block.section-card-wrap {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

.home-main .section-subline--tight {
  margin-bottom: 16px;
}

.section-headline--compact {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 12px;
}

.stat--interactive {
  cursor: pointer;
  font: inherit;
  color: inherit;
  width: 100%;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.stat--interactive:hover {
  border-color: var(--signal);
  box-shadow: 0 0 0 1px rgba(11, 127, 199, 0.25);
}

.stat--interactive:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 2px;
}

.briefing-modal-list,
.briefing-modal-layers {
  margin: 12px 0 16px;
  padding-left: 1.2rem;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.briefing-modal-layers li {
  margin-bottom: 8px;
}

.briefing-modal-agent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 12px 0 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.briefing-workflow-diagram {
  display: block;
  width: 100%;
  max-width: 520px;
  margin: 12px 0 16px;
}

.briefing-workflow-diagram .wf-label,
.briefing-workflow-diagram .wf-name {
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 10px;
  fill: #0b7fc7;
  font-weight: 700;
}

.briefing-workflow-diagram .wf-name {
  font-size: 8px;
  letter-spacing: 0.04em;
}

.briefing-workflow-diagram .wf-label-on,
.briefing-workflow-diagram .wf-name-on {
  fill: #fff;
}

.video-container--product {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.video-product-chrome {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: #0b3d5c;
  color: #fff;
  font-size: 12px;
}

.video-product-title {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.video-product-meta {
  opacity: 0.85;
  font-size: 11px;
}

.video-container--product video {
  display: block;
  width: 100%;
  max-height: 280px;
  object-fit: cover;
}

.video-product-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px 14px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.92) 28%);
  pointer-events: none;
}

.video-product-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 11px;
  color: #0b3d5c;
  border-bottom: 1px solid rgba(11, 61, 92, 0.08);
}

.video-product-row:last-child {
  border-bottom: none;
}

.video-product-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  flex-shrink: 0;
}

.video-product-line {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-product-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--signal);
  text-transform: uppercase;
}

.video-caption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-soft);
}

.cta-pitch-headline {
  margin: 0 0 10px;
  max-width: 26ch;
}

.cta-pitch-kicker {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--signal);
  max-width: 32ch;
}

.cta-pitch-foreground .cta-pitch-body:first-of-type {
  margin-top: 0;
}


.hero-lookup-tagline {
  margin-bottom: 12px;
}

.stat-strip {
  margin-top: 18px;
}

.hero-tagline {
  margin-top: 14px;
  padding-top: 14px;
}

/* Request audit section (home) */
#philosophy,
#book-call,
#conviction,
#audit-form,
#hero-lookup {
  scroll-margin-top: 64px;
}

.request-audit-section .request-audit-card {
  padding-bottom: 8px;
}

.request-audit-trust {
  margin-top: 18px;
}

.trust-chip--link {
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 0.15s, border-color 0.15s;
}

.trust-chip--link:hover {
  color: var(--signal);
  border-color: var(--signal);
  text-decoration: none;
}

.audit-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.audit-form .form-error {
  flex: 1 1 100%;
  margin: 0;
}

/* Taskbar More menu */
.taskbar-more {
  position: relative;
  display: flex;
  align-items: stretch;
  height: 100%;
}

.taskbar-more-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.taskbar-more-panel {
  position: absolute;
  top: calc(100% + 2px);
  right: 0;
  min-width: 168px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(11, 61, 92, 0.12);
  padding: 6px 0;
  z-index: 60;
}

.taskbar-more-panel a {
  display: block;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}

.taskbar-more-panel a:hover {
  background: var(--mist);
  color: var(--signal);
  text-decoration: none;
}

@media (max-width: 960px) {
  .taskbar-more {
    display: none;
  }
}

/* Pricing first-call block */
.pricing-call-block {
  margin-top: 28px;
  padding: 20px 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.pricing-call-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 12px;
}

.pricing-call-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.55;
}

.pricing-call-list li + li {
  margin-top: 6px;
}

/* Sticky mobile audit CTA */
.site-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(11, 61, 92, 0.08);
  display: flex;
  justify-content: center;
}

.site-sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 420px);
  padding: 12px 20px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: var(--signal);
  border-radius: var(--radius);
}

.site-sticky-cta-btn:hover {
  text-decoration: none;
  filter: brightness(1.05);
}

@media (min-width: 768px) {
  .site-sticky-cta {
    display: none !important;
  }
}

body.wingman-panel-open .site-sticky-cta {
  display: none !important;
}

/* Content subpages (about, compare, resources) */
.content-page-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 20px 48px;
}

.content-page-card {
  padding: 28px 26px 32px;
}

.content-page-card h1 {
  font-size: clamp(1.65rem, 4vw, 2rem);
  margin: 0 0 12px;
  color: var(--navy);
}

.content-page-card .content-lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 20px;
}

.content-page-card h2 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 28px 0 10px;
}

.content-page-card p,
.content-page-card li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
}

.content-page-card ul {
  margin: 0 0 16px;
  padding-left: 1.2rem;
}

.about-orchestration-points {
  list-style: none;
  padding-left: 0;
  margin: 20px 0 24px;
  border-left: 3px solid var(--signal);
  padding-left: 18px;
}

.about-orchestration-points li {
  margin-bottom: 12px;
}

.about-orchestration-points li:last-child {
  margin-bottom: 0;
}

.about-flow-chain {
  margin: 16px 0 20px;
  padding-left: 1.35rem;
}

.about-flow-chain li {
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--navy);
}

.about-integrations-grid {
  margin-bottom: 16px;
}

.content-page-card .btn.solid {
  display: inline-block;
  margin-top: 8px;
  text-decoration: none;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 12px 0 20px;
}

.compare-table th,
.compare-table td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  background: var(--mist);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  margin: 16px 0 8px;
}

.integration-tile {
  padding: 14px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--paper);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}

.resources-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.resources-list li {
  border-bottom: 1px solid var(--border);
}

.resources-list a {
  display: block;
  padding: 14px 0;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
}

.resources-list a:hover {
  color: var(--signal);
}

.resources-list span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-soft);
  margin-top: 4px;
}

.footer-links {
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
}

.audit-page-form-wrap {
  margin-top: 20px;
}

/* ============ COOKIE CONSENT BANNER ============ */
#cookie-consent-root {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10050;
  width: 100%;
  max-width: 100%;
  padding: 0;
  pointer-events: none;
  box-sizing: border-box;
}

#cookie-consent-root[hidden] {
  display: none !important;
}

.cookie-consent-banner {
  pointer-events: auto;
  width: 100%;
  max-width: none;
  margin: 0;
}

.cookie-consent-panel {
  width: 100%;
  box-sizing: border-box;
  background: var(--ink);
  color: #fff;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  box-shadow: 0 -8px 32px rgba(12, 27, 42, 0.28);
  padding:
    18px
    max(16px, env(safe-area-inset-right))
    calc(18px + env(safe-area-inset-bottom, 0px))
    max(16px, env(safe-area-inset-left));
}

.cookie-consent-view {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.cookie-consent-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 8px;
}

.cookie-consent-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.25;
}

.cookie-consent-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 18px;
}

.cookie-consent-desc a {
  color: #7ec8f0;
  text-decoration: underline;
}

.cookie-consent-desc a:hover {
  color: #fff;
}

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

.cookie-consent-actions .btn.solid {
  background: var(--signal);
  border-color: var(--signal);
  color: #fff;
}

.cookie-consent-btn-on-dark {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.cookie-consent-btn-on-dark:hover {
  background: rgba(255, 255, 255, 0.08);
}

.cookie-consent-link-btn {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  background: none;
  border: none;
  padding: 8px 4px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent-link-btn:hover {
  color: #fff;
}

.cookie-consent-categories {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-consent-category p {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
}

.cookie-consent-category-head,
.cookie-consent-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-consent-toggle {
  cursor: pointer;
  width: 100%;
}

.cookie-consent-category-name {
  font-weight: 700;
  font-size: 14px;
}

.cookie-consent-always {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cookie-consent-toggle input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.cookie-consent-switch {
  flex-shrink: 0;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  position: relative;
  transition: background 0.2s;
}

.cookie-consent-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s;
}

.cookie-consent-toggle input:checked + .cookie-consent-switch {
  background: var(--signal);
}

.cookie-consent-toggle input:checked + .cookie-consent-switch::after {
  transform: translateX(20px);
}

.cookie-consent-toggle input:focus-visible + .cookie-consent-switch {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.footer-cookie-prefs {
  font-family: inherit;
  font-size: inherit;
  color: #e3e8ee;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
}

.footer-cookie-prefs:hover {
  color: #fff;
  text-decoration: underline;
}

body.cookie-banner-open {
  padding-bottom: env(safe-area-inset-bottom, 0);
}

@media (min-width: 768px) {
  .cookie-consent-panel {
    padding:
      20px
      max(24px, env(safe-area-inset-right))
      calc(20px + env(safe-area-inset-bottom, 0px))
      max(24px, env(safe-area-inset-left));
  }

  .cookie-consent-actions {
    flex-wrap: nowrap;
  }
}

@media (max-width: 560px) {
  .cookie-consent-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent-actions .btn,
  .cookie-consent-link-btn {
    width: 100%;
    text-align: center;
  }
}

/* ============ SITEWIDE POLISH PASS (2026-08-02) ============ */
/* Compact image banners, unified type, consistent home cards */

/* --- Image banners (blog, video fallback, carousel) --- */
.blog-card-media {
  aspect-ratio: auto;
  max-height: 148px;
}

.blog-card-media img,
.blog-hero-image img,
.video-hero-fallback img,
.video-modal-fallback img,
.video-slot img,
.site-banner-img,
.banner-slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 148px;
  object-fit: cover;
  object-position: center 35%;
}

.blog-hero-image {
  margin: 0 0 22px;
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 168px;
  border: 1px solid var(--border);
  background: var(--mist);
}

.blog-hero-image img {
  max-height: 168px;
}

.banner-slide img,
.site-banner-img {
  max-height: 96px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

.video-container {
  max-height: 320px;
  aspect-ratio: 21 / 9;
}

.video-container video,
.video-hero-fallback img {
  max-height: 320px;
}

.video-slot {
  max-height: 200px;
  aspect-ratio: 21 / 9;
}

/* --- Unified section eyebrows (home + subpages) --- */
.home-main .eyebrow,
.home-main .briefing-label.eyebrow,
.section .eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
  line-height: 1.35;
  margin: 0 0 10px;
  text-align: left;
}

.philosophy-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
  margin: 0 0 10px;
}

.philosophy-opener .philosophy-eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
}

.content-page-card .eyebrow,
.page-hero .eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
  margin: 0 0 10px;
}

/* --- Lookup invite (was oversized by duplicate rules) --- */
.market-try-invite {
  font-size: 18px !important;
  font-weight: 600;
  color: var(--ink) !important;
  line-height: 1.35;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  text-align: left;
}

.hero-tagline-head,
.home-card-kicker {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 12px 0 0;
  max-width: 48ch;
}

/* --- Section copy alignment --- */
.home-main .section-subline,
.home-main .section-subline--tight,
.home-main .section-body {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  color: var(--ink-soft);
  max-width: 62ch;
}

.home-main .section-headline {
  color: var(--ink);
}

.home-main .section-headline--compact {
  max-width: none;
}

#agents-showcase .section-headline,
#how-it-works .section-headline,
#pricing .section-headline {
  max-width: none;
}

.agents-section-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 10px 0 8px;
  font-weight: 600;
}

/* --- Card surfaces --- */
.home-content-card,
.surface,
.content-page-card,
.hub-card,
.platform-scale-card,
.philosophy-stat-card,
.card-elevated {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow:
    0 4px 24px rgba(11, 61, 92, 0.08),
    0 1px 3px rgba(11, 61, 92, 0.06);
}

.home-content-card {
  padding: clamp(24px, 4vw, 36px) clamp(18px, 3vw, 28px);
}

.home-block.section-card-wrap + .home-block.section-card-wrap {
  margin-top: 0;
}

/* --- Conviction chart: less vertical dominance --- */
.philosophy-chart-svg {
  min-height: 0;
  max-height: 140px;
  aspect-ratio: 2.2 / 1;
}

.philosophy-stat-value {
  font-size: 20px;
}

.philosophy-stat-card {
  background: var(--card);
}

/* --- Process wheel: cap size on small screens --- */
@media (max-width: 767px) {
  #how-it-works .process-wheel-frame {
    width: min(100%, 280px);
    max-width: 280px;
  }

  .blog-card-media,
  .blog-card-media img {
    max-height: 120px;
  }

  .blog-hero-image,
  .blog-hero-image img {
    max-height: 140px;
  }
}

@media (min-width: 768px) {
  .blog-card-media {
    max-height: 160px;
  }
}

/* ============ HOME COPY RESTRUCTURE (2026-08-02) ============ */
.intro-platform-tagline {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.5;
  color: var(--ink);
  margin: 20px 0 12px;
  max-width: 52ch;
}

.intro-cta-wrap {
  margin: 16px 0 0;
}

.intro-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.intro-learn-more::after {
  content: "";
  display: inline-block;
  width: 0.42em;
  height: 0.42em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -0.2em;
}

.intro-learn-arrow {
  font-size: 1.15em;
  line-height: 1;
  transform: translateY(1px);
}

.why-subhead,
.advantage-subhead {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 24px 0 10px;
}

.why-closer {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin: 20px 0 0;
  max-width: 52ch;
}

.platform-scale-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 28px;
}

@media (max-width: 720px) {
  .platform-scale-grid {
    grid-template-columns: 1fr;
  }
}

.platform-scale-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 16px 16px 14px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  text-align: left;
}

.platform-scale-card:hover,
.platform-scale-card:focus-visible {
  border-color: var(--signal);
  box-shadow: 0 0 0 1px rgba(11, 127, 199, 0.2);
  outline: none;
}

.platform-scale-card--wingman {
  border-left: 3px solid var(--signal);
  background: linear-gradient(135deg, #f5faff 0%, #ffffff 100%);
}

.platform-scale-value {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--signal);
  line-height: 1;
  margin-bottom: 6px;
}

.platform-scale-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.3;
}

.platform-scale-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 10px;
}

.platform-scale-link {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--signal);
}

#your-advantage .section-headline {
  max-width: none;
}

#why-tier1ai .philosophy-lead {
  max-width: 62ch;
}

#why-tier1ai .philosophy-points {
  max-width: 62ch;
}

.process-cycle-tagline {
  margin: 16px 0 0;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  text-align: center;
}

/* ============ TYPE HIERARCHY FIX (2026-08-02) ============ */
/* Section label + headline should read as one unit, not label vs billboard */

.home-main .eyebrow,
.home-main .briefing-label.eyebrow,
.home-main .philosophy-eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  line-height: 1.35;
  margin: 0 0 12px;
  text-align: left;
}

.home-main .section-headline {
  font-size: clamp(1.375rem, 2.2vw, 1.875rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
}

.philosophy-opener-headline,
#philosophy .section-headline.philosophy-opener-headline {
  font-size: clamp(1.5rem, 2.6vw, 2rem) !important;
  line-height: 1.22 !important;
  max-width: 32ch;
  margin: 0 0 18px !important;
}

.home-main .section-headline--compact {
  font-size: clamp(1.25rem, 1.9vw, 1.625rem);
  line-height: 1.28;
  margin-bottom: 14px;
}

#your-advantage .section-headline,
#why-tier1ai .section-headline,
#the-decision .section-headline {
  font-size: clamp(1.375rem, 2.2vw, 1.875rem);
}

@media (max-width: 768px) {
  .home-main .eyebrow,
  .home-main .philosophy-eyebrow {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .home-main .section-headline {
    font-size: 1.3125rem;
  }

  .philosophy-opener-headline,
  #philosophy .section-headline.philosophy-opener-headline {
    font-size: 1.375rem !important;
  }

  .home-main .section-headline--compact {
    font-size: 1.1875rem;
  }
}

/* ============ INTRO + PLATFORM LAYOUT (2026-08-02) ============ */
.intro-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 36px);
  max-width: none;
  width: 100%;
}

.intro-layout-header {
  width: 100%;
}

.intro-layout-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  width: 100%;
}

.philosophy-copy--intro,
.philosophy-opener .philosophy-copy--intro {
  max-width: none;
}

.intro-layout-col {
  min-width: 0;
}

.intro-layout-header .philosophy-opener-headline,
#philosophy .intro-layout-header .philosophy-opener-headline {
  max-width: none !important;
}

.intro-layout-col .philosophy-lead--intro {
  max-width: none;
}

@media (max-width: 900px) {
  .intro-layout-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.platform-scale-banner {
  margin: 28px 0 8px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--signal);
  border-radius: var(--radius);
  background: linear-gradient(90deg, #f5faff 0%, #ffffff 100%);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.45;
  color: var(--ink);
}

.platform-scale-banner-lede {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 72ch;
}

.platform-scale-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 960px) {
  .platform-scale-grid--three {
    grid-template-columns: 1fr;
  }
}

.platform-scale-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal);
  margin: 0 0 8px;
}

.platform-scale-outcome {
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink);
  margin: 12px 0 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.platform-os-strip {
  margin-top: 14px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--mist);
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.platform-os-strip:hover,
.platform-os-strip:focus-visible {
  border-color: var(--signal);
  box-shadow: 0 0 0 1px rgba(11, 127, 199, 0.2);
  outline: none;
}

.platform-os-strip-kicker {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 8px;
}

.platform-os-strip-copy {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 10px;
  max-width: none;
}

/* ============ HOMEPAGE V2 - CARD HUB + COMPACT ROWS (2026-08-02) ============ */
.section-hub .section-headline,
.section-hub .section-headline--compact {
  max-width: none;
}

.section-hub-lede {
  max-width: 72ch;
  margin-bottom: 4px;
}

.section-proof-line {
  margin: 20px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}

.intro-brief {
  width: 100%;
  max-width: none;
}

.intro-brief-lede {
  font-size: clamp(17px, 2.2vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 16px;
  max-width: 68ch;
}

.intro-brief-theme {
  font-size: clamp(17px, 2.2vw, 19px);
  line-height: 1.45;
  margin: 0 0 8px;
  color: var(--ink);
}

.philosophy-opener .intro-brief .philosophy-opener-headline {
  max-width: none !important;
}

.hub-card-row {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.hub-card-row--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hub-card-row--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hub-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 16px 16px 14px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  text-align: left;
  min-width: 0;
}

.hub-card:hover,
.hub-card:focus-visible {
  border-color: var(--signal);
  box-shadow: 0 0 0 1px rgba(11, 127, 199, 0.2);
  transform: translateY(-1px);
  outline: none;
}

.hub-card-kicker {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal);
  margin: 0 0 8px;
}

.hub-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.3;
}

.hub-card-desc {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hub-card--compact {
  padding: 14px 14px 12px;
}

.hub-card--compact .hub-card-desc {
  -webkit-line-clamp: 2;
}

.hub-card-link {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--signal);
}

.platform-scale-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 20px;
}

.platform-scale-card--compact {
  padding: 14px 12px 12px;
}

.platform-scale-card--compact .platform-scale-value {
  font-size: 26px;
  margin-bottom: 4px;
}

.platform-scale-card--compact .platform-scale-title {
  font-size: 13px;
  margin-bottom: 6px;
}

.platform-scale-card--compact .platform-scale-desc {
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.platform-scale-card--os {
  border-left: 3px solid var(--navy);
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

#proof .philosophy-split {
  margin-top: 20px;
}

#proof .philosophy-copy {
  min-width: 0;
}

#proof .philosophy-chart-panel {
  height: 100%;
}

#proof .philosophy-stat-grid {
  margin-top: 0;
}

#close .book-call-form {
  margin-top: 20px;
}

@media (max-width: 1100px) {
  .platform-scale-grid--four,
  .hub-card-row--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hub-card-row--three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .platform-scale-grid--four,
  .hub-card-row--four {
    grid-template-columns: 1fr;
  }
}

/* ============ VISUAL PASS (2026-08-02) ============ */

.section-hub--visual {
  position: relative;
  overflow: hidden;
}

.section-watermark {
  position: absolute;
  pointer-events: none;
  opacity: 0.07;
}

.section-watermark--wheel {
  width: min(280px, 42vw);
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
}

.symbol-lookup-placeholder {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
}

#symbol-lookup-placeholder[hidden],
#symbol-lookup-placeholder.is-dismissed {
  display: none !important;
}

.lookup-preview-mock {
  border: 1px dashed var(--border);
  background: var(--paper);
}

.lookup-preview-mock-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lookup-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.lookup-preview-kicker {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--signal);
  margin-bottom: 4px;
}

.lookup-preview-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-soft);
}

.lookup-preview-range {
  display: block;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 4px;
  opacity: 0.75;
}

.lookup-preview-price-block {
  text-align: right;
  flex-shrink: 0;
}

.lookup-preview-price {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--ink-soft);
  line-height: 1.1;
}

.lookup-preview-change {
  display: block;
  font-size: 12px;
  color: var(--ink-soft);
  opacity: 0.75;
  margin-top: 4px;
}

.lookup-preview-chart-svg {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border);
  border-radius: 3px;
}

.lookup-preview-score {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  align-items: center;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 3px;
}

.lookup-preview-score-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lookup-preview-score-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink-soft);
  line-height: 1;
}

.lookup-preview-score-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.lookup-preview-score-bar {
  grid-column: 2;
  height: 8px;
  border-radius: 4px;
  background: #E3E8EE;
  overflow: hidden;
}

.lookup-preview-score-fill {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #D93A2B 0%, #0FA958 55%, #FFD700 100%);
  opacity: 0.35;
}

.lookup-preview-score-hint {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--ink-soft);
}

.lookup-preview-tagline {
  font-size: 14px;
  color: var(--ink-soft);
  text-align: center;
  margin: 4px 0 0;
}

.placeholder-tagline {
  font-size: 15px;
  color: var(--ink-soft);
  text-align: center;
  margin: 0;
}

.close-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.close-visual-panel {
  padding: 16px;
  background: var(--paper);
}

.close-visual-kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal);
  margin: 0 0 12px;
}

.close-visual-chart {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
}

.close-visual-stats {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.close-visual-stats li {
  font-size: 11px;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.35;
}

.close-visual-stats strong {
  display: block;
  font-size: 18px;
  color: var(--signal);
  font-weight: 800;
}

.stat-modal-dialog--demo-book {
  max-width: 640px;
}

.demo-modal-layout {
  display: grid;
  grid-template-columns: minmax(160px, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: start;
}

.demo-modal-visual {
  padding: 16px;
  text-align: center;
  background: var(--paper);
}

.demo-modal-visual-img {
  width: 120px;
  height: auto;
  margin: 0 auto 12px;
  display: block;
  opacity: 0.9;
}

.demo-modal-sparkline {
  width: 100%;
  height: 64px;
  display: block;
}

.demo-modal-visual-caption {
  font-size: 11px;
  color: var(--ink-soft);
  margin: 10px 0 0;
  line-height: 1.4;
}

.demo-modal-form {
  margin-top: 4px;
}

.hub-card:hover,
.hub-card:focus-visible,
.platform-scale-card:hover,
.platform-scale-card:focus-visible,
.philosophy-stat-card:hover,
.philosophy-stat-card:focus-visible {
  box-shadow:
    0 8px 32px rgba(11, 127, 199, 0.14),
    0 2px 6px rgba(11, 61, 92, 0.08);
}

@media (max-width: 900px) {
  .close-layout,
  .demo-modal-layout {
    grid-template-columns: 1fr;
  }

  .close-layout-visual {
    order: -1;
  }

  .section-watermark--wheel {
    width: 180px;
    right: -40px;
    opacity: 0.05;
  }
}

/* ============ THE WHY - split problem / solution (2026-08-03) ============ */

.why-section-card {
  overflow: hidden;
}

.why-section-header {
  margin-bottom: 24px;
}

.why-section-header .section-headline--compact {
  font-size: clamp(1.375rem, 2.15vw, 1.875rem);
  margin-bottom: 12px;
}

.why-section-header .section-hub-lede {
  font-size: clamp(15px, 1.75vw, 17px);
  line-height: 1.55;
  max-width: 62ch;
}

.why-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.why-split-headline {
  font-size: clamp(1.1875rem, 1.65vw, 1.4375rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 8px;
}

.why-split-headline--solution {
  color: var(--navy);
}

.why-split-sub {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 16px;
  max-width: 44ch;
}

.why-split-col--problems .why-split-sub {
  color: var(--ink-soft);
}

.why-broken-diagram,
.why-workflow-diagram {
  padding: 24px;
  background: #F7F9FB;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0;
  box-shadow: 0 1px 3px rgba(11, 61, 92, 0.05);
}

.why-broken-svg,
.why-workflow-svg {
  width: 100%;
  height: auto;
  display: block;
}

.why-broken-svg {
  max-width: 620px;
  margin: 0 auto;
}

.why-problem-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-problem-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 4px 12px;
  width: 100%;
  padding: 14px 14px 12px;
  border: 1px solid var(--border);
  border-left: 3px solid #D93A2B;
  border-radius: var(--radius);
  background: var(--paper);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  box-shadow:
    0 2px 12px rgba(11, 61, 92, 0.06),
    0 1px 2px rgba(11, 61, 92, 0.04);
}

.why-problem-item:hover,
.why-problem-item:focus-visible {
  border-color: #D93A2B;
  box-shadow: 0 4px 20px rgba(217, 58, 43, 0.12);
  outline: none;
}

.why-problem-num {
  grid-row: 1 / span 2;
  align-self: start;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #D93A2B;
  padding-top: 2px;
}

.why-problem-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.why-problem-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.why-problem-desc {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-soft);
}

.why-problem-link {
  grid-column: 2;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--signal);
}

.why-solution-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  padding: 16px 16px 14px;
  margin-bottom: 14px;
  border: 1px solid var(--signal);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(11, 127, 199, 0.06) 0%, var(--paper) 55%);
  text-align: left;
  cursor: pointer;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.why-solution-card:hover,
.why-solution-card:focus-visible {
  box-shadow: 0 6px 28px rgba(11, 127, 199, 0.16);
  transform: translateY(-1px);
  outline: none;
}

.why-solution-kicker {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal);
}

.why-solution-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.why-solution-desc {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-soft);
}

.why-solution-link {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--signal);
  margin-top: 4px;
}

.why-outcome-pill {
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(15, 169, 88, 0.08);
  border: 1px solid rgba(15, 169, 88, 0.35);
}

.why-outcome-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0FA958;
  margin-bottom: 4px;
}

.why-outcome-text {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
}

.why-section .section-proof-line {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--signal);
}

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

/* ============ THE WHY - linear narrative flow (2026-08-03, left-aligned) ============ */
.why-flow {
  display: flex;
  flex-direction: column;
  gap: 44px;
  margin-top: 20px;
}

.why-stage {
  width: 100%;
}

.why-stage-head {
  text-align: left;
  max-width: 72ch;
  margin: 0 0 20px;
}

.why-stage-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.why-stage-tag--problem {
  color: #D93A2B;
  background: rgba(217, 58, 43, 0.09);
}

.why-stage-tag--solution {
  color: var(--signal);
  background: rgba(11, 127, 199, 0.1);
}

.why-stage-lede {
  font-size: clamp(1.0625rem, 1.6vw, 1.3125rem);
  line-height: 1.4;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

/* Problem stage: broken diagram over a 3-up problem row */
.why-stage--problem .why-broken-diagram {
  max-width: 560px;
  margin: 0 0 22px;
}

.why-problem-list--row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-problem-list--row > li {
  display: flex;
}

.why-problem-list--row .why-problem-item {
  height: 100%;
  align-content: start;
}

.why-problem-list--row .why-problem-link {
  align-self: end;
  margin-top: 4px;
}

/* Solution stage: intro card beside a large workflow diagram */
.why-solution-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: center;
}

.why-solution-side {
  display: flex;
  flex-direction: column;
}

.why-solution-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  text-align: left;
  cursor: pointer;
}

.why-solution-copy .why-solution-title {
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.25;
}

.why-solution-copy .why-solution-link {
  margin-top: 6px;
}

.why-stage--solution .why-workflow-diagram {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.why-stage--solution .why-workflow-svg {
  max-width: 460px;
  margin: 0 auto;
}

/* Outcome stage: prominent left-aligned close */
.why-stage--outcome .why-outcome-pill {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  border: none;
  border-left: 3px solid #0FA958;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(15, 169, 88, 0.06);
}

.why-stage--outcome .why-outcome-label {
  font-size: 11px;
  margin-bottom: 6px;
}

.why-stage--outcome .why-outcome-text {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.4;
}

@media (max-width: 860px) {
  .why-problem-list--row {
    grid-template-columns: 1fr;
  }
  .why-solution-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .why-stage--solution .why-workflow-svg {
    max-width: 360px;
  }
}

/* Single horizontal "Learn more" banner (replaces per-card links) */
.hub-learn-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 20px;
  padding: 16px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(11, 127, 199, 0.06) 0%, var(--paper) 60%);
  color: var(--navy);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.hub-learn-more:hover,
.hub-learn-more:focus-visible {
  border-color: var(--signal);
  box-shadow: 0 6px 24px rgba(11, 127, 199, 0.14);
  transform: translateY(-1px);
  outline: none;
}

.hub-learn-more-arrow {
  transition: transform 0.15s ease;
}

.hub-learn-more:hover .hub-learn-more-arrow,
.hub-learn-more:focus-visible .hub-learn-more-arrow {
  transform: translateX(3px);
}

/* ============ THE WHY - comparison charts (without / with) ============ */
.why-chart {
  margin: 0 0 24px;
  padding: 20px 20px 14px;
  background: #F7F9FB;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(11, 61, 92, 0.05);
}

.why-chart-caption {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 6px;
}

.why-chart-title {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.why-chart--problem .why-chart-title {
  color: #D93A2B;
}

.why-chart--solution .why-chart-title {
  color: var(--signal);
}

.why-chart-sub {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 68ch;
}

.why-chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 8px 0 10px;
}

.why-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.why-legend-swatch {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 2px;
}

.why-legend-swatch--line-problem,
.why-legend-swatch--line-solution {
  height: 3px;
  width: 16px;
}

.why-legend-swatch--bar-problem {
  background: #E4A199;
}

.why-legend-swatch--line-problem {
  background: #D93A2B;
}

.why-legend-swatch--bar-solution {
  background: #A9CFEA;
}

.why-legend-swatch--line-solution {
  background: #0FA958;
}

.why-chart-svg {
  width: 100%;
  height: auto;
  display: block;
}

.why-cycle-line {
  margin: 14px 0 20px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.why-cycle-line strong {
  color: var(--navy);
}

/* ================================================================
   HOMEPAGE ARGUMENT REWRITE (belief spine / Central Command reveal)
   Added on branch homepage-argument-rewrite. Scoped to the seven
   rewritten homepage content sections only.
   ================================================================ */

.hero-orbit-section,
.why2-section,
.cc-section,
.tryit-section,
.conv-section,
.fs-section,
.adopt-section {
  scroll-margin-top: 68px;
}

.anchor-alias {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  scroll-margin-top: 68px;
}

/* ---- shared scroll cue ---- */
.scroll-cue-wrap {
  text-align: center;
  margin: 34px 0 0;
}
.scroll-cue {
  display: inline-block;
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-decoration: none;
  animation: arg-bob 2s ease-in-out infinite;
}
.scroll-cue:hover { text-decoration: none; opacity: 0.85; }
.scroll-cue--light { color: rgba(255, 255, 255, 0.82); }
.scroll-cue--dark { color: var(--ink-soft); }
@keyframes arg-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ================= SECTION 1 - INTRO (orbital sunrise) ================= */
.hero-orbit-card {
  border: none;
  min-height: 78vh;
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  color: #fff;
  background:
    radial-gradient(130% 110% at 82% 12%, rgba(245, 181, 71, 0.90) 0%, rgba(245, 181, 71, 0.28) 18%, rgba(11, 61, 92, 0) 46%),
    radial-gradient(150% 130% at 10% 108%, #0B3D5C 0%, #08293d 38%, #04121c 70%, #000 100%),
    #000;
}
.hero-orbit-welcome {
  position: absolute;
  top: 30px;
  left: 40px;
  margin: 0;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.hero-orbit-welcome .wordmark-slash { color: #F5B547; }
.hero-orbit-copy {
  max-width: 960px;
  margin: 0 0 22px;
}
.hero-orbit-line {
  margin: 0 0 18px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.hero-orbit-line--1 { font-size: clamp(2rem, 4.6vw, 3.5rem); }
.hero-orbit-line--2 {
  font-size: clamp(1.45rem, 3.3vw, 2.5rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.93);
}
.hero-orbit-tiedown {
  margin: 0 0 6px;
  max-width: 640px;
  font-style: italic;
  font-size: 15px;
  color: rgba(245, 181, 71, 0.92);
}
.hero-orbit-scroll {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  margin: 0;
  text-align: center;
}

/* ================= SECTION 2 - THE WHY ================= */
.why2-card {
  background: #F5F1E8;
  border-color: #e7e0d0;
}
.why2-headline { max-width: 22ch; }
.why2-questions {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 38px;
}
.why2-q {
  margin: 0;
  max-width: 62ch;
  font-size: clamp(1.15rem, 2.1vw, 1.5rem);
  line-height: 1.5;
  font-weight: 500;
  color: var(--ink);
}
.why2-close {
  margin: 40px 0;
  max-width: 40ch;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  color: var(--navy);
}
.why2-transition { max-width: 62ch; }
.why2-transition p {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.why2-transition-strong {
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
}

/* ================= SECTION 3 - CENTRAL COMMAND ================= */
.cc-card {
  border: none;
  background: #0A0A0A;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  padding: 56px 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cc-constellation {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.cc-svg { width: 100%; height: 100%; display: block; }

.cc-core {
  transform-box: fill-box;
  transform-origin: center;
  animation: cc-core-pulse 3s ease-in-out infinite;
}
.cc-flare {
  transform-box: fill-box;
  transform-origin: center;
  animation: cc-flare-pulse 3s ease-in-out infinite;
}
@keyframes cc-core-pulse { 0%, 100% { opacity: 0.9; } 50% { opacity: 1; } }
@keyframes cc-flare-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.12); }
}
.cc-node {
  transform-box: fill-box;
  transform-origin: center;
  animation: cc-node-tw 3.5s ease-in-out infinite;
}
@keyframes cc-node-tw { 0%, 100% { opacity: 0.45; } 50% { opacity: 0.95; } }
.cc-inflow {
  stroke: #2E86C1;
  stroke-width: 0.6;
  opacity: 0.10;
  stroke-dasharray: 3 11;
  animation: cc-flow 4s linear infinite;
}
@keyframes cc-flow { to { stroke-dashoffset: -140; } }
.cc-outflow {
  stroke: #F5B547;
  stroke-width: 1.6;
  opacity: 0.75;
  stroke-dasharray: 6 8;
  animation: cc-outflow 2.2s linear infinite;
}
@keyframes cc-outflow {
  0% { stroke-dashoffset: 0; opacity: 0.9; }
  50% { opacity: 0.5; }
  100% { stroke-dashoffset: -140; opacity: 0.9; }
}
.cc-star { fill: #fff; animation: cc-star-tw 4s ease-in-out infinite; }
@keyframes cc-star-tw { 0%, 100% { opacity: 0.12; } 50% { opacity: 0.55; } }
.cc-brief-label { animation: cc-node-tw 2.4s ease-in-out infinite; }

.cc-copy {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cc-eyebrow { color: #F5B547; text-align: center; }
.cc-headline {
  color: #fff;
  text-align: center;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin: 0 0 26px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.7);
}
.cc-body-1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  color: #e8eef2;
}
.cc-dot {
  display: inline-block;
  width: 1.7em;
  height: 1.7em;
  border-radius: 50%;
  vertical-align: middle;
}
.cc-dot--blue {
  background: radial-gradient(circle at 35% 30%, #4aa3d6, #0B3D5C 72%);
  box-shadow: 0 0 16px rgba(46, 134, 193, 0.85);
  animation: cc-dot-pulse 2.4s ease-in-out infinite;
}
.cc-dot--gold {
  background: radial-gradient(circle at 35% 30%, #ffd98a, #F5B547 72%);
  box-shadow: 0 0 16px rgba(245, 181, 71, 0.85);
  animation: cc-dot-pulse 2.4s ease-in-out infinite 0.6s;
}
@keyframes cc-dot-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.18); opacity: 1; }
}
.cc-body-2 {
  max-width: 58ch;
  margin: 0 auto 16px;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  color: #c7d2da;
}
.cc-body-3 {
  margin: 0 auto 32px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #F5B547;
}
.cc-bottom-line {
  max-width: 58ch;
  margin: 0 auto 20px;
  font-size: 1rem;
  color: #aeb9c2;
}
.cc-tiedown {
  max-width: 42ch;
  margin: 0 auto;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  color: #fff;
}
.cc-card .scroll-cue-wrap { position: relative; z-index: 2; }

/* marginalia annotations */
.cc-annotation {
  position: absolute;
  z-index: 3;
  max-width: 240px;
  outline: none;
}
.cc-annotation--sources { top: 11%; left: 4%; }
.cc-annotation--layers { top: 58%; left: 4%; }
.cc-annotation--agents { top: 16%; right: 4%; text-align: right; }
.cc-annotation-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #F5B547;
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid rgba(245, 181, 71, 0.4);
  border-radius: 2px;
  padding: 4px 9px;
  cursor: default;
}
.cc-annotation-body {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.5;
  color: #c7d2da;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.cc-annotation:hover .cc-annotation-body,
.cc-annotation:focus .cc-annotation-body,
.cc-annotation:focus-within .cc-annotation-body {
  opacity: 1;
  transform: none;
}
.cc-annotation:focus .cc-annotation-label,
.cc-annotation:focus-within .cc-annotation-label {
  outline: 2px solid #F5B547;
  outline-offset: 2px;
}

/* ================= SECTION 4 - TRY IT ================= */
.tryit-card {
  background: #F5F1E8;
  border-color: #e7e0d0;
}
.tryit-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: start;
  margin-top: 8px;
}
.tryit-subline {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.55;
  max-width: 46ch;
  margin: 8px 0 22px;
}
.tryit-field-label {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin: 18px 0 6px;
}
.tryit-form .btn-market-snapshot { margin-top: 16px; }
.tryit-invite { margin-top: 16px; }
.tryit-invite-text {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
}

.tryit-monitor {
  background: #0A0A0A;
  border: 1px solid #1c1c1c;
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
}
.tryit-monitor.is-dismissed { display: none; }
.tryit-tab-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.tryit-tablist {
  display: flex;
  border-bottom: 1px solid #1c1c1c;
  background: #0d0d0d;
}
.tryit-tab {
  flex: 1;
  text-align: center;
  padding: 13px 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #7c8a94;
  cursor: pointer;
  user-select: none;
  box-shadow: inset 0 -2px 0 transparent;
  transition: color 0.2s ease, box-shadow 0.2s ease;
}
.tryit-tab:hover { color: #b7c3cb; }
#tryit-tab-evidence:checked ~ .tryit-tablist .tryit-tab[for="tryit-tab-evidence"],
#tryit-tab-command:checked ~ .tryit-tablist .tryit-tab[for="tryit-tab-command"] {
  color: #F5B547;
  box-shadow: inset 0 -2px 0 #F5B547;
}
.tryit-tab-radio:focus-visible ~ .tryit-tablist .tryit-tab {
  outline: 2px solid #F5B547;
  outline-offset: -2px;
}
.tryit-panel { display: none; padding: 16px; }
#tryit-tab-evidence:checked ~ .tryit-panels .tryit-panel--evidence { display: block; }
#tryit-tab-command:checked ~ .tryit-panels .tryit-panel--command { display: block; }
.tryit-chart,
.tryit-mini-const {
  width: 100%;
  height: auto;
  border-radius: 3px;
  display: block;
}
.tryit-panel-label {
  margin: 10px 0 2px;
  text-align: center;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: #7c8a94;
}
.tryit-result { margin-top: 16px; }

.tryit-next {
  margin: 36px auto 0;
  max-width: 680px;
  text-align: center;
}
.tryit-next-1 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}
.tryit-next-2 {
  margin: 0 0 18px;
  color: var(--ink-soft);
}
.tryit-tiedown {
  margin: 0 0 20px;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
}
.tryit-cta-wrap { margin: 0 0 12px; }
.tryit-trust {
  margin: 12px 0 0;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-soft);
}

/* ================= SECTION 5 - A NEW WAY OF THINKING ================= */
.conv-card {
  border: none;
  background: #0A0A0A;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.conv-horizon {
  position: absolute;
  left: -5%;
  right: -5%;
  top: 46%;
  height: 200px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(80% 70px at 50% 52%, rgba(245, 181, 71, 0.75) 0%, rgba(245, 181, 71, 0) 72%),
    linear-gradient(to top, #0B3D5C 0%, rgba(11, 61, 92, 0.25) 55%, rgba(11, 61, 92, 0) 100%);
  filter: blur(1px);
}
.conv-eyebrow { position: relative; z-index: 2; text-align: center; }
.conv-headline {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 22ch;
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
}
.conv-body {
  position: relative;
  z-index: 2;
  max-width: 52ch;
}
.conv-body p {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #d3dbe1;
}
.conv-strong { font-weight: 700; color: #fff; }
.conv-card .scroll-cue-wrap { position: relative; z-index: 2; }

/* ================= SECTION 6 - THE FIRST STEP ================= */
.fs-alias { display: block; }
.fs-card {
  background: #F5F1E8;
  border-color: #e7e0d0;
}
.fs-eyebrow {
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--navy);
}
.fs-subline {
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.55;
  margin: 8px 0 6px;
}
.fs-subline--quiet {
  font-size: 14px;
  color: var(--faint);
  margin-bottom: 20px;
}
.fs-form { max-width: 640px; }
.fs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fs-field { min-width: 0; }
.fs-submit { margin-top: 18px; }
.fs-trust {
  max-width: 640px;
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  text-align: center;
}
.fs-tiedown {
  margin: 16px 0 0;
  text-align: center;
  font-style: italic;
  color: var(--navy);
}

/* ================= SECTION 7 - PLATFORM ADOPTION ================= */
.adopt-card {
  background: #F5F1E8;
  border-color: #e7e0d0;
}
.adopt-kicker {
  margin: -8px 0 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}
.adopt-subline {
  max-width: 64ch;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.55;
  margin: 8px 0 4px;
}
.adopt-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0 22px;
}
.adopt-tile {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 26px 22px;
  text-decoration: none;
  color: inherit;
}
a.adopt-tile:hover { text-decoration: none; }
.adopt-tile--company {
  border-color: var(--navy);
  box-shadow: 0 6px 24px rgba(11, 61, 92, 0.14);
}
.adopt-tile--company:hover {
  box-shadow: 0 10px 30px rgba(11, 61, 92, 0.22);
  transform: translateY(-2px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.adopt-tile--muted {
  filter: grayscale(1);
  opacity: 0.68;
  cursor: default;
}
.adopt-tile-label {
  margin: 0;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--navy);
}
.adopt-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  background: var(--navy);
  color: #fff;
  border-radius: 3px;
}
.adopt-price {
  margin: 14px 0 4px;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
}
.adopt-price-period {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
}
.adopt-copy {
  flex: 1;
  margin: 12px 0 18px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.adopt-status {
  margin: auto 0 0;
  font-style: italic;
  font-size: 13px;
  color: var(--faint);
}
.adopt-cta {
  align-self: flex-start;
  margin-top: auto;
}
.adopt-foot {
  margin: 6px 0 0;
  text-align: center;
  color: var(--ink-soft);
}
.adopt-tiedown {
  margin: 16px 0 0;
  text-align: center;
  font-style: italic;
  color: var(--navy);
}

/* ---- responsive ---- */
@media (max-width: 860px) {
  .tryit-split { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .adopt-tiles { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .fs-row { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .hero-orbit-card { min-height: 74vh; padding: 28px 18px; }
  .hero-orbit-welcome { left: 18px; top: 18px; }
  .cc-card { min-height: auto; padding: 44px 18px; }
  .conv-card { min-height: auto; padding: 44px 18px; }
  .cc-annotation {
    position: static;
    max-width: none;
    text-align: left;
    margin: 10px 0 0;
  }
  .cc-annotation--agents { text-align: left; }
  .cc-annotation-body { opacity: 1; transform: none; pointer-events: auto; }
  .cc-annotations-mobile { margin-top: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue,
  .cc-core,
  .cc-flare,
  .cc-node,
  .cc-inflow,
  .cc-outflow,
  .cc-star,
  .cc-brief-label,
  .cc-dot--blue,
  .cc-dot--gold {
    animation: none !important;
  }
}

/* --- specificity overrides: dark-section headings must beat .home-main .section-headline / .home-main .eyebrow --- */
.home-main .cc-eyebrow,
.home-main .conv-eyebrow { color: #F5B547; text-align: center; }
.home-main .cc-headline {
  color: #fff;
  text-align: center;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin: 0 0 26px;
}
.home-main .conv-headline {
  color: #fff;
  text-align: center;
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
  margin: 0 0 18px;
}
.home-main .fs-eyebrow {
  color: var(--navy);
  text-align: left;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: none;
}
