* {
  box-sizing: border-box;
}

:root {
  --bg: #07101f;
  --panel: #101b2f;
  --panel-2: #16243d;
  --text: #f5f7fb;
  --muted: #b9c3d6;
  --gold: #d6ad60;
  --gold-light: #f1d08a;
  --line: rgba(255,255,255,0.14);
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(7,16,31,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), #7c5a20);
  color: #07101f;
  font-weight: 800;
  border-radius: 10px;
  letter-spacing: -1px;
}

.brand strong {
  display: block;
  font-size: 18px;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

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

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

nav a:hover {
  color: var(--gold-light);
}

.hero {
  padding: 96px 0 72px;
  background:
    radial-gradient(circle at top right, rgba(214,173,96,0.20), transparent 35%),
    linear-gradient(180deg, #0b1729 0%, var(--bg) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  color: var(--gold-light);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

h1 {
  margin: 10px 0 18px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h2 {
  margin: 8px 0 16px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h3 {
  margin-top: 0;
  color: var(--gold-light);
}

.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 760px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--line);
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #07101f;
}

.btn.secondary {
  color: var(--text);
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}

.hero-card ul {
  padding-left: 20px;
  color: var(--muted);
}

.section {
  padding: 78px 0;
}

.alt {
  background: var(--panel);
}

.services-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.services-grid p,
.two-col p,
.cta p,
.site-footer p {
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
}

.cta {
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(214,173,96,0.16), transparent 45%),
    var(--bg);
}

.cta p {
  max-width: 720px;
  margin: 0 auto 26px;
}

.site-footer {
  padding: 44px 0 24px;
  background: #050b15;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
}

.smallprint {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 12px;
}

@media (max-width: 800px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-grid,
  .services-grid,
  .two-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 60px;
  }

  nav {
    flex-wrap: wrap;
  }
}
