@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

@font-face {
    font-family: 'Pasted';
    src: url('../assets/fonts/pasted.ttf') format('truetype');
}

:root {
    --bg: #07060d;
    --bg-elevated: #0f0e18;
    --bg-card: #13121e;
    --bg-card-hover: #171626;
    --border: rgba(255, 255, 255, 0.06);
    --border-strong: rgba(255, 255, 255, 0.12);
    --border-glow: rgba(139, 124, 255, 0.3);
    --text: #f0eeff;
    --text-muted: #7a768c;
    --text-dim: #4a4760;
    --primary: #8b7cff;
    --primary-rgb: 139, 124, 255;
    --primary-dim: #5e4fd4;
    --primary-bright: #a99aff;
    --primary-glow: rgba(139, 124, 255, 0.4);
    --primary-glow-soft: rgba(139, 124, 255, 0.15);
    --accent: #3ee8c5;
    --accent-rgb: 62, 232, 197;
    --accent-glow: rgba(62, 232, 197, 0.3);
    --accent-dim: #2ab89a;
    --rose: #ff6b9d;
    --rose-rgb: 255, 107, 157;
    --amber: #ffb86c;
    --sidebar-w: 88px;
    --font: 'Space Grotesk', system-ui, sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --radius: 20px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --transition: 0.3s var(--ease-smooth);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── BACKGROUND SYSTEM ─────────────────────────────────── */

.page-bg {
    position: fixed;
    inset: 0;
    z-index: -3;
    background: var(--bg);
    overflow: hidden;
}

.page-bg::before {
    content: '';
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 124, 255, 0.14) 0%, transparent 70%);
    top: -300px;
    right: -200px;
    animation: bgOrb1 20s ease-in-out infinite;
}

.page-bg::after {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(62, 232, 197, 0.08) 0%, transparent 70%);
    bottom: -200px;
    left: -100px;
    animation: bgOrb2 25s ease-in-out infinite;
}

@keyframes bgOrb1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-80px, 60px) scale(1.1); }
    66% { transform: translate(60px, -40px) scale(0.95); }
}

@keyframes bgOrb2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, -80px) scale(1.15); }
    66% { transform: translate(-40px, 60px) scale(0.9); }
}

.noise-layer {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.8;
}

.grid-overlay {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 10%, transparent 75%);
    pointer-events: none;
}

/* ── CURSOR GLOW ────────────────────────────────────────── */

.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 124, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* ── SIDEBAR ────────────────────────────────────────────── */

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-w);
    height: 100vh;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0;
    background: rgba(7, 6, 13, 0.6);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-right: 1px solid var(--border);
}

.sidebar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(var(--primary-rgb), 0.3), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.sidebar:hover::after { opacity: 1; }

.sidebar-logo {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'Pasted', var(--font);
    font-size: 0.92rem;
    letter-spacing: 0.4em;
    color: var(--text);
    opacity: 0.85;
    transition: opacity 0.3s;
}

.sidebar-logo:hover { opacity: 1; }

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-link {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    font-size: 1rem;
    border: 1px solid transparent;
    transition: all 0.3s var(--ease-spring);
    position: relative;
    cursor: pointer;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: rgba(var(--primary-rgb), 0.12);
    opacity: 0;
    transition: opacity 0.3s;
}

.sidebar-link:hover::before,
.sidebar-link.active::before { opacity: 1; }

.sidebar-link:hover,
.sidebar-link.active {
    color: var(--primary-bright);
    border-color: rgba(var(--primary-rgb), 0.2);
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.15);
}

.sidebar-link .tip {
    position: absolute;
    left: calc(100% + 16px);
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    padding: 7px 14px;
    border-radius: 10px;
    font-size: 0.71rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-8px) scale(0.96);
    transition: all 0.25s var(--ease-spring);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    color: var(--text);
}

.sidebar-link .tip::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: var(--bg-card);
    border-left: 1px solid var(--border-strong);
    border-bottom: 1px solid var(--border-strong);
}

.sidebar-link:hover .tip {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.icon-btn {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-spring);
    position: relative;
    overflow: hidden;
}

.icon-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.icon-btn:hover::before { opacity: 1; }

.icon-btn:hover,
.icon-btn.primary {
    color: var(--primary-bright);
    border-color: rgba(var(--primary-rgb), 0.35);
    box-shadow: 0 0 24px rgba(var(--primary-rgb), 0.2), inset 0 1px 0 rgba(255,255,255,0.05);
    transform: translateY(-1px);
}

/* ── MOBILE HEADER ──────────────────────────────────────── */

.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 20px;
    background: rgba(7, 6, 13, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    justify-content: space-between;
    align-items: center;
}

.mobile-logo {
    font-family: 'Pasted', var(--font);
    font-size: 1rem;
    letter-spacing: 0.22em;
    background: linear-gradient(135deg, var(--text), var(--primary-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-menu-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-strong);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.1);
}

/* ── SHELL ──────────────────────────────────────────────── */

.shell {
    margin-left: var(--sidebar-w);
    min-height: 100vh;
}

/* ── HERO ───────────────────────────────────────────────── */

.hero {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.3), rgba(var(--accent-rgb), 0.2), transparent);
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px 80px 72px;
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeSlideIn 0.8s var(--ease-out) 0.2s forwards;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
    animation: pulse 2s ease-in-out infinite;
}

.eyebrow-line {
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px var(--accent-glow); }
    50% { opacity: 0.6; transform: scale(0.8); box-shadow: 0 0 4px var(--accent-glow); }
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: clamp(2.8rem, 4.5vw, 4.8rem);
    font-weight: 700;
    line-height: 1.01;
    letter-spacing: -0.035em;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeSlideIn 0.8s var(--ease-out) 0.4s forwards;
}

.hero-title .line { display: block; overflow: hidden; }

.hero-title .highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary-bright) 0%, var(--accent) 60%, var(--primary) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 400px;
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeSlideIn 0.8s var(--ease-out) 0.6s forwards;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 56px;
    opacity: 0;
    animation: fadeSlideIn 0.8s var(--ease-out) 0.8s forwards;
}

/* ── BUTTONS ────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.88rem;
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--ease-spring);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover::before { opacity: 1; }

.btn-fill {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dim) 100%);
    color: #fff;
    box-shadow: 0 8px 32px rgba(var(--primary-rgb), 0.35),
                inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-fill::before {
    background: linear-gradient(135deg, var(--primary-bright) 0%, var(--primary) 100%);
}

.btn-fill:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 48px rgba(var(--primary-rgb), 0.45),
                inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-fill:active { transform: translateY(-1px) scale(0.99); }

.btn-fill .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s;
}

.btn-fill:hover .btn-shine { left: 150%; }

.btn-outline {
    background: rgba(255,255,255,0.03);
    color: var(--text);
    border: 1px solid var(--border-strong);
    backdrop-filter: blur(8px);
}

.btn-outline::before {
    background: rgba(var(--primary-rgb), 0.08);
}

.btn-outline:hover {
    border-color: rgba(var(--primary-rgb), 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ── METRICS ────────────────────────────────────────────── */

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 380px;
    opacity: 0;
    animation: fadeSlideIn 0.8s var(--ease-out) 1s forwards;
}

.metric {
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.metric::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.06), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.metric:hover::before { opacity: 1; }

.metric:hover {
    border-color: rgba(var(--primary-rgb), 0.25);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.metric-val {
    display: block;
    font-size: 1.65rem;
    font-weight: 700;
    font-feature-settings: "tnum";
    letter-spacing: -0.02em;
    margin-bottom: 3px;
    background: linear-gradient(135deg, var(--text), var(--primary-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--mono);
}

/* ── HERO RIGHT ─────────────────────────────────────────── */

.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px 48px;
}

.hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(var(--primary-rgb), 0.12) 0%, transparent 60%),
        radial-gradient(circle at 30% 70%, rgba(var(--accent-rgb), 0.06) 0%, transparent 50%);
    z-index: 0;
}

.hero-visual {
    position: relative;
    width: 92%;
    max-width: 640px;
    z-index: 2;
}

.hero-visual-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-strong);
    box-shadow:
        0 0 0 1px rgba(var(--primary-rgb), 0.08),
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 120px rgba(var(--primary-rgb), 0.08);
}

.hero-visual-frame img {
    width: 100%;
    display: block;
    transition: transform 0.6s var(--ease-smooth);
}

.hero-visual:hover .hero-visual-frame img {
    transform: scale(1.02);
}

.visual-scan {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(var(--primary-rgb), 0.03) 50%, transparent 100%);
    animation: scanLine 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 3;
}

@keyframes scanLine {
    0% { transform: translateY(-100%); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; }
}

.visual-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 4;
}

.visual-corner::before,
.visual-corner::after {
    content: '';
    position: absolute;
    background: var(--accent);
    border-radius: 2px;
}

.visual-corner::before { width: 2px; height: 100%; }
.visual-corner::after { width: 100%; height: 2px; }

.visual-corner.tl { top: 12px; left: 12px; }
.visual-corner.tr { top: 12px; right: 12px; transform: scaleX(-1); }
.visual-corner.bl { bottom: 12px; left: 12px; transform: scaleY(-1); }
.visual-corner.br { bottom: 12px; right: 12px; transform: scale(-1); }

/* ── FLOAT CARDS ────────────────────────────────────────── */

.hero-float-card {
    position: absolute;
    background: rgba(15, 14, 24, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 0.82rem;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255,255,255,0.03),
        inset 0 1px 0 rgba(255,255,255,0.06);
    z-index: 5;
}

.hero-float-card.top {
    top: 10%;
    right: -2%;
    animation: float1 6s ease-in-out infinite;
}

.hero-float-card.bottom {
    bottom: 14%;
    left: -2%;
    animation: float2 7s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-12px) rotate(0.5deg); }
    66% { transform: translateY(-6px) rotate(-0.3deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-8px) rotate(-0.4deg); }
    66% { transform: translateY(-14px) rotate(0.3deg); }
}

.hero-float-card strong {
    display: block;
    font-family: var(--mono);
    color: var(--accent);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 4px;
    font-weight: 500;
}

.float-value {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.float-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ── SERVERS STRIP ──────────────────────────────────────── */

.servers {
    padding: 0 72px 100px;
}

.servers-inner {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(15, 14, 24, 0.6);
    backdrop-filter: blur(12px);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.servers-inner:hover {
    border-color: var(--border-strong);
    box-shadow: 0 0 60px rgba(var(--primary-rgb), 0.06);
}

.servers-label {
    flex-shrink: 0;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.04));
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 190px;
    position: relative;
}

.servers-label::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(var(--primary-rgb), 0.4), transparent);
}

.servers-label span {
    font-family: var(--mono);
    font-size: 0.66rem;
    color: var(--accent);
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.servers-label h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 6px;
    letter-spacing: -0.02em;
}

.servers-list {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 24px 28px;
}

.server-tag {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.25s var(--ease-spring);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.server-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(var(--primary-rgb), 0.1);
    opacity: 0;
    transition: opacity 0.25s;
}

.server-tag:hover::before { opacity: 1; }

.server-tag:hover {
    color: var(--text);
    border-color: rgba(var(--primary-rgb), 0.4);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.15);
}

/* ── SECTION COMMON ─────────────────────────────────────── */

.section {
    padding: 110px 72px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.section-head h2 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-head h2 .text-accent {
    background: linear-gradient(135deg, var(--primary-bright), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-head p {
    max-width: 380px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.section-tag {
    font-family: var(--mono);
    font-size: 0.66rem;
    color: var(--primary);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-tag::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--primary);
    display: inline-block;
}

/* ── DIVIDER ────────────────────────────────────────────── */

.section-divider {
    height: 1px;
    margin: 0 72px;
    background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
}

/* ── BENTO GRID ─────────────────────────────────────────── */

.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: all 0.4s var(--ease-smooth);
    group: true;
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.04), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
    pointer-events: none;
}

.bento-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid rgba(var(--primary-rgb), 0.35);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.bento-card:hover::before,
.bento-card:hover::after { opacity: 1; }

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(var(--primary-rgb), 0.08),
        0 0 60px rgba(var(--primary-rgb), 0.06);
}

.bento-card.span-7 { grid-column: span 7; }
.bento-card.span-5 { grid-column: span 5; }
.bento-card.span-4 { grid-column: span 4; }
.bento-card.span-8 { grid-column: span 8; }
.bento-card.span-6 { grid-column: span 6; }

.bento-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.bento-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg-card), transparent);
    z-index: 2;
}

.bento-img.tall { height: 300px; }

.bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-smooth);
}

.bento-card:hover .bento-img img {
    transform: scale(1.08);
}

.bento-body {
    padding: 26px 30px 30px;
    position: relative;
    z-index: 2;
}

.bento-num {
    font-family: var(--mono);
    font-size: 0.68rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.1em;
}

.bento-num::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.3), transparent);
}

.bento-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    transition: color 0.3s;
}

.bento-card:hover .bento-body h3 { color: var(--primary-bright); }

.bento-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.bento-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 300px;
}

.bento-card.featured .bento-img {
    height: 100%;
}

.bento-card.featured .bento-img::after { display: none; }

.bento-card.featured .bento-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ── INTERFACE BLOCK ────────────────────────────────────── */

.interface-block {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.interface-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.interface-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all 0.3s var(--ease-spring);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.interface-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 0 2px 2px 0;
}

.interface-item:hover::before { opacity: 1; }

.interface-item:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    background: var(--bg-card-hover);
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2), -4px 0 20px rgba(var(--primary-rgb), 0.1);
}

.interface-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    transition: all 0.3s var(--ease-spring);
    border: 1px solid rgba(var(--primary-rgb), 0.15);
}

.interface-item:hover .interface-icon {
    background: rgba(var(--primary-rgb), 0.2);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3);
}

.interface-item span {
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.3s;
}

.interface-item:hover span { color: var(--primary-bright); }

.interface-stage {
    position: relative;
    border-radius: var(--radius);
    border: 1px solid var(--border-strong);
    overflow: hidden;
    background: var(--bg-card);
    box-shadow:
        0 40px 80px rgba(0,0,0,0.4),
        0 0 0 1px rgba(var(--primary-rgb), 0.05),
        0 0 80px rgba(var(--primary-rgb), 0.06);
    transition: box-shadow 0.4s;
}

.interface-stage:hover {
    box-shadow:
        0 48px 100px rgba(0,0,0,0.5),
        0 0 0 1px rgba(var(--primary-rgb), 0.1),
        0 0 100px rgba(var(--primary-rgb), 0.1);
}

.interface-stage img {
    width: 100%;
    display: block;
    transition: transform 0.6s var(--ease-smooth);
}

.interface-stage:hover img { transform: scale(1.02); }

.hud-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hud-chip {
    position: absolute;
    background: rgba(7, 6, 13, 0.88);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.78rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    transition: all 0.3s var(--ease-spring);
}

.hud-chip:hover { transform: scale(1.05); }

.hud-chip.tl { top: 8%; left: 6%; animation: float1 5s ease-in-out infinite; }
.hud-chip.tr { top: 10%; right: 6%; animation: float2 6s ease-in-out infinite; }
.hud-chip.bl { bottom: 12%; left: 8%; animation: float2 5.5s ease-in-out infinite; }
.hud-chip.br { bottom: 10%; right: 8%; animation: float1 7s ease-in-out infinite; }

.hud-chip .label {
    font-family: var(--mono);
    font-size: 0.6rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 3px;
}

.hud-chip .value {
    font-weight: 700;
    color: var(--primary-bright);
    font-size: 0.9rem;
    letter-spacing: -0.02em;
}

/* ── REVIEWS ────────────────────────────────────────────── */

.reviews {
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(var(--primary-rgb), 0.05), transparent),
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(var(--primary-rgb), 0.03), transparent);
    pointer-events: none;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.review-card {
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.35s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.35s;
}

.review-card:hover::before { opacity: 1; }

.review-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.3), 0 0 40px rgba(var(--primary-rgb), 0.06);
}

.review-card.wide { grid-column: span 2; }

.review-quote {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 4rem;
    color: rgba(var(--primary-rgb), 0.08);
    font-family: Georgia, serif;
    line-height: 1;
    user-select: none;
    transition: color 0.35s;
}

.review-card:hover .review-quote { color: rgba(var(--primary-rgb), 0.15); }

.review-stars {
    display: flex;
    gap: 3px;
}

.review-stars span {
    color: var(--accent);
    font-size: 0.85rem;
    animation: starPop 0.3s var(--ease-spring) calc(var(--i) * 0.07s) both;
}

@keyframes starPop {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.review-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    flex: 1;
    transition: color 0.3s;
}

.review-card:hover p { color: var(--text); }

.review-author-block {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.review-author {
    font-family: var(--mono);
    font-size: 0.72rem;
    color: var(--text-muted);
}

.review-author strong {
    display: block;
    color: var(--text);
    font-size: 0.82rem;
    margin-bottom: 2px;
    font-family: var(--font);
    font-weight: 600;
}

/* ── FAQ ────────────────────────────────────────────────── */

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.faq-intro h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.1;
}

.faq-intro p {
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all 0.3s var(--ease-smooth);
}

.faq-item:hover {
    border-color: var(--border-strong);
}

.faq-item.faq-open {
    border-color: rgba(var(--primary-rgb), 0.35);
    box-shadow: 0 8px 32px rgba(var(--primary-rgb), 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.25s;
}

.faq-item.faq-open .faq-question { color: var(--primary-bright); }

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.35s var(--ease-spring);
    border: 1px solid rgba(var(--primary-rgb), 0.15);
}

.faq-open .faq-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--primary), var(--primary-dim));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.3);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s;
}

.faq-open .faq-answer {
    max-height: 250px;
    padding: 0 24px 22px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    padding-top: 4px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

/* ── VIDEO BAND ─────────────────────────────────────────── */

.video-band {
    padding: 80px 72px 110px;
}

.video-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-strong);
    background: #000;
    aspect-ratio: 16/9;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(var(--primary-rgb), 0.06),
        0 0 100px rgba(var(--primary-rgb), 0.08);
    transition: box-shadow 0.4s;
}

.video-frame:hover {
    box-shadow:
        0 48px 120px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(var(--primary-rgb), 0.12),
        0 0 120px rgba(var(--primary-rgb), 0.12);
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ── FOOTER ─────────────────────────────────────────────── */

.footer {
    margin: 0 72px 56px;
    padding: 36px 40px;
    background: rgba(15, 14, 24, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.4), rgba(var(--accent-rgb), 0.3), transparent);
}

.footer-brand {
    font-family: 'Pasted', var(--font);
    font-size: 1.2rem;
    letter-spacing: 0.28em;
    background: linear-gradient(135deg, var(--text), var(--primary-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.3s;
}

.footer-brand:hover { opacity: 0.8; }

.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-link {
    font-size: 1.00rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.25s;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.25s var(--ease-out);
}

.footer-link:hover { color: var(--text); }
.footer-link:hover::after { width: 100%; }

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s var(--ease-spring);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(var(--primary-rgb), 0.12);
    opacity: 0;
    transition: opacity 0.3s;
}

.social-link:hover::before { opacity: 1; }

.social-link:hover {
    color: var(--primary-bright);
    border-color: rgba(var(--primary-rgb), 0.35);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.2);
}

.footer-copy {
    width: 100%;
    padding-top: 22px;
    margin-top: 8px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 1.00rem;
    color: var(--text-dim);
}

.footer-copy a {
    color: var(--primary);
    transition: color 0.25s;
}

.footer-copy a:hover { color: var(--primary-bright); }

/* ── MODALS ─────────────────────────────────────────────── */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(7, 6, 13, 0.82);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.35s var(--ease-smooth);
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    padding: 44px;
    width: 100%;
    max-width: 440px;
    position: relative;
    transform: scale(0.94) translateY(12px);
    transition: transform 0.4s var(--ease-spring);
    box-shadow:
        0 40px 100px rgba(0,0,0,0.6),
        0 0 0 1px rgba(var(--primary-rgb), 0.06),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.5), transparent);
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-wide { max-width: 740px !important; }
.modal-narrow { max-width: 420px !important; }

.close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.25s var(--ease-spring);
    background: rgba(255,255,255,0.04);
    border: 1px solid transparent;
    line-height: 1;
}

.close:hover {
    color: var(--text);
    background: rgba(255,255,255,0.08);
    border-color: var(--border-strong);
    transform: scale(1.1) rotate(90deg);
}

.modal h2 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, var(--text), var(--primary-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    font-family: var(--mono);
    font-size: 0.66rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 9px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: inherit;
    font-size: 0.92rem;
    transition: all 0.3s var(--ease-smooth);
}

.form-group input:focus {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.04);
    box-shadow:
        0 0 0 3px rgba(var(--primary-rgb), 0.12),
        0 4px 16px rgba(0,0,0,0.2);
}

.form-group input::placeholder { color: var(--text-dim); }

button[type="submit"] {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    border: none;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), var(--primary-dim));
    color: #fff;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-spring);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(var(--primary-rgb), 0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}

button[type="submit"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-bright), var(--primary));
    opacity: 0;
    transition: opacity 0.3s;
}

button[type="submit"]:hover::before { opacity: 1; }

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(var(--primary-rgb), 0.4);
}

button[type="submit"]:active { transform: translateY(0); }

.modal > .modal-content > p {
    text-align: center;
    margin-top: 22px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.modal a { color: var(--primary); cursor: pointer; font-weight: 600; transition: color 0.2s; }
.modal a:hover { color: var(--primary-bright); }

.form-error {
    color: var(--rose);
    text-align: center;
    font-size: 0.8rem;
    margin-bottom: 12px;
    display: none;
    padding: 10px;
    background: rgba(var(--rose-rgb), 0.08);
    border: 1px solid rgba(var(--rose-rgb), 0.2);
    border-radius: var(--radius-xs);
}

.legal-text {
    max-height: 360px;
    overflow-y: auto;
    padding: 18px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.legal-text::-webkit-scrollbar { width: 4px; }
.legal-text::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 2px; }

.consent-row {
    display: flex;
    gap: 10px;
    margin: 16px 0;
    font-size: 0.78rem;
    color: var(--text-muted);
    align-items: flex-start;
}

.consent-row input {
    accent-color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.consent-label a { cursor: pointer; }

.contacts-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-card {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all 0.3s var(--ease-smooth);
}

.contact-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    background: rgba(var(--primary-rgb), 0.04);
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    transition: all 0.3s var(--ease-spring);
}

.contact-card:hover .contact-icon {
    background: rgba(var(--primary-rgb), 0.2);
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.25);
}

.contact-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
.contact-desc { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; }

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 9px;
    font-size: 0.73rem;
    font-weight: 700;
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--primary);
    border: 1px solid rgba(var(--primary-rgb), 0.25);
    cursor: pointer;
    transition: all 0.25s var(--ease-spring);
}

.contact-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.35);
}

.contact-note {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-align: center;
    padding: 12px;
}

/* ── REVEAL ANIMATIONS ──────────────────────────────────── */

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-spring);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* ── SCROLLBAR ──────────────────────────────────────────── */

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgb), 0.2);
    border-radius: 3px;
    transition: background 0.3s;
}
::-webkit-scrollbar-thumb:hover { background: rgba(var(--primary-rgb), 0.5); }

/* ── SELECTION ──────────────────────────────────────────── */

::selection {
    background: rgba(var(--primary-rgb), 0.25);
    color: var(--primary-bright);
}

/* ── GLOW EFFECTS ───────────────────────────────────────── */

.glow-primary { color: var(--primary); text-shadow: 0 0 20px var(--primary-glow); }
.glow-accent { color: var(--accent); text-shadow: 0 0 20px var(--accent-glow); }

/* ── STATUS BADGE ───────────────────────────────────────── */

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    border: 1px solid rgba(var(--accent-rgb), 0.25);
    background: rgba(var(--accent-rgb), 0.08);
    color: var(--accent);
    font-family: var(--mono);
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--accent-glow); }
    50% { opacity: 0.5; box-shadow: 0 0 3px var(--accent-glow); }
}

/* ── RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 1200px) {
    .bento-card.span-7,
    .bento-card.span-5 { grid-column: span 6; }
    .bento-card.span-4 { grid-column: span 6; }
    .bento-card.span-8 { grid-column: span 12; }
    .bento-card.span-6 { grid-column: span 6; }
}

@media (max-width: 1100px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { min-height: 55vh; padding: 40px 32px 60px; }
    .hero-left { padding: 100px 48px 40px; }

    .bento-card.span-7,
    .bento-card.span-5,
    .bento-card.span-4,
    .bento-card.span-8,
    .bento-card.span-6 { grid-column: span 12; }

    .bento-card.featured { grid-template-columns: 1fr; }
    .bento-card.featured .bento-img { height: 240px; }

    .interface-block { grid-template-columns: 1fr; gap: 40px; }
    .faq-layout { grid-template-columns: 1fr; gap: 40px; }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .review-card.wide { grid-column: span 2; }
}

@media (max-width: 768px) {
    :root { --sidebar-w: 0px; }
    .sidebar { display: none; }
    .mobile-header { display: flex; }
    .shell { margin-left: 0; padding-top: 68px; }

    .section { padding: 72px 20px; }
    .servers { padding: 0 20px 72px; }
    .video-band { padding: 60px 20px 80px; }
    .footer { margin: 0 20px 32px; padding: 24px; }

    .hero-left { padding: 36px 20px; }
    .hero-right { padding: 32px 20px 48px; }

    .servers-inner { flex-direction: column; }
    .servers-label {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .hero-metrics { grid-template-columns: 1fr 1fr; }

    .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
    .section-head p { max-width: 100%; }

    .reviews-grid { grid-template-columns: 1fr; }
    .review-card.wide { grid-column: span 1; }

    .hero-float-card.top { right: 2%; }
    .hero-float-card.bottom { left: 2%; }

    .modal-content { padding: 28px 22px; margin: 16px; }

    .section-divider { margin: 0 20px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.4rem; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .hero-metrics { grid-template-columns: 1fr 1fr; }
    .footer-links { gap: 16px; }
}

/* ── LOADING STATE ──────────────────────────────────────── */

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton {
    background: linear-gradient(90deg,
        rgba(255,255,255,0.04) 25%,
        rgba(255,255,255,0.08) 50%,
        rgba(255,255,255,0.04) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: var(--radius-xs);
}

/* ── UTILITY ────────────────────────────────────────────── */

.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.font-mono { font-family: var(--mono); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }