        :root {
            --bg-dark: #020617;
            --bg-card: rgba(7, 16, 31, 0.96);
            --bg-card-soft: rgba(10, 22, 46, 0.96);
            --text-main: #f9fafb;
            --text-soft: #d1d5db;
            --accent-1: #22d3ee;
            --accent-2: #4ade80;
            --accent-3: #60a5fa;
            --accent-4: #f97316;
            --radius-main: 18px;
            --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.6);
        }

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

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
                "Segoe UI", sans-serif;
            background: radial-gradient(circle at 0 0, #172554 0, #020617 45%),
                        radial-gradient(circle at 100% 0, #0f766e 0, #020617 40%),
                        radial-gradient(circle at 50% 100%, #1d4ed8 0, #020617 45%);
            background-attachment: fixed;
            color: var(--text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* Общий контейнер */
        .page {
            max-width: 1200px;
            margin: 40px auto;
            padding: 24px;
        }

        @media (max-width: 768px) {
            .page {
                margin: 16px auto 40px;
                padding: 16px;
            }
        }

        /* Блоки-карточки */
        .card {
            background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.10), transparent 55%),
                        radial-gradient(circle at 100% 100%, rgba(34, 197, 94, 0.10), transparent 55%),
                        var(--bg-card);
            border-radius: var(--radius-main);
            padding: 28px 28px 32px;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(148, 163, 184, 0.25);
            backdrop-filter: blur(18px);
            margin-bottom: 32px;
            position: relative;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .card {
                padding: 20px 16px 22px;
                border-radius: 14px;
            }
        }

        /* Анимированные градиентные бордюры сверху */
        .card::before {
            content: "";
            position: absolute;
            left: -5%;
            top: 0;
            width: 110%;
            height: 3px;
            background: linear-gradient(90deg,
                        #22d3ee,
                        #4ade80,
                        #a855f7,
                        #f97316,
                        #22d3ee);
            background-size: 300% 100%;
            animation: borderFlow 8s linear infinite;
            opacity: 0.95;
        }

        @keyframes borderFlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Герой с большим переливающимся градиентом */
        .hero {
            display: grid;
            grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
            gap: 32px;
            align-items: center;
            background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.25), transparent 55%),
                        radial-gradient(circle at 80% 20%, rgba(45, 212, 191, 0.24), transparent 55%),
                        radial-gradient(circle at 10% 100%, rgba(129, 140, 248, 0.24), transparent 55%),
                        var(--bg-card-soft);
        }

        @media (max-width: 900px) {
            .hero {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        .hero-gradient-orb {
            position: absolute;
            inset: -40%;
            background: conic-gradient(
                from 180deg,
                rgba(56, 189, 248, 0.18),
                rgba(34, 197, 94, 0.26),
                rgba(129, 140, 248, 0.28),
                rgba(244, 114, 182, 0.26),
                rgba(56, 189, 248, 0.18)
            );
            mix-blend-mode: screen;
            filter: blur(40px);
            opacity: 0.85;
            animation: orbSpin 24s linear infinite;
            pointer-events: none;
        }

        @keyframes orbSpin {
            from { transform: rotate(0deg); }
            to   { transform: rotate(360deg); }
        }

        .hero-inner {
            position: relative;
            z-index: 2;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            padding: 4px 9px 4px 4px;
            border-radius: 999px;
            background: rgba(15, 23, 42, 0.85);
            border: 1px solid rgba(148, 163, 184, 0.6);
            margin-bottom: 14px;
            gap: 8px;
            font-size: 12px;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .badge-dot {
            width: 9px;
            height: 9px;
            border-radius: 999px;
            background:
                radial-gradient(circle at 30% 30%, #f9fafb, #22c55e 55%, transparent 70%);
            box-shadow: 0 0 10px rgba(34, 197, 94, 0.85);
        }

        .hero-title {
            font-size: clamp(32px, 4vw, 40px);
            font-weight: 700;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .hero-subtitle {
            font-size: 18px;
            font-weight: 500;
            color: var(--accent-1);
            margin-bottom: 14px;
        }

        .hero-text {
            font-size: 14px;
            color: var(--text-soft);
            max-width: 600px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
            margin-top: 22px;
        }

        .hero-pill {
            padding: 10px 12px;
            border-radius: 14px;
            background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.25), transparent 60%),
                        rgba(15, 23, 42, 0.96);
            border: 1px solid rgba(148, 163, 184, 0.55);
            font-size: 12px;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .hero-pill span.label {
            font-size: 11px;
            color: rgba(148, 163, 184, 0.9);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .hero-pill span.value {
            font-size: 14px;
        }

        .hero-highlight {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 18px;
            font-size: 13px;
            color: var(--text-soft);
        }

        .hero-highlight strong {
            color: var(--accent-2);
        }

        /* Правая часть героя: «5 направлений + Neo Bank» */
        .hero-right {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .pill-header {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: rgba(148, 163, 184, 0.9);
        }

        .hero-orbit {
            position: relative;
            border-radius: 24px;
            padding: 18px 18px 20px;
            background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.18), transparent 55%),
                        radial-gradient(circle at 100% 100%, rgba(45, 212, 191, 0.16), transparent 55%),
                        rgba(15, 23, 42, 0.95);
            border: 1px solid rgba(148, 163, 184, 0.6);
            overflow: hidden;
        }

        .hero-orbit-title {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            margin-bottom: 8px;
            color: rgba(226, 232, 240, 0.95);
        }

        .hero-orbit-sub {
            font-size: 12px;
            color: var(--text-soft);
            margin-bottom: 14px;
        }

        .orbit-center {
            position: relative;
            width: 140px;
            height: 140px;
            border-radius: 999px;
            margin: 8px auto 14px;
            display: grid;
            place-items: center;
            background: radial-gradient(circle at 30% 20%, rgba(248, 250, 252, 0.85), rgba(56, 189, 248, 0.3), transparent 70%);
            box-shadow:
                0 0 40px rgba(56, 189, 248, 0.65),
                0 0 80px rgba(34, 197, 94, 0.35);
        }

        .orbit-center-inner {
            width: 92px;
            height: 92px;
            border-radius: inherit;
            background: radial-gradient(circle at 30% 10%, #ffffff, #e0f2fe, #0ea5e9);
            display: grid;
            place-items: center;
            font-weight: 600;
            font-size: 12px;
            color: #0f172a;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }

        .orbit-ring {
            position: absolute;
            inset: -4px;
            border-radius: inherit;
            border: 1px dashed rgba(148, 163, 184, 0.45);
            animation: orbitPulse 10s linear infinite;
        }

        @keyframes orbitPulse {
            0%   { transform: scale(1) rotate(0deg); opacity: 0.8; }
            50%  { transform: scale(1.04) rotate(180deg); opacity: 1; }
            100% { transform: scale(1) rotate(360deg); opacity: 0.8; }
        }

        .orbit-badges {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 8px;
            margin-top: 4px;
        }

        .orbit-badge {
            padding: 6px 8px;
            border-radius: 999px;
            border: 1px solid rgba(148, 163, 184, 0.6);
            font-size: 11px;
            text-align: center;
            background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.18), transparent 60%);
        }

        @media (max-width: 480px) {
            .orbit-badges {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        /* Заголовки секций */
        .section-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .section-subtitle {
            font-size: 13px;
            color: var(--text-soft);
            margin-bottom: 18px;
        }

        /* Колонки */
        .cols-2 {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px;
        }

        @media (max-width: 900px) {
            .cols-2 {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        /* Список направлений */
        .direction {
            padding: 12px 14px 14px;
            border-radius: 14px;
            border: 1px solid rgba(148, 163, 184, 0.5);
            background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.16), transparent 60%),
                        rgba(15, 23, 42, 0.9);
            margin-bottom: 10px;
        }

        .direction-header {
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 4px;
            display: flex;
            justify-content: space-between;
            gap: 8px;
        }

        .direction-tag {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: rgba(148, 163, 184, 0.95);
        }

        .direction-body {
            font-size: 12px;
            color: var(--text-soft);
        }

        /* Таблицы / гриды параметры */
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 12px;
        }

        .metric {
            padding: 10px 12px;
            border-radius: 12px;
            border: 1px solid rgba(148, 163, 184, 0.5);
            background: rgba(15, 23, 42, 0.96);
            font-size: 12px;
        }

        .metric-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(148, 163, 184, 0.9);
            margin-bottom: 4px;
        }

        .metric-value {
            font-size: 14px;
            font-weight: 600;
        }

        /* Подвал */
        .footer {
            text-align: center;
            font-size: 11px;
            color: rgba(148, 163, 184, 0.9);
            padding: 18px 0 6px;
        }
        
        /* ===== NEW SECTIONS: MARKET, COMPETITORS, SEGMENTS ===== */

.market-row {
    display: grid;
    grid-template-columns: 130px 1fr auto;
    gap: 12px;
    align-items: center;
    font-size: 12px;
    margin-bottom: 10px;
}

.market-label {
    color: rgba(209, 213, 219, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.market-bar {
    position: relative;
    height: 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.6);
}

.market-bar-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        #22d3ee,
        #4ade80,
        #a855f7,
        #f97316,
        #22d3ee
    );
    background-size: 250% 100%;
    animation: barFlow 7s linear infinite;
}

.market-value {
    font-variant-numeric: tabular-nums;
    color: rgba(226, 232, 240, 0.96);
}

@keyframes barFlow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Competitors */

.competitors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.competitor-card {
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.18), transparent 60%),
                rgba(15, 23, 42, 0.96);
    padding: 12px 14px 14px;
    font-size: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.competitor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.7);
    border-color: var(--accent-1);
}

.competitor-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.competitor-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(148, 163, 184, 0.95);
    margin-bottom: 6px;
}

.competitor-item {
    margin-bottom: 3px;
    color: var(--text-soft);
}

/* Segments */

.segment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.segment-card {
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.55);
    background:
        radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.16), transparent 60%),
        rgba(15, 23, 42, 0.96);
    padding: 11px 13px 13px;
    font-size: 12px;
    position: relative;
    overflow: hidden;
}

.segment-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: conic-gradient(
        from 180deg,
        rgba(56, 189, 248, 0.12),
        rgba(45, 212, 191, 0.12),
        rgba(129, 140, 248, 0.12),
        rgba(244, 114, 182, 0.12),
        rgba(56, 189, 248, 0.12)
    );
    mix-blend-mode: screen;
    opacity: 0.25;
    animation: segmentGlow 18s linear infinite;
    pointer-events: none;
}

@keyframes segmentGlow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.segment-inner {
    position: relative;
    z-index: 1;
}

.segment-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.segment-share {
    font-size: 11px;
    color: var(--accent-2);
    margin-bottom: 6px;
}

.segment-meta {
    font-size: 11px;
    color: rgba(148, 163, 184, 0.95);
    margin-bottom: 4px;
}
   .dao-mega{
    padding:80px 5%;
    background:#0b0b0b;
    color:#e8e8e8;
    font-family:Inter, sans-serif;
}

.sec-title{
    font-size:38px;
    text-align:center;
    margin:60px 0 30px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.glow{
    animation:glowAnim 4s infinite alternate;
}

@keyframes glowAnim{
    0%{text-shadow:0 0 10px #00ff95;}
    100%{text-shadow:0 0 24px #00ffaa;}
}

.comp-grid, .unit-grid, .roles-grid, .ai-arch {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
}

.comp-card, .unit-card{
    padding:20px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(0,255,160,0.25);
    border-radius:12px;
    backdrop-filter:blur(8px);
}

.num-anim{
    font-size:38px;
    font-weight:700;
    margin-top:10px;
}

.eco-map{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:15px;
}

.eco-node{
    background:#111;
    border:1px solid #00ffa9;
    padding:20px;
    text-align:center;
    border-radius:12px;
    animation:glowAnim 4s infinite alternate;
}

.discoveries p{
    font-size:18px;
    line-height:1.6;
    background:#111;
    padding:20px;
    border-radius:12px;
    border:1px solid #00ffa9;
}

.roles-grid .role{
    padding:14px;
    background:#151515;
    border-radius:10px;
    border-left:4px solid #00ffa9;
}

.billion-box{
    padding:20px;
    background:#101010;
    border:1px solid #00ffa9;
    border-radius:12px;
    line-height:1.8;
}

.ai-box{
    padding:20px;
    background:#111;
    border-radius:10px;
    border:1px solid #00ffa9;
}
.dao-extended {
  padding: 80px 5%;
  background: linear-gradient(135deg, #020202 0%, #0f0f0f 100%);
  color: #e4e4e4;
  font-family: Inter, sans-serif;
}
