@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Rajdhani:wght@300;400;500;600;700&family=Inter:wght@300;400;500&display=swap');

:root {
  --gold: #C9A227;
  --gold-light: #F0C040;
  --gold-dark: #8B6914;
  --gold-glow: rgba(201,162,39,0.3);
  --black: #050608;
  --dark: #0A0B0F;
  --dark2: #10121A;
  --dark3: #161824;
  --panel: rgba(16,18,26,0.85);
  --border: rgba(201,162,39,0.2);
  --border-bright: rgba(201,162,39,0.5);
  --text: #E8E4D0;
  --text-dim: #9A9480;
  --text-bright: #F5F0E0;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── Starfield background ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(201,162,39,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(201,162,39,0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(5,6,8,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 2px;
  transition: all 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 18px; right: 18px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light);
}

.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black) !important;
  padding: 8px 20px !important;
  border-radius: 2px;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--black) !important;
}

/* ─── MAIN CONTENT ─── */
main {
  position: relative;
  z-index: 1;
  padding-top: 68px;
}

/* ─── HERO SECTIONS ─── */
.hero {
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 80px 80px 60px;
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,162,39,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-tag {
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.8;
}

.hero h1 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-bright);
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 580px;
  font-weight: 400;
  line-height: 1.8;
}

/* ─── SECTIONS ─── */
section {
  padding: 80px;
  position: relative;
  z-index: 1;
}

section + section {
  border-top: 1px solid var(--border);
}

.section-label {
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.7;
}

.section-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 48px;
}

/* ─── CARDS ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.card {
  background: var(--dark2);
  padding: 36px 32px;
  transition: background 0.2s;
}

.card:hover {
  background: var(--dark3);
}

.card-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gold-dark);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 20px;
}

.card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.card p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ─── STAT BLOCKS ─── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 60px;
}

.stat-block {
  background: var(--dark);
  padding: 28px 24px;
  text-align: center;
}

.stat-num {
  font-family: 'Orbitron', monospace;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}

/* ─── COMPLIANCE BADGES ─── */
.badge-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,162,39,0.07);
  border: 1px solid var(--border-bright);
  padding: 10px 18px;
  border-radius: 2px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--gold-light);
}

.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--gold-glow); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px transparent; }
}

/* ─── TIMELINE ─── */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 24px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -37px; top: 6px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--black);
  box-shadow: 0 0 10px var(--gold-glow);
}

.timeline-year {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.timeline-text {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ─── TABLE ─── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.data-table th {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-bright);
  background: rgba(201,162,39,0.04);
}

.data-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.data-table tr:hover td {
  background: rgba(201,162,39,0.03);
}

/* ─── FOOTER ─── */
footer {
  position: relative;
  z-index: 1;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 56px 80px 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 32px;
  margin-bottom: 16px;
  filter: brightness(0.9);
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-dim);
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

/* ─── HIGHLIGHT BOX ─── */
.highlight-box {
  border: 1px solid var(--border-bright);
  background: rgba(201,162,39,0.04);
  border-radius: 2px;
  padding: 28px 32px;
  margin-bottom: 24px;
}

.highlight-box h3 {
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  color: var(--gold-light);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.highlight-box p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
}

/* ─── ACCORDION / FAQ ─── */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--text-bright);
  transition: color 0.2s;
  user-select: none;
}

.faq-q:hover { color: var(--gold-light); }

.faq-q span {
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  color: var(--gold);
  transition: transform 0.3s;
}

.faq-q.open span { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
}

.faq-a.open {
  max-height: 400px;
  padding-bottom: 24px;
}

.faq-a p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.8;
  padding-right: 40px;
}

/* ─── TEAM CARDS ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 2px;
  transition: border-color 0.2s;
}

.team-card:hover {
  border-color: var(--border-bright);
}

.team-role {
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.team-name {
  font-family: 'Orbitron', monospace;
  font-size: 18px;
  color: var(--text-bright);
  margin-bottom: 16px;
  font-weight: 700;
}

.team-bio {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.75;
}

/* ─── DIVIDER ─── */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
  margin: 0;
}

/* ─── TWO COL ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.two-col-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero, section { padding: 60px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .two-col, .two-col-3 { grid-template-columns: 1fr; }
  footer { padding: 40px 24px 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
