:root {
    --bg: #040508;
    --bg-soft: #0a0d14;
    --panel: rgba(13, 17, 27, 0.58);
    --panel-strong: rgba(10, 14, 22, 0.82);
    --line: rgba(255, 255, 255, 0.09);
    --line-strong: rgba(255, 255, 255, 0.18);
    --text: #f4f7fb;
    --muted: rgba(233, 238, 248, 0.68);
    --soft: rgba(233, 238, 248, 0.42);
    --primary: #ffffff;
    --accent: #72e6ff;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    --radius: 28px;
    --radius-sm: 18px;
    --header-h: 78px;
    --container: 1180px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background:
        radial-gradient(circle at 20% 20%, rgba(71, 106, 255, 0.12), transparent 30%),
        radial-gradient(circle at 78% 18%, rgba(0, 204, 255, 0.1), transparent 24%),
        radial-gradient(circle at 50% 85%, rgba(144, 79, 255, 0.11), transparent 28%),
        linear-gradient(180deg, #030508 0%, #05070c 32%, #04050a 100%);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, black 38%, transparent 88%);
    opacity: 0.23;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.12;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.7) 0.55px, transparent 0.8px);
    background-size: 18px 18px;
    mix-blend-mode: soft-light;
}

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

img {
    display: block;
}

button {
    font: inherit;
}

#signal-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.95;
}

#site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    background: rgba(4, 6, 10, 0.58);
    border-bottom: 1px solid transparent;
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

#site-header.scrolled {
    background: rgba(4, 6, 10, 0.8);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.container {
    width: min(var(--container), calc(100% - 96px));
    margin: 0 auto;
}

.header-inner {
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 10px 8px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: -0.05em;
    font-size: 1.15rem;
    margin-left: 10px;
}

.logo img,
.footer-logo img,
.core-center img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.desktop-nav a,
.mnav-link {
    color: var(--muted);
    padding: 9px 14px;
    border-radius: 999px;
    transition: color 180ms ease, background 180ms ease;
}

.desktop-nav a:hover,
.mnav-link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 13px 22px;
    border: 1px solid transparent;
    font-weight: 600;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-sm {
    padding: 10px 16px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 15px 24px;
}

.btn-primary {
    color: #020305;
    background: linear-gradient(135deg, #eef8ff 0%, #9fe9ff 55%, #ffffff 100%);
    box-shadow: 0 10px 34px rgba(114, 230, 255, 0.22);
}

.btn-primary:hover {
    box-shadow: 0 16px 40px rgba(114, 230, 255, 0.28);
}

.btn-ghost,
.btn-outline {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover,
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    padding: 0;
}

.mobile-menu-btn span {
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: var(--text);
    border-radius: 999px;
    transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.mobile-nav {
    display: none;
    padding: 0 20px 20px;
    gap: 10px;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero,
.services-section,
.identity-section,
.about-section,
.cta-section {
    position: relative;
    z-index: 1;
}

.hero {
    padding: 28px 0 24px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 42px;
    align-items: start;
    min-height: calc(100vh - var(--header-h) - 110px);
}

.hero-copy {
    max-width: 640px;
    padding-top: 0;
    margin-top: -28px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(192, 236, 255, 0.88);
}

.hero-copy h1,
.section-head h2,
.identity-panel h2,
.about-copy h2,
.cta-box h2,
.signal-band h2 {
    letter-spacing: -0.06em;
    line-height: 0.96;
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(3.3rem, 7vw, 6.4rem);
    max-width: 10ch;
}

.hero-sub,
.section-copy,
.identity-panel p,
.about-copy p,
.cta-box p,
.signal-band p,
.service-card p,
.footer-brand p {
    color: var(--muted);
    line-height: 1.72;
}

.hero-sub {
    margin: 8px 0 0;
    max-width: 58ch;
    font-size: 1.02rem;
}

.hero-actions,
.identity-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 20px;
}

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

.metric {
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.metric-label {
    display: block;
    margin-top: 6px;
    color: var(--soft);
    font-size: 0.92rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.signal-stage {
    position: relative;
    width: min(100%, 560px);
    aspect-ratio: 1 / 1;
    border-radius: 40px;
    background:
        radial-gradient(circle at 50% 50%, rgba(114, 230, 255, 0.16), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    isolation: isolate;
}

.signal-stage::before,
.signal-stage::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.55;
    pointer-events: none;
}

.signal-stage::before {
    width: 240px;
    height: 240px;
    background: rgba(112, 230, 255, 0.28);
    left: 15%;
    top: 16%;
}

.signal-stage::after {
    width: 190px;
    height: 190px;
    background: rgba(144, 79, 255, 0.22);
    right: 12%;
    bottom: 14%;
}

.signal-core {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 220px;
    height: 220px;
    transform: translate(-50%, -50%);
}

.core-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(157, 234, 255, 0.24);
    box-shadow: 0 0 24px rgba(114, 230, 255, 0.08), inset 0 0 20px rgba(114, 230, 255, 0.06);
}

.core-ring-a {
    animation: pulseRing 7s ease-in-out infinite;
}

.core-ring-b {
    inset: 16px;
    opacity: 0.72;
    animation: pulseRing 9s ease-in-out infinite reverse;
}

.core-ring-c {
    inset: 34px;
    opacity: 0.54;
    animation: pulseRing 11s ease-in-out infinite;
}

.core-center {
    position: absolute;
    inset: 50%;
    width: 108px;
    height: 108px;
    transform: translate(-50%, -50%);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: 0 0 0 1px rgba(114, 230, 255, 0.08), 0 16px 50px rgba(30, 84, 110, 0.28);
    backdrop-filter: blur(14px);
    z-index: 2;
}

.core-center span {
    font-size: 0.84rem;
    color: rgba(235, 245, 255, 0.9);
}

.signal-links {
    position: absolute;
    inset: 0;
}

.signal-line {
    position: absolute;
    height: 1px;
    left: 50%;
    top: 50%;
    transform-origin: 0 50%;
    background: linear-gradient(90deg, rgba(114, 230, 255, 0.42), rgba(114, 230, 255, 0));
    opacity: 0.48;
    filter: drop-shadow(0 0 6px rgba(114, 230, 255, 0.18));
}

.line-ai {
    width: 146px;
    transform: rotate(-131deg);
}

.line-disk {
    width: 142px;
    transform: rotate(-41deg);
}

.line-kino {
    width: 134px;
    transform: rotate(154deg);
}

.line-focus {
    width: 118px;
    transform: rotate(23deg);
}

.orbit-card {
    position: absolute;
    width: 170px;
    padding: 16px 18px;
    border-radius: 22px;
    --glow-x: 50%;
    --glow-y: 50%;
    --glow-alpha: 0;
    background:
        radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, var(--glow-alpha)), transparent 38%),
        rgba(9, 13, 20, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.orbit-card::before,
.service-card::before,
.identity-panel::before,
.identity-network::before,
.about-card::before,
.cta-box::before,
.signal-band::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02) 45%, rgba(114, 230, 255, 0.22));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.75;
    pointer-events: none;
}

.orbit-card:hover,
.service-card:hover,
.about-card:hover {
    transform: translateY(-3px);
}

.orbit-label,
.service-tag,
.about-card-index,
.footer-title {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.orbit-label {
    font-weight: 700;
}

.orbit-meta {
    display: block;
    margin-top: 8px;
    color: var(--soft);
    font-size: 0.92rem;
}

.orbit-ai {
    top: 15%;
    left: 11%;
}

.orbit-disk {
    top: 21%;
    right: 10%;
}

.orbit-kino {
    bottom: 15%;
    left: 9%;
}

.orbit-focus {
    right: 10%;
    bottom: 17%;
}

.signal-band {
    margin: 24px auto 0;
    width: min(var(--container), calc(100% - 40px));
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 14, 22, 0.8), rgba(9, 15, 24, 0.45));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.signal-band-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    padding: 30px 34px;
    align-items: center;
}

.signal-band h2,
.section-head h2,
.identity-panel h2,
.about-copy h2,
.cta-box h2 {
    margin: 10px 0 0;
    font-size: clamp(2rem, 4.6vw, 4rem);
}

.services-section {
    padding: 110px 0 40px;
}

.section-head {
    max-width: 920px;
}

.section-copy {
    max-width: 58ch;
    margin-top: 18px;
}

.service-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    position: relative;
    grid-column: span 4;
    min-height: 250px;
    padding: 24px;
    border-radius: var(--radius);
    overflow: hidden;
    --glow-x: 50%;
    --glow-y: 50%;
    --glow-alpha: 0;
    background:
        radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, var(--glow-alpha)), transparent 38%),
        linear-gradient(180deg, rgba(13, 18, 27, 0.75), rgba(7, 10, 16, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.service-card-large {
    grid-column: span 6;
    min-height: 300px;
}

.service-glow {
    position: absolute;
    inset: auto auto -30% -10%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.28) 0%, rgba(var(--accent-rgb), 0) 72%);
    filter: blur(18px);
    opacity: 0.85;
    pointer-events: none;
}

.service-tag {
    color: color-mix(in srgb, var(--accent) 72%, #ffffff 28%);
}

.service-card h3,
.about-card h3 {
    margin: 16px 0 10px;
    font-size: 1.7rem;
    letter-spacing: -0.05em;
}

.service-card p {
    max-width: 32ch;
    margin: 0;
}

.service-link {
    position: absolute;
    left: 24px;
    bottom: 24px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
}

.identity-section {
    padding: 70px 0;
}

.identity-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 22px;
}

.identity-panel,
.identity-network,
.about-card,
.cta-box {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    --glow-x: 50%;
    --glow-y: 50%;
    --glow-alpha: 0;
    background:
        radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, var(--glow-alpha)), transparent 38%),
        linear-gradient(180deg, rgba(10, 14, 22, 0.88), rgba(8, 10, 16, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.identity-panel {
    padding: 34px;
}

.identity-network {
    min-height: 440px;
    background:
        radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, var(--glow-alpha)), transparent 38%),
        radial-gradient(circle at center, rgba(114, 230, 255, 0.15), transparent 24%),
        linear-gradient(180deg, rgba(11, 17, 27, 0.96), rgba(7, 10, 16, 0.98));
}

.identity-network::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: radial-gradient(circle at center, black 45%, transparent 90%);
    opacity: 0.55;
}

.identity-center,
.identity-node {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    backdrop-filter: blur(14px);
    z-index: 1;
}

.identity-center {
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: rgba(117, 231, 255, 0.11);
    border: 1px solid rgba(157, 234, 255, 0.28);
    box-shadow: 0 0 50px rgba(114, 230, 255, 0.2);
    flex-direction: column;
    gap: 6px;
    font-weight: 700;
}

.identity-pulse {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #9deaff;
    box-shadow: 0 0 20px rgba(157, 234, 255, 0.95);
    animation: pulseDot 3.4s ease-in-out infinite;
}

.identity-node {
    min-width: 118px;
    height: 46px;
    padding: 0 18px;
    background: rgba(13, 18, 27, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(244, 247, 251, 0.92);
}

.node-1 { top: 18%; left: 16%; }
.node-2 { top: 21%; right: 14%; }
.node-3 { left: 10%; bottom: 27%; }
.node-4 { right: 11%; bottom: 21%; }
.node-5 { left: 27%; bottom: 10%; }
.node-6 { right: 28%; top: 10%; }

.about-section {
    padding: 40px 0 70px;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 22px;
    align-items: start;
}

.about-stack {
    display: grid;
    gap: 18px;
}

.about-card {
    padding: 24px 26px 28px;
}

.about-card-index {
    color: rgba(157, 234, 255, 0.72);
}

.cta-section {
    padding: 10px 0 100px;
}

.cta-box {
    padding: 42px;
    text-align: center;
    background:
        radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, var(--glow-alpha)), transparent 38%),
        radial-gradient(circle at 20% 50%, rgba(114, 230, 255, 0.1), transparent 26%),
        radial-gradient(circle at 80% 50%, rgba(144, 79, 255, 0.09), transparent 28%),
        linear-gradient(180deg, rgba(11, 16, 25, 0.95), rgba(7, 10, 16, 0.98));
}

.cta-box p {
    max-width: 56ch;
    margin: 18px auto 0;
}

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

.site-footer {
    position: relative;
    z-index: 1;
    padding: 0 0 46px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 22px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    max-width: 34ch;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: -0.05em;
    font-size: 1.08rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-title {
    color: rgba(157, 234, 255, 0.85);
    margin-bottom: 8px;
}

.footer-column a,
.footer-bottom p {
    color: var(--muted);
}

.footer-column a:hover {
    color: var(--text);
}

.footer-bottom {
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.reveal {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    filter: blur(14px);
    transition: opacity 700ms ease, transform 700ms ease, filter 700ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

@keyframes pulseRing {
    0%, 100% { transform: scale(1); opacity: 0.65; }
    50% { transform: scale(1.045); opacity: 1; }
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.28); opacity: 0.75; }
}

@media (max-width: 1080px) {
    .hero-grid,
    .identity-grid,
    .about-grid,
    .signal-band-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: auto;
    }

    .hero-copy {
        max-width: none;
        margin-top: 0;
    }

    .hero-copy h1 {
        max-width: 12ch;
    }

    .service-card,
    .service-card-large {
        grid-column: span 6;
    }
}

@media (max-width: 820px) {
    .desktop-nav,
    .header-actions .btn {
        display: none;
    }

    .mobile-menu-btn,
    .mobile-nav {
        display: flex;
    }

    .mobile-nav {
        max-height: 0;
        overflow: hidden;
        padding-top: 0;
        padding-bottom: 0;
        transition: max-height 220ms ease, padding 220ms ease;
    }

    .mobile-nav.open {
        max-height: 360px;
        padding-top: 18px;
        padding-bottom: 20px;
    }

    .hero {
        padding-top: 18px;
    }

    .hero-grid {
        gap: 26px;
    }

    .hero-copy h1 {
        font-size: clamp(2.7rem, 12vw, 4.4rem);
        max-width: none;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .signal-stage {
        aspect-ratio: auto;
        min-height: 520px;
    }

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

    .service-card,
    .service-card-large {
        grid-column: auto;
    }

    .identity-network {
        min-height: 520px;
    }
}

@media (max-width: 620px) {
    .container,
    .signal-band {
        width: min(var(--container), calc(100% - 34px));
    }

    .header-inner {
        gap: 16px;
    }

    .signal-stage {
        min-height: 480px;
    }

    .signal-core {
        width: 180px;
        height: 180px;
    }

    .core-center {
        width: 92px;
        height: 92px;
    }

    .orbit-card {
        width: 142px;
        padding: 14px;
    }

    .orbit-label {
        font-size: 0.74rem;
    }

    .orbit-meta {
        font-size: 0.82rem;
    }

    .orbit-ai { top: 10%; left: 4%; }
    .orbit-disk { top: 15%; right: 4%; }
    .orbit-kino { bottom: 10%; left: 4%; }
    .orbit-focus { bottom: 14%; right: 4%; }

    .identity-panel,
    .cta-box {
        padding: 26px 22px;
    }

    .identity-network {
        min-height: 500px;
    }

    .identity-node {
        min-width: 98px;
        height: 40px;
        padding: 0 14px;
        font-size: 0.84rem;
    }

    .node-1 { top: 18%; left: 5%; }
    .node-2 { top: 18%; right: 5%; }
    .node-3 { left: 2%; bottom: 29%; }
    .node-4 { right: 2%; bottom: 23%; }
    .node-5 { left: 19%; bottom: 10%; }
    .node-6 { right: 18%; top: 8%; }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
        filter: none;
    }
}
