/* gotcha.is home page - intentionally isolated from the shared application UI. */
.eq-home-shell {
    min-height: 100vh;
    --home-display-size: clamp(36px, 3.4vw, 46px);
    --home-title-size: clamp(27px, 2.4vw, 32px);
    --home-panel-title-size: clamp(24px, 2vw, 28px);
    --home-card-title-size: clamp(21px, 1.8vw, 24px);
    --home-body-size: 16px;
    --home-supporting-size: 14px;
    --home-label-size: 12px;
    --home-caption-size: 11px;
    --home-section-space: clamp(52px, 6vw, 64px);
    background:
        radial-gradient(circle at 8% 6%, rgba(29, 93, 243, .1), transparent 30rem),
        radial-gradient(circle at 96% 28%, rgba(118, 78, 232, .07), transparent 28rem),
        linear-gradient(180deg, #fbfcff 0%, #f7f9fd 44%, #f4f6fa 100%);
}

.eq-home-shell .eq-home {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 0 0 72px;
}

.eq-home-shell .eq-home-eyebrow,
.eq-home-shell .eq-home-card-number {
    margin: 0;
    color: #1d5df3;
    font-size: var(--home-label-size);
    font-weight: 600;
    letter-spacing: .1em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eq-home-shell .eq-home-hero {
    max-width: none;
    margin: 0;
    padding: 48px 0 24px;
    text-align: left;
}

.eq-home-shell .eq-home-hero-copy {
    width: 100%;
    min-width: 0;
}

.eq-home-shell .eq-home-hero h1 {
    max-width: 1140px;
    margin: 12px 0 0;
    color: #13203a;
    font-size: var(--home-display-size);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.eq-home-shell .eq-home-hero h1 em {
    display: block;
    color: #1d5df3;
    font-style: normal;
    font-weight: 600;
}

.eq-home-shell .eq-home-primary-link,
.eq-home-shell .eq-home-light-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 160ms ease, color 160ms ease, background 160ms ease, box-shadow 160ms ease, gap 160ms ease;
}

.eq-home-shell .eq-home-primary-link {
    min-height: 50px;
    padding: 13px 18px;
    color: #fff;
    background: #1d5df3;
    border-radius: 13px;
    box-shadow: 0 15px 34px rgba(29, 93, 243, .25);
}

.eq-home-shell .eq-home-primary-link:hover {
    color: #fff;
    background: #1549c7;
    box-shadow: 0 18px 38px rgba(29, 93, 243, .32);
    transform: translateY(-2px);
}

.eq-home-shell .eq-home-section,
.eq-home-shell .eq-home-access {
    padding: var(--home-section-space) 0 0;
}

.eq-home-shell .eq-home-section-heading {
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
    align-items: end;
    gap: 32px;
}

.eq-home-shell .eq-home-access > .eq-home-section-heading {
    grid-template-columns: 1fr;
}

.eq-home-shell .eq-home-section-heading h2,
.eq-home-shell .eq-home-roadmap h2,
.eq-home-shell .eq-home-membership h2,
.eq-home-shell .eq-home-faq h2,
.eq-home-shell .eq-home-final-cta h2 {
    max-width: 760px;
    margin: 10px 0 0;
    color: #14213b;
    font-size: var(--home-title-size);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -.03em;
}

.eq-home-shell .eq-home-section-heading > p,
.eq-home-shell .eq-home-roadmap-copy > p:not(.eq-home-eyebrow),
.eq-home-shell .eq-home-membership-copy > p:not(.eq-home-eyebrow):not(.eq-home-membership-trial) {
    margin: 0;
    color: #61708a;
    font-size: var(--home-body-size);
    line-height: 1.6;
}

.eq-home-shell .eq-home-tool-heading {
    margin-bottom: 28px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0;
}

.eq-home-shell .eq-home-tool-heading > div { max-width: 850px; }

.eq-home-shell .eq-home-tool-hint {
    margin: 14px 0 0;
    color: #61708a;
    font-size: 15px;
    line-height: 1.6;
}

.eq-home-shell .eq-home-tool-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.eq-home-shell .eq-home-tool-card {
    --tool-image: none;
    --tool-surface: #eef3ff;
    --tool-border: #bed0f7;
    position: relative;
    z-index: 0;
    width: 100%;
    display: block;
    overflow: hidden;
    color: #17223b;
    border: 1px solid var(--tool-border);
    border-radius: 14px;
    background-color: var(--tool-surface);
    background-image: var(--tool-image);
    background-position: center;
    background-size: cover;
    box-shadow: 0 4px 14px rgba(31, 49, 88, .035);
    text-decoration: none;
    transition: width 200ms ease, margin 200ms ease, border-color 180ms ease, box-shadow 180ms ease;
    isolation: isolate;
}

.eq-home-shell .eq-home-tool-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .93) 0%, rgba(255, 255, 255, .78) 42%, rgba(255, 255, 255, .24) 74%, rgba(255, 255, 255, .36) 100%);
    transition: opacity 180ms ease;
}

.eq-home-shell .eq-home-tool-card:hover,
.eq-home-shell .eq-home-tool-card:focus-visible {
    z-index: 2;
    width: calc(100% + 24px);
    margin: 8px 0 8px -12px;
    color: #17223b;
    border-color: color-mix(in srgb, var(--tool-border) 75%, #536f9f);
    box-shadow: 0 16px 34px rgba(31, 49, 88, .13);
}

.eq-home-shell .eq-home-tool-card:hover::before,
.eq-home-shell .eq-home-tool-card:focus-visible::before { opacity: .9; }

.eq-home-shell .eq-home-tool-summary {
    min-height: 68px;
    padding: 10px 22px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto 20px;
    align-items: center;
    gap: 18px;
}

.eq-home-shell .eq-home-tool-summary > strong {
    min-width: 0;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
}

.eq-home-shell .eq-home-tool-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #1d5df3;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 12px;
    background: rgba(234, 240, 255, .86);
    box-shadow: 0 6px 18px rgba(31, 49, 88, .05);
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.eq-home-shell .eq-home-tool-status {
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(31, 49, 88, .04);
}

.eq-home-shell .eq-home-tool-status.is-open {
    color: #146749;
    background: rgba(226, 245, 236, .94);
}

.eq-home-shell .eq-home-tool-status.is-membership {
    color: #6641bb;
    background: rgba(238, 232, 251, .95);
}

.eq-home-shell .eq-home-tool-chevron {
    width: 9px;
    height: 9px;
    margin: 0 2px 4px 7px;
    color: #365170;
}

.eq-home-shell .eq-home-tool-detail {
    max-height: 0;
    min-height: 0;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    overflow: hidden;
    color: #53627a;
    border-top: 1px solid transparent;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0;
    transition: max-height 220ms ease, min-height 220ms ease, padding 220ms ease, border-color 180ms ease, opacity 150ms ease;
}

.eq-home-shell .eq-home-tool-detail > span { max-width: 720px; }

.eq-home-shell .eq-home-tool-detail > em {
    flex: 0 0 auto;
    padding: 12px 17px;
    color: #fff;
    border-radius: 10px;
    background: #1d5df3;
    box-shadow: 0 8px 20px rgba(29, 93, 243, .18);
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
}

.eq-home-shell .eq-home-tool-detail > em span { margin-left: 5px; }

.eq-home-shell .eq-home-tool-card:hover .eq-home-tool-detail,
.eq-home-shell .eq-home-tool-card:focus-visible .eq-home-tool-detail {
    max-height: 150px;
    min-height: 112px;
    padding: 22px 30px 26px;
    border-top-color: rgba(50, 71, 105, .14);
    opacity: 1;
}

.eq-home-shell .eq-home-tool-card:hover .eq-home-tool-chevron,
.eq-home-shell .eq-home-tool-card:focus-visible .eq-home-tool-chevron {
    transform: translateY(3px) rotate(225deg);
}

.eq-home-shell .eq-home-tool-card.is-sentences { --tool-image: url('/static/img/home-tools/translation.webp'); --tool-surface: #edf3ff; --tool-border: #bed0f7; }
.eq-home-shell .eq-home-tool-card.is-dictation { --tool-image: url('/static/img/home-tools/dictation.webp'); --tool-surface: #fff4df; --tool-border: #efd39a; }
.eq-home-shell .eq-home-tool-card.is-context { --tool-image: url('/static/img/home-tools/context.webp'); --tool-surface: #f2edff; --tool-border: #d8ccf5; }
.eq-home-shell .eq-home-tool-card.is-guide { --tool-image: url('/static/img/home-tools/guide.webp'); --tool-surface: #e9f8f2; --tool-border: #c5e7d9; }
.eq-home-shell .eq-home-tool-card.is-roadmap { --tool-image: url('/static/img/home-tools/roadmap.webp'); --tool-surface: #ffede9; --tool-border: #f0c9c1; }
.eq-home-shell .eq-home-tool-card.is-video { --tool-image: url('/static/img/home-tools/video.webp'); --tool-surface: #fdecef; --tool-border: #efcbd3; }
.eq-home-shell .eq-home-tool-card.is-dialogue { --tool-image: url('/static/img/home-tools/dialogue.webp'); --tool-surface: #f1edff; --tool-border: #d9cdf4; }

.eq-home-shell .eq-home-tool-card.is-dictation .eq-home-tool-icon { color: #9a5f00; background: rgba(255, 241, 217, .9); }
.eq-home-shell .eq-home-tool-card.is-context .eq-home-tool-icon { color: #6a48bb; background: rgba(239, 233, 252, .9); }
.eq-home-shell .eq-home-tool-card.is-guide .eq-home-tool-icon { color: #08765a; background: rgba(222, 245, 236, .9); }
.eq-home-shell .eq-home-tool-card.is-roadmap .eq-home-tool-icon { color: #b23d35; background: rgba(254, 233, 230, .9); }
.eq-home-shell .eq-home-tool-card.is-video .eq-home-tool-icon { color: #ad3d57; background: rgba(253, 232, 237, .9); }
.eq-home-shell .eq-home-tool-card.is-dialogue .eq-home-tool-icon { color: #6842bd; background: rgba(233, 224, 250, .9); }

.eq-home-shell .eq-home-cycle {
    margin: 0;
    padding: 24px 0 0;
}

.eq-home-shell .eq-home-cycle-heading {
    margin-bottom: 24px;
}

.eq-home-shell .eq-home-cycle-heading h2 {
    max-width: 760px;
    margin: 9px 0 0;
    color: #17233c;
    font-size: var(--home-title-size);
    font-weight: 600;
    line-height: 1.14;
    letter-spacing: -.03em;
}

.eq-home-shell .eq-home-cycle-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.eq-home-shell .eq-home-cycle-tab,
.eq-home-shell .eq-home-cycle-panel {
    --cycle-accent: #1d5df3;
    --cycle-soft: #e9efff;
    --cycle-border: #bdcef8;
}

.eq-home-shell .eq-home-cycle-tab.is-article,
.eq-home-shell .eq-home-cycle-panel.is-article {
    --cycle-accent: #7353c9;
    --cycle-soft: #f0ebfb;
    --cycle-border: #d6c8f2;
}

.eq-home-shell .eq-home-cycle-tab.is-practice,
.eq-home-shell .eq-home-cycle-panel.is-practice {
    --cycle-accent: #c95848;
    --cycle-soft: #fcece8;
    --cycle-border: #efc7bf;
}

.eq-home-shell .eq-home-cycle-tab.is-skills,
.eq-home-shell .eq-home-cycle-panel.is-skills {
    --cycle-accent: #127860;
    --cycle-soft: #e5f5ef;
    --cycle-border: #bfe2d6;
}

.eq-home-shell .eq-home-cycle-tab {
    position: relative;
    min-width: 0;
    min-height: 216px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #1d2a44;
    border: 1px solid #dce3ef;
    border-radius: 20px;
    background:
        radial-gradient(circle at 100% 0, color-mix(in srgb, var(--cycle-soft) 72%, transparent), transparent 9rem),
        rgba(255, 255, 255, .93);
    box-shadow: 0 8px 25px rgba(31, 49, 88, .055);
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.eq-home-shell .eq-home-cycle-tab::before {
    content: "";
    position: absolute;
    top: 0;
    right: 28px;
    left: 28px;
    height: 3px;
    background: var(--cycle-accent);
    border-radius: 0 0 999px 999px;
    opacity: .22;
    transition: right 180ms ease, left 180ms ease, opacity 180ms ease;
}

.eq-home-shell .eq-home-cycle-tab:hover {
    border-color: var(--cycle-border);
    box-shadow: 0 14px 34px rgba(31, 49, 88, .1);
    transform: translateY(-3px);
}

.eq-home-shell .eq-home-cycle-tab.is-active {
    border-color: var(--cycle-border);
    background:
        radial-gradient(circle at 100% 0, var(--cycle-soft), transparent 11rem),
        #fff;
    box-shadow: 0 17px 42px color-mix(in srgb, var(--cycle-accent) 16%, transparent);
    transform: translateY(-4px);
}

.eq-home-shell .eq-home-cycle-tab.is-active::before {
    right: 18px;
    left: 18px;
    opacity: 1;
}

.eq-home-shell .eq-home-cycle-tab-number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--cycle-accent);
    background: var(--cycle-soft);
    border: 1px solid var(--cycle-border);
    border-radius: 13px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
}

.eq-home-shell .eq-home-cycle-tab > strong {
    margin-top: 16px;
    color: #18253f;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
}

.eq-home-shell .eq-home-cycle-tab-copy {
    margin-top: 8px;
    color: #65728a;
    font-size: var(--home-supporting-size);
    line-height: 1.5;
}

.eq-home-shell .eq-home-cycle-access {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #116044;
    background: rgba(222, 245, 234, .94);
    border: 1px solid #c1e8d4;
    border-radius: 999px;
    font-size: var(--home-label-size);
    font-weight: 700;
    letter-spacing: .035em;
}

.eq-home-shell .eq-home-cycle-access {
    margin-top: auto;
    padding: 6px 8px;
}

.eq-home-shell .eq-home-cycle-access i {
    font-size: 8px;
    font-style: normal;
}

.eq-home-shell .eq-home-cycle-panels {
    margin-top: 12px;
}

.eq-home-shell .eq-home-cycle-panel[hidden] {
    display: none;
}

.eq-home-shell .eq-home-cycle-panel {
    position: relative;
    min-height: 0;
    overflow: hidden;
    padding: 32px;
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(400px, 1.1fr);
    align-items: center;
    gap: 32px;
    border: 1px solid var(--cycle-border);
    border-radius: 22px;
    background:
        radial-gradient(circle at 92% 6%, var(--cycle-soft), transparent 23rem),
        linear-gradient(135deg, #fff 0%, #fbfcff 100%);
    box-shadow: 0 20px 54px rgba(31, 49, 88, .085);
    animation: eqHomeCyclePanelIn 240ms ease both;
}

.eq-home-shell .eq-home-cycle-panel::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: var(--cycle-accent);
}

@keyframes eqHomeCyclePanelIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.eq-home-shell .eq-home-cycle-panel-copy {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.eq-home-shell .eq-home-cycle-panel-step {
    display: block;
    color: var(--cycle-accent);
    font-size: var(--home-label-size);
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.eq-home-shell .eq-home-cycle-panel h3 {
    max-width: 470px;
    margin: 16px 0 0;
    color: #18253f;
    font-size: var(--home-panel-title-size);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.03em;
}

.eq-home-shell .eq-home-cycle-panel-copy > p {
    max-width: 500px;
    margin: 12px 0 0;
    color: #5f6d85;
    font-size: 15px;
    line-height: 1.6;
}

.eq-home-shell .eq-home-cycle-panel-copy ul {
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
    list-style: none;
}

.eq-home-shell .eq-home-cycle-panel-copy li {
    position: relative;
    padding-left: 20px;
    color: #42516c;
    font-size: 14px;
    line-height: 1.5;
}

.eq-home-shell .eq-home-cycle-panel-copy li::before {
    content: "";
    position: absolute;
    top: .48em;
    left: 2px;
    width: 7px;
    height: 7px;
    background: var(--cycle-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--cycle-soft);
}

.eq-home-shell .eq-home-cycle-panel-link {
    width: fit-content;
    min-height: 44px;
    margin-top: 22px;
    padding: 11px 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #fff;
    background: var(--cycle-accent);
    border-radius: 11px;
    box-shadow: 0 11px 24px color-mix(in srgb, var(--cycle-accent) 23%, transparent);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.eq-home-shell .eq-home-cycle-panel-link:hover {
    color: #fff;
    box-shadow: 0 14px 28px color-mix(in srgb, var(--cycle-accent) 31%, transparent);
    transform: translateY(-2px);
}

.eq-home-shell .eq-home-cycle-panel-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.eq-home-shell .eq-home-cycle-panel-link.is-quiet {
    color: var(--cycle-accent);
    background: transparent;
    border: 1px solid var(--cycle-border);
    box-shadow: none;
}

.eq-home-shell .eq-home-cycle-panel-link.is-quiet:hover {
    color: var(--cycle-accent);
    background: var(--cycle-soft);
}

.eq-home-shell .eq-home-cycle-visual {
    position: relative;
    min-width: 0;
    min-height: 312px;
    padding: clamp(20px, 2.5vw, 26px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--cycle-border) 75%, #fff);
    border-radius: 20px;
    background:
        linear-gradient(rgba(59, 91, 157, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 91, 157, .035) 1px, transparent 1px),
        rgba(255, 255, 255, .84);
    background-size: 26px 26px, 26px 26px, auto;
    box-shadow: 0 10px 28px rgba(31, 49, 88, .055);
}

.eq-home-shell .eq-home-cycle-hook {
    margin: auto 0 0;
    padding-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #56647d;
    font-size: 12px;
    font-weight: 700;
}

.eq-home-shell .eq-home-cycle-hook i {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    background: var(--cycle-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--cycle-soft);
}

.eq-home-shell .eq-home-cycle-map-levels {
    display: grid;
    grid-template-columns: 32px 1fr 32px 1fr 32px 1fr 32px 1fr 32px;
    align-items: center;
}

.eq-home-shell .eq-home-cycle-map-levels span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: #748096;
    background: #f0f3f8;
    border: 1px solid #dce3ee;
    border-radius: 50%;
    font-size: var(--home-caption-size);
    font-weight: 700;
}

.eq-home-shell .eq-home-cycle-map-levels span.is-active {
    color: #fff;
    background: var(--cycle-accent);
    border-color: var(--cycle-accent);
}

.eq-home-shell .eq-home-cycle-map-levels i {
    height: 2px;
    background: #dce3ef;
}

.eq-home-shell .eq-home-cycle-map-route {
    position: relative;
    margin-top: 20px;
    display: grid;
    gap: 8px;
}

.eq-home-shell .eq-home-cycle-map-route::before {
    content: "";
    position: absolute;
    top: 27px;
    bottom: 27px;
    left: 20px;
    width: 2px;
    background: linear-gradient(#67b495 0 34%, var(--cycle-accent) 34% 68%, #d8dfeb 68% 100%);
}

.eq-home-shell .eq-home-cycle-map-route > div {
    position: relative;
    min-height: 55px;
    padding: 7px 11px 7px 5px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    border: 1px solid #e0e6ef;
    border-radius: 13px;
    background: rgba(255, 255, 255, .95);
}

.eq-home-shell .eq-home-cycle-map-route > div.is-current {
    border-color: var(--cycle-border);
    background: var(--cycle-soft);
}

.eq-home-shell .eq-home-cycle-map-route > div > span {
    position: relative;
    z-index: 1;
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    color: #197456;
    background: #dff4ea;
    border: 4px solid #fff;
    border-radius: 50%;
    font-size: 8px;
    font-weight: 700;
}

.eq-home-shell .eq-home-cycle-map-route > div.is-current > span {
    color: #fff;
    background: var(--cycle-accent);
}

.eq-home-shell .eq-home-cycle-map-route > div:not(.is-done):not(.is-current) > span {
    color: #748096;
    background: #e9edf4;
}

.eq-home-shell .eq-home-cycle-map-route p {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.eq-home-shell .eq-home-cycle-map-route small {
    color: #7a879d;
    font-size: var(--home-caption-size);
}

.eq-home-shell .eq-home-cycle-map-route strong {
    color: #24334f;
    font-size: 13px;
    line-height: 1.25;
}

.eq-home-shell .eq-home-cycle-map-route b,
.eq-home-shell .eq-home-cycle-map-route em {
    color: var(--cycle-accent);
    font-size: var(--home-caption-size);
    font-style: normal;
}

.eq-home-shell .eq-home-cycle-map-route em {
    padding: 5px 7px;
    background: rgba(255, 255, 255, .75);
    border-radius: 999px;
    font-weight: 700;
}

.eq-home-shell .eq-home-cycle-article-visual > article {
    width: min(440px, 100%);
    margin: 0 auto 20px;
    padding: 24px;
    border: 1px solid #e1e5ef;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(41, 50, 84, .08);
}

.eq-home-shell .eq-home-cycle-article-visual header {
    display: flex;
    justify-content: space-between;
    color: var(--cycle-accent);
    font-size: var(--home-caption-size);
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.eq-home-shell .eq-home-cycle-article-visual h4 {
    margin: 14px 0 0;
    color: #202d48;
    font-size: 23px;
    line-height: 1.1;
}

.eq-home-shell .eq-home-cycle-article-visual article > p {
    margin: 8px 0 0;
    color: #69758a;
    font-size: 13px;
    line-height: 1.55;
}

.eq-home-shell .eq-home-cycle-article-example,
.eq-home-shell .eq-home-cycle-article-rule {
    margin-top: 15px;
    padding: 12px 14px;
    border-radius: 11px;
}

.eq-home-shell .eq-home-cycle-article-example {
    color: #394865;
    background: var(--cycle-soft);
}

.eq-home-shell .eq-home-cycle-article-example small,
.eq-home-shell .eq-home-cycle-article-rule span {
    color: var(--cycle-accent);
    font-size: var(--home-caption-size);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.eq-home-shell .eq-home-cycle-article-example p,
.eq-home-shell .eq-home-cycle-article-rule p {
    margin: 5px 0 0;
    font-size: 13px;
    line-height: 1.45;
}

.eq-home-shell .eq-home-cycle-article-example mark {
    padding: 1px 3px;
    color: var(--cycle-accent);
    background: rgba(255, 255, 255, .72);
    border-radius: 4px;
}

.eq-home-shell .eq-home-cycle-article-rule {
    color: #43506a;
    border: 1px dashed var(--cycle-border);
    background: #fbfaff;
}

.eq-home-shell .eq-home-cycle-practice-prompt {
    margin: 0 0 19px;
    color: #25334e;
    font-size: clamp(18px, 2vw, 23px);
    font-weight: 700;
    line-height: 1.3;
}

.eq-home-shell .eq-home-cycle-practice-answer,
.eq-home-shell .eq-home-cycle-practice-result {
    padding: 14px 16px;
    border: 1px solid #e0e5ee;
    border-radius: 12px;
    background: #f8f9fc;
}

.eq-home-shell .eq-home-cycle-practice-result {
    margin-top: 9px;
    border-color: var(--cycle-border);
    background: var(--cycle-soft);
}

.eq-home-shell .eq-home-cycle-practice-answer small,
.eq-home-shell .eq-home-cycle-practice-result small {
    color: #7a879b;
    font-size: var(--home-caption-size);
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.eq-home-shell .eq-home-cycle-practice-answer p,
.eq-home-shell .eq-home-cycle-practice-result p {
    margin: 6px 0 0;
    color: #34425e;
    font: 600 14px/1.55 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.eq-home-shell .eq-home-cycle-practice-answer del {
    padding: 2px 3px;
    color: #a34139;
    background: #fde2dd;
    border-radius: 4px;
}

.eq-home-shell .eq-home-cycle-practice-result mark {
    padding: 2px 3px;
    color: #854033;
    background: #fff;
    border-radius: 4px;
}

.eq-home-shell .eq-home-cycle-skills-visual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: center;
    gap: 12px;
}

.eq-home-shell .eq-home-cycle-skill-card {
    min-height: 200px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    border: 1px solid #dfe6ef;
    border-radius: 16px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 10px 25px rgba(31, 49, 88, .07);
}

.eq-home-shell .eq-home-cycle-skill-card header {
    display: flex;
    align-items: center;
    gap: 9px;
}

.eq-home-shell .eq-home-cycle-skill-card header span {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    color: var(--cycle-accent);
    background: var(--cycle-soft);
    border-radius: 9px;
    font-size: var(--home-caption-size);
    font-weight: 700;
}

.eq-home-shell .eq-home-cycle-skill-card header strong {
    color: #273550;
    font-size: 13px;
}

.eq-home-shell .eq-home-cycle-skill-card > p {
    margin: 21px 0 0;
    color: #536079;
    font-size: 13px;
    line-height: 1.6;
}

.eq-home-shell .eq-home-cycle-skill-card mark {
    padding: 2px 3px;
    color: #116049;
    background: #dcf3e9;
    border-radius: 4px;
}

.eq-home-shell .eq-home-cycle-skill-card footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: #748096;
    font-size: var(--home-caption-size);
}

.eq-home-shell .eq-home-cycle-skill-card footer b {
    color: var(--cycle-accent);
}

.eq-home-shell .eq-home-cycle-wave {
    height: 66px;
    margin: 24px 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.eq-home-shell .eq-home-cycle-wave i {
    width: 3px;
    height: 22px;
    background: var(--cycle-accent);
    border-radius: 999px;
    opacity: .72;
}

.eq-home-shell .eq-home-cycle-wave i:nth-child(2n) { height: 43px; }
.eq-home-shell .eq-home-cycle-wave i:nth-child(3n) { height: 58px; }

.eq-home-shell .eq-home-cycle-skills-visual > .eq-home-cycle-hook {
    grid-column: 1 / -1;
}

.eq-home-shell .eq-home-roadmap {
    margin-top: 90px;
    padding: clamp(42px, 6vw, 70px);
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
    align-items: center;
    gap: clamp(44px, 7vw, 84px);
    color: #fff;
    border-radius: 32px;
    background:
        radial-gradient(circle at 86% 20%, rgba(112, 149, 255, .25), transparent 20rem),
        linear-gradient(135deg, #102044 0%, #173873 100%);
    box-shadow: 0 24px 64px rgba(18, 42, 91, .2);
}

.eq-home-shell .eq-home-roadmap .eq-home-eyebrow,
.eq-home-shell .eq-home-membership .eq-home-eyebrow { color: #9fbbff; }

.eq-home-shell .eq-home-roadmap h2,
.eq-home-shell .eq-home-membership h2 { color: #fff; }

.eq-home-shell .eq-home-roadmap-copy > p:not(.eq-home-eyebrow),
.eq-home-shell .eq-home-membership-copy > p:not(.eq-home-eyebrow):not(.eq-home-membership-trial) { color: #c9d4e9; }

.eq-home-shell .eq-home-light-link {
    margin-top: 26px;
    padding: 13px 16px;
    color: #17336e;
    background: #fff;
    border-radius: 12px;
}

.eq-home-shell .eq-home-light-link:hover {
    gap: 16px;
    color: #112955;
    background: #edf2ff;
    transform: translateY(-2px);
}

.eq-home-shell .eq-home-roadmap-proof {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 24px;
    background: rgba(7, 19, 46, .38);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.eq-home-shell .eq-home-level-track {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto;
    align-items: center;
    gap: 8px;
}

.eq-home-shell .eq-home-level-track span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #102047;
    background: #dce7ff;
    border-radius: 13px;
    font-size: 12px;
    font-weight: 700;
}

.eq-home-shell .eq-home-level-track span:last-child { color: #fff; background: #1d5df3; }
.eq-home-shell .eq-home-level-track i { height: 2px; display: block; background: rgba(186, 205, 249, .45); }

.eq-home-shell .eq-home-roadmap-stats {
    margin: 28px 0 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.eq-home-shell .eq-home-roadmap-stats div {
    padding: 16px 10px;
    text-align: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
}

.eq-home-shell .eq-home-roadmap-stats dt {
    color: #fff;
    font-size: 23px;
    font-weight: 700;
}

.eq-home-shell .eq-home-roadmap-stats dd {
    margin: 3px 0 0;
    color: #b8c7e3;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.eq-home-shell .eq-home-roadmap-proof > p {
    margin: 18px 0 0;
    color: #9faecc;
    font-size: 11px;
    line-height: 1.55;
    text-align: center;
}

.eq-home-shell .eq-home-access-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.eq-home-shell .eq-home-access-card {
    position: relative;
    min-height: 0;
    padding: clamp(28px, 3.2vw, 36px);
    overflow: hidden;
    border: 1px solid #dce5ee;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 46px rgba(31, 49, 88, .07);
}

.eq-home-shell .eq-home-access-card.is-open { background: linear-gradient(145deg, #fff 0%, #f1faf6 100%); }
.eq-home-shell .eq-home-access-card.is-plan { background: linear-gradient(145deg, #fff 0%, #f0f4ff 100%); }

.eq-home-shell .eq-home-access-icon {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #146f50;
    background: #dff4ea;
    border-radius: 14px;
    font-weight: 700;
}

.eq-home-shell .is-plan .eq-home-access-icon { color: #1d5df3; background: #dfe8ff; }

.eq-home-shell .eq-home-access-card h3 {
    max-width: 420px;
    margin: 14px 64px 12px 0;
    color: #192743;
    font-size: var(--home-card-title-size);
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: -.035em;
}

.eq-home-shell .eq-home-access-card > p:not(.eq-home-card-number) {
    max-width: 470px;
    margin: 0;
    color: #61708a;
    font-size: 15px;
    line-height: 1.6;
}

.eq-home-shell .eq-home-access-card ul {
    margin: 24px 0 0;
    padding: 20px 0 0;
    display: grid;
    gap: 11px;
    border-top: 1px solid rgba(203, 213, 227, .75);
    list-style: none;
}

.eq-home-shell .eq-home-access-card li {
    position: relative;
    padding-left: 25px;
    color: #35435e;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
}

.eq-home-shell .eq-home-access-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16815b;
    font-weight: 700;
}

.eq-home-shell .is-plan li::before { color: #1d5df3; }

.eq-home-shell .eq-home-membership {
    min-height: 0;
    margin-top: var(--home-section-space);
    padding: clamp(36px, 4vw, 48px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
    align-items: center;
    gap: clamp(36px, 4.5vw, 48px);
    color: #fff;
    border: 0;
    border-radius: 28px;
    background:
        radial-gradient(circle at 90% 18%, rgba(96, 136, 246, .26), transparent 24rem),
        linear-gradient(135deg, #101b36 0%, #182d5b 100%);
    box-shadow: 0 25px 70px rgba(20, 38, 78, .22);
}

.eq-home-shell .eq-home-membership-benefits {
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
}

.eq-home-shell .eq-home-membership-benefits li {
    min-width: 0;
    padding: 14px 13px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 13px;
    background: rgba(255, 255, 255, .055);
}

.eq-home-shell .eq-home-membership-benefits span {
    color: #86a6f7;
    font-size: var(--home-caption-size);
    font-weight: 700;
    letter-spacing: .08em;
}

.eq-home-shell .eq-home-membership-benefits strong {
    min-width: 0;
    color: #edf2ff;
    font-size: 14px;
    line-height: 1.35;
}

.eq-home-shell .eq-home-membership-trial {
    width: fit-content;
    max-width: 100%;
    margin: 20px 0 0;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #dbe6ff;
    border: 1px solid rgba(159, 187, 255, .34);
    border-radius: 13px;
    background: rgba(29, 93, 243, .17);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.eq-home-shell .eq-home-membership-trial-mark {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    color: #17356f;
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(2, 10, 30, .18);
    font-size: 19px;
    font-weight: 800;
}

.eq-home-shell .eq-home-membership-trial p {
    margin: 0;
}

.eq-home-shell .eq-home-membership-trial strong,
.eq-home-shell .eq-home-membership-trial p > span {
    display: block;
}

.eq-home-shell .eq-home-membership-trial strong {
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
}

.eq-home-shell .eq-home-membership-trial p > span {
    margin-top: 3px;
    color: #c9d6ee;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.eq-home-shell .eq-home-plan-preview {
    min-width: 0;
    width: 100%;
    max-width: 360px;
    justify-self: end;
}

.eq-home-shell .eq-home-plan-window {
    padding: 22px;
    color: #17223b;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 28px 66px rgba(2, 10, 30, .32);
    transform: none;
}

.eq-home-shell .eq-home-plan-window > header {
    padding-bottom: 18px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e8ecf3;
}

.eq-home-shell .eq-home-plan-window header span,
.eq-home-shell .eq-home-plan-window footer span {
    display: block;
    color: #7b879c;
    font-size: var(--home-caption-size);
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.eq-home-shell .eq-home-plan-window header strong {
    margin-top: 4px;
    display: block;
    color: #25334f;
    font-size: 17px;
}

.eq-home-shell .eq-home-plan-window header > b {
    width: 46px;
    height: 46px;
    margin-left: auto;
    display: grid;
    place-items: center;
    color: #fff;
    background: #1d5df3;
    border-radius: 14px;
}

.eq-home-shell .eq-home-plan-window ol {
    margin: 18px 0;
    padding: 0;
    display: grid;
    gap: 9px;
    list-style: none;
}

.eq-home-shell .eq-home-plan-window li {
    padding: 12px;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
    border: 1px solid #e5e9f1;
    border-radius: 12px;
}

.eq-home-shell .eq-home-plan-window li.is-current { border-color: #c5d5fa; background: #f2f6ff; }

.eq-home-shell .eq-home-plan-window li > span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: #60708d;
    background: #edf0f5;
    border-radius: 9px;
    font-size: var(--home-caption-size);
    font-weight: 700;
}

.eq-home-shell .eq-home-plan-window li.is-current > span { color: #fff; background: #1d5df3; }
.eq-home-shell .eq-home-plan-window li strong,
.eq-home-shell .eq-home-plan-window li small { display: block; }
.eq-home-shell .eq-home-plan-window li strong { color: #2f3d58; font-size: 13px; }
.eq-home-shell .eq-home-plan-window li small { margin-top: 2px; color: #8490a5; font-size: var(--home-caption-size); }
.eq-home-shell .eq-home-plan-window li em { color: #1d5df3; font-size: 10px; font-style: normal; font-weight: 700; text-transform: uppercase; }

.eq-home-shell .eq-home-plan-window > footer {
    padding: 16px;
    border-radius: 13px;
    background: #fff4e5;
}

.eq-home-shell .eq-home-plan-window footer strong {
    margin-top: 4px;
    display: block;
    color: #6d4a17;
    font-size: 13px;
}

.eq-home-shell .eq-home-plan-window footer > i {
    height: 6px;
    margin-top: 10px;
    overflow: hidden;
    display: block;
    background: #eadcc8;
    border-radius: 999px;
}

.eq-home-shell .eq-home-plan-window footer > i b {
    width: 38%;
    height: 100%;
    display: block;
    background: #e19a2e;
    border-radius: inherit;
}

.eq-home-shell .eq-home-faq {
    margin-top: 90px;
    display: grid;
    grid-template-columns: minmax(270px, .65fr) minmax(0, 1.35fr);
    align-items: start;
    gap: clamp(42px, 8vw, 100px);
}

.eq-home-shell .eq-home-faq h2 { font-size: clamp(27px, 3vw, 35px); }
.eq-home-shell .eq-home-faq-list { display: grid; gap: 10px; }

.eq-home-shell .eq-home-faq details {
    overflow: hidden;
    border: 1px solid #dce3ed;
    border-radius: 15px;
    background: rgba(255, 255, 255, .9);
}

.eq-home-shell .eq-home-faq summary {
    padding: 19px 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #263550;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.eq-home-shell .eq-home-faq summary::-webkit-details-marker { display: none; }
.eq-home-shell .eq-home-faq summary span { color: #1d5df3; font-size: 20px; transition: transform 160ms ease; }
.eq-home-shell .eq-home-faq details[open] summary span { transform: rotate(45deg); }

.eq-home-shell .eq-home-faq details p {
    margin: 0;
    padding: 0 21px 20px;
    color: #637087;
    font-size: 13px;
    line-height: 1.65;
}

.eq-home-shell .eq-home-final-cta {
    margin-top: 90px;
    padding: 42px 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    border: 1px solid #cedafb;
    border-radius: 25px;
    background:
        radial-gradient(circle at 88% 22%, rgba(29, 93, 243, .12), transparent 18rem),
        linear-gradient(135deg, #fff 0%, #eef3ff 100%);
}

.eq-home-shell .eq-home-final-cta h2 {
    max-width: 720px;
    font-size: clamp(27px, 3vw, 35px);
}

.eq-home-shell .eq-home-final-cta > div > p:last-child {
    margin: 10px 0 0;
    color: #64718a;
    font-size: 13px;
}

.eq-home-shell .eq-home-final-cta > a { flex: 0 0 auto; }

.eq-home-shell .eq-home-primary-link:focus-visible,
.eq-home-shell .eq-home-light-link:focus-visible,
.eq-home-shell .eq-home-cycle-tab:focus-visible,
.eq-home-shell .eq-home-cycle-panel:focus-visible,
.eq-home-shell .eq-home-cycle-panel-link:focus-visible,
.eq-home-shell .eq-home-tool-card:focus-visible,
.eq-home-shell .eq-home-faq summary:focus-visible {
    outline: 3px solid rgba(29, 93, 243, .3);
    outline-offset: 4px;
}

@media (min-width: 1201px) {
    .eq-home-shell .eq-home-membership-benefits strong { white-space: nowrap; }
}

@media (max-width: 1200px) {
    .eq-home-shell .eq-home-membership-benefits { grid-template-columns: 1fr; }
}

@media (max-width: 1060px) {
    .eq-home-shell .eq-home-membership { grid-template-columns: minmax(0, 1fr) 330px; gap: 32px; }
}

@media (max-width: 860px) {
    .eq-home-shell .eq-home-hero { padding: 44px 0 24px; }
    .eq-home-shell .eq-home-cycle-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .eq-home-shell .eq-home-cycle-panel { min-height: 0; grid-template-columns: 1fr; gap: 34px; }
    .eq-home-shell .eq-home-cycle-panel-copy { max-width: 620px; }
    .eq-home-shell .eq-home-cycle-visual { min-height: 320px; }
    .eq-home-shell .eq-home-section-heading { grid-template-columns: 1fr; align-items: start; gap: 16px; }
    .eq-home-shell .eq-home-tool-detail { gap: 20px; }
    .eq-home-shell .eq-home-roadmap,
    .eq-home-shell .eq-home-membership { grid-template-columns: 1fr; }
    .eq-home-shell .eq-home-access-grid { grid-template-columns: 1fr; }
    .eq-home-shell .eq-home-access-card { min-height: 0; }
    .eq-home-shell .eq-home-plan-preview { width: min(420px, 100%); max-width: 420px; justify-self: center; }
    .eq-home-shell .eq-home-faq { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 580px) {
    .eq-home-shell .eq-home {
        width: calc(100% - 28px);
        padding-bottom: 52px;
    }

    .eq-home-shell .eq-home-hero { padding: 36px 0 20px; }
    .eq-home-shell .eq-home-hero h1 { margin-top: 10px; font-size: clamp(32px, 9vw, 37px); }
    .eq-home-shell .eq-home-primary-link { width: 100%; }
    .eq-home-shell .eq-home-cycle { padding-top: 20px; }
    .eq-home-shell .eq-home-cycle-heading { margin-bottom: 20px; }
    .eq-home-shell .eq-home-cycle-heading h2 { font-size: 27px; }
    .eq-home-shell .eq-home-cycle-tabs {
        width: calc(100% + 14px);
        margin-right: -14px;
        padding: 5px 14px 13px 0;
        display: flex;
        gap: 11px;
        overflow-x: auto;
        scroll-padding-left: 0;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }
    .eq-home-shell .eq-home-cycle-tabs::-webkit-scrollbar { display: none; }
    .eq-home-shell .eq-home-cycle-tab {
        min-width: min(78vw, 280px);
        min-height: 218px;
        padding: 18px;
        scroll-snap-align: start;
    }
    .eq-home-shell .eq-home-cycle-tab > strong { font-size: 16px; }
    .eq-home-shell .eq-home-cycle-tab-copy { font-size: var(--home-supporting-size); }
    .eq-home-shell .eq-home-cycle-panels { margin-top: 12px; }
    .eq-home-shell .eq-home-cycle-panel { padding: 25px 19px; gap: 28px; border-radius: 21px; }
    .eq-home-shell .eq-home-cycle-panel h3 { font-size: 26px; }
    .eq-home-shell .eq-home-cycle-panel-copy > p { font-size: 15px; }
    .eq-home-shell .eq-home-cycle-visual { min-height: 320px; padding: 18px; border-radius: 18px; }
    .eq-home-shell .eq-home-cycle-map-levels { grid-template-columns: 28px 1fr 28px 1fr 28px 1fr 28px 1fr 28px; }
    .eq-home-shell .eq-home-cycle-map-levels span { width: 28px; height: 28px; font-size: 8px; }
    .eq-home-shell .eq-home-cycle-map-route > div { grid-template-columns: 38px minmax(0, 1fr) auto; }
    .eq-home-shell .eq-home-cycle-skills-visual { grid-template-columns: 1fr; }
    .eq-home-shell .eq-home-cycle-skill-card { min-height: 170px; }
    .eq-home-shell .eq-home-cycle-skills-visual > .eq-home-cycle-hook { grid-column: 1; }
    .eq-home-shell .eq-home-cycle-panel-links { align-items: stretch; flex-direction: column; }
    .eq-home-shell .eq-home-cycle-panel-links .eq-home-cycle-panel-link { width: 100%; }
    .eq-home-shell .eq-home-section,
    .eq-home-shell .eq-home-access { padding-top: 48px; }
    .eq-home-shell .eq-home-section-heading { margin-bottom: 24px; }
    .eq-home-shell .eq-home-section-heading h2,
    .eq-home-shell .eq-home-roadmap h2,
    .eq-home-shell .eq-home-membership h2,
    .eq-home-shell .eq-home-faq h2,
    .eq-home-shell .eq-home-final-cta h2 { font-size: 28px; }
    .eq-home-shell .eq-home-tool-heading { margin-bottom: 24px; }
    .eq-home-shell .eq-home-tool-list { gap: 8px; }
    .eq-home-shell .eq-home-tool-card,
    .eq-home-shell .eq-home-tool-card:hover,
    .eq-home-shell .eq-home-tool-card:focus-visible {
        width: 100%;
        margin: 0;
    }
    .eq-home-shell .eq-home-tool-card::before { opacity: .94; }
    .eq-home-shell .eq-home-tool-summary {
        min-height: 70px;
        padding: 10px 14px;
        grid-template-columns: 42px minmax(0, 1fr) auto;
        gap: 11px;
    }
    .eq-home-shell .eq-home-tool-summary > strong { font-size: 16px; }
    .eq-home-shell .eq-home-tool-icon { width: 42px; height: 42px; }
    .eq-home-shell .eq-home-tool-status { padding: 5px 6px; font-size: 8px; }
    .eq-home-shell .eq-home-tool-chevron { display: none; }
    .eq-home-shell .eq-home-tool-detail,
    .eq-home-shell .eq-home-tool-card:hover .eq-home-tool-detail,
    .eq-home-shell .eq-home-tool-card:focus-visible .eq-home-tool-detail {
        max-height: none;
        min-height: 0;
        padding: 14px;
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        border-top-color: rgba(50, 71, 105, .14);
        opacity: 1;
    }
    .eq-home-shell .eq-home-tool-detail > em { padding: 10px 12px; }
    .eq-home-shell .eq-home-roadmap { margin-top: 68px; padding: 30px 22px; border-radius: 22px; }
    .eq-home-shell .eq-home-membership { margin-top: 48px; padding: 30px 22px; border-radius: 22px; }
    .eq-home-shell .eq-home-roadmap { gap: 30px; }
    .eq-home-shell .eq-home-roadmap-proof { padding: 20px 15px; }
    .eq-home-shell .eq-home-level-track { gap: 4px; }
    .eq-home-shell .eq-home-level-track span { width: 36px; height: 36px; border-radius: 10px; font-size: 10px; }
    .eq-home-shell .eq-home-roadmap-stats { grid-template-columns: repeat(2, 1fr); }
    .eq-home-shell .eq-home-access-card { padding: 26px 22px; border-radius: 20px; }
    .eq-home-shell .eq-home-access-icon { top: 25px; right: 22px; }
    .eq-home-shell .eq-home-access-card h3 { margin-right: 54px; font-size: 23px; }
    .eq-home-shell .eq-home-membership-benefits { grid-template-columns: 1fr; }
    .eq-home-shell .eq-home-membership-trial { width: 100%; align-items: flex-start; }
    .eq-home-shell .eq-home-plan-preview { width: 100%; max-width: none; }
    .eq-home-shell .eq-home-plan-window { padding: 17px; border-radius: 18px; transform: none; }
    .eq-home-shell .eq-home-plan-window li { grid-template-columns: 28px minmax(0, 1fr); }
    .eq-home-shell .eq-home-plan-window li em { display: none; }
    .eq-home-shell .eq-home-faq { margin-top: 68px; }
    .eq-home-shell .eq-home-faq summary { padding: 17px; }
    .eq-home-shell .eq-home-faq details p { padding: 0 17px 18px; }
    .eq-home-shell .eq-home-final-cta {
        margin-top: 68px;
        padding: 30px 22px;
        align-items: stretch;
        flex-direction: column;
        border-radius: 20px;
    }
}

@media (hover: none) {
    .eq-home-shell .eq-home-tool-card,
    .eq-home-shell .eq-home-tool-card:hover,
    .eq-home-shell .eq-home-tool-card:focus-visible {
        width: 100%;
        margin: 0;
    }

    .eq-home-shell .eq-home-tool-card::before { opacity: .94; }
    .eq-home-shell .eq-home-tool-chevron { display: none; }
    .eq-home-shell .eq-home-tool-detail,
    .eq-home-shell .eq-home-tool-card:hover .eq-home-tool-detail,
    .eq-home-shell .eq-home-tool-card:focus-visible .eq-home-tool-detail {
        max-height: none;
        min-height: 0;
        padding: 18px 22px 20px;
        border-top-color: rgba(50, 71, 105, .14);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .eq-home-shell .eq-home-primary-link,
    .eq-home-shell .eq-home-light-link,
    .eq-home-shell .eq-home-cycle-tab,
    .eq-home-shell .eq-home-cycle-tab::before,
    .eq-home-shell .eq-home-cycle-panel-link,
    .eq-home-shell .eq-home-tool-card,
    .eq-home-shell .eq-home-tool-card::before,
    .eq-home-shell .eq-home-tool-detail,
    .eq-home-shell .eq-home-tool-chevron,
    .eq-home-shell .eq-home-faq summary span {
        transition: none;
    }

    .eq-home-shell .eq-home-cycle-panel { animation: none; }
}

/* Match the visual language of /practice/sentences without changing shared UI. */
.eq-home-shell {
    --home-display-size: clamp(1.55rem, 2.4vw, 1.9rem);
    --home-title-size: clamp(20px, 2vw, 22px);
    --home-panel-title-size: clamp(18px, 2vw, 22px);
    --home-card-title-size: clamp(18px, 2vw, 22px);
    --home-body-size: .86rem;
    --home-supporting-size: .82rem;
    --home-label-size: 11px;
    --home-caption-size: 10px;
    --home-section-space: 34px;
    color: var(--ink);
    background: var(--background);
}

.eq-home-shell .eq-home {
    width: min(1120px, calc(100% - 40px));
    padding: 34px 0 92px;
}

.eq-home-shell .eq-home-eyebrow {
    margin: 0 0 17px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.eq-home-shell .eq-home-eyebrow::before {
    content: "";
    width: 22px;
    height: 3px;
    flex: 0 0 auto;
    border-radius: 3px;
    background: var(--red);
}

.eq-home-shell .eq-home-card-number {
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.eq-home-shell .eq-home-hero {
    margin: 0 0 24px;
    padding: 0 0 18px;
    border-bottom: 1px solid var(--line);
}

.eq-home-shell .eq-home-hero h1 {
    max-width: 1080px;
    margin: 5px 0 7px;
    color: var(--ink);
    font-size: var(--home-display-size);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.03em;
}

.eq-home-shell .eq-home-hero h1 em {
    display: inline;
    color: var(--blue);
    font-weight: inherit;
}

.eq-home-shell .eq-home-cycle {
    padding: 0;
}

.eq-home-shell .eq-home-cycle-heading,
.eq-home-shell .eq-home-section-heading {
    margin-bottom: 19px;
}

.eq-home-shell .eq-home-cycle-heading h2,
.eq-home-shell .eq-home-section-heading h2,
.eq-home-shell .eq-home-membership h2 {
    margin: 5px 0 0;
    color: var(--ink);
    font-size: var(--home-title-size);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -.02em;
}

.eq-home-shell .eq-home-cycle-tabs {
    gap: 12px;
}

.eq-home-shell .eq-home-cycle-tab[class],
.eq-home-shell .eq-home-cycle-panel[class] {
    --cycle-accent: var(--blue);
    --cycle-soft: #f3f6ff;
    --cycle-border: #cbd8ff;
}

.eq-home-shell .eq-home-cycle-tab {
    min-height: 172px;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    box-shadow: 0 8px 24px rgba(31, 49, 88, .045);
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.eq-home-shell .eq-home-cycle-tab::before {
    display: none;
}

.eq-home-shell .eq-home-cycle-tab:hover {
    border-color: #b9c8e8;
    background: #fbfcff;
    box-shadow: 0 8px 24px rgba(31, 49, 88, .065);
    transform: none;
}

.eq-home-shell .eq-home-cycle-tab.is-active {
    border-color: #9eb9fa;
    background: #f3f6ff;
    box-shadow:
        0 0 0 4px rgba(29, 93, 243, .06),
        0 8px 24px rgba(31, 49, 88, .05);
    transform: none;
}

.eq-home-shell .eq-home-cycle-tab-number {
    width: 34px;
    height: 34px;
    color: var(--blue);
    border: 1px solid #cbd8ff;
    border-radius: 7px;
    background: var(--blue-soft);
    font-size: 11px;
    font-weight: 900;
}

.eq-home-shell .eq-home-cycle-tab > strong {
    margin-top: 13px;
    color: var(--ink);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.eq-home-shell .eq-home-cycle-tab-copy {
    margin-top: 6px;
    color: #59647c;
    font-size: var(--home-supporting-size);
    line-height: 1.55;
}

.eq-home-shell .eq-home-cycle-access {
    margin-top: auto;
    padding: 5px 7px;
    gap: 5px;
    color: #365170;
    border: 1px solid #d7deeb;
    border-radius: 8px;
    background: #f5f7fb;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .02em;
}

.eq-home-shell .eq-home-cycle-panels {
    margin-top: 19px;
}

.eq-home-shell .eq-home-cycle-panel {
    padding: 30px 34px;
    grid-template-columns: minmax(280px, .9fr) minmax(400px, 1.1fr);
    gap: 32px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    box-shadow: 0 8px 24px rgba(31, 49, 88, .045);
    animation: none;
}

.eq-home-shell .eq-home-cycle-panel::before {
    display: none;
}

.eq-home-shell .eq-home-cycle-panel-step {
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: .08em;
}

.eq-home-shell .eq-home-cycle-panel h3 {
    margin: 10px 0 0;
    color: var(--ink);
    font-size: var(--home-panel-title-size);
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: -.02em;
}

.eq-home-shell .eq-home-cycle-panel-copy > p {
    margin: 8px 0 0;
    color: #59647c;
    font-size: var(--home-body-size);
    line-height: 1.55;
}

.eq-home-shell .eq-home-cycle-panel-copy ul {
    margin-top: 16px;
    gap: 8px;
}

.eq-home-shell .eq-home-cycle-panel-copy li {
    padding-left: 19px;
    color: #42516c;
    font-size: .82rem;
    line-height: 1.5;
}

.eq-home-shell .eq-home-cycle-panel-copy li::before {
    top: .5em;
    width: 6px;
    height: 6px;
    background: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-soft);
}

.eq-home-shell .eq-home-cycle-panel-link,
.eq-home-shell .eq-home-light-link {
    min-height: 0;
    margin-top: 19px;
    padding: 11px 17px;
    gap: 8px;
    color: #fff;
    border: 0;
    border-radius: 8px;
    background: var(--blue);
    box-shadow: none;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.3;
}

.eq-home-shell .eq-home-cycle-panel-link:hover,
.eq-home-shell .eq-home-light-link:hover {
    gap: 8px;
    color: #fff;
    background: var(--blue-dark);
    box-shadow: none;
    transform: translateY(-1px);
}

.eq-home-shell .eq-home-cycle-panel-link.is-quiet {
    color: var(--blue);
    border: 1px solid #ccd5e8;
    background: #fff;
}

.eq-home-shell .eq-home-cycle-panel-link.is-quiet:hover {
    color: var(--blue-dark);
    border-color: #aebbd2;
    background: #f7f9fd;
}

.eq-home-shell .eq-home-cycle-visual {
    min-height: 286px;
    padding: 24px;
    border: 1px solid #dce3ef;
    border-radius: 12px;
    background: #fbfcff;
    box-shadow: none;
}

.eq-home-shell .eq-home-cycle-hook {
    padding-top: 14px;
    color: #59647c;
    font-size: 11px;
    font-weight: 800;
}

.eq-home-shell .eq-home-cycle-hook i {
    width: 7px;
    height: 7px;
    background: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-soft);
}

.eq-home-shell .eq-home-cycle-map-levels span,
.eq-home-shell .eq-home-cycle-map-route > div,
.eq-home-shell .eq-home-cycle-map-route em,
.eq-home-shell .eq-home-cycle-article-example,
.eq-home-shell .eq-home-cycle-article-rule {
    border-radius: 8px;
}

.eq-home-shell .eq-home-cycle-map-levels span {
    border-color: #d7deeb;
}

.eq-home-shell .eq-home-cycle-map-route > div {
    border-color: var(--line);
}

.eq-home-shell .eq-home-cycle-map-route > div.is-current {
    border-color: #cbd8ff;
    background: #f3f6ff;
}

.eq-home-shell .eq-home-cycle-article-visual > article {
    padding: 22px;
    border-color: var(--line);
    border-radius: 12px;
    box-shadow: none;
}

.eq-home-shell .eq-home-cycle-article-visual h4 {
    font-size: 21px;
    line-height: 1.25;
}

.eq-home-shell .eq-home-cycle-practice-prompt {
    color: var(--ink);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 800;
    line-height: 1.45;
}

.eq-home-shell .eq-home-cycle-practice-answer,
.eq-home-shell .eq-home-cycle-practice-result {
    padding: 14px 16px;
    border-color: #dce3ef;
    border-radius: 8px;
    background: #fbfcff;
}

.eq-home-shell .eq-home-cycle-practice-result {
    background: #f7fffb;
}

.eq-home-shell .eq-home-cycle-practice-answer small,
.eq-home-shell .eq-home-cycle-practice-result small {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
}

.eq-home-shell .eq-home-cycle-practice-answer p,
.eq-home-shell .eq-home-cycle-practice-result p {
    font: 700 17px/1.75 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.eq-home-shell .eq-home-cycle-practice-answer del {
    color: #b52925;
    background: #ffe3e1;
    text-decoration-color: #b52925;
}

.eq-home-shell .eq-home-cycle-practice-result mark {
    color: #087650;
    border-bottom: 2px solid #69c69c;
    background: #d9f8e9;
}

.eq-home-shell .eq-home-cycle-skill-card {
    border-color: var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: none;
}

.eq-home-shell .eq-home-cycle-skill-card header span {
    color: var(--blue);
    border-radius: 7px;
    background: var(--blue-soft);
}

.eq-home-shell .eq-home-access {
    padding-top: var(--home-section-space);
}

.eq-home-shell .eq-home-access-grid {
    gap: 19px;
}

.eq-home-shell .eq-home-access-card {
    padding: 24px 34px 30px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    box-shadow: 0 8px 24px rgba(31, 49, 88, .045);
}

.eq-home-shell .eq-home-access-card.is-open,
.eq-home-shell .eq-home-access-card.is-plan {
    background: var(--paper);
}

.eq-home-shell .eq-home-access-icon {
    top: 24px;
    right: 34px;
    width: 34px;
    height: 34px;
    color: var(--blue);
    border: 1px solid #cbd8ff;
    border-radius: 7px;
    background: var(--blue-soft);
    font-size: 11px;
    font-weight: 900;
}

.eq-home-shell .eq-home-access-card h3 {
    margin: 10px 52px 8px 0;
    color: var(--ink);
    font-size: var(--home-card-title-size);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -.02em;
}

.eq-home-shell .eq-home-access-card > p:not(.eq-home-card-number) {
    color: #59647c;
    font-size: var(--home-body-size);
    line-height: 1.55;
}

.eq-home-shell .eq-home-access-card ul {
    margin-top: 19px;
    padding-top: 16px;
    gap: 8px;
    border-top-color: var(--line);
}

.eq-home-shell .eq-home-access-card li {
    padding-left: 21px;
    color: #42516c;
    font-size: .82rem;
    font-weight: 700;
    line-height: 1.5;
}

.eq-home-shell .eq-home-membership {
    margin-top: var(--home-section-space);
    padding: 30px 34px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
    gap: 34px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    box-shadow: 0 8px 24px rgba(31, 49, 88, .045);
}

.eq-home-shell .eq-home-membership .eq-home-eyebrow {
    color: var(--blue);
}

.eq-home-shell .eq-home-membership-copy > p:not(.eq-home-eyebrow):not(.eq-home-membership-trial) {
    margin: 8px 0 0;
    color: #59647c;
    font-size: var(--home-body-size);
    line-height: 1.55;
}

.eq-home-shell .eq-home-membership-benefits {
    margin-top: 19px;
    gap: 9px;
}

.eq-home-shell .eq-home-membership-benefits li {
    padding: 12px;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfcff;
}

.eq-home-shell .eq-home-membership-benefits span {
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
}

.eq-home-shell .eq-home-membership-benefits strong {
    color: #2f3d58;
    font-size: .82rem;
    font-weight: 800;
    white-space: normal;
}

.eq-home-shell .eq-home-membership-trial {
    margin-top: 16px;
    padding: 11px 12px;
    color: #365170;
    border: 1px solid #cbd8ff;
    border-radius: 8px;
    background: #f3f6ff;
    box-shadow: none;
}

.eq-home-shell .eq-home-membership-trial-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    color: #fff;
    border-radius: 7px;
    background: var(--blue);
    box-shadow: none;
    font-size: 16px;
}

.eq-home-shell .eq-home-membership-trial strong {
    color: #2f3d58;
    font-size: 13px;
}

.eq-home-shell .eq-home-membership-trial p > span {
    color: #59647c;
    font-size: 12px;
}

.eq-home-shell .eq-home-plan-preview {
    max-width: 360px;
}

.eq-home-shell .eq-home-plan-window {
    padding: 20px;
    border: 1px solid #dce3ef;
    border-radius: 12px;
    background: #fbfcff;
    box-shadow: none;
}

.eq-home-shell .eq-home-plan-window header > b {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--blue);
}

.eq-home-shell .eq-home-plan-window li {
    border-color: var(--line);
    border-radius: 8px;
    background: #fff;
}

.eq-home-shell .eq-home-plan-window li.is-current {
    border-color: #cbd8ff;
    background: #f3f6ff;
}

.eq-home-shell .eq-home-plan-window li > span {
    border-radius: 7px;
}

.eq-home-shell .eq-home-plan-window > footer {
    border: 1px solid #f0dfc4;
    border-radius: 8px;
    background: #fff9ef;
}

.eq-home-shell .eq-home-primary-link:focus-visible,
.eq-home-shell .eq-home-light-link:focus-visible,
.eq-home-shell .eq-home-cycle-tab:focus-visible,
.eq-home-shell .eq-home-cycle-panel:focus-visible,
.eq-home-shell .eq-home-cycle-panel-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(29, 93, 243, .09);
}

@media (max-width: 900px) {
    .eq-home-shell .eq-home-cycle-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 850px) {
    .eq-home-shell .eq-home-cycle-panel,
    .eq-home-shell .eq-home-membership {
        grid-template-columns: 1fr;
    }

    .eq-home-shell .eq-home-access-grid {
        grid-template-columns: 1fr;
    }

    .eq-home-shell .eq-home-plan-preview {
        width: min(520px, 100%);
        max-width: 520px;
        justify-self: center;
    }
}

@media (max-width: 650px) {
    .eq-home-shell .eq-home {
        width: calc(100% - 28px);
        padding: 28px 0 65px;
    }

    .eq-home-shell .eq-home-hero {
        margin-bottom: 20px;
        padding: 0 0 16px;
    }

    .eq-home-shell .eq-home-hero h1 {
        margin-top: 5px;
        font-size: 1.5rem;
    }

    .eq-home-shell .eq-home-cycle-heading h2,
    .eq-home-shell .eq-home-section-heading h2,
    .eq-home-shell .eq-home-membership h2 {
        font-size: 1.25rem;
    }

    .eq-home-shell .eq-home-cycle-tabs {
        width: 100%;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        overflow: visible;
    }

    .eq-home-shell .eq-home-cycle-tab {
        min-width: 0;
        min-height: 0;
        padding: 16px;
        border-radius: 10px;
    }

    .eq-home-shell .eq-home-cycle-panel {
        padding: 22px 20px;
        gap: 22px;
        border-radius: 10px;
    }

    .eq-home-shell .eq-home-cycle-panel h3,
    .eq-home-shell .eq-home-access-card h3 {
        font-size: 1.2rem;
    }

    .eq-home-shell .eq-home-cycle-panel-copy > p,
    .eq-home-shell .eq-home-access-card > p:not(.eq-home-card-number) {
        font-size: .86rem;
    }

    .eq-home-shell .eq-home-cycle-visual {
        min-height: 0;
        padding: 18px;
        border-radius: 10px;
    }

    .eq-home-shell .eq-home-cycle-panel-link,
    .eq-home-shell .eq-home-light-link {
        width: 100%;
    }

    .eq-home-shell .eq-home-access {
        padding-top: 34px;
    }

    .eq-home-shell .eq-home-access-card,
    .eq-home-shell .eq-home-membership {
        padding: 22px 20px;
        border-radius: 10px;
    }

    .eq-home-shell .eq-home-access-icon {
        top: 20px;
        right: 20px;
    }

    .eq-home-shell .eq-home-membership {
        margin-top: 34px;
        gap: 24px;
    }

    .eq-home-shell .eq-home-membership-benefits {
        grid-template-columns: 1fr;
    }

    .eq-home-shell .eq-home-plan-preview {
        width: 100%;
        max-width: none;
    }

    .eq-home-shell .eq-home-plan-window {
        padding: 16px;
        border-radius: 10px;
    }
}

/* Keep the homepage's original lightweight section labels and membership emphasis. */
.eq-home-shell .eq-home-eyebrow {
    margin: 0;
    display: block;
    color: #1d5df3;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.eq-home-shell .eq-home-eyebrow::before {
    display: none;
}

.eq-home-shell .eq-home-hero h1 {
    margin: 0 0 7px;
}

.eq-home-shell .eq-home-hero h1 em {
    display: block;
}

.eq-home-shell .eq-home-cycle-heading h2 {
    margin-top: 9px;
}

.eq-home-shell .eq-home-section-heading h2,
.eq-home-shell .eq-home-membership h2 {
    margin-top: 10px;
}

.eq-home-shell .eq-home-membership {
    padding: clamp(36px, 4vw, 48px);
    gap: clamp(36px, 4.5vw, 48px);
    color: #fff;
    border: 0;
    border-radius: 28px;
    background:
        radial-gradient(circle at 90% 18%, rgba(96, 136, 246, .26), transparent 24rem),
        linear-gradient(135deg, #101b36 0%, #182d5b 100%);
    box-shadow: 0 25px 70px rgba(20, 38, 78, .22);
}

.eq-home-shell .eq-home-membership .eq-home-eyebrow {
    color: #9fbbff;
}

.eq-home-shell .eq-home-membership h2 {
    color: #fff;
}

.eq-home-shell .eq-home-membership-copy > p:not(.eq-home-eyebrow):not(.eq-home-membership-trial) {
    color: #c9d4e9;
}

.eq-home-shell .eq-home-membership-benefits {
    margin-top: 24px;
    gap: 12px;
}

.eq-home-shell .eq-home-membership-benefits li {
    padding: 14px 13px;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 13px;
    background: rgba(255, 255, 255, .055);
}

.eq-home-shell .eq-home-membership-benefits span {
    color: #86a6f7;
    font-size: var(--home-caption-size);
    font-weight: 700;
    letter-spacing: .08em;
}

.eq-home-shell .eq-home-membership-benefits strong {
    color: #edf2ff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

.eq-home-shell .eq-home-light-link {
    margin-top: 26px;
    padding: 13px 16px;
    color: #17336e;
    border-radius: 12px;
    background: #fff;
    font-size: 14px;
    font-weight: 700;
}

.eq-home-shell .eq-home-light-link:hover {
    color: #112955;
    background: #edf2ff;
}

.eq-home-shell .eq-home-membership-trial {
    margin-top: 20px;
    padding: 12px 14px;
    color: #dbe6ff;
    border: 1px solid rgba(159, 187, 255, .34);
    border-radius: 13px;
    background: rgba(29, 93, 243, .17);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.eq-home-shell .eq-home-membership-trial-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    color: #17356f;
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(2, 10, 30, .18);
    font-size: 19px;
}

.eq-home-shell .eq-home-membership-trial strong {
    color: #fff;
    font-size: 14px;
}

.eq-home-shell .eq-home-membership-trial p > span {
    color: #c9d6ee;
    font-size: 13px;
    font-weight: 600;
}

.eq-home-shell .eq-home-plan-window {
    padding: 22px;
    border: 0;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 28px 66px rgba(2, 10, 30, .32);
}

.eq-home-shell .eq-home-plan-window header > b {
    width: 46px;
    height: 46px;
    border-radius: 14px;
}

.eq-home-shell .eq-home-plan-window li {
    border-color: #e5e9f1;
    border-radius: 12px;
}

.eq-home-shell .eq-home-plan-window li.is-current {
    border-color: #c5d5fa;
    background: #f2f6ff;
}

.eq-home-shell .eq-home-plan-window li > span {
    border-radius: 9px;
}

.eq-home-shell .eq-home-plan-window > footer {
    border: 0;
    border-radius: 13px;
    background: #fff4e5;
}

@media (max-width: 650px) {
    .eq-home-shell .eq-home-membership {
        padding: 30px 22px;
        border-radius: 22px;
    }

    .eq-home-shell .eq-home-membership-trial {
        width: 100%;
        align-items: flex-start;
    }

    .eq-home-shell .eq-home-plan-window {
        padding: 17px;
        border-radius: 18px;
    }
}

/* Preserve the original visual identity of the four-step learning cycle. */
.eq-home-shell .eq-home-cycle-tab.is-topic,
.eq-home-shell .eq-home-cycle-panel.is-topic {
    --cycle-accent: #1d5df3;
    --cycle-soft: #e9efff;
    --cycle-border: #bdcef8;
}

.eq-home-shell .eq-home-cycle-tab.is-article,
.eq-home-shell .eq-home-cycle-panel.is-article {
    --cycle-accent: #7353c9;
    --cycle-soft: #f0ebfb;
    --cycle-border: #d6c8f2;
}

.eq-home-shell .eq-home-cycle-tab.is-practice,
.eq-home-shell .eq-home-cycle-panel.is-practice {
    --cycle-accent: #c95848;
    --cycle-soft: #fcece8;
    --cycle-border: #efc7bf;
}

.eq-home-shell .eq-home-cycle-tab.is-skills,
.eq-home-shell .eq-home-cycle-panel.is-skills {
    --cycle-accent: #127860;
    --cycle-soft: #e5f5ef;
    --cycle-border: #bfe2d6;
}

.eq-home-shell .eq-home-cycle-tab {
    min-height: 216px;
    padding: 20px;
    border: 1px solid #dce3ef;
    border-radius: 20px;
    background:
        radial-gradient(circle at 100% 0, color-mix(in srgb, var(--cycle-soft) 72%, transparent), transparent 9rem),
        rgba(255, 255, 255, .93);
    box-shadow: 0 8px 25px rgba(31, 49, 88, .055);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.eq-home-shell .eq-home-cycle-tab::before {
    display: block;
    right: 28px;
    left: 28px;
    height: 3px;
    background: var(--cycle-accent);
    opacity: .22;
}

.eq-home-shell .eq-home-cycle-tab:hover {
    border-color: var(--cycle-border);
    background:
        radial-gradient(circle at 100% 0, color-mix(in srgb, var(--cycle-soft) 72%, transparent), transparent 9rem),
        rgba(255, 255, 255, .93);
    box-shadow: 0 14px 34px rgba(31, 49, 88, .1);
    transform: translateY(-3px);
}

.eq-home-shell .eq-home-cycle-tab.is-active {
    border-color: var(--cycle-border);
    background:
        radial-gradient(circle at 100% 0, var(--cycle-soft), transparent 11rem),
        #fff;
    box-shadow: 0 17px 42px color-mix(in srgb, var(--cycle-accent) 16%, transparent);
    transform: translateY(-4px);
}

.eq-home-shell .eq-home-cycle-tab.is-active::before {
    right: 18px;
    left: 18px;
    opacity: 1;
}

.eq-home-shell .eq-home-cycle-tab-number {
    width: 42px;
    height: 42px;
    color: var(--cycle-accent);
    border-color: var(--cycle-border);
    border-radius: 13px;
    background: var(--cycle-soft);
}

.eq-home-shell .eq-home-cycle-access {
    color: #116044;
    border-color: #c1e8d4;
    border-radius: 999px;
    background: rgba(222, 245, 234, .94);
}

.eq-home-shell .eq-home-cycle-panel {
    padding: 32px;
    border-color: var(--cycle-border);
    border-radius: 22px;
    background:
        radial-gradient(circle at 92% 6%, var(--cycle-soft), transparent 23rem),
        linear-gradient(135deg, #fff 0%, #fbfcff 100%);
    box-shadow: 0 20px 54px rgba(31, 49, 88, .085);
    animation: eqHomeCyclePanelIn 240ms ease both;
}

.eq-home-shell .eq-home-cycle-panel::before {
    display: block;
    background: var(--cycle-accent);
}

.eq-home-shell .eq-home-cycle-panel-step {
    color: var(--cycle-accent);
}

.eq-home-shell .eq-home-cycle-panel-copy li::before {
    background: var(--cycle-accent);
    box-shadow: 0 0 0 4px var(--cycle-soft);
}

.eq-home-shell .eq-home-cycle-panel-link {
    background: var(--cycle-accent);
    box-shadow: 0 11px 24px color-mix(in srgb, var(--cycle-accent) 23%, transparent);
}

.eq-home-shell .eq-home-cycle-panel-link:hover {
    background: var(--cycle-accent);
    box-shadow: 0 14px 28px color-mix(in srgb, var(--cycle-accent) 31%, transparent);
    transform: translateY(-2px);
}

.eq-home-shell .eq-home-cycle-panel-link.is-quiet {
    color: var(--cycle-accent);
    border-color: var(--cycle-border);
    background: transparent;
    box-shadow: none;
}

.eq-home-shell .eq-home-cycle-panel-link.is-quiet:hover {
    color: var(--cycle-accent);
    background: var(--cycle-soft);
    box-shadow: none;
}

.eq-home-shell .eq-home-cycle-visual {
    min-height: 312px;
    padding: clamp(20px, 2.5vw, 26px);
    border-color: color-mix(in srgb, var(--cycle-border) 75%, #fff);
    border-radius: 20px;
    background:
        linear-gradient(rgba(59, 91, 157, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 91, 157, .035) 1px, transparent 1px),
        rgba(255, 255, 255, .84);
    background-size: 26px 26px, 26px 26px, auto;
    box-shadow: 0 10px 28px rgba(31, 49, 88, .055);
}

.eq-home-shell .eq-home-cycle-hook i {
    background: var(--cycle-accent);
    box-shadow: 0 0 0 4px var(--cycle-soft);
}

.eq-home-shell .eq-home-cycle-map-route > div,
.eq-home-shell .eq-home-cycle-article-example,
.eq-home-shell .eq-home-cycle-article-rule {
    border-radius: 11px;
}

.eq-home-shell .eq-home-cycle-map-route > div {
    border-radius: 13px;
}

.eq-home-shell .eq-home-cycle-article-visual > article {
    border-radius: 17px;
    box-shadow: 0 12px 30px rgba(41, 50, 84, .08);
}

.eq-home-shell .eq-home-cycle-practice-answer,
.eq-home-shell .eq-home-cycle-practice-result {
    border-radius: 12px;
}

.eq-home-shell .eq-home-cycle-skill-card {
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(31, 49, 88, .07);
}

@media (max-width: 650px) {
    .eq-home-shell .eq-home-cycle-tabs {
        width: calc(100% + 14px);
        margin-right: -14px;
        padding: 5px 14px 13px 0;
        display: flex;
        gap: 11px;
        overflow-x: auto;
        scroll-padding-left: 0;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    .eq-home-shell .eq-home-cycle-tabs::-webkit-scrollbar {
        display: none;
    }

    .eq-home-shell .eq-home-cycle-tab {
        min-width: min(78vw, 280px);
        min-height: 218px;
        padding: 18px;
        border-radius: 20px;
        scroll-snap-align: start;
    }

    .eq-home-shell .eq-home-cycle-panel {
        padding: 25px 19px;
        gap: 28px;
        border-radius: 21px;
    }

    .eq-home-shell .eq-home-cycle-visual {
        min-height: 320px;
        padding: 18px;
        border-radius: 18px;
    }
}

/* Compact previews reuse the visual language of the real roadmap and calendar. */
.eq-home-shell .eq-home-cycle-panel::before {
    content: none;
    display: none;
}

.eq-home-shell .eq-home-membership-trial-mark svg {
    width: 22px;
    height: 22px;
    display: block;
}

.eq-home-shell .eq-home-cycle-map-visual {
    justify-content: center;
}

.eq-home-shell .eq-home-map-fragment.level-block {
    width: 100%;
    margin: 0;
    scroll-margin-top: 0;
}

.eq-home-shell .eq-home-map-fragment .level-heading {
    margin-left: 0;
    grid-template-columns: 62px minmax(0, 1fr);
}

.eq-home-shell .eq-home-map-fragment .level-medallion {
    width: 52px;
    height: 52px;
    border-width: 6px;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--level-color) 22%, transparent);
}

.eq-home-shell .eq-home-map-fragment .level-medallion::before {
    inset: -10px;
}

.eq-home-shell .eq-home-map-fragment .level-medallion span {
    font-size: 15px;
}

.eq-home-shell .eq-home-map-fragment .level-title {
    min-width: 0;
    padding: 12px 13px;
    gap: 12px;
    border-radius: 13px;
    box-shadow: 0 9px 24px rgba(33, 49, 84, .065);
}

.eq-home-shell .eq-home-map-fragment .level-title > div:first-child {
    min-width: 0;
}

.eq-home-shell .eq-home-map-fragment .level-label {
    font-size: 7px;
}

.eq-home-shell .eq-home-map-fragment .level-title h3 {
    max-width: none;
    margin: 2px 0;
    color: var(--ink);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.015em;
}

.eq-home-shell .eq-home-map-fragment .level-title p {
    max-width: 275px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.35;
}

.eq-home-shell .eq-home-map-fragment .vocabulary-target {
    min-width: 108px;
    padding: 8px 9px;
    border-radius: 9px;
}

.eq-home-shell .eq-home-map-fragment .vocabulary-target > span,
.eq-home-shell .eq-home-map-fragment .vocabulary-target small {
    font-size: 6px;
}

.eq-home-shell .eq-home-map-fragment .vocabulary-target strong {
    font-size: 12px;
}

.eq-home-shell .eq-home-map-fragment .level-stages {
    margin-left: 62px;
    padding-top: 10px;
}

.eq-home-shell .eq-home-map-fragment .level-stages::before {
    bottom: 20px;
    left: 22px;
}

.eq-home-shell .eq-home-map-fragment .study-stage {
    padding: 10px 0 2px 52px;
}

.eq-home-shell .eq-home-map-fragment .study-stage::before {
    top: 23px;
    left: 16px;
    width: 13px;
    height: 13px;
}

.eq-home-shell .eq-home-map-fragment .study-stage::after {
    top: 29px;
    left: 30px;
    width: 22px;
}

.eq-home-shell .eq-home-map-fragment .stage-heading {
    min-height: 38px;
    margin-bottom: 10px;
    gap: 8px;
}

.eq-home-shell .eq-home-map-fragment .stage-order {
    width: 31px;
    height: 31px;
    border-radius: 8px;
    font-size: 8px;
}

.eq-home-shell .eq-home-map-fragment .stage-heading small {
    font-size: 6px;
}

.eq-home-shell .eq-home-map-fragment .stage-heading h4 {
    font-size: 12px;
    line-height: 1.25;
}

.eq-home-shell .eq-home-map-fragment .relation-label {
    padding: 5px 7px;
    gap: 5px;
    font-size: 7px;
}

.eq-home-shell .eq-home-map-fragment .relation-label i {
    width: 13px;
}

.eq-home-shell .eq-home-map-fragment .stage-topics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
}

.eq-home-shell .eq-home-map-fragment .stage-topics::before {
    top: -6px;
    right: calc(16.666667% - 2.333333px);
    left: calc(16.666667% - 2.333333px);
}

.eq-home-shell .eq-home-map-fragment .topic-card::before {
    top: -6px;
    height: 6px;
}

.eq-home-shell .eq-home-map-topic {
    width: 100%;
    min-height: 68px;
    padding: 9px 7px;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) 11px;
    align-items: center;
    gap: 6px;
    color: inherit;
    border: 1px solid var(--level-border);
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 8px 21px rgba(29, 45, 79, .055);
}

.eq-home-shell .eq-home-map-topic .topic-symbol {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    font-size: 8px;
}

.eq-home-shell .eq-home-map-topic .topic-copy small {
    font-size: 5.5px;
    line-height: 1.2;
}

.eq-home-shell .eq-home-map-topic .topic-copy strong {
    font-size: 9px;
    line-height: 1.25;
}

.eq-home-shell .eq-home-map-topic .topic-state {
    font-size: 14px;
}

.eq-home-shell .eq-home-calendar-preview {
    padding: 20px;
    color: #17223b;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 28px 66px rgba(2, 10, 30, .32);
}

.eq-home-shell .eq-home-calendar-heading {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.eq-home-shell .eq-home-calendar-heading .page-eyebrow {
    margin: 0;
    color: var(--blue);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.eq-home-shell .eq-home-calendar-heading h3 {
    margin: 4px 0 0;
    color: #25334f;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.02em;
}

.eq-home-shell .eq-home-calendar-heading > b {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 38px;
    color: #fff;
    border-radius: 10px;
    background: var(--blue);
    font-size: 12px;
}

.eq-home-shell .eq-home-calendar-preview .calendar-day {
    background: #fff;
}

.eq-home-shell .eq-home-calendar-note {
    margin: 14px 2px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #68758d;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.45;
}

.eq-home-shell .eq-home-calendar-note i {
    width: 7px;
    height: 7px;
    margin-top: .35em;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-soft);
}

@media (max-width: 650px) {
    .eq-home-shell .eq-home-map-fragment .level-heading {
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .eq-home-shell .eq-home-map-fragment .level-medallion {
        width: 44px;
        height: 44px;
    }

    .eq-home-shell .eq-home-map-fragment .level-title {
        padding: 11px;
    }

    .eq-home-shell .eq-home-map-fragment .level-title p,
    .eq-home-shell .eq-home-map-fragment .vocabulary-target,
    .eq-home-shell .eq-home-map-fragment .relation-label {
        display: none;
    }

    .eq-home-shell .eq-home-map-fragment .level-stages {
        margin-left: 52px;
    }

    .eq-home-shell .eq-home-map-fragment .study-stage {
        padding-left: 38px;
    }

    .eq-home-shell .eq-home-map-fragment .study-stage::after {
        width: 8px;
    }

    .eq-home-shell .eq-home-map-fragment .stage-topics {
        grid-template-columns: 1fr;
    }

    .eq-home-shell .eq-home-map-fragment .stage-topics::before,
    .eq-home-shell .eq-home-map-fragment .topic-card::before {
        display: none;
    }

    .eq-home-shell .eq-home-map-fragment .topic-card:nth-child(3) {
        display: none;
    }

    .eq-home-shell .eq-home-map-topic {
        min-height: 55px;
        grid-template-columns: 32px minmax(0, 1fr) 14px;
    }

    .eq-home-shell .eq-home-calendar-preview {
        padding: 16px;
        border-radius: 18px;
    }
}

/* Keep the same text-to-visual proportion across every learning-cycle panel. */
.eq-home-shell .eq-home-cycle-panel {
    grid-template-columns: minmax(320px, 340px) minmax(0, 1fr);
    align-items: start;
}

@media (min-width: 1121px) {
    .eq-home-shell .eq-home-cycle-levels-note {
        white-space: nowrap;
    }
}

@media (max-width: 1120px) {
    .eq-home-shell .eq-home-cycle-panel {
        grid-template-columns: 1fr;
    }
}


/* Keep the two skill actions together inside the shared text column. */
.eq-home-shell .eq-home-cycle-panel-links {
    width: min(100%, 340px);
    margin-top: 19px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.eq-home-shell .eq-home-cycle-panel-links .eq-home-cycle-panel-link {
    width: 100%;
    margin-top: 0;
    padding-inline: 12px;
    white-space: nowrap;
}

@media (max-width: 650px) {
    .eq-home-shell .eq-home-cycle-panel-links {
        grid-template-columns: 1fr;
    }
}

/* Step 4 uses its green palette instead of the generic blue icon treatment. */
.eq-home-shell .eq-home-cycle-panel.is-skills .eq-home-cycle-skill-card header span {
    color: var(--cycle-accent);
    background: var(--cycle-soft);
}

/* Match only the guide preview to the height of the other cycle visuals. */
.eq-home-shell .eq-home-cycle-panel.is-article .eq-home-cycle-article-visual > article {
    margin-bottom: 12px;
    padding: 18px;
}

.eq-home-shell .eq-home-cycle-panel.is-article .eq-home-cycle-article-visual h4 {
    margin-top: 10px;
}

.eq-home-shell .eq-home-cycle-panel.is-article .eq-home-cycle-article-example,
.eq-home-shell .eq-home-cycle-panel.is-article .eq-home-cycle-article-rule {
    margin-top: 10px;
    padding: 10px 12px;
}

.eq-home-shell .eq-home-cycle-panel.is-article .eq-home-cycle-hook {
    padding-top: 10px;
}

.eq-home-shell .eq-home-cycle-panel.is-article .eq-home-cycle-article-visual {
    padding-block: 10px;
}
