* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #060816;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: #0b1020;
  --border: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --muted-2: rgba(255, 255, 255, 0.45);
  --cyan: #67e8f9;
  --violet: #c4b5fd;
  --green: #86efac;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(120px);
}

.orb-cyan {
  width: 340px;
  height: 340px;
  background: rgba(34, 211, 238, 0.18);
  left: -120px;
  top: -100px;
}

.orb-violet {
  width: 320px;
  height: 320px;
  background: rgba(139, 92, 246, 0.18);
  right: -100px;
  top: 120px;
}

.orb-blue {
  width: 360px;
  height: 360px;
  background: rgba(59, 130, 246, 0.12);
  left: 20%;
  bottom: -140px;
}

.noise {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,0.06), transparent 34%);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  padding: 38px 0 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.logo span {
  color: #22d3ee;
}

.menu {
  display: flex;
  gap: 32px;
}

.menu a {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  transition: 0.25s ease;
}

.menu a:hover {
  color: #fff;
}

.hero {
  padding: 56px 0 110px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  background: rgba(34, 211, 238, 0.1);
  color: #9be7f5;
  font-size: 14px;
}

.hero h1 {
  margin-top: 28px;
  max-width: 900px;
  font-size: 72px;
  line-height: 1.04;
  letter-spacing: -2px;
  font-weight: 700;
}

.gradient-text {
  background: linear-gradient(90deg, #67e8f9, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-text {
  margin-top: 26px;
  max-width: 760px;
  font-size: 21px;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  min-width: 180px;
  padding: 17px 26px;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  transition: 0.25s ease;
}

.btn-primary {
  background: #fff;
  color: #000;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.09);
}

.stats-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 760px;
}

.stat-card {
  padding: 22px 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
}

.stat-card strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.stat-card span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.hero-right {
  position: relative;
}

.profile-glow {
  position: absolute;
  inset: -24px;
  border-radius: 34px;
  background: linear-gradient(
    135deg,
    rgba(34, 211, 238, 0.18),
    rgba(59, 130, 246, 0.08),
    rgba(139, 92, 246, 0.18)
  );
  filter: blur(30px);
}

.profile-shell {
  position: relative;
  padding: 1px;
  border-radius: 32px;
  background: rgba(255,255,255,0.04);
}

.profile-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(18px);
  padding: 24px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.32);
}

.profile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 18px;
}

.profile-top h3 {
  margin-top: 6px;
  font-size: 34px;
}

.muted {
  color: var(--muted-2);
}

.small {
  font-size: 14px;
}

.status-badge {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  color: #6ee7b7;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.18);
}

.special-box {
  margin-top: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  padding: 22px;
}

.special-text {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.86);
  font-weight: 500;
}

.mini-skills {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mini-skills div {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  padding: 15px 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
}

.mini-badges {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini-badges div {
  text-align: center;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  padding: 16px 10px;
}

.mini-badges strong {
  display: block;
  font-size: 14px;
}

.mini-badges span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.section-head {
  margin-bottom: 46px;
}

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
}

.section-label {
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.cyan {
  color: var(--cyan);
}

.violet {
  color: var(--violet);
}

.green {
  color: var(--green);
}

.section h2 {
  max-width: 920px;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
}

.section-desc {
  margin-top: 18px;
  max-width: 720px;
  font-size: 19px;
  line-height: 1.75;
  color: var(--muted);
}

.section-desc.side {
  margin-top: 0;
  max-width: 460px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  padding: 28px;
  transition: 0.25s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(103, 232, 249, 0.28);
}

.info-card h3 {
  font-size: 24px;
  line-height: 1.25;
}

.info-card p {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.project-card {
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0b1020;
  padding: 20px;
  transition: 0.25s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(103, 232, 249, 0.26);
}

.project-visual-wrap {
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(
    135deg,
    rgba(34, 211, 238, 0.08),
    rgba(59, 130, 246, 0.10),
    rgba(139, 92, 246, 0.10)
  );
}

.project-visual {
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(
    135deg,
    rgba(34, 211, 238, 0.10),
    rgba(59, 130, 246, 0.12),
    rgba(139, 92, 246, 0.12)
  );
}

.project-content h3 {
  margin-top: 22px;
  font-size: 28px;
  line-height: 1.2;
}

.project-content p {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
}

.project-btn {
  display: inline-block;
  margin-top: 22px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  font-size: 14px;
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.simple-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.simple-card {
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.04);
  padding: 26px;
  font-size: 22px;
  line-height: 1.45;
  color: rgba(255,255,255,0.88);
}

.contact-section {
  padding-top: 20px;
  padding-bottom: 100px;
}

.contact-shell {
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.09);
  background: linear-gradient(
    135deg,
    rgba(34, 211, 238, 0.08),
    rgba(11, 16, 32, 0.94),
    rgba(139, 92, 246, 0.08)
  );
  padding: 42px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
}

.contact-card {
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.20);
  backdrop-filter: blur(8px);
  padding: 24px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #fff;
  border-radius: 18px;
  padding: 17px 18px;
  font-size: 15px;
  outline: none;
  margin-bottom: 14px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.contact-form button {
  width: 100%;
  border: none;
  background: #fff;
  color: #000;
  border-radius: 18px;
  padding: 17px 18px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 60px;
  }

  .section h2 {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .menu {
    display: none;
  }

  .hero-grid,
  .section-head-row,
  .about-grid,
  .contact-shell {
    grid-template-columns: 1fr;
    display: grid;
  }

  .info-grid,
  .projects-grid,
  .simple-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-text {
    font-size: 19px;
  }
}

@media (max-width: 768px) {
  .header {
    padding-top: 24px;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 80px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .stats-grid,
  .info-grid,
  .projects-grid,
  .simple-grid,
  .mini-skills,
  .mini-badges {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .section h2 {
    font-size: 32px;
  }

  .section-desc {
    font-size: 17px;
  }

  .profile-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-top h3 {
    font-size: 28px;
  }

  .simple-card {
    font-size: 19px;
  }

  .contact-shell,
  .project-card,
  .info-card,
  .profile-card,
  .contact-card {
    padding-left: 18px;
    padding-right: 18px;
  }
}