:root {
  color-scheme: dark;
  --bg: #0f1317;
  --panel: #171d22;
  --text: #f8f4ec;
  --muted: #c8c0b4;
  --line: rgba(255, 255, 255, 0.14);
  --gold: #e4b04a;
  --green: #37c98b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  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;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 66px;
  padding: 0 max(18px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(15, 19, 23, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  padding: 0 18px;
  background: var(--gold);
  color: #15110a;
  font-weight: 900;
}

.ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.hero {
  min-height: 76vh;
  display: grid;
  align-items: end;
  padding: 118px max(18px, calc((100vw - 1120px) / 2)) 70px;
  background:
    linear-gradient(90deg, rgba(10, 13, 16, 0.9), rgba(10, 13, 16, 0.56)),
    var(--hero, linear-gradient(135deg, #1f2933, #0f1317));
  background-position: center;
  background-size: cover;
}

.eyebrow {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-top: 14px;
  font-size: clamp(2.9rem, 7vw, 6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 690px;
  margin-top: 22px;
  color: rgba(248, 244, 236, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

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

section {
  padding: 76px max(18px, calc((100vw - 1120px) / 2));
}

.head {
  max-width: 820px;
  margin-bottom: 28px;
}

.head h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
}

.head p {
  margin-top: 12px;
  color: var(--muted);
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--panel);
}

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

.card p,
li {
  color: var(--muted);
}

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

.strip div {
  padding: 22px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.strip strong {
  display: block;
  color: var(--gold);
  font-size: 1.7rem;
}

ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.cta {
  border-top: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(228, 176, 74, 0.13), rgba(55, 201, 139, 0.08));
}

footer {
  padding: 28px max(18px, calc((100vw - 1120px) / 2));
  border-top: 1px solid var(--line);
  color: rgba(248, 244, 236, 0.64);
}

@media (max-width: 820px) {
  .grid,
  .grid.two,
  .strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 86vh;
    padding-top: 96px;
  }

  .nav {
    gap: 12px;
  }
}
