:root {
  --navy: #071224;
  --navy-2: #0a1931;
  --panel: #0b1d3a;
  --gold: #e6c36a;
  --gold-2: #c7a24a;
  --text: #ffffff;
  --muted: #cbd5e1;
  --line: rgba(230, 195, 106, 0.22);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 18, 36, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 0; }
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand-mark {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(230, 195, 106, 0.5);
  color: var(--gold); font-weight: 800; letter-spacing: 0.1em;
  background: radial-gradient(circle at 30% 30%, rgba(230,195,106,.2), rgba(8,17,34,.98));
}
.brand strong { color: var(--gold); letter-spacing: 0.14em; font-size: 15px; display: block; }
.brand small { color: var(--muted); display: block; font-size: 13px; margin-top: 2px; }
.nav-links { display: flex; gap: 30px; align-items: center; color: var(--muted); font-size: 14px; }
.nav-links a:hover { color: var(--gold); }

.hero-approved { background: #071224; border-bottom: 1px solid var(--line); }
.hero-approved img {
  width: 100%;
  height: auto;
  box-shadow: var(--shadow);
}

.intro-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background:
    linear-gradient(135deg, rgba(7,18,36,.98), rgba(11,29,58,.94)),
    radial-gradient(circle at top right, rgba(199,162,74,.18), transparent 32%);
}
.intro-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 42%; height: 80%; opacity: .08;
  background:
    linear-gradient(to top, rgba(230,195,106,.9) 1px, transparent 1px),
    linear-gradient(to right, rgba(230,195,106,.9) 1px, transparent 1px);
  background-size: 100px 160px;
  pointer-events: none;
}
.intro-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 54px; align-items: center; }
.eyebrow, .section-label {
  display: inline-flex;
  color: var(--gold);
  border: 1px solid rgba(199,162,74,.32);
  background: rgba(255,255,255,.04);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  letter-spacing: .02em;
  margin: 0 0 18px;
}
h1, h2, h3 { margin: 0; line-height: 1.1; }
h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(44px, 5vw, 76px); font-weight: 700; max-width: 900px; }
h1 span { color: var(--gold); }
.lede { font-size: 20px; line-height: 1.8; color: var(--muted); max-width: 780px; margin: 28px 0 0; }
.cta-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.button { border-radius: 16px; padding: 14px 24px; font-weight: 700; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--gold); border: 1px solid rgba(230,195,106,.65); color: #071224; }
.button.secondary { border: 1px solid rgba(230,195,106,.5); color: var(--gold); background: rgba(255,255,255,.03); }
.stat-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.stat-card { border: 1px solid var(--line); background: rgba(255,255,255,.05); border-radius: 24px; padding: 24px; box-shadow: 0 18px 50px rgba(0,0,0,.18); }
.stat-card strong { display: block; color: var(--gold); font-size: 34px; line-height: 1; }
.stat-card span { display: block; color: var(--muted); margin-top: 12px; font-size: 14px; }

.section { padding: 90px 0; }
.section.band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.03); }
.section h2 { font-size: clamp(30px, 3.2vw, 48px); max-width: 820px; }
.section-intro, .section p { color: var(--muted); font-size: 17px; max-width: 780px; }
.cards { display: grid; gap: 22px; margin-top: 42px; }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card, .contact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}
.card h3, .contact-card strong, .contact-card a { color: #f0d58a; }
.card p { margin-bottom: 0; font-size: 15px; }
.two-col { display: grid; grid-template-columns: 1.08fr .92fr; gap: 52px; align-items: start; }
.highlight-card ul { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 16px; }
.highlight-card li { color: var(--muted); position: relative; padding-left: 22px; }
.highlight-card li::before { content: ""; position: absolute; left: 0; top: .68em; width: 8px; height: 8px; border-radius: 999px; background: var(--gold); }
.contact-section { background: rgba(10, 25, 49, .8); border-top: 1px solid var(--line); }
.contact-card { display: grid; gap: 18px; }
.contact-card p { margin: 0; max-width: none; }
.contact-card span { display: block; color: #94a3b8; font-size: 13px; margin-bottom: 3px; }
.site-footer { border-top: 1px solid var(--line); padding: 24px 0; color: #94a3b8; background: #050b16; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 14px; }

@media (max-width: 900px) {
  .header-inner { align-items: flex-start; }
  .nav-links { display: none; }
  .intro-grid, .two-col { grid-template-columns: 1fr; }
  .cards.three, .cards.two { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand small { display: none; }
  .brand strong { font-size: 13px; }
  .brand-mark { width: 46px; height: 46px; font-size: 13px; }
  .intro-section, .section { padding: 56px 0; }
  h1 { font-size: 40px; }
  .lede { font-size: 17px; }
  .stat-grid { grid-template-columns: 1fr; }
  .button { width: 100%; text-align: center; }
}
