/* Modern Design Tokens: Pure Pitch Black & High-Class Tech Gradient System */
:root {
  --bg-dark: #000000; /* Pure Pitch Black Void */
  --bg-card: rgba(10, 10, 12, 0.7); /* Deep Pitch Black Glass Panel */
  --bg-card-hover: rgba(18, 18, 22, 0.85);
  --bg-console: #000000; /* Pure Black Console Void */
  
  --color-primary: #6366f1; /* Premium Electric Indigo */
  --color-primary-glow: rgba(99, 102, 241, 0.12);
  
  --color-indigo-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  --color-indigo-text: #a5b4fc;
  
  --color-red: #f43f5e; /* Premium Rose Red for Veto */
  --color-red-glow: rgba(244, 63, 94, 0.12);
  
  --color-cyan: #06b6d4; /* Premium Cyan for Intercept */
  --color-cyan-glow: rgba(6, 182, 212, 0.12);
  
  --color-green: #10b981; /* Premium Emerald for Success */
  --color-green-glow: rgba(16, 185, 129, 0.12);
  
  --text-main: #f8fafc; /* High-Contrast Soft White */
  --text-muted: #94a3b8; /* Cool Muted Slate */
  --text-dim: #475569; /* Dark Slate Shadow */
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 8px;
  --border-glass: 1px solid rgba(255, 255, 255, 0.07);
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Elements */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  position: relative;
  background: var(--bg-dark);
}

/* Page Wrapper & Blob Backgrounds */
.page-wrapper {
  position: relative;
  min-height: 100vh;
  z-index: 1;
}

.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.08; /* Subdued opacity for true pitch black feel */
  z-index: -1;
  pointer-events: none;
  animation: float-blob 25s infinite alternate ease-in-out;
}

.blob-1 {
  top: -10%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #6366f1, #3b82f6);
}

.blob-2 {
  top: 40%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #a855f7, #ec4899);
  animation-duration: 35s;
  animation-delay: -5s;
}

.blob-3 {
  bottom: -10%;
  left: 15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #06b6d4, #6366f1);
  animation-duration: 30s;
  animation-delay: -10s;
}

@keyframes float-blob {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, -60px) scale(1.1);
  }
  100% {
    transform: translate(-20px, 30px) scale(0.9);
  }
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--color-indigo-gradient);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(168, 85, 247, 0.4);
  filter: brightness(1.1);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.02);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Top Navigation Bar */
.navbar {
  position: sticky;
  top: 0;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.8); /* True black transparency */
  backdrop-filter: blur(20px);
  border-bottom: var(--border-glass);
  z-index: 100;
}

.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.nav-logo {
  height: 36px;
  width: 36px;
}

.brand-text {
  background: var(--color-indigo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: none;
  gap: 2.25rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-btn {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

/* Hero Section */
.hero-section {
  padding: 120px 0 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  min-height: 75vh;
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-indigo-text);
  background-color: rgba(99, 102, 241, 0.1);
  padding: 0.35rem 0.95rem;
  border-radius: 20px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.75rem;
  }
}

.gradient-text {
  background: var(--color-indigo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* Sections & Headers */
section {
  padding: 120px 0;
  border-bottom: var(--border-glass);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 5rem auto;
}

.section-tag {
  color: var(--color-indigo-text);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  display: inline-block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Dual Core: Daemon & IDE Section styling */
.dual-core-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

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

.core-card {
  position: relative;
  background-color: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  transition: var(--transition-smooth);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.core-card:hover {
  transform: translateY(-5px);
  background-color: var(--bg-card-hover);
  border-color: rgba(99, 102, 241, 0.25);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.04);
}

.core-glow-layer {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(75px);
  opacity: 0.08;
  pointer-events: none;
}

.glow-indigo-subtle {
  background: radial-gradient(circle, #6366f1, transparent);
}

.glow-cyan-subtle {
  background: radial-gradient(circle, #06b6d4, transparent);
}

.core-icon {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.core-card h3 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.core-tagline {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-indigo-text);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.core-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.core-spec {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  border-top: 1px dashed rgba(255, 255, 255, 0.06);
  padding-top: 1.25rem;
}

/* Red Pill vs Blue Pill Choice Grid */
.choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

.choice-card {
  position: relative;
  background-color: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.choice-card:hover {
  transform: translateY(-5px);
  background-color: var(--bg-card-hover);
}

.card-glow {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  pointer-events: none;
}

.glow-blue {
  background: radial-gradient(circle, #3b82f6, transparent);
  border-color: rgba(59, 130, 246, 0.2);
}

.glow-indigo {
  background: radial-gradient(circle, #a855f7, transparent);
  border-color: rgba(168, 85, 247, 0.2);
}

.card-blue-pill:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.04);
}

.card-red-pill:hover {
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.04);
}

.card-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.badge-blue {
  background-color: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.badge-indigo {
  background-color: rgba(168, 85, 247, 0.1);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #ffffff;
}

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.bullet-cross {
  color: var(--color-red);
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

.bullet-check {
  color: var(--color-green);
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

.benefit-list li strong {
  display: block;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.benefit-list li p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* System Topology Flow */
.topology-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

@media (min-width: 992px) {
  .topology-flow {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}

.topology-step {
  background-color: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--border-radius-md);
  padding: 2.25rem;
  position: relative;
  transition: var(--transition-smooth);
}

.topology-step:hover {
  border-color: rgba(99, 102, 241, 0.25);
  background-color: var(--bg-card-hover);
  transform: translateY(-3px);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--color-indigo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Smithfile Spec Grid */
.schema-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .schema-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.code-container {
  background-color: var(--bg-console);
  border: var(--border-glass);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.code-header {
  background-color: rgba(255, 255, 255, 0.01);
  height: 44px;
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  border-bottom: var(--border-glass);
  position: relative;
}

.code-dots {
  display: flex;
  gap: 0.45rem;
}

.code-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
}

.code-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.code-container pre {
  padding: 1.75rem;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #e2e8f0;
  line-height: 1.6;
}

.spec-features {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.spec-feature-card {
  display: flex;
  gap: 1.25rem;
}

.spec-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #ffffff;
  flex-shrink: 0;
}

.spec-info h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.spec-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Interactive Sandbox Simulator styling */
.sandbox-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .sandbox-container {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

.sandbox-sidebar {
  background-color: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
}

.sandbox-sidebar h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.sidebar-info {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.sandbox-presets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.preset-btn {
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-sm);
  padding: 1.15rem;
  text-align: left;
  display: flex;
  gap: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.preset-btn:hover {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.preset-btn.active {
  background-color: rgba(99, 102, 241, 0.06);
  border-color: rgba(99, 102, 241, 0.25);
}

.preset-icon {
  font-size: 1.25rem;
  margin-top: 0.1rem;
}

.preset-details {
  display: flex;
  flex-direction: column;
}

.preset-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.preset-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.custom-prompt-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

#sandbox-input {
  background-color: rgba(0, 0, 0, 0.6);
  border: var(--border-glass);
  border-radius: var(--border-radius-sm);
  padding: 0.85rem 1.15rem;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

#sandbox-input:focus {
  outline: none;
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
}

#emit-btn {
  width: 100%;
}

.sandbox-console {
  background-color: var(--bg-console);
  border: var(--border-glass);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.console-header {
  background-color: rgba(255, 255, 255, 0.01);
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  border-bottom: var(--border-glass);
}

.console-controls {
  display: flex;
  gap: 0.45rem;
}

.c-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.dot-red { background-color: #ef4444; }
.dot-yellow { background-color: #f59e0b; }
.dot-green { background-color: #10b981; }

.console-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.console-clear {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.console-clear:hover {
  color: #ffffff;
}

.console-body {
  padding: 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.6;
  min-height: 380px;
  max-height: 500px;
  overflow-y: auto;
  background-color: #040406; /* Deep black console */
}

.console-line {
  margin-bottom: 0.85rem;
  word-break: break-word;
}

.line-system {
  color: var(--color-indigo-text);
}

.line-dim {
  color: var(--text-dim);
}

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

.line-veto {
  color: var(--color-red);
  background-color: rgba(244, 63, 94, 0.06);
  padding: 0.35rem 0.75rem;
  border-left: 3px solid var(--color-red);
  border-radius: 2px;
}

.line-intercept {
  color: var(--color-cyan);
  background-color: rgba(6, 182, 212, 0.06);
  padding: 0.35rem 0.75rem;
  border-left: 3px solid var(--color-cyan);
  border-radius: 2px;
}

.line-success {
  color: var(--color-green);
}

.line-code {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.75rem;
  white-space: pre-wrap;
}

/* Sovereign Nodes Evaluation Grid */
.nodes-section {
  background-color: rgba(255, 255, 255, 0.01);
}

.nodes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

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

.node-card {
  background-color: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--border-radius-md);
  padding: 2.25rem;
  transition: var(--transition-smooth);
}

.node-card:hover {
  border-color: rgba(99, 102, 241, 0.22);
  background-color: var(--bg-card-hover);
  transform: translateY(-3px);
}

.node-status {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-green);
  background-color: rgba(16, 185, 129, 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.node-domain {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.node-purpose {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.node-tech {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
}

.nodes-footer-box {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.04) 0%, rgba(168, 85, 247, 0.04) 100%);
  border: 1px dashed rgba(99, 102, 241, 0.2);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  text-align: center;
  font-size: 0.95rem;
  max-width: 850px;
  margin: 0 auto;
}

.nodes-footer-box strong {
  color: var(--color-indigo-text);
}

/* Footer Section */
.footer {
  background-color: #000000; /* Pure black footer */
  border-top: var(--border-glass);
  padding: 5rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
  }
}

.footer-left {
  max-width: 380px;
}

.footer-logo {
  height: 52px;
  width: 52px;
  margin-bottom: 1.25rem;
}

.footer-left p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-right {
  display: flex;
  gap: 5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-col h5 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a {
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.footer-col a:hover {
  color: #ffffff;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}