:root {
  --navy-950: #0b2238;
  --navy-900: #102d49;
  --navy-800: #173b5d;
  --blue-700: #1b5f91;
  --blue-600: #2475ac;
  --blue-500: #3789bc;
  --blue-100: #dcebf5;
  --blue-050: #eef6fb;
  --ink: #182c3f;
  --muted: #52677a;
  --border: #d6e0e8;
  --border-strong: #bbcbd7;
  --surface: #ffffff;
  --surface-soft: #f5f8fa;
  --green: #21724b;
  --green-soft: #e8f5ee;
  --yellow: #8a6505;
  --yellow-soft: #fff5d6;
  --red: #a13b3b;
  --red-soft: #faeceb;
  --status-blue: #2a6f9f;
  --status-blue-soft: #e9f3f9;
  --shadow-sm: 0 6px 18px rgba(18, 45, 69, .07);
  --shadow-lg: 0 26px 60px rgba(15, 45, 72, .13);
  --radius-sm: 6px;
  --radius: 10px;
  --container: 1200px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--blue-700); text-underline-offset: 3px; }
a:hover { color: var(--navy-900); }
button, a { -webkit-tap-highlight-color: transparent; }
button, input, textarea, select { font: inherit; }

:focus-visible {
  outline: 3px solid #e2a814;
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy-950);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section { padding: 104px 0; }
.section-tint { background: var(--surface-soft); }

h1, h2, h3, h4 {
  margin: 0 0 .65em;
  color: var(--navy-950);
  font-weight: 720;
  line-height: 1.15;
  letter-spacing: -.025em;
}

h1 { max-width: 760px; font-size: clamp(2.75rem, 5vw, 4.75rem); line-height: 1.03; }
h2 { font-size: clamp(2rem, 3.8vw, 3.15rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }
p { margin: 0 0 1.15em; }

.eyebrow,
.overline {
  display: block;
  margin: 0 0 16px;
  color: var(--blue-700);
  font-size: .75rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.overline { margin-bottom: 6px; color: #667d90; font-size: .64rem; letter-spacing: .1em; }
.lead-copy { color: #344f66; font-size: 1.16rem; line-height: 1.65; }
.section-heading { margin-bottom: 54px; }
.section-heading > p:last-child { margin-bottom: 0; color: var(--muted); }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr); gap: 90px; align-items: end; }
.split-heading h2 { margin-bottom: 0; }
.centered { margin-inline: auto; text-align: center; }
.narrow { max-width: 790px; }

.button-group { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 23px;
  color: #fff;
  background: var(--blue-700);
  border: 2px solid var(--blue-700);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 7px 18px rgba(27, 95, 145, .16);
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.button:hover { color: #fff; background: var(--navy-800); border-color: var(--navy-800); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(27, 59, 89, .2); }
.button-small { min-height: 44px; padding: 9px 17px; font-size: .78rem; }
.button-secondary { color: var(--navy-800); background: #fff; border-color: var(--border-strong); box-shadow: none; }
.button-secondary:hover { color: var(--navy-900); background: var(--blue-050); border-color: #8eaabe; }

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--border); box-shadow: 0 4px 15px rgba(17, 46, 71, .06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 82px; gap: 22px; }
.brand { flex: 0 0 auto; display: inline-flex; }
.brand img { width: 214px; height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 27px); }
.site-nav > a:not(.button) { color: #29445b; font-size: .79rem; font-weight: 680; text-decoration: none; white-space: nowrap; }
.site-nav > a:not(.button):hover { color: var(--blue-700); }
.nav-toggle { display: none; align-items: center; gap: 10px; min-height: 44px; padding: 7px 10px; color: var(--navy-900); background: transparent; border: 1px solid var(--border-strong); border-radius: var(--radius-sm); font-size: .82rem; font-weight: 700; cursor: pointer; }
.nav-toggle-lines { display: grid; gap: 4px; width: 20px; }
.nav-toggle-lines span { height: 2px; background: currentColor; border-radius: 3px; transition: transform .18s ease, opacity .18s ease; }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 92px 0 104px; background: linear-gradient(110deg, #fff 0%, #fff 50%, #f2f7fa 100%); }
.hero::after { content: ""; position: absolute; z-index: 0; top: -240px; right: -220px; width: 680px; height: 680px; border: 1px solid #dce9f1; border-radius: 50%; opacity: .85; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .95fr) minmax(520px, .88fr); gap: 68px; align-items: center; }
.hero-lead { max-width: 700px; color: #405b71; font-size: 1.15rem; line-height: 1.7; }
.availability-note { display: flex; align-items: center; gap: 9px; margin-top: 25px; color: #50687b; font-size: .78rem; font-weight: 700; }
.availability-note span { width: 8px; height: 8px; background: var(--blue-600); border-radius: 50%; box-shadow: 0 0 0 4px var(--blue-100); }

.product-window,
.app-shell,
.portfolio-dashboard,
.strategy-panel {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.hero-product { min-width: 0; padding: 0 28px 28px; transform: rotate(.35deg); }
.preview-label {
  position: absolute;
  z-index: 2;
  top: -15px;
  right: 18px;
  padding: 5px 11px;
  color: #34546d;
  background: #eef5f9;
  border: 1px solid #cddde8;
  border-radius: 4px;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.window-bar { display: flex; align-items: center; justify-content: space-between; margin: 0 -28px 24px; padding: 17px 22px; background: #f8fafb; border-bottom: 1px solid var(--border); border-radius: var(--radius) var(--radius) 0 0; }
.window-brand { display: flex; align-items: center; gap: 8px; color: var(--navy-900); font-size: .76rem; font-weight: 800; }
.mark-mini { display: inline-grid; place-items: center; width: 23px; height: 25px; color: #fff; background: var(--navy-800); border-radius: 5px 5px 9px 9px; font-size: .65rem; }
.sample-pill { display: inline-flex; align-items: center; min-height: 25px; padding: 3px 8px; color: #536b7d; background: #edf2f5; border-radius: 4px; font-size: .6rem; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.claim-heading, .strategy-head, .dashboard-head, .app-title-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.claim-heading { margin-bottom: 22px; }
.claim-heading strong { display: block; color: var(--navy-950); font-size: 1.15rem; }
.status-tag { display: inline-flex; align-items: center; min-height: 28px; padding: 3px 10px; border: 1px solid currentColor; border-radius: 99px; font-size: .64rem; font-weight: 800; white-space: nowrap; }
.status-yellow { color: #7a5a08; background: #fff8df; border-color: #e3c96d; }
.score-summary { display: flex; align-items: center; gap: 20px; padding: 18px; background: var(--blue-050); border: 1px solid #d8e8f2; border-radius: 8px; }
.score-summary strong, .score-summary small { display: block; }
.score-summary strong { color: var(--navy-900); font-size: .83rem; }
.score-summary small { margin-top: 3px; color: #607588; font-size: .67rem; }
.score-ring { flex: 0 0 auto; display: grid; place-items: center; width: 72px; height: 72px; background: conic-gradient(var(--blue-600) 68%, #d8e3e9 0); border-radius: 50%; }
.score-ring::after { content: ""; grid-area: 1 / 1; width: 56px; height: 56px; background: #fff; border-radius: 50%; }
.score-ring span { z-index: 1; grid-area: 1 / 1; color: var(--navy-900); font-size: 1.1rem; font-weight: 800; }
.score-ring small { display: inline; font-size: .55rem; }
.category-list { margin-top: 19px; border-top: 1px solid var(--border); }
.category-list > div { display: flex; justify-content: space-between; gap: 14px; padding: 10px 2px; border-bottom: 1px solid #e7edf1; color: #344e64; font-size: .71rem; font-weight: 650; }
.status-dot { display: inline-flex; align-items: center; gap: 6px; font-size: .62rem; font-weight: 800; }
.status-dot::before { content: ""; width: 8px; height: 8px; background: currentColor; border-radius: 50%; }
.status-dot.green { color: var(--green); }
.status-dot.yellow { color: var(--yellow); }
.status-dot.red { color: var(--red); }

/* Abstract pre-launch product concept */
.concept-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.concept-heading strong { display: block; color: var(--navy-950); font-size: 1.15rem; }
.concept-state {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 10px;
  color: var(--blue-700);
  background: var(--blue-050);
  border: 1px solid #bed9e9;
  border-radius: 99px;
  font-size: .62rem;
  font-weight: 800;
  white-space: nowrap;
}
.concept-summary {
  display: grid;
  gap: 8px;
  padding: 17px 18px;
  background: #f7f9fa;
  border: 1px solid #e0e7eb;
  border-radius: 7px;
}
.summary-line { display: block; width: 74%; height: 7px; background: #cfdbe3; border-radius: 99px; }
.summary-line-long { width: 92%; }
.summary-line-short { width: 56%; }
.concept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 15px; }
.concept-grid > div { min-width: 0; padding: 15px 12px; background: var(--blue-050); border: 1px solid #d6e6ef; border-radius: 7px; }
.concept-icon { display: grid; place-items: center; width: 25px; height: 25px; margin-bottom: 12px; color: var(--blue-700); background: #fff; border: 1px solid #bfd8e7; border-radius: 50%; font-size: .52rem; font-weight: 850; }
.concept-grid strong, .concept-grid small { display: block; }
.concept-grid strong { color: var(--navy-900); font-size: .68rem; line-height: 1.35; }
.concept-grid small { margin-top: 4px; color: #607789; font-size: .55rem; line-height: 1.4; }
.concept-rows { margin-top: 15px; border-top: 1px solid var(--border); }
.concept-rows > div { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 10px 2px; color: #405a6e; border-bottom: 1px solid #e7edf1; font-size: .66rem; font-weight: 700; }
.concept-rows i { height: 1px; background: #dbe4ea; }
.concept-rows strong { color: var(--blue-700); font-size: .6rem; text-transform: uppercase; letter-spacing: .04em; }

/* Content sections */
.proof-strip { padding: 24px 0; background: var(--navy-900); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid p { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 0; padding: 4px 20px; color: #e9f2f8; border-right: 1px solid rgba(255,255,255,.15); font-size: .78rem; font-weight: 700; text-align: center; }
.proof-grid p:last-child { border-right: 0; }
.check-icon { display: inline-grid; place-items: center; flex: 0 0 auto; width: 21px; height: 21px; color: var(--navy-900); background: #b9daee; border-radius: 50%; font-size: .68rem; }

.problem-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(390px, .8fr); gap: 100px; align-items: start; }
.problem-grid h2 { margin-bottom: 0; }
.problem-copy { padding-top: 7px; }
.problem-copy p { color: var(--muted); }
.problem-copy p:last-child { margin-bottom: 0; color: #324e64; font-weight: 650; }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); border-radius: var(--radius); }
.benefit { min-height: 280px; padding: 34px 28px; border-right: 1px solid var(--border); }
.benefit:last-child { border-right: 0; }
.benefit-number { display: block; margin-bottom: 45px; color: var(--blue-600); font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
.benefit h3 { font-size: 1.08rem; }
.benefit p { margin-bottom: 0; color: var(--muted); font-size: .88rem; }

.product-concept-section { border-top: 1px solid #eef2f4; }
.concept-outcomes { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); border-radius: var(--radius); }
.concept-outcomes article { display: flex; gap: 18px; min-height: 230px; padding: 31px 27px; border-right: 1px solid var(--border); }
.concept-outcomes article:last-child { border-right: 0; }
.outcome-mark { display: grid; place-items: center; flex: 0 0 auto; width: 37px; height: 37px; color: var(--blue-700); background: var(--blue-050); border: 1px solid #c4dce9; border-radius: 50%; font-size: .58rem; font-weight: 850; }
.concept-outcomes h3 { margin: 6px 0 12px; font-size: 1rem; }
.concept-outcomes p { margin: 0; color: var(--muted); font-size: .78rem; }
.concept-note { margin: 19px 0 0; color: #687d8d; font-size: .67rem; text-align: center; }

.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; margin: 0; padding: 0; list-style: none; }
.process-grid::before { content: ""; position: absolute; top: 25px; right: 9%; left: 9%; height: 2px; background: #bed1dd; }
.process-grid li { position: relative; z-index: 1; text-align: center; }
.step-number { display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 24px; color: #fff; background: var(--navy-800); border: 7px solid var(--surface-soft); border-radius: 50%; box-shadow: 0 0 0 1px #b6ccd9; font-size: .76rem; font-weight: 800; }
.process-grid h3 { font-size: 1rem; }
.process-grid p { margin-bottom: 0; color: var(--muted); font-size: .83rem; }

.status-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.status-card { display: flex; flex-direction: column; min-height: 315px; padding: 27px 24px; border: 1px solid var(--border); border-top-width: 4px; border-radius: var(--radius); }
.status-card-red { background: var(--red-soft); border-top-color: var(--red); }
.status-card-yellow { background: var(--yellow-soft); border-top-color: #c18b00; }
.status-card-green { background: var(--green-soft); border-top-color: var(--green); }
.status-card-blue { background: var(--status-blue-soft); border-top-color: var(--status-blue); }
.status-card-head { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 8px 10px; margin-bottom: 22px; }
.status-card-head h3 { margin: 0; font-size: 1.05rem; }
.status-card-head strong { grid-column: 1 / -1; color: #344d61; font-size: .69rem; text-transform: uppercase; letter-spacing: .06em; }
.status-swatch { width: 11px; height: 11px; border-radius: 50%; }
.status-swatch.red { background: var(--red); }
.status-swatch.yellow { background: #b68200; }
.status-swatch.green { background: var(--green); }
.status-swatch.blue { background: var(--status-blue); }
.status-card p { color: #354e62; font-size: .81rem; line-height: 1.6; }
.status-card small { display: block; margin-top: auto; color: #2c4559; font-size: .69rem; font-weight: 750; line-height: 1.5; }
.judgment-note { display: flex; align-items: center; gap: 12px; max-width: 880px; margin: 30px auto 0; color: #4d6376; font-size: .74rem; text-align: center; }
.judgment-note span { display: grid; place-items: center; flex: 0 0 auto; width: 22px; height: 22px; color: var(--blue-700); border: 1px solid #91b4cb; border-radius: 50%; font-family: Georgia, serif; font-weight: 700; }

.section-navy { color: #dce8f1; background: var(--navy-950); }
.light-heading h2 { color: #fff; }
.light-heading .eyebrow { color: #79b4dc; }
.light-heading > p:last-child { color: #b9cbd8; }
.framework-grid { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 56px; }
.framework-grid article { display: flex; gap: 18px; padding: 24px 4px; border-top: 1px solid rgba(255,255,255,.14); }
.framework-grid article > span { display: grid; place-items: center; flex: 0 0 auto; width: 38px; height: 38px; color: #9bc8e5; border: 1px solid #41617a; border-radius: 50%; font-size: .62rem; font-weight: 800; }
.framework-grid h3 { margin: 1px 0 7px; color: #fff; font-size: .93rem; letter-spacing: -.01em; }
.framework-grid p { margin: 0; color: #aebfcd; font-size: .75rem; }

.closure-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(520px, 1fr); gap: 100px; align-items: center; }
.closure-grid blockquote { margin: 38px 0 0; padding: 7px 0 7px 22px; color: var(--navy-800); border-left: 3px solid var(--blue-500); font-family: Georgia, "Times New Roman", serif; font-size: 1.15rem; line-height: 1.55; }
.strategy-panel { padding: 29px; box-shadow: var(--shadow-sm); }
.strategy-head { margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.strategy-head h3, .dashboard-head h3, .app-title-row h3 { margin: 0; font-size: 1.08rem; }
.strategy-details { margin: 0; }
.strategy-details > div { padding: 13px 0; border-bottom: 1px solid #e6ecef; }
.strategy-details > div:last-child { border-bottom: 0; }
.strategy-details dt { color: #60778a; font-size: .65rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.strategy-details dd { margin: 4px 0 0; color: #283f54; font-size: .79rem; font-weight: 600; }
.split-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }

/* Product previews */
.app-shell { overflow: visible; max-width: 1120px; margin: 0 auto; box-shadow: var(--shadow-lg); }
.app-topbar { display: flex; align-items: center; gap: 32px; min-height: 62px; padding: 0 24px; background: #fff; border-bottom: 1px solid var(--border); border-radius: var(--radius) var(--radius) 0 0; }
.app-topbar .sample-pill { margin-left: auto; }
.app-crumb { color: #667d8e; font-size: .65rem; font-weight: 650; }
.app-crumb span { padding: 0 5px; color: #9babb7; }
.app-body { display: grid; grid-template-columns: 190px 1fr; min-height: 590px; background: #f5f7f9; border-radius: 0 0 var(--radius) var(--radius); }
.app-sidebar { display: flex; flex-direction: column; gap: 4px; padding: 28px 15px; background: var(--navy-900); border-radius: 0 0 0 var(--radius); }
.app-sidebar span { padding: 10px 13px; color: #b8cad7; border-radius: 5px; font-size: .65rem; font-weight: 700; }
.app-sidebar .active { color: #fff; background: rgba(126, 189, 228, .15); box-shadow: inset 3px 0 #75b6df; }
.app-main { min-width: 0; padding: 28px; }
.app-title-row { margin-bottom: 20px; }
.metric-grid { display: grid; gap: 8px; }
.metric-grid-six { grid-template-columns: repeat(6, 1fr); }
.metric-grid > div { padding: 13px 11px; background: #fff; border: 1px solid #dce4e9; border-radius: 5px; }
.metric-grid span, .portfolio-metrics span { display: block; margin-bottom: 4px; color: #667b8c; font-size: .55rem; font-weight: 750; text-transform: uppercase; }
.metric-grid strong { display: block; color: #213a50; font-size: .7rem; line-height: 1.35; }
.preview-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.preview-module { min-width: 0; padding: 18px; background: #fff; border: 1px solid #dce4e9; border-radius: 6px; }
.preview-module h4 { margin: 0; font-size: .75rem; }
.preview-module p { margin: 11px 0 0; color: #4f6577; font-size: .66rem; line-height: 1.6; }
.module-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.text-link { color: var(--blue-700); font-size: .61rem; font-weight: 800; }
.progress-module { grid-column: 1 / -1; }
.progress-bar { height: 8px; margin: 15px 0 11px; overflow: hidden; background: #e3eaee; border-radius: 99px; }
.progress-bar span { display: block; height: 100%; background: var(--blue-600); border-radius: inherit; }
.mini-statuses { display: flex; gap: 20px; color: #62788a; font-size: .58rem; font-weight: 700; }
.mini-statuses span { display: inline-flex; align-items: center; gap: 5px; }
.mini-statuses i { width: 7px; height: 7px; border-radius: 50%; }
.mini-statuses .green { background: var(--green); }
.mini-statuses .yellow { background: #c6920d; }
.mini-statuses .red { background: var(--red); }
.actions-module { grid-column: 1 / -1; }
.action-row { display: grid; grid-template-columns: 62px 1fr auto; align-items: center; gap: 10px; padding: 11px 0; border-top: 1px solid #e3e9ed; }
.action-row:first-of-type { margin-top: 9px; }
.action-row p { margin: 0; color: #2f485c; font-size: .66rem; font-weight: 700; }
.action-row small { color: #677d8e; font-size: .59rem; }
.priority { display: inline-flex; align-items: center; justify-content: center; width: fit-content; min-height: 24px; padding: 2px 8px; border-radius: 4px; font-size: .58rem; font-weight: 800; }
.priority.high { color: #8c3030; background: var(--red-soft); }
.priority.medium { color: #7a5b08; background: var(--yellow-soft); }
.sample-disclaimer { margin: 20px auto 0; color: #62778a; font-size: .68rem; text-align: center; }

.portfolio-section { overflow: hidden; }
.portfolio-grid { display: grid; grid-template-columns: minmax(0, .67fr) minmax(600px, 1fr); gap: 90px; align-items: center; }
.portfolio-copy p { color: var(--muted); }
.plain-checks { display: grid; gap: 14px; margin: 30px 0 0; padding: 0; list-style: none; }
.plain-checks li { position: relative; padding-left: 31px; color: #324d63; font-size: .85rem; font-weight: 650; }
.plain-checks li::before { content: "✓"; position: absolute; left: 0; display: grid; place-items: center; width: 20px; height: 20px; color: var(--blue-700); background: var(--blue-050); border-radius: 50%; font-size: .65rem; }
.portfolio-dashboard { padding: 27px; box-shadow: var(--shadow-sm); }
.dashboard-head { margin-bottom: 20px; }
.portfolio-metrics { display: grid; grid-template-columns: repeat(5, 1fr); margin-bottom: 20px; border: 1px solid var(--border); border-radius: 6px; }
.portfolio-metrics > div { min-width: 0; padding: 12px 10px; border-right: 1px solid var(--border); }
.portfolio-metrics > div:last-child { border-right: 0; }
.portfolio-metrics strong { color: var(--navy-900); font-size: .9rem; }
.bar-chart { display: grid; gap: 12px; padding: 19px; background: #f6f8fa; border-radius: 6px; }
.bar-chart > div { display: grid; grid-template-columns: 140px 1fr 37px; align-items: center; gap: 10px; color: #445d71; font-size: .62rem; font-weight: 700; }
.bar-chart i { display: block; height: 7px; overflow: hidden; background: #dee7ec; border-radius: 99px; }
.bar-chart b { display: block; height: 100%; background: var(--green); border-radius: inherit; }
.bar-chart .bar-yellow { background: #c6920d; }
.bar-chart .bar-red { background: #a84b4b; }
.bar-chart strong { text-align: right; }

.action-plan-section { padding-top: 65px; }
.action-table-wrap { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.action-table { width: 100%; border-collapse: collapse; background: #fff; font-size: .75rem; }
.action-table th { padding: 15px 18px; color: #fff; background: var(--navy-900); font-size: .64rem; letter-spacing: .04em; text-align: left; text-transform: uppercase; }
.action-table td { padding: 19px 18px; color: #344d61; border-bottom: 1px solid var(--border); vertical-align: middle; }
.action-table tbody tr:last-child td { border-bottom: 0; }
.outcome-flow { display: flex; align-items: center; justify-content: space-between; gap: 9px; margin-top: 28px; padding: 18px 20px; color: #4a6274; background: var(--blue-050); border: 1px solid #d5e5ee; border-radius: var(--radius-sm); font-size: .64rem; font-weight: 750; text-align: center; }
.outcome-flow i { color: #7b99ad; font-style: normal; font-size: 1rem; }
.outcome-flow strong { color: var(--blue-700); }

.audience-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.audience-grid article { grid-column: span 2; min-height: 255px; padding: 28px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); }
.audience-grid article:nth-child(4) { grid-column: 2 / span 2; }
.audience-icon { display: grid; place-items: center; width: 43px; height: 43px; margin-bottom: 34px; color: var(--blue-700); background: var(--blue-050); border: 1px solid #c8deeb; border-radius: 50%; font-size: .62rem; font-weight: 850; letter-spacing: .04em; }
.audience-grid h3 { font-size: 1rem; }
.audience-grid p { margin: 0; color: var(--muted); font-size: .78rem; }

.conversation-section { color: #d8e5ee; background: var(--navy-900); }
.conversation-grid { display: grid; grid-template-columns: .8fr 1fr; gap: 110px; }
.conversation-heading h2 { color: #fff; }
.conversation-heading .eyebrow { color: #83bfe3; }
.conversation-copy .lead-copy { color: #eef5f9; }
.conversation-copy > p:not(.lead-copy) { color: #b9cad6; }
.conversation-points { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
.conversation-points span { padding: 12px 15px; color: #e5eef4; border: 1px solid #46627a; border-radius: 5px; font-size: .75rem; font-weight: 700; }

.judgment-section { padding-top: 70px; padding-bottom: 70px; background: #edf4f8; }
.judgment-panel { display: grid; grid-template-columns: auto 1fr; gap: 30px; max-width: 1030px; align-items: start; }
.judgment-mark { display: grid; place-items: center; width: 62px; height: 68px; color: #fff; background: var(--navy-800); border-radius: 8px 8px 20px 20px; font-size: 1.35rem; font-weight: 700; }
.judgment-panel h2 { margin-bottom: 14px; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.judgment-panel p:last-child { margin: 0; color: #4c6577; font-size: .88rem; }
.compact-judgment { max-width: 920px; }
.compact-judgment h2 { margin-bottom: 10px; }

.about-section { padding-top: 76px; padding-bottom: 76px; }
.about-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 100px; align-items: center; }
.about-grid h2 { margin-bottom: 0; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.about-grid > div:last-child > p { color: var(--muted); }
.text-link { font-weight: 750; text-decoration-thickness: 1px; }
.external-link { font-size: .84rem; }

.cta-section { padding-top: 40px; }
.cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 70px; align-items: center; padding: 54px 60px; color: #d9e7f0; background: var(--navy-900); border-radius: 12px; box-shadow: 0 20px 40px rgba(11,34,56,.14); }
.cta-panel h2 { max-width: 810px; color: #fff; font-size: clamp(1.75rem, 3.4vw, 2.75rem); }
.cta-panel p:not(.eyebrow) { max-width: 800px; margin-bottom: 0; color: #b9cbd8; font-size: .9rem; }
.cta-panel .eyebrow { color: #8bc5e7; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; min-width: 190px; }
.button-light { color: var(--navy-900); background: #fff; border-color: #fff; box-shadow: none; }
.button-light:hover { color: var(--navy-950); background: #eef6fa; border-color: #eef6fa; }
.button-outline-light { color: #fff; background: transparent; border-color: #7793a8; box-shadow: none; }
.button-outline-light:hover { color: #fff; background: rgba(255,255,255,.08); border-color: #b6cad8; }

/* Footer */
.site-footer { margin-top: 104px; color: #607386; background: #f5f7f9; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr .65fr; gap: 70px; padding-top: 62px; padding-bottom: 48px; }
.brand-footer img { width: 200px; }
.footer-brand > p { margin: 13px 0; font-size: .74rem; }
.footer-brand .footer-disclaimer { max-width: 440px; margin-top: 24px; color: #66798a; font-size: .67rem; }
.footer-grid h2 { margin-bottom: 18px; color: #334d62; font-size: .68rem; letter-spacing: .07em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid a:not(.brand) { margin-bottom: 10px; color: #526a7c; font-size: .72rem; text-decoration: none; }
.footer-grid a:hover { color: var(--blue-700); text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 21px; padding-bottom: 26px; border-top: 1px solid var(--border); }
.footer-bottom p { margin: 0; font-size: .65rem; }

/* Legal pages */
.legal-page .site-header { border-bottom-color: var(--border); }
.legal-hero { padding: 78px 0 54px; background: var(--surface-soft); border-bottom: 1px solid var(--border); }
.legal-hero h1 { margin-bottom: 14px; font-size: clamp(2.3rem, 4vw, 3.5rem); }
.legal-hero p { max-width: 740px; margin-bottom: 0; color: var(--muted); }
.legal-content { width: min(calc(100% - 48px), 840px); margin: 0 auto; padding: 70px 0 100px; }
.legal-content h2 { margin-top: 48px; margin-bottom: 14px; font-size: 1.45rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: #425b70; font-size: .92rem; }
.legal-content ul { padding-left: 24px; }
.legal-note { padding: 20px 22px; background: var(--blue-050); border-left: 4px solid var(--blue-600); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.legal-updated { font-size: .78rem !important; font-weight: 700; }
.legal-page .site-footer { margin-top: 0; }

/* Reveal enhancement */
.reveal-ready { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal-ready.is-revealed { opacity: 1; transform: translateY(0); }

@media (hover: hover) and (pointer: fine) {
  .benefit, .status-card, .audience-grid article { transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
  .benefit:hover, .status-card:hover, .audience-grid article:hover { transform: translateY(-3px); border-color: #b7cbd8; box-shadow: var(--shadow-sm); }
}

@media (max-width: 1120px) {
  .header-inner { min-height: 76px; }
  .js .nav-toggle { display: inline-flex; }
  .site-nav { display: flex; flex-wrap: wrap; gap: 10px 18px; padding-bottom: 17px; }
  .js .site-nav { position: absolute; top: 100%; right: 24px; left: 24px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); }
  .js .site-nav.is-open { display: flex; }
  .js .site-nav > a:not(.button) { padding: 11px 10px; }
  .js .site-nav .button { margin-top: 7px; }
  .js .nav-toggle[aria-expanded="true"] .nav-toggle-lines span:first-child { transform: translateY(6px) rotate(45deg); }
  .js .nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(2) { opacity: 0; }
  .js .nav-toggle[aria-expanded="true"] .nav-toggle-lines span:last-child { transform: translateY(-6px) rotate(-45deg); }

  .hero { padding-top: 75px; }
  .hero-grid { grid-template-columns: 1fr 470px; gap: 45px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .benefit { min-height: 240px; border-bottom: 1px solid var(--border); }
  .benefit:nth-child(2) { border-right: 0; }
  .benefit:nth-child(3), .benefit:nth-child(4) { border-bottom: 0; }
  .status-grid { grid-template-columns: 1fr 1fr; }
  .status-card { min-height: 280px; }
  .closure-grid { gap: 50px; }
  .metric-grid-six { grid-template-columns: repeat(3, 1fr); }
  .portfolio-grid { grid-template-columns: .65fr 1fr; gap: 50px; }
  .portfolio-metrics { grid-template-columns: repeat(5, minmax(82px, 1fr)); overflow-x: auto; }
}

@media (max-width: 900px) {
  .section { padding: 82px 0; }
  .hero { padding: 68px 0 84px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-product { width: min(100%, 600px); margin: 10px auto 0; transform: none; }
  .problem-grid { grid-template-columns: 1fr; gap: 25px; }
  .problem-copy { max-width: 720px; padding-top: 0; }
  .proof-grid { grid-template-columns: 1fr 1fr; gap: 13px 0; }
  .proof-grid p:nth-child(2) { border-right: 0; }
  .split-heading { grid-template-columns: 1fr; gap: 25px; align-items: start; }
  .split-heading > p { max-width: 720px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 42px 30px; }
  .process-grid::before { display: none; }
  .framework-grid { column-gap: 30px; }
  .closure-grid, .portfolio-grid { grid-template-columns: 1fr; gap: 50px; }
  .strategy-panel, .portfolio-dashboard { width: min(100%, 680px); margin-inline: auto; }
  .app-body { grid-template-columns: 1fr; }
  .app-sidebar { flex-direction: row; overflow-x: auto; padding: 10px; border-radius: 0; }
  .app-sidebar span { flex: 0 0 auto; }
  .app-sidebar .active { box-shadow: inset 0 -3px #75b6df; }
  .action-table-wrap { overflow: visible; border: 0; box-shadow: none; }
  .action-table, .action-table tbody { display: block; }
  .action-table thead { position: absolute; overflow: hidden; width: 1px; height: 1px; clip: rect(0 0 0 0); white-space: nowrap; }
  .action-table tr { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; padding: 22px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
  .action-table td { display: block; padding: 0; border: 0; font-size: .78rem; }
  .action-table td::before { content: attr(data-label); display: block; margin-bottom: 4px; color: #667d8e; font-size: .59rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
  .outcome-flow { flex-wrap: wrap; justify-content: center; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid article, .audience-grid article:nth-child(4) { grid-column: auto; }
  .audience-grid article:last-child { grid-column: 1 / -1; width: calc(50% - 8px); justify-self: center; }
  .conversation-grid { grid-template-columns: 1fr; gap: 35px; }
  .about-grid { gap: 50px; }
  .cta-panel { grid-template-columns: 1fr; gap: 35px; }
  .cta-actions { flex-direction: row; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 50px; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  body { font-size: 17px; }
  .section { padding: 68px 0; }
  h1 { font-size: clamp(2.45rem, 12vw, 3.3rem); }
  h2 { font-size: clamp(1.8rem, 8.5vw, 2.35rem); }
  .brand img { width: 184px; }
  .header-inner { min-height: 70px; }
  .nav-toggle { font-size: 0; gap: 0; }
  .nav-toggle-lines { width: 22px; }
  .js .site-nav { right: 16px; left: 16px; }
  .hero { padding-top: 52px; background: linear-gradient(160deg, #fff 0%, #fff 58%, #eff5f8 100%); }
  .button-group { align-items: stretch; }
  .button-group .button { flex: 1 1 190px; }
  .hero-product { padding-right: 18px; padding-left: 18px; }
  .window-bar { margin-right: -18px; margin-left: -18px; padding-right: 16px; padding-left: 16px; }
  .score-summary { align-items: flex-start; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid p { justify-content: flex-start; border-right: 0; }
  .benefit-grid, .status-grid, .framework-grid, .process-grid { grid-template-columns: 1fr; }
  .benefit { min-height: 0; border-right: 0; border-bottom: 1px solid var(--border) !important; }
  .benefit:last-child { border-bottom: 0 !important; }
  .benefit-number { margin-bottom: 25px; }
  .concept-outcomes { grid-template-columns: 1fr; }
  .concept-outcomes article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--border); }
  .concept-outcomes article:last-child { border-bottom: 0; }
  .status-card { min-height: 270px; }
  .framework-grid article { padding: 20px 0; }
  .closure-grid blockquote { font-size: 1.05rem; }
  .strategy-panel { padding: 23px 18px; }
  .strategy-head { align-items: flex-start; }
  .split-detail { grid-template-columns: 1fr; gap: 12px; }
  .app-topbar { gap: 12px; padding: 0 15px; }
  .app-crumb { display: none; }
  .app-main { padding: 18px 12px; }
  .app-title-row { align-items: flex-start; }
  .app-title-row h3 { font-size: .92rem; }
  .metric-grid-six { grid-template-columns: 1fr 1fr; }
  .preview-columns { grid-template-columns: 1fr; }
  .progress-module, .actions-module { grid-column: auto; }
  .mini-statuses { flex-wrap: wrap; gap: 8px 15px; }
  .action-row { grid-template-columns: 60px 1fr; }
  .action-row small { grid-column: 2; }
  .portfolio-dashboard { padding: 21px 14px; }
  .portfolio-metrics { grid-template-columns: 1fr 1fr; overflow: hidden; }
  .portfolio-metrics > div { border-bottom: 1px solid var(--border); }
  .portfolio-metrics > div:nth-child(2n) { border-right: 0; }
  .portfolio-metrics > div:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .bar-chart { padding: 14px 11px; }
  .bar-chart > div { grid-template-columns: minmax(105px, .9fr) 1fr 33px; gap: 7px; font-size: .56rem; }
  .action-table tr { grid-template-columns: 1fr; }
  .outcome-flow { display: grid; grid-template-columns: 1fr; }
  .outcome-flow i { transform: rotate(90deg); }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-grid article, .audience-grid article:last-child { grid-column: auto; width: auto; min-height: 0; }
  .audience-icon { margin-bottom: 24px; }
  .conversation-points { grid-template-columns: 1fr; }
  .judgment-panel { grid-template-columns: 1fr; }
  .judgment-mark { width: 51px; height: 56px; }
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .cta-section { padding-right: 0; padding-left: 0; }
  .cta-panel { width: 100%; padding: 42px 24px; border-radius: 0; }
  .cta-actions { flex-direction: column; }
  .site-footer { margin-top: 68px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .legal-hero { padding: 58px 0 40px; }
  .legal-content { width: min(calc(100% - 32px), 840px); padding: 52px 0 75px; }
}

@media (max-width: 420px) {
  .brand img { width: 174px; }
  .claim-heading, .strategy-head, .dashboard-head { align-items: flex-start; }
  .concept-heading { align-items: flex-start; }
  .concept-preview .sample-pill { display: none; }
  .concept-grid { grid-template-columns: 1fr; }
  .concept-grid > div { display: grid; grid-template-columns: auto 1fr; column-gap: 10px; align-items: center; }
  .concept-grid .concept-icon { grid-row: 1 / span 2; margin-bottom: 0; }
  .score-summary { gap: 13px; padding: 14px; }
  .score-ring { width: 62px; height: 62px; }
  .score-ring::after { width: 48px; height: 48px; }
  .app-topbar .sample-pill { display: none; }
  .metric-grid-six { grid-template-columns: 1fr; }
  .bar-chart > div { grid-template-columns: 100px 1fr 30px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal-ready { opacity: 1; transform: none; }
}

@media print {
  .site-header, .nav-toggle, .button-group, .cta-section, .site-footer { display: none !important; }
  body { color: #000; font-size: 12pt; }
  .section { padding: 30px 0; }
  .section-navy, .conversation-section { color: #000; background: #fff; }
  .section-navy h2, .section-navy h3, .conversation-section h2 { color: #000; }
}
