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

:root {
    --bg: #181a20;
    --surface: #23252e;
    --accent: #2777ff;
    --text: #e0e0e0;
    --text-muted: #8a8f9c;
    --border: rgba(39, 119, 255, 0.18);
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.68;
    font-size: 17px;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.scanline {
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(39, 119, 255, 0.025) 50%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 9999;
    animation: scan 12s linear infinite;
}

@keyframes scan {
    0% { background-position: 0 0; }
    100% { background-position: 0 600px; }
}

header {
    background: rgba(35, 37, 46, 0.97);
    backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 86px;
}

.logo {
    font-size: 29px;
    font-weight: 700;
    letter-spacing: -1.4px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

.logo-symbol {
    color: var(--accent);
    font-size: 36px;
    line-height: 1;
}

nav {
    display: flex;
    gap: 44px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 2px;
    background: var(--accent);
}

.hero {
    padding: 140px 0 120px;
    border-bottom: 1px solid rgba(39, 119, 255, 0.1);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 88px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4.6rem;
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -3px;
    margin-bottom: 26px;
}

.subtitle {
    font-size: 1.52rem;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 36px;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--surface);
    padding: 17px 36px;
    border-radius: 9999px;
    font-size: 1.02rem;
    color: #b0b4c0;
    margin-bottom: 38px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 18px #22c55e;
    animation: pulse 2.2s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 17px 42px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.08rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn:hover {
    background: #1e5fd9;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px -8px rgba(39, 119, 255, 0.5);
}

.main-image {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 35px 80px -25px rgba(0, 0, 0, 0.75);
    transition: transform 0.4s ease;
}

.hero-grid:hover .main-image {
    transform: scale(1.015);
}

.fractured {
    padding: 150px 0;
    background: var(--surface);
}

.section-header {
    margin-bottom: 86px;
    text-align: center;
}

.section-header .accent {
    color: var(--accent);
    font-size: 1.02rem;
    letter-spacing: 5.5px;
    font-weight: 600;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2.95rem;
    margin-top: 12px;
    font-weight: 700;
}

.fracture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 44px;
}

.fracture-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fracture-card:hover {
    transform: translateY(-18px);
    border-color: var(--accent);
    box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.6);
}

.card-image {
    height: 260px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fracture-card:hover .card-image img {
    transform: scale(1.08);
}

.card-content {
    padding: 36px;
}

.card-content h3 {
    font-size: 1.42rem;
    margin-bottom: 19px;
    font-weight: 600;
}

.card-content p {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 1.04rem;
}

.card-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.card-link:hover {
    color: #4a9bff;
    text-decoration: underline;
}

.about-market {
    padding: 140px 0;
}

.about-content p {
    font-size: 1.15rem;
    max-width: 840px;
    margin: 0 auto 32px;
    color: #d0d4df;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 32px;
    max-width: 840px;
    margin: 60px auto;
}

.stat-item {
    text-align: center;
    background: var(--surface);
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
}

.stat-number {
    display: block;
    font-size: 2.65rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1.02rem;
}

.academy {
    padding: 140px 0;
    background: var(--surface);
}

.academy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 42px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.academy-card {
    background: var(--bg);
    padding: 44px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.academy-card:hover {
    border-color: var(--accent);
}

.academy-card h3 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.48rem;
}

.academy-note {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #b0b4c0;
}

.mirrors {
    padding: 140px 0;
}

.mirrors-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 800px;
    margin: 0 auto;
}

.mirror-item {
    background: var(--surface);
    padding: 28px 36px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 26px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.mirror-item:hover {
    border-color: var(--accent);
    transform: translateX(8px);
}

.mirror-icon {
    font-size: 32px;
    color: var(--accent);
    flex-shrink: 0;
}

.mirror-link {
    flex: 1;
    color: #ddd;
    font-family: ui-monospace, monospace;
    font-size: 1.17rem;
    text-decoration: none;
    word-break: break-all;
    transition: color 0.3s;
}

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

.mirror-status {
    color: #22c55e;
    font-weight: 600;
    font-size: 0.96rem;
    white-space: nowrap;
}

.mirror-note {
    text-align: center;
    margin-top: 66px;
    color: var(--text-muted);
    font-size: 1.06rem;
}

.security {
    padding: 140px 0;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
}

.security-item {
    background: var(--surface);
    padding: 36px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.security-item:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
}

.security-item h4 {
    color: var(--accent);
    margin-bottom: 14px;
    font-size: 1.25rem;
}

.rules {
    padding: 120px 0;
    background: var(--surface);
}

.rules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 66px;
    max-width: 960px;
    margin: 0 auto 60px;
}

.rules-column h3 {
    margin-bottom: 24px;
    color: var(--accent);
    font-size: 1.35rem;
}

.rules-column ul {
    list-style: none;
}

.rules-column li {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: #d0d4df;
}

.prohibited {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 32px;
    background: #1c1f26;
    border: 1px solid #ff5555;
    border-radius: 16px;
    color: #ff9999;
    font-weight: 500;
}

footer {
    background: #0f1014;
    padding: 120px 0 80px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
}

.footer-logo {
    font-size: 34px;
    margin-bottom: 26px;
}

.footer-text {
    max-width: 360px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 17px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-meta p {
    color: var(--text-muted);
    margin-bottom: 12px;
}

.final-line {
    text-align: center;
    padding-top: 70px;
    border-top: 1px dashed rgba(39,119,255,0.25);
    color: var(--accent);
    font-size: 1.02rem;
    letter-spacing: 8px;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 60px;
    }
    .hero-text h1 {
        font-size: 3.8rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 28px;
    }
    
    .hero-grid,
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    header .container {
        flex-direction: column;
        height: auto;
        padding: 22px 0;
        gap: 24px;
    }
    
    nav {
        gap: 28px;
    }
    
    .fracture-grid,
    .academy-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 3.2rem;
    }
    
    .section-header h2 {
        font-size: 2.4rem;
    }
}

.intro {
    padding: 110px 0;
    background: var(--bg);
}

.intro-text p {
    font-size: 1.16rem;
    max-width: 860px;
    margin: 0 auto 28px;
    color: #d0d4df;
    text-align: center;
}

.features {
    padding: 130px 0;
    background: var(--surface);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-item {
    background: var(--bg);
    padding: 38px 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.35s ease;
}

.feature-item:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
}

.feature-item h4 {
    color: var(--accent);
    margin-bottom: 16px;
    font-size: 1.28rem;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 1.04rem;
}

.vendorship {
    padding: 120px 0;
    background: var(--bg);
}

.vendorship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    max-width: 960px;
    margin: 0 auto;
}

.vendorship-card {
    background: var(--surface);
    padding: 42px 36px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.vendorship-card h3 {
    color: var(--accent);
    margin-bottom: 22px;
    font-size: 1.35rem;
}

.vendorship-card p {
    color: var(--text-muted);
    line-height: 1.65;
}

.security-section {
    padding: 130px 0;
    background: var(--surface);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 32px;
}

.security-item {
    background: var(--bg);
    padding: 38px 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.35s ease;
}

.security-item:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
}

.security-item h4 {
    color: var(--accent);
    margin-bottom: 14px;
    font-size: 1.26rem;
}

.security-item p {
    color: var(--text-muted);
    font-size: 1.03rem;
}

/* Enhanced hero for better SEO focus */
.hero h1 {
    font-size: 4.8rem;
    line-height: 1.02;
    letter-spacing: -3.2px;
}

.hero .subtitle {
    font-size: 1.55rem;
    line-height: 1.45;
}

/* FAQ style for schema visibility */
.faq-section {
    padding: 100px 0;
    background: var(--bg);
}

.faq-grid {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(39,119,255,0.15);
    padding-bottom: 28px;
}

.faq-question {
    font-size: 1.22rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-answer {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Additional micro-optimizations for speed */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    transition: color 0.25s ease;
}

button, .hero-btn {
    cursor: pointer;
}

/* Final responsive adjustments */
@media (max-width: 768px) {
    .features-grid,
    .vendorship-grid,
    .academy-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .hero h1 {
        font-size: 3.6rem;
    }
    
    .intro-text p,
    .about-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 22px;
    }
    
    .section-header h2 {
        font-size: 2.35rem;
    }
}