:root {
  color-scheme: dark;
  --bg: #0c0d0f;
  --panel: #151719;
  --ink: #f7f2e8;
  --muted: #c8bdb4;
  --line: rgba(255,255,255,.13);
  --accent: #b94436;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #101113 0%, #0c0d0f 52%, #17100f 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
.topbar {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.brand img { width: 218px; max-width: 54vw; display: block; }
nav, footer {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
nav a, footer a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 750;
  font-size: 14px;
}
main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.hero {
  min-height: clamp(480px, 66vh, 680px);
  display: grid;
  align-content: center;
  max-width: 850px;
  padding: 54px 0 42px;
}
.eyebrow {
  margin: 0 0 14px;
  color: #e07d70;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .16em;
  font-weight: 900;
}
h1 {
  margin: 0;
  font-size: clamp(54px, 10vw, 116px);
  line-height: .92;
  letter-spacing: 0;
}
.lede {
  margin: 24px 0 0;
  max-width: 720px;
  color: #efe4da;
  font-size: clamp(19px, 2.7vw, 28px);
  line-height: 1.28;
  font-weight: 700;
}
.ruo {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #17191c;
  text-decoration: none;
  font-weight: 850;
}
.button.primary {
  background: var(--accent);
  border-color: #c9594b;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 0 54px;
}
article {
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(21,23,25,.86);
}
h2 {
  margin: 0 0 12px;
  font-size: 18px;
}
article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
}
@media (max-width: 760px) {
  .topbar { align-items: flex-start; flex-direction: column; padding: 18px 0; }
  nav { gap: 12px; }
  .hero { min-height: auto; padding: 52px 0 34px; }
  .actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .info-grid { grid-template-columns: 1fr; }
}
