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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Noto Sans SC', 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-blue-hover);
}

/* ========== Navigation ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    height: 44px;
    border-bottom: 1px solid var(--nav-border);
}

.nav-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 22px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 1;
    color: var(--text-primary);
}

.logo-mark {
    font-size: 16px;
}

.logo-name {
    font-weight: 500;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--nav-text);
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    opacity: 1;
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
}

.nav-join-btn {
    background: var(--accent-blue);
    color: #fff !important;
    padding: 6px 16px;
    border-radius: 980px;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-join-btn:hover {
    background: var(--accent-blue-hover);
    color: #fff !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    pointer-events: auto;
}

.hamburger span {
    width: 18px;
    height: 1.5px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
}

/* ========== Hero Announcement ========== */
.hero-announcement {
    margin-top: 44px;
    background: var(--bg-secondary);
    padding: 14px 22px;
    text-align: center;
}

.hero-announcement p {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 980px;
    margin: 0 auto;
}

.hero-announcement a {
    color: var(--accent-blue);
}

/* ========== Hero Section ========== */
.hero {
    background: var(--bg-primary);
    padding: 60px 22px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 980px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.07;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.hero-headline {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.14;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.hero-subheadline {
    font-size: 21px;
    font-weight: 400;
    color: var(--text-tertiary);
    margin-bottom: 24px;
}

.hero-links {
    display: flex;
    gap: 22px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    font-size: 17px;
    font-weight: 400;
    padding: 12px 28px;
    border-radius: 980px;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.17648;
    letter-spacing: -0.022em;
}

.btn-primary {
    background: var(--accent-blue);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-blue-hover);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--accent-blue);
    border: 1px solid var(--accent-blue);
    padding: 11px 28px;
}

.btn-outline:hover {
    background: var(--accent-blue);
    color: #fff;
}

.btn-large {
    font-size: 21px;
    padding: 14px 36px;
}

.hero-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px 18px 0 0;
}

/* ========== Link Blue ========== */
.link-blue {
    color: var(--accent-blue);
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-blue:hover {
    color: var(--accent-blue-hover);
}

/* ========== Product Section ========== */
.product-section {
    padding: 100px 22px;
    text-align: center;
}

.section-secondary {
    background: var(--bg-secondary);
}

.section-content {
    max-width: 980px;
    margin: 0 auto;
}

.section-title-large {
    font-size: 56px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.07;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

/* ========== Features Grid ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
}

.feature-tile {
    background: var(--tile-bg);
    border-radius: 18px;
    padding: 36px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon-wrapper {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1;
}

.feature-tile h3 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-tile p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ========== Product Showcase ========== */
.product-showcase {
    padding: 12px;
    background: var(--bg-primary);
}

.showcase-grid {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.showcase-card {
    border-radius: 18px;
    padding: 60px 40px;
    text-align: center;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.showcase-dark {
    background: var(--showcase-dark-bg);
    color: #fff;
}

.showcase-dark .showcard-title,
.showcase-dark .showcard-subtitle {
    color: #fff;
}

.showcase-dark .link-blue {
    color: #2997ff;
}

.showcase-dark .link-blue:hover {
    color: #147ce5;
}

.showcase-light {
    background: var(--showcase-light-bg);
}

.showcard-title {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.showcard-subtitle {
    font-size: 21px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.showcard-links {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.showcard-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* ========== Stats Row ========== */
.stats-row {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-block {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
    color: inherit;
}

.stat-label {
    font-size: 17px;
    color: var(--text-tertiary);
    opacity: 0.7;
}

.showcase-dark .stat-label {
    color: rgba(255, 255, 255, 0.6);
}

/* ========== Mods Display ========== */
.mods-number-display {
    text-align: center;
}

.mods-big {
    display: block;
    font-size: 120px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    background: var(--mods-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mods-unit {
    display: block;
    font-size: 24px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* ========== Updates Section ========== */
.section-updates {
    background: var(--bg-secondary);
}

.updates-list {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.update-card {
    background: var(--tile-bg);
    border-radius: 16px;
    padding: 28px 32px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.update-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.update-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-blue);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 980px;
}

.update-date {
    font-size: 14px;
    color: var(--accent-blue);
    font-weight: 500;
    margin-bottom: 10px;
}

.update-card h3 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.update-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.update-card a {
    color: var(--accent-blue);
}

/* ========== CTA Section ========== */
.cta-section {
    padding: 100px 22px;
    background: var(--bg-primary);
    text-align: center;
}

.cta-content {
    max-width: 980px;
    margin: 0 auto;
}

.cta-title {
    font-size: 56px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.07;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.cta-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

.cta-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    text-align: left;
}

.step-item {
    background: var(--tile-bg);
    border-radius: 18px;
    padding: 36px 32px;
    position: relative;
}

.step-number {
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-blue);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.step-item h3 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.step-item p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cta-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== FAQ Section ========== */
.faq-section {
    padding: 100px 22px;
    background: var(--bg-secondary);
}

.faq-content {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.faq-list {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--tile-bg);
    border-radius: 14px;
    padding: 28px 32px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: var(--tile-hover-bg);
}

.faq-item h3 {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== Support Section ========== */
.support-section {
    padding: 100px 22px;
    background: var(--bg-primary);
}

.support-content {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.support-text h2 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.support-text p {
    font-size: 21px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.support-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.support-qr {
    text-align: center;
}

.support-qr img {
    width: 280px;
    height: 280px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* ========== Footer ========== */
.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 20px 0 20px;
    font-size: 12px;
    line-height: 1.5;
}

.footer-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
}

.footer-top p {
    font-size: 12px;
    color: var(--footer-text-secondary);
    line-height: 1.5;
}

.footer-top a {
    color: var(--accent-blue);
}

.footer-divider {
    height: 1px;
    background: var(--footer-border);
    margin: 16px 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 10px 0;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    color: var(--footer-text);
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--footer-text-secondary);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--footer-border);
    color: var(--footer-text-secondary);
    font-size: 12px;
}

/* ========== Responsive ========== */
@media (max-width: 833px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 44px;
        left: 0;
        right: 0;
        background: rgba(251, 251, 253, 0.95);
        backdrop-filter: saturate(180%) blur(30px);
        -webkit-backdrop-filter: saturate(180%) blur(30px);
        flex-direction: column;
        gap: 0;
        padding: 12px 0;
        border-bottom: 1px solid var(--nav-border);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-menu li {
        width: 100%;
        list-style: none;
    }

    .nav-menu .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px 22px;
        font-size: 17px;
        font-weight: 500;
        opacity: 1;
        color: var(--text-primary);
        border-bottom: 1px solid var(--nav-border);
        text-align: center;
        transition: background 0.2s ease;
    }

    .nav-menu .nav-link:active {
        background: var(--bg-secondary);
    }

    .nav-menu li:last-child .nav-link {
        border-bottom: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-headline {
        font-size: 21px;
    }

    .hero-subheadline {
        font-size: 17px;
    }

    .section-title-large {
        font-size: 40px;
    }

    .section-subtitle {
        font-size: 19px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .showcase-card {
        min-height: 400px;
        padding: 40px 28px;
    }

    .showcard-title {
        font-size: 32px;
    }

    .mods-big {
        font-size: 80px;
    }

    .cta-title {
        font-size: 40px;
    }

    .cta-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .support-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .support-text h2 {
        font-size: 36px;
    }

    .support-links {
        justify-content: center;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-headline {
        font-size: 19px;
    }

    .section-title-large {
        font-size: 32px;
    }

    .showcard-title {
        font-size: 28px;
    }

    .cta-title {
        font-size: 32px;
    }

    .stats-row {
        gap: 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .mods-big {
        font-size: 64px;
    }

    .btn {
        font-size: 15px;
        padding: 10px 22px;
    }

    .btn-large {
        font-size: 17px;
        padding: 12px 28px;
    }
}
