/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: #000;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: #FFD600; color: #000; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #1E1E1E; }
img { display: block; max-width: 100%; }
button { cursor: pointer; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px rgba(255,214,0,0.6); }
  50%       { box-shadow: 0 0 20px rgba(255,214,0,1); }
}
@keyframes float-card {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}
@keyframes map-pin-pulse {
  0% {
    transform: scale(0.78);
    opacity: 0.55;
  }
  70% {
    transform: scale(1.18);
    opacity: 0.05;
  }
  100% {
    transform: scale(1.28);
    opacity: 0;
  }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; }
.yellow { color: #FFD600; }
.accent-bar { width: 40px; height: 2px; background: #FFD600; }

.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #A0A0A0;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  font-size: clamp(30px, 3.5vw, 48px);
}

/* Section reveal */
.section-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms cubic-bezier(0.16,1,0.3,1), transform 700ms cubic-bezier(0.16,1,0.3,1);
}
.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero fade-in */
.hero-fade {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms cubic-bezier(0.16,1,0.3,1) var(--delay, 0ms),
    transform 700ms cubic-bezier(0.16,1,0.3,1) var(--delay, 0ms);
}
.hero-mounted .hero-fade {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse dot */
.pulse-dot {
  width: 6px; height: 6px;
  background: #FFD600;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

/* Float cards */
.float-1 { animation: float-card 4s ease-in-out infinite; }
.float-2 { animation: float-card 5s ease-in-out infinite 1s; }
.float-3 { animation: float-card 3.5s ease-in-out infinite 0.5s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 27px;
  display: inline-block;
  transition: all 150ms cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
}
.btn-primary {
  font-weight: 700;
  padding: 14px 28px;
  background: #FFD600;
  color: #000;
  border: none;
}
.btn-primary:hover {
  box-shadow: 0 0 32px rgba(255,214,0,0.4);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid #2A2A2A;
}
.btn-outline:hover {
  color: #FFD600;
  border-color: #FFD600;
  box-shadow: 0 0 20px rgba(255,214,0,0.1);
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: all 300ms cubic-bezier(0.16,1,0.3,1);
}
#site-header.scrolled {
  border-bottom-color: #1E1E1E;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(16px);
}
.header-logo {
  display: block;
  flex-shrink: 0;
}
.header-logo img {
  filter: invert(1);
  opacity: 0.9;
  object-fit: contain;
  width: 192px;
  height: 85px;
}
.header-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.header-nav a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A0A0A0;
  text-decoration: none;
  transition: color 150ms ease;
}
.header-nav a:hover { color: #FFD600; }
.header-cta {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  background: #FFD600;
  padding: 10px 22px;
  text-decoration: none;
  display: inline-block;
  transition: box-shadow 150ms ease, transform 150ms ease;
}
.header-cta:hover {
  box-shadow: 0 0 28px rgba(255,214,0,0.4);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid #1E1E1E;
  padding: 0;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 20px; height: 1px;
  background: #A0A0A0;
  transition: all 250ms ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Nav */
#mobile-nav {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #1E1E1E;
  flex-direction: column;
  padding: 24px 48px;
  gap: 20px;
  z-index: 199;
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A0A0A0;
  text-decoration: none;
  transition: color 150ms ease;
  padding: 4px 0;
  border-bottom: 1px solid #141414;
}
#mobile-nav a:hover { color: #FFD600; }
#mobile-nav .mobile-cta {
  margin-top: 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  background: #FFD600;
  padding: 12px 22px;
  text-decoration: none;
  display: inline-block;
  border: none;
  align-self: flex-start;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 48px;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-bg-scanlines {
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    0deg,
    transparent, transparent 2px,
    rgba(255,255,255,0.007) 2px, rgba(255,255,255,0.007) 4px
  );
}
.hero-glow {
  position: absolute; right: 18%; top: 45%;
  transform: translate(0, -50%);
  width: 500px; height: 600px;
  background: radial-gradient(ellipse, rgba(255,214,0,0.1) 0%, transparent 68%);
  pointer-events: none;
  transition: transform 0.2s ease;
}
.hero-watermark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 9vw, 140px);
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.022);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  transition: transform 0.15s ease;
  line-height: 1;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-left { display: flex; flex-direction: column; }
.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.hero-badge span:last-child {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #A0A0A0;
}
.hero-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #fff;
  font-size: clamp(52px, 6vw, 82px);
  margin-bottom: 28px;
}
.hero-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  color: #A0A0A0;
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero right — image + floating cards */
.hero-right {
  position: relative;
  transition: transform 0.2s ease;
}
.hero-image-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  border: 1px solid #1E1E1E;
}
.hero-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-image-fade {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  pointer-events: none;
}
.corner {
  position: absolute;
  width: 16px; height: 16px;
}
.corner-tl { top: 0; left: 0; border-top: 1px solid #FFD600; border-left: 1px solid #FFD600; }
.corner-tr { top: 0; right: 0; border-top: 1px solid #FFD600; border-right: 1px solid #FFD600; }
.corner-bl { bottom: 0; left: 0; border-bottom: 1px solid #FFD600; border-left: 1px solid #FFD600; }
.corner-br { bottom: 0; right: 0; border-bottom: 1px solid #FFD600; border-right: 1px solid #FFD600; }

/* Floating cards */
.float-card {
  position: absolute;
  background: #0D0D0D;
  padding: 12px 16px;
}
.float-card-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 24px;
  font-weight: 700;
  color: #FFD600;
  line-height: 1;
}
.float-card-label {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  color: #aeadad;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 5px;
}
.float-card.fc-1 {
  top: -20px; left: -56px;
  border: 1px solid #FFD600;
  box-shadow: 0 0 24px rgba(255,214,0,0.18);
  min-width: 130px;
}
.float-card.fc-2 {
  bottom: 60px; right: -56px;
  border: 1px solid #2A2A2A;
  min-width: 120px;
}
.float-card.fc-3 {
  bottom: -20px; left: -32px;
  border: 1px solid #2A2A2A;
}

/* Hero metrics */
.hero-metrics {
  max-width: 1200px;
  margin: 64px auto 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #1E1E1E;
  padding-top: 32px;
  position: relative;
  z-index: 1;
}
.metric-item {
  border-right: 1px solid #1E1E1E;
  padding: 0 32px;
}
.metric-item:first-child { padding-left: 0; }
.metric-item:last-child { border-right: none; }
.metric-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: #FFD600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 7px;
}
.metric-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  color: #aeadad;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: #FFD600;
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
  padding: 0 28px;
}
.marquee-item .diamond { opacity: 0.35; }

/* ============================================================
   LOGO STRIP
   ============================================================ */
.logo-strip {
  background: #000;
  padding: 56px 0;
  border-bottom: 1px solid #1E1E1E;
}
.logo-strip-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 36px;
  color: rgb(174, 173, 173);
}
.logo-track-wrap { overflow: hidden; position: relative; }
.logo-track {
  display: inline-flex;
  align-items: center;
  animation: marquee 40s linear infinite;
}
.logo-track-item {
  padding: 12px 40px;
  border-right: 1px solid #141414;
  flex-shrink: 0;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-box {
  background: #0A0A0A;
  border: 1px solid #1A1A1A;
  padding: 8px 18px;
  min-width: 100px;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #a4a1a1;
  text-transform: uppercase;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  background: #000;
  padding: 96px 48px;
  border-top: 1px solid #1E1E1E;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}
.about-left .section-title { margin-bottom: 24px; }
.about-right { padding-top: 8px; }
.about-right p {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: #A0A0A0;
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-right p:last-of-type { margin-bottom: 32px; }
.about-quote {
  background: #0A0A0A;
  border-left: 2px solid #FFD600;
  padding: 18px 22px;
}
.about-quote p {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: #fff;
  line-height: 1.6;
  font-style: italic;
  margin: 0 !important;
}
.about-personal {
  border-top: 1px solid #1E1E1E;
  padding-top: 40px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.about-personal-icon {
  width: 44px; height: 44px;
  background: #0A0A0A;
  border: 1px solid #FFD600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-personal-icon span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: #FFD600;
}
.about-personal-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #A0A0A0;
  margin-bottom: 8px;
}
.about-personal p {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  max-width: 680px;
  color: rgb(174, 173, 173);
}

/* ============================================================
   TIMELINE (Work)
   ============================================================ */
#work {
  background: #000;
  padding: 96px 48px;
  border-top: 1px solid #1E1E1E;
}
.timeline-header { margin-bottom: 64px; }
.timeline-item {
  display: grid;
  grid-template-columns: 140px 24px 1fr;
  gap: 0 28px;
  padding-bottom: 48px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-meta { text-align: right; padding-top: 4px; }
.timeline-year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  line-height: 1.5;
  color: #aeadad;
  margin-bottom: 10px;
}
.timeline-logos {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
}
.timeline-logo {
  width: 42px; height: 42px;
  object-fit: contain;
  background: #111;
  border: 1px solid #1E1E1E;
  padding: 3px;
}
.timeline-logo-sm {
  width: 28px; height: 28px;
  object-fit: contain;
  background: #111;
  border: 1px solid #1E1E1E;
  padding: 2px;
}
.timeline-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-dot {
  width: 8px; height: 8px;
  background: #FFD600;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  z-index: 1;
  animation: pulse-dot 2s ease-in-out infinite;
}
.timeline-line {
  width: 1px;
  background: #1E1E1E;
  flex: 1;
  margin-top: 8px;
}
.timeline-content {}
.timeline-role {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.timeline-company {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: #A0A0A0;
  margin-bottom: 12px;
}
.timeline-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
}
.timeline-point-dash {
  color: #FFD600;
  font-size: 10px;
  line-height: 22px;
  flex-shrink: 0;
}
.timeline-point span:last-child {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: #aeadad;
  line-height: 1.65;
}

/* ============================================================
   CASE STUDIES
   ============================================================ */
#case-studies {
  background: #000;
  padding: 96px 48px;
  border-top: 1px solid #1E1E1E;
}
.cases-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #1E1E1E;
}
.case-card {
  background: #000;
  padding: 36px;
  border-top: 2px solid transparent;
  transition: all 200ms cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
}
.case-card:hover {
  background: #0D0D0D;
  border-top-color: #FFD600;
  box-shadow: 0 0 48px rgba(255,214,0,0.05) inset;
}
.case-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFD600;
  margin-bottom: 12px;
}
.case-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}
.case-summary {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: #aeadad;
  line-height: 1.65;
  margin-bottom: 24px;
}
.case-highlight {
  background: rgba(255,214,0,0.04);
  border: 1px solid rgba(255,214,0,0.12);
  padding: 8px 12px;
  margin-bottom: 24px;
  display: inline-block;
}
.case-highlight span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #FFD600;
  letter-spacing: 0.08em;
}
.case-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-top: 1px solid #1E1E1E;
  padding-top: 24px;
  margin-bottom: 24px;
}
.case-metric-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 700;
  color: #FFD600;
  line-height: 1;
}
.case-metric-label {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  color: #aeadad;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.case-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.case-tag-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: #A0A0A0;
  background: rgba(255,255,255,0.03);
  border: 1px solid #1E1E1E;
  padding: 3px 8px;
  letter-spacing: 0.06em;
}

/* ============================================================
   APPROACH
   ============================================================ */
#approach {
  background: #000;
  padding: 96px 48px;
  border-top: 1px solid #1E1E1E;
}
.approach-header { margin-bottom: 64px; }
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.approach-col-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.approach-col-label.muted { color: #444; }
.approach-col-label.yellow { color: #FFD600; }
.approach-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #141414;
}
.approach-dot-empty {
  width: 6px; height: 6px;
  border: 1px solid #2A2A2A;
  flex-shrink: 0;
  margin-top: 8px;
}
.approach-dot-filled {
  width: 6px; height: 6px;
  background: #FFD600;
  flex-shrink: 0;
  margin-top: 9px;
}
.approach-item-text {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: #aeadad;
  line-height: 1.5;
}
.approach-note {
  margin-top: 28px;
  padding: 16px 20px;
}
.approach-note.negative {
  background: #080808;
  border: 1px solid #141414;
  border-left: 2px solid #333;
}
.approach-note.negative span {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: rgb(170, 170, 170);
}
.approach-note.positive {
  background: #0A0A0A;
  border: 1px solid #FFD600;
  box-shadow: 0 0 20px rgba(255,214,0,0.06);
}
.approach-note.positive span {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: #fff;
}
.approach-item-text-light { color: #A0A0A0; }

/* ============================================================
   TEAM
   ============================================================ */
#team {
  background: #000;
  padding: 96px 48px;
  border-top: 1px solid #1E1E1E;
}
.team-header { margin-bottom: 64px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #1E1E1E;
}
.team-card {
  background: #000;
  padding: 22px 24px;
  border-top: 1px solid transparent;
  transition: all 200ms cubic-bezier(0.16,1,0.3,1);
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: default;
  text-decoration: none;
  color: inherit;
}
.team-card:hover {
  background: #0A0A0A;
  border-top-color: #FFD600;
}
.team-avatar {
  width: 52px; height: 52px;
  background: #0A0A0A;
  border: 1px solid #1E1E1E;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 200ms ease;
  overflow: hidden;
}
.team-card:hover .team-avatar { border-color: #FFD600; }
.team-avatar span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  color: #222;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 2px 3px;
  line-height: 1.3;
}
.team-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #A0A0A0;
  transition: color 200ms ease;
}
.team-card:hover .team-name { color: #fff; }
.team-role {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  color: #aeadad;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  background: #000;
  padding: 96px 48px;
  border-top: 1px solid #1E1E1E;
}
.testi-header { margin-bottom: 64px; }
.testi-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: center;
}
.testi-quote-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.4vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  transition: all 300ms ease;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border: 1px solid #1E1E1E;
  flex-shrink: 0;
  overflow: hidden;
}
.testi-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.testi-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.testi-role {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  color: #aeadad;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.testi-nav-panel {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.testi-counter {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #aeadad;
  letter-spacing: 0.1em;
}
.testi-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.testi-bar {
  height: 2px;
  background: #1E1E1E;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 28px;
  transition: width 300ms ease;
  position: relative;
  overflow: hidden;
}
.testi-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #FFD600;
  transform: scaleX(0);
  transform-origin: left center;
}
.testi-bar.active {
  background: #1E1E1E;
  width: 56px;
}
.testi-bar.active.is-animating::after {
  transform: scaleX(1);
  transition: transform 3000ms linear;
}
.testi-arrows { display: flex; gap: 12px; }
.nav-btn {
  width: 48px; height: 48px;
  background: #0A0A0A;
  border: 1px solid #1E1E1E;
  cursor: pointer;
  color: #A0A0A0;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: all 150ms ease;
}
.nav-btn:hover {
  border-color: #FFD600;
  color: #FFD600;
}

/* ============================================================
   GLOBAL PRESENCE
   ============================================================ */
#global {
  background: #000;
  padding: 96px 48px;
  border-top: 1px solid #1E1E1E;
}
.global-header { margin-bottom: 36px; }
.map-wrap {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 18px;
  border: 1px solid #1E1E1E;
  background: #050505;
  overflow: hidden;
}
.world-map {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  margin: 0;
  clip-path: inset(0 0 8% 0);
  filter: grayscale(1) brightness(0.62);
  opacity: 0.74;
}
.map-pins {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  overflow: visible;
  clip-path: inset(0 0 8% 0);
}
.map-pin { transform-box: fill-box; transform-origin: center; }
.pin-dot {
  fill: #FFD600;
  filter: drop-shadow(0 0 8px rgba(255,214,0,0.65));
}
.pin-pulse {
  fill: rgba(255,214,0,0.24);
  animation: map-pin-pulse 2.2s ease-out infinite;
}
.pin-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 700;
  fill: #FFD600;
  letter-spacing: 0.08em;
  paint-order: stroke;
  stroke: rgba(0,0,0,0.7);
  stroke-width: 6px;
}
.map-container {
  border: 1px solid #1E1E1E;
  margin-bottom: 40px;
  overflow: hidden;
  background: #050505;
}
.map-container svg { width: 100%; display: block; }
.map-country { cursor: default; }
.map-highlight {
  fill: rgba(255,214,0,0.18);
  stroke: #FFD600;
  stroke-width: 0.9;
  transition: all 200ms ease;
  filter: drop-shadow(0 0 2px rgba(255,214,0,0.2));
}
.map-country:hover .map-highlight {
  fill: rgba(255,214,0,0.32);
  stroke-width: 1.4;
  filter: drop-shadow(0 0 5px rgba(255,214,0,0.6));
}
.map-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  fill: #FFD600;
  font-weight: 600;
  letter-spacing: 1px;
}
.countries-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: #1E1E1E;
  margin-top: 0;
}
.country-item {
  background: #000;
  padding: 16px 12px;
  text-align: center;
}
.country-dot {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: #FFD600;
  margin-bottom: 8px;
}
.country-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: #A0A0A0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
#contact {
  background: #000;
  padding: 112px 48px;
  border-top: 1px solid #1E1E1E;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,214,0,0.07) 0%, transparent 68%);
  pointer-events: none;
}
.cta-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 80px 80px;
}
.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.cta-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #A0A0A0;
  margin-bottom: 24px;
}
.cta-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #fff;
  font-size: clamp(28px, 4vw, 54px);
  margin-bottom: 24px;
}
.cta-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  color: #aeadad;
  line-height: 1.7;
  margin-bottom: 48px;
}
.cta-perks {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.cta-perk {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-perk-dot {
  width: 4px; height: 4px;
  background: #FFD600;
  flex-shrink: 0;
}
.cta-perk span {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: #A0A0A0;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #000;
  border-top: 1px solid #1E1E1E;
  padding: 28px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo img {
  filter: invert(1);
  opacity: 0.5;
  height: 69px;
  width: 163px;
  object-fit: contain;
}
.footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #9f9e9e;
  letter-spacing: 0.08em;
}
.footer-social { display: flex; gap: 24px; }
.footer-social a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #444;
  text-decoration: none;
  transition: color 150ms ease;
}
.footer-social a:hover { color: #FFD600; }

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr 320px; gap: 40px; }
  .about-grid { gap: 48px; }
  .testi-layout { grid-template-columns: 1fr 240px; gap: 48px; }
  .countries-grid { grid-template-columns: repeat(4, 1fr); }
  .pin-code { font-size: 24px; }
}

/* ============================================================
   RESPONSIVE — DESKTOP ENHANCEMENTS (≥1025px)
   ============================================================ */
@media (min-width: 900px) {
  .timeline-item {
    grid-template-columns: 230px 32px 1fr;
    gap: 0 36px;
    padding-bottom: 60px;
  }
  .timeline-logos { gap: 10px; }
  .timeline-logo {
    width: 92px;
    height: 92px;
    padding: 7px;
    background: rgba(255,255,255,0.01);
    border-color: #2A2A2A;
    box-shadow: 0 0 18px rgba(255,214,0,0.07);
  }
  .timeline-logo-sm {
    width: 62px;
    height: 62px;
    padding: 6px;
    background: rgba(255,255,255,0.01);
    border-color: #2A2A2A;
    box-shadow: 0 0 14px rgba(255,214,0,0.06);
  }
  .timeline-dot {
    width: 11px;
    height: 11px;
    margin-top: 24px;
  }
  .timeline-line {
    width: 3px;
    background: #3A3A3A;
    box-shadow: 0 0 10px rgba(255,255,255,0.04);
    margin-top: 10px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Header */
  #site-header {
    padding: 0 24px;
    justify-content: center;
    position: fixed;
  }
  .header-logo { margin: 0 auto; }
  .header-nav { display: none; }
  .header-cta { display: none; }
  .hamburger {
    display: flex;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* Mobile nav */
  #mobile-nav { padding: 24px; }

  /* Hero */
  #hero { padding: 0 24px 48px; padding-top: 72px; }
  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .hero-left {
    order: 1;
    display: contents;
  }
  .hero-badge {
    order: 1;
    justify-content: center;
    margin: 0 auto 10px;
  }
  .hero-heading {
    order: 2;
    text-align: center;
    line-height: 1;
    margin: 0 auto 10px;
  }
  .hero-desc {
    order: 3;
    text-align: center;
    max-width: 90%;
    line-height: 1.45;
    margin: 0 auto;
  }
  .hero-actions {
    order: 5;
    flex-direction: column;
    width: min(100%, 340px);
    margin: 8px auto 0;
    gap: 12px;
  }
  .hero-actions .btn {
    text-align: center;
    width: 100%;
  }
  /* Founder image: show below hero text, hide float cards */
  .hero-right {
    display: block;
    width: min(92vw, 300px);
    max-width: 300px;
    margin: 14px auto 12px;
    position: relative;
    order: 4;
    transform: none !important;
  }
  .hero-right::before {
    content: '';
    position: absolute;
    inset: auto -20% 10% -20%;
    height: 62%;
    background: radial-gradient(ellipse at center, rgba(255,214,0,0.28) 0%, rgba(255,214,0,0) 72%);
    z-index: -1;
    pointer-events: none;
  }
  .hero-image-wrap {
    aspect-ratio: 1 / 1.08;
    border-radius: 8px;
  }
  .hero-image-wrap img { object-position: center 14%; }
  .float-card { display: none; }
  /* 2×2 stats grid */
  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    margin-top: 40px;
    gap: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  /* Reset all desktop border/padding, then build clean 2×2 */
  .metric-item,
  .metric-item:first-child,
  .metric-item:last-child {
    padding: 20px 12px;
    border: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 126px;
    box-sizing: border-box;
  }
  /* Internal column divider */
  .metric-item:nth-child(1),
  .metric-item:nth-child(3) { border-right: 1px solid #1E1E1E; }
  /* Internal row divider */
  .metric-item:nth-child(1),
  .metric-item:nth-child(2) { border-bottom: 1px solid #1E1E1E; }
  /* Fix metric value font size for narrow screens */
  .metric-val { font-size: 28px; }
  .metric-label { line-height: 1.45; }

  /* Sections */
  #about,
  #work,
  #case-studies,
  #approach,
  #team,
  #testimonials,
  #global,
  #contact { padding: 64px 24px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Timeline */
  .timeline-logo {
    width: 63px;
    height: 63px;
  }
  .timeline-logo-sm {
    width: 42px;
    height: 42px;
  }
  .timeline-item { grid-template-columns: 100px 20px 1fr; gap: 0 16px; }

  /* Case Studies */
  .cases-grid { grid-template-columns: 1fr; }

  /* Approach */
  .approach-grid { grid-template-columns: 1fr; gap: 48px; }

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

  /* Testimonials */
  .testi-layout { grid-template-columns: 1fr; gap: 40px; }
  .testi-nav-panel { flex-direction: row; align-items: center; gap: 24px; }
  .testi-bars { flex-direction: row; }
  .testi-bar.active { width: 40px; }

  /* Global */
  .map-wrap { margin-bottom: 14px; }
  .world-map,
  .map-pins { clip-path: inset(0 0 5% 0); }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }

  /* CTA */
  .cta-perks { gap: 16px; flex-direction: column; align-items: center; }

  /* Footer */
  footer { padding: 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-badge span:last-child { font-size: 9px; }
  .team-grid { grid-template-columns: 1fr; }
  .testi-nav-panel { flex-direction: column; align-items: flex-start; }
  .map-wrap { margin-bottom: 12px; }
  .pin-code { font-size: 22px; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-item { grid-template-columns: 80px 20px 1fr; gap: 0 12px; }
  .timeline-year { font-size: 9px; }
  .footer-logo img { width: 140px; height: 60px; }
}
