/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== PHANTOM LABS (EXPERIMENTAL RESEARCH) ===== */
.phantom-page {
  background: #050505;
  color: #e0e0e0;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  position: relative;
}

.lab-environment {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, #0a0a0a 0%, #050505 100%);
}

.particle-field {
  position: absolute;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #00d4ff;
  border-radius: 50%;
  animation: particle-float 8s infinite linear;
  opacity: 0.6;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 60%; animation-delay: 4s; }
.particle:nth-child(6) { left: 70%; animation-delay: 5s; }
.particle:nth-child(7) { left: 80%; animation-delay: 6s; }
.particle:nth-child(8) { left: 90%; animation-delay: 7s; }

@keyframes particle-float {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

.energy-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.grid-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
}

.grid-line.horizontal {
  width: 100%;
  height: 1px;
}

.grid-line.horizontal:nth-child(1) { top: 20%; }
.grid-line.horizontal:nth-child(2) { top: 50%; }
.grid-line.horizontal:nth-child(3) { top: 80%; }

.grid-line.vertical {
  width: 1px;
  height: 100%;
}

.grid-line.vertical:nth-child(4) { left: 25%; }
.grid-line.vertical:nth-child(5) { left: 50%; }
.grid-line.vertical:nth-child(6) { left: 75%; }

.phantom-header {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lab-interface {
  width: 100%;
  max-width: 1400px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.interface-panel {
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid #00d4ff;
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.panel-header {
  margin-bottom: 3rem;
}

.lab-logo {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.logo-atom {
  position: relative;
  width: 80px;
  height: 80px;
}

.nucleus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #ff6b35;
  border-radius: 50%;
  box-shadow: 0 0 20px #ff6b35;
}

.electron-orbit {
  position: absolute;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-1 {
  width: 40px;
  height: 40px;
  animation: orbit 3s linear infinite;
}

.orbit-2 {
  width: 60px;
  height: 60px;
  animation: orbit 4s linear infinite reverse;
}

.orbit-3 {
  width: 80px;
  height: 80px;
  animation: orbit 5s linear infinite;
}

@keyframes orbit {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.electron {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #00d4ff;
  border-radius: 50%;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px #00d4ff;
}

.lab-name {
  display: flex;
  flex-direction: column;
}

.name-phantom {
  font-size: 2rem;
  font-weight: bold;
  color: #00d4ff;
  letter-spacing: 2px;
}

.name-labs {
  font-size: 1.2rem;
  color: #888;
  letter-spacing: 4px;
}

.lab-navigation {
  margin-top: 2rem;
}

.nav-cluster {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-node {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #888;
  padding: 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-node:hover {
  color: #00d4ff;
  border-color: #00d4ff;
  background: rgba(0, 212, 255, 0.1);
}

.node-core {
  width: 12px;
  height: 12px;
  background: #888;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.nav-node:hover .node-core {
  background: #00d4ff;
  box-shadow: 0 0 15px #00d4ff;
}

.node-label {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content-phantom {
  text-align: center;
}

.classification-banner {
  background: linear-gradient(90deg, #ff6b35, #ff0000);
  color: white;
  padding: 0.5rem 2rem;
  margin-bottom: 3rem;
  display: inline-block;
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.clearance-level {
  margin-left: 1rem;
  opacity: 0.8;
}

.phantom-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #e0e0e0;
}

.title-word {
  display: inline-block;
  margin-right: 1rem;
}

.title-word.glow {
  color: #00d4ff;
  text-shadow: 0 0 20px #00d4ff;
  animation: glow-pulse 2s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  from { text-shadow: 0 0 20px #00d4ff; }
  to { text-shadow: 0 0 30px #00d4ff, 0 0 40px #00d4ff; }
}

.research-statement {
  margin-bottom: 3rem;
}

.statement-phantom {
  font-size: 1.2rem;
  color: #bbb;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.lab-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-container {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #333;
  padding: 2rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.stat-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  animation: scan-stat 3s infinite;
}

@keyframes scan-stat {
  0% { left: -100%; }
  100% { left: 100%; }
}

.stat-display {
  text-align: center;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #00d4ff;
  display: block;
}

.stat-label {
  color: #888;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-graph {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 4px;
  height: 40px;
}

.graph-bar {
  width: 8px;
  background: linear-gradient(to top, #00d4ff, #0099cc);
  border-radius: 2px;
  animation: bar-pulse 2s ease-in-out infinite alternate;
}

@keyframes bar-pulse {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

.action-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.phantom-btn {
  background: transparent;
  border: 2px solid #00d4ff;
  color: #00d4ff;
  padding: 1rem 2rem;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.phantom-btn.primary {
  background: #00d4ff;
  color: #050505;
}

.phantom-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-energy {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.phantom-btn:hover .btn-energy {
  left: 100%;
}

.research-section,
.experiments-section,
.team-section,
.contact-section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

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

.header-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.deco-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
}

.deco-symbol {
  color: #00d4ff;
  font-size: 1.5rem;
}

.section-title-phantom {
  font-size: 2.5rem;
  font-weight: 300;
  color: #e0e0e0;
}

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

.research-division {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #333;
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.research-division.featured {
  border-color: #00d4ff;
  background: rgba(0, 212, 255, 0.05);
}

.research-division:hover {
  transform: translateY(-5px);
  border-color: #00d4ff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.division-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.division-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: relative;
}

.division-icon.quantum {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
}

.division-icon.quantum::before {
  content: '⚛️';
}

.division-icon.biotech {
  background: linear-gradient(135deg, #00ff88, #00cc66);
}

.division-icon.biotech::before {
  content: '🧬';
}

.division-icon.neural {
  background: linear-gradient(135deg, #ff6b35, #cc5529);
}

.division-icon.neural::before {
  content: '🧠';
}

.division-icon.energy {
  background: linear-gradient(135deg, #ffff00, #cccc00);
}

.division-icon.energy::before {
  content: '⚡';
}

.division-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: status-blink 2s infinite;
}

.status-indicator.active {
  background: #00ff88;
}

.status-indicator.breakthrough {
  background: #ff6b35;
}

.status-indicator.classified {
  background: #ff0000;
}

.status-indicator.experimental {
  background: #ffff00;
}

@keyframes status-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

.status-text {
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.division-title {
  font-size: 1.5rem;
  color: #e0e0e0;
  margin-bottom: 1rem;
}

.division-description {
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.division-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.metric {
  text-align: center;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00d4ff;
  display: block;
}

.metric-label {
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
}

.division-progress {
  margin-top: 1rem;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: #333;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00d4ff, #0099cc);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.progress-label {
  font-size: 0.8rem;
  color: #888;
}

.experiments-lab {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.experiment-station {
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid #333;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.experiment-station:hover {
  border-color: #00d4ff;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.station-monitor {
  background: #000;
  padding: 1rem;
  border-bottom: 2px solid #333;
}

.monitor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.experiment-id {
  color: #00d4ff;
  font-weight: bold;
  font-family: 'Courier New', monospace;
}

.experiment-classification {
  background: #ff0000;
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.7rem;
  font-weight: bold;
}

.monitor-display {
  min-height: 120px;
  background: #0a0a0a;
  border: 1px solid #333;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.waveform {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wave-line {
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
  animation: wave-pulse 1.5s infinite;
}

.wave-line:nth-child(2) {
  animation-delay: 0.5s;
}

.wave-line:nth-child(3) {
  animation-delay: 1s;
}

@keyframes wave-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.neural-network {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
}

.neural-node {
  width: 20px;
  height: 20px;
  background: #00d4ff;
  border-radius: 50%;
  animation: neural-pulse 2s infinite;
}

.neural-node:nth-child(2) {
  animation-delay: 0.7s;
}

.neural-node:nth-child(3) {
  animation-delay: 1.4s;
}

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

.neural-connection {
  position: absolute;
  width: 2px;
  height: 30px;
  background: #00d4ff;
  opacity: 0.5;
}

.neural-connection:nth-child(4) {
  left: 30%;
  transform: rotate(30deg);
}

.neural-connection:nth-child(5) {
  right: 30%;
  transform: rotate(-30deg);
}

.molecular-structure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

.molecule-atom {
  width: 16px;
  height: 16px;
  background: #ff6b35;
  border-radius: 50%;
  animation: molecule-vibrate 1s infinite;
}

.molecule-atom:nth-child(2) {
  background: #00d4ff;
  animation-delay: 0.3s;
}

.molecule-atom:nth-child(3) {
  background: #00ff88;
  animation-delay: 0.6s;
}

@keyframes molecule-vibrate {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(1px, -1px); }
  50% { transform: translate(-1px, 1px); }
  75% { transform: translate(1px, 1px); }
}

.molecule-bond {
  position: absolute;
  width: 2px;
  height: 20px;
  background: #888;
}

.molecule-bond:nth-child(4) {
  left: 25%;
  transform: rotate(45deg);
}

.molecule-bond:nth-child(5) {
  right: 25%;
  transform: rotate(-45deg);
}

.monitor-controls {
  display: flex;
  gap: 0.5rem;
}

.control-button {
  width: 12px;
  height: 12px;
  background: #333;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.control-button.active {
  background: #00d4ff;
  box-shadow: 0 0 10px #00d4ff;
}

.station-info {
  padding: 2rem;
}

.experiment-name {
  font-size: 1.3rem;
  color: #e0e0e0;
  margin-bottom: 1rem;
}

.experiment-description {
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.experiment-data {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.data-point {
  text-align: center;
}

.data-label {
  font-size: 0.8rem;
  color: #888;
  display: block;
  margin-bottom: 0.25rem;
}

.data-value {
  font-size: 1.2rem;
  font-weight: bold;
  color: #00d4ff;
}

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

.scientist-profile {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #333;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.scientist-profile:hover {
  border-color: #00d4ff;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.profile-container {
  padding: 3rem;
}

.profile-avatar {
  text-align: center;
  margin-bottom: 2rem;
}

.profile-avatar .avatar-frame {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.profile-avatar .avatar-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: #050505;
  border: 3px solid #00d4ff;
}

.security-clearance {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: #ff0000;
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.7rem;
  font-weight: bold;
  border-radius: 4px;
}

.scientist-name {
  font-size: 1.5rem;
  color: #e0e0e0;
  margin-bottom: 0.5rem;
  text-align: center;
}

.scientist-title {
  color: #00d4ff;
  text-align: center;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.scientist-specialization {
  color: #888;
  text-align: center;
  margin-bottom: 2rem;
  font-style: italic;
}

.scientist-credentials {
  margin-bottom: 2rem;
}

.credential {
  display: block;
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border-left: 3px solid #00d4ff;
  font-size: 0.9rem;
}

.scientist-projects {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.project-tag {
  background: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  border: 1px solid #ff6b35;
  border-radius: 4px;
}

.contact-lab {
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid #00d4ff;
  border-radius: 12px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.lab-terminal {
  background: #000;
}

.terminal-screen {
  background: #0a0a0a;
  min-height: 400px;
}

.screen-header {
  background: #00d4ff;
  color: #050505;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-family: 'Courier New', monospace;
}

.terminal-prompt {
  font-size: 0.9rem;
}

.connection-status {
  background: #050505;
  color: #00d4ff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
}

.contact-interface {
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-title {
  font-size: 2rem;
  color: #e0e0e0;
  margin-bottom: 1rem;
}

.contact-description {
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.collaboration-requirements {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.requirement {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.req-icon {
  font-size: 1.5rem;
  width: 40px;
  text-align: center;
  flex-shrink: 0;
}

.req-title {
  color: #00d4ff;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.req-desc {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-panel {
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid #00d4ff;
  border-radius: 8px;
  padding: 2rem;
}

.panel-title {
  color: #00d4ff;
  margin-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-methods-phantom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-method-phantom {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.method-icon-phantom {
  font-size: 1.2rem;
  width: 30px;
  text-align: center;
}

.method-label-phantom {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.method-value-phantom {
  color: #00d4ff;
  font-weight: bold;
}

.security-notice {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid #ff6b35;
  border-radius: 4px;
  padding: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.notice-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.notice-text {
  color: #ff6b35;
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-phantom {
  background: #000;
  color: #888;
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #333;
}

.footer-classification {
  font-size: 0.9rem;
  font-family: 'Courier New', monospace;
}

/* Responsive Design */
@media (max-width: 768px) {
  .floating-nav {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 2rem;
  }
  
  .nav-constellation {
    flex-direction: row;
    gap: 1rem;
  }
  
  .star-label {
    writing-mode: initial;
    text-orientation: initial;
  }
  
  .obsidian-main {
    margin-left: 0;
  }
  
  .lab-interface {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-interface {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-metrics {
    flex-direction: column;
    gap: 1rem;
  }
  
  .metric-divider {
    width: 60px;
    height: 1px;
    transform: rotate(90deg);
  }
  
  .projects-showcase {
    grid-template-columns: 1fr;
  }
  
  .team-constellation {
    grid-template-columns: 1fr;
  }
  
  .connect-grid {
    grid-template-columns: 1fr;
  }
  
  .lab-stats {
    grid-template-columns: 1fr;
  }
}