:root {
  --ink: #364857;
  --ink-deep: #263641;
  --teal: #18a7b5;
  --teal-deep: #0f7f89;
  --green: #59c778;
  --green-light: #73d84e;
  --background: #f5f7f6;
  --white: #ffffff;
  --line: #dce5e1;
  --muted: #5f6f78;
  --max-width: 1160px;
  --shadow: 0 20px 55px rgba(38, 54, 65, 0.11);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink-deep);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.65rem, 5.6vw, 4.8rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

h3 {
  font-size: 1.45rem;
}

section[id] {
  scroll-margin-top: 96px;
}

.container {
  width: min(calc(100% - 2.5rem), var(--max-width));
  margin-inline: auto;
}

.narrow {
  max-width: 830px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--ink-deep);
  border-radius: 0.5rem;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 229, 225, 0.86);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: block;
  flex: 0 0 auto;
  width: 184px;
  height: 76px;
  overflow: hidden;
}

.brand img {
  width: 184px;
  height: 76px;
  object-fit: cover;
  object-position: 50% 50%;
}

.nav-list {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  list-style: none;
}

.nav-list a {
  padding: 0.5rem 0;
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-list a:hover {
  color: var(--teal-deep);
}

.nav-list a:focus-visible,
.button:focus-visible,
.email-link:focus-visible,
.site-footer a:focus-visible,
.brand:focus-visible {
  outline: 3px solid var(--green-light);
  outline-offset: 4px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  background:
    radial-gradient(circle at 87% 18%, rgba(89, 199, 120, 0.17), transparent 25rem),
    linear-gradient(135deg, #ffffff 0%, var(--background) 100%);
}

.hero::after {
  position: absolute;
  right: -5rem;
  bottom: -8rem;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(24, 167, 181, 0.16);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6rem);
}

.eyebrow,
.section-kicker {
  margin-bottom: 1rem;
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 760px;
  margin: 1.75rem 0 1rem;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.9vw, 1.35rem);
  line-height: 1.55;
}

.hero-support {
  max-width: 730px;
  color: var(--muted);
  font-size: 1.06rem;
}

.button-row {
  display: flex;
  margin: 2rem 0 1.4rem;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0.76rem 1.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 2px solid transparent;
  border-radius: 0.7rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--ink-deep);
  box-shadow: 0 10px 24px rgba(38, 54, 65, 0.17);
}

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

.button-secondary {
  color: var(--ink-deep);
  background: rgba(255, 255, 255, 0.75);
  border-color: var(--line);
}

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

.disclaimer {
  max-width: 700px;
  margin-bottom: 0;
  padding-left: 1rem;
  color: var(--muted);
  border-left: 3px solid var(--green);
  font-size: 0.84rem;
  line-height: 1.55;
}

.deadline-panel {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: var(--white);
  border: 1px solid rgba(220, 229, 225, 0.9);
  border-radius: 1.4rem;
  box-shadow: var(--shadow);
}

.deadline-topline {
  display: flex;
  margin-bottom: 1.4rem;
  align-items: center;
  gap: 0.6rem;
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-dot {
  width: 0.62rem;
  height: 0.62rem;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(89, 199, 120, 0.15);
}

.deadline-date {
  margin: 0 0 0.8rem;
  color: var(--ink-deep);
  font-size: 1.7rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1;
}

.deadline-date span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--teal-deep);
  font-size: clamp(4rem, 8vw, 5.8rem);
}

.deadline-panel > p:not(.deadline-date) {
  color: var(--muted);
}

.readiness-list {
  display: grid;
  margin-top: 1.6rem;
  gap: 0.8rem;
}

.readiness-list div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink-deep);
  font-size: 0.9rem;
  font-weight: 650;
}

.readiness-list span {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 auto;
  place-items: center;
  color: var(--ink-deep);
  background: rgba(115, 216, 78, 0.25);
  border-radius: 50%;
  font-size: 0.72rem;
}

.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-light {
  background: var(--ink-deep);
}

.section-light h2,
.section-light p {
  color: var(--white);
}

.section-light .section-kicker {
  color: var(--green-light);
}

.section-light h2 {
  margin-bottom: 1.75rem;
}

.section-light p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.18rem);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.6rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.step-card {
  position: relative;
  min-height: 280px;
  padding: 2rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.step-card::after {
  position: absolute;
  right: -1.5rem;
  bottom: -2.5rem;
  width: 8rem;
  height: 8rem;
  background: rgba(89, 199, 120, 0.08);
  border-radius: 50%;
  content: "";
}

.step-number {
  display: block;
  margin-bottom: 3.8rem;
  color: var(--teal-deep);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.step-card h3 {
  margin-bottom: 0.75rem;
}

.step-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.section-tint {
  background: var(--background);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 7rem);
}

.section-intro {
  max-width: 420px;
  margin-top: 1.2rem;
  color: var(--muted);
}

.check-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.75rem;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 1.1rem 1.2rem 1.1rem 3.6rem;
  color: var(--ink-deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  top: 50%;
  left: 1.2rem;
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  color: var(--ink-deep);
  background: rgba(89, 199, 120, 0.25);
  border-radius: 50%;
  content: "✓";
  font-size: 0.82rem;
  transform: translateY(-50%);
}

.checker-panel {
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  box-shadow: var(--shadow);
}

.checker-heading {
  display: flex;
  margin-bottom: 2.25rem;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.checker-heading h2 {
  margin-bottom: 1rem;
}

.checker-heading p:not(.section-kicker) {
  margin-bottom: 0;
  color: var(--muted);
}

.coming-soon {
  flex: 0 0 auto;
  padding: 0.55rem 0.85rem;
  color: var(--teal-deep);
  background: rgba(24, 167, 181, 0.1);
  border: 1px solid rgba(24, 167, 181, 0.22);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.question-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  counter-reset: questions;
  list-style: none;
}

.question-list li {
  display: flex;
  min-height: 76px;
  padding: 1rem 1.1rem;
  align-items: center;
  gap: 0.85rem;
  color: var(--ink-deep);
  background: var(--background);
  border-radius: 0.7rem;
  counter-increment: questions;
  font-weight: 620;
  line-height: 1.45;
}

.question-list li::before {
  display: grid;
  width: 1.85rem;
  height: 1.85rem;
  flex: 0 0 auto;
  place-items: center;
  color: var(--teal-deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  content: counter(questions);
  font-size: 0.72rem;
  font-weight: 850;
}

.checker-close {
  margin: 1.5rem 0 0;
  color: var(--teal-deep);
  font-weight: 750;
}

.provider-section {
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(120deg, rgba(24, 167, 181, 0.15), transparent 55%),
    var(--ink-deep);
}

.provider-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 7rem);
}

.provider-section h2 {
  color: var(--white);
}

.section-kicker-light {
  color: var(--green-light);
}

.provider-copy p {
  max-width: 700px;
}

.button-light {
  margin-top: 0.75rem;
  color: var(--ink-deep);
  background: var(--green-light);
}

.button-light:hover {
  background: var(--green);
}

.contact-section {
  background: var(--background);
}

.contact-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.contact-inner h2 {
  margin-bottom: 1rem;
}

.contact-inner p:not(.section-kicker) {
  margin-bottom: 0;
  color: var(--muted);
}

.email-link {
  display: inline-flex;
  padding-bottom: 0.25rem;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal-deep);
  border-bottom: 2px solid var(--green);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 750;
  text-decoration: none;
}

.site-footer {
  padding: 3rem 0;
  color: rgba(255, 255, 255, 0.67);
  background: #1e2b34;
  font-size: 0.86rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 7vw, 6rem);
}

.footer-brand {
  margin-bottom: 0.7rem;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-footer a {
  color: var(--green-light);
  font-weight: 700;
}

@media (max-width: 860px) {
  .header-inner {
    min-height: auto;
    padding: 0.4rem 0 0.85rem;
    flex-direction: column;
    gap: 0;
  }

  .brand {
    align-self: flex-start;
  }

  .nav-list {
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .hero-grid,
  .split-layout,
  .provider-grid {
    grid-template-columns: 1fr;
  }

  .deadline-panel {
    max-width: 520px;
  }

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

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

  .step-number {
    margin-bottom: 2.25rem;
  }

  .contact-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--max-width));
  }

  .site-header {
    position: static;
  }

  .brand,
  .brand img {
    width: 156px;
    height: 65px;
  }

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

  .nav-list a {
    display: block;
    padding: 0.45rem 0.55rem;
    background: var(--background);
    border-radius: 0.45rem;
    text-align: center;
  }

  .hero {
    padding-top: 3.75rem;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .checker-heading {
    flex-direction: column;
  }

  .question-list {
    grid-template-columns: 1fr;
  }

  .coming-soon {
    align-self: flex-start;
  }

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

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

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