#awesome-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: radial-gradient(circle at 30% 20%, #0a0a2a, #010105);
}

.bg-noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

.dark-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.815);
  z-index: -1;
  pointer-events: none;
}

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

body {
  font-family: "Inter", sans-serif;
  background-color: #010105;
  color: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
  background: transparent;
  position: relative;
  z-index: 1;
}

#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.content-wrapper {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  backdrop-filter: blur(2px);
}

:root {
  --neon-cyan: #00f2ff;
  --neon-purple: #b624ff;
  --neon-pink: #ff2d95;
  --glow-cyan: rgba(0, 242, 255, 0.6);
  --glow-purple: rgba(182, 36, 255, 0.6);
  --grad-primary: linear-gradient(135deg, #00f2ff, #b624ff, #ff2d95);
  --grad-dark: linear-gradient(145deg, #0a0a1a, #02020c);
  --glass-bg: rgba(15, 20, 40, 0.45);
  --glass-border: 1px solid rgba(0, 242, 255, 0.25);
  --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 242, 255, 0.2);
}

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

header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 15, 0.55);
  border-bottom: 1px solid rgba(0, 242, 255, 0.25);
  transition: all 0.4s ease;
}
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.logo {
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  position: relative;
  transition: 0.3s;
}
.logo:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.5));
}
.logo span {
  font-size: 0.9rem;
  background: none;
  color: var(--neon-cyan);
  font-weight: 500;
  text-shadow: 0 0 5px var(--neon-cyan);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: #eef5ff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: 0.25s;
  position: relative;
  letter-spacing: 0.3px;
}
.nav-links a::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--grad-primary);
  transition: 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 0 6px var(--neon-cyan);
}
.nav-links a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 3px var(--neon-cyan);
}
.nav-links a:hover::before {
  width: 100%;
}

.nav-btn {
  background: rgba(0, 242, 255, 0.08);
  border: 1px solid var(--neon-cyan);
  padding: 0.4rem 1.3rem;
  border-radius: 40px;
  transition: 0.3s;
}
.nav-btn:hover {
  background: rgba(0, 242, 255, 0.2);
  box-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
  transform: translateY(-2px);
}
.nav-btn a {
  color: var(--neon-cyan) !important;
}
.nav-btn a::before {
  display: none;
}

.hero {
  padding: 5rem 0 7rem;
  position: relative;
}
.hero-content {
  max-width: 820px;
  animation: fadeInUp 1s ease-out;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0, 242, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1.4rem;
  border-radius: 60px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  border: 1px solid rgba(0, 242, 255, 0.5);
  color: var(--neon-cyan);
  margin-bottom: 1.8rem;
  box-shadow: 0 0 12px rgba(0, 242, 255, 0.2);
  transition: 0.3s;
}
.hero-badge i {
  font-size: 1rem;
  animation: pulseRotate 2s infinite;
}
@keyframes pulseRotate {
  0% {
    text-shadow: 0 0 0px cyan;
    transform: rotate(0deg);
  }
  50% {
    text-shadow: 0 0 8px cyan;
    transform: rotate(5deg);
  }
  100% {
    text-shadow: 0 0 0px cyan;
    transform: rotate(0deg);
  }
}
.hero h1 {
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #a0f0ff, #d28eff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero h1 span {
  background: linear-gradient(
    120deg,
    var(--neon-cyan),
    var(--neon-purple),
    #ff5e9e
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}
.hero h1 span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-primary);
  filter: blur(2px);
  border-radius: 4px;
}
.hero-description {
  font-size: 1.25rem;
  color: #ccddf8;
  margin-bottom: 2.2rem;
  max-width: 650px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
}
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  font-size: 1rem;
  cursor: pointer;
  border: none;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
}
.btn-primary {
  background: var(--grad-primary);
  color: white;
  box-shadow: 0 8px 20px rgba(0, 242, 255, 0.4);
  background-size: 150% 150%;
}
.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 242, 255, 0.7);
  filter: brightness(1.05);
}
.btn-outline {
  background: rgba(0, 242, 255, 0.08);
  border: 1.5px solid var(--neon-cyan);
  color: var(--neon-cyan);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(0, 242, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(0, 242, 255, 0.5);
  border-color: #fff;
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}
.btn:active::after {
  width: 200%;
  height: 200%;
  opacity: 0;
  transition: 0s;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 0.7rem 1.5rem;
  border-radius: 60px;
  border: var(--glass-border);
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.stat-item:hover {
  transform: translateY(-3px);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 18px rgba(0, 242, 255, 0.3);
}
.stat-item i {
  color: var(--neon-cyan);
  font-size: 1.4rem;
  filter: drop-shadow(0 0 4px cyan);
}
.stat-item strong {
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #aaf0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 800px) {
  .container {
    padding: 0 1.5rem;
  }
  .nav-links {
    gap: 1.2rem;
  }
  .hero h1 {
    font-size: 2.7rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-buttons .btn {
    padding: 0.7rem 1.5rem;
  }
}
@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-stats {
    gap: 1rem;
  }
  .stat-item {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
}

.custom-cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--neon-cyan);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: 0.05s linear;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(2px);
  box-shadow: 0 0 8px cyan;
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-modal.active {
  display: flex;
  opacity: 1;
}
.modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  background: #0a0a1a;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 242, 255, 0.3);
  border: 1px solid rgba(0, 242, 255, 0.4);
  animation: modalZoomIn 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
@keyframes modalZoomIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(0, 242, 255, 0.3);
}
.modal-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  background: linear-gradient(135deg, #fff, var(--neon-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.close-modal {
  background: none;
  border: none;
  color: var(--neon-cyan);
  font-size: 1.8rem;
  cursor: pointer;
  transition: 0.2s;
  line-height: 1;
}
.close-modal:hover {
  color: #fff;
  text-shadow: 0 0 8px cyan;
  transform: scale(1.1);
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none;
}
.video-error {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ff8a8a;
  background: rgba(0, 0, 0, 0.7);
  padding: 1rem;
  border-radius: 20px;
  font-size: 1rem;
  pointer-events: none;
}
@media (max-width: 640px) {
  .modal-content {
    width: 95%;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-description {
    font-size: 1rem;
  }
}

/* ========== Вторая секция блока ========== */

:root {
  --neon-blue: #00f2ff;
  --neon-purple: #b624ff;
  --neon-pink: #ff2d95;
  --neon-cyan: #00d4ff;
  --glow-blue: rgba(0, 242, 255, 0.4);
  --glow-purple: rgba(182, 36, 255, 0.4);
  --glow-pink: rgba(255, 45, 149, 0.4);
  --glass-bg: rgba(15, 20, 40, 0.45);
  --glass-border: 1px solid rgba(0, 242, 255, 0.2);
  --shadow-glow: 0 0 20px rgba(0, 242, 255, 0.3);
  --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.power-section {
  padding: 6rem 0;
  position: relative;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(0, 100, 255, 0.08),
    transparent
  );
}

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

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.section-badge {
  display: inline-block;
  background: rgba(0, 242, 255, 0.12);
  backdrop-filter: blur(4px);
  padding: 0.3rem 1.2rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--neon-blue);
  border: 1px solid rgba(0, 242, 255, 0.4);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    #ffffff,
    var(--neon-blue),
    var(--neon-purple)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.8rem;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  margin: 1rem auto;
  border-radius: 3px;
}

.section-sub {
  color: #a0b0d0;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 1rem auto 0;
}

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

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

.glass-card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-radius: 32px;
  border: var(--glass-border);
  padding: 2rem;
  transition: var(--transition);
  overflow: hidden;
  z-index: 1;
  height: 100%;
}

.glass-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--neon-blue);
  box-shadow: var(--shadow-glow);
}

.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--x, 50%) var(--y, 50%),
    rgba(0, 242, 255, 0.15),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: -1;
}

.glass-card:hover .card-glow {
  opacity: 1;
}

.card-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.2rem;
}

.card-icon {
  font-size: 2.8rem;
  filter: drop-shadow(0 0 8px currentColor);
  transition: var(--transition);
}

.glass-card:hover .card-icon {
  transform: scale(1.1);
}

.icon-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 242, 255, 0.3), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: opacity 0.5s;
}

.glass-card:hover .icon-pulse {
  opacity: 1;
  animation: pulseRing 1.2s infinite;
}

@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.glass-card[data-glow="pink"]:hover {
  border-color: var(--neon-pink);
  box-shadow: 0 0 25px rgba(255, 45, 149, 0.3);
}
.glass-card[data-glow="blue"]:hover {
  border-color: var(--neon-blue);
}
.glass-card[data-glow="purple"]:hover {
  border-color: var(--neon-purple);
}
.glass-card[data-glow="cyan"]:hover {
  border-color: var(--neon-cyan);
}
.glass-card[data-glow="magenta"]:hover {
  border-color: #ff44cc;
}

.card-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 1.2rem;
  font-size: 0.8rem;
  color: var(--neon-blue);
  border-top: 1px dashed rgba(0, 242, 255, 0.3);
  padding-top: 0.8rem;
}

.progress-bar {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  height: 6px;
  margin: 1rem 0;
  overflow: hidden;
}

.progress-fill {
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  width: 0%;
  height: 100%;
  border-radius: 20px;
  transition: width 1s ease;
}

.check-list {
  list-style: none;
  margin-top: 1rem;
}

.check-list li {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.check-list i {
  color: var(--neon-blue);
}

.math-block {
  background: rgba(0, 0, 0, 0.45);
  border-left: 4px solid var(--neon-blue);
  padding: 1rem;
  border-radius: 20px;
  margin: 1.2rem 0;
  font-family: "Fira Code", "Courier New", monospace;
}

.formula-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--neon-blue);
  margin-bottom: 0.3rem;
}

.formula {
  font-size: 0.9rem;
  color: #e0eaff;
  overflow-x: auto;
  padding: 0.3rem 0;
  font-weight: 500;
}

.formula-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: #bbd4ff;
}

.math-description {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #c0d0f0;
}

.metric-bar {
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.5rem;
}

.metric-bar span {
  font-size: 0.75rem;
  display: block;
  margin-bottom: 0.3rem;
}

.metric-fill {
  height: 4px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  border-radius: 4px;
  transition: width 1s ease;
}

.badge-mps,
.badge-ps {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 242, 255, 0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: bold;
  backdrop-filter: blur(4px);
}

.entanglement-card {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
}

.entanglement-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.live-badge {
  background: rgba(255, 45, 149, 0.2);
  color: var(--neon-pink);
  font-size: 0.7rem;
  padding: 0.2rem 0.7rem;
  border-radius: 30px;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.entanglement-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ent-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.ent-label {
  font-weight: 600;
  min-width: 150px;
  color: #ccddf8;
}

.ent-value {
  font-family: monospace;
  font-weight: bold;
  color: var(--neon-blue);
  min-width: 80px;
}

.ent-graph {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
}

.graph-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  border-radius: 6px;
  transition: width 0.5s;
}

.entanglement-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #8f9bb5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 1000px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .container {
    padding: 0 1.2rem;
  }
  .ent-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .ent-graph {
    width: 100%;
  }
}

.glass-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s forwards;
  animation-delay: calc(var(--order, 0) * 0.1s);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== Третья секция блока ========== */

:root {
  --neon-blue: #00f2ff;
  --neon-purple: #b624ff;
  --neon-pink: #ff2d95;
  --neon-cyan: #00d4ff;
  --glow-blue: rgba(0, 242, 255, 0.4);
  --glow-purple: rgba(182, 36, 255, 0.4);
  --glass-bg: rgba(15, 20, 40, 0.45);
  --glass-border: 1px solid rgba(0, 242, 255, 0.2);
  --shadow-glow: 0 0 25px rgba(0, 242, 255, 0.3);
  --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.power-section {
  padding: 6rem 0;
  position: relative;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(0, 100, 255, 0.05),
    transparent
  );
}

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

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 242, 255, 0.12);
  backdrop-filter: blur(4px);
  padding: 0.3rem 1.2rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neon-blue);
  border: 1px solid rgba(0, 242, 255, 0.4);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    #ffffff,
    var(--neon-blue),
    var(--neon-purple)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.8rem;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  margin: 1rem auto;
  border-radius: 3px;
}

.section-sub {
  color: #a0b0d0;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 1rem auto 0;
}

.arch-diagram-3d {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  border-radius: 48px;
  padding: 2rem;
  border: 1px solid rgba(0, 242, 255, 0.25);
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.arch-layer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
  position: relative;
  z-index: 2;
}

.arch-node {
  background: linear-gradient(
    145deg,
    rgba(10, 20, 40, 0.8),
    rgba(5, 10, 25, 0.9)
  );
  border: 1px solid var(--neon-blue);
  border-radius: 28px;
  padding: 1.2rem 1.8rem;
  min-width: 180px;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.arch-node::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 242, 255, 0.2),
    transparent
  );
  transition: left 0.6s;
}

.arch-node:hover::before {
  left: 100%;
}

.arch-node:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--neon-purple);
  box-shadow: 0 0 20px rgba(182, 36, 255, 0.4);
}

.node-icon {
  font-size: 2.2rem;
  color: var(--neon-blue);
  margin-bottom: 0.5rem;
}

.node-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.node-desc {
  font-size: 0.75rem;
  color: #a0b0d0;
}

.node-stats {
  font-size: 0.7rem;
  color: var(--neon-cyan);
  margin-top: 0.4rem;
  font-family: monospace;
}

.arch-arrow {
  font-size: 1.8rem;
  color: var(--neon-blue);
  position: relative;
}

.animated-arrow i {
  animation: arrowPulse 1.2s infinite;
}

@keyframes arrowPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(4px);
  }
}

.arrow-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, rgba(0, 242, 255, 0.4), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulseRing 1.5s infinite;
}

.arch-connector {
  position: absolute;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--neon-blue),
    var(--neon-purple),
    transparent
  );
  z-index: 1;
  opacity: 0.5;
}

.top-connector {
  top: 35%;
}

.bottom-connector {
  bottom: 35%;
}

.tech-stack-enhanced {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 1rem;
}

.tech-badge-glow {
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.4);
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.tech-badge-glow:hover {
  border-color: var(--neon-blue);
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(0, 242, 255, 0.3);
  background: rgba(0, 242, 255, 0.15);
}

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

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-radius: 32px;
  border: 1px solid rgba(0, 242, 255, 0.2);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-blue);
  box-shadow: var(--shadow-glow);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--neon-blue);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.feature-card p {
  color: #b0c0e0;
  line-height: 1.5;
}

.feature-metric {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gallery-enhanced {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 0.5rem 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--neon-blue) #1a1a2e;
}

.gallery-enhanced::-webkit-scrollbar {
  height: 6px;
}

.gallery-enhanced::-webkit-scrollbar-track {
  background: #1a1a2e;
  border-radius: 10px;
}

.gallery-enhanced::-webkit-scrollbar-thumb {
  background: var(--neon-blue);
  border-radius: 10px;
}

.screenshot-card-enhanced {
  min-width: 320px;
  background: linear-gradient(145deg, #0a0e1a, #05080f);
  border-radius: 32px;
  border: 1px solid rgba(0, 242, 255, 0.25);
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.screenshot-card-enhanced:hover {
  transform: translateY(-8px);
  border-color: var(--neon-blue);
  box-shadow: 0 0 30px rgba(0, 242, 255, 0.2);
}

.card-glow-edge {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--x, 50%) var(--y, 50%),
    rgba(0, 242, 255, 0.08),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.screenshot-card-enhanced:hover .card-glow-edge {
  opacity: 1;
}

.screenshot-header-enhanced {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(0, 242, 255, 0.2);
  padding-bottom: 0.8rem;
}

.screenshot-header-enhanced i {
  font-size: 1.8rem;
  color: var(--neon-blue);
}

.screenshot-header-enhanced h3 {
  flex: 1;
  font-size: 1.3rem;
}

.new-badge,
.live-badge-enhanced {
  background: rgba(255, 45, 149, 0.2);
  color: var(--neon-pink);
  font-size: 0.65rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-weight: 600;
}

.live-badge-enhanced {
  background: rgba(0, 242, 255, 0.2);
  color: var(--neon-blue);
  animation: pulseText 1.2s infinite;
}

@keyframes pulseText {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.mockup-window-enhanced {
  background: #03050c;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #2a2f44;
  margin: 1rem 0;
}

.mockup-toolbar {
  background: #0a0e18;
  padding: 0.5rem 1rem;
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid #1a1f2e;
}

.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.red {
  background: #ff5f56;
}
.yellow {
  background: #ffbd2e;
}
.green {
  background: #27c93f;
}

.mockup-title {
  margin-left: auto;
  font-size: 0.7rem;
  color: #6c7a9e;
  font-family: monospace;
}

.mockup-content {
  padding: 1rem;
  font-family: "Fira Code", monospace;
  font-size: 0.75rem;
}

.mockup-line {
  margin: 0.4rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.gate-enhanced {
  background: rgba(0, 212, 255, 0.15);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-weight: 600;
  color: var(--neon-cyan);
}

.neon-data {
  color: var(--neon-blue);
  font-weight: bold;
  text-shadow: 0 0 3px var(--neon-blue);
}

.density-matrix {
  margin-top: 0.5rem;
  display: inline-block;
  background: #0a0c16;
  padding: 0.3rem;
  border-radius: 8px;
}

.matrix-row {
  display: flex;
  gap: 0.5rem;
  margin: 0.2rem 0;
}

.matrix-row span {
  display: inline-block;
  width: 45px;
  text-align: center;
}

.progress-gradient {
  background: #1a1f2e;
  border-radius: 20px;
  height: 6px;
  margin: 0.6rem 0;
  overflow: hidden;
}

.progress-fill-grad {
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  height: 100%;
  border-radius: 20px;
  transition: width 0.5s;
}

.benchmark-item {
  margin: 0.6rem 0;
}
.benchmark-item span {
  display: inline-block;
  width: 90px;
  font-size: 0.7rem;
}
.bench-bar {
  background: linear-gradient(90deg, #2a6f8f, #0a2a3a);
  border-radius: 12px;
  height: 20px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  margin-left: 0.5rem;
  overflow: hidden;
}
.bench-bar span {
  position: absolute;
  right: 5px;
  top: 2px;
  font-size: 0.65rem;
  color: white;
}
.win-text {
  color: var(--neon-blue);
  font-weight: bold;
  margin-top: 0.8rem;
}

.screenshot-desc {
  font-size: 0.85rem;
  color: #b0c0e0;
  margin: 1rem 0 0.8rem;
  line-height: 1.4;
}

.card-footer-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: #6c7a9e;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.8rem;
  margin-top: 0.5rem;
}

@media (max-width: 1000px) {
  .grid-3-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .arch-layer {
    flex-direction: column;
  }
  .arch-arrow {
    transform: rotate(90deg);
  }
  .arch-connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .grid-3-features {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .container {
    padding: 0 1.2rem;
  }
  .screenshot-card-enhanced {
    min-width: 280px;
  }
}

/* ========== СЛАЙДЕР ========== */
.screenshot-super-slider {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 48px;
  overflow: hidden;
  background: radial-gradient(
    circle at 20% 30%,
    rgba(0, 20, 40, 0.6),
    rgba(0, 0, 0, 0.8)
  );
  backdrop-filter: blur(2px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(0, 242, 255, 0.2), 0 0 30px rgba(0, 242, 255, 0.1);
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 48px;
}

.slider-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.25, 0.95, 0.45, 1);
  will-change: transform;
}

.super-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  box-sizing: border-box;
}

.slide-inner {
  position: relative;
  width: 100%;
  max-width: 1000px;
  border-radius: 32px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform: scale(0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.super-slide.active .slide-inner {
  transform: scale(1);
}

.slide-inner:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 242, 255, 0.3),
    0 0 0 2px rgba(0, 242, 255, 0.4);
}

.slide-inner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 32px;
  transition: filter 0.3s;
  filter: brightness(0.98) contrast(1.05);
}

.slide-inner:hover img {
  filter: brightness(1.02) contrast(1.08);
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.4),
    transparent
  );
  padding: 2rem 1.5rem 1.5rem;
  color: white;
  backdrop-filter: blur(4px);
  border-radius: 0 0 32px 32px;
  transform: translateY(0);
  transition: transform 0.3s;
}

.slide-inner:hover .slide-caption {
  transform: translateY(-5px);
}

.slide-caption h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fff, #00f2ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.slide-caption h3 i {
  color: #00f2ff;
  text-shadow: 0 0 5px #00f2ff;
}

.slide-caption p {
  font-size: 0.95rem;
  color: #ccddf8;
  line-height: 1.4;
}

.super-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(0, 242, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(0, 242, 255, 0.6);
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  color: white;
  font-size: 1.6rem;
}

.super-nav:hover {
  background: #00f2ff;
  color: #010105;
  box-shadow: 0 0 20px #00f2ff, 0 0 40px rgba(0, 242, 255, 0.5);
  transform: translateY(-50%) scale(1.05);
  border-color: white;
}

.super-nav-left {
  left: 24px;
}

.super-nav-right {
  right: 24px;
}

.super-indicators {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 14px;
  z-index: 20;
}

.super-dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.super-dot.active {
  width: 32px;
  background: #00f2ff;
  box-shadow: 0 0 12px #00f2ff;
}

.super-dot:hover {
  background: #00f2ff;
  transform: scale(1.2);
}

@media (max-width: 900px) {
  .super-slide {
    padding: 1rem;
  }
  .slide-caption h3 {
    font-size: 1.2rem;
  }
  .slide-caption p {
    font-size: 0.8rem;
  }
  .super-nav {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
  .super-nav-left {
    left: 12px;
  }
  .super-nav-right {
    right: 12px;
  }
  .super-indicators {
    bottom: 16px;
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .slide-caption {
    padding: 1rem 1rem 0.8rem;
  }
  .slide-caption h3 {
    font-size: 1rem;
  }
  .slide-caption p {
    font-size: 0.7rem;
  }
  .super-nav {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* ========== Четвертый блок ========== */

:root {
  --neon-blue: #00f2ff;
  --neon-purple: #b624ff;
  --neon-pink: #ff2d95;
  --neon-cyan: #00d4ff;
  --glow-blue: rgba(0, 242, 255, 0.4);
  --glow-purple: rgba(182, 36, 255, 0.4);
  --glass-bg: rgba(15, 20, 40, 0.45);
  --glass-border: 1px solid rgba(0, 242, 255, 0.2);
  --shadow-glow: 0 0 25px rgba(0, 242, 255, 0.3);
  --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 242, 255, 0.12);
  backdrop-filter: blur(4px);
  padding: 0.3rem 1.2rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neon-blue);
  border: 1px solid rgba(0, 242, 255, 0.4);
  margin-bottom: 1rem;
}
.section-title {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    #ffffff,
    var(--neon-blue),
    var(--neon-purple)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.8rem;
}
.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  margin: 1rem auto;
  border-radius: 3px;
}
.section-sub {
  color: #a0b0d0;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 1rem auto 0;
}

.performance-table-wrapper {
  margin-bottom: 2.5rem;
}
.table-header-glow {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 242, 255, 0.15),
    transparent
  );
  padding: 0.8rem 1.5rem;
  border-radius: 40px 40px 0 0;
  border-bottom: 1px solid rgba(0, 242, 255, 0.4);
  display: inline-block;
  margin-bottom: 0.5rem;
}
.table-header-glow h3 {
  font-size: 1.2rem;
  margin: 0;
  color: var(--neon-blue);
}
.glass-table {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  border: var(--glass-border);
  overflow: hidden;
  width: 100%;
}
.modern-table {
  width: 100%;
  border-collapse: collapse;
}
.modern-table th,
.modern-table td {
  padding: 1rem 1.2rem;
  text-align: center;
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
  transition: background 0.2s;
}
.modern-table th {
  background: rgba(0, 212, 255, 0.08);
  font-weight: 700;
  color: var(--neon-blue);
  letter-spacing: 0.5px;
}
.modern-table tr:hover td {
  background: rgba(0, 212, 255, 0.05);
}
.highlight-row td {
  background: rgba(0, 242, 255, 0.08);
  box-shadow: inset 0 0 0 1px var(--neon-blue);
}
.highlight-cell {
  color: var(--neon-blue);
  font-weight: 800;
  text-shadow: 0 0 3px var(--neon-blue);
}
.table-footnote {
  padding: 0.8rem;
  text-align: center;
  font-size: 0.75rem;
  color: #8f9bb5;
  border-top: 1px solid rgba(0, 242, 255, 0.15);
}

.charts-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
}
.chart-card {
  flex: 1;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-radius: 32px;
  border: var(--glass-border);
  padding: 1.5rem;
  transition: var(--transition);
}
.chart-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-blue);
  box-shadow: var(--shadow-glow);
}
.chart-header {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #e0eaff;
}
.chart-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bar-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.bar-label {
  width: 90px;
  font-weight: 500;
}
.bar-bg {
  flex: 1;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  border-radius: 20px;
  width: 0%;
  transition: width 1s ease;
}
.bar-value {
  min-width: 70px;
  font-family: monospace;
  font-weight: bold;
  color: var(--neon-cyan);
}
.chart-badge {
  margin-top: 1rem;
  padding: 0.4rem 1rem;
  background: rgba(0, 242, 255, 0.1);
  border-radius: 40px;
  display: inline-block;
  font-size: 0.8rem;
}
.chart-badge.win {
  background: rgba(255, 45, 149, 0.15);
  color: var(--neon-pink);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.advantage-card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-radius: 32px;
  border: var(--glass-border);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  overflow: hidden;
}
.advantage-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-blue);
  box-shadow: var(--shadow-glow);
}
.card-glow-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(0, 242, 255, 0.15),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.advantage-card:hover .card-glow-bg {
  opacity: 1;
}
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--neon-blue);
}
.big-number {
  font-size: 3.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--neon-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.advantage-card p {
  color: #b0c0e0;
  font-size: 0.9rem;
}
.card-footer-line {
  width: 40px;
  height: 2px;
  background: var(--neon-blue);
  margin: 1rem auto 0;
  transition: width 0.3s;
}
.advantage-card:hover .card-footer-line {
  width: 80px;
}

.entanglement-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-radius: 32px;
  border: var(--glass-border);
  padding: 1.5rem 2rem;
  margin-top: 2rem;
}
.entanglement-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.live-tag {
  background: rgba(255, 45, 149, 0.2);
  color: var(--neon-pink);
  padding: 0.2rem 0.8rem;
  border-radius: 30px;
  font-size: 0.7rem;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
.entanglement-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.metric {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.metric-label {
  font-size: 0.8rem;
  color: #8f9bb5;
}
.metric-value {
  font-weight: bold;
  color: var(--neon-blue);
  font-family: monospace;
}
.metric-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
}
.metric-bar div {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  border-radius: 4px;
  width: 0%;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.team-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-radius: 32px;
  border: var(--glass-border);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-blue);
  box-shadow: var(--shadow-glow);
}
.team-avatar {
  width: 90px;
  height: 90px;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.2),
    rgba(155, 77, 255, 0.2)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: var(--neon-blue);
  border: 1px solid var(--neon-blue);
}
.team-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}
.team-role {
  color: var(--neon-blue);
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.team-info p {
  color: #b4c0e0;
  font-size: 0.9rem;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 2rem;
}
.resource-card {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border-radius: 28px;
  border: var(--glass-border);
  padding: 1.8rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: block;
}
.resource-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-blue);
  background: rgba(0, 242, 255, 0.08);
  box-shadow: var(--shadow-glow);
}
.resource-card i {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  color: var(--neon-blue);
}
.resource-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.resource-card span {
  font-size: 0.8rem;
  color: #8f9bb5;
}
.contact-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0 1.5rem;
}
.contact-badge {
  background: rgba(0, 212, 255, 0.1);
  border-radius: 60px;
  padding: 0.6rem 1.3rem;
  font-size: 0.9rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
  transition: var(--transition);
}
.contact-badge:hover {
  background: rgba(0, 212, 255, 0.2);
  transform: translateY(-2px);
}
.contact-badge i {
  margin-right: 0.5rem;
  color: var(--neon-blue);
}
.copyright {
  text-align: center;
  font-size: 0.75rem;
  color: #5a6799;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 1000px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .resources-grid {
    grid-template-columns: 1fr;
  }
  .team-card {
    flex-direction: column;
    text-align: center;
  }
  .modern-table th,
  .modern-table td {
    padding: 0.6rem;
    font-size: 0.75rem;
  }
  .container {
    padding: 0 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
}

section {
  animation: fadeInUp 0.6s ease-out;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
