:root {
  --bg: #071624;
  --bg-soft: #0d2235;
  --card: rgba(255, 255, 255, 0.08);
  --card-border: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --muted: #c7d3de;
  --accent: #d7a84f;
  --accent-dark: #b98731;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(215, 168, 79, 0.22), transparent 32rem),
    radial-gradient(circle at bottom right, rgba(58, 118, 180, 0.22), transparent 28rem),
    var(--bg);
  line-height: 1.6;
}

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 18px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

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

.nav-links a {
  padding: 10px 14px;
  color: var(--muted);
  border-radius: 999px;
  font-size: 14px;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 28px;
  align-items: stretch;
  padding: 78px 0 34px;
}

.hero-content,
.status-card,
.content-section,
.partners-preview,
.site-footer {
  border: 1px solid var(--card-border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  border-radius: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-content {
  padding: clamp(32px, 6vw, 70px);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 840px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 760px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: #1c1404;
  background: linear-gradient(135deg, var(--accent), #ffe0a0);
  box-shadow: 0 16px 38px rgba(215, 168, 79, 0.24);
}

.btn.secondary {
  color: var(--text);
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.08);
}

.status-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.status-card::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(215, 168, 79, 0.24);
  border-radius: 26px;
  pointer-events: none;
}

.status-pill {
  width: max-content;
  margin-bottom: auto;
  padding: 9px 14px;
  color: #211604;
  background: var(--accent);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.status-card h2 {
  margin-top: 42px;
  font-size: 32px;
  line-height: 1.08;
}

.status-card p {
  margin-top: 14px;
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 24px;
}

.stats div {
  padding: 24px;
  text-align: center;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 24px;
}

.stats strong {
  display: block;
  color: var(--accent);
  font-size: 38px;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.content-section,
.partners-preview,
.site-footer {
  margin-top: 24px;
  padding: clamp(28px, 5vw, 48px);
}

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

.section-heading h2,
.partners-preview h2,
.site-footer h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-heading p,
.partners-preview p,
.site-footer p {
  color: var(--muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.info-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.065);
  border-radius: 24px;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  color: #211604;
  background: var(--accent);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.info-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.info-card p {
  color: var(--muted);
  font-size: 15px;
}

.partners-preview {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.partner-tags span {
  padding: 14px 18px;
  color: var(--text);
  border: 1px solid rgba(215, 168, 79, 0.3);
  background: rgba(215, 168, 79, 0.1);
  border-radius: 999px;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 28px;
  margin-bottom: 22px;
}

.footer-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact h3 {
  margin-bottom: 8px;
}

.footer-contact a,
.footer-contact span {
  color: var(--muted);
}

.footer-contact a:hover {
  color: var(--accent);
}

@media (max-width: 980px) {
  .site-header,
  .hero,
  .partners-preview,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
  }

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

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding: 10px 0;
  }

  .site-header {
    padding: 14px;
    border-radius: 18px;
  }

  .nav-links a {
    padding: 8px 10px;
    font-size: 13px;
  }

  .hero {
    padding-top: 28px;
  }

  .stats,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .status-card,
  .content-section,
  .partners-preview,
  .site-footer {
    border-radius: 22px;
  }

  .status-card {
    min-height: auto;
  }
}
