:root {
  --ink: #07182f;
  --ink-2: #102b4f;
  --blue: #0a67c7;
  --blue-2: #0f8cff;
  --cyan: #35c6ff;
  --paper: #f7f9fc;
  --white: #ffffff;
  --muted: #607086;
  --line: #d9e2ef;
  --soft-blue: #eaf4ff;
  --gold: #c9a85f;
  --shadow: 0 24px 70px rgba(7, 24, 47, 0.12);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -50px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 249, 252, 0.92);
  border-bottom: 1px solid rgba(217, 226, 239, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--blue));
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(10, 103, 199, 0.24);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  opacity: 0.88;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--blue);
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 9px 12px;
  font-weight: 700;
}

.hero {
  background:
    radial-gradient(circle at 78% 20%, rgba(53, 198, 255, 0.22), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #edf5ff 100%);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.76fr);
  align-items: center;
  gap: 56px;
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 800;
  font-size: 12px;
}

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

h1 {
  max-width: 820px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 18px;
}

h3 {
  font-size: 19px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.lead {
  max-width: 680px;
  color: var(--ink-2);
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 32px;
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--ink);
  padding: 13px 18px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 15px 34px rgba(7, 24, 47, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.button.disabled {
  pointer-events: none;
  opacity: 0.55;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink-2);
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 13px;
  font-weight: 700;
}

.hero-panel {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(217, 226, 239, 0.92);
  box-shadow: var(--shadow);
  padding: 22px;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  margin-bottom: 20px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(53, 198, 255, 0.16);
}

.flow-map {
  display: grid;
  gap: 8px;
}

.flow-node {
  border: 1px solid var(--line);
  background: #fafdff;
  border-radius: 8px;
  padding: 18px;
}

.flow-node.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.flow-node.final {
  border-color: rgba(10, 103, 199, 0.45);
  background: var(--soft-blue);
}

.flow-node small {
  color: var(--blue-2);
  font-weight: 900;
}

.flow-node.active small {
  color: var(--cyan);
}

.flow-node strong,
.flow-node span {
  display: block;
}

.flow-node strong {
  margin-top: 6px;
  font-size: 18px;
}

.flow-node span {
  color: inherit;
  opacity: 0.72;
  margin-top: 4px;
  font-size: 14px;
}

.flow-rail {
  width: 2px;
  height: 20px;
  background: linear-gradient(var(--line), var(--blue-2));
  margin-left: 28px;
}

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

.metric-strip div {
  border-radius: 8px;
  background: #f3f7fc;
  padding: 12px;
}

.metric-strip strong,
.metric-strip span {
  display: block;
}

.metric-strip strong {
  color: var(--blue);
  font-size: 18px;
}

.metric-strip span {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.section.compact {
  padding: 76px 0;
}

.section.tight {
  padding: 62px 0;
}

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

.audience-grid,
.offer-grid,
.outcome-grid,
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.audience-grid article,
.use-case-grid article,
.outcome-grid article,
.proof-card,
.lead-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.audience-grid p,
.use-case-grid p,
.outcome-grid p,
.method-item p,
.proof p,
.offer-card p,
.proof-card li,
.form-note {
  color: var(--muted);
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  max-width: 760px;
}

.use-cases {
  padding-top: 86px;
}

.use-case-grid {
  grid-template-columns: repeat(3, 1fr);
}

.use-case-grid article {
  min-height: 236px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.use-case-grid article::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0.86;
}

.use-case-grid span {
  width: fit-content;
  margin-bottom: 18px;
  border: 1px solid rgba(10, 103, 199, 0.18);
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.scorecard-promo {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.5fr);
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(10, 103, 199, 0.22);
  border-radius: 8px;
  background: var(--white);
  padding: 28px;
  box-shadow: 0 18px 50px rgba(7, 24, 47, 0.08);
}

.scorecard-promo h2 {
  font-size: clamp(30px, 3.4vw, 46px);
}

.scorecard-promo p:last-child {
  margin-bottom: 0;
}

.scorecard-promo-actions {
  display: grid;
  gap: 10px;
}

.scorecard-promo-actions .button {
  width: 100%;
}

.insight-feature {
  padding-top: 76px;
}

.insight-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(10, 103, 199, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 24, 47, 0.96), rgba(16, 43, 79, 0.94)),
    var(--ink);
  color: var(--white);
  padding: 28px;
  box-shadow: var(--shadow);
}

.editorial-image {
  display: block;
  width: 100%;
  height: 168px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(188, 233, 255, 0.24);
  background: var(--ink);
  box-shadow: 0 16px 34px rgba(7, 24, 47, 0.16);
}

.insight-card .editorial-image {
  height: clamp(220px, 25vw, 300px);
  margin-bottom: 10px;
  border-color: rgba(188, 233, 255, 0.30);
}

.home-article-card .editorial-image,
.insight-tile .editorial-image {
  margin: -8px -8px 8px;
  width: calc(100% + 16px);
}

.insight-card span {
  width: fit-content;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 12px;
  font-weight: 850;
}

.insight-card strong {
  max-width: 880px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.04;
}

.insight-card p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.insight-card em {
  width: fit-content;
  color: var(--white);
  border-bottom: 1px solid var(--cyan);
  font-style: normal;
  font-weight: 850;
}

.home-insight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) repeat(2, minmax(220px, 0.62fr));
  gap: 16px;
}

.home-insight-grid .insight-card {
  grid-row: span 2;
}

.home-article-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
  box-shadow: 0 14px 38px rgba(7, 24, 47, 0.07);
}

.home-article-card span,
.buyer-path-grid span {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 850;
}

.home-article-card strong {
  color: var(--ink);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.05;
}

.home-article-card p,
.buyer-path-grid p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 0;
}

.lead-magnet-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 26px;
  align-items: center;
  border: 1px solid rgba(10, 103, 199, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(10, 103, 199, 0.1), rgba(255, 255, 255, 0.92)),
    var(--white);
  box-shadow: var(--shadow);
  padding: 30px;
}

.lead-magnet-band p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

.buyer-paths {
  padding-top: 46px;
}

.fit-section {
  background: #f8fbff;
}

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

.fit-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 230px;
  border: 1px solid rgba(10, 103, 199, 0.18);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
  box-shadow: 0 12px 34px rgba(7, 24, 47, 0.06);
}

.fit-grid span {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 850;
}

.fit-grid h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.18;
}

.fit-grid p {
  margin: 0;
  color: var(--muted);
}

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

.buyer-path-grid a {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 270px;
  border: 1px solid rgba(10, 103, 199, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(10, 103, 199, 0.06), rgba(255, 255, 255, 0)),
    var(--white);
  padding: 22px;
  box-shadow: 0 12px 34px rgba(7, 24, 47, 0.06);
}

.buyer-path-grid h3 {
  font-size: 22px;
  line-height: 1.12;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.method-list {
  display: grid;
  gap: 14px;
}

.method-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.method-item span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 900;
}

.blue-band {
  width: 100%;
  max-width: none;
  background:
    radial-gradient(circle at 80% 0%, rgba(53, 198, 255, 0.14), transparent 34%),
    linear-gradient(135deg, #07182f, #102b4f);
  color: var(--white);
  padding: 96px max(20px, calc((100% - 1180px) / 2));
}

.inverse .eyebrow,
.blue-band .eyebrow {
  color: var(--cyan);
}

.offer-grid {
  width: min(1180px, 100%);
}

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
}

.offer-card.highlight {
  background: rgba(53, 198, 255, 0.13);
  border-color: rgba(53, 198, 255, 0.5);
}

.offer-label {
  color: var(--cyan) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 850;
  font-size: 12px;
}

.offer-card ul,
.proof-card ul {
  padding-left: 19px;
}

.offer-card li {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.74);
}

.card-link {
  margin-top: auto;
  color: var(--white);
  font-weight: 850;
  border-bottom: 1px solid var(--cyan);
  width: fit-content;
}

.service-detail-card .card-link,
.service-cta .button.secondary {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

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

.outcome-grid strong {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.starter {
  width: 100%;
  max-width: none;
  background: linear-gradient(180deg, rgba(234, 244, 255, 0.72), rgba(247, 249, 252, 0));
  padding: 86px max(20px, calc((100% - 1180px) / 2));
}

.starter-card {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 42px;
  align-items: center;
  border: 1px solid rgba(10, 103, 199, 0.18);
  border-radius: 8px;
  background: var(--white);
  padding: 34px;
  box-shadow: 0 18px 50px rgba(7, 24, 47, 0.08);
}

.starter-card h2 {
  font-size: clamp(30px, 3.4vw, 46px);
}

.starter-card p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

.starter-points {
  display: grid;
  gap: 10px;
}

.starter-points span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  color: var(--ink-2);
  padding: 13px 14px;
  font-weight: 800;
}

.team-section {
  padding-top: 86px;
}

.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.85fr);
  gap: 16px;
}

.team-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: 0 14px 38px rgba(7, 24, 47, 0.07);
}

.team-card.founder-card {
  grid-row: span 3;
  background:
    linear-gradient(135deg, rgba(7, 24, 47, 0.98), rgba(16, 43, 79, 0.94)),
    var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.team-avatar {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.team-avatar.muted {
  background: var(--soft);
  color: var(--blue);
  border: 1px solid rgba(10, 103, 199, 0.18);
}

.team-card span {
  display: inline-block;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 8px;
}

.team-card.founder-card span {
  color: var(--cyan);
}

.team-card h3 {
  margin-bottom: 10px;
}

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

.team-card.founder-card p,
.team-card.founder-card li {
  color: rgba(255, 255, 255, 0.78);
}

.team-card ul {
  margin: 16px 0 0;
  padding-left: 19px;
}

.proof-card {
  box-shadow: var(--shadow);
}

.proof-card .note {
  margin: 18px 0 0;
  font-size: 13px;
}

.faq {
  padding-top: 82px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(7, 24, 47, 0.05);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 850;
  list-style-position: outside;
}

details p {
  margin: 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 0 20px 18px;
}

.diagnosis {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 46px;
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink-2);
  font-weight: 750;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(15, 140, 255, 0.26);
  border-color: var(--blue);
}

.form-note {
  margin-bottom: 0;
  font-size: 13px;
}

.email-fallback-panel {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(25, 92, 180, 0.24);
  border-radius: 8px;
  background: #f4f8ff;
  padding: 16px;
}

.email-fallback-panel[hidden] {
  display: none;
}

.email-fallback-panel strong {
  color: var(--ink);
  font-size: 15px;
}

.email-fallback-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.email-fallback-panel textarea {
  min-height: 176px;
  resize: vertical;
  background: #ffffff;
  font-size: 13px;
  line-height: 1.5;
}

.email-fallback-panel .button {
  width: fit-content;
}

.copy-status {
  color: var(--blue-dark);
  font-size: 13px;
  min-height: 18px;
}

.score-email-fallback {
  margin-top: 16px;
}

.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.footer strong {
  color: var(--ink);
}

.footer p {
  margin: 6px 0 0;
}

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

.score-hero {
  background:
    radial-gradient(circle at 76% 20%, rgba(53, 198, 255, 0.2), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #edf5ff 100%);
  border-bottom: 1px solid var(--line);
}

.score-hero-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 46px;
  align-items: center;
  padding: 70px 0;
}

.score-summary {
  border: 1px solid rgba(10, 103, 199, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  padding: 24px;
}

.score-summary strong {
  display: block;
  color: var(--blue);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.score-summary p {
  margin-bottom: 0;
  color: var(--ink-2);
}

.diagnosis-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 46px;
  align-items: center;
  padding: 76px 0;
}

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

.diagnosis-summary,
.diagnosis-note {
  border: 1px solid rgba(10, 103, 199, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 24px;
}

.diagnosis-summary strong {
  display: block;
  color: var(--blue);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.diagnosis-summary p,
.diagnosis-note p {
  margin-bottom: 0;
  color: var(--muted);
}

.diagnosis-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
  gap: 34px;
  align-items: start;
}

.diagnosis-detail {
  display: grid;
  gap: 22px;
}

.diagnosis-checklist {
  display: grid;
  gap: 14px;
}

.diagnosis-checklist section {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 20px;
}

.diagnosis-checklist span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 900;
}

.diagnosis-checklist p {
  color: var(--muted);
  margin-bottom: 0;
}

.services-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 34px;
  align-items: end;
}

.services-hero-copy {
  max-width: 860px;
}

.services-hero-panel {
  border: 1px solid rgba(10, 103, 199, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(10, 103, 199, 0.11), rgba(53, 198, 255, 0.07)),
    var(--white);
  padding: 26px;
  box-shadow: var(--shadow);
}

.services-hero-panel span {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 850;
}

.services-hero-panel ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--ink-2);
}

.services-hero-panel li {
  margin-bottom: 10px;
}

.services-section {
  padding-top: 54px;
}

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

.service-detail-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 26px;
  box-shadow: 0 14px 38px rgba(7, 24, 47, 0.07);
}

.service-detail-card.featured {
  border-color: rgba(10, 103, 199, 0.38);
  background:
    linear-gradient(135deg, rgba(10, 103, 199, 0.1), rgba(255, 255, 255, 0.92)),
    var(--white);
}

.service-detail-card .offer-label {
  color: var(--blue) !important;
}

.service-detail-card p {
  color: var(--muted);
}

.service-detail-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.service-detail-card dl div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.service-detail-card dt {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-detail-card dd {
  margin: 5px 0 0;
  color: var(--muted);
}

.service-use-cases {
  padding-top: 76px;
}

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

.service-use-case-grid article {
  min-height: 254px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.service-use-case-grid span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 14px;
}

.service-use-case-grid p {
  color: var(--muted);
  font-size: 16px;
}

.services-process {
  width: 100%;
  max-width: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(53, 198, 255, 0.16), transparent 32%),
    linear-gradient(135deg, #07182f, #102b4f);
  color: var(--white);
  padding: 88px max(20px, calc((100% - 1180px) / 2));
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, 100%);
}

.process-steps article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  padding: 22px;
}

.process-steps span {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 850;
}

.process-steps h3,
.process-steps p {
  color: var(--white);
}

.process-steps p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
}

.service-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 26px;
  align-items: center;
  border: 1px solid rgba(10, 103, 199, 0.22);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 30px;
}

.checklist-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: 34px;
  align-items: end;
}

.checklist-scorecard {
  border: 1px solid rgba(10, 103, 199, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 24, 47, 0.96), rgba(16, 43, 79, 0.94)),
    var(--ink);
  color: var(--white);
  padding: 28px;
  box-shadow: var(--shadow);
}

.checklist-scorecard span {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 850;
}

.checklist-scorecard p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.checklist-section {
  padding-top: 58px;
}

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

.checklist-grid article {
  min-height: 298px;
  display: grid;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
  box-shadow: 0 14px 38px rgba(7, 24, 47, 0.06);
}

.checklist-grid span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 14px;
}

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

.checklist-grid label {
  margin-top: auto;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink-2);
  font-weight: 750;
}

.checklist-grid input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.checklist-priorities {
  width: 100%;
  max-width: none;
  background:
    radial-gradient(circle at 82% 0%, rgba(53, 198, 255, 0.15), transparent 32%),
    linear-gradient(135deg, #07182f, #102b4f);
  color: var(--white);
  padding: 88px max(20px, calc((100% - 1180px) / 2));
}

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

.priority-grid article {
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  padding: 24px;
}

.priority-grid h3,
.priority-grid p {
  color: var(--white);
}

.priority-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.checklist-submit {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 0.62fr);
  gap: 34px;
  align-items: start;
}

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

.scorecard-form {
  display: grid;
  gap: 14px;
}

.scorecard-intro,
.scorecard-form fieldset,
.scorecard-result {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.scorecard-intro p:last-child,
.scorecard-form fieldset p,
.scorecard-form label {
  color: var(--muted);
}

.scorecard-form fieldset {
  margin: 0;
}

.scorecard-form legend {
  color: var(--ink);
  font-size: 21px;
  font-weight: 850;
  padding: 0 8px;
}

.scorecard-form fieldset p {
  margin: 6px 0 16px;
}

.scorecard-form label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-weight: 650;
}

.scorecard-form input[type="radio"] {
  width: auto;
  flex: none;
  margin-top: 4px;
  accent-color: var(--blue);
}

.scorecard-result {
  position: sticky;
  top: 102px;
  box-shadow: var(--shadow);
}

.score-number {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.score-number span {
  color: var(--blue);
  font-size: 72px;
  line-height: 0.9;
  font-weight: 900;
}

.score-number small {
  color: var(--muted);
  font-weight: 850;
}

.score-meter {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7edf6;
  margin: 22px 0;
}

.score-meter span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: width 260ms ease;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0;
}

.legal-page {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.legal-page section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 34px;
}

.legal-page h1 {
  font-size: clamp(42px, 5.2vw, 68px);
}

.legal-page h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-top: 34px;
}

.legal-page a {
  color: var(--blue);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.article-page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 96px;
}

.article-hero {
  max-width: 920px;
}

.article-kicker,
.article-meta span {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 850;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.article-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 8px 10px;
}

.article-visual {
  margin: 44px 0;
  overflow: hidden;
  border: 1px solid rgba(10, 103, 199, 0.22);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.article-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.article-visual figcaption {
  color: rgba(255, 255, 255, 0.78);
  padding: 14px 18px 18px;
  font-size: 14px;
}

.article-body {
  max-width: 900px;
  margin: 0 auto;
}

.article-body p,
.article-body li {
  color: var(--ink-2);
  font-size: 18px;
}

.article-body h2 {
  margin-top: 52px;
}

.article-disclaimer {
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: var(--white);
  padding: 18px 20px;
  box-shadow: 0 12px 34px rgba(7, 24, 47, 0.07);
}

.article-client-panel {
  margin: 34px 0 18px;
  border: 1px solid rgba(10, 103, 199, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(10, 103, 199, 0.12), rgba(18, 199, 240, 0.06)),
    var(--white);
  padding: 26px;
  box-shadow: 0 16px 42px rgba(7, 24, 47, 0.08);
}

.article-client-panel span {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 850;
}

.article-client-panel h2 {
  margin-top: 10px;
}

.article-client-panel p {
  margin-bottom: 0;
}

.article-lead-panel {
  margin: 26px 0 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.38fr);
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(10, 103, 199, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 24, 47, 0.96), rgba(16, 43, 79, 0.94)),
    var(--ink);
  padding: 24px;
  box-shadow: 0 18px 44px rgba(7, 24, 47, 0.18);
}

.article-lead-panel span {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 850;
}

.article-lead-panel h2 {
  color: var(--white);
  font-size: clamp(24px, 3vw, 34px);
  margin: 8px 0 8px;
}

.article-lead-panel p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  margin: 0;
}

.article-lead-actions {
  display: grid;
  gap: 10px;
}

.article-lead-actions .button {
  width: 100%;
}

.article-lead-actions .button.primary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.article-lead-actions .button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
}

.article-example-grid,
.article-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 26px 0;
}

.article-example-grid section,
.article-service-grid section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.article-example-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 14px;
}

.article-example-grid p,
.article-service-grid p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 0;
}

.article-steps {
  display: grid;
  gap: 12px;
  padding-left: 24px;
}

.article-deliverables {
  display: grid;
  gap: 12px;
  margin: 24px 0 34px;
  padding: 0;
  list-style: none;
}

.article-deliverables li {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px 18px 18px 48px;
}

.article-deliverables li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(10, 103, 199, 0.12);
}

blockquote {
  margin: 44px 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  color: var(--white);
  padding: 28px;
}

blockquote p {
  margin: 0;
  color: var(--white) !important;
  font-size: clamp(22px, 3vw, 34px) !important;
  line-height: 1.12;
}

.article-cta {
  margin-top: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(10, 103, 199, 0.22);
  border-radius: 8px;
  background: var(--white);
  padding: 28px;
  box-shadow: var(--shadow);
}

.insights-hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0 28px;
}

.insights-hero > div {
  max-width: 880px;
}

.research-pipeline {
  padding-top: 34px;
  padding-bottom: 34px;
}

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

.pipeline-grid article {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
  box-shadow: 0 12px 34px rgba(7, 24, 47, 0.06);
}

.pipeline-grid span {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 850;
}

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

.insights-grid-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.6fr);
  gap: 16px;
  padding-top: 24px;
}

.insight-tile {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 26px;
  box-shadow: 0 16px 46px rgba(7, 24, 47, 0.08);
}

.insight-tile .editorial-image {
  height: 180px;
  border-color: rgba(10, 103, 199, 0.18);
}

.insight-tile.featured {
  grid-row: span 2;
  background:
    linear-gradient(135deg, rgba(7, 24, 47, 0.95), rgba(16, 43, 79, 0.95)),
    var(--ink);
  color: var(--white);
  min-height: 520px;
}

.insight-tile.featured .editorial-image {
  height: clamp(240px, 26vw, 330px);
  border-color: rgba(188, 233, 255, 0.30);
}

.insight-tile span {
  width: fit-content;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 12px;
  font-weight: 850;
}

.insight-tile.featured span {
  color: var(--cyan);
}

.insight-tile h2 {
  font-size: clamp(26px, 3.4vw, 44px);
}

.insight-tile p {
  color: var(--muted);
  font-size: 17px;
}

.insight-tile.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.insight-tile em {
  margin-top: auto;
  width: fit-content;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  font-style: normal;
  font-weight: 850;
}

.insight-tile.featured em {
  color: var(--white);
  border-color: var(--cyan);
}

.muted-tile {
  box-shadow: none;
}

@media (max-width: 980px) {
  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px;
  }

  .hero-inner,
  .score-hero-inner,
  .diagnosis-hero,
  .services-hero,
  .checklist-hero,
  .split,
  .diagnosis,
  .diagnosis-page-grid,
  .checklist-submit,
  .scorecard-layout,
  .scorecard-promo,
  .lead-magnet-band,
  .team-grid,
  .article-cta,
  .article-lead-panel,
  .home-insight-grid,
  .insights-grid-section,
  .service-cta {
    grid-template-columns: 1fr;
  }

  .insight-tile.featured {
    min-height: auto;
  }

  .team-card.founder-card {
    grid-row: auto;
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .editorial-image,
  .insight-card .editorial-image,
  .insight-tile .editorial-image,
  .insight-tile.featured .editorial-image {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .hero-inner {
    min-height: auto;
    padding: 54px 0;
    gap: 34px;
  }

  .audience-grid,
  .offer-grid,
  .use-case-grid,
  .buyer-path-grid,
  .fit-grid,
  .services-grid,
  .process-steps,
  .service-use-case-grid,
  .checklist-grid,
  .priority-grid,
  .pipeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .starter-card {
    grid-template-columns: 1fr;
  }

  .scorecard-result {
    position: static;
  }
}

@media (max-width: 680px) {
  .nav,
  .section,
  .hero-inner,
  .score-hero-inner,
  .diagnosis-hero,
  .insights-hero,
  .services-hero,
  .checklist-hero,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 17px;
  }

  .metric-strip,
  .audience-grid,
  .use-case-grid,
  .offer-grid,
  .buyer-path-grid,
  .fit-grid,
  .article-example-grid,
  .article-service-grid,
  .services-grid,
  .process-steps,
  .service-use-case-grid,
  .checklist-grid,
  .priority-grid,
  .pipeline-grid,
  .outcomes .outcome-grid {
    grid-template-columns: 1fr;
  }

  .use-case-grid article,
  .service-use-case-grid article,
  .checklist-grid article,
  .priority-grid article,
  .pipeline-grid article,
  .fit-grid article,
  .buyer-path-grid a,
  .service-detail-card {
    min-height: auto;
  }

  .starter-card {
    padding: 24px;
  }

  .scorecard-promo,
  .scorecard-intro,
  .scorecard-form fieldset,
  .scorecard-result,
  .lead-magnet-band,
  .article-cta,
  .service-cta,
  .services-hero-panel,
  .checklist-scorecard,
  .service-detail-card,
  .diagnosis-summary,
  .diagnosis-note,
  .legal-page section {
    padding: 20px;
  }

  .diagnosis-checklist section {
    grid-template-columns: 1fr;
  }

  .article-page {
    width: min(100% - 28px, 1120px);
    padding-top: 54px;
  }

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

  .section,
  .blue-band,
  .services-process,
  .checklist-priorities {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .offer-card {
    min-height: auto;
  }

  .footer {
    flex-direction: column;
  }
}
