/* ==========================================
   Experiential Technologies — Site Styles
   ========================================== */

@font-face {
  font-family: 'Glosa Black';
  src: url('assets/fonts/glosa-black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #1a1a18;
  --off-white: #222220;
  --light-gray: #2c2c2a;
  --mid-gray: #6b6860;
  --dark-gray: #b8b5ad;
  --charcoal: #e8e8e6;
  --black: #ffffff;

  --font-heading: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Grotesk', sans-serif;

  --section-pad: clamp(80px, 10vw, 140px);
  --container: min(1200px, 90vw);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ==========================================
   Navigation
   ========================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(14, 22, 22, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(56, 200, 180, 0.08);
  display: none;
  transition: transform 0.3s ease;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--dark-gray);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--black);
}

.nav-cta {
  position: relative;
  background: #f0f0f2;
  color: #3a3a42 !important;
  padding: 10px 24px;
  border-radius: 12px;
  font-size: 13px !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  transition: transform 0.07s ease, box-shadow 0.07s ease, background 0.07s ease !important;
  box-shadow:
    0 1px 0px 0px #ffffff inset,
    0 -1px 0px 0px #c8c8cc inset,
    1px 0 0px 0px #e0e0e4 inset,
    -1px 0 0px 0px #e0e0e4 inset,
    0 4px 0px 0px #b2b2be,
    0 5px 2px 0px rgba(0,0,0,0.14),
    0 6px 10px 0px rgba(0,0,0,0.10);
}

.nav-cta:hover {
  background: #e8e8ea;
  transform: translateY(0px);
}

.nav-cta:active {
  background: #e0e0e2;
  transform: translateY(3px) !important;
  box-shadow:
    0 1px 0px 0px #ffffff inset,
    0 -1px 0px 0px #c0c0c4 inset,
    1px 0 0px 0px #d8d8dc inset,
    -1px 0 0px 0px #d8d8dc inset,
    0 1px 0px 0px #b2b2be,
    0 2px 3px 0px rgba(0,0,0,0.10);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu {
  display: none !important;
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}

/* ==========================================
   Hero
   ========================================== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px 80px;
  position: relative;
  background:
    radial-gradient(ellipse 90% 70% at 10% 90%, rgba(0, 210, 160, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 85% 15%, rgba(40, 140, 255, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255, 220, 80, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #141418 0%, #0a1a1a 50%, #0f1520 100%);
}

#starfield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  max-width: 800px;
  z-index: 2;
}

.hero-logo {
  max-width: 200px;
  width: 40%;
  height: auto;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-logo-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-logo-portal {
  width: 120px;
  height: auto;
  flex-shrink: 0;
}

.hero-logo-text-img {
  height: clamp(70px, 12vw, 120px);
  width: auto;
  filter: invert(1);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 400;
  font-style: italic;
  color: var(--dark-gray);
  margin-top: -16px;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}


.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--dark-gray);
  max-width: 560px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
}

.hero-scroll span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid-gray);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--mid-gray);
  animation: scrollPulse 2s ease infinite;
}

/* ==========================================
   Buttons
   ========================================== */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 16px 36px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  transition: transform 0.07s ease, box-shadow 0.07s ease, background 0.07s ease;
}

.btn-primary {
  background: #f0f0f2;
  color: #3a3a42;
  box-shadow:
    0 1px 0px 0px #ffffff inset,
    0 -1px 0px 0px #c8c8cc inset,
    1px 0 0px 0px #e0e0e4 inset,
    -1px 0 0px 0px #e0e0e4 inset,
    0 5px 0px 0px #b2b2be,
    0 6px 2px 0px rgba(0,0,0,0.14),
    0 8px 14px 0px rgba(0,0,0,0.10);
}

.btn-primary:hover {
  background: #e8e8ea;
  transform: translateY(0px);
}

.btn-primary:active,
.btn-primary.pressed {
  background: #e0e0e2;
  transform: translateY(4px);
  box-shadow:
    0 1px 0px 0px #ffffff inset,
    0 -1px 0px 0px #c0c0c4 inset,
    1px 0 0px 0px #d8d8dc inset,
    -1px 0 0px 0px #d8d8dc inset,
    0 1px 0px 0px #b2b2be,
    0 2px 3px 0px rgba(0,0,0,0.10);
}

.btn-outline {
  background: rgba(240, 240, 242, 0.08);
  color: #f0f0f2;
  box-shadow:
    0 1px 0px 0px rgba(255,255,255,0.12) inset,
    0 -1px 0px 0px rgba(255,255,255,0.04) inset,
    1px 0 0px 0px rgba(255,255,255,0.06) inset,
    -1px 0 0px 0px rgba(255,255,255,0.06) inset,
    0 5px 0px 0px rgba(255,255,255,0.06),
    0 6px 2px 0px rgba(0,0,0,0.14),
    0 8px 14px 0px rgba(0,0,0,0.10);
}

.btn-outline:hover {
  background: rgba(240, 240, 242, 0.14);
  transform: translateY(0px);
}

.btn-outline:active,
.btn-outline.pressed {
  background: rgba(240, 240, 242, 0.06);
  transform: translateY(4px);
  box-shadow:
    0 1px 0px 0px rgba(255,255,255,0.12) inset,
    0 -1px 0px 0px rgba(255,255,255,0.04) inset,
    1px 0 0px 0px rgba(255,255,255,0.06) inset,
    -1px 0 0px 0px rgba(255,255,255,0.06) inset,
    0 1px 0px 0px rgba(255,255,255,0.06),
    0 2px 3px 0px rgba(0,0,0,0.10);
}

.btn-full {
  width: 100%;
}

/* Key ripple effect */
.btn .ripple,
.nav-cta .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  transform: scale(0);
  animation: btnRipple 0.4s ease-out forwards;
  pointer-events: none;
}

.btn-outline .ripple {
  background: rgba(255,255,255,0.08);
}

@keyframes btnRipple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ==========================================
   Frutiger Aero Animated Glow
   ========================================== */

@keyframes aeroShift {
  0%   { background-position: 0% 50%, 100% 0%, 50% 100%; }
  25%  { background-position: 30% 70%, 70% 30%, 80% 60%; }
  50%  { background-position: 100% 50%, 0% 100%, 20% 40%; }
  75%  { background-position: 60% 20%, 40% 60%, 70% 80%; }
  100% { background-position: 0% 50%, 100% 0%, 50% 100%; }
}

.aero-glow {
  position: relative;
}

.aero-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 50%, rgba(0, 220, 160, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 45% 45%, rgba(40, 140, 255, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40%, rgba(255, 220, 80, 0.08) 0%, transparent 70%);
  background-size: 200% 200%, 200% 200%, 200% 200%;
  animation: aeroShift 12s ease-in-out infinite;
  mix-blend-mode: screen;
  border-radius: inherit;
}

.aero-glow > * {
  position: relative;
  z-index: 1;
}

/* ==========================================
   Sections
   ========================================== */

.section {
  padding: var(--section-pad) 24px;
  position: relative;
}

.section > .section-header,
.section > .contact-form {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

/* Brands Carousel */
.brands-section {
  padding: 56px 0;
  border-top: 1px solid rgba(56, 200, 180, 0.12);
  border-bottom: 1px solid rgba(56, 200, 180, 0.12);
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(40, 180, 200, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, #0e1818 0%, #101418 100%);
}

#brands-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.brands-label {
  position: relative;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 32px;
}

.brands-grid {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.brands-grid img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: opacity 0.3s;
}

.brands-grid img:hover {
  opacity: 0.8;
}

.brands-grid img[alt="NVIDIA"] {
  height: 92px;
}

.section-alt {
  max-width: 100%;
  background:
    radial-gradient(ellipse 70% 50% at 90% 30%, rgba(40, 140, 255, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 10% 70%, rgba(0, 220, 140, 0.12) 0%, transparent 55%),
    linear-gradient(170deg, #101816 0%, #121420 100%);
  padding-left: 24px;
  padding-right: 24px;
}

.section-alt > .section-header,
.section-alt > .team-grid {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  margin-bottom: 64px;
}

.section-number {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--mid-gray);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--dark-gray);
  max-width: 100%;
  line-height: 1.7;
}

/* ==========================================
   Work Showcase — Bubbles
   ========================================== */

.work-showcase {
  padding: var(--section-pad) 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.work-arc-title,
.work-bubbles,
.work-subtext {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

#bg-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.work-arc-title,
.work-bubbles,
.work-subtext {
  position: relative;
  z-index: 1;
}

/* Arc title */
.work-arc-title {
  margin-bottom: 16px;
}

.work-arc-svg {
  width: clamp(320px, 50vw, 600px);
  height: auto;
  display: inline-block;
}

.work-arc-svg text {
  font-family: var(--font-mono);
  font-size: 42px;
  font-weight: 600;
  fill: var(--black);
  letter-spacing: 8px;
}

.work-subtext {
  font-size: 16px;
  color: var(--dark-gray);
  line-height: 1.7;
  max-width: 640px;
  margin: 40px auto 0;
}

/* Bubble grid — organic layout */
.work-bubbles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  align-items: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 20px 0 0;
  gap: 10px 0;
}

.work-bubble:nth-child(1) { transform: translate(20px, 10px); }
.work-bubble:nth-child(2) { transform: translate(-15px, -20px); }
.work-bubble:nth-child(3) { transform: translate(30px, -10px); }
.work-bubble:nth-child(4) { transform: translate(-25px, 15px); }

.work-bubble {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

/* ============ Varied Sizes ============ */
.bubble-sphere {
  border-radius: 50%;
  position: relative;
  overflow: visible;
}

[data-size="small"] .bubble-sphere  { width: clamp(130px, 14vw, 190px); height: clamp(130px, 14vw, 190px); }
[data-size="medium"] .bubble-sphere { width: clamp(160px, 18vw, 230px); height: clamp(160px, 18vw, 230px); }
[data-size="large"] .bubble-sphere  { width: clamp(180px, 20vw, 260px); height: clamp(180px, 20vw, 260px); }
[data-size="xlarge"] .bubble-sphere { width: clamp(200px, 22vw, 290px); height: clamp(200px, 22vw, 290px); }

/* ============ Wobbly Float Animations ============ */
.work-bubble:nth-child(1) .bubble-sphere { animation: wobble1 5s ease-in-out infinite; }
.work-bubble:nth-child(2) .bubble-sphere { animation: wobble2 6.2s ease-in-out infinite; }
.work-bubble:nth-child(3) .bubble-sphere { animation: wobble3 5.8s ease-in-out infinite; }
.work-bubble:nth-child(4) .bubble-sphere { animation: wobble4 7s ease-in-out infinite; }

@keyframes wobble1 {
  0%   { transform: translateY(0) scaleX(1) scaleY(1) rotate(0deg); }
  15%  { transform: translateY(-10px) scaleX(1.03) scaleY(0.97); }
  30%  { transform: translateY(-18px) scaleX(0.98) scaleY(1.02) rotate(1deg); }
  50%  { transform: translateY(-8px) scaleX(1.02) scaleY(0.98) rotate(-0.5deg); }
  70%  { transform: translateY(-20px) scaleX(0.97) scaleY(1.03) rotate(0.8deg); }
  85%  { transform: translateY(-6px) scaleX(1.01) scaleY(0.99); }
  100% { transform: translateY(0) scaleX(1) scaleY(1) rotate(0deg); }
}

@keyframes wobble2 {
  0%   { transform: translateY(0) scaleX(1) scaleY(1) rotate(0deg); }
  20%  { transform: translateY(-14px) scaleX(0.97) scaleY(1.03) rotate(-0.8deg); }
  40%  { transform: translateY(-6px) scaleX(1.04) scaleY(0.96) rotate(0.5deg); }
  60%  { transform: translateY(-22px) scaleX(0.98) scaleY(1.02) rotate(-1deg); }
  80%  { transform: translateY(-10px) scaleX(1.02) scaleY(0.98) rotate(0.3deg); }
  100% { transform: translateY(0) scaleX(1) scaleY(1) rotate(0deg); }
}

@keyframes wobble3 {
  0%   { transform: translateY(0) scaleX(1) scaleY(1); }
  25%  { transform: translateY(-16px) scaleX(1.04) scaleY(0.96) rotate(0.6deg); }
  50%  { transform: translateY(-4px) scaleX(0.97) scaleY(1.03) rotate(-0.4deg); }
  75%  { transform: translateY(-20px) scaleX(1.02) scaleY(0.98) rotate(1deg); }
  100% { transform: translateY(0) scaleX(1) scaleY(1); }
}

@keyframes wobble4 {
  0%   { transform: translateY(0) scaleX(1) scaleY(1); }
  18%  { transform: translateY(-8px) scaleX(0.96) scaleY(1.04) rotate(-0.7deg); }
  36%  { transform: translateY(-18px) scaleX(1.03) scaleY(0.97) rotate(0.5deg); }
  54%  { transform: translateY(-12px) scaleX(0.98) scaleY(1.02) rotate(-0.3deg); }
  72%  { transform: translateY(-22px) scaleX(1.02) scaleY(0.98) rotate(0.8deg); }
  100% { transform: translateY(0) scaleX(1) scaleY(1); }
}

/* Hover wobble squish */
.work-bubble:hover .bubble-sphere {
  animation-play-state: paused;
  transform: scale(1.08) scaleY(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Photo inside bubble */
.bubble-sphere img {
  width: 86%;
  height: 86%;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  top: 7%;
  left: 7%;
  z-index: 0;
  filter: saturate(1.05) contrast(1.02);
}

/* Bubble surface overlay */
.bubble-sphere::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: 1;
  background:
    radial-gradient(ellipse 55% 35% at 30% 20%,
      rgba(255,255,255,0.75) 0%,
      rgba(255,255,255,0.2) 35%,
      transparent 65%),
    radial-gradient(ellipse 30% 20% at 72% 80%,
      rgba(255,255,255,0.12) 0%,
      transparent 70%),
    linear-gradient(170deg,
      rgba(255,255,255,0.05) 0%,
      transparent 40%,
      rgba(0,0,0,0.12) 100%);
  box-shadow:
    0 0 30px rgba(255, 255, 255, 0.06),
    0 0 60px rgba(150, 200, 255, 0.03),
    inset 0 0 24px rgba(255, 255, 255, 0.1),
    inset 2px 2px 5px rgba(150, 220, 255, 0.12),
    inset -2px -2px 5px rgba(255, 150, 220, 0.08),
    0 24px 48px rgba(0, 0, 0, 0.3),
    0 8px 16px rgba(0, 0, 0, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
  transition: box-shadow 0.3s;
}

.work-bubble:hover .bubble-sphere::before {
  box-shadow:
    0 0 50px rgba(255, 255, 255, 0.12),
    0 0 100px rgba(150, 200, 255, 0.08),
    inset 0 0 30px rgba(255, 255, 255, 0.18),
    inset 3px 3px 10px rgba(150, 220, 255, 0.25),
    inset -3px -3px 10px rgba(255, 150, 220, 0.18),
    0 30px 60px rgba(0, 0, 0, 0.35),
    0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Specular dot */
.bubble-sphere::after {
  content: '';
  position: absolute;
  width: 20%;
  height: 14%;
  top: 12%;
  left: 22%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(255,255,255,0.9) 0%,
    rgba(255,255,255,0.3) 40%,
    transparent 70%);
  z-index: 2;
  pointer-events: none;
  filter: blur(2px);
}

/* ============ Info Below Bubble (always visible) ============ */
.bubble-info {
  margin-top: 20px;
  text-align: center;
  max-width: 220px;
}

.bubble-info .bubble-client {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 6px;
  display: block;
}

.bubble-info .bubble-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--black);
}

.work-bubble:hover .bubble-info .bubble-name {
  color: var(--charcoal);
}

/* ============ Pop Animation ============ */

/* Phase 1: wobble inflate */
.work-bubble.popping .bubble-sphere {
  animation: bubbleWobblePop 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
}

@keyframes bubbleWobblePop {
  0%   { transform: scale(1) scaleY(1); opacity: 1; }
  15%  { transform: scale(1.15) scaleY(0.88); opacity: 1; }
  30%  { transform: scale(0.92) scaleY(1.12); opacity: 1; }
  45%  { transform: scale(1.25) scaleY(0.85); opacity: 0.9; }
  60%  { transform: scale(1.4) scaleY(0.75); opacity: 0.6; }
  80%  { transform: scale(1.6) scaleY(0.6); opacity: 0.2; }
  100% { transform: scale(2) scaleY(0.3); opacity: 0; }
}

/* After pop completes */
.work-bubble.popped .bubble-sphere {
  transform: scale(0);
  opacity: 0;
}

.work-bubble.popped .bubble-info {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.2s, transform 0.2s;
}

/* Reforming animation */
.work-bubble.reforming .bubble-sphere {
  animation: bubbleReform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
}

@keyframes bubbleReform {
  0%   { transform: scale(0); opacity: 0; }
  40%  { transform: scale(1.15) scaleY(0.9); opacity: 0.7; }
  60%  { transform: scale(0.95) scaleY(1.06); opacity: 0.9; }
  80%  { transform: scale(1.04) scaleY(0.97); opacity: 1; }
  100% { transform: scale(1) scaleY(1); opacity: 1; }
}

.work-bubble.reforming .bubble-info {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s 0.3s, transform 0.3s 0.3s;
}

/* Pop particles */
.pop-particle {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 50;
}

/* ============ Detail Panel ============ */
.bubble-detail {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: clamp(300px, 40vw, 440px);
  background: rgba(20, 30, 30, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(56, 200, 180, 0.15);
  border-radius: 16px;
  padding: 36px;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
  transition: opacity 0.4s 0.35s, transform 0.5s 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.work-bubble.popped .bubble-detail {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.bubble-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--mid-gray);
  font-size: 24px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.bubble-close:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--black);
}

.bubble-desc {
  font-size: 14px;
  color: var(--dark-gray);
  line-height: 1.75;
  margin-bottom: 20px;
}

.bubble-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.bubble-tags span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  color: var(--dark-gray);
}

.bubble-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--black);
  padding: 10px 24px;
  border: 1.5px solid var(--black);
  border-radius: 8px;
  transition: all 0.25s ease;
}

.bubble-link:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

/* ==========================================
   Services — Expanding Panels
   ========================================== */

.services-section {
  background: var(--off-white);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.services-header {
  max-width: var(--container);
  margin: 0 auto 48px;
  padding: 0 24px;
}

.services-panels {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  margin-top: 80px;
  height: 420px;
  gap: 2px;
}

.svc-panel {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.svc-panel.active {
  flex: 4;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(0, 210, 160, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(40, 140, 255, 0.12) 0%, transparent 55%),
    rgba(255, 255, 255, 0.04);
}

/* Glowing accent line on left edge */
.svc-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.4s, box-shadow 0.4s;
  z-index: 2;
}

.svc-panel.active .svc-accent {
  background: rgba(56, 200, 180, 0.8);
  box-shadow: 0 0 20px rgba(56, 200, 180, 0.2), 0 0 40px rgba(56, 200, 180, 0.08);
}

/* Collapsed state — vertical text */
.svc-collapsed {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px 12px;
  opacity: 1;
  transition: opacity 0.3s;
  z-index: 1;
}

.svc-panel.active .svc-collapsed {
  opacity: 0;
  pointer-events: none;
}

.svc-num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--mid-gray);
}

.svc-title-vert {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 1px;
  color: var(--dark-gray);
  white-space: nowrap;
}

/* Expanded state */
.svc-expanded {
  position: absolute;
  inset: 0;
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s 0.15s, transform 0.5s 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.svc-panel.active .svc-expanded {
  opacity: 1;
  transform: translateX(0);
}

.svc-num-big {
  font-family: var(--font-mono);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  margin-bottom: 8px;
  position: absolute;
  top: 32px;
  right: 40px;
}

.svc-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.2;
}

.svc-desc {
  font-size: 15px;
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 480px;
}

.svc-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.svc-keywords span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  color: var(--mid-gray);
  transition: border-color 0.2s, color 0.2s;
}

.svc-panel.active .svc-keywords span:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--black);
}

/* ==========================================
   We Build + Process — Combined Section
   ========================================== */

.we-build-section {
  background:
    radial-gradient(ellipse 80% 40% at 80% 5%, rgba(40, 160, 255, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 10% 50%, rgba(0, 220, 160, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse 60% 30% at 50% 100%, rgba(255, 220, 80, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #0e1818 0%, #0c1420 50%, #101818 100%);
  padding: 0 0 var(--section-pad);
  overflow: hidden;
}

.we-build {
  height: 55vh;
  overflow-y: auto;
  scroll-snap-type: y proximity;
  scrollbar-width: none;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.we-build::-webkit-scrollbar {
  display: none;
}

.we-build-inner {
  display: flex;
  justify-content: center;
  line-height: 1.25;
}

.we-build-heading {
  position: sticky;
  top: calc(50% - 0.65em);
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 400;
  height: fit-content;
  color: var(--black);
  white-space: nowrap;
}

.we-build-list {
  list-style: none;
  margin: 0;
  padding-block: calc(27vh - 0.65em);
  padding-left: 0;
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 400;
}

.we-build-list li {
  scroll-snap-align: center;
  color: var(--mid-gray);
  opacity: 0.2;
  transition: none;
  cursor: default;
  padding: 2px 0;
}

@supports (animation-timeline: scroll()) {
  .we-build-list li {
    animation: wordHighlight linear both;
    animation-timeline: view();
    animation-range: cover calc(50% - 1.2lh) cover calc(50% + 1.2lh);
  }

  @keyframes wordHighlight {
    0%   { opacity: 0.15; color: var(--mid-gray); }
    50%  { opacity: 1; color: var(--black); filter: brightness(1.1); }
    100% { opacity: 0.15; color: var(--mid-gray); }
  }
}

@supports not (animation-timeline: scroll()) {
  .we-build-list li.active {
    opacity: 1;
    color: var(--black);
    text-shadow: 0 0 40px rgba(56, 200, 180, 0.2);
    transition: opacity 0.3s, color 0.3s, text-shadow 0.3s;
  }
}

/* ============ Process Timeline ============ */

.process-flow {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px 0;
  position: relative;
}

.process-label {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 56px;
  color: var(--black);
}

.process-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

/* Connecting track line */
.process-track {
  position: absolute;
  top: 20px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 0;
}

.process-track-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(56, 200, 180, 0.6), rgba(56, 160, 240, 0.6));
  border-radius: 2px;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
}

/* Node */
.process-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.process-node.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Dot on the line */
.process-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: border-color 0.4s, box-shadow 0.4s, background 0.4s;
  position: relative;
}

.process-node.visible .process-dot {
  border-color: rgba(56, 200, 180, 0.6);
  box-shadow: 0 0 20px rgba(56, 200, 180, 0.15), 0 0 40px rgba(56, 200, 180, 0.05);
}

/* Inner pulse */
.process-dot::after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.4s, transform 0.4s;
}

.process-node.visible .process-dot::after {
  background: rgba(56, 200, 180, 0.8);
}

.process-node:hover .process-dot {
  transform: scale(1.15);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.process-node:hover .process-dot::after {
  transform: scale(1.3);
}

/* Card content */
.process-card {
  max-width: 200px;
}

.process-card .process-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--mid-gray);
  display: block;
  margin-bottom: 8px;
}

.process-card h4 {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}

.process-card p {
  font-size: 13px;
  color: var(--dark-gray);
  line-height: 1.6;
}

/* ==========================================
   Press
   ========================================== */

/* Press Section — Mosaic Layout */
.press-section {
  padding: var(--section-pad) clamp(20px, 4vw, 48px);
  position: relative;
}

.press-header,
.press-mosaic {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.press-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -10%;
  right: -10%;
  bottom: -100px;
  background:
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(0, 210, 160, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(40, 140, 255, 0.10) 0%, transparent 55%);
  pointer-events: none;
  z-index: -1;
}

.press-header {
  margin-bottom: 48px;
}

.press-heading {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.press-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Featured (large left card) */
.press-feature {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 480px;
}

.press-feature-img {
  position: absolute;
  inset: 0;
}

.press-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.press-feature:hover .press-feature-img img {
  transform: scale(1.04);
}

.press-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.05) 100%);
}

.press-feature-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  z-index: 1;
}

.press-feature-content .press-source {
  color: rgba(255,255,255,0.6);
}

.press-feature-content .press-title {
  font-family: var(--font-heading);
  color: #fff;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 400;
}

.press-feature-content .press-excerpt {
  color: rgba(255,255,255,0.7);
  max-width: 520px;
}

.press-feature-content .press-link {
  color: #fff;
}

/* Side cards (stacked right) */
.press-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.press-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  border: 1px solid rgba(56, 200, 180, 0.1);
  border-radius: 16px;
  flex: 1;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.press-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(56, 200, 180, 0.08);
  border-color: rgba(56, 200, 180, 0.2);
}

.press-thumb {
  width: 160px;
  min-width: 160px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 10px;
}

.press-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.press-card:hover .press-thumb img {
  transform: scale(1.06);
}

.press-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.press-source {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid-gray);
  display: block;
}

.press-title {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.press-excerpt {
  font-size: 14px;
  color: var(--dark-gray);
  line-height: 1.7;
  margin-top: 8px;
}

.press-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--black);
  transition: letter-spacing 0.2s;
  margin-top: 4px;
}

.press-card:hover .press-link,
.press-feature:hover .press-link {
  letter-spacing: 1.5px;
}

/* (Process styles merged into We Build section above) */

/* ==========================================
   Team
   ========================================== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 32px;
}

.team-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
}

.team-role {
  font-size: 14px;
  color: var(--dark-gray);
}

/* ==========================================
   Contact Form
   ========================================== */

.contact-form {
  max-width: 720px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--dark-gray);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border: 1.5px solid rgba(56, 200, 180, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--black);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b8b5ad' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: #222220;
  color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(56, 180, 220, 0.5);
  box-shadow: 0 0 0 3px rgba(56, 180, 220, 0.1), 0 0 20px rgba(56, 180, 220, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--mid-gray);
  opacity: 0.6;
}

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

/* ==========================================
   Footer
   ========================================== */

.footer {
  border-top: 1px solid rgba(56, 200, 180, 0.1);
  padding: 80px 24px 40px;
  background:
    radial-gradient(ellipse 60% 80% at 30% 0%, rgba(0, 210, 160, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 80% at 80% 100%, rgba(40, 140, 255, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, #0e1818 0%, #0c1218 100%);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 32px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-portal {
  width: 40px;
  height: 40px;
}

.footer-logo-img {
  height: 28px;
  width: auto;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: var(--dark-gray);
}

.footer-nav {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--dark-gray);
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--mid-gray);
}

.footer-meta {
  font-size: 12px;
  color: var(--mid-gray);
}

/* ==========================================
   Animations
   ========================================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   Responsive
   ========================================== */

@media (max-width: 1024px) {
  .work-bubble:nth-child(1) { transform: translate(12px, 6px); }
  .work-bubble:nth-child(2) { transform: translate(-10px, -12px); }
  .work-bubble:nth-child(3) { transform: translate(16px, -6px); }
  .work-bubble:nth-child(4) { transform: translate(-14px, 10px); }

  .work-bubbles {
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .hero-logo-lockup {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .hero-logo-portal { width: 90px; }
  .hero-logo-text-img { height: clamp(55px, 11vw, 80px); }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu.open {
    display: flex;
  }

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

  .hero-title {
    letter-spacing: -1px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .work-showcase {
    padding: clamp(48px, 8vw, 100px) 16px;
  }

  .work-arc-svg text {
    font-size: 36px;
    letter-spacing: 5px;
  }

  .work-bubbles {
    grid-template-columns: 1fr 1fr;
    gap: 10px 0;
    max-width: 100%;
  }

  .work-bubble:nth-child(1) { transform: translate(8px, 5px); }
  .work-bubble:nth-child(2) { transform: translate(-8px, -10px); }
  .work-bubble:nth-child(3) { transform: translate(12px, -5px); }
  .work-bubble:nth-child(4) { transform: translate(-10px, 8px); }

  [data-size="small"] .bubble-sphere,
  [data-size="medium"] .bubble-sphere,
  [data-size="large"] .bubble-sphere,
  [data-size="xlarge"] .bubble-sphere {
    width: clamp(110px, 34vw, 170px) !important;
    height: clamp(110px, 34vw, 170px) !important;
  }

  .bubble-info { max-width: 150px; }
  .bubble-info .bubble-client { font-size: 8px; letter-spacing: 1.5px; }
  .bubble-info .bubble-name { font-size: 13px; }

  .bubble-detail {
    position: fixed;
    top: 50% !important;
    left: 50% !important;
    width: calc(100vw - 48px);
    max-width: 400px;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 100;
  }

  .work-subtext {
    font-size: 14px;
    margin-top: 28px;
  }

  .services-panels {
    flex-direction: column;
    height: auto;
    gap: 0;
    padding: 0 16px;
  }

  .svc-panel {
    flex: none !important;
    height: auto;
    min-height: 56px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: min-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .svc-panel.active {
    min-height: 280px;
  }

  .svc-accent {
    width: 100%;
    height: 2px;
    top: 0;
    left: 0;
  }

  .svc-collapsed {
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
    padding: 16px 20px;
  }

  .svc-title-vert {
    writing-mode: horizontal-tb;
    font-size: 14px;
  }

  .svc-expanded {
    padding: 56px 20px 28px;
  }

  .svc-num-big {
    font-size: 48px;
    top: 8px;
    right: 16px;
  }

  .we-build {
    height: 45vh;
  }

  .we-build-heading,
  .we-build-list {
    font-size: clamp(24px, 6vw, 40px);
  }

  .process-flow { padding-top: 48px; }
  .process-label { font-size: clamp(22px, 5vw, 32px); margin-bottom: 36px; }

  .process-timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .process-track {
    top: 0;
    bottom: 0;
    left: 20px;
    right: auto;
    width: 2px;
    height: 100%;
  }

  .process-track-fill {
    width: 100% !important;
    height: 0%;
    transition: height 1s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .process-node {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    padding-bottom: 32px;
  }

  .process-dot {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .process-card { max-width: none; }

  .press-mosaic {
    grid-template-columns: 1fr;
  }

  .press-feature {
    min-height: 360px;
  }

  .press-side {
    flex-direction: column;
  }

  .press-card {
    flex-direction: row;
    align-items: center;
  }

  .press-thumb {
    width: 140px;
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .hero-logo-lockup {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .hero-logo-portal { width: 80px; }
  .hero-logo-text-img { height: clamp(50px, 10vw, 70px); }

  .work-arc-svg {
    width: 90vw;
  }

  .work-arc-svg text {
    font-size: 30px;
    letter-spacing: 4px;
  }

  .work-bubbles {
    gap: 4px 0;
  }

  .work-bubble:nth-child(1),
  .work-bubble:nth-child(2),
  .work-bubble:nth-child(3),
  .work-bubble:nth-child(4) {
    transform: translate(0, 0);
  }

  [data-size="small"] .bubble-sphere,
  [data-size="medium"] .bubble-sphere,
  [data-size="large"] .bubble-sphere,
  [data-size="xlarge"] .bubble-sphere {
    width: clamp(100px, 32vw, 140px) !important;
    height: clamp(100px, 32vw, 140px) !important;
  }

  .bubble-info { max-width: 130px; }
  .bubble-info .bubble-client { font-size: 7px; }
  .bubble-info .bubble-name { font-size: 11px; }

  .bubble-detail {
    width: calc(100vw - 32px);
    padding: 28px;
  }

  .bubble-desc { font-size: 13px; }
  .bubble-tags span { font-size: 9px; padding: 3px 9px; }

  .brands-grid {
    gap: 28px;
  }

  .brands-grid img { height: 24px; }
  .brands-grid img[alt="NVIDIA"] { height: 60px; }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-nav {
    gap: 40px;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .press-side {
    flex-direction: column;
  }

  .press-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .press-thumb {
    width: 100%;
    min-width: unset;
  }

  .press-feature {
    min-height: 280px;
  }

  .press-feature-content {
    padding: 24px;
  }

  .press-feature-content .press-excerpt {
    display: none;
  }
}
