:root {
  color-scheme: light;
  --color-ink: #14231f;
  --color-muted: #71817b;
  --color-line: #dce3df;
  --color-surface: #f4f2eb;
  --color-card: #ffffff;
  --color-dark: #0d1b18;
  --color-accent: #d5f348;
  --color-blue: #3975dc;
  --shadow-card: 0 24px 80px rgb(20 35 31 / 12%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--color-ink);
  background: var(--color-surface);
}

a {
  color: inherit;
}

.site-header,
main,
.site-footer {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.site-header {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-ink);
  text-decoration: none;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.brand__name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

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

.button:focus-visible {
  outline: 3px solid rgb(57 117 220 / 35%);
  outline-offset: 3px;
}

.button--primary {
  color: var(--color-dark);
  background: var(--color-accent);
}

.button--outline {
  border-color: var(--color-line);
  background: rgb(255 255 255 / 42%);
}

.button--compact {
  min-height: 42px;
  padding-inline: 16px;
  border-radius: 14px;
  font-size: 14px;
}

.hero {
  display: grid;
  min-height: 670px;
  align-items: center;
  gap: 56px;
  padding: 72px 0 96px;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.kicker {
  margin: 0 0 20px;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: balance;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(44px, 11vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 7vw, 58px);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  letter-spacing: -0.035em;
}

.hero__description {
  max-width: 610px;
  margin: 0 0 34px;
  color: var(--color-muted);
  font-size: clamp(18px, 4vw, 23px);
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  margin-bottom: 18px;
}

.hero__actions .button {
  width: 100%;
}

.hero__note {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
}

.hero__visual {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
}

.hero__glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--color-accent);
  filter: blur(1px);
}

.status-card {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  padding: 26px;
  border: 1px solid rgb(255 255 255 / 45%);
  border-radius: 30px;
  color: #f8faf8;
  background: var(--color-dark);
  box-shadow: var(--shadow-card);
  transform: rotate(-3deg);
}

.status-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  font-size: 15px;
  font-weight: 750;
}

.status-card__live {
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--color-accent);
  background: rgb(213 243 72 / 12%);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-card__progress {
  height: 8px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 999px;
  background: rgb(255 255 255 / 12%);
}

.status-card__progress span {
  display: block;
  width: 64%;
  height: 100%;
  border-radius: inherit;
  background: var(--color-accent);
}

.status-card__steps {
  display: grid;
  gap: 19px;
  margin: 0;
  padding: 0;
  color: rgb(255 255 255 / 48%);
  font-size: 14px;
  list-style: none;
}

.status-card__steps li {
  position: relative;
  padding-left: 28px;
}

.status-card__steps li::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 2px solid currentcolor;
  border-radius: 50%;
  content: "";
}

.status-card__steps .is-complete,
.status-card__steps .is-active {
  color: #ffffff;
}

.status-card__steps .is-complete::before {
  border-color: var(--color-accent);
  background: var(--color-accent);
}

.status-card__steps .is-active::before {
  border-color: var(--color-accent);
}

.how-it-works {
  padding: 88px 0;
  border-top: 1px solid var(--color-line);
}

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

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: 26px;
  background: rgb(255 255 255 / 54%);
}

.step__number {
  display: block;
  margin-bottom: 48px;
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.step p {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.55;
}

.closing {
  display: grid;
  gap: 34px;
  margin-bottom: 32px;
  padding: 38px 28px;
  border-radius: 30px;
  color: #ffffff;
  background: var(--color-dark);
}

.closing .kicker {
  color: rgb(255 255 255 / 52%);
}

.closing h2 {
  max-width: 700px;
}

.site-footer {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--color-muted);
  font-size: 13px;
}

.site-footer a {
  text-underline-offset: 4px;
}

@media (min-width: 720px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 64px, 1180px);
  }

  .hero__actions .button {
    width: auto;
  }

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

  .closing {
    grid-template-columns: 1fr auto;
    align-items: end;
    padding: 54px;
  }
}

@media (min-width: 960px) {
  .site-header {
    min-height: 88px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.4fr) minmax(330px, 0.6fr);
    padding-top: 56px;
  }

  .hero__visual {
    min-height: 520px;
  }

  .status-card {
    transform: rotate(-5deg) translateX(-12px);
  }
}

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

  .button {
    transition: none;
  }
}
