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

:root {
  /* Brand */
  --teal:        #50a3a2;
  --green:       #78cc6d;
  --grad:        linear-gradient(135deg, #50a3a2 0%, #78cc6d 100%);
  --grad-text:   linear-gradient(135deg, #6ec6c5 0%, #90dd87 100%);

  /* Surfaces */
  --bg:          #06090f;
  --surface:     rgba(255,255,255,0.04);
  --surface-h:   rgba(255,255,255,0.065);
  --border:      rgba(255,255,255,0.08);
  --border-h:    rgba(80,163,162,0.45);

  /* Text */
  --text:        #e2eaf4;
  --text-2:      #7a8da0;
  --text-3:      #4a5a6a;

  /* Glow */
  --glow:        rgba(80,163,162,0.18);
  --glow-strong: rgba(80,163,162,0.30);

  /* MD3 tokens */
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img   { display: block; max-width: 100%; height: auto; }
a     { text-decoration: none; transition: color .2s; }
ul    { list-style: none; }
em    { font-style: italic; }
strong { font-weight: 700; color: var(--text); }

/* ─────────────────────────────────────────────────────────────
   LAYOUT
───────────────────────────────────────────────────────────── */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 96px 0;
}

/* Section micro-backgrounds */
.section:nth-child(odd) {
  background: radial-gradient(ellipse 700px 500px at 95% 40%, rgba(80,163,162,.04) 0%, transparent 70%);
}
.section:nth-child(even) {
  background: radial-gradient(ellipse 700px 500px at 5% 60%, rgba(120,204,109,.03) 0%, transparent 70%);
}

/* ─────────────────────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────────────────────── */
.eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -.025em;
  margin-bottom: 44px;
}

h3 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 16px;
}

p {
  color: var(--text-2);
  line-height: 1.7;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 620px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────
   GLASS CARD  (Material Design 3 tonal surface)
───────────────────────────────────────────────────────────── */
.glass-card {
  --mx: 50%;
  --my: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 26px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color .3s, box-shadow .3s, transform .3s, background .3s;
  position: relative;
  overflow: hidden;
}

.glass-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at var(--mx) var(--my), rgba(120,204,109,.07) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}

.glass-card:hover {
  border-color: var(--border-h);
  box-shadow: 0 0 0 1px var(--border-h), 0 8px 40px var(--glow);
  transform: translateY(-3px);
  background: rgba(255,255,255,0.055);
}

.glass-card:hover::after {
  opacity: 1;
}

/* ─────────────────────────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s cubic-bezier(.22, 1, .36, 1), transform .65s cubic-bezier(.22, 1, .36, 1);
}
.reveal.visible          { opacity: 1; transform: translateY(0); }
.reveal-delay-1          { transition-delay: .10s; }
.reveal-delay-2          { transition-delay: .20s; }
.reveal-delay-3          { transition-delay: .30s; }

/* ─────────────────────────────────────────────────────────────
   NAV
───────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 20px 0;
  transition: background .3s, border-color .3s, padding .3s;
}

.nav.scrolled {
  background: rgba(6,9,15,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
  white-space: nowrap;
}
.nav-logo span { color: var(--teal); }

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

.nav-link {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: var(--surface);
}
.nav-link.active { color: var(--teal); }

.nav-cta {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 9px 20px;
  white-space: nowrap;
  transition: border-color .2s, box-shadow .2s, color .2s;
}
.nav-cta:hover {
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: 0 0 16px var(--glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-2);
  border-radius: 1px;
  transition: all .3s;
}

/* ─────────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
  padding: 100px 0 80px;
}

/* Animated blobs */
.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}

.blob-1 {
  width: 640px; height: 640px;
  background: radial-gradient(circle at center, rgba(80,163,162,.45) 0%, transparent 70%);
  top: -200px; left: -160px;
  animation: blob1 14s ease-in-out infinite;
}
.blob-2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle at center, rgba(120,204,109,.35) 0%, transparent 70%);
  bottom: -160px; right: -120px;
  animation: blob2 18s ease-in-out infinite;
}
.blob-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle at center, rgba(61,143,160,.30) 0%, transparent 70%);
  top: 35%; left: 55%;
  transform: translate(-50%, -50%);
  animation: blob3 11s ease-in-out infinite;
}

@keyframes blob1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(48px,36px) scale(1.08); }
}
@keyframes blob2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-36px,-44px) scale(1.06); }
}
@keyframes blob3 {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  33%      { transform: translate(-44%,-56%) scale(.94); }
  66%      { transform: translate(-56%,-44%) scale(1.06); }
}

/* Dot grid */
.grid-overlay {
  --gx: 50%;
  --gy: 50%;
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: radial-gradient(circle 280px at var(--gx) var(--gy), black 0%, transparent 100%);
  mask-image: radial-gradient(circle 280px at var(--gx) var(--gy), black 0%, transparent 100%);
  transition: --gx .05s, --gy .05s;
}

/* Hero content */
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 64px;
  justify-content: space-between;
  width: 100%;
}

.hero-content {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.hero-photo {
  flex-shrink: 0;
  width: 500px;
  aspect-ratio: 1/1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    linear-gradient(135deg, #50a3a2, #78cc6d, #3d8fa0, #50a3a2) border-box;
  position: relative;
  box-shadow:
    0 0 0 6px rgba(80,163,162,.10),
    0 0 60px rgba(80,163,162,.30),
    0 0 120px rgba(80,163,162,.12);
  animation: photoGlow 5s ease-in-out infinite;
}

@keyframes photoGlow {
  0%,100% {
    box-shadow:
      0 0 0 6px rgba(80,163,162,.10),
      0 0 60px rgba(80,163,162,.30),
      0 0 120px rgba(80,163,162,.12);
  }
  50% {
    box-shadow:
      0 0 0 8px rgba(80,163,162,.18),
      0 0 80px rgba(80,163,162,.46),
      0 0 160px rgba(120,204,109,.18);
  }
}

.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(6,9,15,.45) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(80,163,162,.12);
  border: 1px solid rgba(80,163,162,.3);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 32px;
}

.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(120,204,109,.5);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(120,204,109,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(120,204,109,0); }
  100% { box-shadow: 0 0 0 0 rgba(120,204,109,0); }
}

.hero-title {
  font-size: clamp(3.6rem, 9vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.04em;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #6ec6c5, #90dd87, #5fbfbe, #78cc6d);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 6s linear infinite;
}

@keyframes gradShift {
  0%,100% { background-position: 0% center; }
  50%      { background-position: 100% center; }
}

.hero-tagline {
  font-size: clamp(.95rem, 2.2vw, 1.15rem);
  font-weight: 500;
  color: var(--text-2);
  line-height: 1.9;
  margin-bottom: 10px;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  color: var(--text-3);
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 24px var(--glow-strong);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 36px var(--glow-strong);
  color: #fff;
}

.social-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--surface);
  color: var(--text-2);
  font-size: .82rem;
  font-weight: 500;
  transition: border-color .2s, color .2s, background .2s;
}
.social-pill:hover {
  border-color: var(--border-h);
  color: var(--text);
  background: var(--surface-h);
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-3);
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .4; transform: scaleY(1); }
  50%      { opacity: 1;  transform: scaleY(1.2); }
}

/* ─────────────────────────────────────────────────────────────
   ABOUT
───────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
}

.about-main { display: flex; flex-direction: column; justify-content: space-between; }

.about-bio {
  color: var(--text-2);
  font-size: 1rem;
  margin-bottom: 16px;
}
.about-bio:last-of-type { margin-bottom: 28px; }

.stats-row {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.stat-num span { font-size: 1.4rem; }
.stat-label { font-size: .78rem; font-weight: 500; color: var(--text-3); }

.about-side { display: flex; flex-direction: column; gap: 16px; }

/* ─────────────────────────────────────────────────────────────
   BAR LIST
───────────────────────────────────────────────────────────── */
.bar-list { display: flex; flex-direction: column; gap: 14px; }

.bar-list li {
  display: grid;
  grid-template-columns: 74px 1fr 52px;
  align-items: center;
  gap: 12px;
}

.bar-label {
  font-size: .84rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.bar-track {
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  width: 0;                              /* JS animates to data-width% */
  background: var(--grad);
  border-radius: 3px;
  transition: width .9s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}

.bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  animation: barShimmer 2.2s 1s ease-out infinite;
}

@keyframes barShimmer {
  0%   { transform: translateX(0); }
  100% { transform: translateX(500%); }
}

.bar-pct {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-3);
  text-align: right;
}

/* ─────────────────────────────────────────────────────────────
   TAG LIST
───────────────────────────────────────────────────────────── */
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; }

.tag-list li {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 5px 13px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-2);
  transition: border-color .2s, color .2s, background .2s;
}
.tag-list li:hover {
  border-color: rgba(80,163,162,.5);
  color: var(--teal);
  background: rgba(80,163,162,.07);
}

/* ─────────────────────────────────────────────────────────────
   TIMELINE
───────────────────────────────────────────────────────────── */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 17px; top: 28px; bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), var(--green), rgba(120,204,109,0));
}

.timeline-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: flex-start;
}

.tl-line-col {
  display: flex;
  justify-content: center;
  padding-top: 22px;
}

.tl-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--grad);
  border: 2px solid var(--bg);
  box-shadow: 0 0 12px var(--glow-strong);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.tl-dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid var(--teal);
  opacity: 0;
  animation: dotPulse 3s ease-out infinite;
}

@keyframes dotPulse {
  0%   { transform: scale(1); opacity: .55; }
  100% { transform: scale(2.6); opacity: 0; }
}

.tl-card { width: 100%; }

.tl-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.tl-logo-chip {
  background: rgba(255,255,255,0.93);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  display: flex;
  align-items: center;
}
.tl-logo-chip img {
  height: 26px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}


.tl-role {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.tl-company {
  font-size: .84rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 12px;
}

.tl-card p {
  font-size: .9rem;
  color: var(--text-2);
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   SKILLS
───────────────────────────────────────────────────────────── */
.skills-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
}

.skills-tags { display: flex; flex-direction: column; gap: 16px; }

.skills-bars .bar-list li { grid-template-columns: 82px 1fr 44px; }

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

.edu-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.edu-chip {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 11px;
  border-radius: 100px;
  margin-bottom: 14px;
  width: fit-content;
}

.edu-chip--past {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text-3);
}

.edu-chip--active {
  background: rgba(120,204,109,.12);
  border: 1px solid rgba(120,204,109,.35);
  color: var(--green);
}

.edu-card img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  background: rgba(255,255,255,0.92);
  border-radius: 6px;
  padding: 5px 10px;
  align-self: flex-start;
}

.edu-degree {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 6px;
}

.edu-school {
  font-size: .8rem;
  color: var(--text-3);
  font-weight: 500;
}

/* ─────────────────────────────────────────────────────────────
   WORKS
───────────────────────────────────────────────────────────── */
.works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.work-card:hover {
  border-color: var(--border-h);
  box-shadow: 0 0 0 1px var(--border-h), 0 12px 48px var(--glow);
  transform: translateY(-3px);
}

.work-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.work-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.work-card:hover .work-img-wrap img { transform: scale(1.04); }

.work-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,9,15,.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity .3s;
}
.work-card:hover .work-overlay { opacity: 1; }

.work-overlay-inner { padding: 20px; }
.work-overlay-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.work-overlay-sub {
  font-size: .8rem;
  color: var(--text-2);
}

.work-meta {
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.work-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
}
.work-sub {
  font-size: .78rem;
  color: var(--text-3);
}

/* ─────────────────────────────────────────────────────────────
   BACKGROUND CANVAS
───────────────────────────────────────────────────────────── */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* Ensure everything sits above the canvas */
header, main, footer { position: relative; z-index: 1; }
.nav { z-index: 200; }

/* ─────────────────────────────────────────────────────────────
   SERVICES
───────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-icon {
  width: 54px; height: 54px;
  border-radius: var(--radius-md);
  background: rgba(80,163,162,.12);
  border: 1px solid rgba(80,163,162,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
  transition: background .3s, border-color .3s;
}
.service-card:hover .service-icon {
  background: rgba(80,163,162,.20);
  border-color: rgba(80,163,162,.45);
}

.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.service-desc {
  font-size: .88rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-top: auto;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}
.service-tags li {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 12px;
  font-size: .75rem;
  font-weight: 500;
  color: var(--text-2);
  transition: border-color .2s, color .2s;
}
.service-tags li:hover {
  border-color: rgba(80,163,162,.5);
  color: var(--teal);
}

.services-cta {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.btn-services-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 40px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 28px var(--glow-strong);
  transition: transform .2s, box-shadow .2s;
}
.btn-services-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 40px var(--glow-strong);
  color: #fff;
}

/* ─────────────────────────────────────────────────────────────
   PRICING
───────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
  align-items: start;
}

.pricing-card {
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .3s, box-shadow .3s;
}
.pricing-card:hover { transform: translateY(-3px); }

.pricing-card--featured {
  background:
    linear-gradient(135deg, rgba(80,163,162,.22) 0%, rgba(120,204,109,.18) 100%),
    var(--surface);
  border: 1px solid rgba(80,163,162,.4);
  box-shadow: 0 0 48px rgba(80,163,162,.15), 0 0 80px rgba(80,163,162,.06);
  position: relative;
  overflow: hidden;
  animation: featuredPulse 4s ease-in-out infinite;
}

@keyframes featuredPulse {
  0%,100% { box-shadow: 0 0 48px rgba(80,163,162,.15), 0 0 80px rgba(80,163,162,.06); }
  50%      { box-shadow: 0 0 64px rgba(80,163,162,.28), 0 0 120px rgba(80,163,162,.1); }
}

.pricing-card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -20%, rgba(80,163,162,.15) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-featured-badge {
  display: inline-block;
  background: var(--grad);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  width: fit-content;
}

.pricing-tier {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
}
.pricing-card--featured .pricing-tier { color: rgba(120,204,109,.8); }

.pricing-rate {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.pricing-rate--sm { font-size: 1.5rem; }
.pricing-unit {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-3);
}

.pricing-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  color: var(--text-2);
}

.perk-dot {
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad);
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 700;
  background: var(--surface-h);
  border: 1px solid var(--border);
  color: var(--text);
  transition: border-color .2s, color .2s, background .2s, box-shadow .2s;
}
.pricing-cta:hover {
  border-color: var(--border-h);
  color: var(--teal);
  box-shadow: 0 0 16px var(--glow);
}
.pricing-cta--featured {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 20px var(--glow-strong);
}
.pricing-cta--featured:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px var(--glow-strong);
  color: #fff;
  border-color: transparent;
}

.pricing-note {
  font-size: .8rem;
  color: var(--text-3);
  text-align: center;
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */
.footer {
  position: relative;
  background: rgba(0,0,0,.4);
  border-top: 1px solid var(--border);
  padding: 52px 0 44px;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 1px;
  background: var(--grad);
  box-shadow: 0 0 60px 8px rgba(80,163,162,.25);
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
}
.footer-logo span { color: var(--teal); }
.footer-brand p { font-size: .8rem; color: var(--text-3); margin: 0; }

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.footer-links a {
  font-size: .84rem;
  font-weight: 500;
  color: var(--text-3);
  transition: color .2s;
}
.footer-links a:hover { color: var(--teal); }

.footer-copy {
  font-size: .8rem;
  color: var(--text-3);
  text-align: right;
  margin: 0;
}
.footer-copy a { color: var(--teal); font-weight: 600; }
.footer-copy a:hover { color: var(--green); }

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .about-grid    { grid-template-columns: 1fr; }
  .about-side    { display: grid; grid-template-columns: 1fr 1fr; }
  .skills-layout { grid-template-columns: 1fr; }
  .edu-grid      { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr 1fr; }
  .footer-inner  { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .footer-copy   { text-align: left; grid-column: 1 / -1; }

  .hero-inner {
    flex-direction: column-reverse;
    gap: 36px;
    text-align: center;
  }
  .hero-content { text-align: center; }
  .hero-actions { align-items: center; }
  .social-pills { justify-content: center; }
  .hero-photo {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 16/9;
  }
}

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

  h2 { margin-bottom: 32px; }

  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(6,9,15,.97); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 16px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-cta   { display: none; }
  .nav-toggle { display: flex; }
  .nav-link  { padding: 12px 16px; border-radius: var(--radius-sm); }

  .hero-title { letter-spacing: -.03em; }

  .stats-row { gap: 20px; }

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

  .timeline::before { left: 13px; }
  .timeline-item { grid-template-columns: 36px 1fr; }
  .tl-dot { width: 12px; height: 12px; }

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

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

  .footer-inner { grid-template-columns: 1fr; }
  .footer-copy  { text-align: left; }
}

@media (max-width: 400px) {
  .bar-list li { grid-template-columns: 62px 1fr 40px; }
}
