:root {
  --bg: #080b12;
  --bg-soft: #111827;
  --panel: #151b26;
  --panel-2: #10151f;
  --text: #f3f4f6;
  --muted: #b8c0cc;
  --gold: #d5a433;
  --red: #8f1116;
  --red-bright: #c41c23;
  --border: rgba(255,255,255,0.12);
  --shadow: 0 18px 70px rgba(0,0,0,0.35);
  --radius: 24px;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(196,28,35,0.22), transparent 28rem),
    radial-gradient(circle at 80% 20%, rgba(213,164,51,0.14), transparent 24rem),
    var(--bg);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.site-header {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 250px;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.5));
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255,255,255,0.08);
}

main {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 66vh;
  display: grid;
  align-content: center;
  padding: 72px 0 90px;
}

.small-hero {
  min-height: auto;
  padding: 56px 0 44px;
}

.eyebrow,
.tag {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  font-size: 0.78rem;
  margin: 0 0 16px;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 930px;
  font-size: clamp(2.8rem, 8vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.1;
  margin-bottom: 12px;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--red-bright));
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(196,28,35,0.28);
}

.button-secondary {
  background: rgba(255,255,255,0.08);
  box-shadow: none;
  border: 1px solid var(--border);
}

.section {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card,
.panel,
.feature,
.contact-box {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card p,
.panel p,
.feature p,
.contact-box p,
li {
  color: var(--muted);
}

.large-card { min-height: 320px; }

ul {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

li + li { margin-top: 8px; }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.warning {
  border-color: rgba(213,164,51,0.35);
}

.feature,
.contact-box {
  max-width: 860px;
}

.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 80px auto 0;
  padding: 30px 0 48px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer p { margin: 0; }

@media (max-width: 860px) {
  .site-header,
  .site-footer,
  .split {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .card-grid.three,
  .card-grid.two {
    grid-template-columns: 1fr;
  }

  .brand img { width: 210px; }
  .hero { min-height: auto; padding-top: 48px; }
}
