/* ============================================================
   NYONGKER YL — style.css
   Infrastructure Tech Architect & Digital Builder
   nyongker-yl.tech · Jayapura, Papua, Indonesia
   ============================================================ */

/* ── LOADER ──────────────────────────────────────────────────── */
#nyl-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #080c14;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
#nyl-loader.nyl-out {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}
#nyl-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201, 168, 76, 0.14) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0;
  animation: nylFadeIn 0.5s 0.15s forwards;
}
#nyl-loader::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #c9a84c;
  transform: scaleX(0);
  transform-origin: left;
  animation: nylBarReveal 0.7s 0.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes nylFadeIn {
  to {
    opacity: 1;
  }
}
@keyframes nylBarReveal {
  to {
    transform: scaleX(1);
  }
}
.nyl-arc {
  position: absolute;
  border: 1px solid rgba(201, 168, 76, 0.06);
  border-radius: 50%;
  opacity: 0;
  animation: nylFadeIn 1s 0.8s forwards;
}
.nyl-arc-1 {
  top: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
}
.nyl-arc-2 {
  top: -130px;
  left: -130px;
  width: 400px;
  height: 400px;
  border-color: rgba(201, 168, 76, 0.03);
}
.nyl-arc-3 {
  bottom: -70px;
  right: -70px;
  width: 240px;
  height: 240px;
  border-color: rgba(56, 189, 248, 0.06);
}
.nyl-cyan-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #38bdf8;
  transform: scaleX(0);
  transform-origin: right;
  animation: nylBarReveal 0.7s 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.nyl-mark {
  position: relative;
  z-index: 2;
  margin-bottom: 32px;
}
#nyl-route {
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
  animation: nylDraw 0.9s 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes nylDraw {
  to {
    stroke-dashoffset: 0;
  }
}
#nyl-pin-a {
  opacity: 0;
  transform-origin: 80px 160px;
  transform: scale(0.2);
  animation: nylPop 0.5s 1.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
#nyl-pin-b {
  opacity: 0;
  transform-origin: 180px 60px;
  transform: scale(0.2);
  animation: nylPop 0.5s 1.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes nylPop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.nyl-ch-a {
  opacity: 0;
  animation: nylFadeIn 0.4s 1.8s forwards;
}
.nyl-ch-b {
  opacity: 0;
  animation: nylFadeIn 0.4s 2s forwards;
}
#nyl-halo-a {
  opacity: 0;
  transform-origin: 80px 160px;
  animation: nylHalo 2.2s 1.9s ease-in-out infinite;
}
#nyl-halo-b {
  opacity: 0;
  transform-origin: 180px 60px;
  animation: nylHalo 2.2s 2.1s ease-in-out infinite;
}
@keyframes nylHalo {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  25% {
    opacity: 0.16;
    transform: scale(1);
  }
  65% {
    opacity: 0.06;
    transform: scale(1.25);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}
.nyl-wordmark {
  position: relative;
  z-index: 2;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  animation: nylSlideUp 0.7s 2.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes nylSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nyl-wm-name {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: clamp(18px, 4vw, 28px);
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #fafcff;
  line-height: 1;
}
.nyl-wm-gold {
  color: #c9a84c;
}
.nyl-wm-divider {
  width: 0;
  height: 1px;
  background: #c9a84c;
  margin: 10px auto;
  opacity: 0.4;
  animation: nylDividerExpand 0.6s 2.6s forwards;
}
@keyframes nylDividerExpand {
  to {
    width: 160px;
  }
}
.nyl-wm-sub {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 9px;
  letter-spacing: 0.38em;
  color: #8899b4;
  text-transform: uppercase;
  display: block;
}
.nyl-tagline {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 8px;
  letter-spacing: 0.32em;
  color: rgba(136, 153, 180, 0.5);
  text-transform: uppercase;
  margin-top: 10px;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: nylFadeIn 0.5s 3s forwards;
}
.nyl-progress {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  z-index: 2;
}
.nyl-progress-track {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}
.nyl-progress-fill {
  height: 100%;
  width: 0%;
  background: #c9a84c;
  border-radius: 2px;
  animation: nylProgress 2.8s 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes nylProgress {
  to {
    width: 100%;
  }
}
.nyl-progress-label {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
  color: rgba(201, 168, 76, 0.6);
  text-align: right;
  margin-top: 5px;
  opacity: 0;
  animation: nylFadeIn 0.3s 0.6s forwards;
}

/* ── ROOT ────────────────────────────────────────────────────── */
:root {
  --ink: #080c14;
  --ink-2: #12192a;
  --ink-3: #1d2840;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dim: rgba(201, 168, 76, 0.12);
  --silver: #8899b4;
  --white: #fafcff;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.07);
  --cyan: #38bdf8;
  --cyan-dim: rgba(56, 189, 248, 0.1);
  --purple: #818cf8;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background-color: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    transform 0.1s ease,
    width 0.3s,
    height 0.3s,
    background 0.3s;
}
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    transform 0.15s ease,
    width 0.3s,
    height 0.3s,
    opacity 0.3s;
}
h1,
h2,
h3,
h4,
.serif {
  font-family: "Cormorant Garamond", Georgia, serif;
}
.mono {
  font-family: "DM Mono", monospace;
}
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--ink);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 1000;
}

/* ── NAVBAR ──────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.4s,
    border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(8, 12, 20, 0.92);
  backdrop-filter: blur(24px);
  border-bottom-color: var(--glass-border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
/* ── Inline SVG logo mark ── */
.nav-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(8, 12, 20, 0.9);
  border: 1px solid rgba(201, 168, 76, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.nav-logo:hover .nav-logo-mark {
  border-color: rgba(201, 168, 76, 0.5);
  background: rgba(201, 168, 76, 0.06);
}
.nav-logo-mark svg {
  width: 22px;
  height: 22px;
}
.nav-wordmark {
  font-family: "DM Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.nav-wordmark .dot-yl {
  color: var(--gold);
}
.nav-wordmark .sub-tag {
  display: block;
  font-size: 7.5px;
  letter-spacing: 0.3em;
  color: var(--silver);
  margin-top: 2px;
  opacity: 0.7;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s;
  background: transparent;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 5vw 8vh;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201, 168, 76, 0.06) 0%, transparent 60%), radial-gradient(ellipse 60% 80% at 20% 80%, rgba(29, 40, 64, 0.8) 0%, transparent 70%),
    linear-gradient(160deg, #08101e 0%, #080c14 50%, #0a0f1a 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 60% 50%, black 0%, transparent 70%);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 2rem;
}
.hero-eyebrow .line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow p {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-eyebrow .dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-gold 2s infinite;
}
@keyframes pulse-gold {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}
.hero h1 {
  font-size: clamp(3.5rem, 9vw, 10rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--white);
  position: relative;
  z-index: 2;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}
.hero h1 .outline-text {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  color: transparent;
}
.hero-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--glass-border);
  position: relative;
  z-index: 2;
  align-items: end;
}
.hero-sub p {
  color: var(--silver);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 460px;
}
.hero-sub p strong {
  color: var(--white);
  font-weight: 500;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.hero-dual-badge {
  display: flex;
  gap: 10px;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 3px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(8px);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-badge.civil {
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.3);
}
.hero-badge.dev {
  color: var(--cyan);
  border-color: rgba(56, 189, 248, 0.3);
}
.hero-badge i {
  font-size: 10px;
}
.scroll-indicator {
  position: absolute;
  right: 3rem;
  bottom: 10vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.scroll-indicator span {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scroll-down 2s infinite ease-in-out;
}
@keyframes scroll-down {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ── REVEAL ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

/* ── SECTION LABEL ───────────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.5rem;
}
.section-label .line {
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section-label span {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-label.blue .line {
  background: var(--cyan);
}
.section-label.blue span {
  color: var(--cyan);
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 168, 76, 0.3);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: transparent;
  color: var(--silver);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--glass-border);
  border-radius: 3px;
  transition: all 0.3s;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

/* ── STATS ───────────────────────────────────────────────────── */
.stats-band {
  padding: 5rem 5vw;
  border-bottom: 1px solid var(--glass-border);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--glass-border);
}
.stat-item {
  padding: 3rem 2rem;
  background: var(--ink);
  text-align: center;
  transition: background 0.3s;
}
.stat-item:hover {
  background: var(--glass);
}
.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
.stat-number span {
  color: var(--gold);
  font-size: 1.8rem;
  vertical-align: top;
  margin-top: 0.8rem;
  display: inline-block;
}
.stat-label {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
}

/* ── ABOUT ───────────────────────────────────────────────────── */
.about {
  padding: 12rem 5vw;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 8rem;
  align-items: center;
  border-top: 1px solid var(--glass-border);
  position: relative;
}
.about::before {
  content: "PROFILE";
  position: absolute;
  left: 5vw;
  top: 5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
}
.about-img-frame {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 480px;
}
.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  filter: grayscale(15%) contrast(1.05);
  transition: filter 0.5s;
}
.about-img-frame:hover img {
  filter: grayscale(0%) contrast(1);
}
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(8, 12, 20, 0.8) 100%);
  border-radius: 2px;
}
.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--ink-2);
  border: 1px solid var(--glass-border);
  padding: 1.2rem 1.8rem;
  border-radius: 3px;
  backdrop-filter: blur(12px);
}
.about-img-badge .badge-label {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.about-img-badge .badge-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  display: block;
}
.about-content h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.about-content h2 em {
  color: var(--gold-light);
  font-style: italic;
}
.about-quote {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
}
.about-quote p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  line-height: 1.6;
}
.about-text {
  color: var(--silver);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2.5rem;
}
.about-text strong {
  color: var(--white);
  font-weight: 500;
}
.dual-pills {
  display: flex;
  gap: 12px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.pill {
  padding: 8px 16px;
  border-radius: 3px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid;
}
.pill.gold {
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.4);
  background: var(--gold-dim);
}
.pill.blue {
  color: var(--cyan);
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(56, 189, 248, 0.07);
}
.tech-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  overflow: hidden;
}
.tech-item {
  padding: 1.2rem;
  background: var(--glass);
  text-align: center;
  transition: background 0.3s;
}
.tech-item:hover {
  background: var(--gold-dim);
}
.tech-item .tech-name {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 2px;
}
.tech-item .tech-version {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}
.tech-item .tech-version.blue {
  color: var(--cyan);
}

/* ── EXPERTISE ───────────────────────────────────────────────── */
.expertise {
  padding: 10rem 5vw;
  background: var(--ink-2);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}
.expertise-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5rem;
  gap: 2rem;
}
.expertise-header h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.expertise-header h2 em {
  color: var(--gold-light);
  font-style: italic;
}
.expertise-header p {
  color: var(--silver);
  font-size: 0.875rem;
  max-width: 300px;
  line-height: 1.7;
  font-weight: 300;
  text-align: right;
}
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--glass-border);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  overflow: hidden;
}
.expertise-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  background: var(--ink-2);
  transition: background 0.4s;
  min-height: 280px;
}
.expertise-card:hover {
  background: var(--glass);
}
.expertise-card-img {
  position: relative;
  overflow: hidden;
}
.expertise-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) contrast(1.1);
  transition:
    transform 0.8s ease,
    filter 0.5s;
}
.expertise-card:hover .expertise-card-img img {
  transform: scale(1.08);
  filter: grayscale(10%) contrast(1.05);
}
.expertise-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--ink-2) 100%);
}
.expertise-card:hover .expertise-card-img::after {
  background: linear-gradient(90deg, transparent 60%, var(--glass) 100%);
}
.expertise-card-body {
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.expertise-card-body::before {
  content: attr(data-number);
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
}
.expertise-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 3px;
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}
.expertise-icon.blue-icon {
  border-color: var(--cyan);
  color: var(--cyan);
}
.expertise-card:hover .expertise-icon {
  background: var(--gold);
  color: var(--ink);
}
.expertise-card:hover .expertise-icon.blue-icon {
  background: var(--cyan);
  color: var(--ink);
}
.expertise-card-body h3 {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: var(--white);
}
.expertise-card-body h3 em {
  color: var(--gold-light);
}
.expertise-card-body h3 em.blue {
  color: var(--cyan);
}
.expertise-card-body p {
  color: var(--silver);
  font-size: 0.875rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 420px;
}

/* ── DIVIDER ─────────────────────────────────────────────────── */
.section-divider {
  padding: 4rem 5vw;
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 3rem;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: var(--glass-border);
}
.divider-label {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(136, 153, 180, 0.4);
  white-space: nowrap;
}
.divider-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--glass-border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 12px;
  flex-shrink: 0;
}

/* ── DEV SECTION ─────────────────────────────────────────────── */
.dev-section {
  padding: 10rem 5vw;
  border-top: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}
.dev-section::before {
  content: "CODE";
  position: absolute;
  right: 3vw;
  top: 5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 700;
  color: rgba(56, 189, 248, 0.025);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
}
.dev-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5rem;
  gap: 2rem;
}
.dev-header h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.dev-header h2 em {
  color: var(--cyan);
  font-style: italic;
}
.dev-header p {
  color: var(--silver);
  font-size: 0.875rem;
  max-width: 300px;
  line-height: 1.7;
  font-weight: 300;
  text-align: right;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--glass-border);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  overflow: hidden;
}
.project-card {
  background: var(--ink-2);
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
  text-decoration: none;
}
.project-card:hover {
  background: rgba(56, 189, 248, 0.04);
}
.project-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) contrast(1.1);
  transition:
    transform 0.7s ease,
    filter 0.5s;
}
.project-card:hover .project-card-img img {
  transform: scale(1.08);
  filter: grayscale(10%) contrast(1);
}
.project-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--ink-2) 100%);
}
.project-card-body {
  padding: 2rem 2.5rem 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.project-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.project-tag {
  padding: 4px 10px;
  border-radius: 2px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid;
}
.project-tag.web {
  color: var(--cyan);
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(56, 189, 248, 0.08);
}
.project-tag.mobile {
  color: var(--purple);
  border-color: rgba(129, 140, 248, 0.3);
  background: rgba(129, 140, 248, 0.08);
}
.project-tag.api {
  color: #34d399;
  border-color: rgba(52, 211, 153, 0.3);
  background: rgba(52, 211, 153, 0.08);
}
.project-tag.mgmt {
  color: var(--silver);
  border-color: var(--glass-border);
  background: var(--glass);
}
.project-card-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.project-card:hover .project-card-body h3 {
  color: var(--cyan);
}
.project-card-body h3 .arrow {
  font-size: 12px;
  opacity: 0;
  transition:
    opacity 0.3s,
    transform 0.3s;
  transform: translateX(-5px);
}
.project-card:hover .project-card-body h3 .arrow {
  opacity: 1;
  transform: translateX(0);
}
.project-card-body p {
  color: var(--silver);
  font-size: 0.85rem;
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
}
.dev-stack-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.dev-stack-tag {
  padding: 8px 18px;
  border-radius: 3px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--silver);
  transition: all 0.3s;
}
.dev-stack-tag:hover {
  border-color: rgba(56, 189, 248, 0.4);
  color: var(--cyan);
  background: var(--cyan-dim);
}

/* ── PROJECT LINKS ───────────────────────────────────────────── */
.project-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
}
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--cyan);
  text-decoration: none;
  transition: opacity 0.2s;
  opacity: 0.7;
}
.project-link:hover {
  opacity: 1;
}
.project-link i {
  font-size: 8px;
}

/* ── HONAI KINGDOM ───────────────────────────────────────────── */
.honai-teaser {
  margin-top: 4rem;
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(8, 12, 20, 0.9) 0%, rgba(18, 25, 42, 0.8) 100%);
  position: relative;
}
.honai-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(56, 189, 248, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.honai-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  align-items: stretch;
}
.honai-left {
  padding: 3.5rem 4rem;
  border-right: 1px solid rgba(56, 189, 248, 0.1);
}
.honai-in-dev-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 3px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.5rem;
}
.honai-in-dev-badge i {
  animation: pulse-gold 1.5s infinite;
}
.honai-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.honai-title em {
  color: var(--cyan);
  font-style: italic;
}
.honai-desc {
  color: var(--silver);
  font-size: 0.9rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 500px;
  margin-bottom: 2rem;
}
.honai-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.honai-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 3px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
}
.honai-tag i {
  font-size: 9px;
  color: var(--cyan);
}
.honai-right {
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.honai-video-wrap {
  width: 100%;
}
.honai-video-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.9rem;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver);
}
.honai-vid-dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-gold 1.8s infinite;
}
.honai-video-frame {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.2);
  background: #000;
  aspect-ratio: 16/9;
}
.honai-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.honai-vid-glow {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  box-shadow:
    inset 0 0 40px rgba(56, 189, 248, 0.08),
    0 0 40px rgba(56, 189, 248, 0.08);
  pointer-events: none;
  z-index: 3;
}
.honai-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 12, 20, 0.55);
  backdrop-filter: blur(2px);
  transition:
    background 0.4s,
    backdrop-filter 0.4s;
  z-index: 2;
}
.honai-video-overlay.playing {
  background: transparent;
  backdrop-filter: none;
}
.honai-video-overlay.playing .honai-play-btn {
  opacity: 0;
  transform: scale(0.85);
}
.honai-video-overlay:hover .honai-play-btn {
  opacity: 1 !important;
  transform: scale(1) !important;
}
.honai-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(56, 189, 248, 0.7);
  background: rgba(8, 12, 20, 0.7);
  backdrop-filter: blur(8px);
  color: var(--cyan);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  padding-left: 4px;
}
.honai-play-btn:hover {
  background: var(--cyan);
  color: var(--ink);
  border-color: var(--cyan);
  transform: scale(1.1) !important;
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.4);
}
.honai-play-btn .fa-pause {
  padding-left: 0;
}
.honai-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.1);
  border-radius: 3px;
  overflow: hidden;
}
.honai-stat {
  padding: 0.9rem;
  text-align: center;
  background: rgba(8, 12, 20, 0.5);
}
.honai-stat-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}
.honai-stat-lbl {
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
}

/* ── CLIENTS BAND ────────────────────────────────────────────── */
.clients-band {
  padding: 5rem 5vw;
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
}
.clients-band-label {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(136, 153, 180, 0.5);
  text-align: center;
  margin-bottom: 3rem;
}
.clients-scroll-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.clients-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scroll-clients 35s linear infinite;
}
.clients-track:hover {
  animation-play-state: paused;
}
@keyframes scroll-clients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.client-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 3px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  white-space: nowrap;
  transition:
    border-color 0.3s,
    background 0.3s;
  flex-shrink: 0;
}
.client-chip:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: var(--gold-dim);
}
.client-chip img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: grayscale(60%) brightness(0.8);
  transition: all 0.3s;
}
.client-chip:hover img {
  filter: grayscale(0%) brightness(1);
}

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact {
  padding: 10rem 5vw 0;
  position: relative;
  overflow: hidden;
}
.contact-bg-text {
  position: absolute;
  bottom: 8rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Cormorant Garamond", serif;
  font-size: 22vw;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.018);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  margin-bottom: 5rem;
}
.contact h2 {
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}
.contact h2 em {
  color: var(--gold-light);
  font-style: italic;
}
.contact-desc {
  color: var(--silver);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 3rem;
  max-width: 400px;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: center;
}
.contact-link-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--glass-border);
}
.contact-link-item:last-child {
  border-bottom: none;
}
.contact-link-label {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-link-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: -0.01em;
}
.contact-link-value:hover {
  color: var(--gold-light);
}
.social-row {
  display: flex;
  gap: 12px;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  border-radius: 3px;
  color: var(--silver);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}
.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}
.footer-bar {
  padding: 2rem 5vw;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.footer-bar p {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}
.footer-gold-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.25;
}

/* ── MOBILE FLOAT PILL ───────────────────────────────────────── */
.mfb-pill-wrap {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.2rem;
  transform: translateY(120px);
  width: auto;
  max-width: 300px;
  z-index: 900;
  transition:
    transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.4s ease;
  opacity: 0;
}
.mfb-pill-wrap.visible {
  transform: translateY(0);
  opacity: 1;
}
.mfb-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 22, 38, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 9999px;
  padding: 6px 6px 6px 16px;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 4px 30px rgba(201, 168, 76, 0.1);
}
.mfb-pill-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mfb-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}
.mfb-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: block;
  overflow: hidden;
  flex-shrink: 0;
}
.mfb-status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 9px;
  height: 9px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid #0f1626;
  animation: pulse-green 2.5s infinite;
}
@keyframes pulse-green {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  }
  60% {
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
  }
}
.mfb-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.mfb-label {
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.mfb-name {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.mfb-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  background: var(--gold);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  transition:
    background 0.25s,
    transform 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.mfb-btn i {
  font-size: 15px;
}
.mfb-btn:hover {
  background: var(--gold-light);
}
.mfb-btn:active {
  transform: scale(0.95);
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .about {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 7rem 5vw;
  }
  .about::before {
    display: none;
  }
  .about-img-frame {
    max-width: 100%;
    aspect-ratio: 4/3;
  }
  .hero-sub {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-actions {
    justify-content: flex-start;
  }
  .expertise-card {
    grid-template-columns: 1fr;
  }
  .expertise-card-img {
    height: 200px;
  }
  .expertise-card-img::after {
    background: linear-gradient(to bottom, transparent 40%, var(--ink-2) 100%) !important;
  }
  .stats-band {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  nav .nav-links {
    display: none;
  }
  .expertise-header,
  .dev-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .expertise-header p,
  .dev-header p {
    text-align: left;
  }
  .scroll-indicator {
    display: none;
  }
}
@media (max-width: 900px) {
  .honai-inner {
    grid-template-columns: 1fr;
  }
  .honai-left {
    border-right: none;
    border-bottom: 1px solid rgba(56, 189, 248, 0.1);
    padding: 2.5rem;
  }
  .honai-right {
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }
  .mfb-pill-wrap {
    display: block;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 3rem;
  }
  .tech-stack {
    grid-template-columns: 1fr 1fr;
  }
  .about-img-badge {
    right: -0.5rem;
  }
  .footer-bar {
    flex-direction: column;
    text-align: center;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
