:root {
    --bg-color: #1a1a1a;
    --accent-orange: #ff5500;
    --text-main: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --font-primary: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.container {
    width: 1280px;
    height: 720px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1); /* Граница для визуализации формата */
    background: radial-gradient(circle at center, #252525 0%, #1a1a1a 100%);
}

/* Логотип */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 800;
    font-size: 110px;
    letter-spacing: -2px;
    text-transform: lowercase; /* Для mind */
}

.text-man {
    text-transform: uppercase;
    font-stretch: semi-condensed;
}

/* Мерцающая точка */
.dot-portal {
    width: 32px;
    height: 32px;
    background: var(--accent-orange);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 20px var(--accent-orange);
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px var(--accent-orange); opacity: 1; }
    50% { transform: scale(1.2); box-shadow: 0 0 50px var(--accent-orange), 0 0 80px #ffaa00; opacity: 0.8; }
}

/* Subheading */
.subheading {
    margin-top: 30px;
    font-weight: 600;
    font-size: 24px;
    text-align: center;
    opacity: 0.7;
    max-width: 700px;
    line-height: 1.4;
    font-stretch: semi-condensed;
}

/* Node Элемент */
.visual-flow {
    margin-top: 80px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.node-element {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transform: perspective(1000px) rotateX(5deg);
    transition: 0.3s;
}

.node-element:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.05);
    border-color: var(--accent-orange);
}

.node-element h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--accent-orange);
    font-family: monospace;
}

.node-element p {
    font-size: 16px;
    opacity: 0.8;
}

/* Декоративная стрелка */
.bezier-arrow {
    position: absolute;
    left: 30%;
    top: -50px;
    width: 150px;
}