
/* Обёртка всей страницы */
.page-wrapper[data-v-09ddb071] {
  min-height: 100vh;
  position: relative;
}

/* Глобальная архитектурная сетка - фиксированный фон */
.global-grid[data-v-09ddb071] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Основная сетка */
.grid-main[data-v-09ddb071] {
  position: absolute;
  width: 100%;
  height: 100%;
}
.grid-line-h[data-v-09ddb071] {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  transform-origin: left center;
  animation: expandH-09ddb071 1.5s ease-out forwards;
}
.grid-line-v[data-v-09ddb071] {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.08);
  transform-origin: center top;
  animation: expandV-09ddb071 1.5s ease-out forwards;
  animation-delay: 0.5s;
}
.global-grid.dark .grid-line-h[data-v-09ddb071],
.global-grid.dark .grid-line-v[data-v-09ddb071] {
  background: rgba(255, 255, 255, 0.06);
}
@keyframes expandH-09ddb071 {
from { transform: scaleX(0);
}
to { transform: scaleX(1);
}
}
@keyframes expandV-09ddb071 {
from { transform: scaleY(0);
}
to { transform: scaleY(1);
}
}

/* Линии перспективы */
.grid-perspective[data-v-09ddb071] {
  position: absolute;
  width: 100%;
  height: 100%;
  perspective: 1000px;
}
.perspective-line[data-v-09ddb071] {
  position: absolute;
  top: -50%;
  height: 200%;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(25, 118, 210, 0.1) 50%, transparent 100%);
  transform-origin: center top;
}
.perspective-line.line-1[data-v-09ddb071] {
  transform: rotate(45deg);
}
.perspective-line.line-2[data-v-09ddb071] {
  transform: rotate(-45deg);
}
.global-grid.dark .perspective-line[data-v-09ddb071] {
  background: linear-gradient(to bottom, transparent 0%, rgba(25, 118, 210, 0.15) 50%, transparent 100%);
}

/* Точки пересечения */
.grid-nodes[data-v-09ddb071] {
  position: absolute;
  width: 100%;
  height: 100%;
}
.grid-node[data-v-09ddb071] {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(25, 118, 210, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.grid-node.active[data-v-09ddb071] {
  background: #1976d2;
  box-shadow: 0 0 10px rgba(25, 118, 210, 0.8);
  transform: translate(-50%, -50%) scale(2);
}
.global-grid.dark .grid-node[data-v-09ddb071] {
  background: rgba(25, 118, 210, 0.4);
}

/* Размеры */
.grid-dimensions[data-v-09ddb071] {
  position: absolute;
  width: 100%;
  height: 100%;
  font-family: 'Courier New', monospace;
  font-size: 10px;
  opacity: 0.5;
}
.dimension-h[data-v-09ddb071] {
  position: absolute;
  left: 65px;
  border-top: 1px dashed rgba(0,0,0,0.2);
  width: 50px;
}
.dimension-v[data-v-09ddb071] {
  position: absolute;
  top: 60px;
  border-left: 1px dashed rgba(0,0,0,0.2);
  height: 50px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.dim-text[data-v-09ddb071] {
  background: rgba(255,255,255,0.9);
  padding: 2px 4px;
  border-radius: 2px;
}
.global-grid.dark .dim-text[data-v-09ddb071] {
  background: rgba(0,0,0,0.9);
  color: rgba(255,255,255,0.7);
}
.global-grid.dark .dimension-h[data-v-09ddb071],
.global-grid.dark .dimension-v[data-v-09ddb071] {
  border-color: rgba(255,255,255,0.2);
}

/* Угловые маркеры */
.corner-markers[data-v-09ddb071] {
  position: absolute;
  width: 100%;
  height: 100%;
}
.marker[data-v-09ddb071] {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(25, 118, 210, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  color: rgba(25, 118, 210, 0.5);
  font-family: 'Courier New', monospace;
}
.marker-tl[data-v-09ddb071] { top: 60px; left: 80px; border-right: none; border-bottom: none;
}
.marker-tr[data-v-09ddb071] { top: 60px; right: 20px; border-left: none; border-bottom: none;
}
.marker-bl[data-v-09ddb071] { bottom: 80px; left: 80px; border-right: none; border-top: none;
}
.marker-br[data-v-09ddb071] { bottom: 80px; right: 20px; border-left: none; border-top: none;
}
.global-grid.dark .marker[data-v-09ddb071] {
  border-color: rgba(25, 118, 210, 0.4);
  color: rgba(25, 118, 210, 0.6);
}

/* Прогресс скролла */
.scroll-progress[data-v-09ddb071] {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #1976d2;
  z-index: 9999;
  transition: width 0.1s;
}

/* Обертка контента */
.content-wrapper[data-v-09ddb071] {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding-bottom: 100px;
}

/* Стили для элементов */
.dimension-badge[data-v-09ddb071] {
  border: 1px solid rgba(25, 118, 210, 0.3);
  padding: 8px 16px;
  border-radius: 2px;
  position: relative;
  font-family: 'Courier New', monospace;
  font-size: 14px;
}
.dimension-badge[data-v-09ddb071]::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 4px;
  height: 4px;
  background: #1976d2;
}
.stat-line[data-v-09ddb071] {
  width: 40px;
  height: 2px;
  background: #1976d2;
}
.info-card[data-v-09ddb071] {
  border: 1px solid rgba(25, 118, 210, 0.2);
  transition: all 0.3s ease;
}
.info-card[data-v-09ddb071]:hover {
  border-color: #1976d2;
  transform: translateX(10px);
}
.card-number[data-v-09ddb071] {
  font-family: 'Courier New', monospace;
  font-size: 20px;
  opacity: 0.5;
}
.principle-card[data-v-09ddb071] {
  padding: 24px 0 0 0;
  border-top: 2px solid rgba(25, 118, 210, 0.2);
}
.principle-number[data-v-09ddb071] {
  font-family: 'Courier New', monospace;
  font-size: 14px;
}
.principle-line[data-v-09ddb071] {
  width: 40px;
  height: 2px;
  background: #1976d2;
  transition: width 0.3s ease;
}
.principle-card:hover .principle-line[data-v-09ddb071] {
  width: 80px;
}
.competencies-card[data-v-09ddb071] {
  border: 1px solid rgba(25, 118, 210, 0.2);
}
.competency-item[data-v-09ddb071] {
  display: flex;
  align-items: center;
}

/* Фиксированная кнопка */
.fixed-cta[data-v-09ddb071] {
  position: fixed;
  bottom: 70px;
  left: 48px;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(25, 118, 210, 0.2);
  padding: 20px 0;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}
.global-grid.dark ~ .content-wrapper .fixed-cta[data-v-09ddb071] {
  background: rgba(18, 18, 18, 0.95);
  border-top-color: rgba(25, 118, 210, 0.3);
}

/* Утилиты */
.block[data-v-09ddb071] {
  display: block;
}
.full-width[data-v-09ddb071] {
  width: 100%;
}

/* Адаптивность */
@media (max-width: 1024px) {
.content-wrapper[data-v-09ddb071] {
    padding-bottom: 140px;
}
.fixed-cta .row[data-v-09ddb071] {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
.fixed-cta .q-btn[data-v-09ddb071] {
    width: 100%;
}
}
@media (max-width: 768px) {
.dimension-badge[data-v-09ddb071] {
    width: 100%;
    text-align: center;
}
.row.q-px-xl[data-v-09ddb071] {
    padding-left: 16px !important;
    padding-right: 16px !important;
}
}
.hero-stats[data-v-09ddb071] { display: flex; gap: 30px; flex-wrap: wrap;
}
.stat-badge[data-v-09ddb071] {
  position: relative; padding-left: 20px;
}
.stat-badge[data-v-09ddb071]::before {
  content: ''; position: absolute; left: 0; top: 50%; width: 10px;
  height: 2px; background: #00d9ff; transform: translateY(-50%);
}
.animate-stat[data-v-09ddb071] { opacity: 0; animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.stat-number[data-v-09ddb071] { display: block; font-size: 28px; font-weight: 800; color: #00d9ff; line-height: 1.2;
}
.stat-label[data-v-09ddb071] { font-size: 14px; opacity: 0.7;
}
@media (max-width: 480px) {
.hero-stats[data-v-09ddb071] { flex-direction: column; gap: 15px;
}
.stat-badge[data-v-09ddb071] { width: 100%;
}
.pie-chart-container[data-v-09ddb071] { width: 120px; height: 120px;
}
}
