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

:root {
    --primary: #6c3ce0;
    --primary-light: #a78bfa;
    --primary-dark: #4a1faa;
    --accent-cyan: #00e5ff;
    --accent-pink: #ff3d8a;
    --accent-green: #00e676;
    --accent-amber: #ffc857;
    --bg-deep: #05030f;
    --bg-panel: rgba(255, 255, 255, 0.04);
    --bg-panel-strong: rgba(255, 255, 255, 0.065);
    --border-soft: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(108, 60, 224, 0.25);
    --text-light: #f0edff;
    --text-muted: #9a92b8;
    --text-faint: rgba(255, 255, 255, 0.38);
    --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Microsoft YaHei', sans-serif;
    --radius: 22px;
    --shadow-glow: 0 18px 70px rgba(108, 60, 224, 0.16);
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: var(--font);
    background:
        radial-gradient(circle at 10% 10%, rgba(108, 60, 224, 0.18), transparent 28%),
        radial-gradient(circle at 90% 8%, rgba(0, 229, 255, 0.08), transparent 24%),
        radial-gradient(circle at 50% 90%, rgba(255, 61, 138, 0.08), transparent 28%),
        var(--bg-deep);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

::selection {
    background: var(--primary);
    color: #fff;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s, transform 0.3s, border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

img {
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

#cursor-glow {
    position: fixed;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 60, 224, 0.09), transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    will-change: left, top;
}

#particle-canvas {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    display: block;
}

.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 1;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(5, 3, 15, 0.62);
    backdrop-filter: blur(22px) saturate(180%);
    border-bottom: 1px solid rgba(108, 60, 224, 0.08);
    transition: padding 0.3s, background 0.3s, border-color 0.3s;
}

header.is-scrolled {
    padding: 11px 0;
    background: rgba(5, 3, 15, 0.84);
    border-color: rgba(108, 60, 224, 0.16);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.logo-area {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.1;
    min-width: max-content;
}

.logo-main {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #e0d7ff, #a78bfa, #6c3ce0, var(--accent-cyan));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradShift 6s ease-in-out infinite;
}

.logo-sub {
    font-size: 0.64rem;
    color: rgba(255, 255, 255, 0.26);
    letter-spacing: 3px;
    font-weight: 300;
    margin-top: 1px;
}

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

nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
}

nav a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    letter-spacing: 0.5px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent-cyan));
    border-radius: 4px;
    transition: width 0.3s;
}

nav a:hover,
nav a.active {
    color: #fff;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.nav-cta,
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff !important;
    border-radius: 50px;
    font-weight: 650;
    box-shadow: 0 8px 42px rgba(108, 60, 224, 0.28);
    position: relative;
    overflow: hidden;
}

.nav-cta {
    padding: 10px 25px;
    font-size: 0.84rem;
}

.nav-cta::after,
.btn-primary::after {
    display: none;
}

.nav-cta::before,
.btn-primary::before {
    content: '';
    position: absolute;
    inset: -80%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.14), transparent, rgba(0, 229, 255, 0.12), transparent);
    animation: btnSpin 7s linear infinite;
}

.nav-cta span,
.btn-primary span {
    position: relative;
    z-index: 1;
}

.nav-cta:hover,
.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 60px rgba(108, 60, 224, 0.48);
}

@keyframes btnSpin {
    to { transform: rotate(360deg); }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    border-radius: 4px;
    transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 142px 0 78px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
    gap: 62px;
    align-items: center;
}

.eyebrow,
.page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 15px;
    border: 1px solid rgba(167, 139, 250, 0.18);
    border-radius: 999px;
    background: rgba(108, 60, 224, 0.08);
    color: #dcd4ff;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.eyebrow::before,
.page-kicker::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 18px var(--accent-cyan);
}

.hero-content h1,
.page-hero h1 {
    font-size: clamp(2.7rem, 7vw, 4.75rem);
    font-weight: 820;
    line-height: 1.05;
    letter-spacing: -1.6px;
    margin-bottom: 18px;
}

.hl,
.text-gradient {
    background: linear-gradient(135deg, #c4b5fd, #8b6cf0, #6c3ce0, var(--accent-cyan));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradShift 6s ease-in-out infinite;
}

.subtitle-wrap,
.hero-lead,
.page-lead {
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.9;
}

.subtitle-wrap {
    max-width: 590px;
    min-height: 4.4rem;
    margin-bottom: 36px;
}

.subtitle-wrap .cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    margin-left: 4px;
    vertical-align: text-bottom;
    background: var(--accent-cyan);
    animation: cursorBlink 0.8s step-end infinite;
    box-shadow: 0 0 20px var(--accent-cyan);
}

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

.hero-buttons,
.cta-actions,
.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.btn-primary,
.btn-secondary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 36px;
    border-radius: 50px;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-secondary,
.btn-ghost {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover,
.btn-ghost:hover {
    color: #fff;
    border-color: rgba(167, 139, 250, 0.4);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 430px;
    perspective: 900px;
}

.hero-sphere {
    width: min(410px, 80vw);
    height: min(410px, 80vw);
    border-radius: 50%;
    position: relative;
    background:
        radial-gradient(circle at 34% 28%, rgba(167, 139, 250, 0.22), rgba(5, 3, 15, 0.92) 56%),
        linear-gradient(135deg, rgba(0, 229, 255, 0.12), transparent);
    box-shadow: 0 0 120px rgba(108, 60, 224, 0.12), inset 0 0 120px rgba(108, 60, 224, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: sphereFloat 8s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes sphereFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-16px) scale(1.02); }
}

.hero-sphere .ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(139, 108, 240, 0.12);
    animation: ringSpin 14s linear infinite;
}

.hero-sphere .ring:nth-child(1) {
    inset: 16px;
    border-color: rgba(0, 229, 255, 0.12);
}

.hero-sphere .ring:nth-child(2) {
    inset: 47px;
    border-color: rgba(255, 61, 138, 0.08);
    animation-duration: 18s;
    animation-direction: reverse;
}

.hero-sphere .ring:nth-child(3) {
    inset: 78px;
    border-color: rgba(0, 230, 118, 0.06);
    animation-duration: 24s;
}

@keyframes ringSpin {
    to { transform: rotate(360deg); }
}

.hero-sphere .core {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-sphere .core .big {
    font-size: clamp(3rem, 8vw, 4.9rem);
    line-height: 1;
    font-weight: 820;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #fff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sphere .core .label {
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 0.78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.float-tag {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 17px;
    border-radius: 15px;
    color: var(--text-light);
    font-size: 0.8rem;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
    animation: tagFloat 6s ease-in-out infinite;
}

.float-tag .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 16px var(--accent-cyan);
}

.float-tag.green .dot {
    background: var(--accent-green);
    box-shadow: 0 0 16px var(--accent-green);
}

.float-tag.pink .dot {
    background: var(--accent-pink);
    box-shadow: 0 0 16px var(--accent-pink);
}

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

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    padding: 32px 0 68px;
    border-top: 1px solid rgba(255, 255, 255, 0.035);
}

.stat-item,
.metric-card,
.panel,
.tech-card,
.trend-item,
.report-card,
.eco-item,
.timeline-item,
.form-card,
.cta-box,
.topic-block,
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.75s ease, transform 0.75s ease, border-color 0.35s, background 0.35s, box-shadow 0.35s;
}

.stat-item.visible,
.metric-card.visible,
.panel.visible,
.tech-card.visible,
.trend-item.visible,
.report-card.visible,
.eco-item.visible,
.timeline-item.visible,
.form-card.visible,
.cta-box.visible,
.topic-block.visible,
.reveal.visible,
.inner-page .stat-item,
.inner-page .metric-card,
.inner-page .panel,
.inner-page .tech-card,
.inner-page .trend-item,
.inner-page .report-card,
.inner-page .eco-item,
.inner-page .timeline-item,
.inner-page .form-card,
.inner-page .cta-box,
.inner-page .topic-block,
.inner-page .reveal {
    opacity: 1;
    transform: translateY(0);
}

.stat-item,
.metric-card {
    text-align: center;
    padding: 20px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.stat-item:hover,
.metric-card:hover {
    background: rgba(108, 60, 224, 0.075);
    border-color: rgba(108, 60, 224, 0.18);
    transform: translateY(-5px);
}

.stat-item .number,
.metric-card .number {
    font-size: clamp(2rem, 4vw, 2.85rem);
    line-height: 1.05;
    font-weight: 780;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(135deg, #fff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label,
.metric-label {
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.stat-sub,
.metric-sub {
    color: var(--text-faint);
    font-size: 0.72rem;
}

section {
    position: relative;
    z-index: 1;
}

.section-pad {
    padding: 86px 0;
}

.section-muted {
    border-top: 1px solid rgba(255, 255, 255, 0.035);
    border-bottom: 1px solid rgba(255, 255, 255, 0.035);
    background: rgba(255, 255, 255, 0.012);
}

.section-header {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-header h2 {
    font-size: clamp(2rem, 4.4vw, 2.85rem);
    line-height: 1.15;
    font-weight: 760;
    letter-spacing: -1px;
}

.section-header p {
    margin: 12px auto 0;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.section-header .line {
    width: 62px;
    height: 3px;
    border-radius: 6px;
    margin: 18px auto 0;
    background: linear-gradient(90deg, var(--primary), var(--accent-cyan));
}

.tech-grid,
.trend-grid,
.report-grid,
.method-grid,
.matrix-grid,
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.tech-card,
.trend-item,
.report-card,
.panel,
.topic-block,
.form-card,
.timeline-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--bg-panel);
    border: 1px solid var(--border-soft);
    backdrop-filter: blur(6px);
}

.tech-card,
.report-card,
.panel,
.topic-block,
.form-card {
    padding: 30px 26px;
}

.tech-card::before,
.trend-item::before,
.report-card::before,
.panel::before,
.topic-block::before,
.form-card::before,
.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-cyan), var(--accent-pink));
    opacity: 0;
    transition: opacity 0.35s;
}

.tech-card:hover::before,
.trend-item:hover::before,
.report-card:hover::before,
.panel:hover::before,
.topic-block:hover::before,
.form-card:hover::before,
.timeline-item:hover::before {
    opacity: 1;
}

.tech-card:hover,
.trend-item:hover,
.report-card:hover,
.panel:hover,
.topic-block:hover,
.form-card:hover,
.timeline-item:hover {
    border-color: rgba(108, 60, 224, 0.23);
    box-shadow: var(--shadow-glow);
    transform: translateY(-8px);
}

.icon-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 15px;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 780;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, rgba(108, 60, 224, 0.9), rgba(0, 229, 255, 0.42));
    box-shadow: 0 10px 30px rgba(108, 60, 224, 0.22);
}

.tech-card h3,
.report-card h3,
.panel h3,
.topic-block h2,
.topic-block h3,
.form-card h2,
.form-card h3 {
    font-size: 1.25rem;
    line-height: 1.35;
    font-weight: 680;
    margin-bottom: 10px;
}

.tech-card p,
.trend-item p,
.report-card p,
.panel p,
.topic-block p,
.form-card p,
.timeline-item p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.85;
}

.card-tag,
.badge,
.label-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: max-content;
    border-radius: 999px;
    border: 1px solid rgba(108, 60, 224, 0.16);
    background: rgba(108, 60, 224, 0.12);
    color: var(--primary-light);
    font-size: 0.72rem;
    line-height: 1;
    padding: 7px 13px;
}

.card-tag {
    margin-top: 17px;
}

.topic-block h2 a {
    color: inherit;
    transition: color 0.25s ease;
}

.topic-block h2 a:hover {
    color: var(--primary-light);
}

.card-link,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 17px;
    color: var(--primary-light);
    font-size: 0.88rem;
    font-weight: 620;
}

.card-link:hover,
.text-link:hover {
    color: #fff;
    transform: translateX(4px);
}

.trend-item {
    padding: 27px 24px;
}

.trend-meta,
.report-meta,
.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.date,
.small-muted {
    color: var(--text-faint);
    font-size: 0.75rem;
    letter-spacing: 0.6px;
}

.trend-item h3,
.trend-item h4 {
    font-size: 1.12rem;
    line-height: 1.45;
    font-weight: 650;
    margin: 9px 0 8px;
}

.report-card.featured {
    grid-column: span 2;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        radial-gradient(circle at 18% 18%, rgba(0, 229, 255, 0.12), transparent 34%),
        radial-gradient(circle at 78% 24%, rgba(255, 61, 138, 0.1), transparent 35%),
        rgba(255, 255, 255, 0.045);
}

.report-card .report-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.2;
    margin-bottom: 12px;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.eco-item {
    min-height: 132px;
    padding: 24px 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    border-radius: 18px;
    background: var(--bg-panel);
    border: 1px solid var(--border-soft);
}

.eco-item.visible {
    transform: scale(1);
}

.eco-item:hover {
    background: rgba(108, 60, 224, 0.08);
    transform: translateY(-5px) scale(1.03);
}

.eco-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 14px;
    color: #fff;
    font-weight: 780;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.35), rgba(0, 229, 255, 0.16));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.eco-name {
    color: var(--text-muted);
    font-size: 0.83rem;
    font-weight: 520;
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 36px;
    align-items: stretch;
}

.panel.large {
    padding: 40px 34px;
}

.panel h2 {
    font-size: clamp(1.8rem, 3.6vw, 2.65rem);
    line-height: 1.18;
    margin-bottom: 14px;
}

.mini-list,
.check-list,
.info-list {
    display: grid;
    gap: 13px;
    margin-top: 22px;
    list-style: none;
}

.mini-list li,
.check-list li,
.info-list li {
    color: var(--text-muted);
    padding: 13px 14px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.045);
}

.check-list li {
    display: flex;
    gap: 11px;
}

.check-list li::before {
    content: '';
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    margin-top: 9px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 14px rgba(0, 230, 118, 0.75);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.page-hero {
    padding: 150px 0 78px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.035);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--text-faint);
    font-size: 0.82rem;
    margin-bottom: 22px;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: #fff;
}

.page-hero h1 {
    max-width: 920px;
}

.page-lead {
    max-width: 760px;
    margin-bottom: 30px;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.44fr);
    gap: 34px;
    align-items: end;
}

.hero-panel {
    padding: 26px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-soft);
}

.hero-panel strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 32px;
    align-items: start;
}

.detail-main {
    display: grid;
    gap: 26px;
}

.sticky-aside {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 16px;
}

.aside-card {
    padding: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-soft);
}

.aside-card h3 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.aside-nav {
    display: grid;
    gap: 8px;
}

.aside-nav a {
    color: var(--text-muted);
    font-size: 0.88rem;
    padding: 8px 10px;
    border-radius: 10px;
}

.aside-nav a:hover {
    color: #fff;
    background: rgba(108, 60, 224, 0.12);
}

.topic-block h2 {
    font-size: 1.75rem;
    line-height: 1.25;
}

.topic-block .topic-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.topic-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.topic-columns .mini-list {
    margin-top: 0;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.timeline {
    position: relative;
    display: grid;
    gap: 22px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 18px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(0, 229, 255, 0.6), rgba(108, 60, 224, 0.08));
}

.timeline-item {
    margin-left: 46px;
    padding: 26px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -35px;
    top: 30px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 20px var(--accent-cyan);
}

.timeline-item h2,
.timeline-item h3 {
    font-size: 1.28rem;
    line-height: 1.35;
    margin: 9px 0;
}

.article-card {
    min-height: 100%;
}

.maturity-row {
    display: grid;
    gap: 11px;
    margin-top: 20px;
}

.maturity-item {
    display: grid;
    grid-template-columns: 120px 1fr 56px;
    gap: 12px;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.bar {
    height: 9px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary), var(--accent-cyan));
}

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

.field {
    display: grid;
    gap: 7px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 13px 14px;
    outline: none;
    transition: border-color 0.25s, background 0.25s;
}

.field textarea {
    min-height: 132px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: rgba(0, 229, 255, 0.45);
    background: rgba(255, 255, 255, 0.065);
}

.form-status {
    min-height: 24px;
    color: var(--accent-green);
    font-size: 0.88rem;
    margin-top: 14px;
}

.form-status.is-error {
    color: #ff8ea9;
}

.form-status.is-success {
    color: var(--accent-green);
}

.article-body {
    margin-top: 18px;
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.admin-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-row strong {
    font-size: 0.95rem;
}

.admin-row span {
    color: var(--text-muted);
    font-size: 0.83rem;
    text-align: right;
}

.admin-stats .stat-item {
    min-height: 160px;
}

.admin-stats .counter {
    font-size: 2.3rem;
    line-height: 1;
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.btn-small {
    padding: 11px 16px;
    font-size: 0.82rem;
}

.btn-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 36px;
    border-radius: 50px;
    border: 1px solid rgba(255, 61, 138, 0.28);
    background: linear-gradient(135deg, #9c1c45, #ff3d8a);
    color: #fff !important;
    cursor: pointer;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(255, 61, 138, 0.24);
}


.cta-section {
    padding: 84px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.035);
}

.cta-box {
    padding: 62px 46px;
    text-align: center;
    border-radius: 32px;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(108, 60, 224, 0.14), transparent 70%),
        rgba(255, 255, 255, 0.028);
    border: 1px solid var(--border-soft);
    backdrop-filter: blur(8px);
}

.cta-box h2 {
    font-size: clamp(2rem, 4vw, 2.65rem);
    line-height: 1.18;
    margin-bottom: 13px;
}

.cta-box p {
    max-width: 640px;
    margin: 0 auto 30px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.cta-box .cta-actions {
    justify-content: center;
}

footer {
    position: relative;
    z-index: 1;
    padding: 50px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.045);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 38px;
    margin-bottom: 32px;
}

.footer-brand .logo-main {
    display: inline-block;
    font-size: 1.6rem;
    margin-bottom: 2px;
}

.footer-brand p {
    max-width: 330px;
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-col h3,
.footer-col h5 {
    margin-bottom: 13px;
    color: var(--text-muted);
    font-size: 0.84rem;
    font-weight: 650;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.86rem;
    padding: 5px 0;
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.045);
}

.footer-bottom p,
.footer-bottom a {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom a:hover {
    color: #fff;
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.4s; }
.delay-6 { transition-delay: 0.48s; }

@media (max-width: 1100px) {
    nav {
        gap: 18px;
    }

    .hero-grid,
    .page-hero-grid,
    .split-grid,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .hero-content,
    .page-hero {
        text-align: center;
    }

    .subtitle-wrap,
    .page-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .inline-actions {
        justify-content: center;
    }

    .hero-panel,
    .sticky-aside {
        max-width: 720px;
        margin: 0 auto;
    }

    .sticky-aside {
        position: static;
        width: 100%;
    }

    .tech-grid,
    .trend-grid,
    .report-grid,
    .method-grid,
    .article-grid,
    .metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ecosystem-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

@media (max-width: 820px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 28px;
        right: 28px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 7px;
        padding: 16px;
        border-radius: 20px;
        background: rgba(9, 6, 26, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 22px 70px rgba(0, 0, 0, 0.46);
    }

    nav.is-open {
        display: flex;
    }

    nav a {
        padding: 10px 12px;
        border-radius: 12px;
    }

    nav a::after {
        display: none;
    }

    nav a:hover,
    nav a.active {
        background: rgba(108, 60, 224, 0.12);
    }

    .nav-cta {
        text-align: center;
        justify-content: center;
        margin-top: 4px;
    }

    .hero {
        min-height: auto;
        padding-top: 128px;
    }

    .page-hero {
        padding-top: 132px;
    }

    .hero-visual {
        min-height: 320px;
    }

    .float-tag {
        display: none;
    }

    .stats-bar,
    .metrics-grid,
    .tech-grid,
    .trend-grid,
    .report-grid,
    .method-grid,
    .article-grid {
        grid-template-columns: 1fr;
    }

    .report-card.featured {
        grid-column: auto;
        min-height: auto;
    }

    .ecosystem-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px 14px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col h3,
    .footer-col h5 {
        margin-bottom: 8px;
        font-size: 0.76rem;
    }

    .footer-col a {
        display: inline-block;
        padding: 4px 6px;
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .footer-col a:hover {
        transform: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .maturity-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

@media (max-width: 520px) {
    .container {
        padding: 0 17px;
    }

    nav {
        left: 17px;
        right: 17px;
    }

    .logo-main {
        font-size: 1.45rem;
    }

    .logo-sub {
        font-size: 0.52rem;
        letter-spacing: 2px;
    }

    .hero-content h1,
    .page-hero h1 {
        letter-spacing: -0.8px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-ghost {
        width: 100%;
        padding-left: 22px;
        padding-right: 22px;
    }

    .cta-box,
    .panel.large,
    .tech-card,
    .report-card,
    .topic-block,
    .form-card,
    .timeline-item {
        padding: 28px 20px;
    }

    .timeline::before {
        left: 9px;
    }

    .timeline-item {
        margin-left: 27px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-col h3,
    .footer-col h5 {
        margin-bottom: 7px;
    }

    .footer-col a {
        padding: 3px 7px;
        font-size: 0.76rem;
    }

    .timeline-item::after {
        left: -24px;
    }
}

body {
    background:
        radial-gradient(circle at 12% 8%, rgba(0, 229, 255, 0.18), transparent 28%),
        radial-gradient(circle at 86% 12%, rgba(255, 61, 138, 0.12), transparent 26%),
        radial-gradient(circle at 50% 82%, rgba(108, 60, 224, 0.18), transparent 34%),
        linear-gradient(135deg, #03020a 0%, #080418 42%, #05030f 100%);
}

body::before,
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

body::before {
    opacity: 0.34;
    background:
        linear-gradient(rgba(0, 229, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.08) 1px, transparent 1px),
        linear-gradient(115deg, transparent 0 46%, rgba(167, 139, 250, 0.08) 48%, transparent 52% 100%);
    background-size: 72px 72px, 72px 72px, 240px 240px;
    mask-image: radial-gradient(circle at 50% 30%, #000 0 36%, transparent 78%);
    animation: gridDrift 18s linear infinite;
}

body::after {
    opacity: 0.16;
    background:
        repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 7px),
        linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.13), transparent);
    mix-blend-mode: screen;
    animation: scanFlow 9s ease-in-out infinite;
}

@keyframes gridDrift {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 72px 72px, -72px 72px, 240px 240px; }
}

@keyframes scanFlow {
    0%, 100% { transform: translateY(-2%); opacity: 0.11; }
    50% { transform: translateY(2%); opacity: 0.2; }
}

header {
    background: linear-gradient(180deg, rgba(7, 5, 24, 0.9), rgba(5, 3, 15, 0.58));
    border-bottom-color: rgba(0, 229, 255, 0.16);
    box-shadow: 0 1px 0 rgba(167, 139, 250, 0.12), 0 18px 60px rgba(0, 0, 0, 0.28);
}

header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.85), rgba(255, 61, 138, 0.45), transparent);
    opacity: 0.58;
    animation: beamSweep 5.5s ease-in-out infinite;
}

@keyframes beamSweep {
    0%, 100% { transform: translateX(-34%); opacity: 0.18; }
    50% { transform: translateX(34%); opacity: 0.8; }
}

.logo-main {
    filter: drop-shadow(0 0 18px rgba(108, 60, 224, 0.45)) drop-shadow(0 0 32px rgba(0, 229, 255, 0.12));
}

.logo-sub,
.footer-brand .logo-sub {
    color: rgba(0, 229, 255, 0.48);
    text-shadow: 0 0 14px rgba(0, 229, 255, 0.18);
}

nav a {
    text-shadow: 0 0 18px rgba(167, 139, 250, 0.08);
}

nav a:hover,
nav a.active {
    text-shadow: 0 0 16px rgba(0, 229, 255, 0.34);
}

.hero,
.page-hero {
    isolation: isolate;
    overflow: hidden;
}

.hero::before,
.page-hero::before {
    content: '';
    position: absolute;
    inset: 82px 0 auto;
    height: 44%;
    z-index: 0;
    background:
        linear-gradient(105deg, transparent 0 18%, rgba(0, 229, 255, 0.11) 20%, transparent 35%),
        linear-gradient(75deg, transparent 0 54%, rgba(255, 61, 138, 0.09) 56%, transparent 68%);
    filter: blur(3px);
    opacity: 0.75;
    transform: skewY(-8deg);
    animation: prismShift 10s ease-in-out infinite;
}

.hero::after,
.page-hero::after {
    content: '';
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 8%;
    height: 1px;
    z-index: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.58), rgba(167, 139, 250, 0.36), transparent);
    box-shadow: 0 0 34px rgba(0, 229, 255, 0.32);
}

@keyframes prismShift {
    0%, 100% { transform: translateX(-2%) skewY(-8deg); opacity: 0.45; }
    50% { transform: translateX(2%) skewY(-8deg); opacity: 0.86; }
}

.hero-content h1,
.page-hero h1,
.section-header h2,
.cta-box h2 {
    text-shadow: 0 0 28px rgba(108, 60, 224, 0.22), 0 0 58px rgba(0, 229, 255, 0.08);
}

.eyebrow,
.page-kicker,
.label-chip,
.badge,
.card-tag {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(108, 60, 224, 0.16), rgba(255, 61, 138, 0.08));
    border-color: rgba(0, 229, 255, 0.22);
    box-shadow: inset 0 0 18px rgba(0, 229, 255, 0.04), 0 0 22px rgba(108, 60, 224, 0.12);
}

.btn-primary {
    border-color: rgba(0, 229, 255, 0.32);
    background: linear-gradient(135deg, #7c3cff 0%, #4a1faa 44%, #00b8ff 100%);
    box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.12), 0 12px 45px rgba(108, 60, 224, 0.36), 0 0 45px rgba(0, 229, 255, 0.12);
}

.btn-secondary,
.btn-ghost {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(255, 255, 255, 0.035));
    border-color: rgba(0, 229, 255, 0.18);
    box-shadow: inset 0 0 22px rgba(0, 229, 255, 0.04);
}

.btn-secondary:hover,
.btn-ghost:hover {
    box-shadow: 0 12px 48px rgba(0, 229, 255, 0.14), inset 0 0 26px rgba(167, 139, 250, 0.08);
}

.hero-sphere {
    border: 1px solid rgba(0, 229, 255, 0.18);
    background:
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.18), transparent 12%),
        radial-gradient(circle at 34% 28%, rgba(0, 229, 255, 0.22), transparent 24%),
        radial-gradient(circle at 62% 68%, rgba(255, 61, 138, 0.18), transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(108, 60, 224, 0.22), rgba(5, 3, 15, 0.95) 58%);
    box-shadow: 0 0 160px rgba(0, 229, 255, 0.18), 0 0 120px rgba(108, 60, 224, 0.22), inset 0 0 90px rgba(0, 229, 255, 0.08);
}

.hero-sphere::before,
.hero-sphere::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-sphere::before {
    inset: -38px;
    background: conic-gradient(from 90deg, transparent, rgba(0, 229, 255, 0.34), transparent 28%, rgba(255, 61, 138, 0.22), transparent 58%, rgba(167, 139, 250, 0.28), transparent);
    mask: radial-gradient(farthest-side, transparent 62%, #000 64% 68%, transparent 70%);
    filter: blur(0.2px) drop-shadow(0 0 22px rgba(0, 229, 255, 0.28));
    animation: orbitHalo 9s linear infinite;
}

.hero-sphere::after {
    inset: 17%;
    opacity: 0.46;
    background: repeating-linear-gradient(0deg, transparent 0 13px, rgba(0, 229, 255, 0.16) 14px 15px);
    mask: radial-gradient(circle, #000 0 52%, transparent 72%);
    animation: holoScan 3.8s ease-in-out infinite;
}

@keyframes orbitHalo {
    to { transform: rotate(360deg); }
}

@keyframes holoScan {
    0%, 100% { transform: translateY(-8px); opacity: 0.28; }
    50% { transform: translateY(8px); opacity: 0.58; }
}

.hero-sphere .ring {
    border-style: dashed;
    border-color: rgba(0, 229, 255, 0.2);
    box-shadow: 0 0 22px rgba(0, 229, 255, 0.08);
}

.hero-sphere .core .big {
    text-shadow: 0 0 26px rgba(255, 255, 255, 0.18), 0 0 55px rgba(0, 229, 255, 0.24);
}

.float-tag {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.14), rgba(255, 255, 255, 0.06), rgba(108, 60, 224, 0.13));
    border-color: rgba(0, 229, 255, 0.2);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.46), 0 0 24px rgba(0, 229, 255, 0.11);
}

.tech-card,
.trend-item,
.report-card,
.panel,
.topic-block,
.form-card,
.hero-panel,
.aside-card,
.stat-item,
.metric-card,
.eco-item,
.cta-box {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(0, 229, 255, 0.055), rgba(108, 60, 224, 0.08) 42%, rgba(255, 255, 255, 0.026)),
        rgba(255, 255, 255, 0.035);
    border-color: rgba(0, 229, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 70px rgba(0, 0, 0, 0.18);
}

.tech-card::after,
.trend-item::after,
.report-card::after,
.panel::after,
.topic-block::after,
.form-card::after,
.hero-panel::after,
.aside-card::after,
.stat-item::after,
.metric-card::after,
.eco-item::after,
.cta-box::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background:
        radial-gradient(circle at 18% 12%, rgba(0, 229, 255, 0.2), transparent 26%),
        linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.08) 45%, transparent 52% 100%);
    transition: opacity 0.35s, transform 0.35s;
    transform: translateX(-8%);
}

.tech-card:hover::after,
.trend-item:hover::after,
.report-card:hover::after,
.panel:hover::after,
.topic-block:hover::after,
.form-card:hover::after,
.hero-panel:hover::after,
.aside-card:hover::after,
.stat-item:hover::after,
.metric-card:hover::after,
.eco-item:hover::after,
.cta-box:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.tech-card:hover,
.trend-item:hover,
.report-card:hover,
.panel:hover,
.topic-block:hover,
.form-card:hover,
.hero-panel:hover,
.aside-card:hover,
.stat-item:hover,
.metric-card:hover,
.eco-item:hover,
.cta-box:hover {
    border-color: rgba(0, 229, 255, 0.34);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11), 0 24px 82px rgba(0, 0, 0, 0.3), 0 0 42px rgba(0, 229, 255, 0.12), 0 0 70px rgba(108, 60, 224, 0.12);
}

.icon-mark,
.eco-symbol {
    background: conic-gradient(from 180deg, rgba(0, 229, 255, 0.86), rgba(108, 60, 224, 0.95), rgba(255, 61, 138, 0.72), rgba(0, 229, 255, 0.86));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 24px rgba(0, 229, 255, 0.18), inset 0 0 16px rgba(255, 255, 255, 0.08);
}

.section-muted {
    background:
        linear-gradient(90deg, rgba(0, 229, 255, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(108, 60, 224, 0.035) 1px, transparent 1px),
        rgba(255, 255, 255, 0.012);
    background-size: 52px 52px;
}

footer {
    background: linear-gradient(180deg, transparent, rgba(0, 229, 255, 0.035));
}

@media (max-width: 820px) {
    body::before {
        opacity: 0.2;
        background-size: 54px 54px, 54px 54px, 180px 180px;
    }

    body::after {
        opacity: 0.1;
    }

    .hero::before,
    .page-hero::before {
        opacity: 0.38;
    }

    .hero-sphere::before {
        inset: -22px;
    }
}
