﻿* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #172018;
  background: #ffffff;
  line-height: 1.6;
}

.container {
  width: min(1120px, 90%);
  margin: auto;
}

.header {
  border-bottom: 1px solid #e7ebe7;
  background: rgba(255,255,255,.96);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: .4px;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  color: #303a31;
  text-decoration: none;
  font-size: 14px;
}

.hero {
  padding: 115px 0 110px;
  background: linear-gradient(180deg,#f5f8f4 0%,#ffffff 100%);
}

.hero-content {
  max-width: 850px;
}

.eyebrow,
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 22px;
}

h1 {
  font-size: clamp(52px,8vw,92px);
  line-height: .98;
  letter-spacing: -4px;
  margin: 0 0 32px;
}

.hero-text {
  font-size: 20px;
  max-width: 720px;
  color: #526055;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 600;
}

.primary {
  background: #172018;
  color: white;
}

.secondary {
  border: 1px solid #172018;
  color: #172018;
}

.coming {
  margin-top: 24px;
  font-size: 14px;
  color: #6e786f;
}

.section {
  padding: 100px 0;
}

.alternate {
  background: #f5f8f4;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

h2 {
  font-size: clamp(35px,5vw,56px);
  line-height: 1.08;
  letter-spacing: -2px;
  margin: 12px 0 24px;
}

.section p {
  color: #5e695f;
  font-size: 17px;
}

.card-list {
  display: grid;
  gap: 14px;
}

.card {
  border: 1px solid #dfe5df;
  border-radius: 12px;
  padding: 24px;
}

.card span {
  font-size: 12px;
  font-weight: bold;
}

.card h3 {
  margin-bottom: 4px;
}

.card p {
  margin: 0;
  font-size: 15px;
}

.partner-box {
  background: #172018;
  color: white;
  padding: 40px;
  border-radius: 16px;
}

.partner-box p {
  color: #cbd2cc;
}

.center-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

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

.step {
  border-top: 1px solid #cfd7d0;
  padding-top: 28px;
}

.number {
  font-size: 14px;
  margin-bottom: 30px;
}

.step p {
  font-size: 15px;
}

.launch {
  padding: 100px 0;
  background: #172018;
  color: white;
}

.launch-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
}

.launch p {
  color: #c6cec7;
}

.launch-badge {
  border: 1px solid #566058;
  padding: 30px;
  border-radius: 14px;
  min-width: 220px;
}

.launch-badge span,
.launch-badge strong,
.launch-badge small {
  display: block;
}

.launch-badge span {
  font-size: 11px;
  letter-spacing: 2px;
}

.launch-badge strong {
  font-size: 26px;
  margin: 10px 0;
}

footer {
  padding: 40px 0;
  border-top: 1px solid #e5e9e5;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

footer p {
  color: #6a746c;
  font-size: 13px;
}

@media (max-width: 760px) {

  nav {
    display: none;
  }

  h1 {
    letter-spacing: -2px;
  }

  .split,
  .steps,
  .launch-inner {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 45px;
  }

  .launch-inner {
    gap: 30px;
  }

  .footer-inner {
    display: block;
  }
}

/* LR2-D2: Keep section headings clear of the sticky header */
html {
  scroll-padding-top: 90px;
}

section[id] {
  scroll-margin-top: 90px;
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 80px;
  }

  section[id] {
    scroll-margin-top: 80px;
  }
}
