@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,600;0,700;1,300&family=Barlow+Condensed:wght@400;600;700&display=swap');

:root {
  --bg-deep:    #0a0e1a;
  --bg-dark:    #0d1117;
  --bg-card:    #111827;
  --bg-card2:   #161d2e;
  --amber:      #e8881a;
  --amber-lt:   #f5a94a;
  --amber-dim:  #a05c0a;
  --steel:      #8899bb;
  --steel-lt:   #b0c4de;
  --steel-dim:  #3a4a65;
  --text-main:  #e0e8f5;
  --text-muted: #6a7f9a;
  --text-dim:   #3d5070;
  --border:     #1e2d47;
  --border-lt:  #2a3d5e;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-main);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,14,26,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 100px;
  display: flex; align-items: center;
  padding: 0 5%;
  gap: 0;
}

.nav-logo {
  text-decoration: none;
  margin-right: auto;
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-img {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-lt);
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex; flex-direction: column; gap: 1px;
}
.nav-logo-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 35px;
  letter-spacing: 4px;
  color: var(--text-main);
  line-height: 1;
}
.nav-logo-name span { color: var(--amber); }
.nav-logo-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17.5px;
  letter-spacing: 3px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
}

.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

.nav-cta {
  margin-left: 32px;
  background: var(--amber);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--amber-lt); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--text-main); transition: 0.3s; }

/* ── HERO (shared) ── */
.page-hero {
  padding: 140px 10% 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0d1627 50%, #111827 100%);
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,136,26,0.08) 0%, transparent 70%);
  z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--amber);
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 100px);
  letter-spacing: 4px;
  line-height: 0.95;
  color: var(--text-main);
  margin-bottom: 24px;
}
.hero-title em { color: var(--amber); font-style: normal; }
.hero-sub {
  font-size: 17px;
  color: var(--steel-lt);
  max-width: 560px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* ── SECTION ── */
section { padding: 90px 10%; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--amber); display: inline-block; }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 3px;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 20px;
}
.section-title em { color: var(--amber); font-style: normal; }

/* ── CARDS ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover { border-color: var(--amber-dim); transform: translateY(-4px); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 3px;
  text-decoration: none;
  transition: 0.2s;
  cursor: pointer;
  border: none;
}
.btn-amber { background: var(--amber); color: #fff; }
.btn-amber:hover { background: var(--amber-lt); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border-lt);
  color: var(--steel-lt);
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }

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

/* ── FOOTER ── */
footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 60px 10% 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--text-main);
  margin-bottom: 12px;
}
.footer-logo span { color: var(--amber); }
.footer-desc { font-size: 14px; color: var(--text-muted); line-height: 1.8; max-width: 300px; }
.footer-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: var(--text-dim);
}
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 12px; line-height: 1.5;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ── STAT BAR ── */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.stat-item {
  background: var(--bg-card);
  padding: 28px 24px;
  text-align: center;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: 2px;
  color: var(--amber);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── TABLE ── */
table { width: 100%; border-collapse: collapse; }
th {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--amber);
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-lt);
}
td {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--steel-lt);
  border-bottom: 1px solid var(--border);
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--bg-card2); }

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
input, textarea, select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-lt);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s;
}
input:focus, textarea:focus, select:focus { border-color: var(--amber); }
textarea { min-height: 130px; resize: vertical; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--bg-dark);
    padding: 24px 5%;
    border-bottom: 1px solid var(--border);
    gap: 20px;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── GEAR DECORATION ── */
.gear-bg {
  position: absolute;
  opacity: 0.03;
  pointer-events: none;
}
