*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; cursor: none !important; }

:root {
    --bg: #080808;
    --surface: #111;
    --border: #222;
    --border-hover: #383838;
    --text: #f0f0f0;
    --muted: #666;
    --dim: #333;
}

@keyframes in {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

#cur {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    top: 0; left: 0;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #fff;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: width .2s ease, height .2s ease;
    will-change: left, top;
}
#cur.big { width: 32px; height: 32px; }
#cur.small { width: 8px; height: 8px; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    min-height: 100vh;
}

.wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 72px 24px 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--text);
    color: var(--bg);
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.88rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.5px;
    transition: opacity 0.15s;
}
.btn:hover { opacity: 0.88; }

.btn-secondary {
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--border);
    font-size: 0.82rem;
    padding: 13px 22px;
}
.btn-secondary:hover {
    opacity: 1;
    border-color: var(--border-hover);
    color: var(--text);
}

footer {
    margin-top: 100px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--dim);
}

header { margin-bottom: 80px; animation: in 0.6s ease-out; }

.logo {
    font-family: 'Space Mono', monospace;
    font-size: 3.8rem;
    font-weight: 700;
    letter-spacing: -2px;
    color: var(--text);
    display: block;
    margin-bottom: 14px;
    line-height: 1;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 48px;
    animation: in 0.6s ease-out 0.12s backwards;
}

.stat { background: var(--surface); padding: 28px 32px; }

.stat-num {
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 64px;
    animation: in 0.6s ease-out 0.22s backwards;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 28px 32px;
    transition: border-color 0.2s;
}
.card:hover { border-color: var(--border-hover); }

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.card-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--dim); }

.card h3 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
}

.list { list-style: none; }

.list li {
    font-size: 0.92rem;
    color: #b0b0b0;
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}
.list li:last-child { border-bottom: none; }

.list li::before {
    content: '';
    display: block;
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--dim);
    flex-shrink: 0;
}

.cta {
    animation: in 0.6s ease-out 0.32s backwards;
    display: flex;
    align-items: center;
    gap: 16px;
}

.back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 56px;
    transition: color 0.15s;
    animation: in 0.6s ease-out;
}
.back:hover { color: var(--text); }

.tos-header { margin-bottom: 48px; animation: in 0.6s ease-out 0.05s backwards; }

.tos-title {
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.tos-list { list-style: none; animation: in 0.6s ease-out 0.15s backwards; }

.tos-list li {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.93rem;
    color: #b0b0b0;
    line-height: 1.6;
    align-items: flex-start;
    transition: color 0.15s;
}
.tos-list li:hover { color: #d8d8d8; }
.tos-list li:last-child { border-bottom: none; }

.tos-num {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--dim);
    min-width: 24px;
    padding-top: 3px;
    flex-shrink: 0;
}

.tos-notice {
    margin-top: 48px;
    padding: 20px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--muted);
    animation: in 0.6s ease-out 0.25s backwards;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .logo { font-size: 2.6rem; }
    .grid, .stats { grid-template-columns: 1fr; }
    .cta { flex-direction: column; align-items: flex-start; }
    footer { flex-direction: column; gap: 10px; }
    #cur { display: none; }
}

.pricing-header {
    margin-bottom: 56px;
    animation: in 0.6s ease-out 0.05s backwards;
}

.pricing-title {
    font-family: 'Space Mono', monospace;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.pricing-subtitle {
    font-size: 0.9rem;
    color: var(--muted);
}

.price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 42px 40px;
    margin-bottom: 64px;
    animation: in 0.6s ease-out 0.15s backwards;
}

.price-main {
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.price-currency {
    font-family: 'Space Mono', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--muted);
}

.price-value {
    font-family: 'Space Mono', monospace;
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1;
}

.price-period {
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    color: var(--muted);
    padding-left: 4px;
}

.price-desc {
    font-size: 0.88rem;
    color: var(--muted);
}

.price-features {
    display: grid;
    gap: 16px;
    margin-bottom: 36px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.92rem;
    color: #c0c0c0;
}

.feature-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text);
    flex-shrink: 0;
}

.btn-purchase {
    width: 100%;
    justify-content: center;
    padding: 18px 30px;
    font-size: 0.92rem;
}

.showcase-section {
    margin-bottom: 72px;
    animation: in 0.6s ease-out 0.25s backwards;
}

.showcase-title {
    font-family: 'Space Mono', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.showcase-link {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px 28px;
    text-decoration: none;
    transition: border-color 0.2s;
}

.showcase-link:hover {
    border-color: var(--border-hover);
}

.showcase-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--text);
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.showcase-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.showcase-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.showcase-desc {
    font-size: 0.8rem;
    color: var(--muted);
}

.why-section {
    animation: in 0.6s ease-out 0.35s backwards;
}

.why-title {
    font-family: 'Space Mono', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 32px;
}

.why-grid {
    display: grid;
    gap: 24px;
}

.why-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.why-item:last-child {
    border-bottom: none;
}

.why-num {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--dim);
    min-width: 32px;
    padding-top: 2px;
    flex-shrink: 0;
}

.why-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.why-content p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
}

@media (max-width: 640px) {
    .price-value {
        font-size: 3.2rem;
    }
    .showcase-link {
        flex-direction: row;
    }
    .why-item {
        flex-direction: column;
        gap: 12px;
    }
}