@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Unbounded:wght@400;600&display=swap');

:root {
  --bg: #0b0c14;
  --bg-alt: #151a2e;
  --panel: #161b33;
  --text: #f1f2f6;
  --muted: #a5acc9;
  --accent: #48f7ff;
  --accent-2: #7c5cff;
  --accent-3: #ff6b6b;
  --accent-4: #00ffa3;
  --accent-5: #ffd36a;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --glow: 0 0 30px rgba(72, 247, 255, 0.35);
}

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

body {
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(180deg, #0b0c14 0%, #0a0b16 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.noise::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4;
  mix-blend-mode: screen;
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="140" height="140" viewBox="0 0 140 140"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"/></filter><rect width="140" height="140" filter="url(%23n)" opacity="0.05"/></svg>');
  pointer-events: none;
  mix-blend-mode: soft-light;
  z-index: 0;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(10, 12, 22, 0.75);
  border-bottom: 1px solid rgba(72, 247, 255, 0.15);
}

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

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

.mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  box-shadow: var(--glow);
}

.name {
  font-weight: 600;
}

.role {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
  text-shadow: 0 0 10px rgba(72, 247, 255, 0.6);
}

.menu {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--text);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: inherit;
}

.hero {
  padding: 90px 0 60px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2.2rem, 3vw + 1rem, 3.6rem);
  margin-bottom: 18px;
  background: linear-gradient(120deg, #ffffff 10%, var(--accent) 45%, var(--accent-2) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0e0f1a;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow), var(--glow);
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(72, 247, 255, 0.3);
  box-shadow: none;
}

.stats {
  margin-top: 28px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 600;
}

.stat-label {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-card {
  position: relative;
}

.card-glow {
  position: absolute;
  inset: -10% 10% 10% -10%;
  background: radial-gradient(circle, rgba(72, 247, 255, 0.25), transparent 60%);
  filter: blur(20px);
}

.profile-card {
  position: relative;
  padding: 28px;
  background: linear-gradient(145deg, rgba(24, 28, 52, 0.95), rgba(18, 20, 37, 0.9));
  border-radius: 20px;
  border: 1px solid rgba(72, 247, 255, 0.18);
  box-shadow: var(--shadow), 0 0 25px rgba(124, 92, 255, 0.15);
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent-5), var(--accent-3));
  display: grid;
  place-items: center;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 0 18px rgba(255, 211, 106, 0.4);
}

.profile-info h2 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.profile-info p {
  color: var(--muted);
  margin-bottom: 16px;
}

.profile-info ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(72, 247, 255, 0.18), rgba(124, 92, 255, 0.18));
  font-size: 0.8rem;
  border: 1px solid rgba(72, 247, 255, 0.2);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: linear-gradient(120deg, rgba(18, 22, 44, 0.9), rgba(12, 14, 28, 0.95));
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.section-head p {
  color: var(--muted);
  max-width: 520px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.card {
  background: var(--panel);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(72, 247, 255, 0.12);
  box-shadow: var(--shadow), 0 0 20px rgba(0, 255, 163, 0.08);
}

.card h3 {
  margin-bottom: 8px;
}

.card ul {
  list-style: none;
  display: grid;
  gap: 6px;
  margin-top: 14px;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(72, 247, 255, 0.12);
  background: var(--panel);
  box-shadow: var(--shadow);
  scrollbar-color: rgba(72, 247, 255, 0.4) rgba(72, 247, 255, 0.1);
  scrollbar-width: thin;
}

.table-wrap::-webkit-scrollbar {
  height: 8px;
}

.table-wrap::-webkit-scrollbar-track {
  background: rgba(72, 247, 255, 0.08);
  border-radius: 10px;
}

.table-wrap::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(72, 247, 255, 0.4), rgba(124, 92, 255, 0.4));
  border-radius: 10px;
  border: 2px solid rgba(72, 247, 255, 0.08);
}

.table-wrap::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, rgba(72, 247, 255, 0.6), rgba(124, 92, 255, 0.6));
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

thead {
  background: linear-gradient(90deg, rgba(72, 247, 255, 0.12), rgba(124, 92, 255, 0.12));
}

th,
td {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.95rem;
}

tr:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.status {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
}

.status.yes {
  background: rgba(0, 255, 163, 0.2);
  color: var(--accent-4);
}

.status.no {
  background: rgba(255, 107, 107, 0.15);
  color: var(--accent-3);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.contact-card {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(124, 92, 255, 0.18);
  background: var(--panel);
}

.footer {
  padding: 30px 0 50px;
  text-align: center;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .nav {
    position: absolute;
    right: 4vw;
    top: 70px;
    flex-direction: column;
    background: rgba(14, 15, 26, 0.95);
    padding: 14px 18px;
    border-radius: 12px;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .menu {
    display: inline-flex;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .stats {
    gap: 16px;
  }

  table {
    min-width: 560px;
  }
}
