:root {
  --bg: #0f172a;
  --bg-light: #111827;
  --card: rgba(255, 255, 255, 0.06);
  --accent: #38bdf8;
  --accent-strong: #0ea5e9;
  --text: #f8fafc;
  --text-muted: #cbd5f5;
  --text-soft: #94a3b8;
  --shadow: 0 30px 60px rgba(15, 23, 42, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: radial-gradient(circle at top, #1e293b, #0b1120 70%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.navbar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #0f172a;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-weight: 600;
}

.nav-links a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  padding: 90px 24px 60px;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 700;
}

.intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 780px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  color: var(--text-soft);
  font-weight: 500;
}

.hero-meta i {
  color: var(--accent);
  margin-right: 8px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #0f172a;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: none;
}

.work-section {
  padding: 40px 24px 80px;
}

.skills-section {
  padding: 0 24px 80px;
}

.section-heading {
  max-width: 1100px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading p {
  color: var(--text-soft);
  max-width: 560px;
}

.work-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.work-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
  background: var(--card);
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: var(--shadow);
}

.work-card.reverse .work-image {
  order: 2;
}

.work-content h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.work-role {
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

.work-content p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.work-stack {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.skills-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.skill-card {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.skill-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(56, 189, 248, 0.2);
  color: var(--accent);
  font-size: 1.4rem;
}

.skill-card h3 {
  font-size: 1.3rem;
}

.strength-list {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.strength-list li {
  position: relative;
  padding-left: 20px;
}

.strength-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.contact-section {
  padding: 60px 24px 80px;
}

.contact-card {
  max-width: 1100px;
  margin: 0 auto 30px;
  background: var(--card);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: var(--shadow);
}

.contact-icons {
  display: flex;
  gap: 14px;
  font-size: 1.3rem;
}

.contact-icons a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(56, 189, 248, 0.15);
  color: var(--text);
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-icons a:hover {
  transform: translateY(-3px);
  background: rgba(56, 189, 248, 0.35);
}

.footer-note {
  text-align: center;
  color: var(--text-soft);
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .navbar {
    flex-direction: column;
    gap: 12px;
  }

  .hero {
    padding-top: 60px;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
