html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

body {
    overflow-x: clip;
}

:root {
    --anim-base: 0.62s;
    --anim-fast: 0.22s;
    --anim-slow: 10.5s;
    --lift-soft: -6px;
    --lift-strong: -12px;
    --reveal-distance: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

main > section {
    position: relative;
    scroll-margin-top: 84px;
    padding-block: clamp(72px, 8vw, 104px);
}

main > section > .container {
    width: 100%;
}

.hero {
    min-height: calc(100svh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    isolation: isolate;
    overflow: visible;
    background: linear-gradient(136deg, #0f3f9f 0%, #1259cd 48%, #1e8eca 100%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.22;
    animation: driftGrid 30s linear infinite;
    pointer-events: none;
}

.hero-content {
    max-width: 980px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    backdrop-filter: blur(2px);
}

.hero-kicker::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #22d3ee;
    box-shadow: 0 0 0 7px rgba(34, 211, 238, 0.25);
}

.hero-metrics {
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 760px;
}

.hero-metric {
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 16px;
    padding: 16px;
    text-align: left;
    backdrop-filter: blur(2px);
    transition: transform var(--anim-base) ease, border-color var(--anim-base) ease;
}

.hero-metric:hover {
    transform: translateY(var(--lift-soft));
    border-color: rgba(255, 255, 255, 0.65);
}

.hero-metric strong {
    display: block;
    font-size: 1.55rem;
    line-height: 1;
}

.hero-metric span {
    font-size: 0.92rem;
    opacity: 0.92;
}

.hero h1,
.hero p,
.hero .btn {
    will-change: transform, opacity;
}

.hero h1 {
    max-width: 16ch;
    margin-inline: auto;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.hero p {
    max-width: 58ch;
    margin-inline: auto;
}

.hero .btn {
    transition: transform var(--anim-base) ease, box-shadow var(--anim-base) ease;
}

.hero .btn:hover {
    transform: translateY(var(--lift-soft)) scale(1.03);
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.28);
}

.hero-orbs {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    opacity: 0.26;
    animation: orbFloat var(--anim-slow) ease-in-out infinite;
}

.orb-1 {
    width: 280px;
    height: 280px;
    left: -40px;
    top: 20px;
    background: #60a5fa;
}

.orb-2 {
    width: 220px;
    height: 220px;
    right: 8%;
    top: 30px;
    background: #22d3ee;
    animation-delay: 1.4s;
}

.orb-3 {
    width: 320px;
    height: 320px;
    right: -70px;
    bottom: -120px;
    background: #818cf8;
    animation-delay: 0.8s;
}

.edu-card,
.goal-card,
.plan-card,
.help-card,
.impact-stat,
.info-box,
.testimonial,
.support-box,
.hero-metric {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.edu-card::before,
.goal-card::before,
.plan-card::before,
.help-card::before,
.impact-stat::before,
.info-box::before,
.testimonial::before,
.support-box::before,
.hero-metric::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255, 255, 255, 0.2), transparent 52%);
    opacity: 0;
    transition: opacity var(--anim-base) ease;
    pointer-events: none;
    z-index: 0;
}

.edu-card::after,
.goal-card::after,
.plan-card::after,
.help-card::after,
.impact-stat::after,
.info-box::after,
.testimonial::after,
.support-box::after,
.hero-metric::after {
    content: '';
    position: absolute;
    top: -180%;
    left: -30%;
    width: 34%;
    height: 360%;
    transform: rotate(24deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transition: transform 0.55s ease;
    pointer-events: none;
    z-index: 0;
}

.edu-card:hover::before,
.goal-card:hover::before,
.plan-card:hover::before,
.help-card:hover::before,
.impact-stat:hover::before,
.info-box:hover::before,
.testimonial:hover::before,
.support-box:hover::before,
.hero-metric:hover::before {
    opacity: 1;
}

.edu-card:hover::after,
.goal-card:hover::after,
.plan-card:hover::after,
.help-card:hover::after,
.impact-stat:hover::after,
.info-box:hover::after,
.testimonial:hover::after,
.support-box:hover::after,
.hero-metric:hover::after {
    transform: translateX(290%) rotate(24deg);
}

.edu-card > *,
.goal-card > *,
.plan-card > *,
.help-card > *,
.impact-stat > *,
.info-box > *,
.testimonial > *,
.support-box > *,
.hero-metric > * {
    position: relative;
    z-index: 1;
}

.section-title h2::after {
    content: '';
    display: block;
    height: 6px;
    width: 60%;
    margin: 14px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #6d5efc, #08b8a5);
    box-shadow: 0 4px 12px rgba(109, 94, 252, 0.26);
}

.section-lead {
    text-align: center;
    margin: -24px auto 44px;
    max-width: 760px;
    color: #475569;
    font-size: 1.08rem;
}

.edu-sound {
    background: linear-gradient(140deg, #2563eb, #1d4ed8 55%, #1e40af);
    background-size: 180% 180%;
    color: #ffffff;
    border-radius: 36px;
    margin: 26px 24px;
    animation: gradientShift 15s ease infinite;
}

.edu-sound .section-title h2,
.edu-sound .section-lead {
    color: #ffffff;
}

.edu-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.edu-card {
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 28px 22px;
    text-align: center;
    backdrop-filter: blur(3px);
    transition: transform var(--anim-base) ease, box-shadow var(--anim-base) ease, border-color var(--anim-base) ease;
}

.edu-card:hover {
    transform: translateY(var(--lift-strong));
    box-shadow: 0 20px 38px rgba(2, 6, 23, 0.24);
    border-color: rgba(255, 255, 255, 0.55);
}

.edu-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 18px;
    border-radius: 999px;
    background-color: #f8fafc;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
}

.edu-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.edu-card p {
    color: rgba(255, 255, 255, 0.96);
}

.visual-disability {
    background: linear-gradient(180deg, #f8fbff, #f1f6ff);
}

.visual-disability .section-title {
    margin-bottom: 24px;
}

.visual-disability .section-lead {
    margin: -8px auto 26px;
    max-width: 58ch;
    font-size: 1.03rem;
}

.visual-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 20px;
    align-items: start;
}

.visual-panel {
    background: linear-gradient(165deg, #ffffff, #eef5ff);
    border: 1px solid #dce8ff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.visual-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e0edff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 7px 11px;
    margin-bottom: 14px;
}

.visual-chip::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #0ea5e9;
}

.visual-headline {
    font-size: clamp(1.42rem, 2.05vw, 1.86rem);
    line-height: 1.2;
    color: #1e3a8a;
    margin: 2px 0 10px;
}

.visual-text p {
    font-size: 1.02rem;
    line-height: 1.68;
    margin-bottom: 12px;
}

.visual-timeline {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: 8px;
    position: relative;
    padding-left: 0;
}

.visual-timeline::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 14px;
    bottom: 14px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, #60a5fa, #2563eb);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1;
}

.visual-panel.is-visible .visual-timeline::before {
    transform: scaleY(1);
}

.timeline-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 10px;
    align-items: start;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid #d5e4ff;
    border-radius: 14px;
    padding: 13px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    transition: opacity 0.7s ease, transform 0.7s ease, border-color var(--anim-base) ease, box-shadow var(--anim-base) ease;
}

.timeline-step:hover {
    border-color: #bcd5ff;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.12);
}

.visual-panel.is-visible .timeline-step {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.visual-panel.is-visible .timeline-step:nth-child(1) {
    transition-delay: 120ms;
}

.visual-panel.is-visible .timeline-step:nth-child(2) {
    transition-delay: 260ms;
}

.visual-panel.is-visible .timeline-step:nth-child(3) {
    transition-delay: 400ms;
}

.timeline-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(145deg, #2563eb, #1d4ed8);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.24);
    transform: scale(0.94);
    transition: transform 0.45s ease;
}

.visual-panel.is-visible .timeline-index {
    transform: scale(1);
}

.timeline-step h4 {
    color: #0f172a;
    font-size: 1.01rem;
    margin-bottom: 3px;
}

.timeline-step p {
    color: #334155;
    font-size: 0.9rem;
    line-height: 1.35;
}

.visual-side {
    display: grid;
    gap: 14px;
}

.research-signal {
    background: #0f2f7a;
    border: 1px solid #244793;
    border-radius: 18px;
    padding: 19px;
    color: #e5efff;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
}

.research-signal h3 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 1.08rem;
}

.signal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 9px;
}

.signal-card {
    background: rgba(11, 36, 96, 0.58);
    border: 1px solid rgba(191, 219, 254, 0.25);
    border-radius: 12px;
    padding: 12px 11px;
    min-height: 86px;
    opacity: 0;
    transform: translate3d(0, 12px, 0);
    transition: opacity 0.7s ease, transform 0.7s ease, border-color var(--anim-base) ease;
}

.signal-card:hover {
    border-color: rgba(125, 211, 252, 0.72);
    transform: translate3d(0, -2px, 0);
}

.signal-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.signal-card-top i {
    color: #7dd3fc;
    font-size: 0.95rem;
}

.signal-card-top strong {
    color: #ffffff;
    font-size: 1.22rem;
    line-height: 1;
}

.signal-card p {
    font-size: 0.83rem;
    line-height: 1.32;
    color: #dbeafe;
}

.research-signal.is-visible .signal-card {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.research-signal.is-visible .signal-card:nth-child(1) {
    transition-delay: 120ms;
}

.research-signal.is-visible .signal-card:nth-child(2) {
    transition-delay: 240ms;
}

.research-signal.is-visible .signal-card:nth-child(3) {
    transition-delay: 360ms;
}

.visual-tags {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.visual-tags span {
    background: #eef5ff;
    color: #1e3a8a;
    border: 1px solid #d2e3ff;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 999px;
    padding: 6px 10px;
}

.info-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.info-box h3 {
    margin-bottom: 8px;
    color: var(--secondary);
}

.info-box p {
    margin-bottom: 0;
}

.goals-showcase {
    background: #f1f5f9;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.goal-card {
    background: #ffffff;
    border: 1px solid #dbe7ff;
    border-radius: 18px;
    padding: 26px 20px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
    transition: transform var(--anim-base) ease, box-shadow var(--anim-base) ease;
}

.goal-card:hover {
    transform: translateY(var(--lift-strong));
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
}

.goal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 14px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    color: #6d5efc;
    background-color: #eef2ff;
}

.goal-card h3 {
    margin-bottom: 10px;
}

.impact-section {
    background: #f8fafc;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.impact-stat {
    background: #ffffff;
    border: 1px solid #e7e8fb;
    border-radius: 14px;
    padding: 18px;
    transition: transform var(--anim-base) ease, box-shadow var(--anim-base) ease;
}

.impact-stat:hover {
    transform: translateY(var(--lift-soft));
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}

.impact-stat strong {
    display: block;
    color: #6d5efc;
    font-size: 2rem;
    line-height: 1.1;
}

.impact-stat span {
    color: #475569;
}

.impact-list li {
    margin-bottom: 10px;
}

.impact-right h3,
.impact-left h3 {
    margin-bottom: 14px;
}

.testimonial {
    background: #e8ecff;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 12px;
    border-left: 4px solid #6d5efc;
    line-height: 1.7;
    transition: transform var(--anim-base) ease, box-shadow var(--anim-base) ease;
}

.testimonial:hover {
    transform: translateY(var(--lift-soft));
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}

.plans-section {
    background: #f2f3fb;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

@media (min-width: 1200px) {
    .plans-section {
        padding-block: 68px;
    }

    .plans-section .section-title {
        margin-bottom: 38px;
    }

    .plans-section .section-lead {
        margin: -12px auto 24px;
    }

    .plans-grid {
        gap: 16px;
    }

    .plan-card {
        padding: 24px 20px;
    }

    .plan-price {
        font-size: 2.65rem;
        margin-bottom: 14px;
    }

    .plan-card li {
        padding: 8px 0;
    }
}

.plan-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 34px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    transition: transform var(--anim-base) ease, box-shadow var(--anim-base) ease;
}

.plan-card:hover {
    transform: translateY(var(--lift-strong));
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.16);
}

.plan-popular {
    border: 3px solid #6d5efc;
}

.plan-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #ef5471;
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 700;
    border-radius: 999px;
    letter-spacing: 0.03em;
    padding: 6px 12px;
    animation: pulseSoft 1.4s ease infinite;
}

.plan-card h3 {
    color: #635bff;
    font-size: 2rem;
    margin-bottom: 12px;
}

.plan-price {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.1;
    margin-bottom: 20px;
}

.plan-price span {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 600;
}

.plan-card ul {
    list-style: none;
    margin-bottom: 24px;
    flex: 1;
}

.plan-card li {
    padding: 11px 0;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
}

.plan-card li::before {
    content: '✓';
    margin-right: 10px;
    color: #14b8a6;
    font-weight: 700;
}

.plan-btn {
    width: 100%;
    text-align: center;
    background: linear-gradient(90deg, #6d5efc, #9b59d9);
    color: #ffffff;
}

@media (min-width: 1100px) and (max-height: 900px) {
    .plans-section {
        padding-block: 54px;
    }

    .plans-section .section-title {
        margin-bottom: 20px;
    }

    .plans-section .section-lead {
        margin: -6px auto 18px;
        max-width: 48ch;
        font-size: 0.98rem;
    }

    .plans-grid {
        gap: 14px;
    }

    .plan-card {
        border-radius: 20px;
        padding: 24px 22px;
    }

    .plan-card h3 {
        font-size: 1.75rem;
        margin-bottom: 8px;
    }

    .plan-price {
        font-size: 2.7rem;
        margin-bottom: 14px;
    }

    .plan-price span {
        font-size: 1rem;
    }

    .plan-card ul {
        margin-bottom: 18px;
    }

    .plan-card li {
        padding: 9px 0;
        font-size: 0.97rem;
    }

    .plan-badge {
        top: 12px;
        right: 12px;
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    .plan-btn {
        padding: 12px 16px;
        font-size: 1rem;
    }
}

.plan-btn:hover {
    color: #ffffff;
    border-color: transparent;
    background: linear-gradient(90deg, #5a4ae7, #8649c0);
}

.help-section {
    background: #f8fafc;
}

.help-search {
    max-width: 760px;
    margin: -16px auto 28px;
    display: flex;
    border: 1px solid #dbe1ef;
    border-radius: 12px;
    overflow: hidden;
    background-color: #ffffff;
}

.help-search input {
    flex: 1;
    border: 0;
    padding: 14px 16px;
    outline: none;
    font-size: 1rem;
}

.help-search button {
    width: 60px;
    border: 0;
    background: #6d5efc;
    color: #ffffff;
    cursor: pointer;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.help-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 24px;
    text-align: center;
    transition: transform var(--anim-base) ease, box-shadow var(--anim-base) ease;
}

.help-card:hover {
    transform: translateY(var(--lift-soft));
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.12);
}

.help-icon {
    color: #6d5efc;
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.help-card h3 {
    margin-bottom: 8px;
}

.support-box {
    margin-top: 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    transition: transform var(--anim-base) ease, box-shadow var(--anim-base) ease;
}

.support-box:hover {
    transform: translateY(var(--lift-soft));
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.1);
}

.reveal {
    opacity: 1;
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.reveal-up {
    transform: translate3d(0, 0, 0);
}

.reveal-left {
    transform: translate3d(0, 0, 0);
}

.reveal-right {
    transform: translate3d(0, 0, 0);
}

.reveal.is-pending {
    opacity: 0;
}

.reveal-up.is-pending {
    transform: translate3d(0, var(--reveal-distance), 0);
}

.reveal-left.is-pending {
    transform: translate3d(-24px, 0, 0);
}

.reveal-right.is-pending {
    transform: translate3d(24px, 0, 0);
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.parallax-shift {
    transform: translateY(var(--parallax-offset, 0px));
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes orbFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.07);
    }
}

@keyframes pulseSoft {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

@keyframes driftGrid {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(28px, 28px, 0);
    }
}

.support-box h3 {
    margin-bottom: 8px;
}

.support-box a {
    color: #2563eb;
    font-weight: 600;
}

.cta {
    background: linear-gradient(135deg, #1e40af, #2563eb 55%, #60a5fa 100%);
    color: #ffffff;
    text-align: center;
    padding: 92px 0;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.12), transparent 50%);
    pointer-events: none;
}

.cta h2 {
    font-size: clamp(2rem, 3vw, 2.7rem);
    margin-bottom: 16px;
    font-weight: 700;
}

.cta p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.cta .btn {
    background-color: #ffffff;
    color: var(--primary);
}

.cta .btn:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

@media (max-width: 1120px) {
    .edu-grid,
    .goals-grid,
    .help-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .hero-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 560px;
    }

    .visual-grid,
    .impact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    main > section {
        scroll-margin-top: 72px;
        padding-block: 66px;
    }

    .hero {
        margin-top: 74px;
        min-height: auto;
        align-items: flex-start;
        padding: 108px 0 126px;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 9.4vw, 2.85rem);
        line-height: 1.1;
        letter-spacing: -0.02em;
        margin-bottom: 16px;
        max-width: 14ch;
    }

    .hero p {
        font-size: clamp(1.04rem, 4.6vw, 1.22rem);
        line-height: 1.45;
        margin-left: auto;
        margin-right: auto;
        max-width: 34ch;
    }

    .hero-kicker {
        font-size: 0.78rem;
        letter-spacing: 0.06em;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 360px;
    }

    .hero-metrics {
        display: none;
    }

    .hero-metric {
        text-align: center;
        padding: 12px 14px;
        background: rgba(255, 255, 255, 0.18);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .hero-metric strong {
        font-size: 1.75rem;
    }

    .hero::after {
        opacity: 0.16;
    }

    .edu-sound {
        margin: 18px 10px;
        border-radius: 26px;
    }

    .orb-1,
    .orb-2,
    .orb-3 {
        opacity: 0.15;
    }

    .orb-3 {
        width: 260px;
        height: 260px;
        right: -110px;
        bottom: -170px;
    }

    .section-lead {
        margin: -12px auto 30px;
    }

    .visual-disability .section-lead {
        margin: -6px auto 22px;
        max-width: 38ch;
    }

    .visual-panel {
        padding: 22px;
    }

    .timeline-step {
        grid-template-columns: 50px 1fr;
        padding: 12px;
    }

    .signal-grid {
        grid-template-columns: 1fr;
    }

    .impact-stats {
        grid-template-columns: 1fr;
    }

    .help-search {
        flex-direction: column;
    }

    .help-search button {
        width: 100%;
        padding: 12px 0;
    }

    .plan-price {
        font-size: 2.6rem;
    }

    .cta {
        padding: 74px 0;
    }
}

@media (max-width: 420px) {
    .hero {
        padding-top: 98px;
        padding-bottom: 122px;
    }

    .hero h1 {
        font-size: 1.95rem;
    }

    .hero-buttons .btn {
        max-width: 100%;
    }

    .hero-metric {
        padding: 10px 12px;
    }
}

@media (max-width: 580px) {
    .edu-grid,
    .goals-grid,
    .help-grid {
        grid-template-columns: 1fr;
    }

    .edu-card,
    .goal-card,
    .plan-card,
    .help-card,
    .support-box,
    .info-box,
    .visual-panel,
    .research-signal {
        padding: 20px;
    }

    .plan-badge {
        top: 12px;
        right: 12px;
    }

    .timeline-step {
        padding: 11px;
    }

    .visual-chip {
        font-size: 0.74rem;
        padding: 6px 10px;
    }

    .visual-headline {
        font-size: 1.34rem;
    }

    .timeline-index {
        width: 40px;
        height: 40px;
        font-size: 0.88rem;
    }
}

body.theme-dark .section-lead,
body.theme-dark .visual-text p,
body.theme-dark .impact-stat span,
body.theme-dark .support-box p {
    color: #cbd5e1;
}

body.theme-dark .visual-disability,
body.theme-dark .impact-section,
body.theme-dark .help-section,
body.theme-dark .plans-section {
    background-color: #0f172a;
}

body.theme-dark .visual-disability {
    background: linear-gradient(180deg, #0b1220, #0f172a 42%, #111827);
}

body.theme-dark .visual-disability .section-title h2 {
    color: #e2e8f0;
}

body.theme-dark .visual-disability .section-lead {
    color: #94a3b8;
}

body.theme-dark .goals-showcase {
    background-color: #111827;
}

body.theme-dark .goal-card,
body.theme-dark .plan-card,
body.theme-dark .help-card,
body.theme-dark .support-box,
body.theme-dark .info-box,
body.theme-dark .impact-stat,
body.theme-dark .help-search {
    background-color: #111827;
    border-color: #243247;
    color: #e2e8f0;
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.4);
}

body.theme-dark .visual-panel {
    background: linear-gradient(165deg, #0b1f47, #102955);
    border-color: #244177;
    box-shadow: 0 14px 28px rgba(2, 6, 23, 0.35);
}

body.theme-dark .visual-chip {
    background: #122b57;
    color: #bfdbfe;
    border-color: #34558e;
}

body.theme-dark .visual-headline {
    color: #dbeafe;
}

body.theme-dark .timeline-step {
    background: rgba(15, 23, 42, 0.65);
    border-color: #2f4e85;
}

body.theme-dark .timeline-index {
    background: linear-gradient(145deg, #0ea5e9, #2563eb);
}

body.theme-dark .visual-timeline::before {
    background: linear-gradient(180deg, #7dd3fc, #38bdf8);
}

body.theme-dark .timeline-step h4 {
    color: #e2e8f0;
}

body.theme-dark .timeline-step p {
    color: #cbd5e1;
}

body.theme-dark .research-signal {
    background: #081a3b;
    border-color: #1f3f77;
}

body.theme-dark .visual-side .info-box {
    background: #0b1220;
    border-color: #243247;
}

body.theme-dark .visual-side .info-box h3 {
    color: #dbeafe;
}

body.theme-dark .signal-card {
    background: rgba(15, 35, 79, 0.74);
    border-color: rgba(96, 165, 250, 0.25);
}

body.theme-dark .signal-card p {
    color: #dbeafe;
}

body.theme-dark .visual-tags span {
    background: #0f274d;
    border-color: #34558e;
    color: #bfdbfe;
}

body.theme-dark .help-search input {
    background-color: #111827;
    color: #e2e8f0;
}

body.theme-dark .testimonial {
    background-color: #1e293b;
    border-left-color: #818cf8;
}

body.theme-dark .plan-card li {
    border-bottom-color: #243247;
    color: #cbd5e1;
}

body.theme-dark .plan-price,
body.theme-dark .plan-price span,
body.theme-dark .goal-card h3,
body.theme-dark .impact-right h3,
body.theme-dark .impact-left h3,
body.theme-dark .help-card h3,
body.theme-dark .support-box h3,
body.theme-dark .info-box h3 {
    color: #e2e8f0;
}

body.theme-dark .edu-sound {
    background: linear-gradient(140deg, #1e40af, #1d4ed8 55%, #3b82f6);
}

body.theme-dark .hero {
    background: linear-gradient(136deg, #0d2f75 0%, #194ca1 48%, #176789 100%);
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .hero .btn,
    .edu-card,
    .goal-card,
    .impact-stat,
    .testimonial,
    .plan-card,
    .help-card,
    .support-box,
    .hero-metric,
    .orb,
    .edu-sound,
    .plan-badge,
    .hero::after,
    .edu-card::before,
    .goal-card::before,
    .plan-card::before,
    .help-card::before,
    .impact-stat::before,
    .info-box::before,
    .testimonial::before,
    .support-box::before,
    .hero-metric::before,
    .edu-card::after,
    .goal-card::after,
    .plan-card::after,
    .help-card::after,
    .impact-stat::after,
    .info-box::after,
    .testimonial::after,
    .support-box::after,
    .hero-metric::after {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .visual-timeline::before,
    .timeline-step,
    .timeline-index,
    .signal-card {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}
