:root {
  color-scheme: dark;
  --bg: #111214;
  --surface: #191b1e;
  --surface-raised: #202327;
  --border: #34383e;
  --text: #f1f2f3;
  --muted: #b7bbc2;
  --accent: #d5ff5f;
  --accent-text: #172000;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-nav {
  border-bottom: 1px solid var(--border);
}

.nav-inner,
.page,
.footer-inner {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.nav-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  text-decoration: none;
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
}

.nav-link,
.text-link {
  color: var(--muted);
  text-underline-offset: 4px;
}

.page { padding: 76px 0 88px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(38px, 7vw, 84px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--accent-text);
  font-weight: 780;
  text-decoration: none;
}

.shot {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 30px 80px rgb(0 0 0 / 35%);
}

.shot img {
  display: block;
  width: 100%;
  height: auto;
}

.shot figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-size: 0.84rem;
}

.content {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.6fr);
  gap: clamp(38px, 8vw, 96px);
  margin-top: 96px;
}

.prose h2,
.aside h2 {
  margin: 50px 0 16px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.prose h2:first-child,
.aside h2:first-child { margin-top: 0; }

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

.prose strong { color: var(--text); }

.steps {
  padding-left: 1.3rem;
}

.steps li { padding-left: 8px; margin: 13px 0; }

.aside {
  align-self: start;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
}

.aside h2 { font-size: 1.45rem; }

.aside ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.aside li {
  padding: 13px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.aside li:first-child { border-top: 0; }

.final-cta {
  margin-top: 88px;
  padding: clamp(32px, 7vw, 64px);
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface-raised);
  text-align: center;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.final-cta p {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
}

.final-cta .actions { justify-content: center; }

.site-footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 760px) {
  .page { padding-top: 52px; }
  .hero,
  .content { grid-template-columns: 1fr; }
  .hero { gap: 44px; }
  .content { margin-top: 70px; }
  .footer-inner { padding: 24px 0; align-items: flex-start; flex-direction: column; }
}
