/* ===== BASE ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    background: #000;
    color: #e5e5e5;
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

#orbit-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
}

/* ===== PAGE CONTAINER ===== */
.page {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
}

.header-name {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #fff;
    text-transform: uppercase;
}

.header-btn {
    padding: 8px 16px;
    border-radius: 999px;
    background: #fff;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.header-btn:active { transform: scale(0.96); }

/* ===== HERO ===== */
.hero {
    padding: 48px 0 40px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 11px;
    font-weight: 600;
    color: #999;
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    animation: blink 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 16px;
}

.hero-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto 28px;
}

/* Metrics */
.metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 20px 0;
    margin-bottom: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.metric {
    flex: 1;
    text-align: center;
}

.metric-val {
    display: block;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
}

.metric-lbl {
    display: block;
    font-size: 10px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.metric-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.08);
}

/* Platforms */
.platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 28px;
}

.platform {
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: #777;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

/* Hero actions */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    padding: 14px 24px;
    border-radius: 14px;
    background: #fff;
    color: #000;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.2s ease;
}

.btn-main:active { transform: scale(0.97); }

.btn-lg { padding: 16px 28px; font-size: 15px; }

.btn-ghost {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    padding: 10px 20px;
    transition: color 0.2s;
}

.btn-ghost:active { color: #fff; }

/* ===== BLOCKS ===== */
.block {
    padding: 48px 0;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.block-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.block-title {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.8px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
}

/* ===== ITEMS LIST (What's included) ===== */
.items-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: all 0.2s ease;
}

.item:last-child { border-bottom: none; }

.item-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    color: #444;
    padding-top: 2px;
    min-width: 24px;
}

.item-body h3 {
    font-size: 14px;
    font-weight: 700;
    color: #e5e5e5;
    margin-bottom: 3px;
}

.item-body p {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

/* ===== STEPS (Process) ===== */
.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: flex;
    gap: 16px;
}

.step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 6px;
}

.step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333;
    border: 2px solid #555;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step:hover .step-dot {
    background: #fff;
    border-color: #fff;
}

.step-line {
    width: 1px;
    flex: 1;
    background: rgba(255,255,255,0.06);
    min-height: 40px;
}

.step-body {
    padding-bottom: 28px;
}

.step-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.step-body h3 {
    font-size: 14px;
    font-weight: 700;
    color: #e5e5e5;
    margin-bottom: 4px;
}

.step-body p {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

/* ===== LOGIC ===== */
.logic-card {
    padding: 24px;
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 20px;
}

.logic-text {
    font-size: 14px;
    color: #999;
    line-height: 1.7;
    margin-bottom: 18px;
}

.logic-steps {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.ls {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #888;
}

.ls-active {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.ls-arrow {
    color: #444;
    font-size: 12px;
}

.points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.2s ease;
}

.point:active {
    background: rgba(255,255,255,0.05);
}

.point-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 800;
    background: rgba(255,255,255,0.06);
    color: #999;
    flex-shrink: 0;
}

.point strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #e5e5e5;
    margin-bottom: 2px;
}

.point p {
    font-size: 12px;
    color: #777;
    line-height: 1.4;
}

/* ===== RESULTS ===== */
.result-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 13px;
    color: #ccc;
}

.result-item:last-child { border-bottom: none; }

.ri-check {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 800;
    background: rgba(255,255,255,0.05);
    color: #fff;
    flex-shrink: 0;
}

/* ===== CTA ===== */
.cta-block {
    text-align: center;
    padding: 56px 0;
}

.cta-title {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 12px;
}

.cta-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.cta-link {
    display: block;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    transition: color 0.2s;
}

.cta-link:active { color: #fff; }

/* ===== FOOTER ===== */
.footer {
    padding: 24px 0;
    text-align: center;
    font-size: 11px;
    color: #444;
    font-weight: 600;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.footer span { display: inline; }
.footer-sep { margin: 0 6px; }

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== DESKTOP (wider screens) ===== */
@media (min-width: 768px) {
    .page {
        max-width: 640px;
        padding: 0 32px;
    }

    .hero-title {
        font-size: 44px;
        letter-spacing: -2px;
    }

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

    .metrics {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 24px;
    }

    .metric-val { font-size: 24px; }

    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }

    .btn-main {
        width: auto;
    }
}

@media (min-width: 1024px) {
    .page {
        max-width: 720px;
    }

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

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