*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --bg: #030303;
    --bg-light: #080808;
    --surface: #0c0c0c;
    --surface-light: #141414;
    --surface-hover: #1a1a1a;
    --border: rgba(255, 255, 255, 0.05);
    --border-light: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.15);
    --text: #fff;
    --text-muted: #999;
    --text-dim: #555;
    --glow: rgba(255, 255, 255, 0.03);
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
* {
    scrollbar-width: thin;
    scrollbar-color: #3b82f6 #0a0a0a;
}
body {
    font-family:
        Inter,
        -apple-system,
        sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    z-index: -1;
    opacity: 0.3;
}
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}
.grid-bg {
    position: fixed;
    inset: 0;
    background-image:
        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: 40px 40px;
    pointer-events: none;
    z-index: 0;
    -webkit-mask-image: radial-gradient(
        ellipse 50% 70% at 50% 50%,
        black 30%,
        transparent 80%
    );
    mask-image: radial-gradient(
        ellipse 50% 70% at 50% 50%,
        black 30%,
        transparent 80%
    );
}
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 1000px;
    padding: 12px 24px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.navbar.scrolled {
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.3px;
}
.nav-logo img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.nav-center {
    display: flex;
    gap: 12px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.nav-center a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 8px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-center a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: currentColor;
    display: block;
    fill: none;
}
.nav-center a:hover {
    color: #fff;
    background: #3b82f6;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}
.lang-switch {
    display: flex;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 4px;
    position: relative;
}
.lang-option {
    background: 0 0;
    border: none;
    color: var(--text-muted);
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}
.lang-option.active {
    color: #000;
}
.lang-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: #fff;
    border-radius: 6px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.lang-switch[data-lang="pt"] .lang-slider {
    transform: translateX(100%);
}
.nav-btn {
    background: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}
.nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 100px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.04) 0,
        rgba(255, 255, 255, 0.01) 40%,
        transparent 70%
    );
    pointer-events: none;
}
.hero-glow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.06) 0,
        transparent 60%
    );
    filter: blur(40px);
}
.hero-content {
    max-width: 920px;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}
.badge-new {
    background: #fff;
    color: #000;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.9);
    }
}
.hero-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 28px;
}
.hero-title-logo {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 255, 255, 0.05);
}
.hero-title {
    max-width: 920px;
    margin: 0 auto;
    font-size: clamp(44px, 7vw, 82px);
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 1.05;
}
.hero-client {
    display: inline;
    background: linear-gradient(
        135deg,
        #60a5fa 0,
        #3b82f6 30%,
        #fff 70%,
        #fff 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.hero-desc {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
}
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary {
    background: #fff;
    color: #000;
    box-shadow:
        0 4px 24px rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 0;
    background: #3b82f6;
    border-radius: 50% 50% 0 0;
    transition: height 0.4s ease;
    z-index: 0;
}
.btn-primary:hover::before {
    height: 150%;
}
.btn-primary:hover {
    box-shadow:
        0 8px 32px rgba(255, 255, 255, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    color: #fff;
}
.btn-primary svg,
.btn-primary span {
    position: relative;
    z-index: 1;
}
.btn-primary svg {
    width: 18px;
    height: 18px;
    animation: none !important;
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}
.btn-secondary svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}
.btn-secondary:hover svg {
    transform: translate(3px, -3px);
}
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 24px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: fit-content;
    margin: 0 auto;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -1px;
}
.stat-label {
    font-size: 12px;
    color: var(--text-dim);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}
.features {
    padding: 140px 0;
    position: relative;
    z-index: 1;
}
.section-header {
    text-align: center;
    margin-bottom: 72px;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    cursor: default;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.section-tag::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 0;
    background: #3b82f6;
    border-radius: 50% 50% 0 0;
    transition: height 0.4s ease;
    z-index: 0;
}
.section-tag:hover::before {
    height: 150%;
}
.section-tag svg {
    width: 14px;
    height: 14px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}
.section-tag span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}
.section-tag:hover {
    border-color: #3b82f6;
    color: #fff;
}
.section-tag:hover span,
.section-tag:hover svg {
    color: #fff;
}
.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -1px;
}
.section-desc {
    color: var(--text-muted);
    font-size: 16px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
}
.feature-card:hover {
    border-color: var(--border-light);
    background: var(--surface-light);
}
.card-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s;
}
.card-icon svg {
    width: 26px;
    height: 26px;
    color: var(--text);
}
.feature-card:hover .card-icon {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}
.feature-card:hover .card-icon svg {
    color: #000;
}
.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}
.card-footer {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.card-stat {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -1px;
}
.card-label {
    font-size: 12px;
    color: var(--text-dim);
    font-weight: 500;
}
.download {
    padding: 140px 0;
    position: relative;
    z-index: 1;
}
.download-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.download-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
}
.download-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -1px;
}
.download-content > p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.7;
}
.download-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.dl-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--surface-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
}
.dl-btn svg {
    width: 22px;
    height: 22px;
}
.dl-btn:hover {
    border-color: var(--border-light);
    background: var(--surface-hover);
}
.dl-btn.primary {
    background: #fff;
    color: #000;
    border-color: #fff;
    padding: 12px 24px;
    position: relative;
    overflow: hidden;
}
.dl-btn.primary::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 0;
    background: #3b82f6;
    border-radius: 50% 50% 0 0;
    transition: height 0.4s ease;
    z-index: 0;
}
.dl-btn.primary:hover::before {
    height: 150%;
}
.dl-btn.primary:hover {
    color: #fff;
}
.dl-btn.primary svg,
.dl-btn.primary .dl-info {
    position: relative;
    z-index: 1;
}
.dl-info {
    display: flex;
    flex-direction: column;
}
.dl-label {
    font-size: 11px;
    opacity: 0.7;
    font-weight: 500;
}
.dl-platform {
    font-size: 15px;
    font-weight: 700;
}
.download-requirements h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.req-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.req-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 14px;
    font-size: 14px;
    color: var(--text-muted);
    transition: all 0.2s;
}
.req-item:hover {
    border-color: var(--border-light);
}
.req-item svg {
    width: 20px;
    height: 20px;
    color: var(--text-dim);
}
.beta {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}
.beta-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.beta-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
}
.beta-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 150px;
    background: radial-gradient(
        ellipse at center top,
        rgba(59, 130, 246, 0.15) 0,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}
.beta-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}
.beta-icon svg {
    width: 36px;
    height: 36px;
    color: #fff;
}
.beta-card h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -1px;
}
.beta-card > p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.8;
}
.beta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #000;
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}
.beta-btn svg {
    width: 22px;
    height: 22px;
}
.beta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}
.about {
    padding: 140px 0;
    position: relative;
    z-index: 1;
}
.about-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.about-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -1px;
}
.about-content > p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 40px;
}
.about-features {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.about-item {
    padding: 14px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}
.about-item:hover {
    border-color: var(--border-light);
    background: var(--surface-light);
}
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
}
.footer-brand img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}
.footer-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
}
.footer-community-section h4,
.footer-links-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
}
.footer-links-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links-section a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-links-section a:hover {
    color: var(--text);
}
.footer-discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: 0 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}
.footer-discord-btn svg:first-child {
    width: 18px;
    height: 18px;
}
.footer-discord-btn .external-icon {
    width: 14px;
    height: 14px;
    opacity: 0.5;
}
.footer-discord-btn:hover {
    border-color: var(--border-light);
    color: var(--text);
    background: rgba(255, 255, 255, 0.02);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    color: #fff;
    font-size: 13px;
}
.footer-made {
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-made .heart {
    color: #ef4444;
}
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.modal.active {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 56px;
    max-width: 440px;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s;
    position: relative;
}
.modal-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
}
.modal.active .modal-content {
    transform: scale(1);
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--surface-light);
    border: 1px solid var(--border);
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-close:hover {
    color: var(--text);
    border-color: var(--border-light);
}
.modal-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.modal-icon svg {
    width: 36px;
    height: 36px;
    color: var(--text);
}
.modal-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.modal-content p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
}
.modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #000;
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}
.modal-btn svg {
    width: 22px;
    height: 22px;
}
.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .download-card {
        grid-template-columns: 1fr;
    }
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-brand-section {
        grid-column: 1/-1;
    }
}
@media (max-width: 768px) {
    .navbar {
        top: 12px;
        width: calc(100% - 24px);
        padding: 12px 16px;
    }
    .nav-center {
        display: none;
    }
    .hero {
        padding: 140px 20px 80px;
    }
    .hero-title {
        font-size: clamp(34px, 10vw, 48px);
        letter-spacing: -1.5px;
        line-height: 1.08;
    }
    .hero-title-wrapper {
        flex-direction: column;
        gap: 16px;
    }
    .hero-title-logo {
        width: 80px;
        height: 80px;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 48px;
    }
    .btn-primary,
    .btn-secondary {
        justify-content: center;
        width: 100%;
    }
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 24px 32px;
    }
    .hero-stat-divider {
        width: 60px;
        height: 1px;
    }
    .about,
    .download,
    .features {
        padding: 100px 0;
    }
    .download-card {
        padding: 36px 24px;
    }
    .download-buttons {
        flex-direction: column;
    }
    .dl-btn {
        justify-content: center;
    }
    .section-title {
        font-size: 32px;
    }
    .beta-card h2 {
        font-size: 28px;
    }
    .about-features {
        flex-direction: column;
        align-items: center;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .footer-brand {
        justify-content: center;
    }
    .footer-desc {
        margin: 0 auto;
    }
    .footer-links-section {
        align-items: center;
    }
    .footer-community-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .beta-card {
        padding: 40px 24px;
    }
    .modal-content {
        margin: 20px;
        padding: 40px 24px;
    }
}
.beta-announcement {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    z-index: 2000;
    padding: 12px 24px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    animation: slideDown 0.5s ease;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
.announcement-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}
.announcement-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    flex-shrink: 0;
}
.announcement-icon svg {
    width: 18px;
    height: 18px;
    color: #fff;
    animation: pulse 2s infinite;
}
.announcement-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}
.announcement-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
}
.announcement-countdown-wrapper {
    display: inline-flex;
}
.announcement-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
}
.countdown-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
    color: #fff;
    display: inline-block;
}
.announcement-btn {
    background: #fff;
    color: #2563eb;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    white-space: nowrap;
}
.announcement-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}
.announcement-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}
.announcement-close:hover {
    background: rgba(255, 255, 255, 0.25);
}
.beta-announcement.hidden {
    animation: slideUp 0.3s ease forwards;
}
@keyframes slideUp {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-100%);
    }
}
body:has(.beta-announcement:not(.hidden)) .navbar {
    top: 72px;
}
@media (max-width: 768px) {
    .beta-announcement {
        padding: 10px 16px;
    }
    .announcement-content {
        gap: 8px;
    }
    .announcement-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    .announcement-desc {
        display: none;
    }
    .announcement-btn {
        padding: 6px 16px;
        font-size: 12px;
    }
    body:has(.beta-announcement:not(.hidden)) .navbar {
        top: 64px;
    }
}
.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}
.snowflake {
    position: absolute;
    top: -10%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1em;
    user-select: none;
    animation: fall linear infinite;
}
.snowflake:nth-child(1) {
    left: 10%;
    animation-duration: 10s;
    animation-delay: 0s;
    font-size: 1.2em;
}
.snowflake:nth-child(2) {
    left: 20%;
    animation-duration: 12s;
    animation-delay: 1s;
    font-size: 0.8em;
}
.snowflake:nth-child(3) {
    left: 30%;
    animation-duration: 8s;
    animation-delay: 2s;
    font-size: 1em;
}
.snowflake:nth-child(4) {
    left: 40%;
    animation-duration: 14s;
    animation-delay: 0.5s;
    font-size: 1.5em;
}
.snowflake:nth-child(5) {
    left: 50%;
    animation-duration: 11s;
    animation-delay: 1.5s;
    font-size: 0.9em;
}
.snowflake:nth-child(6) {
    left: 60%;
    animation-duration: 9s;
    animation-delay: 3s;
    font-size: 1.3em;
}
.snowflake:nth-child(7) {
    left: 70%;
    animation-duration: 13s;
    animation-delay: 0s;
    font-size: 1.1em;
}
.snowflake:nth-child(8) {
    left: 80%;
    animation-duration: 10s;
    animation-delay: 2.5s;
    font-size: 0.7em;
}
.snowflake:nth-child(9) {
    left: 90%;
    animation-duration: 15s;
    animation-delay: 1s;
    font-size: 1.4em;
}
.snowflake:nth-child(10) {
    left: 15%;
    animation-duration: 11s;
    animation-delay: 0s;
    font-size: 0.9em;
}
.snowflake:nth-child(11) {
    left: 85%;
    animation-duration: 12s;
    animation-delay: 1.5s;
    font-size: 1.2em;
}
.snowflake:nth-child(12) {
    left: 25%;
    animation-duration: 9s;
    animation-delay: 3s;
    font-size: 1em;
}
@keyframes fall {
    0% {
        top: -10%;
        opacity: 1;
    }
    100% {
        top: 110%;
        opacity: 0.3;
    }
}
.windows-icon {
    width: 32px !important;
    height: 32px !important;
}
.dl-btn-windows {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background-image: url("/windows-bg.png");
    background-size: cover;
    background-position: center;
    min-height: 120px;
    width: 100%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.dl-btn-windows::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}
.dl-btn-windows:hover::before {
    background: rgba(0, 0, 0, 0.1);
}
.dl-btn-windows:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.dl-btn-windows .dl-info {
    z-index: 1;
    position: relative;
    text-align: right;
}
.dl-btn-windows .dl-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    display: block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.dl-btn-windows .dl-platform {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    display: block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Minimal dark polish */
:root {
    --surface: #070707;
    --surface-light: #0b0b0b;
    --surface-hover: #101010;
    --border: rgba(255, 255, 255, 0.04);
    --border-light: rgba(255, 255, 255, 0.09);
}
body::before {
    opacity: 0.22;
    filter: blur(10px) brightness(0.6);
}
.navbar {
    max-width: 1080px;
    background: rgba(4, 4, 4, 0.78);
    border-color: rgba(255, 255, 255, 0.06);
}
.nav-center {
    gap: 6px;
}
.nav-center a:hover,
.nav-center a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}
.nav-logo img,
.footer-brand img {
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}
.hero-title-logo {
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}
.feature-card,
.download-card,
.beta-card,
.hero-stats,
.modal-content,
.status-card {
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.82),
        rgba(4, 4, 4, 0.9)
    );
    border: 1px solid rgba(255, 255, 255, 0.055);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(18px);
}
.feature-card,
.download-card,
.beta-card {
    border-radius: 18px;
}
.feature-card {
    padding: 30px;
}
.feature-card:hover {
    background: linear-gradient(
        180deg,
        rgba(13, 13, 13, 0.9),
        rgba(6, 6, 6, 0.96)
    );
    border-color: rgba(255, 255, 255, 0.11);
}
.card-icon,
.beta-icon {
    background: #090909;
    border-color: rgba(255, 255, 255, 0.06);
    border-radius: 14px;
}
.section-tag {
    background: rgba(8, 8, 8, 0.78);
    border-color: rgba(255, 255, 255, 0.06);
}
.btn-primary,
.nav-btn,
.beta-btn,
.modal-btn {
    background: #f4f4f4;
    color: #030303;
    box-shadow: none;
}
.btn-primary::before,
.dl-btn.primary::before,
.section-tag::before {
    background: #1f1f1f;
}
.nav-btn:hover {
    box-shadow: none;
    background: #fff;
}
.simple-page {
    min-height: 100vh;
}
.status-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 24px 80px;
    position: relative;
    z-index: 1;
}
.status-shell {
    width: min(720px, 100%);
    text-align: center;
}
.status-kicker {
    display: inline-flex;
    padding: 8px 14px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}
.status-shell h1 {
    font-size: clamp(42px, 8vw, 78px);
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 18px;
}
.status-shell p {
    color: var(--text-muted);
    font-size: 16px;
    margin: 0 auto 34px;
    max-width: 460px;
}
.status-card {
    border-radius: 22px;
    padding: 12px;
}
.status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    color: var(--text-muted);
    font-size: 14px;
}
.status-row:last-child {
    border-bottom: 0;
}
.status-row strong {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #7cffaa;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.status-row i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7cffaa;
    box-shadow: 0 0 18px rgba(124, 255, 170, 0.65);
}
.support-number {
    font-size: clamp(72px, 16vw, 140px);
    font-weight: 800;
    letter-spacing: -8px;
    line-height: 1;
    color: #fff;
}
.support-caption {
    display: block;
    color: var(--text-muted);
    margin: 12px 0 28px;
}
.support-link {
    display: inline-flex;
    padding: 14px 24px;
    border-radius: 12px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}
.support-link:hover {
    background: #e8e8e8;
}
@media (max-width: 768px) {
    .status-card {
        padding: 6px;
    }
    .status-row {
        padding: 17px 16px;
    }
    .support-number {
        letter-spacing: -5px;
    }
    .nav-right .nav-btn {
        display: none;
    }
}

/* Fixes: blue hover, lighter background and visible logo */
body::before {
    opacity: 0.34 !important;
    filter: blur(6px) brightness(0.82) !important;
}
.nav-logo img,
.footer-brand img {
    width: 44px !important;
    height: 44px !important;
    object-fit: contain !important;
    border-radius: 0 !important;
    filter: drop-shadow(0 0 12px rgba(96, 165, 250, 0.3));
}
.hero-title-logo {
    width: 116px !important;
    height: 116px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 0 22px rgba(96, 165, 250, 0.32));
}
.nav-center a:hover,
.nav-center a.active {
    color: #fff !important;
    background: #3b82f6 !important;
}
.nav-center a svg {
    stroke-width: 2.2;
}
.nav-center a:hover svg,
.nav-center a.active svg {
    stroke: #fff;
}
.btn-primary::before,
.dl-btn.primary::before,
.section-tag::before {
    background: #3b82f6 !important;
}
.btn-primary:hover,
.section-tag:hover {
    border-color: #3b82f6 !important;
}
.nav-btn:hover,
.support-link:hover {
    background: #3b82f6 !important;
    color: #fff !important;
}
.feature-card:hover .card-icon {
    background: #3b82f6 !important;
    border-color: #3b82f6 !important;
}
.feature-card:hover .card-icon svg {
    color: #fff !important;
}

.support-link {
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

/* Refined status/support pages */
.premium-status-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 50% 22%,
            rgba(59, 130, 246, 0.18),
            transparent 34%
        ),
        radial-gradient(
            circle at 18% 70%,
            rgba(255, 255, 255, 0.06),
            transparent 24%
        );
    pointer-events: none;
    animation: softReveal 0.8s ease both;
}
.premium-status-shell {
    animation: pageRise 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.premium-status-shell h1,
.premium-support-shell h1 {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.status-overview {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0 auto 28px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(18px);
    animation: pageRise 0.75s 0.08s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.status-overview strong {
    display: block;
    text-align: left;
    font-size: 14px;
    color: #fff;
}
.status-overview small {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
}
.status-orb {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(42, 211, 111, 0.12);
    box-shadow: 0 0 30px rgba(42, 211, 111, 0.22);
}
.status-orb span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #39ff88;
    box-shadow:
        0 0 0 7px rgba(57, 255, 136, 0.12),
        0 0 22px rgba(57, 255, 136, 0.65);
    animation: statusPulse 1.9s ease-in-out infinite;
}
.refined-status-card {
    padding: 8px;
    border-radius: 26px;
    background: linear-gradient(
        180deg,
        rgba(14, 18, 24, 0.84),
        rgba(5, 7, 10, 0.9)
    );
    border-color: rgba(255, 255, 255, 0.075);
    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: pageRise 0.85s 0.15s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.refined-status-card .status-row {
    position: relative;
    margin: 6px;
    padding: 18px 20px;
    border: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
    overflow: hidden;
}
.refined-status-card .status-row::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(59, 130, 246, 0.45),
        transparent
    );
    opacity: 0.45;
}
.refined-status-card .status-row:last-child::after {
    display: none;
}
.refined-status-card .status-row span {
    font-weight: 600;
    color: #e8edf7;
}
.refined-status-card .status-row strong {
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(57, 255, 136, 0.09);
    color: #7cffaa;
    text-transform: none;
    letter-spacing: 0.2px;
}
.refined-status-card .status-row i {
    width: 7px;
    height: 7px;
    animation: statusPulse 1.9s ease-in-out infinite;
}
.support-panel {
    padding: 30px;
}
.premium-support-shell .support-caption {
    font-size: 14px;
    color: #b6bdc8;
}
.premium-support-shell .support-link {
    margin-top: 2px;
    box-shadow: 0 12px 34px rgba(59, 130, 246, 0.22);
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}
.premium-support-shell .support-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(59, 130, 246, 0.34);
}
@keyframes pageRise {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@keyframes softReveal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes statusPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(0.75);
        opacity: 0.58;
    }
}

/* Support page premium card */
.pro-support-panel {
    position: relative;
    overflow: hidden;
    padding: 38px 32px 34px !important;
    isolation: isolate;
}
.pro-support-panel::before {
    content: "";
    position: absolute;
    inset: -1px;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(59, 130, 246, 0.32),
            transparent 38%
        ),
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%);
    opacity: 0.85;
    z-index: -1;
}
.pro-support-panel::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    top: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.72),
        transparent
    );
    opacity: 0.45;
}
.support-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(57, 255, 136, 0.08);
    border: 1px solid rgba(57, 255, 136, 0.18);
    color: #baffd0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.support-live-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #39ff88;
    box-shadow:
        0 0 0 6px rgba(57, 255, 136, 0.1),
        0 0 18px rgba(57, 255, 136, 0.7);
    animation: statusPulse 1.8s ease-in-out infinite;
}
.pro-support-panel .support-number {
    background: linear-gradient(180deg, #fff 0%, #b8d4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 16px 50px rgba(59, 130, 246, 0.16);
}
.pro-support-panel .support-caption {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}
.pro-support-panel .support-link {
    min-width: 180px;
    justify-content: center;
}
.support-microcopy {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
}

/* Navbar menu */
.nav-inner {
    justify-content: flex-start;
    gap: 28px;
    transition: gap 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.navbar:not(.scrolled) .nav-inner {
    gap: 0;
}

.nav-logo {
    width: 38px;
    overflow: hidden;
    flex-shrink: 0;
    transition:
        width 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        opacity 0.35s ease,
        transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.navbar:not(.scrolled) .nav-logo {
    width: 0;
    opacity: 0;
    transform: translateX(-16px);
    pointer-events: none;
}

.nav-logo span,
.nav-center {
    display: none !important;
}

.nav-logo img {
    width: 38px !important;
    height: 38px !important;
}

.nav-menu {
    position: relative;
    display: flex;
    align-items: center;
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 0;
    color: var(--text-muted);
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 10px;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.nav-menu:hover .nav-menu-toggle,
.nav-menu:focus-within .nav-menu-toggle {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.nav-menu-icon {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
}

.nav-menu-icon span {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
}

.nav-menu-chevron {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.nav-menu:hover .nav-menu-chevron,
.nav-menu:focus-within .nav-menu-chevron {
    transform: rotate(180deg);
}

.nav-menu-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 170px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(8, 8, 8, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.nav-menu:hover .nav-menu-dropdown,
.nav-menu:focus-within .nav-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu-dropdown a {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.nav-menu-dropdown a:hover,
.nav-menu-dropdown a.active {
    color: #fff;
    background: #3b82f6;
}

.nav-right {
    margin-left: auto;
    transition:
        opacity 0.35s ease,
        transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.navbar:not(.scrolled) .nav-right {
    opacity: 0;
    transform: translateX(18px);
    pointer-events: none;
}

.nav-right .nav-btn {
    display: none;
}

/* Snow effect disabled */
.snowflakes,
.snowflake {
    display: none !important;
    animation: none !important;
}

/* Smaller navbar */
.navbar {
    max-width: 760px !important;
    padding: 8px 16px !important;
    border-radius: 13px !important;
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition:
        top 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        left 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        width 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        background 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease,
        backdrop-filter 0.45s ease,
        padding 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.navbar:not(.scrolled) {
    left: 20px !important;
    transform: translateX(0) !important;
    width: auto !important;
}

.navbar.scrolled {
    background: rgba(4, 4, 4, 0.78) !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
}

body:has(.beta-announcement:not(.hidden)) .navbar,
body:has(.beta-announcement:not(.hidden)) .navbar.scrolled {
    top: 60px !important;
}

.nav-logo img {
    width: 38px !important;
    height: 38px !important;
}

.nav-menu-toggle {
    padding: 8px 10px !important;
    font-size: 13px !important;
}

.lang-option {
    padding: 6px 11px !important;
}

@media (max-width: 768px) {
    .navbar,
    .navbar:not(.scrolled),
    .navbar.scrolled {
        left: 12px !important;
        right: auto !important;
        transform: translateX(0) !important;
        width: auto !important;
        max-width: calc(100% - 24px) !important;
        padding: 8px 10px !important;
    }

    .navbar.scrolled {
        width: calc(100% - 24px) !important;
    }

    .nav-inner {
        width: 100%;
        gap: 12px;
    }

    .navbar:not(.scrolled) .nav-inner {
        gap: 0;
    }

    .nav-right {
        display: none !important;
    }

    .navbar.scrolled .nav-logo {
        width: 34px;
    }

    .nav-logo img {
        width: 34px !important;
        height: 34px !important;
    }

    .nav-menu {
        position: static;
    }

    .nav-menu-toggle {
        padding: 8px 10px !important;
        font-size: 13px !important;
        min-height: 38px;
    }

    .nav-menu-dropdown {
        left: 0;
        right: 0;
        top: calc(100% + 10px);
        width: min(220px, calc(100vw - 24px));
        min-width: 0;
    }

    .nav-menu-dropdown a {
        padding: 12px 14px;
        font-size: 14px;
    }
}

/* First-load construction animation */
.site-loader {
    display: none !important;
}

.site-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-card {
    width: min(520px, calc(100% - 40px));
    padding: 34px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(8, 8, 8, 0.78);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.loader-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    margin-bottom: 22px;
    filter: drop-shadow(0 0 22px rgba(96, 165, 250, 0.35));
    animation: loaderPulse 1.6s ease-in-out infinite;
}

.loader-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    font-size: clamp(26px, 6vw, 44px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.build-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    filter: blur(10px);
    animation: buildWord 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: calc(var(--i) * 0.16s);
}

.build-word.accent,
.hero-client.build-word {
    background: linear-gradient(135deg, #60a5fa 0, #3b82f6 35%, #fff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation:
        buildWord 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) forwards,
        gradientShift 3s ease infinite;
    animation-delay: calc(var(--i) * 0.16s), 0s;
}

.hero-title .build-word {
    animation-delay: calc(0.45s + var(--i) * 0.16s);
}

.hero-title .hero-client.build-word {
    animation-delay: calc(0.45s + var(--i) * 0.16s), 0s;
}

.loader-bar {
    height: 3px;
    margin: 26px auto 0;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.loader-bar span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #60a5fa, #3b82f6, #fff);
    transform-origin: left;
    animation: loaderBar 1.8s ease forwards;
}

/* Initial hero reveal animation */
.hero-badge,
.hero-title-wrapper,
.hero-desc,
.hero-actions {
    opacity: 0;
    transform: translateY(24px);
    animation: sectionReveal 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-badge {
    animation-delay: 0.15s;
}

.hero-title-wrapper {
    animation-delay: 0.25s;
}

.hero-desc {
    animation-delay: 1.55s;
}

.hero-actions {
    animation-delay: 1.75s;
}

.reveal-on-scroll {
    will-change: opacity, transform, filter;
}

.reveal-on-scroll.revealed {
    will-change: auto;
}

@keyframes buildWord {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes sectionReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loaderPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.92);
        opacity: 0.76;
    }
}

@keyframes loaderBar {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* ============================================================
   Refinos clean (logo nova / home / status / suporte)
   ============================================================ */

/* Home: cards de features sem rodapé de stat — remove a folga extra */
.feature-card p:last-child {
    margin-bottom: 0;
}

/* Logo nova é um ícone quadrado arredondado: cantos coerentes */
.nav-logo img {
    border-radius: 9px;
}
.footer-brand img {
    border-radius: 9px;
}

/* Suporte: selo "Live" em azul da marca (menos verde, mais clean) */
.support-live-badge {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.22);
    color: #c2d8ff;
}
.support-live-badge span {
    background: #4f9bff;
    box-shadow:
        0 0 0 6px rgba(59, 130, 246, 0.1),
        0 0 16px rgba(59, 130, 246, 0.55);
}

/* Status: verde "online" mais calmo e com menos brilho neon */
.status-row strong,
.refined-status-card .status-row strong {
    color: #6fd6a0;
}
.status-row i,
.refined-status-card .status-row i {
    background: #6fd6a0;
    box-shadow: 0 0 8px rgba(111, 214, 160, 0.35);
}
.status-orb {
    background: rgba(111, 214, 160, 0.1);
    box-shadow: none;
}
.status-orb span {
    background: #6fd6a0;
    box-shadow:
        0 0 0 6px rgba(111, 214, 160, 0.1),
        0 0 14px rgba(111, 214, 160, 0.45);
}
