@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Exo+2:ital,wght@0,200;0,400;0,600;1,300&family=Share+Tech+Mono&display=swap');

:root {
  --navy: #0a0e1a;
  --navy-mid: #0d1526;
  --navy-light: #111e38;
  --gold: #f5c518;
  --gold-dim: #c9a010;
  --cyan: #00e5ff;
  --cyan-dim: #00b3cc;
  --white: #e8edf5;
  --white-dim: #9aaabb;
  --green: #00ff88;
  --border: rgba(0, 229, 255, 0.18);
  --glow: 0 0 24px rgba(0, 229, 255, 0.25);
  --gold-glow: 0 0 24px rgba(245, 197, 24, 0.3);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Exo 2', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--cyan-dim); border-radius: 3px; }

/* ── GRID BG ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 14px; font-weight: 900;
  color: var(--navy);
}

.nav-logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}
.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--cyan);
  border-color: var(--border);
  background: rgba(0,229,255,0.06);
  box-shadow: var(--glow);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: all 0.3s;
}

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

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5vw 80px;
  overflow: hidden;
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--gold-dim);
  border-radius: 20px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 28px;
  background: rgba(245, 197, 24, 0.06);
}
.hero-badge::before { content: '●'; color: var(--green); font-size: 8px; }

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero h1 .line-gold { color: var(--gold); display: block; }
.hero h1 .line-cyan { color: var(--cyan); display: block; text-shadow: 0 0 32px rgba(0,229,255,0.5); }

.hero-sub {
  font-size: 17px;
  color: var(--white-dim);
  max-width: 520px;
  margin-bottom: 44px;
  font-weight: 300;
  font-style: italic;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dim));
  color: var(--navy);
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(0,229,255,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(0,229,255,0.5); }

.btn-outline {
  padding: 14px 32px;
  background: transparent;
  color: var(--gold);
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline:hover { background: rgba(245,197,24,0.08); box-shadow: var(--gold-glow); transform: translateY(-2px); }

/* Hero visual */
.hero-visual {
  position: absolute;
  right: -5vw;
  top: 50%;
  transform: translateY(-50%);
  width: 50vw;
  max-width: 600px;
  opacity: 0.18;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-cyan { width: 500px; height: 500px; background: var(--cyan); opacity: 0.07; top: 10%; right: -10%; }
.orb-gold { width: 350px; height: 350px; background: var(--gold); opacity: 0.06; bottom: 10%; right: 20%; }

/* ── STATS BAR ── */
.stats-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(13, 21, 38, 0.7);
  backdrop-filter: blur(10px);
  position: relative; z-index: 2;
}

.stat-item {
  flex: 1;
  min-width: 180px;
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(0,229,255,0.04); }

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0,229,255,0.4);
  display: block;
}
.stat-number.gold { color: var(--gold); text-shadow: 0 0 20px rgba(245,197,24,0.4); }

.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 6px;
  display: block;
  font-family: 'Share Tech Mono', monospace;
}

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.section-title span { color: var(--gold); }

.section-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  margin: 20px auto 0;
}

/* ── CARDS ── */
.card {
  background: rgba(13,21,38,0.8);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover { border-color: rgba(0,229,255,0.35); box-shadow: var(--glow); transform: translateY(-4px); }
.card:hover::before { opacity: 1; }

/* ── GRID LAYOUTS ── */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 32px; align-items: center; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5vw; }

/* ── PADDED SECTION ── */
.padded { padding: 100px 0; }
.padded-sm { padding: 64px 0; }

/* ── TECH CHIPS ── */
.tech-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 32px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  color: var(--white-dim);
  background: rgba(13,21,38,0.9);
  transition: all 0.3s;
  cursor: default;
}
.tech-chip:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0,229,255,0.06);
  box-shadow: var(--glow);
  transform: scale(1.04);
}
.tech-chip .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
}

.chips-cloud { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── ICON BOX ── */
.icon-box {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.icon-box.cyan { background: rgba(0,229,255,0.1); border: 1px solid rgba(0,229,255,0.2); }
.icon-box.gold { background: rgba(245,197,24,0.1); border: 1px solid rgba(245,197,24,0.2); }
.icon-box.green { background: rgba(0,255,136,0.1); border: 1px solid rgba(0,255,136,0.2); }

/* ── CARD TITLE ── */
.card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.card-text { font-size: 14px; color: var(--white-dim); line-height: 1.7; }

/* ── PROFILE CARD ── */
.profile-card {
  text-align: center;
}
.profile-img {
  width: 130px; height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--cyan);
  box-shadow: 0 0 24px rgba(0,229,255,0.3);
  margin: 0 auto 20px;
  display: block;
  background: var(--navy-light);
}
.profile-name { font-family: 'Orbitron', sans-serif; font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.profile-role { font-family: 'Share Tech Mono', monospace; font-size: 12px; color: var(--cyan); letter-spacing: 2px; }

/* ── CONTACT FORM ── */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--cyan);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(13,21,38,0.9);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--white);
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 16px rgba(0,229,255,0.15);
}
.form-textarea { resize: vertical; min-height: 130px; }

/* ── INFO ROW ── */
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.info-row:last-child { border-bottom: none; }
.info-icon { font-size: 20px; margin-top: 2px; flex-shrink: 0; width: 32px; text-align: center; }
.info-label { font-family: 'Share Tech Mono', monospace; font-size: 10px; letter-spacing: 2px; color: var(--cyan); text-transform: uppercase; }
.info-value { font-size: 14px; color: var(--white); margin-top: 4px; }

/* ── FOOTER ── */
footer {
  background: rgba(5, 8, 16, 0.95);
  border-top: 1px solid var(--border);
  padding: 48px 5vw 28px;
  position: relative; z-index: 1;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-title { font-family: 'Orbitron', sans-serif; font-size: 13px; font-weight: 700; color: var(--cyan); letter-spacing: 2px; margin-bottom: 16px; }
.footer-text { font-size: 13px; color: var(--white-dim); line-height: 1.8; }
.footer-link { display: block; font-size: 13px; color: var(--white-dim); text-decoration: none; padding: 4px 0; transition: color 0.2s; }
.footer-link:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-family: 'Share Tech Mono', monospace; font-size: 11px; color: var(--white-dim); letter-spacing: 1px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 140px 5vw 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.page-hero p { font-size: 17px; color: var(--white-dim); margin-top: 16px; font-style: italic; font-weight: 300; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { opacity: 0.7; } 50% { opacity: 1; } }
@keyframes spin { to { transform: rotate(360deg); } }

.animate-fade-up { animation: fadeUp 0.7s ease forwards; }

.hero-badge { animation: pulse 2.5s infinite; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(10,14,26,0.97); border-bottom: 1px solid var(--border); padding: 16px; gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero { padding-top: 100px; }
  .orb-cyan, .orb-gold { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-bar { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}

/* ── TECH CATEGORY ── */
.tech-category { margin-bottom: 52px; }
.tech-category-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(245,197,24,0.2);
}

/* ── HIGHLIGHT BAR ── */
.highlight-bar {
  background: linear-gradient(135deg, rgba(0,229,255,0.08), rgba(245,197,24,0.05));
  border: 1px solid var(--border);
  border-left: 4px solid var(--cyan);
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 24px;
}

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(to bottom, var(--cyan), var(--gold)); }
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before { content: ''; position: absolute; left: -38px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
