:root {
  color-scheme: light;
  --ink: #10233f;
  --ink-soft: #40536d;
  --navy: #07162d;
  --blue: #075bb5;
  --blue-dark: #06498f;
  --green: #116b52;
  --gold: #f0b429;
  --sky: #eaf3fb;
  --line: #ccd8e6;
  --paper: #ffffff;
  --muted: #f4f7fa;
  --blocked: #704900;
  --blocked-bg: #fff3cc;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(7, 22, 45, 0.10);
}

* {
  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;
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: var(--blue-dark);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--blue);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #06498f;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px #ffd166;
}

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

h1,
h2,
h3 {
  line-height: 1.14;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 15ch;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 6vw, 5.25rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--navy);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(204, 216, 230, 0.75);
  background: rgba(255, 255, 255, 0.96);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 2px 10px rgba(7, 22, 45, 0.18);
}

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

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.brand small {
  color: var(--ink-soft);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header nav,
.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-header nav {
  justify-content: flex-end;
  gap: 12px 16px;
  font-size: 0.9rem;
}

.site-header nav a,
.footer-inner nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-weight: 650;
  text-decoration: none;
}

.hero {
  overflow: hidden;
  padding: clamp(72px, 10vw, 132px) 0;
  background:
    radial-gradient(circle at 92% 15%, rgba(37, 139, 230, 0.18), transparent 28%),
    linear-gradient(135deg, #f8fbfe 0%, #eaf3fb 53%, #f9fbfd 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
}

.eyebrow,
.offer-number,
.status-label {
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lede,
.section-intro {
  max-width: 72ch;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 11px;
  border: 1px solid #d6b451;
  border-radius: 999px;
  background: #fff8dd;
  color: #594100;
  font-size: 0.76rem;
  font-weight: 760;
  line-height: 1.25;
}

.chip-blue {
  border-color: #8bbce9;
  background: #e8f4ff;
  color: #06498f;
}

.chip-green {
  border-color: #90c8b4;
  background: #eaf8f2;
  color: #0c5b44;
}

.entity-profile {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 34px 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--line);
}

.entity-profile > div {
  min-width: 0;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.94);
}

.entity-profile dt {
  margin-bottom: 3px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.entity-profile dd {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.record-note,
.media-note,
.reference-note {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 9px;
  font: inherit;
  font-weight: 760;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.button-primary {
  background: var(--blue-dark);
  color: white;
}

.button-primary:hover {
  background: var(--blue);
  color: white;
}

.button-secondary {
  border-color: var(--blue-dark);
  background: transparent;
  color: var(--blue-dark);
}

.status-card {
  padding: 30px;
  border: 1px solid #e1c46e;
  border-radius: var(--radius);
  background: rgba(255, 248, 222, 0.92);
  box-shadow: var(--shadow);
}

.status-card h2 {
  font-size: 1.75rem;
}

.status-detail {
  margin-bottom: 0;
  font-weight: 670;
}

.section {
  padding: clamp(72px, 9vw, 112px) 0;
  scroll-margin-top: 96px;
}

.section-muted {
  border-block: 1px solid var(--line);
  background: var(--muted);
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
}

.overview-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.video-transcript {
  grid-column: 1 / -1;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
}

.video-transcript summary {
  min-height: 44px;
  color: var(--blue-dark);
  font-weight: 780;
  line-height: 44px;
  cursor: pointer;
}

.video-transcript p {
  color: var(--ink-soft);
}

.video-transcript li {
  padding-left: 6px;
}

.video-transcript li + li {
  margin-top: 16px;
}

.capability-grid,
.differentiator-grid,
.registration-grid,
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.capability-card,
.registration-grid article,
.experience-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 10px 26px rgba(7, 22, 45, 0.06);
}

.capability-card {
  position: relative;
  padding-top: 30px;
}

.capability-card::before {
  position: absolute;
  top: 0;
  left: 26px;
  width: 46px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: var(--blue);
  content: "";
}

.capability-card p,
.registration-grid p,
.experience-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.differentiator-band {
  padding: clamp(66px, 8vw, 96px) 0;
  scroll-margin-top: 96px;
  background:
    radial-gradient(circle at 90% 15%, rgba(7, 91, 181, 0.38), transparent 35%),
    var(--navy);
  color: white;
}

.differentiator-band .eyebrow {
  color: #83c4ff;
}

.differentiator-grid article {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.differentiator-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #83c4ff;
  font-size: 2.2rem;
  line-height: 1;
}

.differentiator-grid p,
.band-note {
  color: #d2deec;
}

.band-note {
  margin: 22px 0 0;
  font-size: 0.88rem;
}

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

.offer-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(7, 22, 45, 0.07);
}

.offer-media {
  overflow: hidden;
  aspect-ratio: 1;
  margin: -30px -30px 28px;
  border-bottom: 1px solid var(--line);
  border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
  background: var(--navy);
}

.offer-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-heading {
  min-height: 136px;
}

.price {
  padding-block: 16px;
  border-block: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 700;
}

.price span {
  color: var(--navy);
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.offer-card ul {
  flex: 1;
  margin: 8px 0 24px;
  padding-left: 22px;
}

.offer-card li + li {
  margin-top: 9px;
}

.offer-actions {
  display: grid;
  gap: 12px;
}

.offer-actions > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.button-disabled,
.button-disabled:disabled {
  border-color: #d1b55f;
  background: var(--blocked-bg);
  color: var(--blocked);
  cursor: not-allowed;
  opacity: 1;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 40px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 10px 26px rgba(7, 22, 45, 0.05);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--navy);
  color: white;
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

tbody td:first-child {
  color: var(--blue-dark);
  font-weight: 820;
  white-space: nowrap;
}

.primary-naics td {
  background: #eaf8f2;
}

.primary-naics td:first-child::after {
  display: block;
  color: var(--green);
  content: "Primary in Aug. 24 source record";
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.03em;
  white-space: normal;
}

.registration-grid article {
  min-height: 160px;
}

.registration-grid h3,
.card-label {
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-grid article {
  min-height: 100%;
}

.experience-grid .card-label {
  margin-bottom: 12px;
}

.reference-note {
  margin: 24px 0 0;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(44px, 7vw, 92px);
}

.process-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.process-list li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-weight: 800;
}

.process-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: 48px;
  padding: clamp(32px, 5vw, 58px);
  border-radius: var(--radius);
  background: var(--navy);
  color: white;
}

.contact-panel .eyebrow {
  color: #83c4ff;
}

.contact-panel p:not(.eyebrow) {
  color: #d2deec;
}

.contact-panel .button-primary {
  background: white;
  color: var(--navy);
}

.contact-panel .button-secondary {
  border-color: white;
  color: white;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  margin-top: 0;
}

.contact-actions .button {
  width: 100%;
}

.contact-utility {
  display: grid;
  gap: 24px;
}

.contact-utility > .contact-actions {
  margin-top: 0;
}

.buyer-resources {
  padding-top: 22px;
  border-top: 1px solid rgba(210, 222, 236, 0.42);
}

.buyer-resources h3 {
  margin-bottom: 7px;
  color: white;
  font-size: 1.1rem;
}

.buyer-resources > p {
  margin-bottom: 14px;
  color: #d2deec;
  font-size: 0.9rem;
}

.buyer-resources .contact-actions {
  margin-top: 0;
}

.buyer-resources .contact-resource-note {
  margin: 12px 0 0;
  font-size: 0.78rem;
}

.buyer-resources .contact-resource-note a {
  color: white;
  font-weight: 750;
}

.resource-hero {
  padding: clamp(68px, 9vw, 112px) 0;
  background:
    radial-gradient(circle at 92% 15%, rgba(37, 139, 230, 0.17), transparent 28%),
    linear-gradient(135deg, #f8fbfe 0%, #eaf3fb 58%, #f9fbfd 100%);
}

.resource-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: center;
  gap: clamp(42px, 7vw, 84px);
}

.resource-page h1 {
  max-width: 16ch;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.resource-fact-card,
.resource-sidebar-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.resource-fact-card dl {
  margin: 0;
}

.resource-fact-card div {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.resource-fact-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.resource-fact-card dt {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.resource-fact-card dd {
  margin: 3px 0 0;
  color: var(--navy);
  font-weight: 720;
}

.resource-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.33fr);
  align-items: start;
  gap: clamp(40px, 7vw, 84px);
}

.resource-article {
  min-width: 0;
}

.resource-article h2 {
  margin-top: 44px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.resource-article h2:first-of-type {
  margin-top: 30px;
}

.resource-article li + li {
  margin-top: 8px;
}

.resource-article a {
  overflow-wrap: anywhere;
}

.resource-status {
  padding: 18px 20px;
  border: 1px solid #d6b451;
  border-radius: 10px;
  background: #fff8dd;
  color: var(--navy);
}

.resource-sidebar {
  position: sticky;
  top: 104px;
}

.resource-sidebar-card {
  display: grid;
  gap: 12px;
}

.resource-sidebar-card > a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding-block: 5px;
  border-bottom: 1px solid var(--line);
  font-weight: 720;
  text-decoration: none;
}

.resource-sidebar-card > a:last-of-type {
  border-bottom: 0;
}

.resource-sidebar-card .record-note {
  margin: 8px 0 0;
}

footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

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

.footer-inner p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

@media (max-width: 940px) {
  .hero-grid,
  .overview-grid,
  .process-grid,
  .contact-panel,
  .resource-hero-grid,
  .resource-layout {
    grid-template-columns: 1fr;
  }

  .resource-sidebar {
    position: static;
  }

  .capability-grid,
  .registration-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .differentiator-grid,
  .experience-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-inner {
    padding-block: 16px;
  }

  .site-header {
    position: static;
  }

  .shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header nav {
    justify-content: flex-start;
  }

  .entity-profile,
  .capability-grid,
  .registration-grid {
    grid-template-columns: 1fr;
  }

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

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