/* CSS Variables */
:root {
  --electric-blue: #00A8FF;
  --vivid-orange: #FF6B35;
  --dark-navy: #1B1B2F;
  --pure-white: #FFFFFF;
  --metallic-silver: #C0C0C0;
  --bright-red: #FF3366;
  --electric-blue-dark: #0088CC;

  /* Transparency Colors */
  --bg-overlay: rgba(27, 27, 47, 0.9);
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-bg-alt: rgba(255, 255, 255, 0.02);
  --border-subtle: rgba(0, 168, 255, 0.2);

  /* Shadow Colors */
  --shadow-primary: rgba(0, 168, 255, 0.3);
  --shadow-primary-hover: rgba(0, 168, 255, 0.4);
  --shadow-orange: rgba(255, 107, 53, 0.4);
  --glow-blue: rgba(0, 168, 255, 0.6);

  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Particle Background */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.2;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-overlay);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-image {
  height: 40px;
  width: auto;
  filter: brightness(1.2) saturate(1.1);
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-northland {
  color: var(--pure-white);
}

.logo-positronics {
  color: var(--electric-blue);
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--pure-white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--electric-blue);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.gradient-overlay-1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(0, 168, 255, 0.1) 0%, transparent 50%);
}

.gradient-overlay-2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--metallic-silver);
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.title-primary {
  color: var(--electric-blue);
  display: block;
}

.title-secondary {
  color: var(--vivid-orange);
  display: block;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--metallic-silver);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--pure-white);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-description em {
  color: var(--electric-blue);
  font-style: normal;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

/* Brain Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.brain-container svg {
  width: 100%;
  height: 100%;
  max-width: 300px;
  position: relative;
  z-index: 2;
}

.circuit-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px),
    linear-gradient(var(--border-subtle) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.1;
  animation: circuitFlow 8s ease-in-out infinite;
  z-index: 1;
}

/* Electron orbits - static ellipses */
use[id*="orbit-"] { 
  stroke-width: 2; 
  stroke: rgba(0, 168, 255, 0.4);
}

/* Moving electrons */
use[id*="electron-"] { 
  stroke: #FF6B35; 
  stroke-width: 8; 
  stroke-linecap: round;
  stroke-dasharray: 0.1 400;
  stroke-dashoffset: 0; 
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

#electron-1 {
  animation: electronMove 3s linear infinite;
}

#electron-2 {
  animation: electronMove 3.5s linear infinite;
  stroke: #00A8FF;
}

#electron-3 {
  animation: electronMove 4s linear infinite;
  stroke: #FFFFFF;
}

/* Nucleus - gentle pulsing without movement */
#nucleus {
  fill: #FFFFFF;
  transform-origin: 200px 200px;
  animation: gentleNucleusPulse 3s ease-in-out infinite;
}

/* Animations */
@keyframes electronMove {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: 400; }
}

@keyframes gentleNucleusPulse {
  0%, 100% { 
    transform: scale(1);
  }
  50% { 
    transform: scale(1.15);
  }
}

@keyframes circuitFlow {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.2; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
}

.btn-primary {
  background: var(--electric-blue);
  color: var(--pure-white);
  box-shadow: 0 4px 20px var(--shadow-primary);
}

.btn-primary:hover {
  background: var(--electric-blue-dark);
  box-shadow: 0 6px 25px var(--shadow-primary-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--electric-blue);
  border: 2px solid var(--electric-blue);
}

.btn-secondary:hover {
  background: var(--electric-blue);
  color: var(--pure-white);
}

.btn-outline {
  background: transparent;
  color: var(--pure-white);
  border: 2px solid var(--pure-white);
}

.btn-outline:hover {
  background: var(--pure-white);
  color: var(--dark-navy);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Sections */
section {
  padding: 5rem 0;
}

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

.section-title {
  font-size: 2.5rem;
  color: var(--electric-blue);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--metallic-silver);
  max-width: 600px;
  margin: 0 auto;
}

/* Values Section */
.values {
  background: linear-gradient(135deg, rgba(0, 168, 255, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
}

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

.value-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--electric-blue);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 168, 255, 0.2);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--electric-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.icon-ethics::before {
  content: "⚖️";
  font-size: 2rem;
}

.icon-transparency::before {
  content: "🔍";
  font-size: 2rem;
}

.icon-partnership::before {
  content: "🤝";
  font-size: 2rem;
}

.value-title {
  font-size: 1.5rem;
  color: var(--pure-white);
  margin-bottom: 1rem;
}

.value-description {
  color: var(--metallic-silver);
  line-height: 1.6;
}

/* Companionship Section */
.companionship .container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.companionship-content {
  max-width: 800px;
}

.companionship-description {
  font-size: 1.125rem;
  color: var(--metallic-silver);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.companionship-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--card-bg-alt);
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
}

.feature-icon {
  font-size: 1.5rem;
}

.feature-text {
  color: var(--pure-white);
  font-weight: 500;
}

/* Features Section */
.features {
  background: var(--card-bg-alt);
}

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

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--electric-blue);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 168, 255, 0.15);
}

.feature-icon-container {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

.feature-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--electric-blue);
  border-radius: 12px;
  opacity: 0.1;
}

.feature-icon-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  color: var(--pure-white);
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--metallic-silver);
  line-height: 1.6;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.3) 0%, rgba(26, 26, 46, 0.4) 50%, rgba(10, 10, 10, 0.3) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 168, 255, 0.2);
  border-bottom: 1px solid rgba(0, 168, 255, 0.2);
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 168, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
  z-index: 1;
}

.cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  right: -100%;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 168, 255, 0.3), rgba(255, 255, 255, 0.2), rgba(0, 168, 255, 0.3), transparent);
  animation: subtleSweep 30s ease-in-out infinite;
  z-index: 1;
}

@keyframes subtleSweep {
  0%, 100% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    transform: translateX(100%);
    opacity: 1;
  }
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.cta-title {
  font-size: 2.5rem;
  color: var(--pure-white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-description {
  font-size: 1.25rem;
  color: var(--pure-white);
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Get Started Page Styles */
.get-started-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  position: relative;
  background: linear-gradient(135deg, rgba(0, 168, 255, 0.08) 0%, rgba(255, 107, 53, 0.08) 100%);
}

.get-started-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(0, 168, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.get-started-hero .container {
  position: relative;
  z-index: 2;
}

.quick-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--electric-blue);
  font-family: var(--font-primary);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--metallic-silver);
  margin-top: 0.5rem;
}

.steps-section {
  padding: 5rem 0;
  background: var(--card-bg-alt);
}

.steps-list {
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.simple-steps {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
}

.step-item {
  counter-increment: step-counter;
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.step-item::before {
  content: counter(step-counter);
  position: absolute;
  top: -15px;
  left: 2rem;
  background: var(--electric-blue);
  color: var(--pure-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 168, 255, 0.4);
}

.step-item {
  transition: all 0.3s ease, box-shadow 0.4s ease;
  animation: gentleGlow 3s ease-in-out infinite;
}

@keyframes gentleGlow {
  0%, 100% { 
    box-shadow: 0 2px 10px rgba(0, 168, 255, 0.1);
  }
  50% { 
    box-shadow: 0 4px 20px rgba(0, 168, 255, 0.2);
  }
}

.step-item:hover {
  transform: translateY(-5px);
  border-color: var(--electric-blue);
  box-shadow: 0 15px 35px rgba(0, 168, 255, 0.3);
  animation: hoverPulse 1.5s ease-in-out infinite;
}

@keyframes hoverPulse {
  0%, 100% { 
    box-shadow: 0 15px 35px rgba(0, 168, 255, 0.3);
  }
  50% { 
    box-shadow: 0 20px 45px rgba(0, 168, 255, 0.4);
  }
}

.step-item:hover::before {
  box-shadow: 0 6px 20px rgba(0, 168, 255, 0.6);
}

.step-item:hover .step-btn.btn-secondary {
  background: var(--electric-blue);
  color: var(--pure-white);
  border-color: var(--electric-blue);
}

.step-content {
  padding-top: 1rem;
}

.step-title {
  font-size: 1.4rem;
  color: var(--pure-white);
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: var(--font-primary);
}

.step-description {
  color: var(--metallic-silver);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.step-btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.step-btn.btn-primary {
  background: var(--electric-blue);
  border: none;
  color: var(--pure-white);
}

.step-btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 168, 255, 0.4);
}

.step-btn.btn-secondary:hover {
  background: var(--electric-blue);
  color: var(--pure-white);
  transform: translateY(-2px);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2rem 2rem 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 168, 255, 0.03) 0%, rgba(255, 107, 53, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover::before {
  opacity: 1;
}

.step-card:hover {
  transform: translateY(-10px);
  border-color: var(--electric-blue);
  box-shadow: 0 20px 40px rgba(0, 168, 255, 0.25);
}

.step-card:hover .step-number {
  box-shadow: 0 6px 25px rgba(0, 168, 255, 0.6);
}

.step-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3;
}

.step-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--electric-blue);
  color: var(--pure-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0, 168, 255, 0.4);
}

.step-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(0, 168, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.step-title {
  font-size: 1.4rem;
  color: var(--pure-white);
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: var(--font-primary);
}

.step-description {
  color: var(--metallic-silver);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  flex: 1;
}

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.feature-badge {
  background: rgba(0, 168, 255, 0.1);
  color: var(--electric-blue);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.75rem;
  border: 1px solid rgba(0, 168, 255, 0.3);
  font-weight: 500;
  transition: all 0.3s ease;
}

.step-card:hover .feature-badge {
  background: rgba(0, 168, 255, 0.15);
  border-color: rgba(0, 168, 255, 0.4);
}

.step-btn {
  width: 100%;
  margin-top: auto;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.step-btn.btn-primary {
  background: var(--electric-blue);
  border: none;
  color: var(--pure-white);
}

.step-btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 168, 255, 0.4);
}

.step-btn.btn-secondary:hover {
  background: var(--electric-blue);
  color: var(--pure-white);
  transform: translateY(-2px);
}

.benefits-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(0, 168, 255, 0.03) 0%, rgba(255, 107, 53, 0.03) 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.benefits-list {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: var(--card-bg-alt);
  border-color: var(--electric-blue);
  transform: translateX(10px);
}

.benefit-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.benefit-text h4 {
  color: var(--pure-white);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

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

.benefits-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  max-width: 300px;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(0, 168, 255, 0.1);
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

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

.card-title {
  color: var(--pure-white);
  font-weight: 600;
}

.card-status {
  background: rgba(0, 255, 0, 0.1);
  color: #00ff00;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  border: 1px solid rgba(0, 255, 0, 0.3);
}

.card-metrics {
  display: grid;
  gap: 1rem;
}

.metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.metric:last-child {
  border-bottom: none;
}

.metric-label {
  color: var(--metallic-silver);
  font-size: 0.9rem;
}

.metric-value {
  color: var(--electric-blue);
  font-weight: 600;
}

.support-section {
  padding: 5rem 0;
  background: var(--card-bg-alt);
}

.support-content {
  text-align: center;
}

.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.support-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.support-card {
  animation: gentleGlow 3s ease-in-out infinite;
}

.support-card:hover {
  transform: translateY(-5px);
  border-color: var(--electric-blue);
  box-shadow: 0 15px 30px rgba(0, 168, 255, 0.3);
  animation: hoverPulse 1.5s ease-in-out infinite;
}

.support-card:hover .btn-outline {
  background: var(--electric-blue);
  color: var(--pure-white);
  border-color: var(--electric-blue);
}

.support-card:hover .btn-primary {
  background: var(--electric-blue);
  color: var(--pure-white);
  border-color: var(--electric-blue);
}

.support-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.support-card h3 {
  color: var(--pure-white);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.support-card p {
  color: var(--metallic-silver);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .quick-stats {
    gap: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .support-options {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  background: linear-gradient(180deg, rgba(27, 27, 47, 0.95) 0%, rgba(16, 16, 30, 0.98) 100%);
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.logo-simplified {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--pure-white);
}

.logo-p {
  color: var(--electric-blue);
}

.footer-tagline {
  color: var(--metallic-silver);
  font-style: italic;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-title {
  color: var(--pure-white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-link {
  display: block;
  color: var(--metallic-silver);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--electric-blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-copyright {
  color: var(--metallic-silver);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

/* Page Content Styles */
.page-content {
  padding: 120px 0 80px;
  min-height: calc(100vh - 200px);
}

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

.page-title {
  font-size: 3rem;
  color: var(--electric-blue);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--metallic-silver);
  max-width: 600px;
  margin: 0 auto;
}

.content-grid {
  display: grid;
  gap: 3rem;
}

.content-section {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
}

.content-section h2 {
  color: var(--electric-blue);
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.content-section p {
  color: var(--metallic-silver);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.values-list {
  list-style: none;
  padding: 0;
}

.values-list li {
  color: var(--metallic-silver);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.values-list li::before {
  content: "→";
  color: var(--electric-blue);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.values-list strong {
  color: var(--pure-white);
}

/* Jobs Grid */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.job-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.job-card:hover {
  border-color: var(--electric-blue);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 168, 255, 0.15);
}

.job-card h3 {
  color: var(--pure-white);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.job-location {
  color: var(--electric-blue);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.job-description {
  color: var(--metallic-silver);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.job-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  background: rgba(0, 168, 255, 0.1);
  color: var(--electric-blue);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  border: 1px solid rgba(0, 168, 255, 0.3);
}

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

.news-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.news-card:hover {
  border-color: var(--electric-blue);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 168, 255, 0.15);
}

.news-date {
  color: var(--electric-blue);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.news-title {
  color: var(--pure-white);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.3;
}

.news-excerpt {
  color: var(--metallic-silver);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.news-link {
  color: var(--electric-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.news-link:hover {
  color: var(--pure-white);
}

.cta-section {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(0, 168, 255, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
  border-radius: 16px;
}

.cta-section h2 {
  color: var(--electric-blue);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--metallic-silver);
  margin-bottom: 2rem;
}

/* Simple Page Styles */
.simple-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 3rem;
}

.simple-content h2 {
  color: var(--electric-blue);
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.simple-content h2:first-child {
  margin-top: 0;
}

.simple-content p {
  color: var(--metallic-silver);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.simple-content ul {
  color: var(--metallic-silver);
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.simple-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.simple-content strong {
  color: var(--pure-white);
}

.contact-info {
  background: rgba(0, 168, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 168, 255, 0.3);
  margin: 2rem 0;
}

.contact-info h3 {
  color: var(--electric-blue);
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: var(--electric-blue);
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--pure-white);
}

/* Work in Progress Styles */
.wip-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  pointer-events: none;
}

.wip-banner {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(255, 51, 102, 0.9) 100%);
  color: white;
  text-align: center;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  z-index: 1001;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.wip-banner::before {
  content: "🚧";
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.wip-banner::after {
  content: "🚧";
  margin-left: 0.5rem;
  font-size: 1.2rem;
}

body.work-in-progress {
  filter: grayscale(70%) brightness(0.7) contrast(0.8);
  transition: filter 0.3s ease;
}

body.work-in-progress .btn {
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

body.work-in-progress .step-item:hover {
  transform: none;
  border-color: var(--border-subtle);
  box-shadow: 0 2px 10px rgba(0, 168, 255, 0.1);
  animation: none;
}

body.work-in-progress .support-card:hover {
  transform: none;
  border-color: var(--border-subtle);
  box-shadow: 0 4px 15px rgba(0, 168, 255, 0.1);
  animation: none;
}

body.work-in-progress .support-card:hover .btn-outline,
body.work-in-progress .step-item:hover .step-btn {
  background: transparent;
  color: var(--metallic-silver);
  border-color: var(--metallic-silver);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .companionship .container {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    display: none;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template_columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .wip-banner {
    font-size: 1rem;
    padding: 0.8rem 1rem;
  }
}