:root {
  color-scheme: light;
  --ink: #141614;
  --muted: #5f665f;
  --paper: #fbfaf6;
  --cream: #f4efe4;
  --teal: #0e3b37;
  --mint: #8ed1c6;
  --amber: #f5bd40;
  --rose: #f05b52;
  --line: rgba(20, 22, 20, 0.14);
  --shadow: 0 22px 65px rgba(18, 23, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: #fffdf7;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  min-width: 0;
  font-weight: 760;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(10, 14, 12, 0.45);
  font-size: 14px;
  letter-spacing: 0;
}

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

.nav-links a {
  padding: 10px 12px;
}

.nav-download {
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(10, 14, 12, 0.35);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #102d29;
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 13, 11, 0.84) 0%, rgba(7, 13, 11, 0.58) 46%, rgba(7, 13, 11, 0.1) 100%),
    linear-gradient(0deg, rgba(7, 13, 11, 0.74) 0%, rgba(7, 13, 11, 0) 34%);
}

.hero-copy {
  position: relative;
  width: min(720px, calc(100% - 36px));
  margin: 0 clamp(18px, 7vw, 96px) clamp(42px, 9vh, 90px);
  color: #fffdf7;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(56px, 10vw, 118px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 253, 247, 0.88);
  font-size: clamp(19px, 2.2vw, 26px);
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 760;
  line-height: 1.1;
}

.primary-action {
  background: var(--amber);
  color: #211b07;
}

.secondary-action {
  border: 1px solid currentColor;
  color: inherit;
}

.fine-print {
  margin: 18px 0 0;
  color: rgba(255, 253, 247, 0.72);
  font-size: 14px;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.status-strip > div {
  min-height: 118px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--paper);
}

.status-label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.status-strip strong {
  display: block;
  font-size: clamp(20px, 2.4vw, 29px);
  line-height: 1.12;
}

.section {
  padding: clamp(70px, 10vw, 132px) clamp(18px, 6vw, 88px);
}

.section-heading {
  max-width: 860px;
}

.section-heading p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.steps,
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.step,
.privacy-grid article {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: #fffdf8;
  box-shadow: 0 8px 30px rgba(18, 23, 20, 0.06);
}

.step p,
.privacy-grid p {
  margin: 0;
  color: var(--muted);
}

.step-number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--teal);
  color: #fffdf7;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: #101211;
  color: #fffdf7;
}

.split .section-heading p:not(.eyebrow) {
  color: rgba(255, 253, 247, 0.72);
}

.flow {
  display: grid;
  gap: 12px;
}

.flow div {
  border: 1px solid rgba(255, 253, 247, 0.2);
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(255, 253, 247, 0.08);
  font-weight: 760;
}

.flow span {
  color: var(--mint);
  font-size: 24px;
  text-align: center;
}

.privacy-band {
  background: var(--cream);
}

.download-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 clamp(18px, 6vw, 88px) clamp(56px, 8vw, 96px);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 56px);
  background: var(--teal);
  color: #fffdf7;
  box-shadow: var(--shadow);
}

.download-panel h2 {
  font-size: clamp(32px, 4.5vw, 54px);
}

.download-panel p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 253, 247, 0.76);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 88px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--teal);
  font-weight: 760;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .brand span:last-child {
    display: none;
  }

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

  .nav-links a {
    padding: 8px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-art {
    width: 145%;
    max-width: none;
    transform: translateX(-22%);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(7, 13, 11, 0.25) 0%, rgba(7, 13, 11, 0.86) 58%, rgba(7, 13, 11, 0.9) 100%),
      linear-gradient(90deg, rgba(7, 13, 11, 0.48), rgba(7, 13, 11, 0.08));
  }

  .status-strip,
  .steps,
  .privacy-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .status-strip > div {
    min-height: auto;
  }

  .download-panel,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-inline: 14px;
  }

  .nav-links a:not(.nav-download) {
    display: none;
  }

  .hero-copy {
    width: calc(100% - 28px);
    margin-inline: 14px;
  }

  .primary-action,
  .secondary-action,
  .download-actions {
    width: 100%;
  }

  .download-actions {
    margin-top: 20px;
  }
}
