@font-face {
  font-family: "Inter";
  src: url("assets/fonts/InterVariable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Noto Serif";
  src: url("assets/fonts/NotoSerif-Latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --ink-950: #07182e;
  --ink-900: #0b1f3a;
  --blue-700: #0057d9;
  --blue-100: #e8f1ff;
  --white: #ffffff;
  --canvas: #f4f7fb;
  --soft: #eaf0f7;
  --border: #d8e1ec;
  --text: #0b1f3a;
  --muted: #5f6f82;
  --success: #137a54;
  --success-soft: #eaf7f0;
  --warning: #a45d00;
  --serif: "Noto Serif", Georgia, "Times New Roman", serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --content-width: 1120px;
  --reading-width: 720px;
  --ease: cubic-bezier(0.2, 0, 0, 1);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font: 400 16px/1.55 var(--sans);
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink-900);
  line-height: 1.18;
}

h1 {
  color: var(--white);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

h2 {
  font-size: 2.375rem;
  font-weight: 600;
}

h3 {
  font-size: 1.375rem;
  font-weight: 600;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

::selection {
  color: var(--white);
  background: var(--blue-700);
}

:focus-visible {
  outline: 3px solid var(--blue-700);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink-900);
  border-radius: 6px;
  transform: translateY(-150%);
  transition: transform 180ms var(--ease);
}

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

.container {
  width: min(calc(100% - 48px), var(--content-width));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: min(700px, 78svh);
  color: var(--white);
  background-color: var(--ink-900);
  background-image: url("assets/hero.png");
  background-position: 68% center;
  background-size: cover;
  isolation: isolate;
}

.hero__scrim {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(7, 24, 46, 0.53);
}

.hero__inner {
  display: flex;
  min-height: min(700px, 78svh);
  flex-direction: column;
  width: min(calc(100% - 48px), var(--content-width));
  margin: 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 88px;
  padding: 20px 0;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 44px;
}

.brand-link img {
  width: 168px;
  height: auto;
}

.site-nav__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 28px;
}

.site-nav__links a,
.hero__hint {
  min-height: 44px;
  padding: 10px 0;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  text-underline-offset: 4px;
}

.site-nav__links a:hover,
.site-nav__links a:focus-visible,
.hero__hint:hover,
.hero__hint:focus-visible {
  text-decoration: underline;
}

.hero__content {
  display: flex;
  width: min(100%, 570px);
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 50px 0 70px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--blue-700);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow--light {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #d9f4e8;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
}

.hero__content h1 {
  margin-bottom: 20px;
}

.hero__claim {
  color: var(--white);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.25;
}

.hero__subtitle {
  max-width: 480px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.125rem;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

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

.button--primary:hover,
.button--primary:focus-visible {
  background: #001ab6;
}

.button--dark {
  box-shadow: 0 1px 1px rgba(7, 24, 46, 0.08);
}

.text-link,
.inline-link {
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-link--light {
  color: var(--white);
}

.text-link span,
.inline-link span {
  display: inline-block;
  margin-left: 4px;
  text-decoration: none;
}

.hero__hint {
  align-self: flex-start;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.hero__caption {
  align-self: flex-end;
  max-width: 360px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.6875rem;
  line-height: 1.4;
  text-align: right;
}

.preview-notice {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  color: var(--warning);
  background: #fff4e5;
  border-bottom: 1px solid #f0d3ad;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.preview-notice a {
  color: inherit;
  text-underline-offset: 3px;
}

.section {
  padding: 112px 0;
}

.section--intro {
  padding-top: 64px;
  background: var(--white);
}

.intro-layout,
.partner-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 72px;
  align-items: start;
}

.section-heading h2 {
  max-width: 620px;
}

.intro-copy,
.partner-copy {
  display: grid;
  gap: 24px;
  color: var(--muted);
  font-size: 1.0625rem;
}

.inline-link {
  color: var(--blue-700);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 80px;
}

.benefit-item {
  padding-top: 20px;
  border-top: 2px solid var(--ink-900);
}

.benefit-item__for {
  margin-bottom: 12px;
  color: var(--success);
  font-size: 0.8125rem;
  font-weight: 700;
}

.benefit-item h3 {
  margin-bottom: 10px;
}

.benefit-item > p:last-child {
  color: var(--muted);
  font-size: 0.9375rem;
}

.section--state {
  background: var(--canvas);
}

.section-heading--wide {
  max-width: var(--reading-width);
}

.section-lead {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.0625rem;
}

.state-block {
  margin-top: 72px;
}

.state-block__heading {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.state-block__heading h3 {
  margin-top: 12px;
}

.state-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
}

.state-label--available {
  color: var(--success);
}

.state-label--planned {
  color: var(--warning);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 64px;
}

.feature-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.feature-item__number {
  color: var(--blue-700);
  font-size: 0.8125rem;
  font-weight: 700;
}

.feature-item h4 {
  margin-bottom: 8px;
}

.feature-item p:last-child {
  color: var(--muted);
  font-size: 0.9375rem;
}

.example-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr) auto;
  gap: 32px;
  align-items: end;
  margin-top: 80px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.example-row .eyebrow {
  margin-bottom: 10px;
}

.example-row h3 {
  font-size: 1.25rem;
}

.example-row > p {
  color: var(--muted);
  font-size: 0.875rem;
}

.example-row .inline-link {
  white-space: nowrap;
}

.state-block--planned {
  margin-top: 80px;
}

.planned-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 64px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.planned-list li {
  display: grid;
  gap: 5px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.planned-list strong {
  color: var(--ink-900);
  font-size: 1rem;
}

.planned-list span {
  color: var(--muted);
  font-size: 0.9375rem;
}

.section--partner {
  background: var(--success-soft);
}

.partner-layout {
  align-items: center;
}

.partner-copy {
  color: var(--text);
}

.pricing-note {
  padding: 16px 0 16px 18px;
  border-left: 3px solid var(--success);
  color: var(--ink-900);
  font-size: 0.9375rem;
}

.mail-note {
  color: var(--muted);
  font-size: 0.8125rem;
}

.site-footer {
  padding: 32px 0;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 32px;
}

.brand-link--dark {
  margin-right: 12px;
}

.site-footer__inner p {
  flex: 1 1 240px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.site-footer a:not(.brand-link) {
  text-underline-offset: 3px;
}

.site-footer a:not(.brand-link):hover,
.site-footer a:not(.brand-link):focus-visible {
  color: var(--blue-700);
}

.legal-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.legal-content {
  max-width: 760px;
  padding: 64px 0;
  overflow-wrap: anywhere;
}

.legal-content h1 {
  color: var(--text);
  font-size: 2.375rem;
}

.legal-content > p {
  margin-top: 16px;
}

.legal-content h2 {
  margin: 32px 0 12px;
  font-size: 1.25rem;
}

.legal-content address {
  font-style: normal;
}

.legal-content a {
  color: var(--blue-700);
  text-underline-offset: 3px;
}

@media (max-width: 800px) {
  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section {
    padding: 80px 0;
  }

  .intro-layout,
  .partner-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 56px;
  }

  .feature-grid,
  .planned-list {
    grid-template-columns: 1fr;
  }

  .example-row {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
    margin-top: 56px;
  }

  .state-block,
  .state-block--planned {
    margin-top: 56px;
  }
}

@media (max-width: 560px) {
  .container,
  .hero__inner {
    width: min(calc(100% - 32px), var(--content-width));
  }

  .hero,
  .hero__inner {
    min-height: min(640px, 76svh);
  }

  .hero {
    background-position: 62% center;
  }

  .site-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 16px 0 8px;
  }

  .site-nav__links {
    justify-content: flex-start;
    gap: 0 18px;
  }

  .site-nav__links a {
    font-size: 0.8125rem;
  }

  .hero__content {
    padding: 24px 0;
  }

  .hero__content h1 {
    margin-bottom: 16px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero__claim {
    font-size: 1.625rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 26px;
  }

  .button {
    max-width: 100%;
  }

  .hero__hint {
    margin-bottom: 4px;
  }

  .hero__caption {
    align-self: flex-start;
    margin-bottom: 4px;
    text-align: left;
  }

  .section {
    padding: 64px 0;
  }

  .section--intro {
    padding-top: 32px;
  }

  h2 {
    font-size: 1.875rem;
  }

  .section-lead,
  .intro-copy,
  .partner-copy {
    font-size: 1rem;
  }

  .feature-item {
    gap: 12px;
    padding: 22px 0;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .site-footer__inner p {
    flex: initial;
  }

  .brand-link--dark {
    margin-right: 0;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
  }
}
