:root {
  --page: #f4f7f6;
  --surface: #ffffff;
  --surface-soft: #eaf2f1;
  --ink: #10212c;
  --muted: #4d5e68;
  --navy: #101d2a;
  --navy-soft: #192c3b;
  --accent: #0e6670;
  --accent-dark: #084e56;
  --line: #cbd7d6;
  --line-dark: #8ba09f;
  --focus: #ffbf47;
  --ready: #1f6849;
  --review: #765415;
  --action: #9b3327;
  --max-width: 1180px;
  --radius: 12px;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-wrap: break-word;
}

main,
section,
article,
aside,
div {
  min-width: 0;
}

a {
  color: inherit;
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-thickness: 0.15em;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--navy);
}

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

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  margin-bottom: 1.5rem;
  font-size: clamp(2.65rem, 6.8vw, 5.75rem);
  letter-spacing: -0.055em;
}

h2 {
  max-width: 840px;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.65rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
}

[id] {
  scroll-margin-top: 7rem;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  background: var(--surface);
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(calc(-100% - 1.5rem));
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: var(--navy);
  color: #ffffff;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  width: min(var(--max-width), calc(100% - 2rem));
  min-height: 76px;
  margin: 0 auto;
  padding-block: 0.75rem;
}

.brand {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  width: fit-content;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 9px;
  background: #ffffff;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 900;
}

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

.brand-copy strong {
  line-height: 1.2;
}

.brand-copy small {
  margin-top: 0.1rem;
  color: #c4d0d6;
  font-size: 0.78rem;
}

.primary-nav {
  display: flex;
  gap: clamp(0.9rem, 2.4vw, 1.8rem);
  flex-wrap: wrap;
  justify-content: flex-end;
  color: #dbe4e8;
}

.primary-nav a {
  padding-block: 0.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.hero,
.section,
.footer-inner {
  width: min(var(--max-width), calc(100% - 2rem));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.72fr);
  gap: clamp(2.5rem, 7vw, 6.25rem);
  align-items: center;
  min-height: min(800px, calc(100vh - 76px));
  padding-block: clamp(4.5rem, 10vw, 8.5rem);
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.lede {
  max-width: 750px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  padding: 0.75rem 1.15rem;
  border: 2px solid var(--accent);
  border-radius: 7px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
}

.button:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  text-decoration: underline;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 800;
}

.signal-list {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin: 2rem 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.88rem;
  list-style: none;
}

.signal-list li {
  padding: 0.4rem 0.68rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.concept-card {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 24px 70px rgba(16, 29, 42, 0.12);
}

.concept-heading {
  padding: 1.5rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, #ffffff, var(--surface-soft));
}

.concept-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  letter-spacing: -0.025em;
}

.concept-path {
  padding: 0.4rem 1.5rem 0.6rem;
}

.concept-path > div {
  position: relative;
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.85rem;
  align-items: start;
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.concept-path > div:last-child {
  border-bottom: 0;
}

.concept-path > div:not(:last-child)::after {
  position: absolute;
  bottom: -0.45rem;
  left: 0.92rem;
  z-index: 1;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  background: var(--surface);
  content: "";
  transform: rotate(45deg);
}

.path-index {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.concept-path p {
  margin-bottom: 0;
}

.concept-path strong,
.concept-path small {
  display: block;
}

.concept-path small {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.section-contrast {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100% - var(--max-width)) / 2));
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 2.5rem;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.split-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 5vw, 4.5rem);
  max-width: 1000px;
  color: var(--muted);
  font-size: 1.08rem;
}

.split-copy p {
  margin-bottom: 0;
}

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

.audience-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.audience-card-primary {
  border-top: 4px solid var(--accent);
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(16, 29, 42, 0.07);
}

.card-label {
  display: block;
  margin-bottom: 1.6rem;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.workflow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  list-style: none;
  overflow: hidden;
}

.workflow-list li {
  padding: 1.5rem;
  border-right: 1px solid var(--line);
}

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

.workflow-number {
  display: block;
  margin-bottom: 2.6rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
}

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

.table-block {
  margin-top: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.table-heading {
  display: flex;
  gap: 1rem;
  align-items: end;
  justify-content: space-between;
  padding: 1.4rem 1.5rem;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.table-heading .eyebrow {
  margin-bottom: 0.35rem;
}

.table-heading h3,
.table-heading p {
  margin-bottom: 0;
}

.table-heading > p {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}

.table-scroll:focus-visible {
  outline-offset: -4px;
  box-shadow: inset 0 0 0 3px var(--navy);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

th,
td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

thead th {
  background: #f7f9f8;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

tbody th {
  color: var(--ink);
  font-size: 0.94rem;
}

tbody td {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.status {
  display: inline-flex;
  width: fit-content;
  padding: 0.26rem 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.status-ready {
  background: #dff0e8;
  color: var(--ready);
}

.status-review {
  background: #f7edcf;
  color: var(--review);
}

.status-action {
  background: #f9e6e3;
  color: var(--action);
}

.status-neutral {
  background: #e8edef;
  color: #465761;
}

.cra-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.official-links {
  display: flex;
  gap: 0.75rem 1.5rem;
  flex-wrap: wrap;
}

.official-links a {
  color: var(--accent-dark);
  font-weight: 800;
}

.deadline-card {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--radius);
  background: var(--navy);
  color: #ffffff;
}

.deadline-card .eyebrow {
  color: #80d0d5;
}

.deadline-card h3 {
  color: #ffffff;
}

.deadline-status {
  display: grid;
  gap: 0.4rem;
  margin: 2rem 0 0;
}

.deadline-status strong {
  color: #ffffff;
  font-size: clamp(1.85rem, 4.8vw, 3.4rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.035em;
}

.deadline-status span {
  color: #d9e5e8;
}

.deadline-note {
  margin: 1.6rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #b9c9cf;
  font-size: 0.82rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 3rem 0 0;
  padding: 1px;
  border-radius: var(--radius);
  background: var(--line);
  list-style: none;
  overflow: hidden;
}

.timeline li {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--surface);
}

.timeline time {
  display: block;
  margin-bottom: 2rem;
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.timeline p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
}

.legal-note {
  max-width: 920px;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
  width: min(var(--max-width), calc(100% - 2rem));
  margin-block: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 6vw, 5rem);
  border-radius: var(--radius);
  background: var(--navy);
  color: #ffffff;
}

.contact-section .eyebrow {
  color: #80d0d5;
}

.contact-section h2 {
  color: #ffffff;
}

.contact-section p {
  max-width: 720px;
  margin-bottom: 0;
  color: #d3dfe3;
}

.contact-action {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.button-light {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--navy);
}

.button-light:hover {
  border-color: #dce9eb;
  background: #dce9eb;
  color: var(--navy);
}

.contact-action p {
  font-size: 0.82rem;
}

.site-footer {
  padding-block: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--navy);
  color: #ffffff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr auto 1.2fr;
  gap: 2rem;
  align-items: start;
}

.site-footer p {
  margin: 0.3rem 0 0;
  color: #bccbd1;
  font-size: 0.88rem;
}

.site-footer nav {
  display: flex;
  gap: 0.65rem 1rem;
  flex-wrap: wrap;
}

.site-footer a {
  color: #e1e9ec;
  font-size: 0.88rem;
}

.footer-note {
  max-width: 420px;
}

.error-page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.error-main {
  display: grid;
  flex: 1;
  place-items: center;
  width: min(760px, calc(100% - 2rem));
  margin-inline: auto;
  padding-block: clamp(3rem, 10vw, 8rem);
}

.error-card {
  width: 100%;
  padding: clamp(2rem, 7vw, 5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 20px 60px rgba(16, 29, 42, 0.09);
}

.error-code {
  margin-bottom: 0.6rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.error-card h1 {
  font-size: clamp(2.4rem, 8vw, 4.6rem);
}

.error-card > p:not(.error-code) {
  max-width: 580px;
  color: var(--muted);
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 2.5rem;
  }

  .audience-grid,
  .workflow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-list li:nth-child(2) {
    border-right: 0;
  }

  .workflow-list li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  [id] {
    scroll-margin-top: 1rem;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding-block: 0.85rem 1rem;
  }

  .primary-nav {
    justify-content: flex-start;
  }

  .hero,
  .cra-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .concept-card {
    width: min(100%, 620px);
  }

  .contact-section {
    gap: 2rem;
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: clamp(2.45rem, 14vw, 4.2rem);
  }

  .hero,
  .section,
  .footer-inner,
  .header-inner,
  .contact-section {
    width: min(100% - 1.5rem, var(--max-width));
  }

  .section-contrast {
    width: 100%;
    padding-inline: 0.75rem;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .primary-nav {
    gap: 0.35rem 1rem;
  }

  .primary-nav a {
    font-size: 0.86rem;
  }

  .hero {
    padding-block: 3.75rem;
  }

  .section {
    padding-block: 4rem;
  }

  .split-copy,
  .audience-grid,
  .workflow-list,
  .timeline,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .workflow-list li,
  .workflow-list li:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .workflow-number {
    margin-bottom: 1.4rem;
  }

  .table-heading {
    display: block;
  }

  .table-heading > p {
    margin-top: 0.5rem;
  }

  .contact-section {
    margin-block: 0;
    padding: 2rem 1.25rem;
    border-radius: 0;
  }

  .button-light {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy small {
    font-size: 0.72rem;
  }

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

  .actions .button {
    width: 100%;
  }

  .deadline-status strong {
    font-size: 1.85rem;
  }
}

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

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