:root {
  --font-inter: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --teal-50: #f0fdfa;
  --teal-200: #99f6e4;
  --teal-600: #0d9488;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --scroll-pad: 80px;
}

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

* {
  scroll-behavior: smooth;
}

html {
  scroll-padding-top: var(--scroll-pad);
}

body {
  margin: 0;
  font-family: var(--font-inter);
  color: var(--gray-900);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: 100%;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.3s, box-shadow 0.3s;
  background: #fff;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.08);
}

.site-header .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
}

.brand {
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.brand:hover {
  color: var(--emerald-600);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-weight: 500;
  color: var(--gray-700);
}

.nav-desktop a:hover {
  color: var(--emerald-600);
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
}

.nav-toggle {
  position: relative;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--gray-700);
}

.nav-toggle:hover {
  color: var(--emerald-600);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--gray-200);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  font-weight: 500;
  color: var(--gray-700);
}

.nav-mobile a:hover {
  color: var(--emerald-600);
}

@media (min-width: 768px) {
  .nav-mobile {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
  overflow: hidden;
  background: linear-gradient(to bottom right, var(--emerald-50), #fff, var(--teal-50));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(16, 185, 129, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(to right, var(--emerald-100), var(--teal-50));
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--emerald-700);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.08);
}

.hero h1 {
  margin: 0 0 2rem;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero .greeting {
  display: block;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.hero .name {
  display: block;
  background: linear-gradient(90deg, var(--emerald-600), var(--teal-600), var(--emerald-600));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 3s ease infinite;
  margin-bottom: 1rem;
}

.hero .role {
  display: block;
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--gray-800);
  margin-top: 1rem;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-desc {
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.hero-desc p {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 300;
  color: var(--gray-700);
}

.hero-desc .sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 500;
  color: var(--gray-500);
}

.feature-list {
  max-width: 48rem;
  margin: 0 auto 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.2);
  text-align: left;
}

.feature-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 1rem;
}

.feature-row:hover {
  background: rgba(236, 253, 245, 0.5);
}

.feature-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
}

.feature-icon.emerald {
  background: linear-gradient(to bottom right, var(--emerald-500), var(--teal-600));
}
.feature-icon.blue {
  background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}
.feature-icon.purple {
  background: linear-gradient(to bottom right, #a855f7, #ec4899);
}
.feature-icon.orange {
  background: linear-gradient(to bottom right, #f97316, #f59e0b);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: linear-gradient(to right, var(--emerald-600), var(--teal-600));
  color: #fff;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.12);
}

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.15);
}

.btn-outline {
  border: 2px solid var(--emerald-600);
  color: var(--emerald-700);
  background: transparent;
}

.btn-outline:hover {
  background: var(--emerald-600);
  color: #fff;
  transform: scale(1.03);
}

/* Sections common */
.section-title-wrap {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title-wrap h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--gray-900);
}

.section-title-wrap p {
  margin: 0;
  font-size: 1.25rem;
  color: var(--gray-600);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(to right, var(--emerald-100), var(--teal-50));
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--emerald-700);
}

/* AI section */
.section-ai {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: linear-gradient(to bottom, #fff, rgba(236, 253, 245, 0.4), rgba(240, 253, 250, 0.5));
}

.section-ai .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.35;
  pointer-events: none;
}

.section-ai .blob-a {
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(167, 243, 208, 0.5);
}

.section-ai .blob-b {
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: rgba(153, 246, 228, 0.45);
}

.grid-ai {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-ai {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-ai {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-ai {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  border: 2px solid var(--gray-100);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.06);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.card-ai:hover {
  border-color: var(--emerald-200);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.15);
  transform: translateY(-4px);
}

.card-ai-inner {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.card-ai-icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, var(--emerald-500), var(--teal-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}

.card-ai h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.card-ai p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Skills */
.section-skills {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--gray-50), #fff);
}

.grid-skills {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-skills {
    grid-template-columns: repeat(2, 1fr);
  }
}

.skill-category {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}

.skill-category:hover {
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.12);
  transform: translateY(-6px);
}

.skill-cat-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.skill-cat-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.35rem;
}

.skill-cat-icon.ai {
  background: linear-gradient(to bottom right, var(--emerald-500), var(--teal-600));
}
.skill-cat-icon.fe {
  background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}
.skill-cat-icon.be {
  background: linear-gradient(to bottom right, #22c55e, var(--emerald-500));
}
.skill-cat-icon.mo {
  background: linear-gradient(to bottom right, #a855f7, #ec4899);
}
.skill-cat-icon.do {
  background: linear-gradient(to bottom right, #f97316, #ef4444);
}

.skill-cat-head h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.skill-tag {
  padding: 0.5rem 1.25rem;
  border-radius: 0.75rem;
  border: 2px solid;
  font-weight: 600;
  font-size: 0.9rem;
}

.skill-tag.ai {
  background: var(--emerald-50);
  color: var(--emerald-700);
  border-color: var(--emerald-200);
}
.skill-tag.fe {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}
.skill-tag.be {
  background: #f0fdf4;
  color: #15803d;
  border-color: #bbf7d0;
}
.skill-tag.mo {
  background: #faf5ff;
  color: #7e22ce;
  border-color: #e9d5ff;
}
.skill-tag.do {
  background: #fff7ed;
  color: #c2410c;
  border-color: #fed7aa;
}

.skill-more {
  font-style: italic;
  color: rgba(4, 120, 87, 0.75);
  font-weight: 500;
  padding: 0.5rem 0.25rem;
}

/* Experience */
.section-exp {
  padding: 6rem 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.6rem;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--emerald-500), var(--teal-500), #06b6d4);
  border-radius: 4px;
}

.exp-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 1.5rem;
}

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

.exp-dot {
  position: absolute;
  left: -1.35rem;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  background: #fff;
  border: 4px solid var(--emerald-600);
  border-radius: 50%;
  box-shadow: 0 4px 6px rgb(0 0 0 / 0.1);
}

.exp-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.08);
  border-left: 4px solid var(--emerald-600);
  transition: transform 0.3s, box-shadow 0.3s;
}

.exp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.15);
}

.exp-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
}

.exp-card .position {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--emerald-600);
}

.exp-period {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--emerald-50);
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-600);
}

.exp-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.exp-list li::before {
  content: "▸";
  color: var(--emerald-600);
  font-weight: 700;
  flex-shrink: 0;
}

.exp-card h3 .exp-link {
  display: inline-flex;
  align-items: center;
  margin-left: 0.75rem;
  padding: 0.15rem 0.6rem;
  border-radius: 9999px;
  background: var(--emerald-50);
  border: 1px solid var(--emerald-200);
  color: var(--emerald-700);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  vertical-align: middle;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.exp-card h3 .exp-link:hover {
  background: var(--emerald-600);
  border-color: var(--emerald-600);
  color: #fff;
}

.skill-cat-sub {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-left: 0.4rem;
}

/* Featured Projects */
.section-featured {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #fff, var(--gray-50));
}

.grid-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .grid-featured {
    grid-template-columns: repeat(2, 1fr);
  }
}

.featured-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 1.25rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.06);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.12);
  border-color: var(--emerald-200);
}

.featured-head {
  padding: 2rem 2rem 1.25rem;
  background: linear-gradient(135deg, var(--emerald-50), var(--teal-50));
  border-bottom: 1px solid rgba(16, 185, 129, 0.15);
}

.featured-head-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.featured-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  background: #fff;
  color: var(--emerald-700);
  border: 1px solid var(--emerald-200);
  border-radius: 9999px;
}

.featured-status::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--emerald-500);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.featured-role {
  color: var(--gray-600);
  letter-spacing: 0.01em;
}

.featured-title {
  margin: 0 0 0.75rem;
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

.featured-lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
}

.featured-body {
  padding: 1.75rem 2rem 1.5rem;
  flex: 1;
}

.featured-subhead {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald-700);
}

.featured-list {
  margin: 0 0 1.5rem;
}

.featured-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--gray-700);
}

.featured-list li::before {
  content: "▸";
  color: var(--emerald-600);
  font-weight: 700;
  flex-shrink: 0;
}

.featured-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.featured-stack span {
  padding: 0.35rem 0.8rem;
  background: linear-gradient(to right, var(--emerald-50), var(--teal-50));
  color: var(--emerald-700);
  border: 1px solid var(--emerald-200);
  border-radius: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
}

.featured-footer {
  padding: 1.25rem 2rem 1.75rem;
  border-top: 1px solid var(--gray-100);
  background: #fff;
}

.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(to right, var(--emerald-600), var(--teal-600));
  color: #fff;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 12px -4px rgba(16, 185, 129, 0.4);
}

.featured-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px -6px rgba(16, 185, 129, 0.5);
}

.icon-featured-link {
  width: 1rem;
  height: 1rem;
}

/* Projects */
.section-projects {
  padding: 6rem 0;
  background: #fff;
}

.grid-projects {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-projects {
    grid-template-columns: repeat(2, 1fr);
  }
}

.project-card {
  border-radius: 1rem;
  border: 1px solid var(--gray-100);
  background: linear-gradient(to bottom right, #fff, var(--gray-50));
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.06);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.12);
}

.project-card .inner {
  padding: 2rem;
}

.project-num {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.75rem;
  background: var(--emerald-100);
  color: var(--emerald-700);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.project-card h3 {
  margin: 0 0 1rem;
  font-size: 1.375rem;
}

.project-card > .inner > p {
  margin: 0 0 1.5rem;
  color: var(--gray-600);
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tags span {
  padding: 0.5rem 1rem;
  background: linear-gradient(to right, var(--emerald-50), var(--teal-50));
  color: var(--emerald-700);
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--emerald-200);
}

/* Contact */
.section-contact {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--gray-50), #fff);
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: #fff;
  border-radius: 1rem;
  border: 2px solid var(--gray-100);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.contact-card:hover {
  border-color: var(--emerald-300);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.15);
  transform: translateY(-6px);
}

.contact-icon {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, var(--emerald-600), var(--teal-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}

.contact-card .label {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.contact-card .value {
  font-size: 0.875rem;
  color: var(--gray-600);
  word-break: break-all;
}

.contact-note {
  margin-top: 4rem;
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.08);
}

.contact-note p {
  margin: 0;
}

.contact-note .lead {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.contact-note .small {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Footer */
.site-footer {
  position: relative;
  padding: 3rem 0;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(to right, var(--gray-900), #064e3b, #134e4a);
}

.site-footer .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.25;
  pointer-events: none;
}

.site-footer .glow-a {
  top: 0;
  left: 25%;
  width: 16rem;
  height: 16rem;
  background: var(--emerald-500);
}

.site-footer .glow-b {
  bottom: 0;
  right: 25%;
  width: 16rem;
  height: 16rem;
  background: var(--teal-500);
}

.footer-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.footer-inner h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.footer-inner .subtitle {
  margin: 0 0 2rem;
  color: #d1d5db;
  font-size: 1.125rem;
}

.footer-inner .copy {
  margin: 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Lucide icons (sprite <use>) */
.lucide {
  flex-shrink: 0;
}

.icon-badge {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-badge-lg {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-feature {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-ai-card {
  width: 1.75rem;
  height: 1.75rem;
}

.icon-skill {
  width: 2rem;
  height: 2rem;
}

.icon-section-title {
  width: 2rem;
  height: 2rem;
  color: var(--emerald-600);
}

.icon-contact {
  width: 2rem;
  height: 2rem;
}

.icon-contact-card {
  width: 2rem;
  height: 2rem;
  color: #fff;
}

.icon-period {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--emerald-600);
}

@keyframes lucide-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.65;
  }
}

.animate-pulse-soft {
  animation: lucide-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-badge .lucide-accent {
  color: var(--emerald-600);
}

.section-badge .icon-section-badge {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--emerald-600);
}

.section-title-with-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-title-with-icon h2 {
  margin: 0;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon .lucide {
  color: #fff;
}

.card-ai-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-ai-icon .lucide {
  color: #fff;
}

.skill-cat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.skill-cat-icon .lucide {
  color: #fff;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon .lucide {
  color: #fff;
}

.btn-primary .lucide {
  color: #fff;
}

.nav-toggle .toggle-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle.is-open .icon-open {
  display: none;
}

.nav-toggle.is-open .icon-close {
  display: block;
}

.brand-logo {
  height: 33px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}

.brand:hover .brand-logo {
  opacity: 0.85;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.min-h-260px {
  min-height: 260px;
}