* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f5f4f0;
  --surface: #ffffff;
  --ink: #161a1d;
  --muted: #5f686f;
  --line: #d8dde2;
  --orange: #d46b1f;
  --green: #2e6f55;
  --blue: #1f6d86;
  --radius: 8px;
}

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

a {
  color: var(--blue);
  font-weight: 800;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

.wrap {
  margin: 0 auto;
  max-width: 1080px;
  padding: 0 24px;
}

.nav {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  min-height: 68px;
}

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

.brand img {
  border-radius: var(--radius);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
}

.hero {
  background: #121619;
  color: #ffffff;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  min-height: 590px;
  padding-bottom: 56px;
  padding-top: 56px;
}

.eyebrow {
  color: var(--orange);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(2.55rem, 7vw, 4.35rem);
  max-width: 760px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.lede {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.16rem;
  max-width: 680px;
}

.actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button,
.trust-pill {
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 900;
}

.button {
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  text-decoration: none;
}

.button.primary {
  background: var(--orange);
  color: #1c1208;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #ffffff;
}

.trust-pill {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.88);
  padding: 8px 12px;
}

.feature-img {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.band {
  padding: 52px 0;
}

.white {
  background: var(--surface);
}

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.metric {
  color: var(--green);
  font-size: 2rem;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
}

.fine {
  color: var(--muted);
  font-size: 0.94rem;
}

.legal {
  max-width: 860px;
  padding-bottom: 56px;
  padding-top: 56px;
}

.legal h1 {
  font-size: 2.55rem;
}

.legal h2 {
  font-size: 1.45rem;
  margin-top: 28px;
}

.date-line {
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 28px 0;
}

@media (max-width: 760px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }
}
