:root {
  color-scheme: light;
  --ink: #161a17;
  --muted: #5d665f;
  --paper: #ffffff;
  --wash: #f3f6f3;
  --line: #dce1dd;
  --brand: #0b6b56;
  --brand-dark: #06483a;
  --brand-soft: #dcefe9;
  --attention: #9a5400;
  --attention-soft: #fff0da;
  --info: #315f99;
  --info-soft: #e6eef9;
  --urgent: #a83833;
  --max-width: 1120px;
  --radius: 8px;
  --shadow: 0 24px 70px rgb(13 35 27 / 18%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
}

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

a {
  color: var(--brand);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--brand-dark);
}

a:focus-visible {
  outline: 3px solid var(--info);
  outline-offset: 4px;
  border-radius: 3px;
}

.site-header {
  position: relative;
  z-index: 20;
  min-height: 68px;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  background: var(--brand-dark);
  color: #ffffff;
}

.nav {
  width: min(var(--max-width), calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 750;
  text-decoration: none;
}

.brand-link img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
}

.nav-links a {
  color: rgb(255 255 255 / 82%);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: min(720px, calc(92svh - 68px));
  overflow: hidden;
  background: var(--brand-dark);
  color: #ffffff;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max-width), calc(100% - 32px));
  min-height: min(720px, calc(92svh - 68px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 70px 0 86px;
}

.hero-copy {
  width: min(610px, 58%);
}

.hero-icon {
  width: 76px;
  height: 76px;
  margin-bottom: 28px;
  border-radius: 18px;
  box-shadow: 0 14px 36px rgb(0 0 0 / 22%);
}

.eyebrow {
  margin: 0 0 12px;
  color: #aee4d5;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 790;
}

.hero-lede {
  max-width: 580px;
  margin: 0;
  color: rgb(255 255 255 / 82%);
  font-size: clamp(20px, 2.5vw, 27px);
  line-height: 1.42;
}

.hero-note {
  margin: 30px 0 0;
  color: #aee4d5;
  font-size: 16px;
  font-weight: 650;
}

.hero-product {
  position: absolute;
  z-index: 1;
  right: max(4vw, calc((100vw - var(--max-width)) / 2));
  bottom: -210px;
  width: min(34vw, 390px);
  border: 7px solid #0a0c0b;
  border-radius: 46px;
  box-shadow: var(--shadow);
}

.section {
  padding: 88px 0;
}

.section-muted {
  background: var(--wash);
}

.section-dark {
  background: #15211c;
  color: #ffffff;
}

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

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

.section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 54px);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.section-dark .section-heading p {
  color: rgb(255 255 255 / 70%);
}

.steps,
.feature-grid,
.trust-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

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

.step,
.feature,
.trust-item {
  background: var(--paper);
  padding: 28px;
}

.step-number {
  display: block;
  margin-bottom: 22px;
  color: var(--brand);
  font-size: 15px;
  font-weight: 800;
}

.step h3,
.feature h3,
.trust-item h3 {
  margin-bottom: 9px;
  font-size: 21px;
}

.step p,
.feature p,
.trust-item p {
  margin: 0;
  color: var(--muted);
}

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

.feature-accent {
  border-top: 4px solid var(--brand);
}

.feature-accent:nth-child(2) {
  border-top-color: var(--attention);
}

.feature-accent:nth-child(3) {
  border-top-color: var(--info);
}

.feature-accent:nth-child(4) {
  border-top-color: var(--urgent);
}

.trust-grid {
  grid-template-columns: repeat(3, 1fr);
  border-color: rgb(255 255 255 / 16%);
  background: rgb(255 255 255 / 16%);
}

.trust-item {
  background: #15211c;
}

.trust-item p {
  color: rgb(255 255 255 / 68%);
}

.release-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--line);
  padding: 52px 0;
}

.release-band h2 {
  margin-bottom: 8px;
  font-size: 31px;
}

.release-band p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  flex: 0 0 auto;
  font-weight: 750;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.legal-main {
  padding: 66px 0 96px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 720px) 220px;
  justify-content: space-between;
  gap: 72px;
}

.legal-header {
  margin-bottom: 48px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.legal-header h1 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(42px, 7vw, 64px);
}

.legal-header p {
  margin: 0;
  color: var(--muted);
}

.legal-copy h2 {
  margin: 46px 0 12px;
  font-size: 27px;
}

.legal-copy h3 {
  margin: 26px 0 8px;
  font-size: 20px;
}

.legal-copy p,
.legal-copy li {
  color: #343b36;
}

.legal-copy ul,
.legal-copy ol {
  padding-left: 24px;
}

.legal-copy li + li {
  margin-top: 8px;
}

.policy-callout {
  margin: 30px 0;
  border-left: 4px solid var(--brand);
  background: var(--brand-soft);
  padding: 20px 22px;
}

.policy-callout strong {
  display: block;
  margin-bottom: 4px;
}

.policy-callout p {
  margin: 0;
  color: #214c40;
}

.legal-nav {
  position: sticky;
  top: 26px;
  align-self: start;
  border-left: 1px solid var(--line);
  padding-left: 24px;
  font-size: 14px;
}

.legal-nav strong {
  display: block;
  margin-bottom: 10px;
}

.legal-nav a {
  display: block;
  padding: 5px 0;
  color: var(--muted);
  text-decoration: none;
}

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

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

.faq-list summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 720;
}

.faq-list details p {
  margin: 12px 0 0;
}

.support-contact {
  margin-top: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.support-contact h2 {
  margin: 0 0 8px;
}

.support-contact p {
  margin: 0 0 14px;
}

@media (max-width: 820px) {
  .hero,
  .hero-inner {
    min-height: 770px;
  }

  .hero-inner {
    align-items: flex-start;
    padding-top: 52px;
  }

  .hero-copy {
    width: 100%;
    max-width: 590px;
  }

  .hero-product {
    right: 24px;
    bottom: -450px;
    width: 275px;
    border-radius: 34px;
  }

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

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    display: none;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .site-header,
  .nav {
    min-height: 62px;
  }

  .brand-link span {
    display: none;
  }

  .nav-links {
    gap: 14px;
    font-size: 14px;
  }

  .hero,
  .hero-inner {
    min-height: min(780px, calc(94svh - 62px));
  }

  .hero-inner {
    padding-top: 34px;
  }

  .hero-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    border-radius: 14px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-lede {
    max-width: 94%;
    font-size: 20px;
  }

  .hero-note {
    margin-top: 20px;
  }

  .hero-product {
    right: 18px;
    bottom: -285px;
    width: 215px;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .step,
  .feature,
  .trust-item {
    padding: 22px;
  }

  .release-band,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-main {
    padding: 44px 0 72px;
  }

  .legal-header h1 {
    font-size: 42px;
  }
}

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