.learn-more-page {
    --ink: #0f0826;
    --muted: #6b5e8e;
    --soft: #f9f8ff;
    --purple: #5946d2;
    font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
    color: var(--ink);
    background: var(--soft);
}

.learn-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 28px 100px;
    background: linear-gradient(135deg, #0f0826 0%, #1e0a4a 40%, #2d1472 100%);
}

.learn-orb {
    position: absolute;
    width: 380px;
    height: 380px;
    top: -120px;
    right: -110px;
    border-radius: 999px;
    opacity: 0.22;
    background: radial-gradient(circle, #7c5ffa 0%, transparent 70%);
    pointer-events: none;
}

.learn-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.learn-hero-content span {
    display: inline-block;
    margin-bottom: 16px;
    color: #c4b8e8;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.learn-hero-content h1 {
    margin: 0 0 18px;
    color: white;
    font-size: clamp(2.1rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
}

.learn-hero-content p {
    margin: 0;
    color: #c4b8e8;
    font-size: 1.1rem;
    line-height: 1.7;
}

.jump-nav {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 46px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.jump-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    font-size: 0.9rem;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

.jump-nav a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.learn-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 58px;
    fill: var(--soft);
}

.learn-section {
    scroll-margin-top: 92px;
    padding: 82px max(28px, calc((100vw - 1120px) / 2));
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
    background: var(--soft);
}

.learn-section.alternate {
    grid-template-columns: 1.1fr 0.9fr;
    background: white;
}

.learn-section.alternate .topic-image-wrap {
    order: 2;
}

.topic-image-wrap {
    position: relative;
    width: min(100%, 390px);
    margin: 0 auto;
}

.topic-glow {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    opacity: 0.28;
    filter: blur(26px);
    transform: scale(0.92);
    background: linear-gradient(135deg, var(--topic-start), var(--topic-end));
}

.topic-image-wrap img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(15, 8, 38, 0.18);
}

.topic-number {
    position: absolute;
    z-index: 2;
    top: -16px;
    right: -16px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: white;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--topic-start), var(--topic-end));
    box-shadow: 0 16px 34px rgba(15, 8, 38, 0.18);
    font-size: 1.45rem;
    font-weight: 800;
}

.topic-copy > span {
    display: inline-block;
    margin-bottom: 12px;
    background: linear-gradient(90deg, var(--topic-start), var(--topic-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.topic-copy h2 {
    margin: 0 0 16px;
    color: var(--ink);
    font-size: clamp(1.65rem, 3.5vw, 2.4rem);
    line-height: 1.18;
    font-weight: 800;
}

.topic-subtitle {
    margin: 0 0 32px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.topic-point {
    display: flex;
    align-items: stretch;
    gap: 16px;
    margin-top: 24px;
}

.topic-rule {
    width: 6px;
    flex: 0 0 6px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--topic-start), var(--topic-end));
}

.topic-point h3 {
    margin: 0 0 6px;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 800;
}

.topic-point p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.topic-red {
    --topic-start: #ff4b4b;
    --topic-end: #ffc800;
}

.topic-yellow {
    --topic-start: #ffc800;
    --topic-end: #58cc02;
}

.topic-green {
    --topic-start: #58cc02;
    --topic-end: #5946d2;
}

.topic-purple {
    --topic-start: #5946d2;
    --topic-end: #ff4b4b;
}

.learn-cta {
    padding: 80px 28px;
    background: white;
}

.learn-cta > div {
    max-width: 760px;
    margin: 0 auto;
    padding: 62px 32px;
    text-align: center;
    border-radius: 32px;
    background: linear-gradient(135deg, #0f0826 0%, #2d1472 100%);
}

.learn-cta h2 {
    margin: 0 0 16px;
    color: white;
    font-size: clamp(1.65rem, 3.5vw, 2.4rem);
    line-height: 1.18;
    font-weight: 800;
}

.learn-cta p {
    max-width: 560px;
    margin: 0 auto 30px;
    color: #c4b8e8;
    font-size: 1.05rem;
    line-height: 1.7;
}

.learn-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 28px;
    color: var(--ink);
    text-decoration: none;
    border-radius: 16px;
    background: linear-gradient(136deg, #ff4b4b 0%, #ffc800 50%, #58cc02 100%);
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.learn-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
    .learn-section,
    .learn-section.alternate {
        grid-template-columns: 1fr;
        gap: 44px;
        text-align: center;
    }

    .learn-section.alternate .topic-image-wrap {
        order: 0;
    }

    .topic-point {
        text-align: left;
    }
}

@media (max-width: 620px) {
    .learn-hero {
        padding: 70px 22px 92px;
    }

    .jump-nav {
        display: grid;
    }

    .learn-section {
        padding-top: 66px;
        padding-bottom: 66px;
    }

    .topic-number {
        right: -8px;
    }
}
