/* Base reset & typography */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050816;
  color: #e5e7eb;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

main {
  flex: 1 0 auto;
}

/* Layout */
.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.15), transparent 55%),
    rgba(3, 7, 18, 0.9);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

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

.brand-logo {
  width: 140px;
  height: 47px;
  overflow: hidden;
}

.brand-title {
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 15px;
  text-transform: uppercase;
  color: #f9fafb;
}

.brand-sub {
  font-size: 12px;
  color: #9ca3af;
}

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

.nav a {
  font-size: 14px;
  color: #e5e7eb;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}

.nav a:hover,
.nav a.nav-active {
  background: linear-gradient(135deg, #22c55e, #06b6d4);
  color: #0b1120;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.4), rgba(15, 23, 42, 0.95));
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #e5e7eb;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: currentColor;
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

/* Hero / page header */
.hero {
  padding: 40px 0 24px;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.3), transparent 55%),
    radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.2), transparent 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: center;
}

.hero-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #a5b4fc;
  margin-bottom: 8px;
}

.hero-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #f9fafb;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: #cbd5f5;
  max-width: 620px;
}

.hero-card {
  border-radius: 20px;
  padding: 18px 18px 16px;
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.12), transparent 60%),
    rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow:
    0 20px 60px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 1);
}

.hero-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  margin-bottom: 8px;
}

.hero-card-main {
  font-size: 14px;
  line-height: 1.6;
  color: #e5e7eb;
}

/* Content sections */
.section {
  padding: 24px 0 32px;
}

.section + .section {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
}

.section-header {
  margin-bottom: 16px;
}

.section-title {
  font-size: 19px;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 4px;
}

.section-subtitle {
  font-size: 13px;
  color: #9ca3af;
}

.section-body {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 28px;
}

.section-body--full {
  display: block;
}

.text-block {
  font-size: 14px;
  line-height: 1.7;
  color: #d1d5db;
}

.text-block p {
  margin: 0 0 10px;
}

.text-block p:last-child {
  margin-bottom: 0;
}

.text-block ul {
  margin: 0 0 10px 18px;
  padding: 0;
}

.text-block li {
  margin-bottom: 6px;
}

/* Data tables */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(55, 65, 81, 0.9);
}

.data-table thead {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(56, 189, 248, 0.12));
}

.data-table th,
.data-table td {
  padding: 9px 11px;
  text-align: left;
}

.data-table th {
  font-weight: 600;
  font-size: 12px;
  color: #e5e7eb;
  border-bottom: 1px solid rgba(55, 65, 81, 0.9);
}

.data-table tbody tr:nth-child(odd) {
  background-color: rgba(15, 23, 42, 0.9);
}

.data-table tbody tr:nth-child(even) {
  background-color: rgba(17, 24, 39, 0.9);
}

.data-table tbody tr:hover {
  background-color: rgba(30, 64, 175, 0.65);
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 4px 9px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e5e7eb;
  gap: 6px;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, #22c55e, #16a34a);
}

/* Cards / grids */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.info-card {
  border-radius: 16px;
  padding: 14px 14px 12px;
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 60%),
    rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(55, 65, 81, 0.9);
}

.info-card-title {
  font-size: 13px;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 4px;
}

.info-card-text {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.2), transparent 60%),
    #020617;
  padding: 16px 0 18px;
  margin-top: 16px;
}

.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: #6b7280;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: #9ca3af;
}

.footer-links a:hover {
  color: #e5e7eb;
}

/* Utilities */
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 11px;
  background: rgba(34, 197, 94, 0.12);
  color: #bbf7d0;
  border: 1px solid rgba(34, 197, 94, 0.5);
}

.muted {
  color: #9ca3af;
}

.mt-sm {
  margin-top: 8px;
}

.mt-md {
  margin-top: 14px;
}

.mt-lg {
  margin-top: 22px;
}

.btn-go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #22c55e, #06b6d4);
  color: #020617;
  cursor: pointer;
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.95);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-go:hover {
  transform: translateY(-1px);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.95),
    0 0 0 1px rgba(15, 23, 42, 1);
  background: linear-gradient(135deg, #16a34a, #0891b2);
}

.btn-go:active {
  transform: translateY(0);
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.85),
    0 0 0 1px rgba(15, 23, 42, 1);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-body {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header-inner {
    padding: 14px;
  }

  .hero {
    padding-top: 26px;
  }

  .data-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }

  .nav {
    position: fixed;
    inset: 60px 12px auto;
    border-radius: 18px;
    padding: 10px 12px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(55, 65, 81, 0.9);
    display: none;
    flex-direction: column;
    gap: 6px;
  }

  .nav.nav-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-title {
    font-size: 24px;
  }

  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


