/* AQRUX Home — fresh v3 ember design */

:root {
    --bg-deep: #060b14;
    --accent: #2a81ff;
    --accent-bright: #3395ff;
    --cyan: #4dd8ff;
    --glow: rgba(42, 129, 255, 0.35);
    --text: #eef2f8;
    --text-muted: rgba(238, 242, 248, 0.48);
    --border: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(42, 129, 255, 0.18);
    --section-gap: 4.5rem;
    --radius: 14px;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --display: 'Bebas Neue', sans-serif;
}

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

html { scroll-behavior: smooth; }
html, body { min-height: 100vh; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.55;
    background: var(--bg-deep);
    color: var(--text);
    margin: 0;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

body, button, input, textarea, select, p, a, li, span, time, code {
    font-family: var(--font);
}

/* Typography — v3-ember: Bebas только в hero, Inter 300–500 в остальном UI */
.page-wrap h1:not(.hero-title),
.page-wrap h2,
.page-wrap h3,
.page-wrap h4,
.page-wrap strong,
.page-wrap b {
    font-family: var(--font);
}

.hero-title,
.hero-title__line,
.hero-title__accent {
    font-family: var(--display) !important;
    font-weight: 400 !important;
    font-synthesis: none;
}

.section-header h2,
.server-card-name,
.clan-name,
.home-devlog-feature__title {
    font-family: var(--font) !important;
    font-weight: 500 !important;
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
    background-clip: unset !important;
    color: rgba(238, 242, 248, 0.92);
}

/* ── Scene ── */
.scene {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.scene-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 60% at 50% 100%, rgba(42, 129, 255, 0.2), transparent 55%),
        radial-gradient(ellipse 70% 45% at 12% 72%, rgba(51, 149, 255, 0.1), transparent 50%),
        radial-gradient(ellipse 55% 38% at 88% 58%, rgba(77, 216, 255, 0.08), transparent 48%),
        linear-gradient(180deg, #060b14 0%, #090f1b 45%, #070b14 100%);
}

.scene-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background:
        radial-gradient(65vw 40vh at 10% -8%, rgba(42, 129, 255, 0.45), transparent 72%),
        radial-gradient(56vw 34vh at 88% -14%, rgba(112, 88, 255, 0.28), transparent 74%);
}

.scene-aurora {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.scene-aurora::before,
.scene-aurora::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.45;
    will-change: transform;
}

.scene-aurora::before {
    width: min(52vw, 620px);
    height: min(38vw, 420px);
    top: 8%;
    left: -8%;
    background: rgba(42, 129, 255, 0.22);
    animation: aurora-drift-a 32s ease-in-out infinite alternate;
}

.scene-aurora::after {
    width: min(44vw, 520px);
    height: min(32vw, 360px);
    top: 22%;
    right: -6%;
    background: rgba(77, 216, 255, 0.14);
    animation: aurora-drift-b 38s ease-in-out infinite alternate;
}

@keyframes aurora-drift-a {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(8vw, 6vh) scale(1.08); }
}

@keyframes aurora-drift-b {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(-6vw, 4vh) scale(1.05); }
}

.scene-grid {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse at 50% 40%, #000 25%, transparent 78%);
}

.scene-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.55) 100%);
}

.scene-fog {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 42%;
    background: linear-gradient(0deg, rgba(6, 11, 20, 0.82), transparent);
}

.scene-fog::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(42, 129, 255, 0.06), transparent 55%);
    animation: fog-pulse 18s ease-in-out infinite alternate;
}

@keyframes fog-pulse {
    from { opacity: 0.55; }
    to { opacity: 1; }
}

/* ── Particles ── */
.particles {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle-ember {
    position: absolute;
    bottom: -12px;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 5px rgba(51, 149, 255, 0.55), 0 0 12px rgba(77, 216, 255, 0.25);
    opacity: 0;
    animation: ember-rise linear infinite;
    will-change: transform, opacity;
}

.particle-ember--soft {
    width: 1px;
    height: 1px;
    box-shadow: 0 0 4px rgba(77, 216, 255, 0.35);
}

@keyframes ember-rise {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    8% { opacity: var(--peak); }
    88% { opacity: calc(var(--peak) * 0.4); }
    100% { transform: translateY(-108vh) translateX(var(--drift)); opacity: 0; }
}

/* ── Layout ── */
.page-wrap {
    position: relative;
    z-index: 2;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    padding-bottom: 2rem;
}

.site-container {
    width: min(1040px, 94vw);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}

/* ── Nav ── */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    margin: 0;
    width: 100%;
}

.site-nav__bar {
    position: relative;
    background: rgba(6, 11, 20, 0.76);
    backdrop-filter: blur(18px) saturate(1.15);
    border-bottom: 1px solid var(--border);
    transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.site-nav.is-scrolled .site-nav__bar {
    background: rgba(6, 11, 20, 0.92);
    border-bottom-color: var(--border-accent);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
}

.site-nav__bar::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(42, 129, 255, 0.22) 18%,
        rgba(77, 216, 255, 0.35) 50%,
        rgba(42, 129, 255, 0.22) 82%,
        transparent
    );
    opacity: 0.85;
    pointer-events: none;
}

.site-nav__bar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(42, 129, 255, 0.28), transparent);
    opacity: 0.55;
    pointer-events: none;
}

.site-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 3.5rem;
    padding: 0.65rem 0;
}

.site-nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
    max-width: min(100%, 240px);
    text-decoration: none;
    color: #fff;
    transition: opacity 0.2s;
}

.site-nav__brand:hover {
    opacity: 0.92;
}

.site-nav__logo {
    display: block;
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    object-fit: contain;
    border-radius: 8px;
}

.site-nav__brand-name {
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-nav__actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
}

.site-nav__online {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    margin: 0;
    padding: 0.42rem 0.72rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    font-size: 0.72rem;
    font-weight: 400;
    color: rgba(238, 242, 248, 0.55);
}

.site-nav__online-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3dff8a;
    box-shadow: 0 0 8px rgba(61, 255, 138, 0.45);
}

.site-nav__online-label {
    color: rgba(238, 242, 248, 0.45);
}

.site-nav__online strong {
    font-weight: 600;
    color: rgba(238, 242, 248, 0.9);
    font-variant-numeric: tabular-nums;
}

.site-nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.48rem 0.95rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(238, 242, 248, 0.82);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.site-nav__cta i {
    font-size: 0.72rem;
    color: rgba(77, 216, 255, 0.55);
    transition: color 0.2s;
}

.site-nav__cta:hover {
    color: #fff;
    border-color: var(--border-accent);
    background: rgba(42, 129, 255, 0.1);
    box-shadow: 0 0 20px rgba(42, 129, 255, 0.12);
}

.site-nav__cta:hover i {
    color: rgba(77, 216, 255, 0.85);
}

main.page-content {
    padding: 0 0 3rem;
}

/* ── Hero ── */
.hero-section {
    position: relative;
    padding: 4.5rem 0 3.5rem;
    margin: 0 0 0;
    text-align: center;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(520px, 100%);
    margin: 0 auto;
    text-align: center !important;
    animation: hero-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-fade-up {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0 0 1.5rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(77, 216, 255, 0.65);
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: "";
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(42, 129, 255, 0.5));
    opacity: 1;
}

.hero-eyebrow::after {
    background: linear-gradient(90deg, rgba(42, 129, 255, 0.45), transparent);
}

.hero-title {
    font-family: var(--display) !important;
    font-size: clamp(3.5rem, 14vw, 6rem);
    font-weight: 400 !important;
    letter-spacing: 0.06em;
    line-height: 0.95;
    margin: 0 0 1rem !important;
    color: #fff;
    text-shadow:
        0 2px 40px var(--glow),
        0 0 80px rgba(42, 129, 255, 0.15);
    background: none !important;
    -webkit-text-fill-color: #fff !important;
    background-clip: unset !important;
}

.hero-title__line {
    display: block;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.hero-title__accent {
    display: block;
    font-size: 0.45em;
    letter-spacing: 0.35em;
    margin-top: 0.15em;
    color: var(--accent-bright);
    -webkit-text-fill-color: var(--accent-bright) !important;
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(238, 242, 248, 0.5) !important;
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto 1.75rem !important;
}

.hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 0 2rem;
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(238, 242, 248, 0.55);
}

.hero-meta strong {
    color: rgba(238, 242, 248, 0.9);
    font-weight: 600;
}

.hero-online-dot {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3dff8a;
    box-shadow: 0 0 8px rgba(61, 255, 138, 0.5);
    animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.45; }
}

.social-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    text-decoration: none;
    color: rgba(238, 242, 248, 0.55);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}

.social-link i {
    font-size: 1.05rem;
}

.social-link:hover {
    color: #fff;
    border-color: var(--border-accent);
    background: rgba(42, 129, 255, 0.08);
    transform: translateY(-2px);
}

.social-link.vk:hover { color: #6eb5ff; }
.social-link.tg:hover { color: #4dd0ff; }
.social-link.discord:hover { color: #8b9dff; }
.social-link.tiktok:hover { color: #ff4d8a; }
.social-link.store:hover { color: var(--accent-bright); }

/* ── Features ── */
.features-min {
    padding: 0 0 3.5rem;
    margin-bottom: var(--section-gap);
    border-bottom: 1px solid var(--border);
}

.features-min__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2rem;
    text-align: center;
}

.features-min__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.features-min__label {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: rgba(77, 216, 255, 0.32);
}

.features-min__item strong {
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(238, 242, 248, 0.88);
}

.features-min__item p {
    margin: 0;
    max-width: 220px;
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ── Section headers ── */
.section-header {
    margin-bottom: 2rem;
    text-align: left;
}

.section-eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(77, 216, 255, 0.45);
}

.section-header h2 {
    font-family: var(--font) !important;
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    font-weight: 500 !important;
    letter-spacing: -0.015em;
    color: #fff;
    margin: 0 0 0.3rem;
    background: none !important;
    -webkit-text-fill-color: #fff !important;
}

.section-header p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-muted);
    margin: 0;
}

.servers-section,
.clans-section,
.home-devlog-section {
    margin-bottom: var(--section-gap);
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.85rem;
}

.server-card {
    padding: 1.15rem 1.2rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    transition: border-color 0.25s, background 0.25s;
}

.server-card:hover {
    transform: none;
    border-color: var(--border-accent);
    background: rgba(42, 129, 255, 0.04);
    box-shadow: none;
}

.server-card-name {
    font-size: 0.92rem;
    font-weight: 500 !important;
    letter-spacing: 0.01em;
}

/* Promo banner */
.promo-banner-wrap {
    margin-bottom: 1.25rem;
}

.promo-banner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 0.85rem 1rem;
    padding: 0.9rem 1.1rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    box-shadow: none;
}

.promo-banner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(42, 129, 255, 0.08);
    border: 1px solid var(--border-accent);
    color: rgba(77, 216, 255, 0.65);
    font-size: 1.05rem;
    flex-shrink: 0;
}

.promo-banner-copy {
    min-width: 0;
}

.promo-banner-title {
    font-weight: 500;
    font-size: 0.92rem;
    color: rgba(238, 242, 248, 0.92);
    margin: 0 0 0.15rem;
    line-height: 1.3;
}

.promo-banner-sub {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.45;
}

.promo-code {
    display: inline-block;
    margin: 0;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.45rem 0.75rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(238, 242, 248, 0.88);
    border: 1px dashed var(--border-accent);
    font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
    white-space: nowrap;
    line-height: 1.25;
}

.promo-copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: rgba(238, 242, 248, 0.75);
    padding: 0.45rem 0.85rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.25;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.promo-copy-btn:hover {
    background: rgba(42, 129, 255, 0.08);
    border-color: var(--border-accent);
    color: #fff;
}

@media (max-width: 760px) {
    .promo-banner {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .promo-code,
    .promo-copy-btn {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .promo-copy-btn {
        width: auto;
    }
}

/* Connect widget in server cards */
.server-card-connect {
    margin-top: 0.65rem;
    padding: 0.75rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    box-shadow: none;
}

.server-card-connect-head {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    color: rgba(77, 216, 255, 0.45);
    margin-bottom: 0.45rem;
}

.server-card-connect-head i {
    color: rgba(77, 216, 255, 0.4);
    opacity: 1;
}

.server-card-connect-code {
    font-size: 0.68rem;
    color: rgba(238, 242, 248, 0.72);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.42rem 0.55rem;
}

.server-card-copy-connect {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: rgba(238, 242, 248, 0.75);
    border-radius: 8px;
    padding: 0.42rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 500;
    box-shadow: none;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.server-card-copy-connect:hover {
    background: rgba(42, 129, 255, 0.08);
    border-color: var(--border-accent);
    color: #fff;
    transform: none;
    box-shadow: none;
}

.server-card-copy-connect:active {
    transform: none;
}

.server-card-copy-connect.copied-flash {
    border-color: rgba(61, 255, 138, 0.35);
    color: rgba(200, 255, 216, 0.95);
    background: rgba(61, 255, 138, 0.08);
    box-shadow: none;
}

/* Wipe dates in server cards */
.server-card-wipes {
    margin-top: 0.65rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.server-card-wipes-title {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    color: rgba(77, 216, 255, 0.45);
    margin-bottom: 0.45rem;
}

.server-card-wipes-title i {
    color: rgba(77, 216, 255, 0.4);
    font-size: 0.72rem;
    opacity: 1;
}

.server-card-wipe-row {
    font-size: 0.8rem;
    color: rgba(238, 242, 248, 0.72);
}

.wipe-mini-pill {
    padding: 0.2rem 0.55rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: rgba(238, 242, 248, 0.82);
    font-weight: 500;
    font-size: 0.76rem;
}

.wipe-mini-label {
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 300;
}

.clans-section {
    padding: 1.75rem 1.25rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
}

.clan-card {
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    height: 100%;
}

.clan-name {
    background: none !important;
    -webkit-text-fill-color: rgba(238, 242, 248, 0.92) !important;
    color: rgba(238, 242, 248, 0.92);
    font-weight: 500 !important;
}

/* Clans carousel — seamless infinite loop */
.clans-carousel-wrapper {
    overflow: hidden;
}

.clans-carousel {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 0.75rem !important;
    padding: 0.35rem 0 !important;
    animation: none;
    will-change: transform;
}

.carousel-slide {
    flex-shrink: 0;
    width: 280px !important;
    margin: 0 !important;
    transition: none;
}

.carousel-track.carousel-track--ready {
    animation: clan-carousel-scroll var(--carousel-duration, 40s) linear infinite;
}

@keyframes clan-carousel-scroll {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(calc(-1 * var(--carousel-loop, 0px)), 0, 0); }
}

.clans-carousel-wrapper:hover .carousel-track.carousel-track--ready {
    animation-play-state: paused;
}

/* Marquee */
.marquee-content span::before,
.marquee-content span::after {
    content: none;
    margin: 0;
}

.marquee-wrapper { margin-bottom: 3rem; }

.marquee-container {
    background: rgba(10, 16, 30, 0.55);
    border-color: var(--border);
}

.marquee-container::before { background: linear-gradient(90deg, rgba(6,11,20,1), transparent); }
.marquee-container::after { background: linear-gradient(270deg, rgba(6,11,20,1), transparent); }

/* Devlog */
.home-devlog-section .site-container { padding: 0; }

.home-devlog-section__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(77, 216, 255, 0.6);
}

.home-devlog-feature {
    border-radius: var(--radius-lg);
    border-color: var(--border);
    background: rgba(10, 16, 30, 0.55);
}

.home-devlog-feature__title { color: #fff; }

/* Footer nav — ссылки вместо нижних вкладок */
.site-footer {
    text-align: center;
    padding: 2rem 1rem 1.25rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--border);
}

.site-footer p {
    margin: 0;
    color: rgba(238, 242, 248, 0.28);
    font-size: 0.8rem;
}

/* Боковая HUD-навигация (desktop) */
.site-rail {
    position: fixed;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 150;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.4rem;
    border-radius: 12px;
    background: rgba(6, 11, 20, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    box-shadow: none;
}

.site-rail__link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    text-decoration: none;
    color: rgba(238, 242, 248, 0.45);
    transition: color 0.2s, background 0.2s;
}

.site-rail__link i {
    font-size: 0.88rem;
}

.site-rail__link::before {
    content: attr(data-tip);
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%) translateX(-4px);
    padding: 0.3rem 0.55rem;
    border-radius: 6px;
    background: rgba(8, 12, 22, 0.95);
    border: 1px solid var(--border);
    color: rgba(238, 242, 248, 0.9);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s, transform 0.18s;
}

.site-rail__link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    transform: none;
}

.site-rail__link:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.site-rail__link--accent {
    color: rgba(51, 149, 255, 0.85);
}

.site-rail__link--accent:hover {
    background: rgba(42, 129, 255, 0.1);
}

.preview-banner {
    background: rgba(42, 129, 255, 0.08);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.65rem 1rem;
    font-size: 0.82rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-muted);
}

.preview-banner code { color: var(--cyan); }

.text-muted { color: var(--text-muted); }
.small { font-size: 0.85rem; }
.ms-1 { margin-left: 0.25rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .site-rail { display: none; }
    .hero-content { width: 100%; }
    .features-min__grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    .features-min__item p { max-width: none; }
}

@media (max-width: 600px) {
    :root { --section-gap: 3rem; }
    .site-nav__inner {
        min-height: 3rem;
        padding: 0.55rem 0;
    }
    .site-nav__logo {
        width: 2rem;
        height: 2rem;
    }

    .site-nav__brand-name { font-size: 0.84rem; }
    .site-nav__cta {
        padding: 0.42rem 0.72rem;
        font-size: 0.74rem;
    }
    .site-nav__online-label { display: none; }
    .site-nav__cta span { display: none; }
    .hero-section { padding: 2.5rem 0 2rem; }
    .hero-title { font-size: clamp(2.85rem, 14vw, 4.25rem); }
    .social-link { width: 2.5rem; height: 2.5rem; }
}
