:root {
  --bg: #0f1720;
  --panel: #16212c;
  --text: #f4f7f9;
  --muted: #a8b3bd;
  --accent: #d7b56d;
  --line: #2a3744;
  --white: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}
header {
  border-bottom: 1px solid var(--line);
  background: rgba(15,23,32,.96);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--white);
}
nav a {
  margin-left: 20px;
  color: var(--muted);
  font-size: 14px;
}
.hero {
  padding: 110px 0 90px;
}
.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  font-weight: 700;
}
h1 {
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.02;
  max-width: 880px;
  margin: 18px 0 24px;
}
.hero p {
  max-width: 740px;
  font-size: 20px;
  color: var(--muted);
}
.cta {
  display: inline-block;
  margin-top: 28px;
  padding: 13px 20px;
  border: 1px solid var(--accent);
  color: var(--bg);
  background: var(--accent);
  font-weight: 700;
  border-radius: 8px;
}
section {
  padding: 70px 0;
  border-top: 1px solid var(--line);
}
h2 {
  font-size: 34px;
  margin: 0 0 24px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.card {
  background: var(--panel);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}
.card p, .muted { color: var(--muted); }
form {
  display: grid;
  gap: 14px;
  max-width: 700px;
}
label {
  font-size: 14px;
  color: var(--muted);
}
input, textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #101922;
  color: var(--text);
}
textarea { min-height: 140px; resize: vertical; }
.checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 13px;
  color: var(--muted);
}
.checkbox input { width: auto; margin-top: 4px; }
button {
  width: fit-content;
  padding: 13px 20px;
  border-radius: 8px;
  border: 0;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  cursor: pointer;
}
footer {
  padding: 36px 0 54px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.footer-links a { margin-right: 16px; }
.legal {
  padding: 70px 0 100px;
  max-width: 850px;
}
.legal h1 { font-size: 46px; }
.legal h2 { font-size: 24px; margin-top: 34px; }
.legal p, .legal li { color: var(--muted); }
.small { font-size: 13px; color: var(--muted); }
@media (max-width: 760px) {
  .grid { grid-template-columns: 1fr; }
  nav { display: none; }
  .hero { padding-top: 80px; }
}
