:root {
  --ink: #101419;
  --muted: #66717d;
  --paper: #f7f8f6;
  --panel: #ffffff;
  --line: rgba(16, 20, 25, 0.12);
  --teal: #0a7c77;
  --green: #7aa95c;
  --coral: #d86f55;
  --gold: #c59a3d;
  --navy: #182333;
  --shadow: 0 22px 70px rgba(20, 28, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(8, 13, 18, 0.66);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

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

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.header-action,
.pricing a,
.module-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 16px;
  background: #fff;
  color: var(--ink);
  font-weight: 750;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 8, 12, 0.96) 0%, rgba(4, 8, 12, 0.78) 36%, rgba(4, 8, 12, 0.25) 70%),
    linear-gradient(0deg, rgba(4, 8, 12, 0.78) 0%, rgba(4, 8, 12, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 76px);
  padding-top: 76px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9ce5d6;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(3.6rem, 10vw, 8.4rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
}

.action-grid a {
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 750;
  backdrop-filter: blur(14px);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.action-grid a:hover,
.filter-button:hover,
.pricing a:hover,
.module-action:hover {
  transform: translateY(-2px);
}

.action-grid a:first-child {
  background: #fff;
  color: var(--ink);
}

.action-grid a:nth-child(2) {
  background: rgba(255, 255, 255, 0.02);
}

.hero-status {
  position: relative;
  z-index: 2;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(820px, calc(100% - 36px));
  margin: 0 auto 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.hero-status div {
  min-height: 86px;
  padding: 18px;
  background: rgba(4, 8, 12, 0.34);
}

.hero-status strong,
.hero-status span {
  display: block;
}

.hero-status strong {
  font-size: 1.65rem;
}

.hero-status span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.platform-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.platform-strip span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.88rem;
}

.section-intro,
.module-grid,
.experience-shell,
.how-it-works,
.engine-band,
.pathways,
.roadmap-board,
.pricing,
.lead-section,
.os-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.experience-shell,
#dashboard {
  width: min(1480px, calc(100% - 48px));
}

.section-intro {
  padding: 86px 0 30px;
}

.section-intro p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

.compact {
  padding: 0 0 26px;
}

.experience-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.8fr);
  gap: 28px;
  align-items: start;
  padding: 56px 0 48px;
}

.scan-column,
.handoff-column {
  display: grid;
  gap: 18px;
}

.guided-copy p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.08rem;
}

.scan-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.scan-progress {
  display: flex;
  gap: 8px;
  padding: 14px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: #f9faf8;
}

.progress-dot {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
}

.progress-dot.active {
  background: var(--ink);
  color: #fff;
}

.scan-step,
.scan-processing,
.scan-result {
  display: none;
  padding: 24px;
}

.scan-step.active,
.scan-processing.active,
.scan-result.active {
  display: block;
}

.step-label {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.scan-choice,
.scan-reset,
.result-cta {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: #f9faf8;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 760;
  text-align: left;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.scan-choice:hover,
.scan-reset:hover,
.result-cta:hover {
  transform: translateY(-2px);
  background: var(--ink);
  color: #fff;
}

.scan-visual {
  position: relative;
  min-height: 220px;
  margin: 22px 0;
  overflow: hidden;
  border: 1px solid rgba(10, 124, 119, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(10, 124, 119, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(10, 124, 119, 0.06) 1px, transparent 1px),
    #f9faf8;
  background-size: 34px 34px;
}

.scan-line {
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, #0a7c77, transparent);
  box-shadow: 0 0 24px rgba(10, 124, 119, 0.65);
  animation: scanSweep 1.25s ease-in-out infinite alternate;
}

.signal-node {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(10, 124, 119, 0.36);
  animation: nodePulse 1.4s ease-in-out infinite;
}

.node-one {
  top: 28%;
  left: 18%;
}

.node-two {
  top: 58%;
  left: 38%;
  animation-delay: 220ms;
}

.node-three {
  top: 36%;
  left: 64%;
  animation-delay: 440ms;
}

.node-four {
  top: 68%;
  left: 78%;
  animation-delay: 660ms;
}

.scan-feedback {
  display: grid;
  gap: 8px;
}

.scan-feedback span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--muted);
  background: #fff;
}

.scan-feedback span.active {
  color: var(--ink);
  border-color: rgba(10, 124, 119, 0.32);
  background: #e7f1ed;
  font-weight: 850;
}

.scan-feedback span.complete {
  color: var(--teal);
  border-color: rgba(10, 124, 119, 0.24);
  font-weight: 850;
}

.reveal-line,
.confidence-meter,
.scan-result h3,
.preview-summary,
.diagnostic-block,
.preview-note,
.preview-actions,
.scan-result .scan-reset {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

.scan-result.reveal-signal .reveal-line,
.scan-result.reveal-title h3,
.scan-result.reveal-confidence .confidence-meter,
.scan-result.reveal-summary .preview-summary,
.scan-result.reveal-why [data-reveal="why"],
.scan-result.reveal-unlock .preview-note,
.scan-result.reveal-cta .preview-actions,
.scan-result.reveal-cta .scan-reset {
  opacity: 1;
  transform: translateY(0);
}

.reveal-line {
  margin-bottom: 14px;
  color: var(--teal);
  font-weight: 850;
}

.confidence-meter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #f9faf8;
}

.confidence-meter span {
  color: var(--muted);
  font-weight: 850;
}

.confidence-meter strong {
  font-size: 2rem;
}

.diagnostic-block {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #f9faf8;
}

.diagnostic-block h4 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.diagnostic-block ul,
.diagnostic-block ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.diagnostic-block p,
.diagnostic-block li {
  color: var(--muted);
}

.preview-summary {
  margin: 0 0 18px;
  color: var(--ink) !important;
  font-size: 1.14rem;
  font-weight: 760;
}

.preview-note {
  margin: 18px 0;
  border-left: 4px solid var(--teal);
  padding: 10px 0 10px 14px;
  color: var(--muted);
  font-weight: 720;
}

.preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.preview-secondary {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 760;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.preview-secondary:hover {
  transform: translateY(-2px);
  background: var(--ink);
  color: #fff;
}

.limited-result {
  margin: 18px 0 12px;
  border: 1px solid rgba(10, 124, 119, 0.24);
  border-radius: 8px;
  padding: 18px;
  background: #e7f1ed;
}

.limited-result span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.limited-result h4 {
  margin: 0 0 8px;
  font-size: 1.22rem;
}

.limited-result strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.secondary-flow {
  display: none !important;
}

@keyframes scanSweep {
  from {
    left: 4%;
  }

  to {
    left: 96%;
  }
}

@keyframes nodePulse {
  0% {
    transform: scale(0.8);
    box-shadow: 0 0 0 0 rgba(10, 124, 119, 0.36);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 16px rgba(10, 124, 119, 0);
  }

  100% {
    transform: scale(0.8);
    box-shadow: 0 0 0 0 rgba(10, 124, 119, 0);
  }
}

.scan-result p,
.scan-result li {
  color: var(--muted);
}

.scan-result ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  padding-left: 22px;
}

.scan-reset {
  margin-left: 8px;
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.result-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f9faf8;
  font-weight: 850;
  text-align: center;
}

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

.how-it-works {
  padding: 86px 0 0;
}

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

.work-grid article {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(20, 28, 38, 0.06);
}

.work-grid span,
.plan-label {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.work-grid p {
  color: var(--muted);
}

.module-card,
.pathway-grid article,
.pricing article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(20, 28, 38, 0.07);
}

.module-card {
  display: flex;
  grid-column: span 4;
  flex-direction: column;
  min-height: 320px;
  padding: 22px;
}

.module-card:nth-child(-n + 2) {
  grid-column: span 6;
}

.module-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 36px;
  place-items: center;
  border-radius: 8px;
  background: #e7f1ed;
  color: var(--teal);
  font-weight: 850;
}

.module-card p,
.pathway-grid p,
.pricing p,
.timeline p {
  color: var(--muted);
}

.module-card p {
  max-width: 420px;
  margin-bottom: 26px;
}

.module-action {
  width: fit-content;
  margin-top: auto;
  border: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.engine-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 36px;
  align-items: center;
  padding: 104px 0;
}

.engine-copy p:not(.eyebrow) {
  max-width: 500px;
  color: var(--muted);
  font-size: 1.08rem;
}

.engine-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.engine-toolbar {
  display: flex;
  gap: 8px;
  padding: 14px;
  overflow-x: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-button {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0 12px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font: inherit;
  font-weight: 760;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

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

.score-list {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.score-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.score-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 9px;
}

.score-meta span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 4px 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.score-number {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 8px;
  background: #f2c16f;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
}

.pathways,
.pricing {
  padding: 0 0 96px;
}

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

.pathway-grid article,
.pricing article {
  min-height: 230px;
  padding: 24px;
}

.pathway-grid span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.roadmap-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 32px;
  align-items: start;
  padding: 70px clamp(18px, 4vw, 44px);
  margin-bottom: 96px;
  border-radius: 8px;
  background: #dfe9e4;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline article {
  border-left: 4px solid var(--teal);
  padding: 4px 0 4px 18px;
}

.timeline strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.12rem;
}

.pricing article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.pricing h3 {
  margin-bottom: 0;
}

.pricing a {
  width: fit-content;
  background: var(--ink);
  color: #fff;
}

.featured-plan .plan-label {
  color: #9ce5d6;
}

.featured-plan {
  background: var(--ink) !important;
  color: #fff;
}

.featured-plan p {
  color: rgba(255, 255, 255, 0.72);
}

.featured-plan a {
  background: #fff;
  color: var(--ink);
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  gap: 36px;
  align-items: start;
  padding: 0 0 104px;
}

.handoff-column {
  position: sticky;
  top: 92px;
}

.lead-copy p:not(.eyebrow) {
  max-width: 480px;
  color: var(--muted);
  font-size: 1.08rem;
}

.lead-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.handoff-column .lead-copy,
.handoff-column .lead-form,
.handoff-column .confirmation-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(20, 28, 38, 0.07);
}

.handoff-column .lead-form {
  box-shadow: var(--shadow);
}

.blueprint-summary {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(20, 28, 38, 0.07);
}

.blueprint-summary span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.blueprint-summary p,
.blueprint-summary li,
.confirmation-panel p {
  color: var(--muted);
}

.blueprint-summary ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 20px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 760;
}

.lead-form .consent-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.lead-form .consent-check input {
  width: auto;
  min-height: 0;
  margin-top: 4px;
  accent-color: var(--teal);
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #f9faf8;
  color: var(--ink);
  font: inherit;
}

.lead-form button {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-note.success {
  color: var(--teal);
  font-weight: 760;
}

.form-note.error {
  color: var(--coral);
  font-weight: 760;
}

.confirmation-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.confirmation-panel a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 16px;
  background: var(--ink);
  color: #fff;
  font-weight: 850;
}

.os-section {
  padding: 0 0 96px;
}

.dashboard-grid,
.blueprint-deliverable,
.score-grid,
.plan-grid,
.guidance-grid,
.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.blueprint-report {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.blueprint-hero-report {
  padding: clamp(28px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
  background: #f9faf8;
}

.blueprint-hero-report span,
.blueprint-narrative span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.blueprint-hero-report h3 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.98;
}

.blueprint-hero-report strong {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 1;
}

.blueprint-hero-report strong::after {
  content: " Match";
  color: var(--muted);
  font-size: 1rem;
  font-weight: 750;
}

.blueprint-hero-report p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.12rem;
}

.blueprint-narrative {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.blueprint-narrative section {
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
}

.blueprint-narrative ul,
.blueprint-narrative ol {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0;
  padding-left: 22px;
}

.blueprint-narrative li,
.blueprint-narrative p {
  color: var(--muted);
  font-size: 1.02rem;
}

.first-action-copy {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--ink) !important;
  font-size: 1.28rem !important;
  font-weight: 850;
}

.blueprint-progress {
  margin-top: 18px;
}

.blueprint-next-step {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 42px);
  background: var(--ink);
  color: #fff;
}

.blueprint-next-step p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.blueprint-next-step .module-action {
  margin-top: 0;
  background: #fff;
  color: var(--ink);
}

.blueprint-reset {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
}

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

.dashboard-card,
.blueprint-deliverable article,
.score-grid article,
.plan-grid article,
.guidance-grid article,
.ops-grid article,
.roadmap-output,
.action-checklist {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(20, 28, 38, 0.07);
}

.dashboard-card span,
.blueprint-deliverable span,
.score-grid span,
.plan-grid span,
.guidance-grid span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.dashboard-card strong,
.score-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 2.4rem;
  line-height: 1;
}

.dashboard-card p,
.blueprint-deliverable li,
.roadmap-output li,
.plan-grid li,
.guidance-grid p,
.ops-grid p,
.launch-list li {
  color: var(--muted);
}

.action-checklist {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  box-shadow: none;
}

.blueprint-deliverable {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.blueprint-deliverable ul,
.blueprint-deliverable ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.action-checklist label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 720;
}

.action-checklist input {
  margin-top: 4px;
  accent-color: var(--teal);
}

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

.assessment-grid label {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  font-weight: 760;
}

.assessment-grid select {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #f9faf8;
  color: var(--ink);
  font: inherit;
}

.roadmap-output ul,
.plan-grid ul,
.launch-list,
#travelActions {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding-left: 20px;
}

.launch-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 22px 22px 42px;
  background: #fff;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer strong {
  color: #fff;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: 980px;
  }

  .hero-content {
    align-self: start;
    margin-top: 110px;
  }

  .action-grid,
  .hero-status,
  .experience-shell,
  .module-grid,
  .work-grid,
  .engine-band,
  .pathway-grid,
  .roadmap-board,
  .pricing-grid,
  .lead-section,
  .dashboard-grid,
  .blueprint-deliverable,
  .score-grid,
  .plan-grid,
  .guidance-grid,
  .ops-grid,
  .assessment-grid {
    grid-template-columns: 1fr;
  }

  .experience-shell,
  #dashboard {
    width: min(1180px, calc(100% - 36px));
  }

  .handoff-column {
    position: static;
  }

  .engine-band {
    padding: 72px 0;
  }

  .hero-status {
    width: min(560px, calc(100% - 36px));
  }

  .module-card,
  .module-card:nth-child(-n + 2) {
    grid-column: auto;
  }

  .lead-section {
    padding-bottom: 78px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 64px;
    padding: 12px 14px;
  }

  .brand small {
    display: none;
  }

  .header-action {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.85rem;
  }

  .hero {
    min-height: 1040px;
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 5.2rem);
  }

  .action-grid a {
    min-height: 50px;
    padding: 12px;
  }

  .score-item {
    grid-template-columns: 1fr;
  }

  .score-number {
    width: 100%;
    height: 48px;
  }

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

  .scan-reset,
  .result-cta,
  .preview-secondary {
    width: 100%;
    margin: 0 0 10px;
  }
}
