:root {
  --deep: #020d18;
  --abyss: #050f1c;
  --mid: #0a2236;
  --surface: #0d3d5e;
  --light: #1a6b8a;
  --teal: #1fb8c4;
  --foam: #a8e6ef;
  --white: #e8f4f8;
  --gold: #c8a96e;
  --coral: #e85d6e;
  --sand: #d4b896;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--abyss);
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  overflow-x: hidden;
  cursor: none;
}

/* Custom Cursor */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--teal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.1s ease;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(31, 184, 196, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition:
    transform 0.15s ease,
    width 0.2s,
    height 0.2s;
}

/* ─── OCEAN CANVAS ─── */
#ocean-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ─── BUBBLES ─── */
.bubble-container {
  height: 100vh;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 6;
  overflow: visible;
}
.bubble {
  position: absolute;
  bottom: -60px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.15), rgba(168, 230, 239, 0.03));
  border: 1px solid rgba(168, 230, 239, 0.1);
  animation: float-up linear infinite;
}
@keyframes float-up {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-110vh) translateX(var(--drift)) scale(var(--scale-end));
    opacity: 0;
  }
}

/* ─── FLOATING EMOJI CREATURES ─── */
.sea-creature-lane {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  z-index: 5;
  pointer-events: none;
  background: var(--deep);
}

.sea-creature {
  position: absolute;
  font-size: 1.8rem;
  pointer-events: none;
  z-index: 5;
    background: transparent;
  animation: swim linear infinite;
  opacity: 0.55;
  filter: drop-shadow(0 0 8px rgba(31, 184, 196, 0.5));
  top: 50%;
  transform-origin: center;
}
@keyframes swim {
  0% {
    transform: translateX(-120px) translateY(0) scaleX(-1); /* facing right */
  }
  49% {
    transform: translateX(calc(100vw + 120px)) translateY(0) scaleX(-1);
  }
  50% {
    transform: translateX(calc(100vw + 120px)) translateY(0) scaleX(1); /* flip, facing left */
  }
  99% {
    transform: translateX(-120px) translateY(0) scaleX(1);
  }
  100% {
    transform: translateX(-120px) translateY(0) scaleX(-1);
  }
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(2, 13, 24, 0.6);
  border-bottom: 1px solid rgba(31, 184, 196, 0.15);
  transition: all 0.3s;
}
nav.scrolled {
  padding: 0.8rem 3rem;
  background: rgba(2, 13, 24, 0.9);
}
.nav-logo {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--teal);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: rgba(232, 244, 248, 0.7);
  text-decoration: none;
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal);
  transition: width 0.3s;
}
.nav-links a:hover {
  color: var(--teal);
}
.nav-links a:hover::after {
  width: 100%;
}

/* ─── HERO ─── */
#hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  overflow: hidden;
}
.hero-bg-scroll {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(2, 13, 24, 0.3) 0%, rgba(2, 13, 24, 0.1) 40%, rgba(2, 13, 24, 0.7) 100%);
  z-index: 1;
}
.hero-parallax-imgs {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-parallax-imgs img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 3.2s ease;
}
.hero-parallax-imgs img.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 2rem;
}
.hero-eyebrow {
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-up 1s 0.3s forwards;
}
.hero-name {
  font-family: "Syne", sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 0 0 80px rgba(31, 184, 196, 0.3);
  opacity: 0;
  animation: fade-up 1s 0.5s forwards;
}
.hero-name span {
  color: var(--teal);
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  color: var(--foam);
  margin-top: 1rem;
  opacity: 0;
  animation: fade-up 1s 0.7s forwards;
}
.hero-padi {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  background: rgba(31, 184, 196, 0.1);
  border: 1px solid rgba(31, 184, 196, 0.3);
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-family: "Space Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--teal);
  opacity: 0;
  animation: fade-up 1s 0.9s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(168, 230, 239, 0.6);
  font-family: "Space Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fade-up 1s 1.4s forwards;
  opacity: 0;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: pulse-line 2s ease infinite;
}
@keyframes pulse-line {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── SECTIONS ─── */
section {
  position: relative;
  z-index: 5;
  padding: 8rem 0;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
}
.section-label {
  font-family: "Space Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  margin-bottom: 3rem;
}
.section-title em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  color: var(--teal);
}
.divider {
  width: 60px;
  height: 1px;
  background: var(--teal);
  margin-bottom: 3rem;
  position: relative;
}
.divider::after {
  content: "";
  position: absolute;
  right: -8px;
  top: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

/* ─── ABOUT ─── */
#about {
  background: linear-gradient(180deg, var(--abyss) 0%, var(--deep) 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
}
.about-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(31, 184, 196, 0.2);
  border-radius: 2px;
  z-index: 0;
}
.about-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 184, 196, 0.15), transparent);
  border-radius: 2px;
  z-index: 2;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: 2px;
  position: relative;
  z-index: 1;
  filter: saturate(0.9) contrast(1.05);
}
.padi-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--deep);
  border: 1px solid rgba(31, 184, 196, 0.4);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  font-family: "Space Mono", monospace;
  text-align: center;
}
.padi-badge span:first-child {
  font-size: 0.5rem;
  color: var(--teal);
  letter-spacing: 0.1em;
}
.padi-badge span:last-child {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}
.about-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(232, 244, 248, 0.8);
  margin-bottom: 1.2rem;
}
.about-text p strong {
  color: var(--teal);
  font-weight: 600;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.stat-box {
  background: rgba(31, 184, 196, 0.05);
  border: 1px solid rgba(31, 184, 196, 0.15);
  padding: 1.2rem;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s;
}
.stat-box:hover {
  background: rgba(31, 184, 196, 0.1);
  border-color: rgba(31, 184, 196, 0.4);
  transform: translateY(-4px);
}
.stat-number {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
}
.stat-label {
  font-family: "Space Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: rgba(168, 230, 239, 0.6);
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* ─── PHOTO STRIP ─── */
.photo-strip {
  position: relative;
  z-index: 5;
  overflow: hidden;
  height: 340px;
}
.photo-strip-track {
  display: flex;
  gap: 1rem;
  height: 100%;
  animation: slide-strip 40s linear infinite;
  width: max-content;
}
.photo-strip-track:hover {
  animation-play-state: paused;
}
.photo-strip-track img {
  height: 100%;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
  filter: saturate(0.8);
  transition:
    filter 0.4s,
    transform 0.4s;
  cursor: pointer;
}
.photo-strip-track img:hover {
  filter: saturate(1.2) contrast(1.05);
  transform: scale(1.03);
  z-index: 2;
}
@keyframes slide-strip {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.photo-strip::before,
.photo-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.photo-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--deep), transparent);
}
.photo-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--deep), transparent);
}

/* ─── EXPERIENCE ─── */
#experience {
  background: linear-gradient(180deg, var(--deep) 0%, var(--mid) 50%, var(--deep) 100%);
}
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--teal), transparent);
}
.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease;
}
.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}
.timeline-dot {
  position: absolute;
  left: -2.4rem;
  top: 0.3rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--deep);
  box-shadow: 0 0 12px var(--teal);
}
.timeline-period {
  font-family: "Space Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.timeline-role {
  font-family: "Syne", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.timeline-company {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--sand);
  margin-bottom: 1rem;
}
.timeline-bullets {
  list-style: none;
}
.timeline-bullets li {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(232, 244, 248, 0.75);
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.4rem;
}
.timeline-bullets li::before {
  content: "~";
  position: absolute;
  left: 0;
  color: var(--teal);
}

/* ─── SKILLS ─── */
#skills {
  background: linear-gradient(180deg, var(--deep) 0%, var(--abyss) 100%);
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.skill-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(31, 184, 196, 0.12);
  border-radius: 6px;
  padding: 1.8rem;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}
.skill-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.skill-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--teal), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.skill-card:hover {
  background: rgba(31, 184, 196, 0.05);
  border-color: rgba(31, 184, 196, 0.3);
}
.skill-card:hover::before {
  transform: scaleX(1);
}
.skill-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  display: block;
}
.skill-name {
  font-family: "Syne", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.skill-desc {
  font-size: 0.9rem;
  color: rgba(168, 230, 239, 0.6);
  line-height: 1.6;
}

/* ─── CERTIFICATIONS ─── */
#certifications {
  background: var(--abyss);
}
.cert-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(31, 184, 196, 0.04);
  border: 1px solid rgba(31, 184, 196, 0.12);
  padding: 1.2rem 1.5rem;
  border-radius: 4px;
  transition: all 0.3s;
  opacity: 0;
  transform: translateX(-15px);
}
.cert-item.visible {
  opacity: 1;
  transform: translateX(0);
}
.cert-item:hover {
  background: rgba(31, 184, 196, 0.08);
  border-color: var(--teal);
  transform: translateX(6px);
}
.cert-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.cert-text {
  font-size: 0.95rem;
  color: var(--foam);
}

/* ─── EDUCATION ─── */
#education {
  background: linear-gradient(180deg, var(--abyss) 0%, var(--deep) 100%);
}
.edu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.edu-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(31, 184, 196, 0.12);
  padding: 2rem;
  border-radius: 4px;
  transition: all 0.4s;
  opacity: 0;
  transform: translateY(20px);
}
.edu-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.edu-card:hover {
  border-color: rgba(31, 184, 196, 0.3);
  background: rgba(31, 184, 196, 0.04);
}
.edu-period {
  font-family: "Space Mono", monospace;
  font-size: 0.6rem;
  color: var(--teal);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.edu-degree {
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.edu-school {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--sand);
}

/* ─── CONTACT ─── */
#contact {
  background: linear-gradient(180deg, var(--deep) 0%, var(--abyss) 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(232, 244, 248, 0.75);
  margin-bottom: 2rem;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--foam);
  text-decoration: none;
  font-size: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(31, 184, 196, 0.04);
  border: 1px solid rgba(31, 184, 196, 0.15);
  border-radius: 4px;
  transition: all 0.3s;
}
.contact-link:hover {
  background: rgba(31, 184, 196, 0.1);
  border-color: var(--teal);
  transform: translateX(6px);
  color: var(--teal);
}
.contact-link i {
  width: 20px;
  text-align: center;
  color: var(--teal);
  font-size: 1.1rem;
}
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 1.5rem;
  transition: all 0.3s;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.2);
}
.wa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.4);
}
.contact-img-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.contact-img-mosaic img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  filter: saturate(0.7);
  transition:
    filter 0.4s,
    transform 0.4s;
}
.contact-img-mosaic img:first-child {
  grid-column: span 2;
  aspect-ratio: 16/7;
}
.contact-img-mosaic img:hover {
  filter: saturate(1.1);
  transform: scale(1.02);
}

/* ─── FOOTER ─── */
footer {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 3rem;
  border-top: 1px solid rgba(31, 184, 196, 0.1);
  font-family: "Space Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: rgba(168, 230, 239, 0.4);
  text-transform: uppercase;
  background: var(--abyss);
}
footer span {
  color: var(--teal);
}

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2, 13, 24, 0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border: 1px solid rgba(31, 184, 196, 0.3);
}

/* ─── GLOWING DEPTH LAYERS ─── */
.depth-glow {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(80px);
  animation: glow-drift 20s ease-in-out infinite;
}
@keyframes glow-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(5vw, -5vh) scale(1.1);
  }
  66% {
    transform: translate(-5vw, 5vh) scale(0.9);
  }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .container {
    padding: 0 1.5rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .skills-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cert-list {
    grid-template-columns: 1fr;
  }
  .edu-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── LANGUAGE PILLS ─── */
.lang-pills {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.lang-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(31, 184, 196, 0.07);
  border: 1px solid rgba(31, 184, 196, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
  color: var(--foam);
}
.lang-pill .level {
  background: var(--teal);
  color: var(--deep);
  padding: 0.1rem 0.5rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 0.6rem;
}
