:root {
    --help-red: #ef3333;
    --help-red-dark: #c9232c;
    --help-red-soft: #fff0ed;
    --help-ink: #211b1a;
    --help-ink-soft: #443c39;
    --help-muted: #746b67;
    --help-paper: #faf8f3;
    --help-surface: #ffffff;
    --help-surface-soft: #f2ede5;
    --help-line: #e5ded5;
    --help-line-strong: #d4cbc1;
    --help-green: #1f7a54;
    --help-shadow: 0 18px 60px rgba(48, 35, 31, 0.1);
    --help-shadow-soft: 0 10px 34px rgba(48, 35, 31, 0.07);
    --help-radius-sm: 12px;
    --help-radius: 20px;
    --help-radius-lg: 32px;
    --help-container: 1180px;
    --help-font: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body.help-site {
    margin: 0;
    min-width: 320px;
    background: var(--help-paper);
    color: var(--help-ink);
    font-family: var(--help-font);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.help-site a {
    color: inherit;
}

body.help-site button,
body.help-site input,
body.help-site textarea,
body.help-site select {
    font: inherit;
}

body.help-site button,
body.help-site a {
    -webkit-tap-highlight-color: transparent;
}

body.help-site img,
body.help-site video {
    max-width: 100%;
}

body.help-site :focus-visible {
    outline: 3px solid rgba(239, 51, 51, 0.42);
    outline-offset: 3px;
}

.help-container {
    width: min(calc(100% - 40px), var(--help-container));
    margin-inline: auto;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--help-ink);
    color: #fff !important;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 12px;
    color: var(--help-red-dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow > span:first-child {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.eyebrow--light {
    color: #ffc9c0;
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    background: var(--help-red);
    color: #fff !important;
}

.button--primary:hover {
    background: var(--help-red-dark);
}

.button--secondary {
    border-color: var(--help-line-strong);
    background: var(--help-surface);
    color: var(--help-ink) !important;
}

.button--secondary:hover {
    border-color: var(--help-red);
    color: var(--help-red-dark) !important;
}

.button--light {
    background: #fff;
    color: var(--help-ink) !important;
}

.button--light:hover {
    background: #fff1ee;
}

.button--outline-light {
    border-color: rgba(255, 255, 255, 0.34);
    color: #fff !important;
}

.button--outline-light:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.button--text {
    color: var(--help-red-dark) !important;
}

.button--text:hover {
    background: var(--help-red-soft);
}

.button--full {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--help-red-dark) !important;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.text-link span {
    transition: transform 180ms ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

/* Header and brand */
.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(217, 207, 198, 0.8);
    background: rgba(250, 248, 243, 0.94);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    display: grid;
    min-height: 82px;
    grid-template-columns: auto minmax(260px, 430px) auto;
    align-items: center;
    gap: 28px;
}

.horus-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--help-ink) !important;
    text-decoration: none;
}

.horus-brand__mark {
    position: relative;
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    overflow: hidden;
    border-radius: 12px 12px 12px 4px;
    background: var(--help-red);
    box-shadow: 0 8px 22px rgba(239, 51, 51, 0.24);
}

.horus-brand__mark::before,
.horus-brand__mark::after {
    position: absolute;
    content: "";
}

.horus-brand__mark::before {
    width: 23px;
    height: 15px;
    border: 2px solid #fff;
    border-radius: 50% 50% 46% 46%;
    transform: rotate(-4deg);
}

.horus-brand__mark::after {
    width: 6px;
    height: 6px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--help-red);
}

.horus-brand__mark > span {
    position: absolute;
    top: 9px;
    right: 5px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
}

.horus-brand__copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.horus-brand__copy strong {
    font-size: 1.1rem;
    letter-spacing: -0.035em;
}

.horus-brand__copy span {
    margin-top: 5px;
    color: var(--help-muted);
    font-size: 0.69rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-header__actions {
    justify-self: end;
}

.header-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
}

.header-link span {
    color: var(--help-red);
}

/* Search */
.help-search {
    position: relative;
    display: flex;
    align-items: center;
}

.help-search__input {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--help-line);
    border-radius: 13px;
    background: #fff;
    color: var(--help-ink);
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.help-search__input::placeholder {
    color: #968e89;
    opacity: 1;
}

.help-search__input:focus {
    border-color: var(--help-red);
    box-shadow: 0 0 0 4px rgba(239, 51, 51, 0.12);
}

.help-search__icon {
    position: absolute;
    z-index: 2;
    left: 16px;
    width: 15px;
    height: 15px;
    pointer-events: none;
    border: 2px solid currentColor;
    border-radius: 50%;
    color: var(--help-muted);
}

.help-search__icon::after {
    position: absolute;
    right: -5px;
    bottom: -3px;
    width: 7px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    content: "";
    transform: rotate(45deg);
    transform-origin: left center;
}

.help-search--header .help-search__input {
    height: 46px;
    padding: 0 94px 0 44px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
}

.help-search__submit {
    position: absolute;
    z-index: 2;
    right: 6px;
    min-width: 74px;
    height: calc(100% - 12px);
    padding: 0 13px;
    border: 0;
    border-radius: 9px;
    background: var(--help-ink);
    color: #fff;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 700;
    transition: background-color 160ms ease, transform 160ms ease;
}

.help-search__submit:hover {
    background: var(--help-red-dark);
}

.search-suggestions {
    position: absolute;
    z-index: 30;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    max-height: min(430px, 70vh);
    overflow-y: auto;
    border: 1px solid var(--help-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--help-shadow);
}

.search-suggestions[hidden] {
    display: none;
}

.search-suggestions__item {
    display: grid;
    grid-template-columns: 34px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    border-bottom: 1px solid var(--help-line);
    color: var(--help-ink) !important;
    text-decoration: none;
}

.search-suggestions__item:last-child {
    border-bottom: 0;
}

.search-suggestions__item:hover,
.search-suggestions__item[aria-selected="true"] {
    background: var(--help-red-soft);
}

.search-suggestions__symbol {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    background: var(--help-surface-soft);
    color: var(--help-red-dark);
    font-weight: 700;
}

.search-suggestions__copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.search-suggestions__copy strong {
    overflow: hidden;
    font-size: 0.88rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-suggestions__copy small {
    overflow: hidden;
    margin-top: 2px;
    color: var(--help-muted);
    font-size: 0.72rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-suggestions__arrow {
    color: var(--help-red);
    font-size: 1.1rem;
}

.search-suggestions__empty {
    margin: 0;
    padding: 18px;
    color: var(--help-muted);
    font-size: 0.84rem;
    text-align: center;
}

/* Hero */
.home-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 12%, rgba(239, 51, 51, 0.24), transparent 28%),
        radial-gradient(circle at 92% 80%, rgba(239, 51, 51, 0.16), transparent 30%),
        var(--help-ink);
    color: #fff;
}

.home-hero::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    content: "";
    mask-image: linear-gradient(to right, transparent, #000 38%, #000);
}

.home-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 530px;
    grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
    align-items: center;
    gap: 76px;
    padding-block: 76px;
}

.home-hero__content h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(2.7rem, 5.5vw, 5rem);
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.home-hero__lead {
    max-width: 660px;
    margin: 23px 0 29px;
    color: #d9d1ce;
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    line-height: 1.65;
}

.help-search--hero,
.help-search--page,
.help-search--not-found {
    max-width: 690px;
}

.help-search--hero .help-search__input,
.help-search--page .help-search__input,
.help-search--not-found .help-search__input {
    height: 64px;
    padding: 0 122px 0 54px;
    border: 0;
    border-radius: 16px;
    font-size: 1rem;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.help-search--hero .help-search__icon,
.help-search--page .help-search__icon,
.help-search--not-found .help-search__icon {
    left: 21px;
    width: 17px;
    height: 17px;
}

.help-search--hero .help-search__submit,
.help-search--page .help-search__submit,
.help-search--not-found .help-search__submit {
    right: 7px;
    min-width: 105px;
    border-radius: 11px;
    background: var(--help-red);
    font-size: 0.88rem;
}

.help-search--hero .help-search__submit:hover,
.help-search--page .help-search__submit:hover,
.help-search--not-found .help-search__submit:hover {
    background: var(--help-red-dark);
}

.hero-shortcuts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: #bdb4b1;
    font-size: 0.76rem;
}

.hero-shortcuts > span {
    margin-right: 2px;
}

.hero-shortcuts a {
    padding: 4px 9px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 999px;
    color: #f8f1ee !important;
    text-decoration: none;
    transition: border-color 160ms ease, background-color 160ms ease;
}

.hero-shortcuts a:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.home-hero__visual {
    position: relative;
    display: grid;
    min-height: 350px;
    place-items: center;
}

.signal-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}

.signal-orbit--outer {
    width: 360px;
    height: 360px;
}

.signal-orbit--inner {
    width: 275px;
    height: 275px;
    border-color: rgba(239, 51, 51, 0.35);
}

.hero-guide-card {
    position: relative;
    z-index: 2;
    display: flex;
    width: min(292px, 100%);
    min-height: 250px;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 26px 26px 26px 8px;
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(16px);
    transform: rotate(3deg);
}

.hero-guide-card::after {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--help-red);
    box-shadow: 0 0 0 7px rgba(239, 51, 51, 0.16);
    content: "";
}

.hero-guide-card__label {
    margin-bottom: 15px;
    color: #ffc9c0;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero-guide-card strong {
    margin-bottom: 20px;
    font-size: 1.4rem;
    letter-spacing: -0.035em;
    line-height: 1.2;
}

.hero-guide-card__line {
    width: 64%;
    height: 5px;
    margin-top: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.hero-guide-card__line--wide {
    width: 88%;
}

.hero-guide-card__action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 27px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-guide-card__action b {
    color: #ff8e80;
    font-size: 1.1rem;
}

.hero-pulse {
    position: absolute;
    z-index: 3;
    width: 16px;
    height: 16px;
    border: 4px solid var(--help-ink);
    border-radius: 50%;
    background: var(--help-red);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.hero-pulse--one {
    top: 52px;
    right: 51px;
}

.hero-pulse--two {
    bottom: 54px;
    left: 38px;
}

/* Generic sections and cards */
.help-section {
    padding-block: 92px;
}

.help-section--categories {
    padding-bottom: 104px;
}

.help-section--tinted {
    border-block: 1px solid var(--help-line);
    background: var(--help-surface-soft);
}

.section-heading {
    margin-bottom: 36px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3.4vw, 2.65rem);
    letter-spacing: -0.055em;
    line-height: 1.08;
}

.section-heading--split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 48px;
}

.section-heading--split > p {
    max-width: 470px;
    margin: 0 0 3px;
    color: var(--help-muted);
    line-height: 1.7;
}

.section-heading--compact {
    margin-bottom: 25px;
}

.section-heading--compact h2 {
    font-size: clamp(1.55rem, 2.5vw, 2rem);
}

.section-heading--with-count {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.section-heading--with-count > span {
    color: var(--help-muted);
    font-size: 0.82rem;
}

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

.category-card {
    position: relative;
    display: grid;
    min-height: 260px;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr auto;
    gap: 0 14px;
    overflow: hidden;
    padding: 26px;
    border: 1px solid var(--help-line);
    border-radius: var(--help-radius);
    background: var(--help-surface);
    color: var(--help-ink) !important;
    text-decoration: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.category-card::after {
    position: absolute;
    right: -40px;
    bottom: -44px;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(239, 51, 51, 0.13);
    border-radius: 50%;
    content: "";
}

.category-card:hover {
    border-color: rgba(239, 51, 51, 0.44);
    box-shadow: var(--help-shadow-soft);
    transform: translateY(-4px);
}

.category-card--featured {
    border-color: var(--help-ink);
    background: var(--help-ink);
    color: #fff !important;
}

.category-card--featured::after {
    border-color: rgba(255, 255, 255, 0.12);
}

.category-card__icon,
.category-hero__icon {
    display: grid;
    width: 52px;
    height: 52px;
    grid-column: 1;
    place-items: center;
    border-radius: 15px 15px 15px 5px;
    background: var(--help-red-soft);
    color: var(--help-red-dark);
    font-size: 1.35rem;
    font-weight: 700;
}

.category-card--featured .category-card__icon {
    background: var(--help-red);
    color: #fff;
}

.category-card__icon--camera {
    border-radius: 14px 14px 6px 14px;
}

.category-card__icon--sparkles {
    background: #fff5d9;
    color: #8b6811;
}

.category-card__icon--agent {
    background: #eaf4ff;
    color: #276695;
}

.category-card__icon--wallet {
    background: #edf7ee;
    color: #32704b;
}

.category-card__body {
    display: flex;
    grid-column: 1 / -1;
    align-self: center;
    flex-direction: column;
    padding-block: 24px 18px;
}

.category-card__body strong {
    font-size: 1.2rem;
    letter-spacing: -0.035em;
    line-height: 1.25;
}

.category-card__body > span {
    margin-top: 9px;
    color: var(--help-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.category-card--featured .category-card__body > span,
.category-card--featured .category-card__meta {
    color: #bfb6b3;
}

.category-card__meta {
    position: relative;
    z-index: 1;
    align-self: end;
    color: var(--help-muted);
    font-size: 0.72rem;
    font-weight: 600;
}

.category-card__arrow {
    position: relative;
    z-index: 1;
    align-self: end;
    color: var(--help-red);
    font-size: 1.25rem;
    transition: transform 180ms ease;
}

.category-card:hover .category-card__arrow {
    transform: translateX(4px);
}

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

.article-card {
    display: flex;
    min-height: 310px;
    flex-direction: column;
    padding: 26px;
    border: 1px solid var(--help-line);
    border-radius: var(--help-radius);
    background: var(--help-surface);
}

.article-card__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 30px;
    color: #a69e99;
    font-size: 0.72rem;
    font-weight: 700;
}

.article-card__category {
    color: var(--help-red-dark) !important;
    text-decoration: none;
}

.article-card__category:hover {
    text-decoration: underline;
}

.article-card h3 {
    margin: 0;
    font-size: 1.2rem;
    letter-spacing: -0.035em;
    line-height: 1.3;
}

.article-card h3 a {
    text-decoration: none;
}

.article-card h3 a:hover {
    color: var(--help-red-dark);
}

.article-card p {
    display: -webkit-box;
    margin: 13px 0 24px;
    overflow: hidden;
    color: var(--help-muted);
    font-size: 0.87rem;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.article-card .text-link {
    margin-top: auto;
}

.home-resources {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(330px, 0.85fr);
    align-items: start;
    gap: 74px;
}

.article-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.article-row {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    color: var(--help-ink) !important;
    text-decoration: none;
}

.article-list--home .article-row {
    padding-block: 16px;
    border-bottom: 1px solid var(--help-line);
}

.article-list--home .article-row:first-child {
    border-top: 1px solid var(--help-line);
}

.article-row__marker {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    background: var(--help-surface-soft);
    color: var(--help-red-dark);
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.article-row:hover .article-row__marker {
    background: var(--help-red);
    color: #fff;
    transform: translateX(3px);
}

.article-row__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.article-row__content strong,
.article-row__content h3 {
    margin: 0;
    font-size: 0.98rem;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.article-row__content h3 a {
    text-decoration: none;
}

.article-row__content > span,
.article-row__content > p {
    display: -webkit-box;
    margin: 5px 0 0;
    overflow: hidden;
    color: var(--help-muted);
    font-size: 0.8rem;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.article-row__category {
    max-width: 150px;
    color: var(--help-muted);
    font-size: 0.72rem;
    text-align: right;
}

.article-row--card {
    padding: 21px;
    border: 1px solid var(--help-line);
    border-radius: 16px;
    background: var(--help-surface);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.article-row--card:hover {
    border-color: rgba(239, 51, 51, 0.4);
    box-shadow: var(--help-shadow-soft);
}

.article-row__action {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--help-red-dark) !important;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

/* FAQ */
.faq-list {
    overflow: hidden;
    border: 1px solid var(--help-line);
    border-radius: var(--help-radius);
    background: var(--help-surface);
}

.faq-item {
    border-bottom: 1px solid var(--help-line);
}

.faq-item:last-child {
    border-bottom: 0;
}

.faq-item summary {
    display: flex;
    min-height: 65px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 17px 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--help-red-dark);
}

.faq-item__toggle {
    position: relative;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 50%;
    background: var(--help-surface-soft);
}

.faq-item__toggle::before,
.faq-item__toggle::after {
    position: absolute;
    top: 11px;
    left: 7px;
    width: 10px;
    height: 2px;
    border-radius: 99px;
    background: var(--help-ink);
    content: "";
    transition: transform 160ms ease;
}

.faq-item__toggle::after {
    transform: rotate(90deg);
}

.faq-item[open] .faq-item__toggle {
    background: var(--help-red);
}

.faq-item[open] .faq-item__toggle::before,
.faq-item[open] .faq-item__toggle::after {
    background: #fff;
}

.faq-item[open] .faq-item__toggle::after {
    transform: rotate(0);
}

.faq-item__answer {
    padding: 0 54px 20px 20px;
    color: var(--help-muted);
    font-size: 0.86rem;
    line-height: 1.7;
}

.faq-item__answer > :first-child {
    margin-top: 0;
}

.faq-item__answer > :last-child {
    margin-bottom: 0;
}

.faq-item__answer a {
    color: var(--help-red-dark) !important;
    font-weight: 600;
}

/* Empty states and CTA */
.empty-state {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 52px 28px;
    border: 1px dashed var(--help-line-strong);
    border-radius: var(--help-radius);
    background: rgba(255, 255, 255, 0.55);
    text-align: center;
}

.empty-state--wide {
    min-height: 360px;
    justify-content: center;
}

.empty-state--compact {
    padding-block: 38px;
}

.empty-state__icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 16px 16px 16px 6px;
    background: var(--help-red-soft);
    color: var(--help-red-dark);
    font-size: 1.35rem;
    font-weight: 700;
}

.empty-state h2,
.empty-state h3 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(1.4rem, 3vw, 2rem);
    letter-spacing: -0.04em;
    line-height: 1.2;
}

.empty-state h3 {
    font-size: 1.25rem;
}

.empty-state > p:not(.eyebrow) {
    max-width: 570px;
    margin: 12px 0 22px;
    color: var(--help-muted);
}

.empty-state__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.help-cta {
    padding-block: 60px;
    background: var(--help-red);
    color: #fff;
}

.help-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 52px;
}

.help-cta h2 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: -0.055em;
    line-height: 1.05;
}

.help-cta p:not(.eyebrow) {
    margin: 13px 0 0;
    color: #ffe1dc;
}

.help-cta__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

/* Breadcrumbs */
.breadcrumbs {
    padding-block: 22px;
}

.breadcrumbs ol {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    color: var(--help-muted);
    font-size: 0.77rem;
    list-style: none;
}

.breadcrumbs li {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
}

.breadcrumbs li:not(:last-child)::after {
    color: #b0a8a3;
    content: "/";
}

.breadcrumbs a {
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--help-red-dark);
    text-decoration: underline;
}

.breadcrumbs li[aria-current="page"] {
    overflow: hidden;
    color: var(--help-ink-soft);
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Category */
.category-hero {
    position: relative;
    overflow: hidden;
    border-block: 1px solid var(--help-line);
    background: var(--help-surface);
}

.category-hero::after {
    position: absolute;
    top: -150px;
    right: -100px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(239, 51, 51, 0.1);
    border-radius: 50%;
    box-shadow: 0 0 0 45px rgba(239, 51, 51, 0.03), 0 0 0 90px rgba(239, 51, 51, 0.025);
    content: "";
}

.category-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 260px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    padding-block: 47px;
}

.category-hero__icon {
    width: 78px;
    height: 78px;
    border-radius: 22px 22px 22px 7px;
    font-size: 2rem;
}

.category-hero__content h1 {
    margin: 0;
    font-size: clamp(2.25rem, 5vw, 4.2rem);
    letter-spacing: -0.065em;
    line-height: 1;
}

.category-hero__content > p:last-child:not(.eyebrow) {
    max-width: 650px;
    margin: 17px 0 0;
    color: var(--help-muted);
    font-size: 1rem;
}

.category-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 0;
    margin: 0;
    padding: 0;
    border: 1px solid var(--help-line);
    border-radius: 16px;
    background: var(--help-paper);
}

.category-hero__stats div {
    display: flex;
    min-width: 105px;
    flex-direction: column-reverse;
    padding: 16px 18px;
    border-right: 1px solid var(--help-line);
}

.category-hero__stats div:last-child {
    border-right: 0;
}

.category-hero__stats dt {
    margin-top: 3px;
    color: var(--help-muted);
    font-size: 0.65rem;
    font-weight: 600;
    line-height: 1.25;
}

.category-hero__stats dd {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
}

.category-content {
    padding-top: 72px;
}

.category-content__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 315px;
    align-items: start;
    gap: 72px;
}

.category-block + .category-block {
    margin-top: 70px;
}

.subcategory-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.subcategory-card {
    display: grid;
    grid-template-columns: 43px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--help-line);
    border-radius: 15px;
    background: #fff;
    color: var(--help-ink) !important;
    text-decoration: none;
    transition: border-color 160ms ease, transform 160ms ease;
}

.subcategory-card:hover {
    border-color: var(--help-red);
    transform: translateY(-2px);
}

.subcategory-card__icon {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 12px 12px 12px 4px;
    background: var(--help-red-soft);
    color: var(--help-red-dark);
    font-weight: 700;
}

.subcategory-card > span:nth-child(2) {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.subcategory-card strong {
    font-size: 0.91rem;
    line-height: 1.35;
}

.subcategory-card small {
    margin-top: 4px;
    color: var(--help-muted);
    font-size: 0.7rem;
    line-height: 1.4;
}

.subcategory-card > span:last-child {
    color: var(--help-red);
}

.category-content__aside {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aside-card {
    padding: 24px;
    border: 1px solid var(--help-line);
    border-radius: var(--help-radius);
    background: var(--help-surface);
}

.aside-card__symbol {
    display: grid;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 13px;
    background: var(--help-red-soft);
    color: var(--help-red-dark);
    font-size: 1.25rem;
    font-weight: 700;
}

.aside-card h2 {
    margin: 0;
    font-size: 1.2rem;
    letter-spacing: -0.035em;
    line-height: 1.25;
}

.aside-card > p:not(.eyebrow) {
    margin: 9px 0 18px;
    color: var(--help-muted);
    font-size: 0.82rem;
}

.aside-card--support {
    border-color: var(--help-ink);
    background: var(--help-ink);
    color: #fff;
}

.aside-card--support > p:not(.eyebrow) {
    color: #c8bfbc;
}

.help-search--stacked {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
}

.help-search--stacked .help-search__input {
    height: 48px;
    padding: 0 42px;
    font-size: 0.82rem;
}

.help-search--stacked .help-search__submit {
    position: static;
    width: 100%;
    height: 42px;
}

.help-search--stacked .search-suggestions {
    top: 57px;
    right: auto;
    width: min(460px, calc(100vw - 40px));
}

/* Article */
.breadcrumbs--article {
    padding-bottom: 10px;
}

.article-shell {
    padding: 24px 0 96px;
}

.article-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 790px);
    justify-content: center;
    gap: 72px;
}

.article-toc__sticky {
    position: sticky;
    top: 118px;
    padding-top: 12px;
}

.article-toc__sticky > p {
    margin: 0 0 15px;
    color: var(--help-ink);
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-toc ol,
.article-toc-mobile ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.article-toc li {
    margin: 0;
}

.article-toc a {
    position: relative;
    display: block;
    padding: 7px 0 7px 14px;
    border-left: 2px solid var(--help-line);
    color: var(--help-muted) !important;
    font-size: 0.77rem;
    line-height: 1.4;
    text-decoration: none;
    transition: border-color 160ms ease, color 160ms ease;
}

.article-toc a:hover,
.article-toc a[aria-current="true"] {
    border-color: var(--help-red);
    color: var(--help-red-dark) !important;
}

.article-toc__level-3 a {
    padding-left: 25px;
    font-size: 0.72rem;
}

.article-toc .article-toc__back {
    display: inline-flex;
    margin-top: 24px;
    padding: 0;
    border: 0;
    color: var(--help-ink) !important;
    font-weight: 700;
}

.article-toc__back span {
    margin-right: 7px;
    color: var(--help-red);
}

.help-article {
    min-width: 0;
}

.help-article--centered {
    grid-column: 1 / -1;
    width: min(100%, 790px);
    justify-self: center;
}

.help-article__header {
    padding-bottom: 32px;
    border-bottom: 1px solid var(--help-line);
}

.article-kicker {
    display: inline-flex;
    margin-bottom: 17px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--help-red-soft);
    color: var(--help-red-dark) !important;
    font-size: 0.7rem;
    font-weight: 700;
    text-decoration: none;
}

.article-kicker:hover {
    background: #ffded8;
}

.help-article__header h1 {
    margin: 0;
    font-size: clamp(2.25rem, 5.2vw, 4.15rem);
    letter-spacing: -0.066em;
    line-height: 1.02;
}

.help-article__excerpt {
    max-width: 720px;
    margin: 22px 0 26px;
    color: var(--help-muted);
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.7;
}

.article-meta {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 11px;
}

.article-meta__author {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border-radius: 50%;
    background: var(--help-ink);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
}

.article-meta__author span {
    position: relative;
}

.article-meta__author span::after {
    position: absolute;
    right: -8px;
    bottom: -3px;
    width: 6px;
    height: 6px;
    border: 1px solid var(--help-ink);
    border-radius: 50%;
    background: var(--help-red);
    content: "";
}

.article-meta__text {
    display: flex;
    flex-direction: column;
    font-size: 0.72rem;
    line-height: 1.45;
}

.article-meta__text span:first-child {
    color: var(--help-ink-soft);
    font-weight: 700;
}

.article-meta__text span:last-child {
    color: var(--help-muted);
}

.copy-link {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    border: 1px solid var(--help-line);
    border-radius: 10px;
    background: transparent;
    color: var(--help-muted);
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 700;
}

.copy-link:hover {
    border-color: var(--help-red);
    color: var(--help-red-dark);
}

.copy-link__icon {
    position: relative;
    width: 13px;
    height: 13px;
    border: 1.5px solid currentColor;
    border-radius: 3px;
}

.copy-link__icon::before {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 9px;
    height: 9px;
    border: 1.5px solid currentColor;
    border-radius: 3px;
    background: var(--help-paper);
    content: "";
}

.article-toc-mobile {
    display: none;
}

.article-body {
    padding-block: 42px 52px;
    color: #332c2a;
    font-size: 1rem;
    line-height: 1.85;
}

.article-body > :first-child {
    margin-top: 0;
}

.article-body > :last-child {
    margin-bottom: 0;
}

.article-body p,
.article-body ul,
.article-body ol,
.article-body blockquote,
.article-body pre,
.article-body table,
.article-body figure,
.article-body video,
.article-body iframe {
    margin-block: 0 25px;
}

.article-body h2,
.article-body h3,
.article-body h4 {
    color: var(--help-ink);
    letter-spacing: -0.045em;
    line-height: 1.22;
}

.article-body h2 {
    margin: 48px 0 17px;
    font-size: clamp(1.65rem, 3.2vw, 2.15rem);
}

.article-body h3 {
    margin: 36px 0 13px;
    font-size: 1.4rem;
}

.article-body h4 {
    margin: 28px 0 11px;
    font-size: 1.12rem;
}

.article-body strong {
    color: var(--help-ink);
    font-weight: 700;
}

.article-body a {
    color: var(--help-red-dark) !important;
    font-weight: 600;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.article-body ul,
.article-body ol {
    padding-left: 25px;
}

.article-body li {
    margin-block: 9px;
    padding-left: 5px;
}

.article-body li::marker {
    color: var(--help-red);
    font-weight: 700;
}

.article-body blockquote {
    padding: 18px 22px;
    border-left: 4px solid var(--help-red);
    border-radius: 0 12px 12px 0;
    background: var(--help-surface-soft);
    color: var(--help-ink-soft);
}

.article-body blockquote > :last-child {
    margin-bottom: 0;
}

.article-body code {
    padding: 2px 6px;
    border-radius: 6px;
    background: #eee8e0;
    color: #8f2330;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.88em;
}

.article-body pre {
    overflow-x: auto;
    padding: 20px;
    border-radius: 14px;
    background: var(--help-ink);
    color: #f7efeb;
    font-size: 0.84rem;
    line-height: 1.65;
}

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

.article-body img {
    display: block;
    width: auto;
    height: auto;
    margin-inline: auto;
    border: 1px solid var(--help-line);
    border-radius: 16px;
    box-shadow: var(--help-shadow-soft);
}

.article-body figure {
    padding: 8px;
    border: 1px solid var(--help-line);
    border-radius: 18px;
    background: #fff;
}

.article-body figure img {
    border: 0;
    box-shadow: none;
}

.article-body figcaption {
    padding: 10px 8px 3px;
    color: var(--help-muted);
    font-size: 0.76rem;
    line-height: 1.5;
    text-align: center;
}

.article-body iframe,
.article-body video {
    display: block;
    width: 100%;
    max-width: 100%;
    border: 0;
    border-radius: 16px;
    background: #161212;
    box-shadow: var(--help-shadow-soft);
}

.article-body iframe {
    aspect-ratio: 16 / 9;
    height: auto;
}

.article-body video {
    height: auto;
}

.article-body table {
    display: block;
    width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid var(--help-line);
    border-radius: 12px;
    background: #fff;
    white-space: nowrap;
}

.article-body th,
.article-body td {
    min-width: 130px;
    padding: 12px 15px;
    border-right: 1px solid var(--help-line);
    border-bottom: 1px solid var(--help-line);
    text-align: left;
}

.article-body th {
    background: var(--help-surface-soft);
    color: var(--help-ink);
    font-size: 0.78rem;
}

.article-body td {
    font-size: 0.84rem;
}

.article-body hr {
    margin-block: 44px;
    border: 0;
    border-top: 1px solid var(--help-line);
}

.article-body .help-callout {
    position: relative;
    margin-block: 27px;
    padding: 18px 20px 18px 52px;
    border: 1px solid var(--help-line);
    border-radius: 14px;
    background: var(--help-surface-soft);
    font-size: 0.91rem;
    line-height: 1.7;
}

.article-body .help-callout::before {
    position: absolute;
    top: 18px;
    left: 18px;
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: var(--help-ink);
    color: #fff;
    content: "i";
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 700;
}

.article-body .help-callout-info {
    border-color: #c8ddeb;
    background: #edf7fc;
}

.article-body .help-callout-info::before {
    background: #2e749c;
}

.article-body .help-callout-warning {
    border-color: #ecd59e;
    background: #fff8e7;
}

.article-body .help-callout-warning::before {
    background: #9c6f18;
    content: "!";
}

.article-body .help-callout-success {
    border-color: #b8dec9;
    background: #eef9f2;
}

.article-body .help-callout-success::before {
    background: var(--help-green);
    content: "✓";
}

.article-feedback {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    margin-top: 8px;
    padding: 25px;
    border: 1px solid var(--help-line);
    border-radius: var(--help-radius);
    background: #fff;
}

.article-feedback__copy {
    display: flex;
    align-items: center;
    gap: 14px;
}

.article-feedback__symbol {
    display: grid;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    place-items: center;
    border-radius: 13px;
    background: var(--help-red-soft);
    color: var(--help-red-dark);
    font-weight: 700;
}

.article-feedback h2 {
    margin: 0;
    font-size: 1.02rem;
    letter-spacing: -0.025em;
}

.article-feedback__copy p {
    margin: 3px 0 0;
    color: var(--help-muted);
    font-size: 0.75rem;
}

.article-feedback__form {
    display: flex;
    gap: 8px;
}

.article-feedback__form button {
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid var(--help-line);
    border-radius: 10px;
    background: var(--help-paper);
    color: var(--help-ink-soft);
    cursor: pointer;
    font-size: 0.74rem;
    font-weight: 700;
}

.article-feedback__form button:hover:not(:disabled) {
    border-color: var(--help-red);
    color: var(--help-red-dark);
}

.article-feedback__form button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.article-feedback__form button.is-selected {
    border-color: var(--help-red);
    background: var(--help-red-soft);
    color: var(--help-red-dark);
    opacity: 1;
}

.article-feedback__status {
    grid-column: 1 / -1;
    margin: -10px 0 0 57px;
    color: var(--help-green);
    font-size: 0.75rem;
    font-weight: 700;
}

.article-feedback__status.is-error {
    color: var(--help-red-dark);
}

.related-articles {
    margin-top: 70px;
}

.related-articles__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.related-card {
    display: flex;
    min-height: 210px;
    flex-direction: column;
    padding: 22px;
    border: 1px solid var(--help-line);
    border-radius: 16px;
    background: #fff;
    color: var(--help-ink) !important;
    text-decoration: none;
    transition: border-color 160ms ease, transform 160ms ease;
}

.related-card:hover {
    border-color: var(--help-red);
    transform: translateY(-3px);
}

.related-card__icon {
    display: grid;
    width: 34px;
    height: 34px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 10px;
    background: var(--help-red-soft);
    color: var(--help-red-dark);
}

.related-card strong {
    font-size: 0.95rem;
    line-height: 1.35;
}

.related-card > span:not(.related-card__icon) {
    display: -webkit-box;
    margin-top: 8px;
    overflow: hidden;
    color: var(--help-muted);
    font-size: 0.76rem;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.related-card small {
    margin-top: auto;
    padding-top: 16px;
    color: var(--help-red-dark);
    font-size: 0.72rem;
    font-weight: 700;
}

.article-support {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--help-line);
}

.article-support > div {
    display: flex;
    flex-direction: column;
}

.article-support strong {
    font-size: 0.92rem;
}

.article-support span {
    color: var(--help-muted);
    font-size: 0.78rem;
}

/* Search page */
.search-page {
    min-height: 650px;
    padding: 46px 0 100px;
}

.search-page__inner {
    width: min(calc(100% - 40px), 920px);
}

.search-page__header {
    padding-bottom: 48px;
    border-bottom: 1px solid var(--help-line);
}

.search-page__header h1 {
    margin: 0;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    letter-spacing: -0.065em;
    line-height: 1.05;
}

.search-page__header h1 span {
    color: var(--help-red-dark);
}

.search-page__header > p:not(.eyebrow) {
    margin: 16px 0 25px;
    color: var(--help-muted);
}

.help-search--page {
    max-width: none;
}

.help-search--page .help-search__input,
.help-search--not-found .help-search__input {
    border: 1px solid var(--help-line);
    box-shadow: var(--help-shadow-soft);
}

.search-page__content {
    padding-top: 38px;
}

.search-results-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 19px;
}

.search-results-heading h2 {
    margin: 0;
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.search-results-heading span {
    color: var(--help-muted);
    font-size: 0.72rem;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.search-result {
    padding: 25px 27px;
    border: 1px solid var(--help-line);
    border-radius: 17px;
    background: #fff;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.search-result:hover {
    border-color: rgba(239, 51, 51, 0.42);
    box-shadow: var(--help-shadow-soft);
}

.search-result__category {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--help-red-dark);
    font-size: 0.7rem;
    font-weight: 700;
}

.search-result__category a {
    text-decoration: none;
}

.search-result h2 {
    margin: 11px 0 0;
    font-size: 1.25rem;
    letter-spacing: -0.035em;
    line-height: 1.3;
}

.search-result h2 a {
    text-decoration: none;
}

.search-result h2 a:hover {
    color: var(--help-red-dark);
}

.search-result > p {
    margin: 9px 0 16px;
    color: var(--help-muted);
    font-size: 0.86rem;
}

.empty-state--search {
    min-height: 340px;
    justify-content: center;
}

.search-starter {
    padding: 10px 0;
}

.search-starter > p {
    margin: 0 0 17px;
    color: var(--help-muted);
    font-size: 0.82rem;
    font-weight: 600;
}

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

.search-starter__links a {
    display: flex;
    min-height: 90px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 17px;
    border: 1px solid var(--help-line);
    border-radius: 14px;
    background: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
}

.search-starter__links a:hover {
    border-color: var(--help-red);
}

.search-starter__links span {
    color: var(--help-red);
}

/* Not found */
.not-found-page {
    min-height: 690px;
    padding: 72px 0 110px;
}

.not-found-page__inner {
    display: flex;
    max-width: 780px;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.not-found-page__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-bottom: 22px;
    color: var(--help-ink);
    font-size: clamp(4.5rem, 15vw, 8rem);
    font-weight: 700;
    letter-spacing: -0.09em;
    line-height: 1;
}

.not-found-page__lens {
    position: relative;
    width: 0.76em;
    height: 0.76em;
    border: 0.12em solid var(--help-red);
    border-radius: 50%;
    background: var(--help-red-soft);
    box-shadow: inset 0 0 0 0.06em #fff;
}

.not-found-page__lens i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.2em;
    height: 0.2em;
    border-radius: 50%;
    background: var(--help-red);
    transform: translate(-50%, -50%);
}

.not-found-page h1 {
    margin: 0;
    font-size: clamp(2.1rem, 5vw, 3.7rem);
    letter-spacing: -0.06em;
    line-height: 1.05;
}

.not-found-page__inner > p:not(.eyebrow) {
    max-width: 610px;
    margin: 18px 0 27px;
    color: var(--help-muted);
    font-size: 1rem;
}

.help-search--not-found {
    width: min(100%, 660px);
}

.not-found-page__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 23px;
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--help-line);
    background: #f1ece5;
}

.site-footer__main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 52px;
    padding-block: 54px 38px;
}

.site-footer__brand > p {
    max-width: 390px;
    margin: 17px 0 0;
    color: var(--help-muted);
    font-size: 0.82rem;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 11px 25px;
    max-width: 500px;
}

.site-footer__links a {
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
}

.site-footer__links a:hover {
    color: var(--help-red-dark);
}

.site-footer__bottom {
    padding-block: 19px;
    border-top: 1px solid var(--help-line-strong);
}

.site-footer__bottom p {
    margin: 0;
    color: var(--help-muted);
    font-size: 0.7rem;
}

@media (max-width: 1040px) {
    .site-header__inner {
        grid-template-columns: auto minmax(250px, 1fr);
    }

    .site-header__actions {
        display: none;
    }

    .home-hero__grid {
        grid-template-columns: minmax(0, 1.25fr) 310px;
        gap: 40px;
    }

    .signal-orbit--outer {
        width: 315px;
        height: 315px;
    }

    .category-hero__inner {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .category-hero__stats {
        grid-column: 2;
        justify-self: start;
    }

    .category-content__grid {
        grid-template-columns: minmax(0, 1fr) 285px;
        gap: 38px;
    }

    .article-layout {
        gap: 44px;
    }
}

@media (max-width: 860px) {
    .home-hero__grid {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-block: 70px;
    }

    .home-hero__visual {
        display: none;
    }

    .category-grid,
    .article-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-resources {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .category-content__grid {
        grid-template-columns: 1fr;
    }

    .category-content__aside {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-layout {
        display: block;
        width: min(calc(100% - 40px), 790px);
    }

    .article-toc {
        display: none;
    }

    .article-toc-mobile {
        display: block;
        margin-top: 24px;
        border: 1px solid var(--help-line);
        border-radius: 13px;
        background: #fff;
    }

    .article-toc-mobile summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 17px;
        cursor: pointer;
        font-size: 0.82rem;
        font-weight: 700;
        list-style: none;
    }

    .article-toc-mobile summary::-webkit-details-marker {
        display: none;
    }

    .article-toc-mobile summary span {
        position: relative;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: var(--help-surface-soft);
    }

    .article-toc-mobile summary span::before,
    .article-toc-mobile summary span::after {
        position: absolute;
        top: 9px;
        left: 6px;
        width: 8px;
        height: 2px;
        background: var(--help-ink);
        content: "";
    }

    .article-toc-mobile summary span::after {
        transform: rotate(90deg);
    }

    .article-toc-mobile[open] summary span::after {
        transform: rotate(0);
    }

    .article-toc-mobile nav {
        padding: 0 17px 15px;
    }

    .article-toc-mobile a {
        display: block;
        padding: 6px 0;
        color: var(--help-muted) !important;
        font-size: 0.75rem;
        text-decoration: none;
    }

    .article-toc-mobile .article-toc__level-3 a {
        padding-left: 14px;
    }
}

@media (max-width: 680px) {
    html {
        scroll-padding-top: 135px;
    }

    .help-container,
    .search-page__inner,
    .article-layout {
        width: min(calc(100% - 28px), var(--help-container));
    }

    .site-header__inner {
        min-height: 122px;
        grid-template-columns: 1fr;
        gap: 10px;
        padding-block: 12px;
    }

    .horus-brand__mark {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .help-search--header {
        width: 100%;
    }

    .help-search--header .help-search__input {
        height: 43px;
    }

    .home-hero__grid {
        padding-block: 58px;
    }

    .home-hero__content h1 {
        font-size: clamp(2.55rem, 13vw, 3.8rem);
    }

    .home-hero__lead {
        margin-block: 19px 24px;
    }

    .help-search--hero .help-search__input,
    .help-search--page .help-search__input,
    .help-search--not-found .help-search__input {
        height: 58px;
        padding-right: 97px;
        padding-left: 48px;
        font-size: 0.88rem;
    }

    .help-search--hero .help-search__icon,
    .help-search--page .help-search__icon,
    .help-search--not-found .help-search__icon {
        left: 18px;
    }

    .help-search--hero .help-search__submit,
    .help-search--page .help-search__submit,
    .help-search--not-found .help-search__submit {
        min-width: 82px;
        padding-inline: 10px;
        font-size: 0.78rem;
    }

    .hero-shortcuts {
        display: none;
    }

    .help-section {
        padding-block: 68px;
    }

    .section-heading--split {
        display: block;
    }

    .section-heading--split > p {
        margin-top: 16px;
    }

    .category-grid,
    .article-card-grid,
    .subcategory-grid,
    .related-articles__grid,
    .search-starter__links {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 230px;
    }

    .article-card {
        min-height: 280px;
    }

    .article-row {
        grid-template-columns: 34px minmax(0, 1fr);
    }

    .article-row__category,
    .article-row__action {
        display: none;
    }

    .help-cta__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
    }

    .help-cta__actions {
        width: 100%;
        flex-direction: column;
    }

    .category-hero__inner {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 18px;
        padding-block: 38px;
    }

    .category-hero__icon {
        width: 58px;
        height: 58px;
        border-radius: 17px 17px 17px 6px;
        font-size: 1.45rem;
    }

    .category-hero__content h1 {
        font-size: clamp(2rem, 11vw, 3.25rem);
    }

    .category-hero__content > p:last-child:not(.eyebrow) {
        grid-column: 1 / -1;
    }

    .category-hero__stats {
        width: 100%;
        grid-column: 1 / -1;
        margin-top: 10px;
    }

    .category-hero__stats div {
        min-width: 0;
        padding-inline: 11px;
    }

    .category-content {
        padding-top: 58px;
    }

    .category-content__aside {
        grid-template-columns: 1fr;
    }

    .category-block + .category-block {
        margin-top: 54px;
    }

    .article-shell {
        padding-top: 13px;
    }

    .breadcrumbs ol {
        overflow: hidden;
    }

    .breadcrumbs li:not(:last-child) {
        flex: 0 0 auto;
    }

    .breadcrumbs li[aria-current="page"] {
        flex: 1 1 auto;
    }

    .help-article__header h1 {
        font-size: clamp(2.15rem, 12vw, 3.45rem);
    }

    .article-meta {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .copy-link {
        width: 40px;
        padding: 8px;
        justify-content: center;
    }

    .copy-link [data-copy-link-text] {
        display: none;
    }

    .article-body {
        padding-top: 34px;
        font-size: 0.96rem;
    }

    .article-body .help-callout {
        padding: 50px 17px 17px;
    }

    .article-feedback {
        grid-template-columns: 1fr;
    }

    .article-feedback__form {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-feedback__status {
        margin: -8px 0 0;
    }

    .article-support {
        align-items: flex-start;
        flex-direction: column;
    }

    .search-page {
        padding-top: 27px;
    }

    .search-page__header {
        padding-bottom: 38px;
    }

    .search-result {
        padding: 21px;
    }

    .search-results-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .not-found-page {
        min-height: 620px;
        padding-top: 55px;
    }

    .site-footer__main {
        flex-direction: column;
    }

    .site-footer__links {
        justify-content: flex-start;
    }
}

@media (max-width: 410px) {
    .help-search--header .help-search__submit {
        min-width: 66px;
    }

    .help-search--header .help-search__input {
        padding-right: 80px;
    }

    .category-hero__stats dt {
        font-size: 0.58rem;
    }

    .article-feedback__form {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {
    .site-header,
    .site-footer,
    .breadcrumbs,
    .article-toc,
    .article-toc-mobile,
    .article-feedback,
    .related-articles,
    .article-support,
    .copy-link {
        display: none !important;
    }

    body.help-site {
        background: #fff;
        color: #000;
    }

    .article-shell,
    .article-body {
        padding: 0;
    }

    .article-layout,
    .help-article,
    .help-article--centered {
        display: block;
        width: 100%;
        max-width: none;
    }

    .article-body a {
        color: #000 !important;
    }
}
