:root {
  --bg-primary: #0a0f1a;
  --bg-secondary: #111827;
  --bg-card: #1a2236;
  --fg-primary: #f0f2f5;
  --fg-secondary: #94a3b8;
  --fg-muted: #64748b;
  --accent: #c9a84c;
  --accent-dim: rgba(201, 168, 76, 0.15);
  --border: rgba(148, 163, 184, 0.1);
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--fg-primary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(30, 58, 138, 0.08) 0%, transparent 40%),
    var(--bg-primary);
}

.hero-inner {
  max-width: 900px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  margin-bottom: 3rem;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--fg-primary);
}

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

.tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--fg-secondary);
  max-width: 600px;
  margin: 0 auto 4rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-structure {
  margin-top: 2rem;
}

.structure-line {
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 auto 1.5rem;
}

.structure-pillars {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.structure-pillars span {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.structure-pillars span:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* Divisions */
.divisions {
  padding: 8rem 2rem;
  background: var(--bg-secondary);
}

.divisions-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.divisions h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.division-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
}

.division-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.division-number {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.division-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--fg-primary);
}

.division-card p {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  line-height: 1.7;
}

/* Identity */
.identity {
  padding: 8rem 2rem;
  background: var(--bg-primary);
}

.identity-inner {
  max-width: 900px;
  margin: 0 auto;
}

.identity-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.identity-content p {
  font-size: 1.1rem;
  color: var(--fg-secondary);
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 300;
}

.identity-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat {
  text-align: left;
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  font-weight: 500;
}

/* Closing */
.closing {
  padding: 8rem 2rem;
  background: var(--bg-secondary);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-secondary);
  line-height: 1.8;
  font-weight: 300;
}

/* Footer */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-primary);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg-primary);
}

.footer-location {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.footer-legal {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 6rem 1.5rem 4rem;
  }

  .structure-pillars {
    gap: 0.75rem;
  }

  .structure-pillars span {
    font-size: 0.7rem;
    padding: 0.4rem 0.75rem;
  }

  .divisions, .identity, .closing {
    padding: 5rem 1.5rem;
  }

  .identity-stats {
    gap: 2rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }
}