@import "tailwindcss";

:root {
  --navy: #071a2b;
  --navy-2: #0c2a43;
  --teal: #0b7f7a;
  --teal-2: #12a59b;
  --silver: #aeb8c4;
  --ink: #122a3d;
  --muted: #526879;
  --line: #d7e1e6;
  --mist: #f3f7f7;
  --paper: #ffffff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1660px, calc(100% - 7vw));
  --shadow: 0 24px 70px rgba(7, 26, 43, 0.09);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #18b9ae;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  left: 1rem;
  top: 1rem;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  border-radius: 0.4rem;
  background: var(--paper);
  color: var(--navy);
  box-shadow: var(--shadow);
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.utility {
  min-height: 48px;
  background: var(--navy);
  color: #f8fbfc;
}

.utility__inner {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.93rem;
}

.utility a,
.utility__signal {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.utility a:hover {
  color: #6fddd6;
}

.utility svg {
  width: 18px;
}

.utility__signal i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2dccbe;
  box-shadow: 0 0 0 6px rgba(45, 204, 190, 0.11);
}

.site-header {
  position: sticky;
  z-index: 90;
  top: 0;
  border-bottom: 1px solid rgba(174, 184, 196, 0.4);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  min-height: 116px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 0.95rem;
}

.brand img {
  width: 48px;
  height: 58px;
  object-fit: contain;
}

.brand__copy {
  display: flex;
  flex-direction: column;
}

.brand__copy strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.brand__copy span {
  margin-top: 0.48rem;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.004em;
  white-space: nowrap;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(0.55rem, 1.15vw, 1.45rem);
  color: #263d4f;
  font-size: clamp(0.8rem, 0.92vw, 0.96rem);
  font-weight: 750;
}

.site-header nav > a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border-radius: 0.65rem;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
  white-space: nowrap;
}

.site-header nav > a:hover {
  color: var(--teal);
}

.site-header nav > .is-active {
  padding-inline: 1rem;
  background: #edf5f5;
  color: var(--teal);
}

.site-header nav > .nav-login {
  min-height: 54px;
  padding: 0 1.25rem;
  background: var(--navy);
  color: var(--paper);
}

.site-header nav > .nav-login:hover {
  transform: translateY(-1px);
  background: var(--teal);
  color: var(--paper);
}

.nav-login svg {
  width: 20px;
  margin-right: 0.7rem;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: var(--paper);
  color: var(--navy);
}

.menu-button svg {
  width: 24px;
}

.section-grid {
  background-color: #fbfdfd;
  background-image:
    linear-gradient(rgba(11, 127, 122, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 127, 122, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(11, 127, 122, 0.18);
  border-radius: 50%;
  content: "";
  right: 3.5%;
  top: 12%;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 720px;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(520px, 0.95fr);
  gap: 7%;
  padding-block: 6rem;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.eyebrow-row span,
.section-kicker {
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-row span {
  padding: 0.42rem 0.78rem;
  border: 1px solid rgba(11, 127, 122, 0.24);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.8);
}

.hero h1 {
  max-width: 820px;
  margin: 1.8rem 0 1.5rem;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(4rem, 6.1vw, 7.2rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.hero h1 em {
  display: block;
  color: var(--teal);
  font-weight: 500;
}

.hero__lead {
  max-width: 780px;
  margin: 0;
  color: #415d71;
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0.55rem;
  font-size: 0.93rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 19px;
}

.button--primary {
  background: var(--navy);
  color: var(--paper);
}

.button--primary:hover {
  background: var(--teal);
}

.button--secondary {
  border-color: #bfd0d7;
  background: rgba(255, 255, 255, 0.85);
  color: var(--navy);
}

.button--secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.button--light {
  background: var(--paper);
  color: var(--navy);
}

.button--teal {
  background: #4cddd1;
  color: var(--navy);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2.25rem 0 0;
  padding: 0;
  color: #3e586a;
  font-size: 0.87rem;
  font-weight: 700;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.trust-list svg {
  width: 17px;
  color: var(--teal);
}

.architecture-card {
  padding: 2.25rem;
  border: 1px solid #d9e2e6;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.card-heading {
  display: flex;
  min-height: 48px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.34rem 0.62rem;
  border-radius: 100px;
  background: #e9f6f4;
  color: #0b6966;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ec3b6;
  box-shadow: 0 0 0 5px rgba(46, 195, 182, 0.13);
}

.architecture {
  display: grid;
  min-height: 350px;
  align-items: stretch;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  padding-block: 1.5rem;
}

.architecture__mark {
  position: relative;
}

.architecture__axis {
  position: absolute;
  width: 1px;
  height: 88%;
  border-left: 1px dashed #8ca4b0;
  left: 56%;
  top: 6%;
}

.architecture__curve {
  position: absolute;
  width: 95px;
  height: 86%;
  border: 4px solid var(--teal);
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 48% 55%;
  left: 29%;
  top: 7%;
  transform: rotate(-8deg);
}

.architecture__mark i {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 4px solid var(--teal);
  border-radius: 50%;
  background: var(--paper);
  left: calc(56% - 11px);
  top: calc(7% + (var(--node) * 20.3%));
  box-shadow: inset 0 0 0 4px var(--paper);
}

.architecture__mark i:nth-of-type(3) {
  background: var(--navy);
}

.architecture ol {
  display: grid;
  margin: 0;
  padding: 0;
  align-content: space-around;
  list-style: none;
}

.architecture li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-left: 2px solid #d9e6e9;
  background: linear-gradient(90deg, #f5f8f8, transparent);
  color: #405b6d;
}

.architecture li span {
  color: var(--teal);
  font-size: 0.66rem;
  font-weight: 850;
}

.architecture-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: #667b89;
  font-size: 0.74rem;
  text-transform: uppercase;
}

.architecture-card__meta span {
  display: flex;
  flex-direction: column;
}

.architecture-card__meta strong {
  margin-top: 0.25rem;
  color: var(--navy);
  font-size: 0.85rem;
  text-transform: none;
}

.search-panel {
  position: relative;
  z-index: 2;
  background: var(--navy);
  color: var(--paper);
}

.search-panel__inner {
  display: grid;
  align-items: center;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 5%;
  padding-block: 2.4rem;
}

.search-panel h2 {
  margin: 0.2rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  font-weight: 500;
}

.search-panel .section-kicker {
  color: #63d8d0;
}

.search-panel form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.search-field {
  display: flex;
  min-height: 62px;
  align-items: center;
  padding: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.65rem;
  background: var(--paper);
  color: var(--navy);
}

.search-field > svg {
  width: 22px;
  margin-left: 0.8rem;
  color: var(--teal);
}

.search-field input {
  min-width: 0;
  flex: 1;
  padding: 0.7rem 0.9rem;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
}

.search-field button {
  min-width: 110px;
  min-height: 46px;
  border: 0;
  border-radius: 0.45rem;
  background: var(--teal);
  color: var(--paper);
  cursor: pointer;
  font-weight: 800;
}

.section {
  padding-block: clamp(5rem, 8vw, 9rem);
}

.section-intro {
  max-width: 780px;
}

.section-intro--wide {
  max-width: 920px;
}

.section h2,
.final-cta h2 {
  margin: 0.55rem 0 1.25rem;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.6vw, 5.25rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.section-intro > p,
.metrics__intro > p,
.records__grid > div > p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.pathways {
  background: var(--paper);
}

.pathway-grid {
  display: grid;
  margin-top: 3rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.pathway-card {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 3.5vw, 3.5rem);
  border: 1px solid var(--line);
  background: #fbfdfd;
}

.pathway-card::after {
  position: absolute;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(11, 127, 122, 0.16);
  border-radius: 50%;
  content: "";
  right: -55px;
  top: -55px;
}

.pathway-card--select {
  background: var(--navy);
  color: var(--paper);
}

.pathway-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pathway-card__top > span {
  color: var(--silver);
  font-family: var(--serif);
  font-size: 2.3rem;
}

.pathway-card h3 {
  margin: 2.6rem 0 0.85rem;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.25rem, 3.4vw, 4rem);
  font-weight: 500;
}

.pathway-card--select h3 {
  color: var(--paper);
}

.pathway-card p {
  max-width: 640px;
  color: #577080;
}

.pathway-card--select p {
  color: #b9cad4;
}

.pathway-card ul {
  display: grid;
  margin: 1.5rem 0 2rem;
  padding: 0;
  gap: 0.55rem;
  list-style: none;
}

.pathway-card li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
}

.pathway-card li svg {
  width: 17px;
  color: var(--teal-2);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 850;
}

.arrow-link svg {
  width: 20px;
  transition: transform 180ms ease;
}

.arrow-link:hover svg {
  transform: translateX(5px);
}

.pathway-card--select .arrow-link {
  color: #6be0d7;
}

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

.dimension-grid {
  display: grid;
  margin-top: 3.5rem;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #cbd9de;
  border-left: 1px solid #cbd9de;
}

.dimension-grid article {
  min-height: 260px;
  padding: 1.8rem;
  border-right: 1px solid #cbd9de;
  border-bottom: 1px solid #cbd9de;
  background: rgba(255, 255, 255, 0.56);
}

.dimension-grid article > span {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 2.4rem;
}

.dimension-grid h3 {
  margin: 2.8rem 0 0.65rem;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.15;
}

.dimension-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.metrics {
  background: var(--paper);
}

.metrics__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 8%;
}

.metrics__intro .arrow-link {
  margin-top: 2rem;
}

.metric-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.metric-cards article {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 2.4rem;
  border: 1px solid var(--line);
  background: #fbfdfd;
}

.metric-cards article:nth-child(2) {
  transform: translateY(2rem);
}

.metric-cards > article > svg {
  width: 42px;
  margin-bottom: 3rem;
  color: var(--teal);
}

.metric-cards article > span {
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.metric-cards h3 {
  margin: 0.8rem 0 0.75rem;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.1;
}

.metric-cards p {
  margin: 0;
  color: var(--muted);
}

.metric-card__meta {
  display: flex;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  justify-content: space-between;
  gap: 0.75rem;
  color: #70838f;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intelligence {
  background: var(--navy);
  color: var(--paper);
}

.intelligence h2,
.intelligence .section-intro p {
  color: var(--paper);
}

.intelligence .section-intro p {
  opacity: 0.72;
}

.intelligence-grid {
  display: grid;
  margin-top: 3.5rem;
  grid-template-columns: 1.38fr 0.62fr;
  gap: 1.2rem;
}

.report-card,
.context-card {
  padding: 2.3rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.04);
}

.report-card .card-heading {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--paper);
}

.record-flow {
  display: grid;
  min-height: 290px;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.record-flow > div {
  position: relative;
  display: flex;
  min-height: 140px;
  flex-direction: column;
  justify-content: center;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.record-flow span {
  color: #5edbd1;
  font-family: var(--serif);
  font-size: 1.75rem;
}

.record-flow strong {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  line-height: 1.3;
}

.record-flow svg {
  position: absolute;
  z-index: 2;
  width: 22px;
  padding: 3px;
  border-radius: 50%;
  background: var(--navy);
  color: #5edbd1;
  right: -16px;
  top: calc(50% - 11px);
}

.context-card ul {
  display: grid;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.context-card li {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.context-card li span {
  color: #5edbd1;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.workflow {
  background: var(--paper);
}

.workflow-list {
  display: grid;
  margin: 3.5rem 0 0;
  padding: 0;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.workflow-list li {
  position: relative;
  min-height: 260px;
  padding: 1.7rem;
  border-top: 2px solid var(--teal);
  border-right: 1px solid var(--line);
}

.workflow-list li:last-child {
  border-right: 0;
}

.workflow-list li > span {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 2.2rem;
}

.workflow-list h3 {
  margin: 3rem 0 0.75rem;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.6rem;
}

.workflow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

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

.records__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 8%;
}

.zero-state {
  display: grid;
  min-height: 245px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  padding: 2.2rem;
  border: 1px solid #ccdade;
  background: var(--paper);
  box-shadow: 0 15px 45px rgba(7, 26, 43, 0.05);
}

.zero-state > svg {
  width: 48px;
  color: var(--teal);
}

.zero-state strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.6rem;
}

.zero-state p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.record-count {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  margin-top: 1.25rem !important;
  color: var(--teal) !important;
  font-size: 0.82rem !important;
  font-weight: 750;
}

.record-count strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.8rem;
}

.recent-records {
  display: grid;
  gap: 0.8rem;
}

.recent-records article {
  position: relative;
  padding: 1.35rem 1.6rem;
  border: 1px solid #ccdade;
  background: var(--paper);
}

.recent-records article > span {
  color: var(--teal);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.recent-records h3 {
  margin: 0.4rem 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.recent-records p {
  margin: 0.2rem 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.recent-records a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.55rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
}

.recent-records a svg {
  width: 17px;
}

.verification {
  padding-block: 0;
  background: var(--paper);
}

.verification__inner {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  padding: 3.5rem;
  background: var(--teal);
  color: var(--paper);
}

.verification__icon {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.verification__icon svg {
  width: 46px;
}

.verification .section-kicker {
  color: #d6fffb;
}

.verification h2 {
  margin-bottom: 0.75rem;
  color: var(--paper);
  font-size: clamp(2.4rem, 3.5vw, 4rem);
}

.verification p {
  max-width: 780px;
  margin: 0;
  color: #e1fffc;
}

.publisher {
  background: var(--paper);
}

.publisher__grid {
  display: grid;
  align-items: end;
  grid-template-columns: 1.2fr 0.8fr auto;
  gap: 4%;
}

.publisher h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 4vw, 4.7rem);
}

.publisher__grid > p {
  margin: 0;
  color: var(--muted);
}

.faq {
  border-top: 1px solid var(--line);
  background: #fbfdfd;
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 8%;
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 1.35rem 2.7rem 1.35rem 0;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  right: 0.4rem;
  content: "+";
  color: var(--teal);
  font-family: var(--serif);
  font-size: 1.7rem;
  top: 0.9rem;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 760px;
  margin: -0.3rem 0 1.4rem;
  color: var(--muted);
}

.final-cta {
  background: var(--navy);
  color: var(--paper);
}

.final-cta__inner {
  display: flex;
  min-height: 315px;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.final-cta .section-kicker {
  color: #66ddd5;
}

.final-cta h2 {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--paper);
}

.footer {
  background: #051421;
  color: var(--paper);
}

.footer__top {
  display: grid;
  padding-block: 4.2rem;
  grid-template-columns: 1.05fr 0.8fr 0.65fr;
  gap: 7%;
}

.brand--inverse .brand__copy strong,
.brand--inverse .brand__copy span {
  color: var(--paper);
}

.brand--inverse img {
  filter: drop-shadow(0 0 12px rgba(60, 218, 207, 0.1));
}

.footer__brand p {
  margin: 1.2rem 0 0 4rem;
  color: #a7bdc8;
  font-size: 0.85rem;
}

.footer__top > nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  align-content: start;
  gap: 0.7rem 2rem;
}

.footer__top nav a {
  color: #d3dfe4;
  font-size: 0.87rem;
}

.footer__top nav a:hover {
  color: #5cddd3;
}

.footer__contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
}

.footer__contact > span {
  color: #7fa1b2;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.footer__contact svg {
  width: 19px;
}

.footer__disclaimer {
  padding-block: 1.75rem;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__disclaimer p {
  max-width: 1400px;
  margin: 0;
  color: #86a7b8;
  font-size: 0.75rem;
}

.footer__bottom {
  display: flex;
  padding-block: 1.5rem;
  align-items: center;
  justify-content: space-between;
  color: #7995a4;
  font-size: 0.72rem;
}

.footer__bottom nav {
  display: flex;
  gap: 1.2rem;
}

@media (max-width: 1280px) {
  :root {
    --shell: min(1180px, calc(100% - 3rem));
  }

  .site-header__inner {
    min-height: 100px;
  }

  .site-header nav {
    gap: 0.65rem;
    font-size: 0.78rem;
  }

  .site-header nav > .nav-login {
    padding-inline: 0.9rem;
  }

  .brand__copy span {
    max-width: 235px;
    white-space: normal;
    line-height: 1.2;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.85fr);
  }

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

  .publisher__grid {
    grid-template-columns: 1fr 0.7fr;
  }

  .publisher__grid .button {
    margin-top: 2rem;
    justify-self: start;
  }
}

@media (max-width: 1020px) {
  .menu-button {
    display: inline-flex;
  }

  .site-header nav {
    position: absolute;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
    inset: 100% 1.5rem auto;
  }

  .site-header nav.is-open {
    display: flex;
  }

  .site-header nav > a {
    padding-inline: 0.8rem;
  }

  .hero__inner,
  .metrics__grid,
  .records__grid {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    min-height: auto;
  }

  .architecture-card {
    max-width: 700px;
  }

  .search-panel__inner {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

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

  .metrics__grid,
  .records__grid {
    gap: 3.5rem;
  }

  .metric-cards article:nth-child(2) {
    transform: none;
  }

  .intelligence-grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

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

  .verification__inner {
    grid-template-columns: auto 1fr;
  }

  .verification__inner .button {
    grid-column: 2;
    justify-self: start;
  }

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

  .footer__contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 2rem);
  }

  .utility__inner {
    font-size: 0.72rem;
  }

  .utility__signal {
    display: none;
  }

  .site-header__inner {
    min-height: 88px;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand img {
    width: 38px;
    height: 48px;
  }

  .brand__copy strong {
    font-size: 2rem;
  }

  .brand__copy span {
    max-width: 205px;
    margin-top: 0.3rem;
    font-size: 0.62rem;
  }

  .hero__inner {
    gap: 3rem;
    padding-block: 4.5rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 5.4rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
    gap: 0.7rem;
  }

  .architecture-card {
    padding: 1.25rem;
  }

  .architecture {
    grid-template-columns: 90px 1fr;
  }

  .architecture-card__meta {
    flex-direction: column;
  }

  .search-field {
    flex-wrap: wrap;
  }

  .search-field input {
    width: calc(100% - 50px);
  }

  .search-field button {
    width: 100%;
  }

  .section {
    padding-block: 4.5rem;
  }

  .section h2,
  .final-cta h2 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .pathway-grid,
  .metric-cards,
  .dimension-grid,
  .workflow-list,
  .record-flow,
  .footer__top,
  .publisher__grid {
    grid-template-columns: 1fr;
  }

  .dimension-grid article {
    min-height: 220px;
  }

  .metric-cards article {
    min-height: 380px;
  }

  .record-flow > div {
    min-height: 100px;
  }

  .record-flow svg {
    right: auto;
    left: calc(50% - 11px);
    top: auto;
    bottom: -16px;
    transform: rotate(90deg);
  }

  .workflow-list li {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .zero-state,
  .verification__inner {
    grid-template-columns: 1fr;
  }

  .zero-state .pill {
    justify-self: start;
  }

  .verification__inner {
    padding: 2rem;
  }

  .verification__inner .button {
    grid-column: auto;
  }

  .final-cta__inner {
    min-height: 410px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .footer__top {
    gap: 2.5rem;
  }

  .footer__brand p {
    margin-left: 0;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 430px) {
  .brand__copy span {
    max-width: 175px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .architecture {
    grid-template-columns: 64px 1fr;
  }

  .architecture__curve {
    width: 60px;
    left: 11%;
  }

  .architecture__axis {
    left: 55%;
  }

  .architecture__mark i {
    left: calc(55% - 11px);
  }

  .pathway-card,
  .metric-cards article,
  .report-card,
  .context-card {
    padding: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .utility,
  .site-header,
  .button,
  .final-cta {
    display: none !important;
  }

  body {
    color: #000;
  }

  .section,
  .hero__inner {
    padding-block: 2rem;
  }

  .hero__inner,
  .metrics__grid,
  .records__grid {
    grid-template-columns: 1fr;
  }
}
