/* ═══════════════════════════════════════════════════════════
   NEXSYSLAB - Industrial Tech Design System
   "Next System Laboratory" - 차세대 시스템을 위한 연구소
   ═══════════════════════════════════════════════════════════ */

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Dark Theme Colors */
  --bg-primary: #0a0f1c;
  --bg-secondary: #0f1629;
  --bg-tertiary: #141b2d;
  --bg-card: #1a2238;
  --bg-elevated: #1e2844;
  
  /* Brand Colors */
  --brand: #00d4ff;
  --brand-dim: #0ea5e9;
  --brand-glow: rgba(0, 212, 255, 0.15);
  --brand-glow-strong: rgba(0, 212, 255, 0.3);
  
  /* Accent */
  --accent: #84cc16;
  --accent-glow: rgba(132, 204, 22, 0.2);
  
  /* Text */
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-dim: #475569;
  
  /* Lines & Borders */
  --line: rgba(148, 163, 184, 0.1);
  --line-strong: rgba(148, 163, 184, 0.2);
  --line-glow: rgba(0, 212, 255, 0.3);
  
  /* Status */
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  
  /* Typography */
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
  --font-sans: 'Pretendard', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ═══════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════ */

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

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

/* Grid Background Pattern */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(148, 163, 184, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Noise Texture Overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--brand);
  color: var(--bg-primary);
}

/* Skip Link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════ */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 28, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s var(--ease-out);
}

header.scrolled {
  background: rgba(10, 15, 28, 0.95);
  border-bottom-color: var(--line-strong);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.nav a.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  transition: transform 0.3s var(--ease-spring);
}

.nav a.logo:hover {
  transform: scale(1.02);
  color: inherit;
}

.nav a.logo span {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav img.logo {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 0 8px var(--brand-glow));
}

/* Navigation Links */
.nav-links {
  display: none;
  gap: 8px;
}

.nav-links a {
  position: relative;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all 0.2s var(--ease-out);
}

.nav-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brand-glow);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.2s;
}

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

.nav-links a:hover::before {
  opacity: 1;
}

.nav-links a.active {
  color: var(--brand);
}

.nav-links a.active::before {
  opacity: 1;
  background: var(--brand-glow);
}

/* Nav CTA */
.nav-cta {
  display: none;
}

/* Mobile Menu Button */
.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}

.menu-btn:hover {
  background: var(--bg-tertiary);
  border-color: var(--line-strong);
  color: var(--text-primary);
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: inline-flex;
  }
  .menu-btn {
    display: none;
  }
}

/* Mobile Panel */
.mobile-panel {
  display: none;
  background: var(--bg-secondary);
  border-top: 1px solid var(--line);
}

.mobile-panel.open {
  display: block;
  animation: slideDown 0.3s var(--ease-out);
}

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

.mobile-panel .container {
  padding: var(--space-md) var(--space-lg);
}

.mobile-panel a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--line);
  transition: all 0.2s;
}

.mobile-panel a:last-child {
  border-bottom: none;
}

.mobile-panel a:hover,
.mobile-panel a.active {
  color: var(--brand);
  padding-left: 8px;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.05) 100%);
  opacity: 0;
  transition: opacity 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--line-glow);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn:hover::before {
  opacity: 1;
}

.btn:active {
  transform: translateY(0);
}

.btn.primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dim) 100%);
  color: var(--bg-primary);
  border: none;
  box-shadow: 
    0 0 20px var(--brand-glow),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn.primary:hover {
  box-shadow: 
    0 0 30px var(--brand-glow-strong),
    0 8px 25px rgba(0, 212, 255, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.2);
  color: var(--bg-primary);
}

/* ═══════════════════════════════════════════════════════════
   PILLS & BADGES
   ═══════════════════════════════════════════════════════════ */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  border: 1px solid var(--line);
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
}

.pill:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.pill .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-glow);
  animation: pulse 2s ease-in-out infinite;
}

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

.badge {
  display: inline-flex;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bg-primary);
  background: var(--accent);
  border-radius: var(--radius-sm);
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* Hero Background Effects */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
  opacity: 0.5;
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.3;
  animation: float 25s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -30px) rotate(5deg); }
  50% { transform: translate(-20px, 20px) rotate(-5deg); }
  75% { transform: translate(20px, 10px) rotate(3deg); }
}

.hero-grid {
  display: grid;
  gap: var(--space-3xl);
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
}

/* Hero Typography */
.hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.hero h1 .brand-text {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  margin-top: var(--space-lg);
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.hero p strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* CTA Group */
.cta {
  display: flex;
  gap: 12px;
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}

/* Chips */
.chips {
  display: flex;
  gap: 12px;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

/* Hero Card */
.hero .card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: var(--space-xl);
}

/* Responsive Break */
.br-lg {
  display: none;
}

@media (min-width: 900px) {
  .br-lg {
    display: inline;
  }
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════ */

section {
  position: relative;
  padding: var(--space-4xl) 0;
  z-index: 1;
}

section h2 {
  font-family: var(--font-sans);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

section p.lead {
  margin-top: var(--space-md);
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
}

/* Section Divider */
section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 1200px);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--line) 20%, var(--line) 80%, transparent 100%);
}

/* Alt Section Background */
section[style*="background"] {
  background: var(--bg-secondary) !important;
}

/* ═══════════════════════════════════════════════════════════
   PAGE HEADER
   ═══════════════════════════════════════════════════════════ */

.page-header {
  position: relative;
  padding: var(--space-4xl) 0 var(--space-3xl);
  text-align: center;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, var(--brand-glow) 0%, transparent 60%);
  opacity: 0.5;
}

.page-header h1 {
  font-family: var(--font-sans);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
}

.page-header p {
  margin-top: var(--space-md);
  font-size: 17px;
  color: var(--text-secondary);
  position: relative;
}

.page-header .pill {
  margin-bottom: var(--space-lg);
}

/* ═══════════════════════════════════════════════════════════
   GRID SYSTEM
   ═══════════════════════════════════════════════════════════ */

.grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════ */

.card {
  position: relative;
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out);
  overflow: hidden;
}

/* Subtle gradient overlay */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 50%);
  pointer-events: none;
}

/* Glow border effect on hover */
.card::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  border-radius: inherit;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 40px var(--brand-glow);
}

.card:hover::after {
  opacity: 0.15;
}

.card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

/* Feature List */
.features {
  list-style: none;
  margin-top: var(--space-md);
}

.features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.features li::before {
  content: '›';
  font-family: var(--font-mono);
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   PRICING CARDS
   ═══════════════════════════════════════════════════════════ */

.plan {
  text-align: center;
}

.plan h3 {
  font-family: var(--font-mono);
  font-size: 24px;
  letter-spacing: -0.02em;
}

.plan .price {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--brand);
  margin: var(--space-md) 0;
  text-shadow: 0 0 20px var(--brand-glow);
}

.plan .action {
  margin-top: var(--space-lg);
}

.plan.featured {
  border: 2px solid var(--brand);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 212, 255, 0.08) 100%);
  box-shadow: 0 0 40px var(--brand-glow);
  overflow: visible;
  position: relative;
}

.plan.featured::before {
  content: '인기';
  position: absolute;
  inset: auto;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  padding: 6px 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--bg-primary);
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  border-radius: var(--radius-md);
  z-index: 10;
  box-shadow: 0 4px 12px var(--brand-glow);
  pointer-events: none;
}

.plan.featured::after {
  display: none;
}

.plan.featured:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 0 50px var(--brand-glow-strong),
    0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--brand);
}

/* ═══════════════════════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════════════════════ */

.service-card {
  border-left: 3px solid var(--brand);
}

.service-card .badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
}

/* ═══════════════════════════════════════════════════════════
   JOB CARDS
   ═══════════════════════════════════════════════════════════ */

.job-card {
  border-left: 3px solid var(--accent);
}

.job-card .tag {
  display: inline-block;
  padding: 4px 10px;
  margin-right: 8px;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

/* ═══════════════════════════════════════════════════════════
   CEO SECTION
   ═══════════════════════════════════════════════════════════ */

.ceo-section {
  background: var(--bg-secondary);
}

.ceo-grid {
  display: grid;
  gap: var(--space-3xl);
  align-items: center;
  margin-top: var(--space-xl);
}

@media (min-width: 768px) {
  .ceo-grid {
    grid-template-columns: 320px 1fr;
  }
}

.ceo-photo {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--brand);
  box-shadow: 
    0 0 40px var(--brand-glow),
    0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .ceo-photo {
    width: 400px;
    height: 400px;
  }
}

.ceo-content h2 {
  font-size: 28px;
  margin-bottom: 4px;
}

.ceo-content .title {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--brand);
  margin-bottom: var(--space-lg);
}

.ceo-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: var(--space-md) 0;
}

/* ═══════════════════════════════════════════════════════════
   ORGANIZATION CHART
   ═══════════════════════════════════════════════════════════ */

.org-chart {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

@media (min-width: 768px) {
  .org-chart {
    grid-template-columns: repeat(2, 1fr);
  }
}

.org-box {
  padding: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s var(--ease-out);
}

.org-box:hover {
  transform: scale(1.02);
  border-color: var(--brand);
  box-shadow: 0 0 30px var(--brand-glow);
}

.org-box .role {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 8px;
}

.org-box .name {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════
   SUPPORT GRID
   ═══════════════════════════════════════════════════════════ */

.support-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 900px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

footer {
  position: relative;
  background: var(--bg-secondary);
  border-top: 1px solid var(--line);
  z-index: 1;
}

.footer-grid {
  display: grid;
  gap: var(--space-xl);
  padding: var(--space-3xl) 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-grid p {
  line-height: 1.7;
}

.footer-grid a {
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-grid a:hover {
  color: var(--brand);
}

.footer-info {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--line);
  text-align: center;
}

.muted {
  color: var(--text-muted);
}

.tiny {
  font-size: 13px;
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */

.animate-slide {
  animation: slideUp 0.8s var(--ease-out);
}

.animate-scale {
  animation: scaleIn 0.6s var(--ease-out);
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll Reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s var(--ease-out);
}

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

/* Stagger Animation */
.scroll-reveal:nth-child(1) { transition-delay: 0s; }
.scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.3s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.4s; }
.scroll-reveal:nth-child(6) { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════ */

/* Terminal-style code blocks */
code, .mono {
  font-family: var(--font-mono);
}

/* Glow text */
.glow-text {
  text-shadow: 0 0 20px var(--brand-glow);
}

/* Status indicators */
.status-online {
  color: var(--success);
}

.status-warning {
  color: var(--warning);
}

.status-offline {
  color: var(--error);
}

/* Responsive utilities */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}