:root {
  --bg: #ffffff;
  --ink: #07162e;
  --ink-2: #112846;
  --muted: #5a6b82;
  --line: #dce5ef;
  --line-strong: #c4d0dd;
  --soft: #f5f8fb;
  --soft-blue: #eef5ff;
  --blue: #075bd8;
  --blue-2: #0d73ff;
  --green: #168a55;
  --green-soft: #eaf8f0;
  --amber: #b96b00;
  --amber-soft: #fff4de;
  --red: #c83232;
  --red-soft: #fff0f0;
  --teal: #0f7d83;
  --shadow: 0 24px 70px rgba(7, 22, 46, 0.13);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.4;
}

.checkbox-label input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
  padding: 0 48px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 229, 239, 0.86);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.hero-proof,
.dashboard-topline,
.dashboard-controls,
.market-strip,
.shot-layout,
.contact-layout,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  font-size: 17px;
  font-weight: 820;
  color: var(--ink);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--blue);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(7, 22, 46, 0.08);
}

.brand-mark svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linejoin: round;
}

.brand-mark.small {
  width: 28px;
  height: 28px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.brand-mark.small svg {
  width: 18px;
  height: 18px;
}

.nav {
  gap: 26px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 720;
}

.nav a {
  padding: 8px 0;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--blue);
}

.nav a.active,
.nav a[aria-current="page"] {
  color: var(--blue);
}

.nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta,
.button.primary {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(7, 91, 216, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line-strong);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.header-cta:focus-visible,
.button:focus-visible,
.filter-button:focus-visible,
.row-action:focus-visible,
input:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(13, 115, 255, 0.16);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
}

.menu-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-nav {
  position: fixed;
  z-index: 28;
  top: 72px;
  left: 0;
  right: 0;
  padding: 16px 22px 22px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: block;
  padding: 13px 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.mobile-nav a.active,
.mobile-nav a[aria-current="page"] {
  color: var(--blue);
}

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(540px, 1.18fr);
  gap: 48px;
  align-items: center;
  min-height: 94vh;
  padding: 132px 48px 58px;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 62%, #f6f9fc 100%),
    linear-gradient(90deg, rgba(13, 115, 255, 0.06), transparent 48%);
  border-bottom: 1px solid var(--line);
}

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

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

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: 58px;
  line-height: 1.02;
  font-weight: 880;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 860;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 820;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 16px;
}

.hero-lede {
  max-width: 590px;
  margin-bottom: 28px;
  color: #2c405a;
  font-size: 19px;
  line-height: 1.58;
}

.hero-deliverables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 610px;
  margin: -6px 0 28px;
  padding: 0;
  list-style: none;
}

.hero-deliverables li {
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink-2);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 760;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 42px;
}

.hero-proof {
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.hero-proof div {
  width: 178px;
  min-height: 104px;
  padding: 15px 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(7, 22, 46, 0.06);
}

.hero-proof dt {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  font-weight: 870;
}

.hero-proof dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  min-height: 548px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.dashboard-nav {
  padding: 18px 12px;
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(180deg, #061428 0%, #0d223b 100%);
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 14px;
}

.nav-row {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  margin-bottom: 5px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 720;
}

.nav-row span {
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.nav-row em {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  color: #dbe8ff;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  font-size: 11px;
  font-style: normal;
}

.nav-row.active {
  color: #ffffff;
  background: var(--blue);
}

.dashboard-main {
  padding: 22px;
}

.dashboard-topline {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.dashboard-label {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.dashboard-topline h2 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
}

.dashboard-controls {
  gap: 8px;
}

.filter-button {
  min-height: 34px;
  padding: 0 11px;
  color: var(--ink-2);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 780;
  cursor: pointer;
}

.filter-button.active {
  color: #ffffff;
  background: var(--ink);
  border-color: var(--ink);
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.metrics-row div {
  min-height: 96px;
  padding: 14px;
  background: #fbfdff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metrics-row span,
.metrics-row small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.metrics-row strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--ink);
  font-size: 27px;
  line-height: 1;
}

.green {
  color: var(--green) !important;
}

.amber {
  color: var(--amber) !important;
}

.red {
  color: var(--red) !important;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 670px;
  border-collapse: collapse;
}

th,
td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
  font-size: 12px;
}

th {
  color: var(--muted);
  background: #f7fafc;
  font-weight: 800;
}

td strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.25;
}

td span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

tbody tr.is-hidden {
  display: none;
}

tbody tr:last-child td {
  border-bottom: none;
}

.score {
  display: inline-flex;
  align-items: center;
  min-width: 44px;
  font-weight: 840;
}

.risk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 26px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
}

.risk.low {
  color: var(--green);
  background: var(--green-soft);
}

.risk.medium {
  color: var(--amber);
  background: var(--amber-soft);
}

.risk.high {
  color: var(--red);
  background: var(--red-soft);
}

.row-action {
  min-width: 74px;
  min-height: 32px;
  border: 1px solid;
  border-radius: 8px;
  background: #ffffff;
  font-size: 12px;
  font-weight: 820;
  cursor: pointer;
}

.row-action.bid {
  color: var(--green);
  border-color: rgba(22, 138, 85, 0.32);
}

.row-action.eval {
  color: var(--amber);
  border-color: rgba(185, 107, 0, 0.32);
}

.row-action.no-bid {
  color: var(--red);
  border-color: rgba(200, 50, 50, 0.32);
}

.decision-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  padding: 12px 14px;
  color: var(--ink-2);
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 760;
}

.decision-row div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.decision-row a {
  color: var(--blue);
  font-weight: 820;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(22, 138, 85, 0.13);
}

.market-strip {
  width: min(calc(100% - 96px), var(--max));
  margin: -28px auto 0;
  position: relative;
  z-index: 2;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(7, 22, 46, 0.08);
}

.market-strip div {
  flex: 1;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.market-strip div:last-child {
  border-right: none;
}

.market-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.market-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1;
}

.market-strip p {
  margin: 0;
  font-size: 13px;
}

.section-band {
  padding: 92px 48px;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 54px;
  align-items: start;
}

.platform {
  padding-top: 104px;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.comparison article,
.agent-grid article,
.workflow-rail article,
.price-card,
.launch-list article,
.trust-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.comparison article {
  min-height: 220px;
  padding: 26px;
}

.comparison .emphasized {
  color: #ffffff;
  background: var(--ink);
  border-color: var(--ink);
}

.comparison .emphasized p {
  color: rgba(255, 255, 255, 0.76);
}

.agents {
  background: #f7fafc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

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

.agent-grid article {
  min-height: 220px;
  padding: 24px;
}

.agent-icon {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
}

.agent-icon.search {
  background-image: linear-gradient(var(--blue), var(--blue)), linear-gradient(var(--blue), var(--blue));
  background-size: 16px 2px, 2px 16px;
}

.agent-icon.target {
  background:
    radial-gradient(circle, transparent 0 5px, var(--blue) 6px 7px, transparent 8px),
    radial-gradient(circle, transparent 0 13px, var(--line-strong) 14px 15px, transparent 16px);
}

.agent-icon.brief {
  background:
    linear-gradient(var(--blue), var(--blue)) 11px 12px / 16px 2px no-repeat,
    linear-gradient(var(--line-strong), var(--line-strong)) 11px 18px / 16px 2px no-repeat,
    linear-gradient(var(--line-strong), var(--line-strong)) 11px 24px / 12px 2px no-repeat;
}

.agent-icon.matrix {
  background:
    linear-gradient(var(--line-strong), var(--line-strong)) 12px 9px / 2px 20px no-repeat,
    linear-gradient(var(--line-strong), var(--line-strong)) 22px 9px / 2px 20px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 8px 14px / 22px 2px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 8px 24px / 22px 2px no-repeat;
}

.agent-icon.pen {
  background:
    linear-gradient(135deg, transparent 0 43%, var(--blue) 44% 54%, transparent 55%) center / 24px 24px no-repeat;
}

.agent-icon.shield {
  background:
    linear-gradient(150deg, transparent 0 24%, var(--blue) 25% 31%, transparent 32%) 12px 10px / 18px 18px no-repeat,
    linear-gradient(210deg, transparent 0 24%, var(--blue) 25% 31%, transparent 32%) 8px 10px / 18px 18px no-repeat;
}

.workflow {
  background: #ffffff;
}

.workflow-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.workflow-rail article {
  position: relative;
  min-height: 218px;
  padding: 24px;
}

.workflow-rail span,
.launch-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 32px;
  margin-bottom: 22px;
  color: var(--blue);
  background: var(--soft-blue);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 850;
}

.product-shot {
  background: #f5f8fb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.shot-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 42px;
  align-items: center;
}

.shot-layout figure {
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.shot-layout img {
  width: 100%;
  height: auto;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 14px;
  height: 14px;
  border: 2px solid var(--green);
  border-radius: 50%;
}

.packages {
  color: #ffffff;
  background: #07162e;
}

.packages p,
.packages li {
  color: rgba(255, 255, 255, 0.74);
}

.seo-services {
  background: #ffffff;
}

.service-link-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-link-grid a,
.faq-grid article {
  min-height: 214px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(7, 22, 46, 0.06);
}

.service-link-grid a {
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.service-link-grid a:hover,
.service-link-grid a:focus-visible {
  border-color: var(--blue);
  box-shadow: 0 18px 46px rgba(7, 91, 216, 0.14);
  transform: translateY(-2px);
  outline: none;
}

.service-link-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 840;
  text-transform: uppercase;
}

.service-link-grid h3,
.faq-grid h3 {
  color: var(--ink);
}

.service-link-grid p,
.faq-grid p {
  margin-bottom: 0;
}

.seo-faq {
  background: var(--soft);
}

.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-hero {
  padding: 132px 32px 72px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}

.service-hero-grid,
.service-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 34px;
  align-items: start;
}

.service-kicker {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.service-card {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(7, 22, 46, 0.07);
}

.service-card dl,
.service-card dd {
  margin: 0;
}

.service-card div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.service-card div:last-child {
  border-bottom: none;
}

.service-card dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.service-card dd {
  color: var(--ink);
  font-size: 15px;
  font-weight: 760;
}

.service-content-grid article {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-content-grid article + article {
  margin-top: 16px;
}

.service-content-grid ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.service-content-grid li + li {
  margin-top: 8px;
}

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

.price-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.13);
}

.price-card.emphasized {
  color: var(--ink);
  background: #ffffff;
}

.price-card.emphasized p,
.price-card.emphasized li {
  color: var(--muted);
}

.price {
  margin-bottom: 16px;
  color: inherit;
  font-size: 35px;
  line-height: 1;
  font-weight: 880;
}

.price span {
  margin-left: 4px;
  color: inherit;
  font-size: 16px;
  font-weight: 760;
}

ul {
  padding-left: 20px;
}

li + li {
  margin-top: 8px;
}

.model-note {
  margin-top: 18px;
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  font-size: 15px;
}

.model-note strong {
  color: #ffffff;
}

.launch {
  background: #ffffff;
}

.launch-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 54px;
  align-items: start;
}

.launch-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.launch-list article,
.trust-grid article {
  padding: 24px;
}

.trust {
  background: #f7fafc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 54px;
  align-items: start;
}

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

.contact {
  background: #ffffff;
}

.contact-layout {
  justify-content: space-between;
  align-items: flex-start;
  gap: 56px;
}

.contact-layout > div {
  max-width: 470px;
}

.contact-form {
  width: min(100%, 530px);
  padding: 26px;
  background: #f9fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(7, 22, 46, 0.08);
}

label {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--blue-2);
}

.form-note {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 760;
}

.footer {
  justify-content: space-between;
  gap: 20px;
  padding: 28px 48px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
  font-size: 14px;
}

.footer p:last-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer a {
  color: var(--ink-2);
  font-weight: 760;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--blue);
}

.audit-list {
  display: grid;
  gap: 10px;
}

.audit-row {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.audit-row strong,
.price-line {
  color: var(--ink);
}

.audit-row span {
  color: var(--muted);
}

.price-line {
  display: block;
  margin: 8px 0;
  font-size: 24px;
}

.report-page {
  background: #ffffff;
}

.report-hero {
  padding: 138px 48px 72px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%),
    linear-gradient(90deg, rgba(13, 115, 255, 0.08), transparent 52%);
  border-bottom: 1px solid var(--line);
}

.report-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 54px;
  align-items: center;
}

.report-label {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.report-summary {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.report-summary div {
  padding: 16px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.report-summary span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.report-summary strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.12;
}

.report-section {
  padding-top: 78px;
  padding-bottom: 78px;
}

.report-section.pale {
  background: #f6f9fc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.report-section.dark {
  color: #ffffff;
  background: var(--ink);
}

.report-section.dark p {
  color: rgba(255, 255, 255, 0.76);
}

.report-table-wrap,
.matrix-card {
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(7, 22, 46, 0.07);
}

.report-table {
  min-width: 900px;
}

.report-table th,
.report-table td,
.matrix-card th,
.matrix-card td {
  font-size: 13px;
}

.decision {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 840;
  text-transform: uppercase;
}

.decision.bid {
  color: var(--green);
  background: var(--green-soft);
}

.decision.evaluate {
  color: var(--amber);
  background: var(--amber-soft);
}

.decision.partner {
  color: var(--red);
  background: var(--red-soft);
}

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

.report-section.dark .report-grid {
  grid-template-columns: 1.1fr repeat(3, 0.9fr);
}

.brief-card,
.report-section.dark article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.report-section.dark article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.brief-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
}

.brief-card dl div {
  padding: 12px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brief-card dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.brief-card dd {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
}

.matrix-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 48px;
  align-items: start;
}

.operator-page {
  background: #ffffff;
}

.operator-hero {
  padding: 138px 48px 72px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 22, 46, 0.96), rgba(7, 22, 46, 0.86)),
    linear-gradient(90deg, rgba(13, 115, 255, 0.24), transparent 48%);
  border-bottom: 1px solid #152b49;
}

.operator-hero h1,
.operator-hero .hero-lede {
  color: #ffffff;
}

.operator-hero .hero-lede {
  color: rgba(255, 255, 255, 0.78);
}

.operator-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 54px;
  align-items: center;
}

.operator-scoreboard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.operator-scoreboard div {
  min-height: 138px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.operator-scoreboard span {
  display: block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 830;
  text-transform: uppercase;
}

.operator-scoreboard strong {
  color: #ffffff;
  font-size: 36px;
  line-height: 1;
  font-weight: 890;
}

.operator-section.pale {
  background: #f6f9fc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.operator-section.dark {
  color: #ffffff;
  background: var(--ink);
}

.operator-section.dark p {
  color: rgba(255, 255, 255, 0.76);
}

.operator-table-wrap {
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(7, 22, 46, 0.08);
}

.operator-table {
  min-width: 980px;
}

.operator-table td:first-child {
  color: var(--blue);
  font-weight: 880;
}

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

.cadence-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.quota-grid article,
.cadence-grid article {
  padding: 24px;
  border-radius: 8px;
}

.quota-grid article {
  background: #ffffff;
  border: 1px solid var(--line);
}

.cadence-grid article {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.quota-grid span,
.cadence-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.cadence-grid span {
  color: #91bcff;
}

.conversion-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 48px;
  align-items: start;
}

.conversion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.conversion-grid article {
  min-height: 132px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(7, 22, 46, 0.05);
}

.conversion-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 36px;
  line-height: 1;
}

.conversion-grid span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.portal-page {
  background: #ffffff;
}

.portal-hero {
  padding: 132px 48px 62px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%),
    linear-gradient(90deg, rgba(7, 91, 216, 0.08), transparent 54%);
  border-bottom: 1px solid var(--line);
}

.portal-hero.compact {
  padding-bottom: 52px;
}

.portal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 54px;
  align-items: center;
}

.portal-summary,
.portal-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.portal-summary div,
.portal-metrics div {
  min-height: 112px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(7, 22, 46, 0.07);
}

.portal-summary span,
.portal-metrics span,
.mini-label {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 840;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portal-summary strong,
.portal-metrics strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.1;
  font-weight: 880;
}

.portal-section {
  background: #ffffff;
}

.portal-section.pale {
  background: #f6f9fc;
}

.portal-toolbar,
.portal-card-header,
.decision-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.portal-toolbar {
  align-items: end;
  margin-bottom: 22px;
}

.portal-toolbar h2,
.portal-card-header h2,
.decision-card h3 {
  margin-bottom: 6px;
}

.portal-toolbar p,
.portal-card-header p,
.decision-card p {
  margin-bottom: 0;
}

.portal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.decision-list,
.compliance-stack,
.workback-board,
.report-list {
  display: grid;
  gap: 16px;
}

.decision-card,
.compliance-card,
.portal-empty,
.question-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(7, 22, 46, 0.06);
}

.decision-card {
  align-items: stretch;
  padding: 22px;
}

.decision-card-main {
  display: grid;
  min-width: 0;
  gap: 16px;
}

.decision-card-title h3,
.portal-card-header h2 {
  font-size: 20px;
  line-height: 1.22;
}

.decision-card-title p {
  color: var(--muted);
  font-size: 13px;
}

.portal-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--ink-2);
  background: #f6f9fc;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 780;
}

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

.compact-list {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: 9px 0 0;
  color: var(--ink-2);
  font-size: 13px;
}

.compact-list li + li {
  margin-top: 0;
}

.muted-text {
  color: var(--muted);
  font-size: 13px;
}

.next-action-row {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.next-action-row strong {
  color: var(--ink);
  font-size: 14px;
}

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

.economics-mini div,
.economics-metrics div {
  min-width: 0;
  padding: 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.economics-mini span,
.economics-metrics span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 840;
  text-transform: uppercase;
}

.economics-mini strong,
.economics-metrics strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.15;
  font-weight: 860;
  overflow-wrap: anywhere;
}

.decision-card-aside {
  display: grid;
  align-content: start;
  width: 238px;
  min-width: 238px;
  gap: 12px;
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.score-tile {
  display: grid;
  gap: 6px;
  padding: 16px;
  background: #f9fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.score-tile span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 830;
  text-transform: uppercase;
}

.score-tile strong {
  font-size: 34px;
  line-height: 1;
  font-weight: 890;
}

.aside-stack {
  display: grid;
  gap: 8px;
}

.aside-stack small {
  color: var(--muted);
  font-size: 12px;
}

.saved-decision {
  padding: 10px 12px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
}

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

.decision-action,
.compact-button {
  min-height: 36px;
}

.decision-action {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-2);
  background: #ffffff;
  font-size: 12px;
  font-weight: 830;
  cursor: pointer;
}

.decision-action:hover,
.decision-action:focus-visible {
  border-color: var(--blue-2);
  outline: none;
  box-shadow: 0 0 0 4px rgba(13, 115, 255, 0.14);
}

.decision-action.selected {
  color: #ffffff;
  background: var(--ink);
  border-color: var(--ink);
}

.compact-button {
  width: 100%;
  padding: 0 12px;
  font-size: 12px;
}

.compliance-card {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.portal-card-header {
  align-items: start;
}

.portal-matrix {
  box-shadow: none;
}

.portal-matrix table {
  min-width: 860px;
}

.question-panel {
  padding: 16px;
  background: #f8fbff;
  box-shadow: none;
}

.workback-board .portal-metrics {
  margin-bottom: 16px;
}

.portal-empty {
  padding: 28px;
}

.report-dashboard {
  display: grid;
  gap: 22px;
}

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

.report-actions-grid article {
  min-height: 220px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.economics-summary-card,
.economics-row {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(7, 22, 46, 0.05);
}

.economics-row {
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: start;
}

.economics-row h3 {
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.24;
}

.economics-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.economics-metrics.compact strong {
  font-size: 14px;
}

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

.run-health-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(7, 22, 46, 0.05);
}

.run-health-card.primary {
  grid-column: 1 / -1;
  background: #f8fbff;
  border-color: rgba(7, 91, 216, 0.18);
}

.run-health-card h3 {
  margin-bottom: 0;
}

.run-health-card p {
  margin: 0;
  color: var(--ink-2);
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 32px;
  align-items: start;
}

.profile-form,
.profile-export {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(7, 22, 46, 0.06);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.profile-grid label.full,
.profile-form .full {
  grid-column: 1 / -1;
}

.profile-actions,
.export-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.profile-export {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
}

.profile-export textarea {
  min-height: 220px;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

.profile-export textarea[data-profile-csv] {
  min-height: 128px;
}

.os-layout,
.opportunity-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.opportunity-detail-grid {
  grid-template-columns: 360px minmax(0, 1fr);
}

.os-main-panel,
.os-side-panel {
  min-width: 0;
}

.os-side-panel {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(7, 22, 46, 0.06);
}

.os-side-panel h2 {
  margin-bottom: 0;
  font-size: 24px;
}

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

.workspace-grid.single-column {
  grid-template-columns: 1fr;
}

.workspace-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(7, 22, 46, 0.06);
}

.workspace-card.compact-card {
  gap: 10px;
  padding: 16px;
}

.workspace-card h2,
.workspace-card h3 {
  margin-bottom: 0;
}

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

.workspace-dl.single {
  grid-template-columns: 1fr;
}

.workspace-dl div {
  min-width: 0;
  padding: 12px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.workspace-dl dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 830;
  text-transform: uppercase;
}

.workspace-dl dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.mini-form {
  display: grid;
  gap: 12px;
}

.mini-form label {
  margin-bottom: 0;
}

.wide-select {
  width: min(100%, 560px);
  margin-bottom: 0;
}

.wide-select select {
  margin-top: 7px;
}

.pack-grid,
.legal-stack {
  display: grid;
  gap: 16px;
}

.generated-copy {
  min-height: 240px;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  line-height: 1.55;
  white-space: pre-wrap;
}

textarea.generated-copy {
  resize: vertical;
}

.wide-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portal-card-header .score {
  justify-content: flex-end;
  font-size: 24px;
  font-weight: 880;
}

code {
  padding: 2px 5px;
  background: #f3f7fb;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.9em;
}

.value-list {
  display: grid;
  gap: 16px;
}

.value-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(7, 22, 46, 0.06);
}

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

.value-range div {
  padding: 16px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.value-range .likely {
  background: var(--soft-blue);
  border-color: rgba(7, 91, 216, 0.22);
}

.value-range span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 840;
  text-transform: uppercase;
}

.value-range strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  font-weight: 880;
}

.source-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.source-strip div {
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.source-strip span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 840;
  text-transform: uppercase;
}

.source-strip strong {
  display: block;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.45;
}

.comparable-details {
  padding: 14px 16px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.comparable-details summary {
  color: var(--ink);
  font-size: 13px;
  font-weight: 840;
  cursor: pointer;
}

.comparable-details[open] summary {
  margin-bottom: 12px;
}

.trust-banner,
.action-row,
.readiness-promise,
.readiness-result-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(7, 22, 46, 0.06);
}

.trust-banner {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border-left: 5px solid var(--blue);
}

.trust-banner.good,
.action-row.good {
  border-left-color: var(--green);
  background: linear-gradient(90deg, var(--green-soft), #ffffff 42%);
}

.trust-banner.warn,
.action-row.warn {
  border-left-color: var(--amber);
  background: linear-gradient(90deg, var(--amber-soft), #ffffff 42%);
}

.trust-banner.danger,
.action-row.danger {
  border-left-color: var(--red);
  background: linear-gradient(90deg, var(--red-soft), #ffffff 42%);
}

.trust-banner h3,
.action-row h3,
.readiness-result-card h2,
.readiness-promise h2 {
  margin-bottom: 4px;
}

.trust-banner p,
.action-row p,
.readiness-result-card p,
.readiness-promise p {
  margin-bottom: 0;
  color: var(--ink-2);
}

.action-center-layout,
.readiness-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.action-list,
.readiness-output {
  display: grid;
  gap: 16px;
}

.action-row {
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
}

.action-index {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: var(--ink);
  border-radius: 8px;
  font-weight: 880;
}

.readiness-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(7, 22, 46, 0.06);
}

.readiness-panel .mini-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.readiness-panel textarea,
.readiness-panel label:nth-child(8) {
  grid-column: 1 / -1;
}

.readiness-score {
  display: grid;
  gap: 8px;
}

.readiness-score span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 840;
  text-transform: uppercase;
}

.readiness-score strong {
  color: var(--ink);
  font-size: 64px;
  line-height: 0.95;
  font-weight: 900;
}

.readiness-meter {
  height: 10px;
  overflow: hidden;
  background: #edf3f9;
  border-radius: 8px;
}

.readiness-meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

@media (max-width: 1160px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .dashboard-shell {
    max-width: 900px;
  }

  .portal-hero-grid,
  .profile-layout,
  .os-layout,
  .action-center-layout,
  .readiness-layout,
  .opportunity-detail-grid {
    grid-template-columns: 1fr;
  }

  .profile-export,
  .os-side-panel {
    position: static;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 24px;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    padding: 116px 24px 48px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .market-strip {
    width: calc(100% - 48px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-strip div:nth-child(2) {
    border-right: none;
  }

  .market-strip div:nth-child(1),
  .market-strip div:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .two-col,
  .shot-layout,
  .launch-layout,
  .trust-layout,
  .contact-layout,
  .service-hero-grid,
  .service-content-grid,
  .report-hero-grid,
  .matrix-layout,
  .operator-hero-grid,
  .conversion-layout,
  .portal-columns {
    display: grid;
    grid-template-columns: 1fr;
  }

  .economics-row,
  .economics-metrics {
    grid-template-columns: 1fr;
  }

  .agent-grid,
  .workflow-rail,
  .pricing-grid,
  .service-link-grid,
  .faq-grid,
  .trust-grid,
  .report-grid,
  .report-section.dark .report-grid,
  .quota-grid,
  .cadence-grid,
  .report-actions-grid,
  .run-health-grid,
  .workspace-grid {
    grid-template-columns: 1fr;
  }

  .section-band {
    padding: 72px 24px;
  }

  .portal-hero {
    padding: 116px 24px 54px;
  }

  .portal-toolbar,
  .portal-card-header,
  .decision-card,
  .trust-banner,
  .action-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .decision-card-aside {
    width: auto;
    min-width: 0;
    padding-left: 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    border-left: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 68px;
    padding: 0 16px;
  }

  .mobile-nav {
    top: 68px;
  }

  .brand span:last-child {
    max-width: 178px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    padding: 104px 16px 42px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-deliverables {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    width: 100%;
    min-height: auto;
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .dashboard-nav {
    display: none;
  }

  .dashboard-main {
    padding: 16px;
  }

  .dashboard-topline {
    display: grid;
  }

  .dashboard-controls {
    flex-wrap: wrap;
  }

  .metrics-row,
  .market-strip,
  .comparison,
  .launch-list {
    grid-template-columns: 1fr;
  }

  .market-strip {
    width: calc(100% - 32px);
    margin-top: -18px;
  }

  .market-strip div {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .market-strip div:last-child {
    border-bottom: none;
  }

  .section-band {
    padding: 62px 16px;
  }

  .report-hero {
    padding: 104px 16px 54px;
  }

  .operator-hero {
    padding: 104px 16px 54px;
  }

  .portal-hero {
    padding: 104px 16px 46px;
  }

  .operator-scoreboard,
  .conversion-grid,
  .portal-summary,
  .portal-metrics,
  .profile-grid,
  .workspace-dl,
  .wide-actions,
  .value-range,
  .source-strip,
  .economics-mini,
  .readiness-panel .mini-form {
    grid-template-columns: 1fr;
  }

  .report-actions,
  .report-actions .button {
    width: 100%;
  }

  .contact-form {
    padding: 20px;
  }

  .footer {
    display: grid;
    padding: 24px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
