:root {
  --bg: #0f1713;
  --bg-soft: #15231d;
  --card: rgba(255,255,255,.075);
  --card-strong: rgba(255,255,255,.12);
  --text: #f5f1e8;
  --muted: #c8c0b0;
  --line: rgba(255,255,255,.14);
  --accent: #d8a54a;
  --accent-2: #7fb069;
  --dark: #0b0e0c;
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(216,165,74,.22), transparent 34rem),
    radial-gradient(circle at 100% 20%, rgba(127,176,105,.14), transparent 30rem),
    linear-gradient(180deg, #0f1713 0%, #101511 45%, #0b0e0c 100%);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11,14,12,.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .01em;
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, var(--accent), #f1dfae);
  display: grid;
  place-items: center;
  color: #1a1407;
  font-weight: 900;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  color: var(--muted);
}
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--text); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #171107;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 14px 40px rgba(216,165,74,.18);
}
.btn.secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}
.hero {
  padding: 86px 0 54px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 13px;
  margin-bottom: 18px;
}
h1, h2, h3 { line-height: 1.12; margin: 0 0 18px; }
h1 {
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: -.055em;
}
h2 {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -.04em;
}
h3 {
  font-size: 22px;
  letter-spacing: -.02em;
}
.lead {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--muted);
  max-width: 700px;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero-panel {
  position: relative;
  min-height: 500px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(255,255,255,.13), rgba(255,255,255,.035)),
    radial-gradient(circle at 50% 30%, rgba(216,165,74,.26), transparent 18rem);
  box-shadow: 0 36px 100px rgba(0,0,0,.32);
  overflow: hidden;
}
.city {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 62%;
  background:
    linear-gradient(to top, rgba(11,14,12,1), rgba(11,14,12,.8) 20%, transparent 70%),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255,255,255,.10) 18px 19px),
    linear-gradient(180deg, transparent, rgba(216,165,74,.10));
  clip-path: polygon(0 45%, 7% 37%, 14% 52%, 21% 31%, 29% 45%, 38% 20%, 46% 43%, 53% 30%, 62% 50%, 72% 25%, 84% 43%, 100% 32%, 100% 100%, 0 100%);
}
.panel-card {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 28px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(11,14,12,.58);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.metric {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
}
.metric b {
  display: block;
  font-size: 25px;
  color: var(--accent);
}
.metric span {
  color: var(--muted);
  font-size: 13px;
}
.section { padding: 78px 0; }
.section.alt {
  background: rgba(255,255,255,.035);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}
.grid {
  display: grid;
  gap: 18px;
}
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  padding: 28px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--line);
}
.card strong.kicker {
  display: inline-flex;
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 12px;
}
.card p, .muted { color: var(--muted); }
.list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}
.list li {
  padding-left: 28px;
  position: relative;
  color: var(--muted);
}
.list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 900;
}
.steps {
  counter-reset: step;
}
.step {
  position: relative;
  padding-left: 74px;
}
.step:before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #171107;
  font-weight: 900;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}
th, td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
th { color: var(--accent); background: rgba(255,255,255,.045); }
td { color: var(--muted); }
tr:last-child td { border-bottom: none; }
.cta {
  padding: 46px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(216,165,74,.20), rgba(127,176,105,.12)),
    rgba(255,255,255,.06);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--text); }
.page-title {
  padding: 74px 0 34px;
}
.legal {
  max-width: 900px;
}
.legal h2 { font-size: 28px; margin-top: 42px; }
.legal p, .legal li { color: var(--muted); }
.small-note {
  font-size: 14px;
  color: var(--muted);
  border-left: 3px solid var(--accent);
  padding: 12px 0 12px 16px;
}
@media (max-width: 900px) {
  .hero-grid, .grid.three, .grid.two, .cta {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 52px; }
  .hero-panel { min-height: 360px; }
  .metrics { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; padding: 18px 0; }
  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 18px;
  }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav { flex-direction: column; }
  .nav-links { justify-content: flex-start; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .card, .cta { padding: 22px; }
  .step { padding-left: 0; padding-top: 64px; }
  .step:before { top: 22px; }
}
