:root {
  --ink: #111216;
  --panel: #1a1c21;
  --panel-2: #22252c;
  --line: #383b43;
  --cream: #f6efe3;
  --muted: #b8b0a5;
  --orange: #f2612d;
  --gold: #ffb52e;
}

* { box-sizing: border-box; }
html { background: var(--ink); color-scheme: dark; }
body {
  min-height: 100vh;
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 80% 0%, rgb(242 97 45 / 18%), transparent 34rem),
    linear-gradient(180deg, #16171b 0%, #101115 100%);
  font: 17px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
main { width: min(1080px, calc(100% - 36px)); margin: auto; }
nav, footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
nav { min-height: 88px; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; text-decoration: none; }
.brand img { border-radius: 11px; box-shadow: 0 8px 24px rgb(0 0 0 / 35%); }
.nav-link, footer a { color: var(--gold); font-weight: 700; text-underline-offset: 4px; }
.hero, .legal-header { max-width: 840px; padding: 96px 0 72px; }
.eyebrow {
  display: inline-flex;
  padding: 8px 13px;
  color: var(--gold);
  border: 1px solid rgb(255 181 46 / 35%);
  border-radius: 999px;
  background: rgb(255 181 46 / 8%);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 { margin: 22px 0 24px; font-size: clamp(48px, 8vw, 94px); line-height: .94; letter-spacing: -.065em; }
.hero p { max-width: 700px; margin-bottom: 0; color: var(--muted); font-size: clamp(19px, 2.4vw, 26px); line-height: 1.45; }
.panel, .legal-card {
  margin-bottom: 24px;
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(140deg, rgb(255 255 255 / 4%), transparent 45%), var(--panel);
  box-shadow: 0 24px 80px rgb(0 0 0 / 22%);
}
.section-heading { display: grid; grid-template-columns: 42px 1fr; gap: 18px; align-items: start; margin-bottom: 34px; }
.section-heading b { color: var(--orange); }
h2 { margin-bottom: 8px; font-size: clamp(28px, 4vw, 46px); letter-spacing: -.045em; }
.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.grid article { min-height: 190px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--panel-2); }
.grid article p, .contact p, .legal-card p { color: var(--muted); }
.contact aside { margin: 28px 0 0 60px; padding: 18px 20px; color: var(--muted); border-left: 3px solid var(--orange); background: rgb(242 97 45 / 7%); }
footer { min-height: 110px; color: var(--muted); font-size: 14px; }
.legal-header h1 { font-size: clamp(44px, 7vw, 78px); }
.effective { color: var(--gold); font-weight: 700; }
.legal-card { max-width: 840px; }
.legal-card h2 { margin-top: 40px; font-size: 28px; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p { line-height: 1.75; }
@media (max-width: 700px) {
  main { width: min(100% - 24px, 1080px); }
  nav { min-height: 74px; }
  .nav-link { font-size: 13px; }
  .hero, .legal-header { padding: 72px 0 48px; }
  .grid { grid-template-columns: 1fr; }
  .grid article { min-height: auto; }
  .contact aside { margin-left: 0; }
  footer { align-items: flex-start; flex-direction: column; justify-content: center; }
}
