:root {
  color-scheme: dark;
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0f111a;
  color: #f7f3ea;
}

* {
  box-sizing: border-box;
}

html {
  background: #0f111a;
}

body {
  margin: 0;
  background: #0f111a;
  color: #f7f3ea;
  line-height: 1.65;
}

a {
  color: #ffb15c;
}

a:hover {
  color: #ffd29f;
}

.site-header,
.site-footer {
  border-color: #2b3040;
  border-style: solid;
  border-width: 0 0 1px;
}

.site-footer {
  margin-top: 64px;
  border-width: 1px 0 0;
}

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

.site-header .shell,
.site-footer .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f7f3ea;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

nav a {
  color: #c9c4bb;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

main {
  padding: 72px 0 24px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #ffb15c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  max-width: 820px;
  font-size: clamp(42px, 7vw, 72px);
}

h2 {
  margin-top: 56px;
  font-size: clamp(28px, 4vw, 40px);
}

h3 {
  font-size: 21px;
}

.lead {
  max-width: 780px;
  margin: 24px 0 0;
  color: #c9c4bb;
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid #ffb15c;
  border-radius: 6px;
  background: #ffb15c;
  color: #151821;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: #f7f3ea;
  border-color: #4a5061;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 32px;
  margin-top: 24px;
  border-top: 1px solid #2b3040;
}

.content-item,
.faq-item {
  padding: 26px 0;
  border-bottom: 1px solid #2b3040;
}

.content-item p,
.faq-item p,
.prose p,
.prose li {
  color: #c9c4bb;
}

.content-item p,
.faq-item p {
  margin: 10px 0 0;
}

.prose {
  max-width: 820px;
}

.prose ol,
.prose ul {
  padding-left: 24px;
}

.note {
  margin-top: 40px;
  padding: 22px;
  border-left: 3px solid #55c995;
  background: #171b25;
  color: #d8d4cb;
}

.site-footer p {
  color: #8f929c;
  font-size: 13px;
}

@media (max-width: 720px) {
  .site-header .shell,
  .site-footer .shell {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  main {
    padding-top: 48px;
  }

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

