.sp-page {
    min-height: 80vh;
    padding-bottom: 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f4ff 55%, #ffffff 100%);
}

.sp-hero {
    margin: 24px 5vw 0;
    padding: 46px;
    border-radius: 34px;
    background: radial-gradient(circle at top right, rgba(245, 158, 11, .35), transparent 35%),
                linear-gradient(135deg, #080d1f, #1e90ff);
    color: #ffffff;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 24px;
    align-items: center;
    box-shadow: 0 24px 55px rgba(17, 24, 39, .14);
}

.sp-kicker {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    color: #fef3c7;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.sp-hero h1 {
    font-size: clamp(34px, 5vw, 56px);
    margin: 16px 0 10px;
    line-height: 1.05;
}

.sp-hero p {
    color: #e5e7eb;
    line-height: 1.7;
    max-width: 760px;
}

.sp-hero-card {
    padding: 24px;
    border-radius: 28px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
}

.sp-hero-card i {
    width: 56px;
    height: 56px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.14);
    color: #fbbf24;
    font-size: 26px;
    margin-bottom: 14px;
}

.sp-hero-card b,
.sp-hero-card span {
    display: block;
}

.sp-hero-card b {
    font-size: 25px;
    margin-bottom: 8px;
}

.sp-hero-card span {
    color: #dbeafe;
    line-height: 1.5;
}

.sp-layout {
    margin: 28px 5vw 0;
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 22px;
    align-items: start;
}

.sp-card,
.sp-rules-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 30px;
    padding: 24px;
    box-shadow: 0 14px 30px rgba(17,24,39,.07);
}

.sp-card-head h2 {
    margin: 0 0 8px;
    font-size: 32px;
    color: #111827;
}

.sp-card-head p {
    margin: 0 0 20px;
    color: #6b7280;
}

.sp-form {
    display: grid;
    gap: 16px;
}

.sp-field {
    display: grid;
    gap: 7px;
}

.sp-field label {
    font-weight: 900;
    color: #111827;
}

.sp-field input,
.sp-field select,
.sp-field textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 14px 15px;
    font-size: 15px;
    outline: none;
    background: #ffffff;
}

.sp-field input:focus,
.sp-field select:focus,
.sp-field textarea:focus {
    border-color: #1e90ff;
    box-shadow: 0 0 0 4px rgba(30,144,255,.12);
}

.note-editor.note-frame {
    border-radius: 18px;
    overflow: hidden;
    border-color: #e5e7eb;
}

.note-toolbar {
    background: #f9fafb;
}

.sp-form button {
    width: 100%;
    justify-content: center;
}

.sp-rules-card {
    position: sticky;
    top: 96px;
}

.sp-rules-card h3 {
    margin: 0 0 14px;
    font-size: 24px;
}

.sp-rules-card ul {
    padding-left: 20px;
    color: #6b7280;
    line-height: 1.8;
}

.sp-rules-card .ak-outline-btn {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
}

.ak-public-toast.error {
    background: #dc2626;
}

.ak-public-toast.success {
    background: #16a34a;
}

@media (max-width: 980px) {
    .sp-hero {
        margin: 16px;
        padding: 30px;
        grid-template-columns: 1fr;
    }

    .sp-layout {
        margin: 22px 16px 0;
        grid-template-columns: 1fr;
    }

    .sp-rules-card {
        position: static;
    }
}