* { margin: 0; padding: 0; box-sizing: border-box; }

:root{
  --bg: #070A12;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.08);
  --text: #EDEDED;
  --muted: #B6B6B6;
  --accent: #2dfc9c;
  --accent2: #38BDF8;
  --border: rgba(255,255,255,0.12);
}

html { scroll-behavior: smooth; }

body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(circle at top, #0b1f24, var(--bg));
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 44px 18px 70px;
}

/* background glow blobs */
.bg-glow{
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.26;
  z-index: -1;
  animation: floaty 9s ease-in-out infinite;
}
.g1{ top: -160px; left: -160px; background: var(--accent); }
.g2{ bottom: -220px; right: -200px; background: var(--accent2); animation-delay: 1.2s; }

@keyframes floaty{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(30px, -18px) scale(1.05); }
}

.hero{
  display: flex;
  gap: 26px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

.avatar-wrap{ position: relative; flex: 0 0 auto; }
.avatar{
  width: 150px;
  height: 150px;
  border-radius: 16px;
  border: 1px solid rgba(45,252,156,0.6);
  box-shadow: 0 0 0 6px rgba(45,252,156,0.06);
  transform: translateZ(0);
  animation: popIn 900ms ease both;
}

.status-dot{
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(45,252,156,0.75);
  border: 2px solid rgba(0,0,0,0.45);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{ transform: scale(1); opacity: 0.95; }
  50%{ transform: scale(1.25); opacity: 0.65; }
}
@keyframes popIn{
  from{ opacity: 0; transform: translateY(10px) scale(0.96); }
  to{ opacity: 1; transform: translateY(0) scale(1); }
}

.hero-text h1{
  font-size: clamp(2.1rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.5px;
}

.kicker{
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.subtitle{
  color: var(--accent);
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 12px;
}

.bio{
  color: var(--muted);
  line-height: 1.65;
  max-width: 640px;
}

.cta-row{
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.btn{
  padding: 11px 14px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn:hover{ transform: translateY(-2px); }

.btn.primary{
  background: rgba(45,252,156,0.13);
  border-color: rgba(45,252,156,0.45);
  box-shadow: 0 0 0 6px rgba(45,252,156,0.06);
  color: var(--text);
}
.btn.ghost{
  background: rgba(255,255,255,0.05);
  color: var(--text);
}

.socials{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: transform 160ms ease, background 160ms ease;
}
.social-item:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.07);
}
.social-item img{ width: 20px; height: 20px; }

.section{
  margin-top: 40px;
}
.section-title{
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.muted{ color: var(--muted); line-height: 1.6; }

.grid{
  display: grid;
  gap: 14px;
}
.grid.two{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three{ grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card{
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  transform: translateZ(0);
}

.list{ margin-top: 10px; padding-left: 18px; color: var(--muted); line-height: 1.75; }

.chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.chip{
  font-size: 0.85rem;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
}

.project{
  position: relative;
  overflow: hidden;
}
.project::before{
  content:"";
  position:absolute;
  inset:-60px;
  background: radial-gradient(circle, rgba(45,252,156,0.10), transparent 55%);
  transform: translateX(-25%);
  opacity: 0.0;
  transition: opacity 240ms ease;
}
.project:hover::before{ opacity: 1; }

.project-top{
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.badge{
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(45,252,156,0.13);
  border: 1px solid rgba(45,252,156,0.35);
}
.badge.ghost{
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
}

.contact-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.footer{
  margin-top: 56px;
  text-align: center;
  color: #7b7b7b;
  font-size: 0.9rem;
}

/* reveal animations */
.reveal{
  opacity: 0;
  transform: translateY(10px);
  animation: reveal 700ms ease forwards;
}
.reveal.delay-1{ animation-delay: 120ms; }
.reveal.delay-2{ animation-delay: 240ms; }
.reveal.delay-3{ animation-delay: 360ms; }
.reveal.delay-4{ animation-delay: 480ms; }

@keyframes reveal{
  to{ opacity: 1; transform: translateY(0); }
}

/* responsive */
@media (max-width: 900px){
  .hero{ flex-direction: column; align-items: flex-start; }
  .grid.two{ grid-template-columns: 1fr; }
  .grid.three{ grid-template-columns: 1fr; }
  .avatar{ width: 140px; height: 140px; }
}
/* testimonials */
.testimonial{
  position: relative;
  overflow: hidden;
}
.t-top{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.t-quote{
  font-size: 1.4rem;
  line-height: 1;
  color: rgba(45,252,156,0.9);
  text-shadow: 0 0 18px rgba(45,252,156,0.35);
}
.t-text{
  color: var(--muted);
  line-height: 1.65;
}
.t-meta{
  margin-top: 14px;
  font-size: 0.92rem;
  color: #cfcfcf;
  opacity: 0.9;
}