/* ============================================
   SafePass Landing Page — Premium Design
   Animations, SVG illustrations, Bento grid
   ============================================ */

/* --- Scroll Reveal --- */
.sp-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-reveal.sp-visible {
    opacity: 1;
    transform: none;
}

.sp-delay-1 { transition-delay: 0.1s; }
.sp-delay-2 { transition-delay: 0.2s; }
.sp-delay-3 { transition-delay: 0.3s; }
.sp-delay-4 { transition-delay: 0.4s; }
.sp-delay-5 { transition-delay: 0.5s; }
.sp-delay-6 { transition-delay: 0.6s; }

/* ===========================================
   HERO SECTION
   =========================================== */
.sp-landing-hero {
    min-height: 100vh;
    background: #060918;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 7rem 6% 5rem;
    color: #f1f5f9;
}

/* Dot grid background */
.sp-landing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(99, 102, 241, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

/* Gradient orbs */
.sp-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.sp-hero-orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 70%);
    top: -10%;
    right: -5%;
    animation: sp-orb-drift 20s ease-in-out infinite;
}

.sp-hero-orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1), transparent 70%);
    bottom: -10%;
    left: -5%;
    animation: sp-orb-drift 25s ease-in-out infinite reverse;
}

.sp-hero-orb--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.08), transparent 70%);
    top: 40%;
    left: 30%;
    animation: sp-orb-drift 18s ease-in-out infinite 5s;
}

@keyframes sp-orb-drift {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -20px); }
    50% { transform: translate(-20px, 30px); }
    75% { transform: translate(15px, 15px); }
}

/* --- Hero Text Column --- */
.sp-hero-text {
    position: relative;
    z-index: 2;
}

.sp-hero-text > * {
    opacity: 0;
    transform: translateY(30px);
    animation: sp-entrance 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.sp-hero-text > *:nth-child(1) { animation-delay: 0.15s; }
.sp-hero-text > *:nth-child(2) { animation-delay: 0.3s; }
.sp-hero-text > *:nth-child(3) { animation-delay: 0.45s; }
.sp-hero-text > *:nth-child(4) { animation-delay: 0.6s; }
.sp-hero-text > *:nth-child(5) { animation-delay: 0.75s; }

@keyframes sp-entrance {
    to {
        opacity: 1;
        transform: none;
    }
}

.sp-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #818cf8;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
}

.sp-hero-eyebrow i {
    font-size: 0.75rem;
}

.sp-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: #fff;
}

.sp-hero-title-accent {
    background: linear-gradient(135deg, #818cf8 0%, #38bdf8 40%, #2dd4bf 70%, #818cf8 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: sp-gradient-flow 8s ease infinite;
}

@keyframes sp-gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.sp-hero-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #94a3b8;
    max-width: 520px;
    margin-bottom: 2.5rem;
}

/* --- Hero CTAs --- */
.sp-hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.sp-hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(99, 102, 241, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.sp-hero-cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.sp-hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
}

.sp-hero-cta-primary:hover::before {
    transform: translateX(100%);
}

.sp-hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: rgba(255, 255, 255, 0.04);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.sp-hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* --- Hero Security Chips --- */
.sp-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.sp-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #64748b;
    transition: all 0.3s ease;
}

.sp-hero-chip:hover {
    border-color: rgba(99, 102, 241, 0.3);
    color: #818cf8;
    background: rgba(99, 102, 241, 0.06);
}

.sp-hero-chip i {
    color: #6366f1;
    font-size: 0.7rem;
}

/* --- Hero Visual / Illustration --- */
.sp-hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: sp-entrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.sp-hero-illustration {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1;
}

/* Shield center glow */
.sp-shield-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    animation: sp-glow-pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sp-glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.25); opacity: 1; }
}

.sp-hero-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 40px rgba(99, 102, 241, 0.12));
}

/* SVG orbit animations */
.sp-orbit-ring {
    transform-origin: 250px 250px;
    animation: sp-orbit-spin 30s linear infinite;
}

.sp-orbit-ring--reverse {
    animation-direction: reverse;
    animation-duration: 24s;
}

.sp-orbit-ring--slow {
    animation-duration: 40s;
}

@keyframes sp-orbit-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Floating code terms */
.sp-float-element {
    position: absolute;
    font-family: 'Courier New', 'Fira Code', monospace;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(99, 102, 241, 0.35);
    pointer-events: none;
    animation: sp-float-drift 6s ease-in-out infinite;
    letter-spacing: 0.05em;
}

.sp-float-element:nth-child(odd) {
    animation-delay: -3s;
    animation-duration: 8s;
}

.sp-float-element:nth-child(3) {
    color: rgba(14, 165, 233, 0.3);
    animation-duration: 7s;
    animation-delay: -1.5s;
}

.sp-float-element:nth-child(4) {
    color: rgba(20, 184, 166, 0.3);
    animation-duration: 9s;
    animation-delay: -4s;
}

@keyframes sp-float-drift {
    0%, 100% { transform: translateY(0px); opacity: 0.3; }
    50% { transform: translateY(-15px); opacity: 0.7; }
}

/* --- Hero Responsive --- */
@media (max-width: 991px) {
    .sp-landing-hero {
        grid-template-columns: 1fr;
        padding: 6rem 5% 3rem;
        text-align: center;
        gap: 3rem;
    }

    .sp-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .sp-hero-ctas {
        justify-content: center;
    }

    .sp-hero-chips {
        justify-content: center;
    }

    .sp-hero-illustration {
        max-width: 360px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .sp-landing-hero {
        padding: 5rem 4% 2rem;
    }

    .sp-hero-title {
        font-size: 2rem;
    }

    .sp-hero-desc {
        font-size: 1rem;
    }

    .sp-hero-cta-primary,
    .sp-hero-cta-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
}

/* ===========================================
   STATS STRIP
   =========================================== */
.sp-landing-stats {
    background: linear-gradient(180deg, #060918 0%, #060918 40%, var(--sp-bg) 100%);
    padding: 3rem 5%;
    position: relative;
}

.sp-stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 1100px;
    margin: 0 auto;
}

.sp-stat-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.sp-stat-chip:hover {
    border-color: rgba(99, 102, 241, 0.25);
    background: rgba(99, 102, 241, 0.05);
}

.sp-stat-chip-value {
    font-size: 0.95rem;
    font-weight: 800;
    color: #818cf8;
    white-space: nowrap;
}

.sp-stat-chip-label {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .sp-stats-grid {
        gap: 0.5rem;
    }

    .sp-stat-chip {
        padding: 0.5rem 1rem;
    }

    .sp-stat-chip-value {
        font-size: 0.85rem;
    }

    .sp-stat-chip-label {
        font-size: 0.72rem;
    }
}

/* ===========================================
   LANDING SECTION HEADERS
   =========================================== */
.sp-landing-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.sp-landing-section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sp-indigo);
    margin-bottom: 1rem;
}

.sp-landing-section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--sp-text);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.sp-landing-section-desc {
    font-size: 1.1rem;
    color: var(--sp-text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===========================================
   FEATURES — BENTO GRID
   =========================================== */
.sp-landing-features {
    padding: 6rem 5%;
    background: var(--sp-bg);
}

.sp-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.sp-bento-item {
    grid-column: span 4;
}

.sp-bento-item--wide {
    grid-column: span 8;
}

.sp-bento-item--5 {
    grid-column: span 5;
}

.sp-bento-item--7 {
    grid-column: span 7;
}

.sp-bento-item--full {
    grid-column: span 12;
}

.sp-bento-card {
    background: var(--sp-bg-card);
    border: 1px solid var(--sp-border);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

/* Gradient border on hover */
.sp-bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), transparent 50%, rgba(14, 165, 233, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.sp-bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.12);
}

.sp-bento-card:hover::before {
    opacity: 1;
}

[data-theme="dark"] .sp-bento-card:hover {
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.45);
}

/* Bento card row variant */
.sp-bento-card--row {
    flex-direction: row;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 768px) {
    .sp-bento-card--row {
        flex-direction: column;
    }
}

/* Icon containers */
.sp-bento-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.sp-bento-icon-wrap--indigo {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.sp-bento-icon-wrap--sky {
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
}

.sp-bento-icon-wrap--teal {
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
}

.sp-bento-icon-wrap--amber {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.sp-bento-icon-wrap--violet {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

/* Bento card color accents (top border) */
.sp-bento-card--indigo { border-top: 3px solid #6366f1; }
.sp-bento-card--teal { border-top: 3px solid #14b8a6; }
.sp-bento-card--sky { border-top: 3px solid #0ea5e9; }
.sp-bento-card--amber { border-top: 3px solid #f59e0b; }
.sp-bento-card--violet { border-top: 3px solid #8b5cf6; }
.sp-bento-card--emerald { border-top: 3px solid #10b981; }
.sp-bento-card--rose { border-top: 3px solid #f43f5e; }

/* Free badge */
.sp-bento-free-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding: 0.5rem 1.25rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 9999px;
    color: #10b981;
    font-size: 0.85rem;
    font-weight: 700;
}

[data-theme="dark"] .sp-bento-free-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.sp-bento-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--sp-text);
    margin-bottom: 0.5rem;
}

.sp-bento-desc {
    font-size: 0.9rem;
    color: var(--sp-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Encryption demo in wide card */
.sp-bento-visual {
    margin-top: auto;
    padding-top: 1.5rem;
}

.sp-encryption-demo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
}

.sp-encryption-input {
    color: var(--sp-text-muted);
}

.sp-encryption-arrow {
    color: var(--sp-indigo);
    font-size: 1rem;
}

.sp-encryption-output {
    color: var(--sp-indigo);
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Bento category tags area */
.sp-bento-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* Bento responsive */
@media (max-width: 991px) {
    .sp-bento-item,
    .sp-bento-item--5,
    .sp-bento-item--7 {
        grid-column: span 6;
    }

    .sp-bento-item--wide {
        grid-column: span 12;
    }
}

@media (max-width: 576px) {
    .sp-bento-item,
    .sp-bento-item--wide,
    .sp-bento-item--5,
    .sp-bento-item--7 {
        grid-column: span 12;
    }
}

/* ===========================================
   WARNING NOTICE SECTION
   =========================================== */
.sp-landing-notice {
    padding: 0 5% 2rem;
    background: var(--sp-bg);
}

.sp-notice-card {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 2rem;
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-left: 4px solid #f59e0b;
    border-radius: 12px;
}

[data-theme="dark"] .sp-notice-card {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.25);
    border-left-color: #f59e0b;
}

.sp-notice-icon {
    font-size: 1.5rem;
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.sp-notice-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sp-text);
    margin-bottom: 0.35rem;
}

.sp-notice-text {
    font-size: 0.9rem;
    color: var(--sp-text-muted);
    line-height: 1.6;
}

/* ===========================================
   HOW IT WORKS — TIMELINE
   =========================================== */
.sp-landing-how {
    padding: 6rem 5%;
    background: var(--sp-bg-card);
}

[data-theme="dark"] .sp-landing-how {
    background: #0c1024;
}

.sp-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Connecting line */
.sp-timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(16.66% + 1rem);
    right: calc(16.66% + 1rem);
    height: 2px;
    background: linear-gradient(90deg, var(--sp-indigo), var(--sp-sky), var(--sp-teal));
    opacity: 0.25;
}

.sp-timeline-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.sp-timeline-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    position: relative;
}

.sp-timeline-number::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0.12;
}

.sp-timeline-number--1 {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.sp-timeline-number--2 {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.sp-timeline-number--3 {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.3);
}

.sp-timeline-step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--sp-text);
    margin-bottom: 0.5rem;
}

.sp-timeline-step-desc {
    font-size: 0.9rem;
    color: var(--sp-text-muted);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .sp-timeline {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sp-timeline::before {
        display: none;
    }
}

/* ===========================================
   SECURITY SECTION
   =========================================== */
.sp-landing-security {
    padding: 6rem 5%;
    background: var(--sp-bg);
    position: relative;
}

.sp-security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.sp-security-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--sp-bg-card);
    border: 1px solid var(--sp-border);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sp-security-item:hover {
    border-color: var(--sp-indigo);
    transform: translateY(-4px);
    box-shadow: var(--sp-shadow-lg);
}

.sp-security-item-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    background: rgba(99, 102, 241, 0.08);
    color: var(--sp-indigo);
}

.sp-security-item-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sp-text);
    margin-bottom: 0.35rem;
}

.sp-security-item-desc {
    font-size: 0.82rem;
    color: var(--sp-text-muted);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .sp-security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .sp-security-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================================
   CTA SECTION
   =========================================== */
.sp-landing-cta {
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
}

.sp-cta-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3rem;
    border-radius: 24px;
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 50%, #0c1024 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.15);
}

/* CTA dot grid */
.sp-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(99, 102, 241, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.sp-cta-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
    animation: sp-glow-pulse 5s ease-in-out infinite;
    pointer-events: none;
}

.sp-cta-content {
    position: relative;
    z-index: 1;
}

.sp-cta-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.sp-cta-desc {
    font-size: 1.05rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.sp-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(99, 102, 241, 0.35);
    position: relative;
    overflow: hidden;
}

.sp-cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.sp-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 36px rgba(99, 102, 241, 0.5);
    color: #fff;
    text-decoration: none;
}

.sp-cta-button:hover::before {
    transform: translateX(100%);
}

@media (max-width: 576px) {
    .sp-cta-card {
        padding: 3rem 1.5rem;
        border-radius: 16px;
    }

    .sp-cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================================
   ACCESSIBILITY — Reduced Motion
   =========================================== */
@media (prefers-reduced-motion: reduce) {
    .sp-reveal {
        transition: none;
        opacity: 1;
        transform: none;
    }

    .sp-orbit-ring,
    .sp-orbit-ring--reverse,
    .sp-orbit-ring--slow {
        animation: none;
    }

    .sp-hero-orb {
        animation: none;
    }

    .sp-float-element {
        animation: none;
        opacity: 0.5;
    }

    .sp-shield-glow {
        animation: none;
    }

    .sp-hero-title-accent {
        animation: none;
    }

    .sp-cta-glow {
        animation: none;
    }

    .sp-hero-text > * {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .sp-hero-visual {
        animation: none;
        opacity: 1;
    }

    .sp-hero-cta-primary::before,
    .sp-cta-button::before {
        display: none;
    }
}
