/* Main styles — unminified on purpose. */
:root {
  --bg: #0d0b14;
  --bg-soft: #14111f;
  --ink: #f3f1fa;
  --ink-muted: #a39fb3;
  --accent: #7c5cff;
  --accent-2: #4ea1ff;
  --card: #181425;
  --line: rgba(255, 255, 255, 0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(13, 11, 20, 0.7);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  text-decoration: none;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-size: 13px;
  font-weight: 800;
  color: white;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
}

.nav-links a {
  color: var(--ink-muted);
  text-decoration: none;
}

.nav-links a:hover { color: var(--ink); }

.nav-cta {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink) !important;
  background: rgba(255, 255, 255, 0.04);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,11,20,0.25) 0%, rgba(13,11,20,0.78) 78%, var(--bg) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 96px 24px;
  max-width: 820px;
}

.hero-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent-2);
  margin-bottom: 22px;
}

.hero-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 58px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 18.5px;
  color: var(--ink-muted);
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 8px 28px rgba(124, 92, 255, 0.35);
}

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

.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.btn-lg { padding: 16px 34px; font-size: 16.5px; }

/* ---------- stats ---------- */
.stats {
  max-width: 1120px;
  margin: -40px auto 0;
  position: relative;
  z-index: 2;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 28px;
}

.stat-value {
  font-family: 'Sora', sans-serif;
  font-size: 34px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 14px;
  color: var(--ink-muted);
  margin-top: 4px;
}

/* ---------- sections ---------- */
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 110px 24px 40px;
}

.section-alt {
  max-width: none;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 90px;
  padding: 90px 24px;
}

.section-head { margin-bottom: 44px; }

.section-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 38px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.section-sub { color: var(--ink-muted); font-size: 16.5px; }

/* ---------- work grid ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.card-body { padding: 22px 24px 26px; }

.card-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.card-tags span {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent-2);
  background: rgba(78, 161, 255, 0.1);
  border: 1px solid rgba(78, 161, 255, 0.25);
  border-radius: 999px;
  padding: 3px 10px;
}

.card h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 9px;
}

.card p { font-size: 14.5px; color: var(--ink-muted); line-height: 1.65; }

/* ---------- about ---------- */
.about-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
}

.about-grid p { color: var(--ink-muted); margin-bottom: 16px; font-size: 16px; }

.skills-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 18px;
}

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

.chips span {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
}

/* ---------- contact ---------- */
.contact {
  text-align: center;
  padding: 130px 24px 110px;
  max-width: 720px;
  margin: 0 auto;
}

.contact-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 44px;
  margin-bottom: 14px;
}

.contact-sub { color: var(--ink-muted); margin-bottom: 36px; font-size: 17px; }

.contact-links { margin-top: 28px; font-size: 15px; }
.contact-links a { color: var(--ink-muted); text-decoration: none; }
.contact-links a:hover { color: var(--ink); }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 30px 24px;
  font-size: 13.5px;
  color: var(--ink-muted);
}
