@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

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

:root {
  --purple: #fbbf24;
  --indigo: #f59e0b;
  --blue: #fbbf24;
  --emerald: #10b981;
  --bg: #08090a;
  --bg2: #0d0d0f;
  --bg3: #111113;
  --surface: #141416;
  --surface2: #1a1a1e;
  --border: rgba(251, 191, 36, 0.15);
  --border2: rgba(255, 255, 255, 0.07);
  --text: #f5f0e8;
  --text2: #a3a09a;
  --text3: #6b6860;
  --glow: rgba(251, 191, 36, 0.45);
  /* Same gold ramp as .gradient-text — used for marquee tech icons */
  --marquee-gradient: linear-gradient(135deg, #fde68a, #fcd34d, #fbbf24);;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body,
#site-root {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

#hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* VIDEO AS BACKGROUND */
#hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* THIS makes it fill perfectly */
  z-index: 0;
  pointer-events: none;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 22, 24, 0.85);
  z-index: 1;

  background:
    radial-gradient(circle at 35% 50%, rgba(21, 22, 24, 0.5), transparent 60%),
    linear-gradient(to right, rgba(8, 9, 10, 0.9), rgba(8, 9, 10, 0.6), rgba(8, 9, 10, 0.95));
}

/* PARTICLES */
#particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
}

/* ─── CURSOR ─────────────────────────────────── */
#cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  top: 0;
  left: 0;
}

#cursor-dot {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--purple);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
  top: 0;
  left: 0;
  box-shadow: 0 0 12px var(--glow);
}

#cursor-dot.expanded {
  width: 40px;
  height: 40px;
  background: rgba(251, 191, 36, 0.3);
  border: 1px solid var(--purple);
}

/* ─── SCROLL REVEAL ───────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* ─── NAVBAR ──────────────────────────────────── */
@keyframes navBarEnter {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes navAccentShimmer {
  0%,
  100% {
    opacity: 0.45;
    transform: scaleX(0.92);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes navLinkFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navLogoIn {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes navCtaShimmer {
  0%,
  70% {
    transform: translateX(-120%) skewX(-12deg);
  }

  85% {
    transform: translateX(220%) skewX(-12deg);
  }

  100% {
    transform: translateX(220%) skewX(-12deg);
  }
}

@keyframes navMobileSheet {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* NAVBAR MUST BE ABOVE EVERYTHING */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(16px) saturate(1.35);
  -webkit-backdrop-filter: blur(16px) saturate(1.35);

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);

  transform-origin: top center;
  animation: navBarEnter 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
  transition:
    background 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.55s ease,
    backdrop-filter 0.55s ease;
}

#navbar::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(251, 191, 36, 0.15) 20%,
    rgba(252, 211, 77, 0.35) 50%,
    rgba(251, 191, 36, 0.15) 80%,
    transparent 100%
  );
  opacity: 0.8;
  pointer-events: none;
  animation: navAccentShimmer 6s ease-in-out infinite;
}

#navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(251, 191, 36, 0.25) 50%,
    transparent
  );
  pointer-events: none;
}

/* inner spacing */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  max-width: 1440px;
  margin: 0 auto;
}

#navbar.scrolled {
  background: rgba(5, 6, 10, 0.88);
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
  border-bottom-color: rgba(251, 191, 36, 0.12);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(251, 191, 36, 0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  animation: navLogoIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.logo:hover {
  transform: translateY(-1px) scale(1.02);
  filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.25));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

@media (min-width: 769px) {
  .nav-links > li {
    animation: navLinkFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }

  .nav-links > li:nth-child(1) {
    animation-delay: 0.38s;
  }

  .nav-links > li:nth-child(2) {
    animation-delay: 0.43s;
  }

  .nav-links > li:nth-child(3) {
    animation-delay: 0.48s;
  }

  .nav-links > li:nth-child(4) {
    animation-delay: 0.53s;
  }

  .nav-links > li:nth-child(5) {
    animation-delay: 0.58s;
  }

  .nav-links > li:nth-child(6) {
    animation-delay: 0.63s;
  }

  .nav-links > li:nth-child(7) {
    animation-delay: 0.68s;
  }

  .nav-links > li:nth-child(8) {
    animation-delay: 0.73s;
  }

  .nav-links > li:nth-child(9) {
    animation-delay: 0.78s;
  }
}

.nav-link {
  text-decoration: none;
  color: var(--text2);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition:
    color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    letter-spacing 0.35s ease,
    text-shadow 0.35s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.45);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
  color: var(--text);
  letter-spacing: 0.06em;
  text-shadow: 0 0 24px rgba(251, 191, 36, 0.12);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 45%, #d97706 100%);
  color: #0a0a0b;
  padding: 0.55rem 1.35rem;
  border-radius: 9px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    filter 0.35s ease;
  box-shadow:
    0 0 28px rgba(251, 191, 36, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 42%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 58%,
    transparent 100%
  );
  transform: translateX(-120%) skewX(-14deg);
  animation: navCtaShimmer 5s ease-in-out infinite;
  pointer-events: none;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 0 38px rgba(251, 191, 36, 0.55),
    0 10px 28px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  filter: brightness(1.05);
}

.nav-cta:active {
  transform: translateY(0) scale(0.98);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease,
    background 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  #navbar,
  #navbar::before {
    animation: none;
  }

  #navbar {
    transform: none;
    opacity: 1;
  }

  .logo {
    animation: none;
  }

  .nav-links > li {
    animation: none !important;
    opacity: 1;
  }

  .nav-cta::before {
    animation: none;
  }

  .nav-links.open {
    animation: none;
  }

  .nav-link {
    transition: color 0.2s ease;
  }

  .nav-link:hover {
    letter-spacing: 0.02em;
    text-shadow: none;
  }
}

/* ─── HERO ────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 80px;
  overflow: hidden;
}

#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fde68a;
  margin-bottom: 1.5rem;
  transition-delay: 0.1s;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  animation: pulse 2s infinite;
}

@keyframes pulse {

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

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  transition-delay: 0.2s;
}

.gradient-text {
  background: linear-gradient(135deg, #fde68a, #fcd34d, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.typed-text::after {
  content: '|';
  -webkit-text-fill-color: #fcd34d;
  animation: blink 1s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text2);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
  transition-delay: 0.3s;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  transition-delay: 0.4s;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple);
  color: white;
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 30px rgba(251, 191, 36, 0.35);
}

.btn-primary:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(251, 191, 36, 0.5);
}

.btn-primary svg {
  transition: transform 0.2s;
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--text2);
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border2);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  transition-delay: 0.5s;
}

.stat {
  text-align: left;
}

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fcd34d, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--purple);
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text3);
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border2);
}

/* ─── CODE WINDOW ─────────────────────────────── */
.hero-code-block {
  position: relative;
  z-index: 1;
  transition-delay: 0.3s;
}

.code-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(251, 191, 36, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {

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

  50% {
    transform: translateY(-12px);
  }
}

.code-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

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

.dot.red {
  background: #ff5f57;
}

.dot.yellow {
  background: #febc2e;
}

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

.code-file {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text3);
  margin-left: 8px;
}

.code-body {
  padding: 1.5rem 1.5rem 1.5rem;
  overflow: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  line-height: 1.7;
}

code {
  color: var(--text);
}

.kw {
  color: #c084fc;
}

.mod {
  color: #93c5fd;
}

.fn {
  color: #86efac;
}

.at {
  color: #f9a8d4;
}

.op {
  color: #94a3b8;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text3);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ─── MARQUEE ─────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  padding: 1.2rem 0;
  background: var(--bg2);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 2.5rem;
}

.marquee-item--wide {
  min-width: 4.5rem;
  max-width: 7rem;
}

/* SVG from --mi is the mask; fill is theme gradient (matches hero gradient-text) */
.marquee-icon {
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--marquee-gradient);
  -webkit-mask: var(--mi) center / contain no-repeat;
  mask: var(--mi) center / contain no-repeat;
}

.marquee-item--wide .marquee-icon {
  width: 6.5rem;
  height: 1.75rem;
}

.marquee-item:hover .marquee-icon {
  filter: brightness(1.12);
}

.marquee-track .sep {
  color: var(--purple);
  font-size: 0.75rem;
  align-self: center;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 56rem;
    white-space: normal;
    row-gap: 1rem;
  }
}

/* ─── LAYOUT HELPERS ──────────────────────────── */
.section {
  padding: 7rem 2rem;
  position: relative;
}

.section-dark {
  background: var(--bg2);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}


.section-label-about-hawkstech {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.65rem 1.15rem;
  background: rgba(251, 191, 36, 0.1);
  border-radius: 200px;
  border: 1px solid rgba(251, 191, 36, 0.2);
  text-align: center;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 1rem;
  background: rgba(251, 191, 36, 0.1);
  border-radius: 200px;
  border: 1px solid rgba(251, 191, 36, 0.2);
  margin-bottom: 20px;
  padding: 20px 30px;
  
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text2);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-body {
  font-size: 1rem;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ─── ABOUT ───────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hexagon-grid {
  position: relative;
  width: 380px;
  height: 380px;
  margin: 0 auto;
}

.hex {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 115px;
  background: var(--surface);
  border: 1px solid var(--border);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text2);
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  cursor: none;
}

.hex:hover {
  background: rgba(251, 191, 36, 0.2);
  color: var(--text);
  border-color: var(--purple);
  box-shadow: 0 0 24px rgba(251, 191, 36, 0.12);
}

.hex span {
  font-family: 'JetBrains Mono', monospace;
}

.hex-1 {
  top: 50px;
  left: 140px;
  animation: hexFloat 5.5s ease-in-out infinite;
  color: #fcd34d;
}

.hex-2 {
  top: 150px;
  left: 30px;
  animation: hexFloat 6.2s ease-in-out infinite 0.6s;
  background: rgba(251, 191, 36, 0.15);
  color: #fde68a;
}

.hex-3 {
  top: 150px;
  left: 250px;
  animation: hexFloat 5.8s ease-in-out infinite 1.1s;
  background: rgba(245, 158, 11, 0.15);
  color: #fcd34d;
}

.hex-4 {
  top: 250px;
  left: 30px;
  animation: hexFloat 6.5s ease-in-out infinite 0.4s;
  color: #fcd34d;
}

.hex-5 {
  top: 250px;
  left: 250px;
  animation: hexFloat 5.4s ease-in-out infinite 0.9s;
  color: #fcd34d;
}

.hex-6 {
  top: 350px;
  left: 140px;
  animation: hexFloat 6s ease-in-out infinite 1.3s;
  background: rgba(16, 185, 129, 0.1);
  color: #fde68a;
}

.hex-7 {
  top: 0;
  left: 30px;
  animation: hexFloat 6.3s ease-in-out infinite 0.7s;
  color: #fcd34d;
}
@keyframes hexFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-8px) rotate(1deg); }
  66% { transform: translateY(4px) rotate(-1deg); }
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.pill {
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.2);
  color: #fde68a;
  transition: background 0.2s;
}

.pill:hover {
  background: rgba(251, 191, 36, 0.18);
}

/* ─── SERVICES ────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s, background 0.3s;
  transition-delay: var(--delay, 0s);
  cursor: none;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(251, 191, 36, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.5);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fcd34d;
  margin-bottom: 1.2rem;
  transition: background 0.3s;
}

.service-card:hover .service-icon {
  background: rgba(251, 191, 36, 0.2);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.service-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text3);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border2);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
}

/* ─── TEAM ────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(30px);
  cursor: none;
}

.team-card.revealed {
  opacity: 1;
  transform: none;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(251, 191, 36, 0.3);
  box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.4);
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  position: relative;
}

.team-avatar::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

.team-card:hover .team-avatar::after {
  opacity: 1;
}

.team-name {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.75rem;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-spec {
  font-size: 0.72rem;
  color: var(--text3);
  font-family: 'JetBrains Mono', monospace;
}

/* ─── STACK ───────────────────────────────────── */
.stack-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stack-cat {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 1.5rem;
  transition-delay: var(--delay, 0s);
}

.stack-cat-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text2);
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border2);
}

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

.stack-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stack-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem;
  border-radius: 8px;
  transition: background 0.2s;
  cursor: none;
}

.stack-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.stack-badge {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fde68a;
  font-family: 'JetBrains Mono', monospace;
  flex-shrink: 0;
}

.stack-item span {
  font-size: 0.88rem;
  color: var(--text2);
  font-weight: 500;
}

/* ─── PROCESS ─────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.process-step {
  transition-delay: var(--delay, 0s);
}

.process-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  margin: 0 2rem;
  align-self: start;
  margin-top: 24px;
  transform: rotate(90deg);
  flex-shrink: 0;
}

.step-num {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(251, 191, 36, 0.2);
  font-family: 'JetBrains Mono', monospace;
  line-height: 1;
  margin-bottom: 1rem;
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.65;
}

/* ─── CONTACT (copy left · form right) ────────── */
.section-contact {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.container-contact {
  max-width: 1140px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.contact-copy {
  text-align: left;
  padding-right: clamp(0, 3vw, 2rem);
}

.contact-copy .section-label {
  margin-bottom: 1rem;
}

.contact-heading {
  font-size: clamp(1.9rem, 3.2vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 14ch;
  margin-bottom: 1.1rem;
}

.contact-lead {
  max-width: 32rem;
  margin-bottom: 0;
  color: var(--text2);
  line-height: 1.75;
}

.contact-info {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--text2);
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-item svg {
  color: var(--purple);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-form-panel {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: clamp(1.85rem, 4vw, 2.85rem);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(251, 191, 36, 0.06);
}

.contact-form-panel .form-input {
  background: rgba(255, 255, 255, 0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.project-type-options{
  color: black;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text2);
  letter-spacing: 0.02em;
}

.form-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  cursor: none;
}

.form-input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.12);
}

.form-input::placeholder {
  color: var(--text3);
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23fbbf24' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

select.form-input option {
  background: var(--bg3);
  color: var(--text);
}

/* Custom select — themed dropdown (native option menus can't be styled consistently) */
.custom-select {
  position: relative;
}

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

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
  cursor: none;
}

.custom-select-label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text3);
}

.custom-select.has-value .custom-select-label {
  color: var(--text);
}

.custom-select-icon {
  flex-shrink: 0;
  color: var(--purple);
  transition: transform 0.22s ease;
}

.custom-select.is-open .custom-select-icon {
  transform: rotate(180deg);
}

.custom-select.is-open .custom-select-trigger {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.12);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  right: 0;
  z-index: 30;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: linear-gradient(180deg, #141416 0%, #111113 100%);
  border: 1px solid rgba(251, 191, 36, 0.22);
  border-radius: 12px;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(251, 191, 36, 0.06);
  max-height: 16rem;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.custom-select-menu[hidden] {
  display: none;
}

.custom-select-option {
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.35;
  color: var(--text2);
  cursor: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.custom-select-option:hover,
.custom-select-option.is-focused {
  background: rgba(251, 191, 36, 0.1);
  color: var(--text);
}

.custom-select-option.is-selected {
  background: rgba(251, 191, 36, 0.16);
  color: #fde68a;
  font-weight: 600;
}

.custom-select-option.is-placeholder {
  color: var(--text3);
}

.custom-select-menu::-webkit-scrollbar {
  width: 6px;
}

.custom-select-menu::-webkit-scrollbar-thumb {
  background: rgba(251, 191, 36, 0.25);
  border-radius: 999px;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-optional {
  font-weight: 500;
  color: var(--text3);
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-row-files {
  align-items: end;
}

.form-file {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-file:focus-within {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.12);
}

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

.form-file-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(251, 191, 36, 0.28);
  background: rgba(251, 191, 36, 0.1);
  color: #fde68a;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: none;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.form-file-btn:hover {
  background: rgba(251, 191, 36, 0.18);
  border-color: rgba(251, 191, 36, 0.45);
}

.form-file-name {
  font-size: 0.8rem;
  color: var(--text3);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.form-file-name.has-file {
  color: var(--text2);
}

.form-file-hint {
  margin: -0.35rem 0 0;
  font-size: 0.75rem;
  color: var(--text3);
}

.form-error {
  display: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.form-error.visible {
  display: block;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.form-success {
  display: none;
  align-items: center;
  gap: 0.6rem;
  color: var(--emerald);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 8px;
}

.form-success.visible {
  display: flex;
}

/* ─── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border2);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border2);
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text3);
  line-height: 1.65;
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--text3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text3);
}

/* ─── MAGNETIC BUTTON ─────────────────────────── */
.magnetic {
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), background 0.2s, box-shadow 0.3s;
}

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .about-scroll-track {
    min-height: 0;
  }

  .about-scroll-sticky {
    position: static;
    top: auto;
    padding-bottom: 0;
  }

  .about-scroll-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    min-height: auto;
  }

  .about-left-col {
    position: static;
    width: 100%;
    max-width: 640px;
    transform: none;
    will-change: auto;
  }

  .about-visual-col {
    position: static;
    transform: none;
    display: flex;
    justify-content: center;
  }

  .about-text-col {
    position: static;
    width: 100%;
    max-width: 600px;
    transform: none;
    text-align: center;
  }

  .about-text-col .section-title,
  .about-text-col .section-body,
  .about-text-col .about-pills {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .section-label-about-hawkstech {
    opacity: 1;
    transform: none;
  }

  .about-scroll-hint {
    display: none;
  }

  /* Optional: keep or remove */
  .hexagon-grid {
    transform: none;
    display: none;
    /* you already hide it — fine */
  }
}

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

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

.process-steps {
  grid-template-columns: 1fr;
  gap: 2rem;
}

.process-line {
  display: none;
}

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(8, 9, 13, 0.98) 0%, rgba(5, 6, 10, 0.99) 100%);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation: navMobileSheet 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hamburger {
    display: flex;
  }

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

  .stack-categories {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .contact-copy {
    padding-right: 0;
  }

  .contact-heading {
    max-width: none;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  body,
  #site-root {
    cursor: auto;
  }

  #cursor-glow,
  #cursor-dot {
    display: none;
  }
}

/* ─── GLOW ORBS ───────────────────────────────── */
#hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: orbPulse 8s ease-in-out infinite;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: orbPulse 10s ease-in-out infinite 3s;
}

@keyframes orbPulse {

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

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* ─── LOGO IMG ─────────────────────────────────── */
.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-logo {
  display: block;
  width: fit-content;
}

/* ─── TEAM CARD UPDATES ────────────────────────── */
.team-card {
  cursor: pointer;
  display: block;
}

.team-role {
  color: var(--purple);
}

.team-card-cta {
  font-size: 0.72rem;
  color: rgba(251, 191, 36, 0.5);
  margin-top: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.team-card:hover .team-card-cta {
  color: var(--purple);
}

/* ─── PORTFOLIO ────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}

.portfolio-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
}

.portfolio-tag {
  display: inline-block;
  background: rgba(251, 191, 36, 0.12);
  color: var(--purple);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.portfolio-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.portfolio-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.portfolio-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.portfolio-stat {
  color: var(--purple);
  font-weight: 600;
}

/* ─── CAREERS ──────────────────────────────────── */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.career-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.3s, transform 0.3s;
}

.career-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
}

.career-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}

.career-role {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.career-badge {
  background: rgba(251, 191, 36, 0.12);
  color: var(--purple);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 20px;
  padding: 0.2rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.career-card p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.career-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}

.career-comp {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.career-apply {
  background: var(--purple);
  color: #0a0a0b;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}

.career-apply:hover {
  opacity: 0.85;
}

/* ─── INSIGHTS ─────────────────────────────────── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.insight-card {
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
}

.insight-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
}

.insight-tag {
  display: inline-block;
  background: rgba(251, 191, 36, 0.12);
  color: var(--purple);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.insight-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.insight-card p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.insight-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(251, 191, 36, 0.5);
}

/* ─── TEAM MEMBER PAGE ─────────────────────────── */
.tm-page {
  background: var(--bg);
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font);
}

.tm-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}

.tm-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tm-back-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.tm-back-btn:hover {
  color: var(--purple);
}

.tm-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.tm-hero {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tm-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.tm-avatar {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 900;
  color: #0a0a0b;
  position: relative;
  z-index: 1;
}

.tm-avatar-ring {
  position: absolute;
  inset: -6px;
  border-radius: 30px;
  border: 1px solid;
  z-index: 0;
}

.tm-hero-text {
  flex: 1;
  min-width: 200px;
}

.tm-role-badge {
  display: inline-block;
  border: 1px solid;
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.tm-name {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.tm-title {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.tm-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.tm-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.tm-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.tm-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.tm-social-btn:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.tm-contact-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}

.tm-contact-btn:hover {
  opacity: 0.85;
}

.tm-body {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.tm-section {}

.tm-section-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251, 191, 36, 0.5);
  margin-bottom: 1rem;
}

.tm-bio {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.tm-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tm-skill {
  padding: 0.35rem 0.85rem;
  border: 1px solid;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
}

.tm-achievements {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tm-achievement {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

.tm-achievement-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.4rem;
}

.tm-projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.tm-project {
  border: 1px solid;
  border-radius: 14px;
  padding: 1.5rem;
  background: var(--surface);
}

.tm-project-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.tm-project-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tm-project-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.tm-project-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.tm-project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tm-tech-tag {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.2rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}

.tm-education {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tm-edu-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tm-edu-text {
  font-size: 0.95rem;
  color: var(--muted);
}

.tm-others {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.tm-others-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.tm-other-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
  display: block;
}

.tm-other-card:hover {
  border-color: var(--purple);
  transform: translateY(-3px);
}

.tm-other-avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: #0a0a0b;
  margin: 0 auto 0.75rem;
}

.tm-other-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.tm-other-role {
  font-size: 0.75rem;
  font-weight: 600;
}

.tm-not-found {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
}

.tm-back {
  color: var(--purple);
  text-decoration: none;
  font-weight: 600;
}

/* ─── RESPONSIVE ADDITIONS ─────────────────────── */
@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

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

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

  .tm-projects {
    grid-template-columns: 1fr;
  }

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

  .tm-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .tm-meta {
    justify-content: center;
  }

  .tm-social {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .tm-name {
    font-size: 1.7rem;
  }

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

/* ─── GLOBAL LINK COLOR RESET ──────────────────── */
a {
  color: inherit;
  text-decoration: none;
}

/* ─── FOOTER SOCIAL ICONS ──────────────────────── */
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted, #a3a09a);
  transition: border-color 0.2s, color 0.2s;
}

.footer-social-icon:hover {
  border-color: var(--purple);
  color: var(--purple);
}

/* ─── TEAM CARD LINK FIX ───────────────────────── */
a.team-card {
  color: var(--text);
}

/* ─── HERO BADGE TYPED TEXT ────────────────────── */
.hero-badge .typed-text {
  color: #fde68a;
  -webkit-text-fill-color: #fde68a;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.hero-badge .typed-text::after {
  content: '|';
  -webkit-text-fill-color: #fbbf24;
  color: #fbbf24;
  animation: blink 1s infinite;
}

/* ─── CAREER FOOTER ALIGN ──────────────────────── */
.career-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}