/* =========================================================================
   STYLE.CSS - NESTAMI VANILLA CSS
   ========================================================================= */

:root {
  --bg-dark: #020813;
  --text-light: #f8fafc;
  --cyan-100: #cffafe;
  --cyan-200: #a5f3fc;
  --cyan-300: #67e8f9;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --cyan-900: #164e63;
  --cyan-950: #083344;
  --blue-400: #60a5fa;
  --blue-600: #2563eb;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --card-bg: #050e1d;
  --card-border: #16253a;
}

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

body, html {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #020813; /* Ciemna baza, aby tło pod stopką w nieskończoność było ciemne */
  color: var(--slate-900);
  font-weight: 300;
  line-height: 1.5;
}

body {
  position: relative; /* Pozwala bg-gradient-top na pełne pokrycie wysokości dokumentu */
  overflow-x: hidden;
}

::selection {
  background-color: rgba(6, 182, 212, 0.3);
}

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

/* Typography & Helpers */
.text-cyan { color: var(--cyan-400); }
.text-slate { color: var(--slate-600); }
.text-slate-muted { color: var(--slate-500); }
.text-white { color: #ffffff; }
.text-light-bold { color: #ffffff; font-weight: 500; }
.hidden-md { display: block; }
.visible-md { display: none; }
@media (min-width: 768px) {
  .hidden-md { display: none; }
  .visible-md { display: block; }
}

/* Icons */
.icon-tiny { width: 10px; height: 10px; }
.icon-small { width: 16px; height: 16px; }
.icon-medium { width: 20px; height: 20px; }
.icon-xl { width: 64px; height: 64px; }
.thin-stroke { stroke-width: 1px; }

/* Backgrounds */
.bg-wrapper {
  position: absolute;
  top: 0; bottom: 0; left: 0; width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bg-gradient-top {
  position: absolute;
  top: 0; bottom: 0; left: 0; width: 100%; /* Dynamiczne dopasowanie do wysokości dokumentu */
  background: linear-gradient(to bottom, 
    #ffffff 0px, 
    #ffffff 400px, 
    #081b36 1000px, 
    #020813 1800px);
  z-index: 0;
  pointer-events: none;
}

/* SIATKA I KROPKI: Pojawiają się dopiero na ciemnym tle dzięki niskiej opacitiy */
.bg-gradient-top::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Siatka blueprint */
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* SUBTELNE POŚWIATY (Glows) */
.glow-cyan {
  position: absolute;
  top: 800px; left: 50%; transform: translateX(-50%);
  width: 100vw; height: 100vw;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  filter: blur(120px);
  z-index: 1; pointer-events: none;
}

.glow-blue {
  position: absolute;
  top: 1400px; right: 0;
  width: 80vw; height: 80vw;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  filter: blur(120px);
  z-index: 1; pointer-events: none;
}

/* Navbar */
.navbar {
  position: relative;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  max-width: 1600px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
@media (min-width: 768px) {
  .navbar { flex-direction: row; }
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .nav-brand { margin-bottom: 0; } }
.nav-logo {
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--slate-900);
  text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.nav-divider {
  display: none;
  height: 1rem; width: 1px; background-color: var(--slate-300);
}
.nav-subtitle {
  display: none;
  font-size: 0.875rem; color: var(--slate-500); font-weight: 300; letter-spacing: 0.025em;
}
@media (min-width: 768px) {
  .nav-divider, .nav-subtitle { display: block; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-500);
}
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--slate-900); }
.btn-primary {
  display: flex; align-items: center; gap: 0.5rem;
  background-color: #0a1728;
  border: 1px solid rgba(6,182,212,0.3);
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0,200,255,0.15);
  transition: all 0.3s;
  font-size: 0.875rem;
}
.btn-primary:hover { background-color: #11243d; border-color: rgba(34,211,238,0.5); }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

/* Main Content */
.main-content {
  position: relative; z-index: 10;
  padding: 4rem 1rem;
  max-width: 1600px;
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}
@media (min-width: 768px) { .main-content { padding: 4rem 2rem; } }

/* Hero Card */
.hero-card {
  position: relative;
  width: 100%; 
  max-width: 1050px;
  border-radius: 56px;
  
  /* Cieńsze i bardziej przezroczyste obramowanie */
  border: 1px solid rgba(255, 255, 255, 0.25);
  
  /* Kluczowa zmiana: bardzo niska przezroczystość tła (tylko 3-10%) */
  background: linear-gradient(
    135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.03) 100%
  );
  
  /* Silne rozmycie tła - to daje efekt "Premium Glass" */
  backdrop-filter: blur(40px) saturate(120%);
  -webkit-backdrop-filter: blur(40px) saturate(120%);
  
  padding: 3rem 2rem;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  text-align: center;
  
  /* Cienie zewnętrzne (miękkie) i wewnętrzne (blask krawędzi) */
  box-shadow: 
    0 40px 100px rgba(0, 0, 0, 0.1), /* Cień rzucany na tło */
    inset 0 0 20px rgba(255, 255, 255, 0.1); /* Delikatny wewnętrzny blask */
    
  z-index: 20;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

@media (min-width: 768px) {
  .hero-card { padding: 5rem 4rem; }
}

.status-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 1rem; border-radius: 9999px;
  background-color: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.1);
  font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 2rem; box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  position: relative; z-index: 10;
}
.status-label { color: var(--slate-600); font-weight: 600; }
.status-value { color: var(--slate-800); font-weight: 600; display: flex; align-items: center; gap: 0.5rem; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background-color: #10b981; animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }

.hero-title {
  font-size: 3rem; font-weight: 700; letter-spacing: -0.025em; line-height: 1.1;
  margin-bottom: 1.5rem; color: #031024; text-align: center;
  position: relative; z-index: 10;
}
@media (min-width: 768px) { .hero-title { font-size: 5.5rem; } }
.hero-subtitle {
  font-size: 1.125rem; color: var(--slate-800); max-width: 42rem; margin: 0 auto 3rem;
  line-height: 1.625; text-align: center; position: relative; z-index: 10; font-weight: 300;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.25rem; } }

/* ORCHESTRATOR SIMULATION */
.orchestrator-container {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin-top: 1rem; margin-bottom: 5rem; height: 400px; width: 100%;
}
.network-line {
  position: absolute; left: 50%; width: 150vw; max-width: 2000px; height: 1px;
  transform: translateX(-50%); pointer-events: none;
}
.line-cyan { top: 50%; background: linear-gradient(to right, transparent, rgba(34, 211, 238, 0.5), transparent); transform: translate(-50%, -50%); }
.line-blue { top: calc(50% - 30px); width: 140vw; max-width: 1800px; background: linear-gradient(to right, transparent, rgba(96, 165, 250, 0.3), transparent); }
.line-emerald { top: calc(50% + 30px); width: 140vw; max-width: 1800px; background: linear-gradient(to right, transparent, rgba(52, 211, 153, 0.2), transparent); }

/* Orchestrator Sphere Core */
.orchestrator-orb {
    position: relative;
    z-index: 10;
    width: 360px; /* Rozmiar dopasowany do Twojego testu */
    height: 360px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none; /* Usuwamy stare cienie CSS, shader sam świeci */
}

/* Canvas musi wypełniać cały kontener */
.orchestrator-orb canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
@media (min-width: 768px) { .orchestrator-orb { width: 360px; height: 360px; } }
@keyframes orbPulsethrob {
  0%, 100% { box-shadow: inset 0 20px 60px rgba(255,255,255,0.4), inset 0 -20px 60px rgba(0,150,255,0.3), 0 0 80px rgba(0,200,255,0.15); }
  50% { box-shadow: inset 0 20px 60px rgba(255,255,255,0.5), inset 0 -20px 60px rgba(0,200,255,0.4), 0 0 100px rgba(0,200,255,0.3); }
}

.orbits-wrapper { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; perspective: 1000px; }
.orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.05); }
.orbit-1 { width: 85%; height: 85%; border-top-color: rgba(103, 232, 249, 0.4); border-bottom-color: rgba(103, 232, 249, 0.1); }
.orbit-2 { width: 90%; height: 90%; border-bottom-color: rgba(165, 243, 252, 0.4); }
.orbit-3 { width: 95%; height: 95%; border-left-color: rgba(34, 211, 238, 0.3); }

.glare-top { position: absolute; top: 3%; left: 18%; right: 18%; height: 25%; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); border-radius: 50%; opacity: 0.9; filter: blur(1px); }
.glare-bottom { position: absolute; bottom: 3%; left: 22%; right: 22%; height: 15%; background: linear-gradient(to top, rgba(103,232,249,0.3), transparent); border-radius: 50%; opacity: 0.7; filter: blur(2px); }

.orb-text { position: relative; z-index: 20; display: flex; flex-direction: column; align-items: center; }
.orb-text p { color: rgba(255,255,255,0.9); font-weight: 500; font-size: 15px; letter-spacing: 0.2em; text-shadow: 0 2px 4px rgba(0,0,0,0.4); }
@media (min-width: 768px) { .orb-text p { font-size: 18px; } }

/* Particles Canvas/Containers */
.particles-chaos, .particles-harmonized { position: absolute; top: 50%; left: 50%; width: 0; height: 0; pointer-events: none; z-index: 0; }
.particle-chao { position: absolute; display: flex; align-items: center; justify-content: center; overflow: hidden; border: 1px solid rgba(34,211,238,0.2); background-color: rgba(6,20,40,0.9); box-shadow: 0 0 15px rgba(0,180,255,0.15); backdrop-filter: blur(4px); }
.particle-harm { position: absolute; border-radius: 20px; background-color: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(16px); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 25px rgba(0,180,255,0.15), inset 0 0 15px rgba(255,255,255,0.5); width: 56px; height: 56px; }
@media (min-width: 768px) { .particle-harm { width: 80px; height: 80px; } }
.particle-harm i { color: white; filter: drop-shadow(0 0 12px rgba(255,255,255,0.9)); stroke-width: 1.5px; width: 24px; height: 24px; }
@media (min-width: 768px) { .particle-harm i { width: 32px; height: 32px; } }

/* CTA Buttons inside Hero */
.cta-buttons { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; position: relative; z-index: 20; margin-bottom: 2rem; margin-top: 3rem; width: 100%; }
@media (min-width: 768px) { .cta-buttons { flex-direction: row; width: auto; } }
.btn-explore { display: flex; align-items: center; justify-content: center; gap: 0.75rem; background-color: #0a1728; border: 1px solid rgba(6,182,212,0.3); padding: 1rem 2.5rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 600; color: white; box-shadow: 0 0 30px rgba(0,200,255,0.15); transition: all 0.3s; cursor: pointer; width: 100%; }
@media (min-width: 768px) { .btn-explore { width: auto; } }
.btn-explore:hover { background-color: #11243d; border-color: rgba(34,211,238,0.5); }
.btn-arrow { transition: transform 0.3s ease; }
.btn-explore:hover .btn-arrow { transform: translateX(4px); }
.btn-watch { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem 2rem; font-size: 0.875rem; font-weight: 500; color: var(--slate-300); transition: color 0.3s; background: transparent; border: none; cursor: pointer; width: 100%; }
@media (min-width: 768px) { .btn-watch { width: auto; } }
.btn-watch:hover { color: white; }
.shadow-icon { filter: drop-shadow(0 0 10px rgba(6,182,212,0.8)); }

.card-footer-note { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.75rem; font-size: 0.75rem; color: var(--slate-400); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 1rem; position: relative; z-index: 20; }

/* Stats Strip */
.stats-strip { width: 100%; max-width: 1200px; margin-top: 4rem; display: grid; grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 0; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); position: relative; z-index: 10; }
@media (min-width: 768px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .stats-strip { grid-template-columns: repeat(4, 1fr); } }
.stat-item { display: flex; flex-direction: column; gap: 0.5rem; position: relative; padding-left: 3rem; margin-bottom: 1rem;}
.stat-icon-wrapper { position: absolute; left: 0; top: 4px; width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; background-color: rgba(255,255,255,0.05); transition: border-color 0.3s; }
.stat-item:hover .stat-icon-wrapper { border-color: rgba(6,182,212,0.5); }
.stat-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-400); margin: 0;}
.stat-number { font-size: 2.1rem; font-weight: 300; color: var(--text-light); margin: 0;}
.stat-unit { font-size: 1rem; color: var(--slate-400); }
.stat-desc { font-size: 0.85rem; color: var(--slate-300); margin: 0;}

/* Modules Visualization */
.modules-visualization { width: 100%; max-width: 1400px; margin-top: 6rem; position: relative; z-index: 10; }
.modules-header { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .modules-header { flex-direction: row; } }
.modules-title-wrapper {text-align: left; width: 100%;}
.section-badge { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--slate-500); margin-bottom: 0.5rem; }
.section-title { font-size: 1.5rem; font-weight: 300; margin: 0; color: var(--text-light); }
@media (min-width: 768px) { .section-title { font-size: 1.875rem; } }
.modules-meta { font-size: 0.75rem; letter-spacing: 0.1em; color: var(--slate-500); text-transform: uppercase; text-align: left; margin-top: 1rem; width: 100%;}
@media (min-width: 768px) { .modules-meta { text-align: right; margin-top: 0; width: auto;} }

.modules-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .modules-grid { grid-template-columns: repeat(3, 1fr); } }

.module-card { background-color: var(--card-bg); border: 1px solid var(--card-border); border-radius: 24px; padding: 2rem; position: relative; overflow: hidden; font-weight: 300; transition: border-color 0.3s; }
.module-card:hover { border-color: #1e3450; }
.blob-1 { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 256px; height: 256px; background-color: rgba(22,78,99,0.1); border-radius: 50%; filter: blur(60px); pointer-events: none;}
.card-num-title { color: var(--slate-500); font-weight: 500; margin-bottom: 0.25rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 1rem; margin-top: 0;}
.card-num { color: white; margin-right: 0.5rem; }
.card-desc { font-size: 0.875rem; color: var(--slate-400); margin-bottom: 3rem; padding-top: 1rem; margin-top: 0;}
.card-graphic { height: 12rem; display: flex; align-items: center; justify-content: space-between; padding: 0 1rem; margin-bottom: 2rem; position: relative;}
.relative-graphic { padding: 0; justify-content: space-between; overflow: hidden;}
.center-all { justify-content: center; overflow: visible;}

.graphic-col { display: flex; flex-direction: column; align-items: center; opacity: 0.7; }
.graphic-label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--slate-500); margin-top: 1.5rem; white-space: nowrap; text-align: center;}
.icon-stacked { position: relative; }
.stacked-over { position: absolute; bottom: 8px; right: 8px; drop-shadow: 0 0 10px rgba(0,255,255,0.8); }

.card-text { text-align: center; font-size: 0.875rem; color: var(--slate-300); line-height: 1.6; padding: 0 1rem; margin: 0; }

/* Mockups inside Card 2 */
.mockup-traditional { width: 140px; height: 100%; background-color: #0a1120; border: 1px solid #1a283b; border-radius: 12px; padding: 0.75rem; display: flex; flex-direction: column; opacity: 0.6; transform: scale(0.95); transform-origin: left; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.mockup-title { font-size: 8px; color: var(--slate-500); text-align: center; margin-bottom: 0.5rem; }
.mockup-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.8); }
.mockup-balance { margin-bottom: 1rem; }
.balance-val { display: block; font-size: 0.875rem; color: white; font-weight: 500; }
.balance-lbl { display: block; font-size: 7px; color: var(--slate-500); }
.mockup-list { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.mockup-list-item { width: 100%; display: flex; justify-content: space-between; align-items: center; background-color: rgba(255,255,255,0.05); border-radius: 4px; padding: 0.375rem; }
.item-icon { width: 12px; height: 12px; border-radius: 2px; background-color: rgba(255,255,255,0.1); }
.item-line { height: 6px; background-color: rgba(255,255,255,0.1); border-radius: 4px; }
.w-10 { width: 2.5rem; } .w-12 { width: 3rem; }
.item-val { height: 6px; border-radius: 4px; }
.item-val.red { width: 1.5rem; background-color: rgba(248, 113, 113, 0.4); }
.item-val.green { width: 1.25rem; background-color: rgba(52, 211, 153, 0.4); }

.abs-center-arrow { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 10; }

.mockup-adaptive { width: 140px; height: 100%; background: linear-gradient(to bottom, #091a2f, #040c17); border: 1px solid rgba(22, 78, 99, 0.5); border-radius: 12px; padding: 1rem; display: flex; flex-direction: column; align-items: center; justify-content: center; transform: scale(1.05); transform-origin: right; box-shadow: 0 0 30px rgba(0, 150, 255, 0.1); position: relative; }
.mockup-adaptive-title { font-size: 8px; color: rgba(6,182,212,0.8); text-transform: uppercase; letter-spacing: 0.1em; position: absolute; top: 12px; text-align: center; width: 100%; left: 0;}
.mockup-adaptive-hello { font-size: 0.75rem; color: white; font-weight: 500; margin-bottom: 1rem; text-align: center; margin-top: 1rem; }
.mockup-adaptive-circle { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(34,211,238,0.3); display: flex; align-items: center; justify-content: center; position: relative; margin-bottom: 1rem; }
.pulse-dot-inner { width: 8px; height: 8px; border-radius: 50%; background-color: #22d3ee; animation: pulse 2s infinite; box-shadow: 0 0 10px #00ffff; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background-color: #22d3ee; animation: pulse 2s infinite; box-shadow: 0 0 10px #00ffff;}
.mockup-adaptive-status { font-size: 10px; color: rgba(165,243,252,0.7); text-align: center; }

/* Nodes inside Card 3 */
.node-central { position: absolute; width: 80px; height: 80px; border-radius: 50%; background-color: rgba(8, 51, 68, 0.4); border: 1px solid rgba(6,182,212,0.3); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 10; box-shadow: 0 0 20px rgba(0,150,255,0.2); }
.node-title { font-size: 8px; letter-spacing: 0.1em; color: #00f0ff; font-weight: 500; line-height: 1.2; }
.node-subtitle { font-size: 5px; color: rgba(165,243,252,0.5); text-transform: uppercase; letter-spacing: 0.05em; text-align: center; margin-top: 2px; }
.node-satellite { position: absolute; display: flex; align-items: center; gap: 0.25rem; z-index: 5;}
.node-satellite p { font-size: 8px; color: var(--slate-500); margin: 0; line-height: 1.2;}
.top-center { top: 8px; left: 50%; transform: translateX(-50%); flex-direction: column; gap: 4px; }
.mid-right { top: 25%; right: 8px; }
.bot-right { bottom: 25%; right: 8px; }
.bot-center { bottom: 8px; left: 50%; transform: translateX(-50%); flex-direction: column; text-align: center; gap: 4px; }
.mid-left { top: 33%; left: 24px; }
.mid-left p { text-align: right; width: 48px; }
.icon-circle { width: 20px; height: 20px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; background-color: rgba(255,255,255,0.05); }
.icon-circle-cyan { width: 20px; height: 20px; border-radius: 50%; border: 1px solid rgba(6,182,212,0.5); background-color: rgba(22,78,99,0.4); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 10px rgba(0,150,255,0.3); }
.vertical-line { width: 4px; height: 12px; border-radius: 2px; background-color: rgba(255,255,255,0.2); }
.svg-connections { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.2; }

/* Ethos Section */
.ethos-section { width: 100%; max-width: 1400px; margin-top: 3rem; background: linear-gradient(to right, #071324, #040C18); border: 1px solid rgba(22,78,99,0.3); border-radius: 16px; padding: 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 2rem; justify-content: space-between; box-shadow: 0 0 40px rgba(0,100,255,0.05); position: relative; z-index: 10; }
@media (min-width: 1024px) { .ethos-section { flex-direction: row; padding: 2rem; gap: 4rem; } }
.ethos-brand { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.ethos-icon { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(6,182,212,0.3); background-color: rgba(8,51,68,0.6); display: flex; align-items: center; justify-content: center; position: relative; }
.ethos-icon-glow { position: absolute; inset: 0; background-color: rgba(34,211,238,0.2); filter: blur(8px); border-radius: 50%; }
.ethos-label { font-size: 0.875rem; font-weight: 700; letter-spacing: 0.1em; color: var(--slate-400); text-transform: uppercase; margin-bottom: 4px; margin-top: 0;}
.ethos-title { font-size: 0.875rem; font-weight: 300; color: var(--slate-400); margin: 0;}
.ethos-muted { color: var(--slate-400); font-weight: 300;}
.ethos-divider { width: 1px; height: 48px; background-color: rgba(255,255,255,0.1); display: none; }
@media (min-width: 1024px) { .ethos-divider { display: block; } }
.ethos-items { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem; flex: 1; width: 100%; }
@media (min-width: 768px) { .ethos-items { flex-wrap: nowrap; gap: 3rem; } }
.ethos-item { display: flex; align-items: center; gap: 0.9rem; }
.ethos-item .icon-small { width: 19.2px; height: 19.2px; }
.ethos-text p { margin: 0; font-size: 0.9rem; line-height: 1.25; font-weight: 300;}

/* Footer */
.footer { position: relative; z-index: 10; width: 100%; max-width: 1600px; margin: 4rem auto 0; border-top: 1px solid rgba(255,255,255,0.05); padding: 3rem 2rem 20px; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 2rem; }
@media (min-width: 768px) { .footer { flex-direction: row; } }
.footer-brand { display: flex; flex-direction: column; gap: 4px; align-items: center;}
@media (min-width: 768px) { .footer-brand { align-items: flex-start;} }
.footer-logo { font-size: 1.125rem; letter-spacing: 0.2em; font-weight: 500; }
.footer-subtitle { font-size: 10px; color: var(--slate-500); letter-spacing: 0.05em; }
.footer-tagline { font-size: 0.675rem; color: var(--slate-400); text-align: center; font-weight: 300; }
.footer-logo { font-size: 1.46rem; letter-spacing: 0.2em; font-weight: 500; color: #ffffff; }
.footer-subtitle { font-size: 13px; color: #ffffff; letter-spacing: 0.05em; }
.footer-tagline { font-size: 13px; color: #ffffff; text-align: center; font-weight: 300; }
@media (min-width: 768px) { .footer-tagline { text-align: left; } }
.footer-links { display: flex; align-items: center; gap: 2rem; font-size: 0.75rem; font-weight: 500; color: #ffffff; }