:root {
  --bg: #0b0f17;
  --bg-soft: #0e1420;
  --surface: #111826;
  --surface-2: #162033;
  --border: rgba(148, 163, 184, 0.14);
  --border-strong: rgba(34, 211, 238, 0.35);
  --text: #e6edf6;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --accent: #22d3ee;
  --accent-2: #3b82f6;
  --accent-gradient: linear-gradient(120deg, #3b82f6, #22d3ee);
  --green: #34d399;
  --amber: #fbbf24;
  --radius: 16px;
  --radius-sm: 10px;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-head: "Space Grotesk", "Inter", system-ui, sans-serif;
  --container: 1120px;
  --header-h: 68px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--accent);
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--accent);
  color: #04121a;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(11, 15, 23, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(11, 15, 23, 0.92);
}

.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  font-family: var(--font-head);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-gradient);
  color: #04121a;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.brand-text {
  font-size: 15px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .brand-text {
    font-size: 14px;
  }
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.primary-menu a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.primary-menu a:hover {
  color: var(--text);
  background: rgba(148, 163, 184, 0.08);
}

.primary-menu a.active {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 880px) {
  .nav-toggle {
    display: flex;
  }

  .primary-menu {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px 4%;
    background: rgba(11, 15, 23, 0.98);
    border-bottom: 1px solid var(--border);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .primary-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .primary-menu a {
    padding: 12px 14px;
    font-size: 15px;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 56px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(600px 420px at 78% 12%, rgba(59, 130, 246, 0.16), transparent 65%),
    radial-gradient(520px 380px at 12% 82%, rgba(34, 211, 238, 0.12), transparent 65%),
    linear-gradient(180deg, #0b0f17 0%, #0d1320 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(700px 500px at 50% 30%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(700px 500px at 50% 30%, #000 20%, transparent 75%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  animation: heroIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 7px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.06);
}

.hero-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.5);
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.45);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(34, 211, 238, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 211, 238, 0);
  }
}

.hero-heading {
  margin-top: 26px;
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.hero-sub {
  margin-top: 22px;
  max-width: 660px;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.6vw, 1.13rem);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14.5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--accent-gradient);
  color: #04121a;
  box-shadow: 0 12px 30px -12px rgba(34, 211, 238, 0.55);
}

.btn-primary:hover {
  box-shadow: 0 16px 34px -12px rgba(34, 211, 238, 0.7);
}

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--border-strong);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--border-strong);
}

.btn-outline:hover {
  background: rgba(34, 211, 238, 0.08);
}

.hero-social {
  margin-top: 34px;
  display: flex;
  gap: 12px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: rgba(17, 24, 38, 0.6);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  color: var(--accent);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.hero-scrollhint {
  margin-top: 44px;
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-photo {
  justify-self: center;
  text-align: center;
}

.hero-photo-frame {
  position: relative;
  width: min(320px, 78vw);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 10px;
  background: var(--accent-gradient);
  box-shadow: 0 24px 60px -20px rgba(34, 211, 238, 0.45);
  animation: floaty 6s ease-in-out infinite;
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px dashed rgba(34, 211, 238, 0.35);
  animation: spin 28s linear infinite;
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--bg);
  display: block;
}

.hero-photo-caption {
  margin-top: 26px;
  display: grid;
  gap: 2px;
}

.hero-photo-caption strong {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--text);
}

.hero-photo-caption span:last-child {
  color: var(--text-muted);
  font-size: 13.5px;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-photo {
    order: -1;
  }
}

.hero-scrollhint::before {
  content: "\2193";
  display: inline-block;
  margin-right: 8px;
  color: var(--accent);
  animation: bob 1.8s ease-in-out infinite;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

/* ---------- Sections ---------- */

.section {
  padding: clamp(72px, 9vw, 110px) 0;
  scroll-margin-top: calc(var(--header-h) + 8px);
}

.section-head {
  max-width: 720px;
  margin-bottom: 52px;
}

.section-kicker {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}

.section-head .section-sub,
.section-sub {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 560px;
}

.journey,
.learning,
.devops {
  background: linear-gradient(180deg, var(--bg), var(--bg-soft) 18%, var(--bg));
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 36px;
  align-items: start;
}

.about-copy p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.about-copy strong {
  color: var(--text);
  font-weight: 600;
}

.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
}

.about-photo {
  display: grid;
  place-items: center;
  margin: -10px 0 18px;
}

.about-photo img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--accent);
  box-shadow: 0 14px 40px -14px rgba(34, 211, 238, 0.4);
}

.fact-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14px;
}

.fact-list li:last-child {
  border-bottom: none;
}

.fact-list span {
  color: var(--text-dim);
  white-space: nowrap;
}

.fact-list strong {
  color: var(--text);
  font-weight: 500;
  text-align: right;
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .fact-list li {
    font-size: 13.5px;
  }
}

/* ---------- Journey Timeline ---------- */

.journey-timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 22px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent), rgba(34, 211, 238, 0.15));
}

.jt-item {
  position: relative;
  padding: 0 0 20px 64px;
}

.jt-dot {
  position: absolute;
  left: 14px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 5px rgba(34, 211, 238, 0.12);
}

.jt-future .jt-dot {
  border-color: var(--green);
  box-shadow: 0 0 0 5px rgba(52, 211, 153, 0.12);
}

.jt-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.jt-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.jt-future .jt-card {
  border-color: rgba(52, 211, 153, 0.3);
}

.jt-org {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.jt-future .jt-org {
  color: var(--green);
}

.jt-role {
  font-family: var(--font-head);
  font-size: 1.18rem;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.jt-desc {
  color: var(--text-muted);
  font-size: 14.5px;
}

@media (max-width: 560px) {
  .journey-timeline::before {
    left: 15px;
  }
  .jt-dot {
    left: 7px;
  }
  .jt-item {
    padding-left: 48px;
  }
}

/* ---------- Skills ---------- */

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.skill-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.skill-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

.skill-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.skill-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(34, 211, 238, 0.08);
  color: var(--accent);
  border: 1px solid rgba(34, 211, 238, 0.22);
}

.skill-head h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
}

.tag {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.tag-core {
  color: var(--green);
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.tag-growing {
  color: var(--amber);
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.tag-learning {
  color: var(--accent);
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid var(--border-strong);
}

.skill-list li {
  position: relative;
  padding: 7px 0 7px 24px;
  color: var(--text-muted);
  font-size: 15px;
}

.skill-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 15px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.85;
}

.skill-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  color: var(--text-dim);
  font-size: 13px;
}

/* ---------- Experience ---------- */

.exp-list {
  display: grid;
  gap: 22px;
}

.exp-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
  box-shadow: var(--shadow);
}

.exp-badge {
  position: absolute;
  top: -12px;
  right: 22px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--accent-gradient);
  color: #04121a;
}

.exp-badge-past {
  background: var(--surface-2);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.exp-head {
  margin-bottom: 16px;
}

.exp-company {
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  padding-right: 88px;
}

.exp-role {
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 4px;
}

.exp-date {
  color: var(--accent);
  font-weight: 500;
}

.exp-bullets li {
  position: relative;
  padding: 7px 0 7px 24px;
  color: var(--text-muted);
  font-size: 15px;
}

.exp-bullets li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}

/* ---------- DevOps Journey ---------- */

.devops-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 44px;
}

.devops-status {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.devops-status h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.devops-status h3::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.14);
}

.devops-status-accent h3::before {
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.14);
}

.devops-status p {
  color: var(--text-muted);
  font-size: 14px;
}

.roadmap {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}

.rm-step {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.rm-step:hover {
  transform: translateX(4px);
  border-color: var(--border-strong);
}

.rm-chip {
  justify-self: start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  white-space: nowrap;
}

.rm-live .rm-chip {
  color: var(--amber);
  border-color: rgba(251, 191, 36, 0.4);
  background: rgba(251, 191, 36, 0.1);
}

.rm-goal .rm-chip {
  color: var(--green);
  border-color: rgba(52, 211, 153, 0.4);
  background: rgba(52, 211, 153, 0.1);
}

.rm-live {
  border-color: rgba(251, 191, 36, 0.35);
}

.rm-goal {
  border-color: rgba(52, 211, 153, 0.3);
}

.rm-step strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.02rem;
}

.rm-step small {
  color: var(--text-muted);
  font-size: 13px;
}

@media (max-width: 680px) {
  .devops-banner {
    grid-template-columns: 1fr;
  }
  .rm-step {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ---------- Snapshot ---------- */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.stat-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--accent-gradient);
  opacity: 0.65;
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

.stat-value {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text);
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-suffix {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-since,
.stat-focus {
  font-size: 1.7rem;
}

.stat-domain {
  font-size: 1.5rem;
}

.stat-label {
  display: block;
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 13.5px;
}

/* ---------- Learning ---------- */

.learning-headline {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.learning-label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.learning-focus {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.growth-road {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.growth-road li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.growth-road li:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

.growth-road span {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
}

.growth-road small {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 13px;
}

/* ---------- Projects ---------- */

.projects-empty {
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  padding: 56px 34px;
  text-align: center;
}

.projects-empty-icon {
  display: inline-flex;
  color: var(--accent);
  opacity: 0.9;
  margin-bottom: 16px;
}

.projects-empty h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.projects-empty p {
  color: var(--text-muted);
  font-size: 15px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.project-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.project-desc {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 16px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-tags li {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.2);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ---------- Contact ---------- */

.contact-inner {
  max-width: 760px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow);
}

.contact-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-card::before {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent-gradient);
  margin-bottom: 22px;
}

.contact-list {
  display: grid;
  gap: 4px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--border);
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(34, 211, 238, 0.08);
  color: var(--accent);
  border: 1px solid rgba(34, 211, 238, 0.2);
}

.contact-type {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2px;
}

.contact-list a {
  font-size: 15.5px;
  color: var(--text);
  transition: color 0.2s ease;
}

.contact-list a:hover {
  color: var(--accent);
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer p {
  color: var(--text-dim);
  font-size: 13.5px;
}

/* ---------- Reveal on scroll ---------- */

html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}