/* Base */
:root {
  /* Neutral, more official palette */
  --bg: #0c111a;
  --panel: #101826;
  --surface: #0f1422;
  --border: rgba(255,255,255,0.08);
  --muted: #9aa5b1;
  --text: #e6edf7;
  --brand: #4f6bdc; /* indigo */
  --brand-700: #3e57c7;
  --accent: #4f6bdc;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Subtle animated background - Scale AI style */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(600px circle at 20% 30%, rgba(106, 160, 255, 0.08) 0%, transparent 50%),
    radial-gradient(800px circle at 80% 60%, rgba(138, 106, 255, 0.06) 0%, transparent 50%),
    radial-gradient(400px circle at 40% 80%, rgba(79, 107, 220, 0.04) 0%, transparent 50%);
  animation: subtle-float 15s ease-in-out infinite alternate;
  z-index: -1;
  pointer-events: none;
}

@keyframes subtle-float {
  0% { 
    transform: translate(0, 0) scale(1);
  }
  33% { 
    transform: translate(10px, -10px) scale(1.02);
  }
  66% { 
    transform: translate(-5px, 5px) scale(0.98);
  }
  100% { 
    transform: translate(0, 0) scale(1);
  }
}

/* Typography rendering */
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

a { color: var(--text); text-decoration: none; }
.muted { color: var(--muted); }
.button {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid #263251;
  background: #0f1424;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  transition: all 200ms ease;
  position: relative;
  overflow: hidden;
}
.button:hover { 
  transform: translateY(-2px); 
  border-color: #344266; 
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.button:focus-visible { outline: none; box-shadow: 0 0 0 3px #6aa0ff55, 0 0 0 6px #6aa0ff22; }
.button.primary { 
  background: var(--accent); 
  border-color: transparent; 
  color: white; 
  box-shadow: 0 10px 24px rgba(79,107,220,0.25);
  font-weight: 600;
}
.button.primary:hover { 
  filter: brightness(1.04); 
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(79,107,220,0.35);
}
.button.ghost { background: transparent; border-color: rgba(255,255,255,0.1); }
.button.ghost:hover { 
  background: rgba(255,255,255,0.05); 
  border-color: rgba(255,255,255,0.2);
}

.container { width: min(1100px, 92%); margin: 0 auto; }

@media (max-width: 600px) {
  .container { width: min(1100px, 90%); }
}
.section { padding: 80px 0; }
.section.alt { 
  background: transparent; 
  position: relative;
}

/* Fix Technology section positioning to avoid color transition */
#work.section.alt {
  padding-top: 100px;
}

#work.section.alt h2 {
  margin-top: 20px;
}
.section h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff, #e7edf5 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

/* Header */
.site-header { position: sticky; top: 0; z-index: 20; backdrop-filter: saturate(1.1) blur(10px); background: rgba(12,17,26,0.7); border-bottom: 1px solid var(--border); }

/* Logo Styling */
.brand img {
  height: 35px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.footer-logo {
  height: 32px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.9;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  background: rgba(16, 24, 38, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 0;
  backdrop-filter: blur(8px);
}

.breadcrumb {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  margin: 0 12px;
  color: var(--muted);
  font-weight: 400;
}

.breadcrumb-item a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: var(--text);
}

.breadcrumb-item.active {
  color: var(--accent);
  font-weight: 500;
}

/* Mobile responsive breadcrumb */
@media (max-width: 768px) {
  .breadcrumb-nav {
    padding: 8px 0;
  }
  
  .breadcrumb {
    font-size: 13px;
  }
  
  .breadcrumb-item + .breadcrumb-item::before {
    margin: 0 8px;
  }
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.brand { 
  display: flex;
  align-items: center;
  font-weight: 700; 
  letter-spacing: 0.2px; 
  transition: all 0.3s ease;
  text-decoration: none;
}

.brand img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: brightness(0.95) contrast(1.1);
  transition: all 0.3s ease;
}

.brand:hover img {
  filter: brightness(1) contrast(1.2);
  transform: scale(1.03);
  opacity: 1;
}
.site-nav { display: flex; gap: 18px; align-items: center; }
.site-nav a { color: var(--muted); }
.site-nav a.cta { color: white; background: var(--accent); padding: 8px 12px; border-radius: 8px; box-shadow: 0 6px 18px #6aa0ff2a; }
.site-nav a.cta:hover { filter: brightness(1.06); }

.nav-toggle { display: none; background: transparent; border: 0; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; margin: 5px 0; background: var(--text); }

/* Hero */
.hero { padding: 120px 0 80px; position: relative; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1200px; }
.hero-art { 
  position: relative; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  width: 100%;
  height: 400px;
  min-height: 400px;
  flex-shrink: 0;
}

#tshirt-3d { 
  width: 100%; 
  height: 100%; 
  max-width: 500px; 
  max-height: 500px;
}
#tshirt-canvas { 
  border-radius: 16px; 
  width: 100% !important; 
  height: 100% !important;
  display: block;
}



.showcase-3d {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.tshirt-container {
  width: 100%;
  height: 500px;
  max-width: 500px;
  position: relative;
  background: radial-gradient(circle at center, rgba(106, 160, 255, 0.05) 0%, transparent 70%);
  border: 1px solid rgba(106, 160, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
}

#tshirt-showcase-canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Modern Clothing Showcase */
.clothing-showcase {
  width: 100%;
  height: 500px;
  max-width: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 800px;
}

.tshirt-stack {
  position: relative;
  width: 300px;
  height: 380px;
  transform-style: preserve-3d;
  animation: smooth-rotation 15s linear infinite;
}

.tshirt-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.tshirt-back {
  background: linear-gradient(145deg, 
    rgba(42, 53, 68, 0.3) 0%,
    rgba(26, 31, 46, 0.3) 100%);
  border-radius: 80px 80px 20px 20px;
  transform: translateZ(-10px) rotateY(180deg);
  opacity: 0.6;
}

.tshirt-main {
  background: linear-gradient(145deg, 
    #2a3544 0%,
    #1a1f2e 50%,
    #151821 100%);
  border-radius: 80px 80px 20px 20px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 2px 8px rgba(255, 255, 255, 0.1),
    0 0 30px rgba(106, 160, 255, 0.2);
  transform: translateZ(0px);
}

.tshirt-front {
  background: linear-gradient(145deg, 
    rgba(42, 53, 68, 0.8) 0%,
    rgba(26, 31, 46, 0.8) 100%);
  border-radius: 80px 80px 20px 20px;
  transform: translateZ(5px);
  opacity: 0.9;
}

.brand-logo {
  position: absolute;
  top: 40%;
  left: 35%;
  width: 30%;
  height: 12%;
  background: rgba(106, 160, 255, 0.9);
  border-radius: 6px;
  transform: translateZ(6px);
  animation: logo-pulse 3s ease-in-out infinite alternate;
  box-shadow: 0 0 20px rgba(106, 160, 255, 0.6);
}

.scan-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.9) 50%, 
    transparent 100%);
  animation: vertical-scan 4s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

.data-points {
  position: absolute;
  width: 100%;
  height: 100%;
}

.data-point {
  position: absolute;
  animation: fade-in-point 0.8s ease-out forwards;
  opacity: 0;
}

.data-point:nth-child(1) { animation-delay: 1s; }
.data-point:nth-child(2) { animation-delay: 2s; }
.data-point:nth-child(3) { animation-delay: 3s; }

.point {
  width: 10px;
  height: 10px;
  background: rgba(0, 255, 255, 0.9);
  border-radius: 50%;
  animation: point-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
  position: relative;
}

.label {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 31, 46, 0.95);
  color: rgba(0, 255, 255, 1);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid rgba(0, 255, 255, 0.3);
}

/* Fit Prediction Showcase */
.showcase-visualization {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.fit-prediction-demo {
  position: relative;
  width: 280px;
  height: 400px;
  border: 2px solid rgba(106, 160, 255, 0.3);
  border-radius: 16px;
  background: linear-gradient(145deg, 
    rgba(106, 160, 255, 0.03) 0%,
    rgba(138, 106, 255, 0.02) 100%);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(106, 160, 255, 0.1);
}

.body-silhouette {
  position: absolute;
  top: 5%;
  left: 25%;
  width: 50%;
  height: 85%;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(106, 160, 255, 0.4);
  border-radius: 60px 60px 20px 20px;
  animation: silhouette-glow 4s ease-in-out infinite alternate;
}

.measurement-overlay {
  position: absolute;
  width: 120%;
  left: -10%;
  height: 100%;
}

.measurement {
  position: absolute;
  width: 100%;
  animation: measurement-appear 0.8s ease-out forwards;
  opacity: 0;
}

.measurement:nth-child(1) { animation-delay: 1.5s; }
.measurement:nth-child(2) { animation-delay: 2.5s; }
.measurement:nth-child(3) { animation-delay: 3.5s; }

.measure-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(0, 255, 255, 0.8) 0%, 
    rgba(106, 160, 255, 0.8) 100%);
  position: relative;
  animation: line-scan 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
}

.measure-line::before,
.measure-line::after {
  content: '';
  position: absolute;
  top: -4px;
  width: 2px;
  height: 10px;
  background: rgba(0, 255, 255, 0.9);
}

.measure-line::before { left: 0; }
.measure-line::after { right: 0; }

.measure-text {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 31, 46, 0.9);
  color: rgba(0, 255, 255, 1);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid rgba(0, 255, 255, 0.3);
}

.fit-confidence {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  text-align: center;
}

.confidence-meter {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.meter-fill {
  height: 100%;
  width: 94%;
  background: linear-gradient(90deg, 
    rgba(0, 255, 255, 0.8) 0%, 
    rgba(106, 160, 255, 0.8) 100%);
  animation: fill-meter 2s ease-out 4s forwards;
  transform: translateX(-100%);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.confidence-text {
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 255, 255, 1);
  animation: text-appear 0.5s ease-out 6s forwards;
  opacity: 0;
}

/* Clean Animation System */
@keyframes smooth-rotation {
  0% { transform: rotateY(0deg) rotateX(3deg); }
  100% { transform: rotateY(360deg) rotateX(3deg); }
}

@keyframes logo-pulse {
  0% { 
    box-shadow: 0 0 20px rgba(106, 160, 255, 0.6);
    background: rgba(106, 160, 255, 0.9);
  }
  100% { 
    box-shadow: 0 0 30px rgba(106, 160, 255, 0.9);
    background: rgba(106, 160, 255, 1);
  }
}

@keyframes tshirt-rotate {
  0% { transform: translate(-50%, -50%) rotateY(0deg); }
  100% { transform: translate(-50%, -50%) rotateY(360deg); }
}

@keyframes silhouette-glow {
  0% { border-color: rgba(106, 160, 255, 0.4); }
  100% { border-color: rgba(0, 255, 255, 0.6); }
}

@keyframes measurement-appear {
  from { 
    opacity: 0;
    transform: translateY(10px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes line-scan {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(1.05); }
}

@keyframes fill-meter {
  to { transform: translateX(0); }
}

@keyframes text-appear {
  to { opacity: 1; }
}

/* Luxury Enhancement Styles */
.luxury-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.luxury-card {
  background: linear-gradient(145deg, 
    rgba(106, 160, 255, 0.08) 0%,
    rgba(138, 106, 255, 0.05) 50%,
    rgba(255, 106, 178, 0.03) 100%);
  border: 1px solid rgba(106, 160, 255, 0.3);
  box-shadow: 
    0 16px 40px rgba(106, 160, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.luxury-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 24px 60px rgba(106, 160, 255, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.luxury-showcase-stats {
  display: flex;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.luxury-stat {
  background: linear-gradient(145deg, 
    rgba(106, 160, 255, 0.1) 0%,
    rgba(138, 106, 255, 0.05) 100%);
  border: 1px solid rgba(106, 160, 255, 0.4);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  min-width: 140px;
  backdrop-filter: blur(10px);
}

.luxury-stat strong {
  font-size: 18px;
  font-weight: 700;
  color: rgba(106, 160, 255, 1);
  letter-spacing: 0.02em;
}

.luxury-stat span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

.luxury-cta {
  background: linear-gradient(135deg, 
    rgba(106, 160, 255, 0.9) 0%, 
    rgba(138, 106, 255, 0.9) 100%);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 8px 32px rgba(106, 160, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.luxury-cta:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 40px rgba(106, 160, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.luxury-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.luxury-stats li {
  background: linear-gradient(145deg, 
    rgba(106, 160, 255, 0.06) 0%,
    rgba(138, 106, 255, 0.03) 100%);
  border: 1px solid rgba(106, 160, 255, 0.2);
  border-radius: 8px;
  padding: 16px 20px;
}

.luxury-stats li strong {
  color: rgba(106, 160, 255, 1);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Remove old complex styles */
.professional-tshirt-container {
  width: 100%;
  height: 500px;
  max-width: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tshirt-visualization {
  position: relative;
  width: 300px;
  height: 400px;
  animation: gentle-rotation 20s linear infinite;
}

.tshirt-silhouette {
  position: relative;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(106, 160, 255, 0.4));
}

.tshirt-body {
  position: absolute;
  top: 20%;
  left: 25%;
  width: 50%;
  height: 60%;
  background: linear-gradient(145deg, 
    rgba(106, 160, 255, 0.1) 0%,
    rgba(138, 106, 255, 0.1) 50%,
    rgba(255, 106, 178, 0.1) 100%);
  border: 2px solid rgba(106, 160, 255, 0.6);
  border-radius: 0 0 20px 20px;
  animation: holographic-pulse 3s ease-in-out infinite alternate;
}

.tshirt-sleeves {
  position: absolute;
  top: 20%;
  width: 100%;
  height: 30%;
}

.sleeve {
  position: absolute;
  width: 25%;
  height: 60%;
  background: linear-gradient(145deg, 
    rgba(106, 160, 255, 0.08) 0%,
    rgba(138, 106, 255, 0.08) 100%);
  border: 2px solid rgba(106, 160, 255, 0.5);
  border-radius: 10px;
  animation: sleeve-pulse 3s ease-in-out infinite alternate;
}

.sleeve.left {
  left: 0;
  transform: rotate(-15deg);
  animation-delay: 0.5s;
}

.sleeve.right {
  right: 0;
  transform: rotate(15deg);
  animation-delay: 1s;
}

.tshirt-collar {
  position: absolute;
  top: 15%;
  left: 40%;
  width: 20%;
  height: 15%;
  border: 2px solid rgba(106, 160, 255, 0.7);
  border-radius: 50% 50% 0 0;
  background: rgba(106, 160, 255, 0.05);
  animation: collar-glow 2s ease-in-out infinite alternate;
}

.scanning-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.8) 50%, 
    transparent 100%);
  animation: vertical-scan 4s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.measurement-points {
  position: absolute;
  width: 100%;
  height: 100%;
}

.point {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(0, 255, 255, 0.9);
  border-radius: 50%;
  animation: point-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

.point-1 { top: 25%; left: 30%; animation-delay: 0s; }
.point-2 { top: 40%; left: 70%; animation-delay: 0.5s; }
.point-3 { top: 65%; left: 25%; animation-delay: 1s; }
.point-4 { top: 75%; left: 75%; animation-delay: 1.5s; }

.holographic-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(106, 160, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(106, 160, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  animation: grid-shift 8s linear infinite;
  border-radius: 12px;
}

/* Professional AI Fitting Demo */
.showcase-visualization {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.ai-fitting-demo {
  position: relative;
  width: 300px;
  height: 400px;
  border: 2px solid rgba(106, 160, 255, 0.3);
  border-radius: 12px;
  background: linear-gradient(145deg, 
    rgba(106, 160, 255, 0.02) 0%,
    rgba(138, 106, 255, 0.02) 100%);
  overflow: hidden;
}

.body-outline {
  position: absolute;
  top: 10%;
  left: 30%;
  width: 40%;
  height: 80%;
  border: 2px solid rgba(106, 160, 255, 0.4);
  border-radius: 50px 50px 20px 20px;
  background: rgba(106, 160, 255, 0.05);
}

.measurement-line {
  position: absolute;
  left: -20px;
  right: -20px;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(0, 255, 255, 0.8) 0%, 
    rgba(106, 160, 255, 0.8) 100%);
  top: var(--position);
  animation: measurement-scan 3s ease-in-out infinite;
  animation-delay: var(--delay);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.fit-analysis {
  position: absolute;
  width: 100%;
  height: 100%;
}

.analysis-point {
  position: absolute;
  animation: fade-in-point 0.5s ease-out forwards;
  animation-delay: var(--delay);
  opacity: 0;
}

.point-pulse {
  width: 12px;
  height: 12px;
  background: rgba(0, 255, 255, 0.9);
  border-radius: 50%;
  animation: analysis-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.7);
}

.point-label {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 31, 46, 0.9);
  color: rgba(106, 160, 255, 1);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid rgba(106, 160, 255, 0.3);
}

/* Professional Animations */
@keyframes mannequin-rotation {
  0% { transform: rotateY(0deg) rotateX(5deg); }
  50% { transform: rotateY(180deg) rotateX(-5deg); }
  100% { transform: rotateY(360deg) rotateX(5deg); }
}

@keyframes fabric-subtle-movement {
  0% { 
    border-color: rgba(106, 160, 255, 0.6);
    box-shadow: inset 0 0 20px rgba(106, 160, 255, 0.1);
  }
  100% { 
    border-color: rgba(0, 255, 255, 0.8);
    box-shadow: inset 0 0 30px rgba(0, 255, 255, 0.2);
  }
}

@keyframes sleeve-pulse {
  0% { opacity: 0.8; transform: translateY(0) rotate(-15deg); }
  100% { opacity: 1; transform: translateY(-2px) rotate(-15deg); }
}

@keyframes collar-glow {
  0% { box-shadow: 0 0 10px rgba(106, 160, 255, 0.5); }
  100% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.8); }
}

@keyframes vertical-scan {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

@keyframes point-pulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.8;
  }
  50% { 
    transform: scale(1.3);
    opacity: 1;
  }
}

@keyframes grid-shift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(20px, 20px); }
}

@keyframes measurement-scan {
  0% { 
    transform: scaleX(0);
    opacity: 0;
  }
  20% { 
    transform: scaleX(1);
    opacity: 1;
  }
  80% { 
    transform: scaleX(1);
    opacity: 1;
  }
  100% { 
    transform: scaleX(0);
    opacity: 0;
  }
}

@keyframes analysis-pulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.9;
  }
  50% { 
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes fade-in-point {
  from { 
    opacity: 0;
    transform: translateY(10px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}
.hero h1 { 
  font-size: clamp(36px, 5.2vw, 60px); 
  line-height: 1.06; 
  margin: 0 0 18px; 
  font-weight: 700;
  color: var(--text);
}
.hero p { 
  color: var(--muted); 
  margin: 0 0 32px; 
  max-width: 52ch; 
  font-size: 18px;
  line-height: 1.6;
}
.hero .actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.gradient-orb { 
  width: clamp(280px, 45vw, 500px); 
  aspect-ratio: 1/1; 
  border-radius: 50%; 
  background: radial-gradient(circle at 30% 30%, #6aa0ff, transparent 40%), 
              radial-gradient(circle at 70% 60%, #8a6aff, transparent 40%), 
              radial-gradient(circle at 50% 50%, #ff6ab2, transparent 45%); 
  filter: blur(16px) saturate(1.3); 
  box-shadow: 0 0 200px #6aa0ff44, 0 0 150px #8a6aff33, inset 0 0 80px #ffffff33;
  animation: pulse 4s ease-in-out infinite, float 6s ease-in-out infinite;
  position: relative;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); filter: blur(16px) saturate(1.3); }
  50% { transform: scale(1.05); filter: blur(18px) saturate(1.4); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(2deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}

/* AI Showcase */
.ai-showcase { 
  padding: 100px 0; 
  background: transparent; 
}

.showcase-cta {
  margin-top: 32px;
}

.showcase-content { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 60px; 
  align-items: center; 
}

.showcase-text h2 { 
  margin-bottom: 24px;
  font-size: clamp(32px, 4vw, 48px);
}

.showcase-text p { 
  font-size: 19px; 
  line-height: 1.6; 
  margin-bottom: 40px; 
  max-width: 520px;
}

.showcase-stats { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px; 
  margin-bottom: 40px;
  padding: 24px;
}

.stat-item { 
  text-align: center; 
}

.stat-item strong { 
  display: block;
  font-size: 24px; 
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand), #6aa0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-item span { 
  font-size: 12px; 
  color: var(--muted); 
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.showcase-3d {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.tshirt-container {
  width: 100%;
  height: 500px;
  max-width: 500px;
  position: relative;
  background: radial-gradient(circle at center, rgba(106, 160, 255, 0.05) 0%, transparent 70%);
  border: 1px solid rgba(106, 160, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
}

#tshirt-showcase-canvas {
  width: 100% !important;
  height: 100% !important;
  border-radius: 20px;
}



/* Testimonials */
.testimonials { background: transparent; }
.testimonials-header { text-align: center; margin-bottom: 60px; max-width: 600px; margin-left: auto; margin-right: auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 60px; }
.testimonial-card {
  background: var(--panel);
  border: 1px solid #1a2340;
  padding: 32px;
  border-radius: 20px;
  position: relative;
  transition: all 300ms ease;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-size: 60px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(106, 160, 255, 0.3);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15), 0 0 30px rgba(106, 160, 255, 0.1);
}
.testimonial-content {
  margin-bottom: 24px;
  padding-top: 20px;
}
.testimonial-content p {
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.avatar-placeholder {
  font-weight: 700;
  color: white;
  font-size: 18px;
}
.author-info strong {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}
.author-info .muted {
  font-size: 14px;
}

/* Partners */
.partners-section {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.partners-label {
  margin-bottom: 20px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(106, 160, 255, 0.03) 0%, rgba(138, 106, 255, 0.02) 100%);
  border: 1px solid rgba(106, 160, 255, 0.1);
  border-radius: 16px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.partner-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: left 0.6s ease;
}

.partner-item:hover::before {
  left: 100%;
}

.partner-item:hover {
  background: linear-gradient(135deg, rgba(106, 160, 255, 0.08) 0%, rgba(138, 106, 255, 0.05) 100%);
  border-color: rgba(106, 160, 255, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(106, 160, 255, 0.15);
}

.partner-item strong {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  letter-spacing: -0.01em;
}

.partner-item span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Partners section styling */
.partners-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.005);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.partners-header {
  text-align: center;
  margin-bottom: 60px;
}

.partners-header h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.partners-header p {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.partner-logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-weight: 700;
  font-size: 18px;
}

.partners-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.partner-stat {
  text-align: center;
}

.partner-stat strong {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.partner-stat span {
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
  color: var(--muted);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.partner-logo .logo-name { 
  font-weight: 700; 
  color: var(--text); 
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.partner-logo:hover { 
  border-color: rgba(255,255,255,0.14); 
  box-shadow: 0 10px 26px rgba(0,0,0,0.2); 
  transform: translateY(-2px);
}

/* Partners Section - Scale AI Style Marquee */
.partners-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255,255,255,0.01) 10%, 
    rgba(255,255,255,0.01) 90%, 
    transparent 100%);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 60px 0;
  margin-bottom: 60px;
}

.partners-marquee::before,
.partners-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partners-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}

.partners-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  animation: marquee-scroll 50s linear infinite;
  gap: 100px;
  white-space: nowrap;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-logo-item {
  flex: 0 0 auto;
  padding: 0 40px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.6;
}

.partner-logo-item:hover {
  opacity: 1;
  transform: scale(1.08);
}

.partner-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 240px;
}

.partner-name {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ffffff, rgba(106, 160, 255, 0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.8px;
  font-family: system-ui, -apple-system, sans-serif;
}

.partner-desc {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.7;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* Pause animation on hover */
.partners-marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* Application Form Styles */
.application-section {
  background: rgba(255, 255, 255, 0.005);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.application-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(106, 160, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.form-group small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
  opacity: 0.8;
}

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

.submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 16px;
}

/* Position Cards */
.positions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.position-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.position-card:hover {
  border-color: rgba(106, 160, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.position-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 16px;
}

.position-meta {
  flex: 1;
}

.position-category {
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.position-type {
  font-size: 14px;
  color: var(--muted);
}

.salary-range {
  font-size: 14px;
  color: var(--text);
  background: rgba(106, 160, 255, 0.1);
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  font-weight: 600;
}

.position-card h3 {
  font-size: 24px;
  color: var(--text);
  margin-bottom: 12px;
  font-weight: 600;
}

.position-summary {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
  font-size: 15px;
}

/* Filters */
.filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.dept-filter {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--muted);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.dept-filter:hover,
.dept-filter.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* Partnership Section */
.partnership-section {
  background: rgba(106, 160, 255, 0.03);
  border-top: 1px solid rgba(106, 160, 255, 0.1);
  border-bottom: 1px solid rgba(106, 160, 255, 0.1);
}

.partnership-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.partnership-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(106, 160, 255, 0.2);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.partnership-card:hover {
  border-color: rgba(106, 160, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(106, 160, 255, 0.1);
}

.partnership-card h4 {
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
}

.partnership-card p {
  color: var(--text);
  line-height: 1.6;
  opacity: 0.9;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}

.benefit-item h4 {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}

.benefit-item p {
  color: var(--muted);
  line-height: 1.6;
}

/* Enhanced Hero Section for Careers */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  padding: 100px 0;
}

.hero-content {
  max-width: none;
}

.hero-description {
  margin: 32px 0;
}

.hero-description p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.highlight-item strong {
  color: var(--accent);
  font-size: 16px;
  font-weight: 600;
}

.highlight-item span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Fashion Animation */
.hero-animation {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  position: relative;
}

.fashion-animation {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clothing-item {
  position: absolute;
  width: 80px;
  height: 80px;
  color: rgba(106, 160, 255, 0.8);
  animation: float-orbit 8s ease-in-out infinite;
}

.clothing-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px rgba(106, 160, 255, 0.4));
}

.tshirt {
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.body {
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
  animation-delay: -2s;
  color: rgba(138, 106, 255, 0.9);
}

.dress {
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: -4s;
  color: rgba(79, 107, 220, 0.7);
}

.measurement-lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

.measure-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(106, 160, 255, 0.6), transparent);
  height: 2px;
  animation: scan-line 3s linear infinite;
}

.line-1 {
  top: 30%;
  width: 60%;
  left: 20%;
  animation-delay: 0s;
}

.line-2 {
  top: 50%;
  width: 80%;
  left: 10%;
  animation-delay: 1s;
}

.line-3 {
  top: 70%;
  width: 50%;
  left: 25%;
  animation-delay: 2s;
}

.scan-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(106, 160, 255, 0.1) 45%, 
    rgba(106, 160, 255, 0.3) 50%, 
    rgba(106, 160, 255, 0.1) 55%, 
    transparent 100%);
  height: 4px;
  animation: vertical-scan 4s ease-in-out infinite;
}

@keyframes float-orbit {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.8;
  }
  25% { 
    transform: translateY(-15px) rotate(5deg) scale(1.1);
    opacity: 1;
  }
  50% { 
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.8;
  }
  75% { 
    transform: translateY(10px) rotate(-5deg) scale(0.9);
    opacity: 0.6;
  }
}

@keyframes scan-line {
  0% { 
    opacity: 0;
    transform: scaleX(0);
  }
  50% { 
    opacity: 1;
    transform: scaleX(1);
  }
  100% { 
    opacity: 0;
    transform: scaleX(0);
  }
}

@keyframes vertical-scan {
  0% { 
    top: 0;
    opacity: 0;
  }
  10% { 
    opacity: 1;
  }
  90% { 
    opacity: 1;
  }
  100% { 
    top: 100%;
    opacity: 0;
  }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-animation {
    height: 300px;
  }
  
  .fashion-animation {
    width: 250px;
    height: 250px;
  }
  
  .clothing-item {
    width: 60px;
    height: 60px;
  }
}

/* Content */
.cols-2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { 
  background: var(--panel); 
  border: 1px solid #1a2340; 
  padding: 24px; 
  border-radius: 16px; 
  transition: all 300ms ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(106, 160, 255, 0.3), transparent);
  transition: opacity 300ms ease;
  opacity: 0;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(106, 160, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 0 20px rgba(106, 160, 255, 0.1);
}
.card:hover::before {
  opacity: 1;
}

.stats { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; }
.stats li { 
  display: grid; 
  gap: 4px; 
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.stats li:last-child { border-bottom: none; }
.stats li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: -20px;
  top: 20px;
}
.stats strong { 
  font-size: 20px; 
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, #e7edf5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.stats span { color: var(--muted); font-size: 14px; font-weight: 500; }

/* Footer */
.site-footer { 
  border-top: 1px solid rgba(255,255,255,0.06); 
  padding: 40px 0 60px; 
  margin-top: 40px; 
  background: var(--bg) !important;
  position: relative;
  z-index: 1;
}
.footer-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px 0;
  background: var(--bg);
}
.footer-nav { 
  display: flex; 
  gap: 24px; 
  align-items: center;
  background: var(--bg);
}
.footer-nav a { 
  color: var(--muted); 
  font-weight: 500;
  transition: color 200ms ease;
  font-size: 15px;
}
.footer-nav a:hover { color: var(--text); }
.site-footer small {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}

.footer-logo {
  height: 36px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.85;
  filter: brightness(0.9) contrast(1.1);
  transition: all 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
  filter: brightness(1) contrast(1.2);
}

/* Luxury Roche Bobois Style Careers Page */
.luxury-careers {
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* Clean Careers Page */
.careers-hero {
  padding: 80px 0 60px 0;
  text-align: center;
}

.careers-hero h1 {
  font-size: 48px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--muted);
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stats .stat {
  text-align: center;
}

.hero-stats .number {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
}

.hero-stats .label {
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Professional Job Listings */
.professional-jobs {
  padding: 60px 0;
}

.job-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--muted);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(106, 160, 255, 0.1);
}

.filter-btn.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.jobs-grid-clean {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.job-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.job-card:hover {
  transform: translateY(-4px);
  border-color: rgba(106, 160, 255, 0.3);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.job-card.hidden {
  display: none;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.job-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}

.job-type {
  background: rgba(106, 160, 255, 0.2);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.job-description {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.job-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Simple CTA */
.simple-cta {
  padding: 60px 0;
  text-align: center;
}

.simple-cta h2 {
  font-size: 28px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 32px;
}

.cta-button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #5a8cff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .careers-hero h1 {
    font-size: 36px;
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .jobs-grid-clean {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .job-card {
    padding: 24px;
  }
  
  .job-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  
  .job-filters {
    gap: 6px;
  }
  
  .filter-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* How It Works Section */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 800px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.step-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(106, 160, 255, 0.1);
  border: 2px solid var(--accent);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.step-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 20px;
}

.step-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.step-stats span {
  font-size: 14px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: var(--muted);
}

.step-stats strong {
  color: var(--accent);
  font-weight: 600;
}

/* Early Access Signup Form */
.signup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  padding: 20px;
  overflow-y: auto;
}

.signup-form-container {
  max-width: 500px;
  margin: 40px auto;
  background: var(--panel);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 24px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.signup-form h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  text-align: center;
}

.signup-form .subtitle {
  font-size: 16px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 32px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text);
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(106, 160, 255, 0.1);
}

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

/* AI Accuracy Chart - Improved Design */
.ai-accuracy-chart {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  padding: 40px 20px;
}

.chart-container {
  max-width: 600px;
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.chart-container h4 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.chart-visual {
  margin-bottom: 32px;
}

.accuracy-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}

.accuracy-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.accuracy-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.accuracy-item.featured {
  background: rgba(106, 160, 255, 0.08);
  border-color: rgba(106, 160, 255, 0.2);
  box-shadow: 0 4px 20px rgba(106, 160, 255, 0.1);
}

.accuracy-item.featured:hover {
  background: rgba(106, 160, 255, 0.12);
  border-color: rgba(106, 160, 255, 0.3);
}

.accuracy-bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1.5s ease-out;
  animation: fillAnimation 2s ease-out;
}

@keyframes fillAnimation {
  from { width: 0%; }
}

.accuracy-item.traditional .bar-fill {
  background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
}

.accuracy-item.improved .bar-fill {
  background: linear-gradient(90deg, #ffa726, #ffb74d);
}

.accuracy-item.ai .bar-fill {
  background: linear-gradient(90deg, var(--accent), #5a8cff);
  box-shadow: 0 0 10px rgba(106, 160, 255, 0.5);
}

.accuracy-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 140px;
  text-align: right;
}

.method {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.percentage {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.accuracy-item.traditional .percentage {
  color: #ff8e8e;
}

.accuracy-item.improved .percentage {
  color: #ffb74d;
}

.improvement-stat {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.improvement-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--accent), #5a8cff);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(106, 160, 255, 0.3);
}

.improvement-number {
  font-size: 28px;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.improvement-text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

@media (max-width: 768px) {
  .ai-accuracy-chart {
    padding: 20px 10px;
  }
  
  .chart-container {
    padding: 24px 20px;
  }
  
  .chart-container h4 {
    font-size: 20px;
    margin-bottom: 28px;
  }
  
  .accuracy-item {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .accuracy-info {
    align-items: center;
    text-align: center;
    min-width: auto;
  }
  
  .accuracy-bar {
    width: 100%;
    order: 2;
  }
  
  .improvement-number {
    font-size: 24px;
  }
  
  .improvement-text {
    font-size: 12px;
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-description {
  font-size: 20px;
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
}

/* CTA Section Styling */
.how-it-works-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: rgba(106, 160, 255, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(106, 160, 255, 0.2);
}

.how-it-works-cta h3 {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 24px;
  font-weight: 600;
}

.how-it-works-cta p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 16px;
}

/* Form Styling */
.submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  margin-top: 10px;
}

.form-disclaimer {
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 768px) {
  .step-item {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin: 0 auto;
  }
  
  .step-stats {
    justify-content: center;
  }
  
  .signup-form-container {
    margin: 20px auto;
    padding: 30px 20px;
  }
  
  .process-steps {
    gap: 40px;
  }
}

.luxury-hero {
  padding: 120px 0;
}

.luxury-hero .hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  padding: 8px 20px;
  border: 1px solid rgba(106, 160, 255, 0.2);
  border-radius: 25px;
  background: rgba(106, 160, 255, 0.05);
}

.luxury-hero h1 {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 32px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.hero-stats .stat {
  text-align: center;
}

.hero-stats .stat strong {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.hero-stats .stat span {
  color: var(--muted);
  font-size: 14px;
}

.opportunities-overview {
  padding: 80px 0;
}

.opportunities-overview h2 {
  text-align: center;
  margin-bottom: 60px;
}

/* Featured Ambassador Program */
.featured-opportunity {
  margin-bottom: 80px;
}

.ambassador-card {
  background: linear-gradient(135deg, rgba(106, 160, 255, 0.1) 0%, rgba(138, 106, 255, 0.05) 100%);
  border: 2px solid rgba(106, 160, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.card-header h3 {
  font-size: 28px;
  margin: 0;
  color: var(--text);
}

.badge.featured {
  background: var(--accent);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.card-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--muted);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.benefit {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  text-align: center;
}

/* Career Categories */
.career-categories {
  margin-bottom: 80px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.category-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.category-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.category-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.category-card > p {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.roles {
  display: grid;
  gap: 16px;
}

.role-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.role-item strong {
  display: block;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 4px;
}

.role-item span {
  font-size: 14px;
  color: var(--muted);
}

.role-item .button {
  padding: 8px 16px;
  font-size: 14px;
}

/* General Application */
.general-application {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(106, 160, 255, 0.08) 0%, rgba(106, 160, 255, 0.03) 100%);
  border-radius: 20px;
  border: 1px solid rgba(106, 160, 255, 0.15);
  box-shadow: 0 8px 32px rgba(106, 160, 255, 0.1);
}

.general-application h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--accent);
}

.general-application p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.button.large {
  padding: 18px 36px;
  font-size: 18px;
  font-weight: 600;
}

/* Company Culture */
.company-culture {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.02);
}

.company-culture h2 {
  text-align: center;
  margin-bottom: 60px;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.culture-item {
  text-align: center;
  padding: 32px 20px;
}

.culture-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.culture-item h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.culture-item p {
  color: var(--muted);
  line-height: 1.6;
}

/* Company Info Section */
.company-info {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.company-stats {
  display: flex;
  justify-content: center;
}

.stat-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 48px;
  max-width: 800px;
}

.company-detail {
  text-align: center;
}

.detail-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.detail-value {
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* Luxury Stats Section */
.luxury-stats {
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 60px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Featured Section */
.featured-section {
  padding: 100px 0;
}

.featured-card {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}

.featured-header {
  margin-bottom: 24px;
}

.featured-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 4px 12px;
  border: 1px solid rgba(106, 160, 255, 0.3);
  border-radius: 1px;
}

.featured-card h2 {
  font-size: 36px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.featured-description {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 600px;
}

.featured-highlights {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.highlight {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1px;
}

/* Positions Section */
.positions-section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-header p {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
}

.positions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 48px;
}

.position-card {
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.005);
}

.position-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.01);
  transform: translateY(-2px);
}

.position-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.position-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.position-category {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.position-type {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
}

.salary-range {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 16px;
  border: 1px solid rgba(106, 160, 255, 0.2);
  border-radius: 20px;
  background: rgba(106, 160, 255, 0.05);
}

.position-card h3 {
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.position-summary {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 32px;
}

/* Position card is now clean - detailed info shown in modal */

/* Luxury Buttons */
.luxury-button {
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  border-radius: 1px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-height: 44px; /* iOS touch target minimum */
  min-width: 44px;
}

.luxury-button.primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.luxury-button.primary:hover {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.luxury-button.outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.luxury-button.outline:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.luxury-button.large {
  padding: 16px 32px;
  font-size: 16px;
}

/* Benefits Section */
.benefits-section {
  padding: 100px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  margin-top: 60px;
}

.benefit-item {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.005);
}

.benefit-item h4 {
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.benefit-item p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--muted);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 32px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.cta-content p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 32px;
}
.role-list { display: grid; gap: 16px; margin-top: 16px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.role-item { 
  display: flex; 
  flex-direction: column;
  align-items: stretch; 
  gap: 12px; 
  padding: 16px; 
  border-radius: 12px; 
  border: 1px solid #1a2340; 
  background: #0f1424; 
  transition: all 200ms ease;
  position: relative;
  overflow: hidden;
}
.role-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(106, 160, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 200ms ease;
}
.role-item:hover {
  transform: translateY(-2px);
  border-color: rgba(106, 160, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1), 0 0 15px rgba(106, 160, 255, 0.08);
}
.role-item:hover::before { opacity: 1; }
.role-item small { color: var(--muted); }
.role-item strong { color: var(--text); font-weight: 600; }

/* Pin Apply button to card footer */
.role-list .role-item { padding-bottom: 64px; }
.role-list .role-item a.button { position: absolute; bottom: 12px; right: 12px; }

/* Role descriptions */
.role-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.role-body { width: 100%; display: grid; gap: 8px; }
details.role-desc { margin-top: 8px; }
.role-desc summary {
  color: var(--muted);
  transition: color 0.2s ease;
  font-weight: 500;
  cursor: pointer;
}
.role-desc[open] summary {
  color: var(--text);
}
.role-desc ul {
  margin: 8px 0 0 16px;
  padding: 0;
}
.role-desc ul li {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}


/* File upload button */
.file-upload { display: flex; align-items: center; gap: 10px; }
.file-upload input[type="file"] { display: none; }
.file-upload .file-name { color: var(--muted); font-size: 14px; }

/* Ambassador Program Section */
.ambassador-program {
  background: linear-gradient(135deg, rgba(106, 160, 255, 0.05) 0%, rgba(79, 70, 229, 0.05) 100%);
  border-top: 1px solid rgba(106, 160, 255, 0.1);
}

.ambassador-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.ambassador-text .hero-text {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}

.ambassador-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(106, 160, 255, 0.1);
  border-radius: 12px;
}

.feature-item strong {
  color: var(--text);
  font-size: 16px;
}

.feature-item span {
  color: var(--muted);
  font-size: 14px;
}

.ambassador-form-container {
  position: sticky;
  top: 100px;
}

.ambassador-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(106, 160, 255, 0.2);
  padding: 40px;
}

.ambassador-form h3 {
  margin-bottom: 30px;
  color: var(--text);
  text-align: center;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text);
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

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

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

@media (max-width: 768px) {
  .ambassador-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .ambassador-form-container {
    position: static;
  }
  
  .ambassador-form {
    padding: 30px 20px;
  }
}

/* Contact card refinement */
.contact-card h2 { margin-top: 0; }
.contact-card .button.primary { margin-top: 8px; }

/* Hiring regions chips */
.chip-group { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 8px; }
.chip {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #2a3557;
  color: var(--muted);
  font-size: 12px;
  background: #0f1424;
  cursor: pointer;
  transition: all 150ms ease;
  font-weight: 500;
}
.chip:hover { border-color: #344266; background: rgba(255,255,255,0.03); }
.chip.active { border-color: var(--brand); color: var(--brand); background: rgba(106,160,255,0.1); box-shadow: 0 0 12px rgba(106,160,255,0.15); }
.chip:focus-visible { outline: none; box-shadow: 0 0 0 3px #6aa0ff55; }

/* Role filters */
.filters { display: grid; gap: 12px; margin: 12px 0 20px; padding: 16px; background: rgba(255,255,255,0.02); border-radius: 12px; border: 1px solid rgba(255,255,255,0.04); }
.filters-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.filters-row .chip-group { margin: 0; }
.filters-row small { font-weight: 500; min-width: 60px; }

/* Benefits */
.benefits-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.benefits-list li { position: relative; padding-left: 22px; }
.benefits-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand); }

/* FAQ */
.faq-item { border-top: 1px solid rgba(255,255,255,0.06); padding: 12px 0; }
.faq-item:first-of-type { border-top: 0; }
.faq-item summary { cursor: pointer; font-weight: 600; color: var(--text); }
.faq-item p { margin: 8px 0 0; color: var(--muted); }

/* Luxury Instagram Modeling Banner */
.ig-modeling-banner {
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.95) 0%, 
    rgba(20, 20, 35, 0.98) 50%, 
    rgba(0, 0, 0, 0.95) 100%);
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 15;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 32px;
  background: linear-gradient(135deg, 
    rgba(212, 175, 55, 0.05) 0%, 
    rgba(255, 255, 255, 0.02) 50%, 
    rgba(212, 175, 55, 0.05) 100%);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(30px);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.banner-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(212, 175, 55, 0.1) 50%, 
    transparent 100%);
  animation: luxury-shimmer 3s ease-in-out infinite;
}

@keyframes luxury-shimmer {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.luxury-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 80px;
}

.badge-icon {
  font-size: 28px;
  animation: crown-glow 2s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}

@keyframes crown-glow {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6)); }
  50% { transform: scale(1.1); filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.8)); }
}

.badge-text {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #d4af37;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.banner-text {
  flex: 1;
  text-align: center;
}

.banner-text h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 12px 0;
  background: linear-gradient(135deg, 
    #ffffff 0%, 
    #d4af37 30%, 
    #ffffff 60%, 
    #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  letter-spacing: -0.5px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

.banner-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 8px 0;
  font-weight: 500;
  line-height: 1.5;
}

.banner-text p strong {
  color: #d4af37;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.luxury-subtitle {
  font-size: 13px;
  color: rgba(212, 175, 55, 0.8);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.ig-button.luxury {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: linear-gradient(135deg, 
    #d4af37 0%, 
    #f4d03f 50%, 
    #d4af37 100%);
  color: #000;
  text-decoration: none;
  border-radius: 16px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.4s ease;
  box-shadow: 
    0 8px 32px rgba(212, 175, 55, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.6);
}

.ig-button.luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.2) 50%, 
    transparent 100%);
  transition: left 0.5s ease;
}

.ig-button.luxury:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 12px 48px rgba(212, 175, 55, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, 
    #f4d03f 0%, 
    #d4af37 50%, 
    #f4d03f 100%);
}

.ig-button.luxury:hover::before {
  left: 100%;
}

.ig-icon {
  font-size: 18px;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.3));
}

.arrow {
  font-size: 16px;
  font-weight: 900;
  transition: transform 0.3s ease;
}

.ig-button.luxury:hover .arrow {
  transform: translateX(4px);
}

/* Mobile styling for luxury banner */
@media (max-width: 768px) {
  .ig-modeling-banner {
    padding: 20px 0;
  }
  
  .banner-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 24px 20px;
  }
  
  .luxury-badge {
    margin-bottom: 8px;
  }
  
  .badge-icon {
    font-size: 24px;
  }
  
  .banner-text h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  .banner-text p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .luxury-subtitle {
    font-size: 12px;
  }
  
  .ig-button.luxury {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
    font-size: 16px;
    gap: 10px;
  }
}

/* Responsive */
@media (max-width: 860px) {
  .hero { padding: 80px 0 60px; }
  .hero-inner, .cols-2 { grid-template-columns: 1fr; gap: 32px; }
  .hero-art { 
    order: -1; 
    height: 350px; 
    min-height: 350px; 
  }
  #tshirt-3d { 
    max-width: 350px; 
    max-height: 350px; 
  }
  .grid, .testimonials-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats { grid-template-columns: 1fr; }
  .showcase-content { grid-template-columns: 1fr; gap: 40px; }
  .showcase-stats { grid-template-columns: 1fr; gap: 16px; padding: 20px; }
  .partners-marquee { padding: 40px 0; }
  .partner-name { font-size: 24px; }
  .marquee-track { gap: 80px; }
  .tshirt-container { height: 350px; }
}

/* Mobile Navigation - Separate media query for better mobile support */
@media (max-width: 768px) {
  /* Improve touch targets and spacing */
  .hero-inner { padding: 60px 0; }
  .section { padding: 60px 0; }
  .feature-card { padding: 32px 24px; }
  .step-item { padding: 32px 24px; }
  .faq-item { margin-bottom: 16px; }
  .faq-item summary { padding: 16px 0; font-size: 16px; }
  
  /* Better mobile typography */
  h2 { font-size: 28px; line-height: 1.2; margin-bottom: 24px; }
  h3 { font-size: 22px; line-height: 1.3; }
  p { font-size: 16px; line-height: 1.5; }
  
  /* Better button sizing */
  .button { min-height: 44px; }
  .hero-copy h1 { line-height: 1.2; }
  .hero-copy .subtitle { line-height: 1.4; }
  
  /* Mobile Navigation */
  .site-nav { 
    display: none; 
    position: absolute; 
    right: 20px; 
    top: 70px; 
    padding: 20px; 
    background: rgba(11,15,26,0.98); 
    border: 2px solid rgba(106, 160, 255, 0.3); 
    border-radius: 16px; 
    flex-direction: column; 
    gap: 16px;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    z-index: 9999;
    min-width: 220px;
    max-width: 280px;
  }
  .nav-toggle { 
    display: block; 
    cursor: pointer; 
    padding: 12px 8px;
    margin-right: -8px;
    z-index: 10000;
    position: relative;
  }
  .nav-toggle span {
    background: var(--text);
    width: 24px;
    height: 3px;
    display: block;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .site-header[aria-expanded="true"] .nav-toggle span:nth-child(1),
  .site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .site-header[aria-expanded="true"] .nav-toggle span:nth-child(2),
  .site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .site-header[aria-expanded="true"] .nav-toggle span:nth-child(3),
  .site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  .site-header[aria-expanded="true"] .site-nav,
  .site-header.nav-open .site-nav { 
    display: flex !important; 
    opacity: 1;
    transform: translateY(0);
    animation: slideDown 0.3s ease-out;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .site-nav a {
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--text);
    font-weight: 500;
  }
  .site-nav a:hover {
    background: rgba(106, 160, 255, 0.1);
    color: var(--accent);
  }
  .site-nav a.cta {
    background: var(--accent);
    color: white;
    text-align: center;
    margin-top: 8px;
  }
  .site-nav a.cta:hover {
    background: rgba(106, 160, 255, 0.9);
  }
  .section { padding: 60px 0; }
  .product-showcase { padding: 80px 0; }
  
  /* Logo mobile adjustments */
  .brand img {
    height: 36px;
    max-width: 160px;
  }
  
  .footer-logo {
    height: 32px;
    max-width: 160px;
  }
  
  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 30px 0;
  }
  
  .footer-inner > div {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  
  .footer-nav a {
    font-size: 16px;
    padding: 8px 0;
  }
  
  .site-footer small {
    font-size: 13px;
    line-height: 1.4;
    max-width: 280px;
    margin: 0 auto;
  }
  
  /* Careers page mobile styles */
  .luxury-hero { padding: 80px 0 60px; }
  .positions-grid { grid-template-columns: 1fr; gap: 24px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-group { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .category-grid { grid-template-columns: 1fr; gap: 24px; }
  .culture-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 600px) {
  .hero { padding: 60px 0 40px; }
  .hero h1 { font-size: clamp(28px, 8vw, 42px); }
  .section { padding: 50px 0; }
  .ai-showcase { padding: 60px 0; }
  .showcase-text p { font-size: 16px; }
  .showcase-stats { padding: 16px; }
  .stat-item strong { font-size: 20px; }
  .tshirt-container { height: 300px; }
  .button { padding: 12px 20px; font-size: 14px; }
  
  /* Careers page mobile styles */
  .luxury-hero { padding: 60px 0 40px; }
  .luxury-hero h1 { font-size: clamp(32px, 8vw, 48px); line-height: 1.1; }
  .hero-description { font-size: 18px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-group { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-number { font-size: 28px; }
  .company-detail { text-align: center; padding: 12px 8px; }
  .position-card { padding: 24px; }
  .position-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .salary-range { align-self: flex-start; }
  .benefit-item { padding: 24px; }
  .luxury-button { padding: 12px 20px; font-size: 14px; }
  .luxury-button.large { padding: 16px 28px; font-size: 16px; }
  .partners-marquee { padding: 30px 0; }
  .partner-name { font-size: 22px; }
  .marquee-track { gap: 60px; }
  .partner-logo-container { min-width: 200px; }
  
  /* Form overlay mobile fixes */
  #form-overlay { padding: 10px; }
  #form-overlay > div { margin: 20px auto; padding: 24px; }
  #form-overlay h2 { font-size: 24px; }
  #form-overlay input, #form-overlay textarea, #form-overlay select { padding: 12px; }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .stat-group { grid-template-columns: 1fr; gap: 16px; }
  .stat-number { font-size: 32px; }
  .stat-label { font-size: 12px; }
  .company-detail { padding: 16px 12px; }
  .detail-value { font-size: 18px; }
  .detail-label { font-size: 12px; }
  .partners-marquee { padding: 20px 0; }
  .partner-name { font-size: 20px; }
  .marquee-track { gap: 40px; }
  .partner-logo-container { min-width: 180px; }
  
  /* Optimize footer for small screens */
  .footer-inner {
    padding: 24px 0;
    gap: 16px;
  }
  
  .footer-nav a {
    font-size: 15px;
    padding: 6px 0;
  }
  
  .site-footer small {
    font-size: 12px;
    max-width: 260px;
  }
  
  /* Better partner items on small screens */
  .partner-item {
    padding: 20px 12px;
  }
  
  .partner-item strong {
    font-size: 15px;
  }
  
  .partner-item span {
    font-size: 13px;
  }
  
  /* General improvements */
  .button { min-height: 44px; }
  .hero-copy h1 { font-size: 30px; line-height: 1.1; }
  .hero-copy .subtitle { font-size: 15px; }
}

/* Department Filters */
.department-filters {
  margin-bottom: 40px;
  text-align: center;
}

.dept-filter {
  margin: 0 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.dept-filter:hover {
  border-color: var(--accent);
  background: rgba(106, 160, 255, 0.1);
}

.dept-filter.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* Job Cards - Clean List Style */
.job-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.job-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(106, 160, 255, 0.2);
  border-left-color: var(--accent);
  transform: translateX(4px);
}

.hidden {
  display: none !important;
}

/* New Career Categories Styling */
.career-categories {
  padding: 100px 0;
}

.category-section {
  margin-bottom: 80px;
}

.category-header {
  text-align: center;
  margin-bottom: 40px;
}

.category-header h3 {
  font-size: 32px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.category-header p {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.role-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
  position: relative;
}

.role-card:hover {
  border-color: rgba(106, 160, 255, 0.3);
  background: rgba(106, 160, 255, 0.05);
  transform: translateY(-4px);
}

.role-card.featured {
  border-color: rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
}

.role-card.featured:hover {
  border-color: rgba(255, 215, 0, 0.6);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.08) 100%);
}

.role-header {
  margin-bottom: 16px;
}

.role-header h4 {
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.role-details {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.role-type {
  font-size: 14px;
  color: var(--muted);
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.role-salary {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  padding: 6px 16px;
  border: 1px solid rgba(106, 160, 255, 0.3);
  border-radius: 20px;
  background: rgba(106, 160, 255, 0.1);
}

.role-card.featured .role-salary {
  color: #FFD700;
  border-color: rgba(255, 215, 0, 0.4);
  background: rgba(255, 215, 0, 0.1);
}

.role-summary {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 24px;
}

.apply-btn {
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background: var(--accent);
  color: white;
}

.apply-btn:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
}

.role-card.featured .apply-btn {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-color: #FFD700;
  color: #1a1f2e;
  font-weight: 600;
}

.role-card.featured .apply-btn:hover {
  background: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

/* Mobile responsive for new career categories */
@media (max-width: 768px) {
  .career-categories { padding: 60px 0; }
  .category-section { margin-bottom: 60px; }
  .category-header h3 { font-size: 28px; }
  .category-header p { font-size: 16px; }
  .roles-grid { grid-template-columns: 1fr; gap: 24px; }
  .role-card { padding: 24px; }
  .role-header h4 { font-size: 20px; }
  .role-details { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* How It Works Process Steps */
.process-steps {
  display: grid;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.step-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}

.step-item:hover {
  border-color: rgba(106, 160, 255, 0.3);
  background: rgba(106, 160, 255, 0.05);
  transform: translateY(-4px);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #8a6aff);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.step-content p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.step-stats span {
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid rgba(106, 160, 255, 0.3);
  border-radius: 20px;
  background: rgba(106, 160, 255, 0.1);
  color: var(--accent);
  font-weight: 500;
}

/* Signup Form Overlay */
.signup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  padding: 20px;
  overflow-y: auto;
  display: none;
}

.signup-form-container {
  max-width: 500px;
  margin: 40px auto;
  background: var(--panel);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  border: 1px solid rgba(106, 160, 255, 0.3);
}

.signup-form h3 {
  color: var(--text);
  margin-bottom: 8px;
  font-size: 28px;
}

.signup-form .subtitle {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 16px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text);
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
}

.close-btn:hover {
  color: var(--text);
}

/* Mobile responsive for process steps */
@media (max-width: 768px) {
  .step-item {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
    text-align: center;
  }
  
  .step-stats {
    justify-content: center;
  }
  
  .signup-form-container {
    margin: 20px auto;
    padding: 30px 20px;
  }
}

/* Blog Hub Styles */
.blog-hub {
  font-weight: 300;
}

.blog-hero {
  padding: 80px 0 60px;
  text-align: center;
}

.blog-hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 20px;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.blog-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.blog-stats span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.blog-stats strong {
  display: block;
  font-size: 18px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 4px;
}

/* Featured Article */
.featured-article {
  padding: 60px 0;
}

.featured-card {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.featured-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.article-preview.large {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}

.article-preview.large:hover {
  border-color: rgba(106, 160, 255, 0.3);
  background: rgba(106, 160, 255, 0.05);
  transform: translateY(-4px);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 14px;
}

.category {
  background: rgba(106, 160, 255, 0.1);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
}

.article-meta time {
  color: var(--muted);
}

.read-time {
  color: var(--muted);
  font-size: 12px;
}

.article-preview h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
}

.article-preview h2 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-preview h2 a:hover {
  color: var(--accent);
}

.article-excerpt {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.article-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
}

.article-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.placeholder-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(106, 160, 255, 0.1), rgba(138, 106, 255, 0.1));
  border: 1px solid rgba(106, 160, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 600;
}

/* Article Categories */
.article-categories {
  padding: 80px 0;
}

.article-categories h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 36px;
  font-weight: 600;
  color: var(--text);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.category-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
  transition: all 0.3s ease;
}

.category-card:hover {
  border-color: rgba(106, 160, 255, 0.3);
  background: rgba(106, 160, 255, 0.05);
  transform: translateY(-4px);
}

.category-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.category-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.category-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.article-count {
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
}

/* Recent Articles */
.recent-articles {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--muted);
  font-size: 18px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.article-preview {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}

.article-preview:hover {
  border-color: rgba(106, 160, 255, 0.3);
  background: rgba(106, 160, 255, 0.05);
  transform: translateY(-4px);
}

.article-preview h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.4;
}

.article-preview h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-preview h3 a:hover {
  color: var(--accent);
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.load-more {
  text-align: center;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.load-more p {
  color: var(--muted);
  margin-top: 16px;
}

/* Newsletter Signup */
.newsletter-signup {
  padding: 80px 0;
}

.newsletter-card {
  background: linear-gradient(135deg, rgba(106, 160, 255, 0.15), rgba(138, 106, 255, 0.08));
  border: 1px solid rgba(106, 160, 255, 0.3);
  border-radius: 24px;
  padding: 80px 60px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.newsletter-card h3 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #e1e8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.newsletter-card p {
  color: rgba(255,255,255,0.8);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.newsletter-card .button {
  font-size: 1.1rem;
  padding: 16px 32px;
  min-height: 56px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .blog-hero {
    padding: 60px 0 40px;
  }
  
  .blog-stats {
    gap: 20px;
  }
  
  .featured-article {
    padding: 40px 0;
  }
  
  .article-preview.large {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .article-preview {
    padding: 24px;
  }
  
  .newsletter-card {
    padding: 60px 32px;
    max-width: 95%;
  }
  
  .newsletter-card h3 {
    font-size: 2rem;
  }
  
  .newsletter-card p {
    font-size: 1.1rem;
  }
  
  .article-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Article Page Styles */
.article-page {
  font-weight: 300;
}

.article-header {
  padding: 80px 0 40px;
  text-align: center;
}

.article-header .article-meta {
  justify-content: center;
  margin-bottom: 24px;
}

.article-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.article-lead {
  font-size: 20px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 40px;
}

.article-image-hero {
  margin-top: 40px;
}

.placeholder-image.large {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, rgba(106, 160, 255, 0.1), rgba(138, 106, 255, 0.1));
  border: 1px solid rgba(106, 160, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 600;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
}

.article-content {
  padding: 60px 0;
}

.article-content .container {
  max-width: 800px;
}

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

.content-section h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.3;
}

.content-section h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin: 32px 0 16px;
  line-height: 1.4;
}

.content-section h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 12px;
}

.content-section p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 16px;
}

.content-section ul, .content-section ol {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
  padding-left: 24px;
}

.content-section li {
  margin-bottom: 8px;
}

.content-section strong {
  color: var(--text);
  font-weight: 600;
}

.content-section blockquote {
  background: rgba(106, 160, 255, 0.05);
  border-left: 4px solid var(--accent);
  padding: 24px;
  margin: 32px 0;
  border-radius: 8px;
  font-style: italic;
  color: var(--text);
  font-size: 18px;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.stat-item {
  text-align: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.measurement-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.measurement-category {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.measurement-category h4 {
  color: var(--accent);
  margin-bottom: 12px;
}

.measurement-category p {
  margin-bottom: 0;
  font-size: 14px;
}

.accuracy-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin: 40px 0;
}

.stat-large {
  text-align: center;
  padding: 32px;
  border: 1px solid rgba(106, 160, 255, 0.2);
  border-radius: 16px;
  background: rgba(106, 160, 255, 0.05);
}

.stat-large .stat-number {
  font-size: 48px;
  color: var(--accent);
}

.stat-large .stat-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 12px 0 8px;
}

.stat-large .stat-description {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.article-cta {
  margin: 60px 0;
  padding: 48px;
  text-align: center;
  background: linear-gradient(135deg, rgba(106, 160, 255, 0.1), rgba(138, 106, 255, 0.05));
  border: 1px solid rgba(106, 160, 255, 0.2);
  border-radius: 20px;
}

.article-cta h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.article-cta p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 32px;
}

.related-articles {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.related-articles h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 32px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.related-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}

.related-card:hover {
  border-color: rgba(106, 160, 255, 0.3);
  background: rgba(106, 160, 255, 0.05);
  transform: translateY(-2px);
}

.related-card h4 {
  margin-bottom: 12px;
  line-height: 1.4;
}

.related-card h4 a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.related-card h4 a:hover {
  color: var(--accent);
}

.related-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.related-card .read-time {
  color: var(--muted);
  font-size: 12px;
}

/* Mobile Responsive for Articles */
@media (max-width: 768px) {
  .article-header {
    padding: 60px 0 30px;
  }
  
  .article-content {
    padding: 40px 0;
  }
  
  .content-section {
    margin-bottom: 36px;
  }
  
  .content-section h2 {
    font-size: 28px;
  }
  
  .content-section h3 {
    font-size: 22px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .measurement-categories {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .accuracy-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-large {
    padding: 24px;
  }
  
  .stat-large .stat-number {
    font-size: 36px;
  }
  
  .article-cta {
    padding: 32px 20px;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .placeholder-image.large {
    height: 200px;
    font-size: 16px;
  }
}

/* New Mannequin T-shirt Animations */
@keyframes left-sleeve-sway {
  0% { transform: rotateY(-25deg) rotateZ(-10deg) translateZ(3px); }
  100% { transform: rotateY(-30deg) rotateZ(-12deg) translateZ(4px); }
}

@keyframes right-sleeve-sway {
  0% { transform: rotateY(25deg) rotateZ(10deg) translateZ(3px); }
  100% { transform: rotateY(30deg) rotateZ(12deg) translateZ(4px); }
}

@keyframes logo-glow {
  0% { 
    box-shadow: 0 0 15px rgba(106, 160, 255, 0.6);
    opacity: 0.8;
  }
  100% { 
    box-shadow: 0 0 25px rgba(106, 160, 255, 0.9);
    opacity: 1.0;
  }
}

@keyframes base-pulse {
  0% { 
    transform: scale(1.0);
    opacity: 0.3;
  }
  50% { 
    transform: scale(1.05);
    opacity: 0.5;
  }
  100% { 
    transform: scale(1.0);
    opacity: 0.3;
  }
}

/* New Professional Job Listings Format */
.job-listings-section {
  padding: 60px 0;
}

.department-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.dept-filter {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dept-filter:hover,
.dept-filter.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.jobs-list {
  max-width: 900px;
  margin: 0 auto;
}

.job-listing {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.job-listing:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.job-listing.hidden {
  display: none;
}

.job-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
}

.job-info {
  flex: 1;
}

.job-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px 0;
}

.job-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.department {
  color: var(--accent);
  font-weight: 500;
}

.separator {
  opacity: 0.5;
}

.location, .type {
  color: var(--muted);
}

.job-actions {
  flex-shrink: 0;
}

.view-details-btn {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-details-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text);
}

.job-details {
  padding: 0 24px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.job-details.hidden {
  display: none;
}

.job-summary {
  color: var(--muted);
  line-height: 1.6;
  margin: 16px 0 20px 0;
  font-size: 15px;
}

.job-apply {
  text-align: left;
}

.apply-btn {
  padding: 10px 20px;
  background: var(--accent);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background: #4f7ae6;
  transform: translateY(-1px);
}

/* Expanded job details state */
.job-listing.expanded {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.job-listing.expanded .view-details-btn {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text);
}

@media (max-width: 768px) {
  .department-filters {
    gap: 8px;
  }
  
  .dept-filter {
    padding: 8px 16px;
    font-size: 14px;
  }
  
  .job-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
  }
  
  .job-actions {
    align-self: stretch;
  }
  
  .view-details-btn {
    width: 100%;
  }
  
  .job-details {
    padding: 0 20px 20px 20px;
  }
}


