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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: #050816;
  color: #f8fbff;
  min-height: 100vh;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.12), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(255, 0, 180, 0.12), transparent 25%),
    radial-gradient(circle at 50% 90%, rgba(0, 120, 255, 0.14), transparent 35%);
  pointer-events: none;
  z-index: -3;
}

.grid-bg {
  position: fixed;
  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: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent);
  z-index: -2;
}

.header {
  width: min(1180px, 92%);
  margin: 24px auto;
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  position: sticky;
  top: 18px;
  z-index: 10;
}

.logo {
  font-weight: 800;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #00ffe0;
  border-radius: 50%;
  box-shadow: 0 0 18px #00ffe0;
}

nav {
  display: flex;
  gap: 20px;
}

nav a,
.card a,
.btn {
  color: #fff;
  text-decoration: none;
}

nav a {
  opacity: 0.78;
  font-size: 14px;
}

nav a:hover {
  opacity: 1;
  color: #00ffe0;
}

.hero {
  width: min(1180px, 92%);
  margin: 90px auto 60px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.badge {
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,255,224,0.35);
  background: rgba(0,255,224,0.08);
  color: #00ffe0;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -4px;
  max-width: 980px;
}

.hero p {
  max-width: 680px;
  margin-top: 28px;
  font-size: 20px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
}

.hero-buttons {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  transition: 0.25s;
}

.btn:hover {
  transform: translateY(-3px);
  border-color: #00ffe0;
}

.btn.primary {
  background: linear-gradient(135deg, #00ffe0, #7c3cff);
  color: #050816;
  font-weight: 800;
}

.stats {
  width: min(1180px, 92%);
  margin: 0 auto 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stats div {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
}

.stats b {
  display: block;
  font-size: 34px;
  color: #00ffe0;
}

.stats span {
  color: rgba(255,255,255,0.68);
}

.section {
  width: min(1180px, 92%);
  margin: 100px auto;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
}

.section-title span {
  color: #00ffe0;
  font-weight: 800;
}

.section-title h2 {
  font-size: 42px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  min-height: 300px;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
  transition: 0.25s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,255,224,0.55);
  box-shadow: 0 0 40px rgba(0,255,224,0.12);
}

.card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -60px;
  bottom: -60px;
  background: rgba(0,255,224,0.13);
  border-radius: 50%;
  filter: blur(10px);
}

.tag {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(124,60,255,0.22);
  color: #cbbcff;
  font-size: 12px;
  margin-bottom: 22px;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.card p {
  color: rgba(255,255,255,0.68);
  line-height: 1.55;
  margin-bottom: 24px;
}

.card a {
  color: #00ffe0;
  font-weight: 700;
}

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

.chips span,
.bio-tags span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}

.bio {
  width: min(1180px, 92%);
  margin: 100px auto;
}

.bio-card {
  padding: 40px;
  border-radius: 34px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 34px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.14);
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 30px;
  background: linear-gradient(135deg, #00ffe0, #7c3cff);
  color: #050816;
  display: grid;
  place-items: center;
  font-size: 60px;
  font-weight: 900;
}

.bio h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.bio p,
.contact p {
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  font-size: 18px;
  max-width: 760px;
}

.bio-tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

footer {
  width: min(1180px, 92%);
  margin: 80px auto 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
}

@media (max-width: 900px) {
  .header {
    flex-direction: column;
    gap: 16px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stats,
  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .bio-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero {
    margin-top: 50px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .stats,
  .cards {
    grid-template-columns: 1fr;
  }
}
