@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

html { 
    background: radial-gradient(ellipse at center, rgb(12, 12, 12) 0%, #000000 100%);
    background-attachment: fixed;
    position: relative;
    background-color: #000000;
}

html::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255, 255, 255, 0.010) 60px, rgba(255, 255, 255, 0.010) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255, 255, 255, 0.010) 60px, rgba(255, 255, 255, 0.010) 61px);
    pointer-events: none;
    z-index: -1;
}

body {
    padding-top: 50px;
    overflow-x: hidden;
    margin: 0;
    padding-bottom: 40px;
    font-family: "Nunito", sans-serif;
}

.cursor-2 {
    display: inline-block;
    width: 10px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}


.hero {
    max-width: 1100px;
    margin: 40px auto 80px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: center;
    color: #fff;
}

.hero-logo {
    text-align: center;
}

.xselid-studio-logo {
    transition: 1s;
    max-width: 320px;
}

.hero-text h1 {
    font-size: 2.6em;
    margin: 0 0 10px;
}

.hero-sub {
    color: #b0b0b0;
    margin: 0 0 16px;
    line-height: 1.6;
}

.hero-pill {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #2aa6ff55;
    color: #9fdcff;
    background: rgba(42, 166, 255, 0.08);
    font-size: 12px;
    letter-spacing: 0.03em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 4px 0 12px;
}

.hero-badges span {
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid #1f1f24;
    color: #d6d6d6;
    font-size: 12px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.hero-metrics .metric-value {
    font-weight: 800;
    font-size: 18px;
    color: #fff;
}

.hero-metrics .metric-label {
    color: #8a8a8a;
    font-size: 12px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.btn-primary,
.btn-secondary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 10px;
    font-family: monospace;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: 0.2s ease;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.btn-primary {
    color: #ffffff;
    border: 2px dashed #1b669c;
}

.btn-secondary {
    background: #121212;
    border: 2px dashed #1b669c;
    color: #ffffff;
}

.btn-ghost {
    background: transparent;
    border: 1px solid #2a2a2a;
    color: #d6d6d6;
}

.btn-primary:hover { color: #c8e7ff; border-color: #258dd8;; transform: translateY(-1px); }
.btn-secondary:hover { color: #c8e7ff; border-color: #258dd8;; transform: translateY(-1px); }
.btn-ghost:hover { color: #c8e7ff; border-color: #258dd8;; transform: translateY(-1px); }

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-ghost:focus-visible {
    outline: 2px solid #2aa6ff;
    outline-offset: 2px;
}

.hero-note {
    color: #8a8a8a;
    font-size: 0.95em;
    margin-top: 6px;
}

.preview-section {
    max-width: 1100px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
    color: #fff;
}

.section-head h2 {
    margin: 0 0 6px;
}

.section-head p {
    margin: 0 0 18px;
    color: #b0b0b0;
}

.preview-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

.preview-card {
    background: #111111b9;
    border: 1px solid #1b1b1b;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.preview-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
}

.preview-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: radial-gradient(circle at 30% 30%, rgba(135, 255, 225, 0.2), rgba(18, 18, 18, 0.9));
    border: 1px solid #1f1f1f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    flex-shrink: 0;
}

.preview-icon img {
    width: 22px;
    height: 22px;
    opacity: 0.95;
}

.preview-tag {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 999px;
    background: #0f0f0f;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #87ffe1;
    border: 1px solid #1f1f1f;
    width: fit-content;
}

.preview-hint {
    color: #8a8a8a;
    font-size: 12px;
    line-height: 1.4;
}

.preview-status {
    margin-left: auto;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid #2aa6ff55;
    background: rgba(42,166,255,0.08);
    color: #9fdcff;
    font-size: 12px;
    letter-spacing: 0.02em;
    font-weight: 700;
}

.preview-status.done {
    border-color: #42f0d9aa;
    background: rgba(66,240,217,0.12);
    color: #b6ffe9;
}

.preview-text {
    color: #eaeaea;
    line-height: 1.6;
    margin-top: 2px;
}

.map-link {
    margin-top: 18px;
    text-align: center;
}

.map-more-btn {
    padding: 12px 14px;
    border-radius: 10px;
    background-color: #1f1f1f4b;
    display: inline-block;
    font-family: monospace;
    font-size: 13px;
    color: #ffffff;
    text-decoration: none;
    border: 1px dashed #1b669c;;
    transition: 0.2s ease;
}

.map-more-btn:hover {
    transform: translateY(-1px);
    color: #b3fff0;
}

.empty-text {
    color: #8a8a8a;
}

@media (max-width: 768px) {
    .hero-badges {
        align-items: center;
        justify-content: center;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .xselid-studio-logo {
        transition: 1s;
        max-width: 200px;
    }

    .preview-list {
        grid-template-columns: 1fr;
    }
}
