:root {
  --bg: #07090f;
  --bg-soft: #0d1220;
  --panel: #111827;
  --panel-2: #172033;
  --line: rgba(212, 175, 55, 0.22);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f5f7fb;
  --muted: #b3bdd1;
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.14);
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
  --radius: 24px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.10), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 22%),
    linear-gradient(180deg, #06080d 0%, #0b111b 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 9, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

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

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.logo-wrap {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.18), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand-text span {
  font-size: 0.84rem;
  color: var(--muted);
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.site-main {
  padding: 34px 0 52px;
}

.hero-panel,
.section-panel,
.info-card {
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.hero-panel,
.section-panel {
  border-radius: var(--radius);
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: 28px;
  padding: 32px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.hero-copy {
  min-width: 0;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.15;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.65rem);
}

h2 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.16rem;
}

.hero-copy p,
.content-stack p,
.info-card p,
.section-heading p {
  color: var(--muted);
}

.hero-art {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.hero-shield-frame {
  width: min(100%, 420px);
  max-width: 420px;
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.18), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.hero-shield-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  position: relative;
  z-index: 3;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 800;
  text-align: center;
  transition: 0.2s ease;
  position: relative;
  z-index: 3;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
}

.btn-primary {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.96), rgba(176, 138, 20, 0.96));
  color: #0d0d0d;
  border-color: rgba(212, 175, 55, 0.9);
}

.btn-primary:hover {
  background: linear-gradient(180deg, rgba(231, 194, 72, 1), rgba(188, 149, 27, 1));
}

.section-panel {
  margin-top: 26px;
  padding: 28px;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading p {
  margin: 0;
}

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

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

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

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

.info-card {
  border-radius: 20px;
  padding: 22px;
  overflow: hidden;
}

.info-card img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.content-stack {
  display: grid;
  gap: 14px;
}

.content-stack p {
  margin: 0;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.contact-item {
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.contact-item strong {
  display: block;
  color: var(--gold);
  margin-bottom: 4px;
}

.site-footer {
  padding: 0 0 38px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer::before {
  content: "";
  display: block;
  width: 100%;
  margin-bottom: 18px;
  border-top: 1px solid var(--line-soft);
}

@media (max-width: 980px) {
  .header-inner {
    min-height: auto;
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .hero-art {
    order: -1;
  }

  .hero-shield-frame {
    width: min(100%, 320px);
    max-width: 320px;
  }

  .card-grid-2,
  .card-grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .site-main,
  .site-footer {
    width: min(calc(100% - 20px), var(--max));
  }

  .logo-wrap {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .hero-panel,
  .section-panel,
  .info-card {
    border-radius: 18px;
  }

  .hero-panel,
  .section-panel {
    padding: 20px;
  }

  .hero-shield-frame {
    width: min(100%, 260px);
    max-width: 260px;
    padding: 18px;
  }

  .button-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
