/* ── RESET & BASE ─────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-900: #0e0d0b;
  --bg-800: #161512;
  --bg-700: #1e1c17;
  --bg-card: #1a1916;
  --bg-card2: #111009;
  --bg-lift: #222019;
  --accent: #e9c46a;
  /* warm gold */
  --accent2: #f4a261;
  /* warm orange */
  --accent3: #52b788;
  /* sage green – DevOps nod */
  --green: #52b788;
  --gold: #e9c46a;
  --orange: #f4a261;
  --red: #e76f51;
  --purple: #c77dff;
  --cyan: #48cae4;
  --teal: #52b788;
  --indigo: #a8dadc;
  --text-primary: #f0ede5;
  --text-secondary: #9e9a8e;
  --text-muted: #656159;
  --border: rgba(255, 255, 255, .05);
  --border-hover: rgba(233, 196, 106, .25);
  --glow: rgba(233, 196, 106, .07);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, .45), 0 1px 3px rgba(0, 0, 0, .3);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, .55), 0 2px 8px rgba(0, 0, 0, .4);
  --radius: 14px;
  --radius-sm: 8px;
  --font: 'Inter', sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --transition: .28s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg-900);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.mono {
  font-family: var(--mono);
}

.accent {
  color: var(--accent);
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight {
  color: var(--accent);
  font-weight: 600;
}

/* ── NAV ─────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(14, 13, 11, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

#navbar.scrolled {
  border-bottom-color: rgba(255, 255, 255, .06);
  padding: 13px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.nav-logo {
  font-family: var(--mono);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
}

.nav-logo .mono {
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 7px 13px;
  border-radius: 7px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
  background: var(--glow);
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--bg-900) !important;
  padding: 7px 18px !important;
  font-weight: 700 !important;
  border-radius: 7px;
}

.nav-cta:hover {
  opacity: .88;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(233, 196, 106, .3) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ─────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  padding: 130px 28px 80px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(233, 196, 106, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233, 196, 106, .025) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(82, 183, 136, .1);
  border: 1px solid rgba(82, 183, 136, .22);
  color: var(--green);
  padding: 5px 13px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: .02em;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(1.3)
  }
}

.hero-name {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -.02em;
}

.hero-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
}

.role-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-lift);
  border: 1px solid rgba(255, 255, 255, .07);
}

.role-tag svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.hero-desc {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 490px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 9px;
  font-weight: 600;
  font-size: .92rem;
  transition: var(--transition);
  cursor: pointer;
}

.btn svg {
  width: 17px;
  height: 17px;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-900);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(233, 196, 106, .3);
  opacity: .92;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--text-primary);
  background: var(--bg-lift);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-lg {
  padding: 13px 30px;
  font-size: .98rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--mono);
}

.stat-label {
  font-size: .78rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .08);
}

/* AVATAR */
.hero-avatar {
  position: relative;
  width: 320px;
  height: 320px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid transparent;
  background: linear-gradient(var(--bg-900), var(--bg-900)) padding-box,
    linear-gradient(135deg, var(--accent), var(--accent2)) border-box;
  animation: spin 10s linear infinite;
}

.ring2 {
  animation-duration: 16s;
  animation-direction: reverse;
  inset: -12px;
  opacity: .3;
}

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

.avatar-img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2.5px solid rgba(233, 196, 106, .5);
  position: relative;
  z-index: 2;
}

.avatar-badge {
  position: absolute;
  z-index: 3;
  background: var(--bg-lift);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 11px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
  box-shadow: var(--shadow-card);
}

.avatar-badge img {
  display: block;
}

.avatar-badge.aws {
  top: 22px;
  right: 12px;
  animation-delay: 0s;
}

.avatar-badge.docker {
  bottom: 32px;
  left: 12px;
  animation-delay: 1s;
}

.avatar-badge.linux {
  bottom: 12px;
  right: 22px;
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-7px)
  }
}

.scroll-hint {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  font-size: .78rem;
  grid-column: 1/-1;
}

.scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 1.5px solid var(--text-muted);
  border-bottom: 1.5px solid var(--text-muted);
  transform: rotate(45deg);
  animation: bounce 1.6s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0)
  }

  50% {
    transform: rotate(45deg) translateY(5px)
  }
}

/* ── SECTIONS ─────────────────────────────────── */
.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--bg-800);
}

.section-header {
  margin-bottom: 56px;
}

.section-tag {
  font-size: .8rem;
  color: var(--accent);
  letter-spacing: .12em;
  margin-bottom: 10px;
  display: block;
  font-family: var(--mono);
  text-transform: uppercase;
}

.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.02em;
}

.section-sub {
  color: var(--text-secondary);
  margin-top: 12px;
  max-width: 480px;
}

/* ── ABOUT ─────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.82;
  margin-bottom: 16px;
}

.about-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 14px;
  background: var(--bg-lift);
  border-radius: var(--radius-sm);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.info-label {
  font-size: .72rem;
  color: var(--text-muted);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .07em;
}

.info-val {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Terminal */
.about-terminal {
  background: #0a0907;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.terminal-header {
  background: #151310;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot.red {
  background: #ff5f57;
}

.dot.yellow {
  background: #ffbd2e;
}

.dot.green {
  background: #28c840;
}

.terminal-title {
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--text-muted);
  margin-left: auto;
}

.terminal-body {
  padding: 20px;
  font-family: var(--mono);
  font-size: .83rem;
  line-height: 2;
}

.t-line {
  display: block;
}

.t-prompt {
  color: var(--green);
  margin-right: 8px;
}

.t-cmd {
  color: var(--accent);
}

.t-output {
  color: var(--text-secondary);
  padding-left: 16px;
}

.t-cursor {
  animation: blink 1s step-end infinite;
  color: var(--accent);
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

/* ── TIMELINE ─────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 36px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255, 255, 255, .08);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -28px;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(233, 196, 106, .4);
}

.timeline-content {
  background: var(--bg-lift);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.timeline-content:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.exp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.exp-role {
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.exp-company {
  color: var(--accent);
  font-size: .88rem;
  margin-top: 3px;
  font-weight: 500;
}

.exp-date {
  font-size: .78rem;
  color: var(--text-muted);
  font-family: var(--mono);
  white-space: nowrap;
  background: rgba(255, 255, 255, .05);
  padding: 3px 9px;
  border-radius: 5px;
}

.badge {
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(233, 196, 106, .12);
  color: var(--accent);
}

.badge-gray {
  background: rgba(255, 255, 255, .07);
  color: var(--text-secondary);
}

.exp-list {
  padding-left: 16px;
  margin-bottom: 16px;
}

.exp-list li {
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-size: .88rem;
  position: relative;
  padding-left: 8px;
  line-height: 1.6;
}

.exp-list li::before {
  content: '▸';
  position: absolute;
  left: -12px;
  color: var(--accent);
  font-size: .7rem;
  top: 3px;
}

.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.exp-tags span {
  font-size: .73rem;
  padding: 3px 10px;
  border-radius: 5px;
  background: rgba(233, 196, 106, .08);
  color: var(--accent);
  font-family: var(--mono);
}

/* ── SKILLS ─────────────────────────────────── */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.skill-category {
  background: var(--bg-lift);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.skill-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}

.skill-category:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.skill-category:hover::before {
  opacity: 1;
}

.skill-cat-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.skill-cat-icon svg {
  width: 22px;
  height: 22px;
}

.cloud-icon {
  background: rgba(233, 196, 106, .1);
  color: var(--accent);
}

.devops-icon {
  background: rgba(82, 183, 136, .1);
  color: var(--green);
}

.linux-icon {
  background: rgba(244, 162, 97, .1);
  color: var(--orange);
}

.net-icon {
  background: rgba(72, 202, 228, .1);
  color: var(--cyan);
}

.virt-icon {
  background: rgba(199, 125, 255, .1);
  color: var(--purple);
}

.soft-icon {
  background: rgba(231, 111, 81, .1);
  color: var(--red);
}

.skill-category h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.skill-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.pill {
  font-size: .75rem;
  padding: 4px 11px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .05);
  color: var(--text-secondary);
  font-family: var(--mono);
  transition: var(--transition);
}

.pill:hover {
  color: var(--accent);
  background: rgba(233, 196, 106, .08);
}

.pill-aws {
  background: rgba(255, 153, 0, .1);
  color: #ff9900;
}

.pill-gcp {
  background: rgba(66, 133, 244, .1);
  color: #4285f4;
}

.pill-azure {
  background: rgba(0, 120, 212, .1);
  color: #0078d4;
}

/* ── ORGANIZATIONS ─────────────────────────────────── */
.org-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.org-card {
  background: var(--bg-lift);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  gap: 18px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.org-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.org-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(233, 196, 106, .1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.org-info h3 {
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.org-org {
  color: var(--accent);
  font-size: .82rem;
  margin-bottom: 3px;
}

.org-date {
  font-size: .73rem;
  color: var(--text-muted);
  font-family: var(--mono);
  margin-bottom: 11px;
  display: block;
}

.org-list,
.org-list li {
  color: var(--text-secondary);
  font-size: .84rem;
  margin-bottom: 5px;
  position: relative;
  padding-left: 8px;
  line-height: 1.6;
}

.org-list li::before {
  content: '▸';
  position: absolute;
  left: -10px;
  color: var(--accent);
  font-size: .68rem;
  top: 3px;
}

/* ── CERTIFICATIONS — LIST STYLE ─────────────────────────────────── */
.cert-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cert-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.cert-row:hover {
  background: var(--bg-lift);
}

.cert-row+.cert-row {
  border-top: 1px solid rgba(255, 255, 255, .04);
}

.cert-row+.cert-row:hover {
  border-top-color: transparent;
}

.cert-num {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--text-muted);
  width: 24px;
  flex-shrink: 0;
}

.cert-dot-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cert-dot-icon svg {
  width: 18px;
  height: 18px;
}

.cert-main {
  flex: 1;
  min-width: 0;
}

.cert-main h3 {
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.cert-main p {
  color: var(--text-secondary);
  font-size: .8rem;
}

.cert-date-badge {
  font-size: .72rem;
  color: var(--text-muted);
  font-family: var(--mono);
  white-space: nowrap;
  background: rgba(255, 255, 255, .05);
  padding: 3px 9px;
  border-radius: 5px;
}

.cert-view-btn {
  margin-left: 8px;
  color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 6px;
  border-radius: 7px;
}

.cert-view-btn:hover {
  color: var(--accent);
  background: rgba(233, 196, 106, .1);
}

.cert-view-btn svg {
  width: 15px;
  height: 15px;
}

.cert-no-link {
  cursor: default;
  opacity: .25;
}

/* color variants */
.cb {
  background: rgba(72, 202, 228, .1);
  color: var(--cyan);
}

.cg {
  background: rgba(82, 183, 136, .1);
  color: var(--green);
}

.cp {
  background: rgba(199, 125, 255, .1);
  color: var(--purple);
}

.cgo {
  background: rgba(233, 196, 106, .1);
  color: var(--gold);
}

.co {
  background: rgba(244, 162, 97, .1);
  color: var(--orange);
}

.ct {
  background: rgba(82, 183, 136, .12);
  color: var(--teal);
}

.ci {
  background: rgba(168, 218, 220, .1);
  color: var(--indigo);
}

/* ── EDUCATION ─────────────────────────────────── */
.edu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.edu-card {
  background: var(--bg-lift);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.edu-card:hover {
  box-shadow: var(--shadow-hover);
}

.edu-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}

.edu-info h3 {
  font-size: .98rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.edu-degree {
  color: var(--accent);
  font-size: .88rem;
  margin-bottom: 3px;
}

.edu-gpa {
  color: var(--green);
  font-size: .82rem;
  font-weight: 600;
  font-family: var(--mono);
  margin-bottom: 3px;
}

.edu-date {
  font-size: .73rem;
  color: var(--text-muted);
  font-family: var(--mono);
}

/* ── CONTACT ─────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.contact-card {
  background: var(--bg-lift);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(233, 196, 106, .1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-label {
  font-size: .72rem;
  color: var(--text-muted);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.contact-val {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-cta {
  text-align: center;
}

/* ── FOOTER ─────────────────────────────────── */
footer {
  background: var(--bg-card2);
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
}

.footer-logo {
  font-family: var(--mono);
  font-size: 1rem;
  color: var(--accent);
  font-weight: 700;
}

.footer-copy {
  font-size: .82rem;
  color: var(--text-muted);
}

/* ── AOS ─────────────────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}

[data-aos].visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  #hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto 36px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-avatar {
    margin: 0 auto;
    width: 270px;
    height: 270px;
  }

  .avatar-img {
    width: 200px;
    height: 200px;
  }

  .scroll-hint {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .org-grid {
    grid-template-columns: 1fr;
  }

  .edu-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(14, 13, 11, .98);
    padding: 14px 24px;
    gap: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero-roles {
    justify-content: center;
  }

  .hero-stats {
    gap: 14px;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .exp-header {
    flex-direction: column;
    gap: 6px;
  }

  .about-info {
    grid-template-columns: 1fr;
  }

  .cert-row {
    padding: 14px 10px;
  }

  .cert-num {
    display: none;
  }

  .cert-date-badge {
    display: none;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 64px 0;
  }

  .timeline {
    padding-left: 22px;
  }

  .timeline::before {
    left: 5px;
  }

  .timeline-dot {
    left: -18px;
  }
}