:root {
  --bg: #0d0f14;
  --panel: #121722;
  --line: #1e2230;
  --line-strong: #252a39;
  --text: #f0f0f2;
  --muted: #8a8f9e;
  --muted-2: #a7adbc;
  --accent: #edf25c;
  --accent-deep: #dfe450;
  --accent-text: #12140b;
  --danger: #f47c5f;
  --success: #c3ef78;
  --watch: #f0c55c;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 7%, rgba(237, 242, 92, 0.1), transparent 18%),
    radial-gradient(circle at 12% 60%, rgba(120, 132, 196, 0.08), transparent 22%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.video-modal-open {
  overflow: hidden;
}

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

img,
svg,
video {
  display: block;
}

.page-shell {
  width: 100%;
  margin: 0 auto;
  overflow: clip;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
}

.site-nav,
.section,
.site-footer {
  padding-left: 24px;
  padding-right: 24px;
}

.content-frame {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.hero-frame > *,
.challenge-frame > *,
.intro-frame > *,
.process-frame > *,
.scenario-row > *,
.outcomes-frame > *,
.cta-frame > *,
.footer-frame > * {
  min-width: 0;
}

.site-nav {
  padding-top: 24px;
  padding-bottom: 24px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand img {
  width: 88px;
  height: 36px;
  object-fit: cover;
  border-radius: 6px;
}

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

.nav-links {
  gap: 40px;
  margin-left: auto;
}

.nav-links a,
.nav-signin,
.footer-links a,
.footer-copy,
.footer-wordmark,
.footer-byline {
  font-size: 15px;
  line-height: 18px;
}

.nav-links a,
.nav-signin,
.footer-links a {
  color: var(--muted);
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-signin:hover,
.footer-links a:hover {
  color: var(--text);
}

.nav-actions {
  gap: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.button-primary {
  color: var(--accent-text);
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 12px 28px rgba(237, 242, 92, 0.18);
}

.button-small {
  min-height: 38px;
  padding: 0 22px;
}

.button-secondary {
  color: var(--text);
  border: 1px solid #2b3040;
  background: rgba(18, 23, 34, 0.55);
}

.section {
  position: relative;
}

.hero {
  padding-top: 80px;
  padding-bottom: 100px;
}

.hero-frame {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.32fr);
  gap: 88px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 46px;
}

.hero-copy-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(56px, 4.2vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero-copy p,
.challenge-copy p,
.intro-copy p,
.scenario-copy p,
.cta-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 30px;
}

.hero-context {
  max-width: 36rem;
  color: #b7bcc9;
  font-size: 16px;
  line-height: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 356px;
}

.hero-glow {
  position: absolute;
  right: 32px;
  top: -12px;
  width: 70%;
  height: 92%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(237, 242, 92, 0.28), rgba(237, 242, 92, 0.09) 28%, rgba(237, 242, 92, 0) 62%);
  filter: blur(22px);
}

.panel,
.card,
.scenario-ui,
.video-frame {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(24, 30, 43, 0.98), rgba(15, 19, 28, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), var(--shadow);
}

.panel {
  position: absolute;
  border-radius: 24px;
}

.pipeline-view {
  top: 0;
  left: 0;
  width: 100%;
  min-height: 144px;
  padding: 24px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 16px;
}

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.pipeline-stage {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pipeline-stage span {
  color: var(--muted);
  font-size: 12px;
  line-height: 14px;
}

.stage-bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.stage-bar::after {
  content: "";
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(237, 242, 92, 0.55), rgba(237, 242, 92, 1));
}

.stage-bar-1::after {
  width: 47%;
}

.stage-bar-2::after {
  width: 88%;
}

.stage-bar-3::after {
  width: 66%;
}

.stage-bar-4::after {
  width: 34%;
}

.pipeline-stage strong {
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.risk-card {
  left: 0;
  bottom: 0;
  width: 43%;
  min-height: 138px;
  padding: 20px 18px;
}

.action-card {
  right: 0;
  top: 166px;
  width: 33%;
  min-height: 132px;
  padding: 20px 18px;
}

.insight-strip {
  left: 0;
  bottom: 0;
  transform: translateY(104px);
  width: 100%;
  min-height: 48px;
  padding: 10px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(17, 22, 31, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 14px 40px rgba(0, 0, 0, 0.3);
}

.meta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 16px;
}

.meta-label svg {
  width: 14px;
  height: 14px;
  fill: var(--accent);
}

.meta-label .dot,
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.dot.danger,
.meta-label.danger .dot {
  background: var(--danger);
  box-shadow: 0 0 0 4px rgba(244, 124, 95, 0.12);
}

.dot.success {
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(195, 239, 120, 0.12);
}

.dot.watch {
  background: var(--watch);
  box-shadow: 0 0 0 4px rgba(240, 197, 92, 0.12);
}

.risk-card h3,
.challenge-card h3,
.feature-strip h3,
.step-copy h3,
.scenario-copy h3,
.outcome-card h3,
.onboarding-step h3 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.risk-card h3 {
  font-size: 19px;
  line-height: 18px;
  margin-bottom: 14px;
}

.risk-card p,
.action-card p,
.challenge-card p,
.feature-strip p,
.step-copy p,
.scenario-ui p,
.outcome-card p,
.onboarding-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 22px;
}

.action-card p {
  font-size: 15px;
  line-height: 20px;
}

.info-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(237, 242, 92, 0.2);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.insight-strip p {
  margin: 0;
  color: #c8cddb;
  font-size: 13px;
  line-height: 16px;
}

.challenge {
  padding-top: 140px;
  padding-bottom: 80px;
}

.summary {
  padding-top: 40px;
  padding-bottom: 80px;
}

.summary-frame {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
}

.summary-card {
  min-height: 192px;
}

.summary-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.summary-card p,
.intro-clarifier {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.challenge-frame,
.process-frame,
.scenarios-frame,
.outcomes-frame {
  display: flex;
  flex-direction: column;
}

.challenge-copy {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.challenge h2,
.section-heading h2,
.intro h2,
.cta-copy h2 {
  margin: 0;
  letter-spacing: -0.03em;
}

.challenge h2,
.section-heading h2,
.outcomes h2 {
  font-size: clamp(48px, 3.4vw, 58px);
  line-height: 1;
}

.challenge-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
  margin-top: 56px;
}

.card {
  border-radius: 24px;
  padding: 28px;
}

.challenge-card {
  min-height: 208px;
}

.icon-box {
  width: 24px;
  height: 24px;
  margin-bottom: 24px;
}

.icon-box svg,
.feature-icon svg,
.step-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.challenge-card h3 {
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1;
}

.intro {
  padding-top: 120px;
  padding-bottom: 120px;
}

.intro-frame {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 96px;
  align-items: start;
}

.intro-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.intro h2,
.cta-copy h2 {
  font-size: clamp(44px, 3vw, 54px);
  line-height: 1;
}

.feature-strips {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(30, 34, 48, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.feature-strip {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 18px;
  align-items: start;
  padding: 30px 22px;
  background: rgba(17, 20, 28, 0.94);
}

.feature-icon {
  width: 20px;
  height: 20px;
}

.feature-strip h3 {
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 8px;
}

.feature-strip p {
  font-size: 15px;
  line-height: 20px;
}

.process {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-heading-wide {
  max-width: 760px;
}

.eyebrow,
.scenario-label {
  color: var(--muted);
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
}

.steps-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr) 72px minmax(0, 1fr);
  align-items: center;
  width: 100%;
  margin-top: 64px;
}

.step-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(25, 31, 44, 0.96), rgba(17, 20, 29, 0.96));
  display: grid;
  place-items: center;
}

.step-icon svg {
  width: 24px;
  height: 24px;
}

.step-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-copy h3 {
  font-size: 15px;
  line-height: 16px;
}

.step-copy p {
  font-size: 17px;
  line-height: 24px;
}

.step-connector {
  height: 28px;
  display: flex;
  align-items: center;
}

.step-connector::before {
  content: "";
  width: 72px;
  height: 1px;
  background: var(--line-strong);
}

.video-block {
  width: min(100%, 1180px);
  margin: 64px auto 0;
}

.video-block h3,
.scenario-ui h4 {
  margin: 0;
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.video-frame {
  position: relative;
  width: 100%;
  height: 560px;
  margin-top: 24px;
  border-radius: 30px;
  overflow: hidden;
  background: #0c1017;
  cursor: pointer;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.92);
}

.video-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(9, 11, 16, 0.18), rgba(9, 11, 16, 0.1) 44%, rgba(9, 11, 16, 0.72)), radial-gradient(circle at 50% 50%, rgba(237, 242, 92, 0.04), rgba(237, 242, 92, 0) 30%);
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(13, 15, 20, 0.68);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.video-play svg {
  width: 28px;
  height: 28px;
  fill: var(--text);
}

.video-frame p {
  position: absolute;
  left: 32px;
  bottom: 28px;
  margin: 0;
  width: min(575px, calc(100% - 64px));
  color: #cfd4e0;
  font-size: 15px;
  line-height: 16px;
  pointer-events: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

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

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 13, 0.82);
  backdrop-filter: blur(16px);
}

.video-modal-dialog {
  position: relative;
  width: min(1120px, calc(100vw - 64px));
  border: 1px solid rgba(53, 60, 81, 0.92);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(17, 22, 31, 0.98), rgba(10, 13, 19, 0.98));
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.video-modal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(42, 47, 64, 0.9);
}

.video-modal-kicker {
  margin: 0;
  color: #d8dcea;
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
}

.video-modal-close {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.video-modal-close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: #f0f0f2;
}

.video-modal-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.video-modal-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.video-modal-player {
  background: #05070b;
}

.video-modal-player video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #05070b;
}

.scenarios {
  padding-top: 120px;
  padding-bottom: 120px;
}

.scenarios .section-heading {
  margin-bottom: 80px;
}

.scenario-row {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  justify-content: space-between;
  align-items: center;
  gap: 88px;
  width: 100%;
}

.scenario-row + .scenario-row {
  margin-top: 80px;
}

.scenario-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.scenario-copy h3 {
  font-size: clamp(42px, 3vw, 50px);
  line-height: 0.98;
}

.scenario-ui {
  border-radius: 28px;
  padding: 28px;
}

.seller-ui {
  min-height: 360px;
}

.ui-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 16px;
}

.ui-card {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(48, 54, 73, 0.85);
  background: rgba(14, 18, 27, 0.92);
}

.ui-card + .ui-card {
  margin-top: 14px;
}

.ui-card h4 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
}

.manager-ui {
  min-height: 320px;
}

.manager-ui h4 {
  margin-bottom: 18px;
}

.risk-list {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(48, 54, 73, 0.8);
}

.risk-row {
  display: grid;
  grid-template-columns: 16px 1fr auto auto;
  align-items: center;
  gap: 12px;
  min-height: 41px;
  padding: 10px 16px;
  background: rgba(14, 18, 27, 0.92);
}

.risk-row + .risk-row {
  border-top: 1px solid rgba(37, 42, 57, 0.95);
}

.deal-name,
.deal-value {
  font-size: 15px;
  line-height: 16px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 600;
}

.status-ok {
  color: #d8efac;
  background: rgba(148, 198, 77, 0.16);
}

.status-drift {
  color: #ffc3b1;
  background: rgba(244, 124, 95, 0.14);
}

.status-watch {
  color: #f9d996;
  background: rgba(240, 197, 92, 0.14);
}

.cro-ui {
  min-height: 320px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.metric-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(48, 54, 73, 0.85);
  background: rgba(14, 18, 27, 0.92);
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 14px;
}

.metric-card strong {
  display: block;
  margin-top: 12px;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.trend-card {
  margin-top: 18px;
  padding: 18px 16px 14px;
  border-radius: 18px;
  border: 1px solid rgba(48, 54, 73, 0.85);
  background: rgba(14, 18, 27, 0.92);
}

.trend-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--text);
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
}

.trend-card svg {
  width: 100%;
  height: 48px;
}

.trend-card svg path:first-child {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
}

.trend-card svg path:last-child {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1;
}

.outcomes {
  padding-top: 120px;
  padding-bottom: 120px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
  margin-top: 64px;
}

.outcome-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.outcome-line {
  width: 100%;
  height: 1px;
  background: var(--line-strong);
}

.outcome-card h3 {
  font-size: 36px;
  line-height: 1;
}

.outcome-card p {
  font-size: 15px;
  line-height: 22px;
}

.outcomes-summary {
  width: min(860px, 100%);
  margin: 64px 0 0;
  color: var(--muted);
  font-size: 28px;
  line-height: 38px;
}

.final-cta {
  padding-top: 120px;
  padding-bottom: 120px;
}

.cta-frame {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  justify-content: space-between;
  gap: 96px;
}

.cta-copy {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cta-copy-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cta-actions span {
  color: var(--muted);
  font-size: 15px;
  line-height: 16px;
}

.onboarding-steps {
  display: flex;
  flex-direction: column;
}

.onboarding-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  min-height: 92px;
  padding: 24px 0;
  border-top: 1px solid var(--line-strong);
}

.onboarding-step:first-child {
  padding-top: 0;
  border-top: 0;
}

.step-number {
  color: var(--text);
  font-size: 32px;
  line-height: 32px;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.onboarding-step h3 {
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 8px;
}

.site-footer {
  padding-top: 40px;
  padding-bottom: 45px;
  border-top: 1px solid var(--line);
}

.footer-frame {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand,
.footer-links {
  display: flex;
  align-items: center;
}

.footer-brand {
  gap: 10px;
}

.footer-links {
  gap: 32px;
}

.footer-mark {
  width: 20px;
  height: 20px;
}

.footer-mark svg {
  width: 100%;
  height: 100%;
}

.footer-mark rect {
  fill: var(--accent);
}

.footer-mark path {
  fill: #141710;
}

.footer-wordmark {
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-byline,
.footer-copy {
  color: var(--muted);
}

@media (max-width: 1024px) {
  .site-nav,
  .section,
  .site-footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero,
  .intro-frame,
  .cta-frame,
  .scenario-row,
  .hero-frame {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .video-block,
  .steps-row,
  .summary-grid,
  .challenge-cards,
  .outcomes-grid {
    max-width: 100%;
    width: 100%;
  }

  .pipeline-view,
  .insight-strip {
    width: 100%;
  }

  .seller-ui,
  .manager-ui,
  .cro-ui,
  .scenario-copy,
  .intro-copy,
  .feature-strips,
  .cta-copy,
  .onboarding-steps {
    width: 100%;
    max-width: 100%;
  }

  .steps-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-connector {
    display: none;
  }

  .summary-grid,
  .challenge-cards,
  .outcomes-grid {
    grid-template-columns: 1fr;
  }

  .outcomes-summary {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .nav-inner,
  .nav-links,
  .nav-actions,
  .hero-actions,
  .cta-actions,
  .site-footer,
  .footer-brand,
  .footer-links {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 80px;
  }

  .site-nav,
  .section,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-inner {
    gap: 20px;
  }

  .nav-links {
    gap: 20px;
    margin-left: 0;
    width: 100%;
    order: 3;
  }

  .nav-actions {
    gap: 16px;
    margin-left: auto;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 48px;
  }

  .challenge h2,
  .section-heading h2,
  .outcomes h2,
  .intro h2,
  .cta-copy h2,
  .scenario-copy h3 {
    font-size: 36px;
    line-height: 40px;
  }

  .hero-visual {
    height: auto;
    display: grid;
    gap: 16px;
  }

  .panel {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    transform: none;
  }

  .insight-strip {
    height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .pipeline-grid,
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-row,
  .summary-grid,
  .challenge-cards,
  .outcomes-grid,
  .scenario-row,
  .intro-frame,
  .cta-frame,
  .hero-frame {
    gap: 28px;
  }

  .video-block {
    margin-top: 40px;
  }

  .video-frame {
    height: 360px;
  }

  .onboarding-step {
    grid-template-columns: 52px 1fr;
  }

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

@media (max-width: 640px) {
  .video-modal {
    padding: 14px;
  }

  .video-modal-dialog {
    width: 100%;
    border-radius: 22px;
  }

  .video-modal-bar {
    padding: 14px;
  }

  .video-modal-close {
    width: 38px;
    height: 38px;
  }

  .site-nav {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .site-nav,
  .section,
  .site-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
  }

  .brand {
    grid-column: 1;
  }

  .nav-actions {
    display: none;
  }

  .nav-links {
    grid-column: 1 / -1;
    order: initial;
    gap: 14px;
  }

  .nav-links a {
    font-size: 12px;
    line-height: 16px;
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 56px;
  }

  .hero-frame,
  .intro-frame,
  .cta-frame,
  .scenario-row,
  .steps-row,
  .challenge-cards,
  .outcomes-grid {
    gap: 20px;
  }

  .hero-copy {
    gap: 24px;
  }

  .hero-copy-stack {
    gap: 14px;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: 34px;
    line-height: 36px;
  }

  .challenge h2,
  .section-heading h2,
  .outcomes h2,
  .intro h2,
  .cta-copy h2,
  .scenario-copy h3 {
    font-size: 28px;
    line-height: 30px;
  }

  .hero-copy p,
  .hero-context,
  .challenge-copy p,
  .intro-copy p,
  .scenario-copy p,
  .cta-copy p,
  .outcomes-summary {
    font-size: 15px;
    line-height: 22px;
  }

  .button,
  .button-small {
    width: 100%;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-visual {
    gap: 12px;
  }

  .pipeline-view {
    padding: 16px;
    min-height: 0;
  }

  .panel-head,
  .pipeline-stage span,
  .insight-strip p {
    font-size: 11px;
    line-height: 14px;
  }

  .pipeline-stage {
    gap: 8px;
  }

  .pipeline-stage strong {
    font-size: 22px;
  }

  .risk-card,
  .action-card {
    min-height: 0;
    padding: 16px;
  }

  .risk-card h3 {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 10px;
  }

  .insight-strip {
    min-height: 0;
    padding: 10px 14px;
    transform: none;
  }

  .pipeline-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .challenge,
  .summary,
  .intro,
  .process,
  .scenarios,
  .outcomes,
  .final-cta {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .challenge-copy,
  .intro-copy,
  .cta-copy-stack,
  .section-heading,
  .scenario-copy {
    gap: 14px;
  }

  .challenge-cards {
    margin-top: 32px;
  }

  .challenge-card,
  .seller-ui,
  .manager-ui,
  .cro-ui,
  .video-frame,
  .card,
  .panel,
    .scenario-ui {
    border-radius: 20px;
  }

  .card,
  .scenario-ui,
  .feature-strip {
    padding: 18px;
  }

  .challenge-card {
    min-height: 0;
  }

  .challenge-card h3,
  .outcome-card h3 {
    font-size: 24px;
    line-height: 26px;
  }

  .feature-strip {
    gap: 14px;
  }

  .feature-strip h3,
  .onboarding-step h3 {
    font-size: 17px;
    line-height: 18px;
  }

  .steps-row {
    margin-top: 32px;
  }

  .step-card {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .step-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .step-icon svg {
    width: 20px;
    height: 20px;
  }

  .step-copy {
    gap: 8px;
  }

  .step-copy h3 {
    font-size: 14px;
  }

  .step-copy p {
    font-size: 15px;
    line-height: 21px;
  }

  .video-block {
    margin-top: 28px;
  }

  .video-frame {
    height: 220px;
  }

  .video-play {
    width: 56px;
    height: 56px;
  }

  .video-frame p {
    left: 14px;
    bottom: 12px;
    width: calc(100% - 28px);
    font-size: 12px;
    line-height: 15px;
  }

  .scenarios .section-heading {
    margin-bottom: 40px;
  }

  .scenario-row + .scenario-row {
    margin-top: 40px;
  }

  .scenario-copy h3 {
    max-width: 12ch;
  }

  .scenario-ui {
    padding: 18px;
  }

  .seller-ui,
  .manager-ui,
  .cro-ui {
    min-height: 0;
  }

  .ui-topline,
  .manager-ui h4,
  .video-block h3,
  .scenario-ui h4 {
    margin-bottom: 14px;
  }

  .ui-card {
    padding: 14px 16px;
  }

  .ui-card + .ui-card {
    margin-top: 10px;
  }

  .risk-row {
    grid-template-columns: 14px 1fr;
    gap: 10px;
    padding: 10px 12px;
  }

  .deal-value,
  .status-pill {
    grid-column: 2;
  }

  .status-pill {
    min-width: 0;
    width: fit-content;
  }

  .metric-card {
    padding: 16px;
  }

  .metric-card strong {
    font-size: 30px;
  }

  .trend-card {
    padding: 16px 14px 12px;
  }

  .outcomes-summary {
    margin-top: 40px;
    font-size: 18px;
    line-height: 28px;
  }

  .cta-actions {
    gap: 12px;
  }

  .onboarding-step {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    min-height: 0;
    padding: 18px 0;
  }

  .step-number {
    font-size: 24px;
    line-height: 24px;
  }

  .site-footer,
  .footer-frame,
  .footer-brand,
  .footer-links {
    gap: 16px;
  }

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