@charset "utf-8";

/* ==========================================================================
   Variables & Reset
   ========================================================================== */
:root {
    --sp-bg-dark: #0a0a0a;
    --sp-bg-card: rgba(255, 255, 255, 0.03);
    --sp-bg-card-hover: rgba(255, 255, 255, 0.08);
    --sp-primary: #3b82f6;
    --sp-accent: #8b5cf6;
    --sp-text-main: #ffffff;
    --sp-text-sub: #a1a1aa;
    --sp-border: rgba(255, 255, 255, 0.1);
    --sp-gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --sp-gradient-text: linear-gradient(to right, #60a5fa, #a78bfa);
    --sp-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

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

body {
    font-family: 'SUIT', sans-serif;
    background-color: var(--sp-bg-dark);
    color: var(--sp-text-main);
    line-height: 1.6;
    word-break: keep-all;
}

.sp-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.sp-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* ==========================================================================
   Typography
   ========================================================================== */
.sp-h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.sp-h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.sp-h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.sp-desc {
    font-size: 18px;
    color: var(--sp-text-sub);
    line-height: 1.7;
}

.sp-gradient-text {
    background: var(--sp-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.sp-highlight {
    color: #60a5fa;
    font-weight: 700;
}

/* ==========================================================================
   Components
   ========================================================================== */
.sp-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.sp-card {
    background: var(--sp-bg-card);
    border: 1px solid var(--sp-border);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.sp-card:hover {
    background: var(--sp-bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.sp-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--sp-gradient-primary);
    color: white;
    font-weight: 700;
    font-size: 18px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.sp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.sp-hero {
    padding: 160px 0 100px;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}

/* ==========================================================================
   Intro Section
   ========================================================================== */
.sp-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sp-intro-img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--sp-border);
}

/* ==========================================================================
   4-Step System
   ========================================================================== */
.sp-step-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.sp-step-card {
    position: relative;
    overflow: hidden;
}

.sp-step-num {
    font-size: 80px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.sp-step-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: inline-block;
}

/* ==========================================================================
   Reward System
   ========================================================================== */
.sp-reward-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.sp-reward-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--sp-border);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.sp-rank-badge {
    width: 60px;
    height: 60px;
    background: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
    border: 2px solid var(--sp-accent);
    color: var(--sp-accent);
    font-weight: 800;
}

/* ==========================================================================
   Type Section
   ========================================================================== */
.sp-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.sp-type-card {
    text-align: center;
    padding: 40px 24px;
}

.sp-type-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.sp-quote {
    font-style: italic;
    color: #fff;
    font-size: 18px;
    margin-bottom: 16px;
    display: block;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.sp-cta {
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(59, 130, 246, 0.1) 100%);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .sp-h1 {
        font-size: 32px;
    }

    .sp-h2 {
        font-size: 28px;
    }

    .sp-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sp-step-container {
        grid-template-columns: 1fr;
    }

    .sp-reward-grid {
        grid-template-columns: 1fr;
    }

    .sp-type-grid {
        grid-template-columns: 1fr;
    }

    .sp-section {
        padding: 60px 0;
    }
}