.help-page {
    --help-ink: #06142d;
    --help-muted: #58709a;
    --help-line: #dfe8f4;
    --help-soft: #f5f9ff;
    --help-lime: #a8ff00;
    color: var(--help-ink);
    background:
        radial-gradient(circle at 88% 2%, rgba(77, 145, 255, .12), transparent 24rem),
        radial-gradient(circle at 8% 12%, rgba(168, 255, 0, .12), transparent 20rem),
        #fff;
    min-height: 70vh;
}

.help-hero {
    padding: 5.5rem 0 3.75rem;
    text-align: center;
}

.help-hero h1 {
    margin: .7rem 0 1rem;
    font-size: clamp(2.7rem, 6vw, 5.2rem);
    font-weight: 900;
    letter-spacing: -.055em;
}

.help-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--help-muted);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.65;
}

.help-eyebrow,
.help-card-kicker {
    color: #34537f;
    font-weight: 800;
    font-size: .82rem;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.help-eyebrow i {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: .55rem;
    border-radius: 50%;
    background: var(--help-lime);
    box-shadow: 0 0 0 6px rgba(168, 255, 0, .2);
}

.help-layout {
    padding-bottom: 6rem;
}

.help-article-page .help-layout {
    padding-top: 3.5rem;
}

.help-navigation-toggle {
    margin-bottom: 1rem;
    padding: .9rem 1rem;
    border: 1px solid var(--help-line);
    background: #fff;
    color: var(--help-ink);
    font-weight: 750;
    text-align: left;
}

.help-sidebar {
    position: sticky;
    top: 1.25rem;
    padding: 1rem;
    border: 1px solid var(--help-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 55px rgba(32, 77, 132, .08);
}

.help-sidebar-home,
.help-sidebar-link {
    display: flex;
    align-items: center;
    color: #29466e;
    text-decoration: none;
    transition: background-color .18s ease, color .18s ease;
}

.help-sidebar-home {
    gap: .65rem;
    padding: .8rem .9rem;
    border-radius: 13px;
    font-weight: 800;
}

.help-sidebar-home-icon {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 9px;
    background: #edf4ff;
}

.help-sidebar-group {
    margin-top: 1.15rem;
}

.help-sidebar-label {
    display: block;
    padding: 0 .9rem .4rem;
    color: #8292aa;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.help-sidebar-link {
    margin: 2px 0;
    padding: .62rem .9rem;
    border-radius: 11px;
    font-size: .92rem;
    line-height: 1.25;
}

.help-sidebar-home:hover,
.help-sidebar-link:hover,
.help-sidebar-home.active,
.help-sidebar-link.active {
    color: #06142d;
    background: #efffd0;
}

.help-sidebar-link.active {
    font-weight: 800;
}

.help-welcome-card {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(1.7rem, 4vw, 3rem);
    border-radius: 28px;
    background: var(--help-ink);
    color: #fff;
    box-shadow: 0 25px 65px rgba(6, 20, 45, .16);
}

.help-welcome-card h2 {
    margin: .5rem 0 .7rem;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 850;
    letter-spacing: -.035em;
}

.help-welcome-card p {
    max-width: 650px;
    margin: 0;
    color: #c8d5e9;
    line-height: 1.65;
}

.help-welcome-card .help-card-kicker {
    color: var(--help-lime);
}

.help-primary-button {
    flex: 0 0 auto;
    padding: .8rem 1.15rem;
    border-radius: 12px;
    background: var(--help-lime);
    color: #06142d;
    font-weight: 800;
}

.help-primary-button:hover {
    background: #b9ff31;
    color: #06142d;
}

.help-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin: 3.25rem 0 1.25rem;
}

.help-section-heading h2 {
    margin: .35rem 0 0;
    font-weight: 850;
    letter-spacing: -.035em;
}

.help-section-heading p {
    margin: 0;
    color: var(--help-muted);
}

.help-article-card-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.help-article-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    height: 100%;
    padding: 1.35rem;
    border: 1px solid var(--help-line);
    border-radius: 20px;
    background: rgba(255, 255, 255, .92);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.help-article-card-link:hover .help-article-card {
    transform: translateY(-3px);
    border-color: #bfd2eb;
    box-shadow: 0 16px 35px rgba(32, 77, 132, .1);
}

.help-article-icon {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border-radius: 13px;
    background: #eaf3ff;
    color: #0b67e8;
    font-weight: 900;
}

.help-article-card small {
    color: #7890af;
    font-weight: 700;
}

.help-article-card h3 {
    margin: .25rem 0 .4rem;
    font-size: 1.08rem;
    font-weight: 850;
}

.help-article-card p {
    margin: 0;
    color: var(--help-muted);
    font-size: .91rem;
    line-height: 1.48;
}

.help-article-arrow {
    color: #6680a4;
    font-size: 1.3rem;
}

.help-breadcrumbs {
    display: flex;
    gap: .6rem;
    margin-bottom: 1.1rem;
    color: #7a8ba3;
    font-size: .9rem;
}

.help-breadcrumbs a {
    color: #35629b;
    text-decoration: none;
}

.help-content {
    overflow: hidden;
    border: 1px solid var(--help-line);
    border-radius: 28px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 22px 65px rgba(32, 77, 132, .08);
}

.help-content-header {
    padding: clamp(1.8rem, 5vw, 3.7rem);
    border-bottom: 1px solid var(--help-line);
    background: linear-gradient(135deg, #f7ffea, #f5f9ff 72%);
}

.help-content-header h1 {
    max-width: 800px;
    margin: .55rem 0 .9rem;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -.05em;
}

.help-content-header p {
    max-width: 760px;
    margin: 0;
    color: var(--help-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.help-content-body {
    max-width: 850px;
    padding: clamp(1.8rem, 5vw, 3.7rem);
    color: #273e61;
    font-size: 1.03rem;
    line-height: 1.75;
}

.help-content-body h2 {
    margin: 2.5rem 0 .85rem;
    color: var(--help-ink);
    font-size: 1.65rem;
    font-weight: 850;
    letter-spacing: -.025em;
}

.help-content-body h2:first-child {
    margin-top: 0;
}

.help-content-body h3 {
    margin: 1.8rem 0 .7rem;
    color: var(--help-ink);
    font-weight: 800;
}

.help-content-body li {
    margin-bottom: .55rem;
    padding-left: .25rem;
}

.help-content-body code {
    padding: .12rem .36rem;
    border-radius: 6px;
    background: #edf3fb;
    color: #0b58bb;
}

.help-content-body pre {
    overflow-x: auto;
    padding: 1.3rem;
    border-radius: 15px;
    background: #07162f;
    color: #eaf2ff;
}

.help-content-body pre code {
    padding: 0;
    background: transparent;
    color: inherit;
}

.help-content-body a {
    color: #0969da;
}

.help-callout {
    margin: 1.5rem 0;
    padding: 1.1rem 1.25rem;
    border-left: 4px solid #86d900;
    border-radius: 0 12px 12px 0;
    background: #f2ffdc;
    color: #284315;
}

.help-callout-warning {
    border-color: #ffbd2e;
    background: #fff7df;
    color: #64490b;
}

.help-article-pagination {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.help-article-pagination a {
    display: inline-flex;
    flex-direction: column;
    gap: .2rem;
    color: var(--help-ink);
    text-decoration: none;
}

.help-article-pagination small {
    color: #778ba7;
}

@media (max-width: 991.98px) {
    .help-hero { padding: 3.5rem 0 2.5rem; }
    .help-article-page .help-layout { padding-top: 2rem; }
    .help-sidebar { position: static; margin-bottom: 1rem; }
}

@media (max-width: 767.98px) {
    .help-layout { padding-bottom: 3.5rem; }
    .help-welcome-card { align-items: stretch; flex-direction: column; }
    .help-primary-button { width: 100%; }
    .help-section-heading { align-items: flex-start; flex-direction: column; }
    .help-article-pagination { grid-template-columns: 1fr; }
    .help-article-pagination .text-end { text-align: left !important; }
}
