:root {
  color-scheme: light;
  --ink: #101716;
  --ink-soft: #34413f;
  --paper: #f7faf8;
  --mist: #e4efea;
  --teal: #22b995;
  --teal-text: #08745f;
  --teal-bright: #45d6b2;
  --indigo: #7f8cff;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}
a {
  color: inherit;
}

.site-header,
footer {
  display: flex;
  width: min(1180px, calc(100% - 48px));
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
.site-header {
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 18px;
  font-weight: 780;
  letter-spacing: -0.03em;
  text-decoration: none;
}
.brand img {
  border-radius: 11px;
  box-shadow: 0 10px 28px rgb(16 23 22 / 18%);
}
nav {
  display: flex;
  gap: 28px;
}
nav a {
  color: var(--ink-soft);
  font-size: 14px;
  text-decoration: none;
}
nav a:hover {
  color: var(--teal);
}

.hero {
  display: grid;
  min-height: calc(100svh - 84px);
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(52px, 7vw, 112px);
  padding: 72px max(24px, calc((100vw - 1180px) / 2)) 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 7%, rgb(69 214 178 / 18%), transparent 31%),
    linear-gradient(135deg, #f7faf8 58%, #edf6f1);
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--teal-text);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.14em;
}
.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(56px, 6.1vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}
.lede {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.6;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.provider-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 4px;
}

.provider-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid color-mix(in srgb, var(--mist) 78%, transparent);
  border-radius: 999px;
  color: var(--ink-soft);
  background: color-mix(in srgb, white 84%, transparent);
  box-shadow: 0 8px 28px rgb(18 47 41 / 5%);
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.provider-row i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 0 4px rgb(69 214 178 / 12%);
}
.actions a,
.actions .availability-note {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}
.primary {
  background: var(--ink);
  color: white;
  transition:
    transform 140ms ease,
    background 140ms ease;
}
.primary:hover {
  background: #17342e;
  transform: translateY(-2px);
}
.availability-note {
  border: 1px solid #d6e1dc;
  color: var(--ink-soft);
  background: rgb(255 255 255 / 55%);
  cursor: default;
}
.secondary {
  border: 1px solid #bed0c7;
  transition:
    transform 140ms ease,
    border-color 140ms ease;
}
.secondary:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}

.timeline {
  position: relative;
  padding: 28px;
  border: 1px solid rgb(156 181 170 / 45%);
  border-radius: 26px;
  background: rgb(255 255 255 / 84%);
  box-shadow: 0 40px 110px rgb(26 80 68 / 16%);
  transform: rotate(1deg);
  animation: arrive 700ms cubic-bezier(0.2, 0.85, 0.25, 1) both;
}
.timeline::before {
  position: absolute;
  inset: -52px -70px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(127 140 255 / 18%), transparent 65%);
  content: '';
}
.timeline-top {
  display: flex;
  align-items: center;
  gap: 13px;
}
.timeline-top img {
  border-radius: 12px;
}
.timeline-top strong,
.timeline-top span {
  display: block;
}
.timeline-top strong {
  font-size: 22px;
}
.timeline-top span {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 12px;
}
.search {
  margin-top: 24px;
  padding: 14px 16px;
  border: 1px solid #c7d7d0;
  border-radius: 13px;
  color: #697673;
}
.filters {
  display: flex;
  gap: 18px;
  margin: 18px 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}
.timeline article {
  padding: 20px 16px 22px;
  border-top: 1px solid #dce8e2;
}
.timeline article:first-of-type {
  border-radius: 16px;
  background: #edf7f2;
}
.timeline small {
  display: block;
  color: var(--teal);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.08em;
}
.timeline article strong {
  display: block;
  margin-top: 9px;
  font-size: 16px;
}
.timeline article p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.capabilities {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0;
}
.capabilities h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}
.capability-list {
  margin-top: 86px;
}
.capability-list article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 30px;
  padding: 28px 0;
  border-top: 1px solid #ccdcd4;
}
.capability-list article > span {
  color: var(--teal-text);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.capability-list h3 {
  margin: 0;
  font-size: 24px;
}
.capability-list p {
  max-width: 670px;
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}

.closing {
  padding: 120px max(24px, calc((100vw - 1080px) / 2));
  background: var(--ink);
  color: white;
}
.closing p {
  color: var(--teal-bright);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.14em;
}
.closing h2 {
  max-width: 880px;
  margin: 22px 0 42px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}
.closing a {
  color: white;
  font-size: 17px;
  font-weight: 700;
  text-decoration-color: var(--teal);
  text-underline-offset: 8px;
}

.policy {
  width: min(800px, calc(100% - 48px));
  min-height: calc(100svh - 180px);
  margin: 0 auto;
  padding: 90px 0 120px;
}
.policy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.06em;
}
.policy-lede {
  margin: 34px 0 78px;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.7;
}
.policy section {
  padding: 28px 0;
  border-top: 1px solid #cbdad3;
}
.policy h2 {
  margin: 0 0 12px;
  font-size: 21px;
}
.policy section p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.78;
}
code {
  padding: 0.12em 0.35em;
  border-radius: 5px;
  background: var(--mist);
}
footer {
  min-height: 86px;
  color: var(--ink-soft);
  font-size: 13px;
}
footer a {
  text-decoration: none;
}
.footer-links {
  display: flex;
  gap: 24px;
}

.support-hero {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 90px 0 56px;
}
.support-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.03;
  letter-spacing: -0.06em;
}
.support-hero .policy-lede {
  max-width: 760px;
  margin-bottom: 0;
}
.support-grid {
  display: grid;
  width: min(920px, calc(100% - 48px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
  padding: 0 0 120px;
}
.support-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid #cbdad3;
  border-radius: 22px;
  background: rgb(255 255 255 / 64%);
}
.support-card--accent {
  background: radial-gradient(circle at 100% 0%, rgb(69 214 178 / 36%), transparent 42%), white;
}
.support-card--wide {
  grid-column: 1 / -1;
}
.support-card__heading {
  max-width: 670px;
}
.support-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #087e69;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.support-card h2 {
  margin: 0 0 14px;
  font-size: 23px;
  letter-spacing: -0.025em;
}
.support-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}
.support-card p + p {
  margin-top: 14px;
}
.support-card a {
  color: var(--ink);
  font-weight: 720;
  text-decoration-color: var(--teal);
  text-underline-offset: 5px;
}
.support-channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.support-card .support-channel {
  display: grid;
  min-height: 190px;
  align-content: start;
  padding: 24px;
  border: 1px solid #c7d8d0;
  border-radius: 18px;
  background: rgb(248 253 251 / 90%);
  color: var(--ink);
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}
.support-card .support-channel:hover,
.support-card .support-channel:focus-visible {
  border-color: var(--teal);
  box-shadow: 0 18px 42px rgb(13 41 33 / 12%);
  transform: translateY(-3px);
}
.support-card .support-channel--primary {
  border-color: #13251f;
  background: var(--ink);
  color: white;
}
.support-channel__region {
  justify-self: start;
  margin-bottom: 28px;
  padding: 5px 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.72;
  text-transform: uppercase;
}
.support-channel strong {
  font-size: 28px;
  letter-spacing: -0.035em;
}
.support-channel__method {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 650;
  opacity: 0.68;
}
.support-channel__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 22px;
  font-size: 14px;
  font-weight: 760;
}
.support-card--trust {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 32px;
  align-items: center;
}
.support-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.support-trust-list li {
  padding: 9px 12px;
  border: 1px solid #cbdad3;
  border-radius: 999px;
  background: rgb(255 255 255 / 70%);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 720;
}

@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(24px) rotate(1deg) scale(0.98);
  }
}
@media (max-width: 820px) {
  .site-header,
  footer {
    width: min(100% - 32px, 1180px);
  }
  nav {
    gap: 16px;
  }
  nav a:first-child {
    display: none;
  }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 76px 24px 90px;
  }
  .hero h1 {
    font-size: clamp(50px, 14vw, 72px);
  }
  .timeline {
    transform: none;
  }
  .capabilities {
    width: min(100% - 48px, 1080px);
    padding: 110px 0;
  }
  .capability-list {
    margin-top: 58px;
  }
  .capability-list article {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }
  .policy {
    padding-top: 64px;
  }
  .support-hero {
    padding-top: 64px;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
  .support-channel-grid,
  .support-card--trust {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .timeline {
    animation: none;
  }
}
