:root {
  color-scheme: dark;
  --ink: #111813;
  --panel: #1c2921;
  --paper: #f4f1e8;
  --muted: #b9c1b7;
  --brass: #d6b56d;
  --sage: #88a78d;
  --line: rgba(244, 241, 232, 0.16);
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.hero {
  min-height: 92dvh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 48px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 22px 40px;
}

.copy {
  max-width: 690px;
}

.eyebrow {
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  margin-top: 12px;
  font-size: clamp(58px, 10vw, 132px);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
}

.lead {
  margin-top: 20px;
  font-size: clamp(24px, 3vw, 38px);
  color: var(--brass);
  font-weight: 800;
}

.copy > p:last-of-type,
.plus p:last-child,
article p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.actions a {
  text-decoration: none;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 14px 18px;
  font-weight: 800;
}

.actions a:first-child {
  background: var(--brass);
  color: var(--ink);
}

.device {
  justify-self: end;
  width: min(340px, 100%);
  aspect-ratio: 0.72;
  border-radius: 46px;
  padding: 14px;
  background: #0d120f;
  border: 1px solid var(--line);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.screen {
  height: 100%;
  border-radius: 34px;
  background: linear-gradient(160deg, #1c2921, #111813);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
}

.screen span {
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.screen strong {
  margin-top: 18px;
  font-size: 36px;
  line-height: 1;
}

.screen p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.band,
.plus {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 22px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  background: var(--line);
  border: 1px solid var(--line);
}

article {
  min-height: 230px;
  background: var(--panel);
  padding: 24px;
}

.plus {
  border-top: 1px solid var(--line);
  padding-bottom: 110px;
}

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

.legalHero {
  min-height: 58dvh;
  grid-template-columns: 1fr;
}

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

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

  .device {
    justify-self: start;
  }

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