:root {
    --home-navy: #07182f;
    --home-navy-2: #10213b;
    --home-ink: #17243c;
    --home-muted: #5b6779;
    --home-gold: #cf982d;
    --home-gold-dark: #a87413;
    --home-gold-soft: #faefd8;
    --home-paper: #fffdfa;
    --home-panel: #f7f8fb;
    --home-line: #e7eaf0;
    --home-shadow: 0 12px 36px rgba(8, 22, 43, .07);
    --home-shell: 1296px;
}

body.is-homepage {
    background: #fff;
    color: var(--home-ink);
    font-family: Inter, Manrope, "Segoe UI", sans-serif;
}

body.is-homepage main#main {
    margin: 0;
    padding: 0;
}

.home-v9,
.home-v9 * {
    box-sizing: border-box;
}

.home-v9 {
    width: 100%;
    color: var(--home-ink);
    background: #fff;
    font-family: Inter, Manrope, "Segoe UI", sans-serif;
}

.home-v9 h1,
.home-v9 h2,
.home-v9 h3,
.home-v9 p {
    text-wrap: pretty;
}

.home-v9 img {
    display: block;
    max-width: 100%;
}

.home-v9-shell {
    width: min(var(--home-shell), calc(100% - 32px));
    margin-inline: auto;
}

.home-v9 a:focus-visible,
.home-v9 summary:focus-visible {
    outline: 3px solid rgba(207, 152, 45, .55);
    outline-offset: 3px;
}

.home-v9-hero {
    min-height: 645px;
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 38px;
    overflow: hidden;
    isolation: isolate;
    background: #fff;
}

.home-v9-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    background: #fff;
}

.home-v9-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.home-v9-hero__copy {
    width: 52%;
    max-width: 580px;
    padding: 74px 0 86px;
    display: grid;
    grid-template-rows: minmax(154px, auto) minmax(42px, auto) minmax(64px, auto);
    align-content: center;
    gap: 12px;
}

.home-v9-hero__title-block {
    width: min(100%, 580px);
    min-height: 154px;
    display: flex;
    align-items: center;
}

.home-v9-eyebrow,
.home-v9-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--home-gold-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-v9-eyebrow {
    min-height: 32px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--home-gold-soft);
    letter-spacing: .04em;
}

.home-v9-hero h1 {
    max-width: 700px;
    margin: 0;
    color: var(--home-ink);
    font-family: Inter, Manrope, "Segoe UI", sans-serif;
    font-size: clamp(52px, 4.55vw, 66px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -.052em;
    text-transform: uppercase;
}

.home-v9-hero h1 span {
    display: block;
}

.home-v9-hero h1 em {
    color: var(--home-gold);
    font-style: normal;
}

.home-v9-hero__description-block {
    width: min(100%, 560px);
    min-height: 42px;
    display: flex;
    align-items: flex-start;
}

.home-v9-hero__description-block > p {
    max-width: 570px;
    margin: 0;
    color: var(--home-muted);
    font-size: 16px;
    line-height: 1.75;
}

.home-v9-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 0;
}

.home-v9-hero__cta-block {
    min-height: 64px;
    align-items: center;
}

.home-v9-button {
    min-height: 52px;
    padding: 0 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 800;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.home-v9-button:hover {
    transform: translateY(-2px);
}

.home-v9-button--primary {
    color: #fff;
    background: var(--home-navy);
}

.home-v9-button--secondary {
    color: var(--home-ink);
    border-color: #dbe0e7;
    background: rgba(255, 255, 255, .9);
}

.home-v9-forum-ticker {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 4;
    width: 100vw;
    min-height: 34px;
    transform: translateX(-50%);
    display: grid;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(90deg, #07182f 0%, #0c1f3b 48%, #07182f 100%);
    border-top: 1px solid rgba(207, 152, 45, .36);
    border-bottom: 1px solid rgba(207, 152, 45, .22);
    box-shadow: 0 -14px 38px rgba(7, 24, 47, .08);
}

.home-v9-forum-ticker__inner {
    width: min(var(--home-shell), calc(100% - 32px));
    min-width: 0;
    min-height: 34px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 18px;
}

.home-v9-forum-ticker__label {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f1c76d;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-v9-forum-ticker__viewport {
    min-width: 0;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 42px, #000 calc(100% - 42px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 42px, #000 calc(100% - 42px), transparent 100%);
}

.home-v9-forum-ticker__track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 0;
    animation: home-v9-forum-marquee 34s linear infinite;
    will-change: transform;
}

.home-v9-forum-ticker:hover .home-v9-forum-ticker__track,
.home-v9-forum-ticker:focus-within .home-v9-forum-ticker__track {
    animation-play-state: paused;
}

.home-v9-forum-ticker__group {
    display: flex;
    align-items: center;
    gap: 26px;
    padding-right: 26px;
}

.home-v9-forum-ticker__item {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .92);
    font-size: 11px;
    font-weight: 760;
    white-space: nowrap;
}

.home-v9-forum-ticker__item::before {
    content: "";
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
    border-radius: 50%;
    background: var(--home-gold);
    box-shadow: 0 0 0 4px rgba(207, 152, 45, .12);
}

.home-v9-forum-ticker__item span {
    color: #f1c76d;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.home-v9-forum-ticker__item strong {
    font-weight: 760;
}

@keyframes home-v9-forum-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.home-v9-button--gold {
    color: var(--home-navy);
    background: var(--home-gold);
}

.home-v9-button--dark {
    color: #fff;
    border-color: rgba(255, 255, 255, .5);
    background: transparent;
}

.home-v9-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
}

.home-v9-proof__mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: #fff;
    background: var(--home-navy);
}

.home-v9-proof > span:last-child {
    display: grid;
}

.home-v9-proof strong {
    font-size: 13px;
}

.home-v9-proof small {
    margin-top: 3px;
    color: var(--home-muted);
    font-size: 11px;
}

.home-v9-brand-plate {
    width: 286px;
    height: 94px;
    position: absolute;
    right: 24px;
    bottom: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    z-index: 2;
    border: 1px solid #edf0f4;
    border-radius: 16px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--home-shadow);
}

.home-v9-brand-plate img {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.home-v9-brand-plate > span,
.home-v9-footer__brand > a > span {
    display: grid;
    color: var(--home-ink);
    line-height: 1;
    text-transform: uppercase;
}

.home-v9-brand-plate > span strong,
.home-v9-footer__brand > a > span strong {
    color: var(--home-gold-dark);
    font-size: 11px;
    letter-spacing: .16em;
}

.home-v9-brand-plate > span b,
.home-v9-footer__brand > a > span b {
    margin-top: 6px;
    font-size: 13px;
    letter-spacing: .16em;
}

.home-v9-brand-plate > span small,
.home-v9-footer__brand > a > span small {
    margin-top: 7px;
    color: #7a8595;
    font-size: 5px;
    letter-spacing: .12em;
}

.home-v9-services {
    position: relative;
    z-index: 3;
    margin-top: -8px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.home-v9-services article {
    min-height: 320px;
    padding: 30px 28px 26px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--home-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--home-shadow);
}

.home-v9-service__icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--home-navy);
    font-size: 25px;
}

.home-v9-services article:nth-child(even) .home-v9-service__icon {
    color: var(--home-navy);
    background: var(--home-gold);
}

.home-v9-services h2 {
    margin: 25px 0 11px;
    color: var(--home-ink);
    font-family: inherit;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.home-v9-services p {
    margin: 0;
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.65;
}

.home-v9-services a {
    min-height: 44px;
    margin-top: auto;
    display: inline-flex;
    align-items: flex-end;
    gap: 9px;
    color: var(--home-ink);
    font-size: 13px;
    font-weight: 800;
}

.home-v9-services article:nth-child(even) a {
    color: var(--home-gold-dark);
}

.home-v9-stats {
    min-height: 132px;
    margin-top: 34px;
    padding: 22px 35px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    border-radius: 15px;
    color: #fff;
    background: var(--home-navy);
}

.home-v9-stats article {
    min-width: 0;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
}

.home-v9-stats i {
    grid-row: 1 / 3;
    color: var(--home-gold);
    font-size: 30px;
}

.home-v9-stats strong {
    color: #fff;
    font-size: 28px;
    line-height: 1;
}

.home-v9-stats span {
    margin-top: 7px;
    color: #c7d0dd;
    font-size: 12px;
}

.home-v9-about {
    min-height: 585px;
    padding: 82px 26px 68px;
    display: grid;
    grid-template-columns: 39% 56%;
    gap: 5%;
    align-items: center;
}

.home-v9-about__copy h2,
.home-v9-faq h2 {
    margin: 17px 0;
    color: var(--home-ink);
    font-family: Inter, Manrope, "Segoe UI", sans-serif;
    font-size: 36px;
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.home-v9-about__copy > p,
.home-v9-faq__intro > p {
    margin: 0;
    color: var(--home-muted);
    font-size: 15px;
    line-height: 1.75;
}

.home-v9-about__copy ul {
    margin: 25px 0 27px;
    padding: 0;
    list-style: none;
}

.home-v9-about__copy li {
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: #435169;
    font-size: 14px;
}

.home-v9-about__copy li i {
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid #8290a2;
    border-radius: 50%;
    font-size: 10px;
}

.home-v9-product {
    min-height: 410px;
    position: relative;
    isolation: isolate;
    background: radial-gradient(circle at 54% 46%, rgba(207, 152, 45, .1), transparent 42%);
}

.home-v9-product__path {
    position: absolute;
    inset: 22px 42px;
    z-index: -1;
    border: 1px dashed #dce1e8;
    border-radius: 22px;
}

.home-v9-product article {
    position: absolute;
    overflow: hidden;
    border: 1px solid var(--home-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--home-shadow);
}

.home-v9-product article header {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--home-ink);
    font-size: 12px;
}

.home-v9-product__forum {
    top: 28px;
    left: 0;
    width: 53%;
    padding: 18px 21px;
}

.home-v9-product__courses {
    right: 7%;
    bottom: 12px;
    width: 57%;
    padding: 18px 21px;
}

.home-v9-product__forum a,
.home-v9-product__courses a {
    min-height: 48px;
    padding: 10px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #eef1f4;
    color: var(--home-muted);
    font-size: 11px;
}

.home-v9-product__forum a span,
.home-v9-product__courses a span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-v9-product__forum small,
.home-v9-product__courses small {
    color: #7d899a;
    font-size: 9px;
    white-space: nowrap;
}

.home-v9-product__cycle {
    top: 63px;
    right: 0;
    width: 39%;
    min-height: 185px;
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    color: #fff;
    border-color: transparent !important;
    background: var(--home-navy) !important;
}

.home-v9-product__cycle small {
    grid-column: 1 / -1;
    color: #aeb9c8;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.home-v9-product__cycle strong,
.home-v9-product__cycle span {
    color: #f3c45f;
    font-size: 12px;
}

.home-v9-topics {
    padding: 25px 26px 27px;
    border-radius: 14px;
    background: var(--home-panel);
}

.home-v9-topics > header {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.home-v9-topics h2 {
    margin: 0;
    color: var(--home-ink);
    font-family: inherit;
    font-size: 22px;
    font-weight: 820;
    letter-spacing: -.025em;
}

.home-v9-topics > header a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 780;
}

.home-v9-topics > div {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.home-v9-topics > div > a {
    min-width: 0;
    min-height: 84px;
    padding: 13px;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid #edf0f4;
    border-radius: 10px;
    background: #fff;
}

.home-v9-topics > div > a > i {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 10px;
    color: var(--home-gold-dark);
    background: var(--home-gold-soft);
    font-size: 17px;
}

.home-v9-topics > div > a:nth-child(3n + 2) > i {
    color: #fff;
    background: var(--home-navy);
}

.home-v9-topics > div > a > span {
    min-width: 0;
    display: grid;
}

.home-v9-topics strong {
    overflow: hidden;
    color: var(--home-ink);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-v9-topics small {
    margin-top: 5px;
    color: var(--home-muted);
    font-size: 10px;
}

.home-v10-stories {
    padding: clamp(82px, 8vw, 112px) 26px clamp(90px, 8vw, 118px);
    display: grid;
    gap: clamp(82px, 9vw, 126px);
}

.home-v10-story {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    grid-template-areas: "copy media";
    align-items: center;
    gap: clamp(44px, 6vw, 82px);
}

.home-v10-story--reverse {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    grid-template-areas: "media copy";
}

.home-v10-story__media {
    grid-area: media;
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border: 1px solid rgba(7, 24, 47, .08);
    border-radius: 22px;
    background: var(--home-paper);
    box-shadow: 0 24px 64px rgba(7, 24, 47, .1);
}

.home-v10-story__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-v10-story__copy {
    grid-area: copy;
    max-width: 58ch;
    padding-inline-start: 28px;
    border-inline-start: 2px solid var(--home-gold);
}

.home-v10-story__copy h2 {
    max-width: 630px;
    margin: 20px 0 22px;
    color: var(--home-ink);
    font-family: Inter, Manrope, "Segoe UI", sans-serif;
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 880;
    line-height: 1.04;
    letter-spacing: -.047em;
}

.home-v10-story__copy > p {
    margin: 0;
    color: var(--home-muted);
    font-size: 15px;
    line-height: 1.76;
}

.home-v10-story__copy > p + p {
    margin-top: 17px;
}

.home-v10-story__statement {
    color: #3f4c61 !important;
    font-weight: 620;
}

.home-v10-story__prose {
    max-width: 57ch;
    margin: 25px 0 30px;
    padding-top: 21px;
    display: grid;
    gap: 14px;
    border-top: 1px solid rgba(7, 24, 47, .12);
}

.home-v10-story__prose p {
    margin: 0;
    color: #526077;
    font-size: 13px;
    line-height: 1.72;
    text-wrap: pretty;
}

.home-v10-story__points {
    margin: 27px 0 30px;
    padding: 0;
    display: grid;
    gap: 14px;
    list-style: none;
}

.home-v10-story__points li {
    min-width: 0;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: start;
    gap: 11px;
}

.home-v10-story__points li > i {
    width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(185, 124, 17, .62);
    border-radius: 50%;
    color: var(--home-gold-dark);
    font-size: 11px;
}

.home-v10-story__points li > span {
    min-width: 0;
    display: grid;
}

.home-v10-story__points strong {
    color: var(--home-ink);
    font-size: 13px;
    line-height: 1.45;
}

.home-v10-story__points small {
    margin-top: 3px;
    color: var(--home-muted);
    font-size: 11px;
    line-height: 1.55;
}

.home-v10-story__points--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
}

.home-v10-story__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 18px;
}

.home-v10-story__secondary {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--home-ink);
    font-size: 12px;
    font-weight: 800;
}

.home-v9-faq {
    padding: 86px 26px;
    display: grid;
    grid-template-columns: 32% 62%;
    gap: 6%;
    border-top: 1px solid var(--home-line);
}

.home-v9-faq h2 {
    font-size: 42px;
}

.home-v9-faq__intro > a {
    min-height: 44px;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--home-ink);
    font-size: 12px;
    font-weight: 800;
}

.home-v9-faq__list details {
    border-top: 1px solid var(--home-line);
}

.home-v9-faq__list details:last-child {
    border-bottom: 1px solid var(--home-line);
}

.home-v9-faq__list summary {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    color: var(--home-ink);
    font-size: 13px;
    font-weight: 780;
    list-style: none;
}

.home-v9-faq__list summary::-webkit-details-marker {
    display: none;
}

.home-v9-faq__list summary i {
    transition: transform .2s ease;
}

.home-v9-faq__list details[open] summary i {
    transform: rotate(45deg);
}

.home-v9-faq__list p {
    margin: -2px 44px 22px 0;
    color: var(--home-muted);
    font-size: 12px;
    line-height: 1.75;
}

.home-v9-community {
    min-height: 338px;
    padding: 44px 55px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 42% 25%;
    align-items: center;
    border-radius: 16px;
    color: #fff;
    background: var(--home-navy);
}

.home-v9-community > picture {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .58;
}

.home-v9-community > picture::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--home-navy) 0%, rgba(7, 24, 47, .94) 39%, rgba(7, 24, 47, .15) 100%);
}

.home-v9-community > picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-v9-community__copy,
.home-v9-community > ul {
    position: relative;
    z-index: 1;
}

.home-v9-community__copy h2 {
    margin: 0;
    color: #fff;
    font-family: inherit;
    font-size: 38px;
    font-weight: 850;
    line-height: 1.06;
    letter-spacing: -.035em;
}

.home-v9-community__copy > p {
    max-width: 440px;
    margin: 19px 0 0;
    color: #cad3df;
    font-size: 14px;
    line-height: 1.7;
}

.home-v9-community > ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-v9-community > ul li {
    min-height: 64px;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}

.home-v9-community > ul li > i {
    color: var(--home-gold);
    font-size: 25px;
}

.home-v9-community > ul span {
    display: grid;
}

.home-v9-community > ul strong {
    color: #fff;
    font-size: 25px;
    line-height: 1;
}

.home-v9-community > ul small {
    margin-top: 6px;
    color: #c5cfdd;
    font-size: 11px;
}

.home-v9-updates {
    min-height: 128px;
    margin-block: 28px;
    padding: 24px 34px;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) minmax(180px, auto);
    align-items: center;
    border: 1px solid var(--home-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--home-shadow);
}

.home-v9-updates > i {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--home-gold);
    font-size: 23px;
}

.home-v9-updates p {
    margin: 0;
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.6;
}

.home-v9-updates p strong {
    color: var(--home-ink);
}

.home-v9-updates > a {
    min-height: 50px;
    padding-inline: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    color: var(--home-navy);
    background: var(--home-gold);
    font-size: 12px;
    font-weight: 800;
}

.home-v9-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 0;
    color: #fff;
    background: #04162f;
}

.home-v9-footer::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(4, 22, 47, .86) 0%, rgba(4, 22, 47, .74) 36%, rgba(4, 22, 47, .5) 66%, rgba(4, 22, 47, .34) 100%),
        linear-gradient(180deg, rgba(4, 22, 47, .12), rgba(4, 22, 47, .02) 62%, rgba(1, 9, 22, .44));
}

.home-v9-footer__art {
    position: absolute;
    z-index: -2;
    inset: 0;
    margin: 0;
    pointer-events: none;
}

.home-v9-footer__art img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .9;
}

.home-v9-footer > .home-v9-shell {
    position: relative;
    z-index: 1;
}

.home-v9-footer__signature {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    color: #f0d28a;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.home-v9-footer__signature span {
    color: #f7f3e9;
}

.home-v9-footer__signature i {
    margin-inline: .42em;
    color: var(--home-gold);
    font-style: normal;
}

.home-v9-footer__grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, minmax(0, 1fr));
    gap: 48px;
    padding-block: 42px 38px;
}

.home-v9-footer__brand {
    padding-right: 38px;
    border-right: 1px solid rgba(255, 255, 255, .13);
}

.home-v9-footer__brand > a {
    width: 270px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-v9-footer__brand img {
    width: 74px;
    height: 74px;
    object-fit: contain;
}

.home-v9-footer__brand > a > span {
    color: #fff;
}

.home-v9-footer__brand > a > span strong {
    color: var(--home-gold);
}

.home-v9-footer__brand > a > span b {
    color: #fff;
}

.home-v9-footer__brand > a > span small {
    color: #8f9daf;
}

.home-v9-footer__brand p {
    max-width: 330px;
    margin: 20px 0 0;
    color: #aeb9c9;
    font-size: 12px;
    line-height: 1.75;
}

.home-v9-footer .home-v9-footer__social {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.home-v9-footer .home-v9-footer__social a {
    width: auto;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #dce5ef;
    background: rgba(255, 255, 255, .035);
    font-size: 11px;
    font-weight: 760;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.home-v9-footer .home-v9-footer__social a i {
    color: var(--home-gold);
    font-size: 15px;
}

.home-v9-footer .home-v9-footer__social a:hover {
    border-color: rgba(218, 171, 66, .58);
    color: #fff;
    background: rgba(218, 171, 66, .1);
    transform: translateY(-2px);
}

.home-v9-footer a:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(36, 95, 143, .78);
}

@media (prefers-reduced-motion: reduce) {
    .home-v9-footer .home-v9-footer__social a { transition: none; }
    .home-v9-footer .home-v9-footer__social a:hover { transform: none; }
}

.home-v9-footer nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.home-v9-footer nav strong {
    margin-bottom: 12px;
    color: #f0cf7d;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.home-v9-footer nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    color: #c5cfdd;
    font-size: 12px;
}

.home-v9-footer nav a:hover {
    color: #fff;
}

.home-v9-footer__legal {
    min-height: 70px;
    margin-top: 0;
    padding-block: 14px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #98a6b9;
    font-size: 11px;
}

.home-v9-footer__legal::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0 calc(50% - 50vw);
    border-radius: 0;
    background: rgba(1, 9, 22, .9);
}

.home-v9-footer__created {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.home-v9-footer__created img {
    width: 102px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .92;
}

@media (max-width: 1180px) {
    .home-v9-hero__copy {
        width: 55%;
    }

    .home-v9-services {
        gap: 16px;
    }

    .home-v9-services article {
        padding-inline: 22px;
    }
}

/* Community editorial v14 — one continuous surface, thirteen independent portraits. */
.home-v14-community {
    --community-bg: #07172b;
    --community-bg-deep: #04101f;
    --community-ink: #f7f9fc;
    --community-muted: #b8c5d4;
    --community-gold: #d6a239;
    --community-line: rgba(255, 255, 255, .13);
    position: relative;
    isolation: isolate;
    width: 100%;
    margin-block: clamp(76px, 8vw, 118px);
    overflow: hidden;
    color: var(--community-ink);
    background:
        radial-gradient(circle at 50% -18%, rgba(214, 162, 57, .12), transparent 34%),
        linear-gradient(180deg, #081a30 0%, var(--community-bg) 48%, var(--community-bg-deep) 100%);
    scroll-margin-top: 96px;
}

.home-v14-community::before,
.home-v14-community::after {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
    border: 1px solid rgba(214, 162, 57, .16);
    border-radius: 50%;
}

.home-v14-community::before {
    width: min(58vw, 820px);
    aspect-ratio: 1;
    top: -560px;
    left: calc(50% - min(29vw, 410px));
}

.home-v14-community::after {
    width: 560px;
    height: 560px;
    right: -330px;
    bottom: -390px;
}

.home-v14-community__pattern {
    position: absolute;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    opacity: .28;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
        radial-gradient(circle, rgba(214, 162, 57, .6) 0 1px, transparent 1.5px);
    background-size: 88px 88px, 88px 88px, 44px 44px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.home-v14-community__inner {
    position: relative;
    padding-block: clamp(42px, 5vw, 72px) clamp(54px, 6vw, 84px);
}

.home-v14-portraits {
    position: relative;
    z-index: 1;
    width: min(1220px, 100%);
    height: 224px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(13, minmax(0, 1fr));
    align-items: start;
    gap: clamp(5px, .7vw, 10px);
}

.home-v14-portrait {
    --portrait-duration: 12s;
    --portrait-delay: -2s;
    width: min(100%, 84px);
    aspect-ratio: 4 / 5;
    justify-self: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 15px;
    background-color: #102237;
    background-image: url("../homepage/v14/community-editorial-atlas-v14.jpg");
    background-image: image-set(
        url("../homepage/v14/community-editorial-atlas-v14.avif") type("image/avif"),
        url("../homepage/v14/community-editorial-atlas-v14.webp") type("image/webp"),
        url("../homepage/v14/community-editorial-atlas-v14.jpg") type("image/jpeg")
    );
    background-repeat: no-repeat;
    background-size: 400% 400%;
    box-shadow: 0 16px 30px rgba(0, 0, 0, .3);
}

.home-v14-portrait--1  { margin-top: 64px; background-position: 0 0; --portrait-duration: 13.4s; --portrait-delay: -4.2s; }
.home-v14-portrait--2  { margin-top: 10px; background-position: 33.333% 0; --portrait-duration: 11.8s; --portrait-delay: -7.1s; }
.home-v14-portrait--3  { margin-top: 88px; background-position: 66.667% 0; --portrait-duration: 14.2s; --portrait-delay: -2.8s; }
.home-v14-portrait--4  { margin-top: 38px; background-position: 100% 0; --portrait-duration: 12.7s; --portrait-delay: -8.4s; }
.home-v14-portrait--5  { margin-top: 0; background-position: 0 33.333%; --portrait-duration: 13.8s; --portrait-delay: -5.6s; }
.home-v14-portrait--6  { margin-top: 70px; background-position: 33.333% 33.333%; --portrait-duration: 11.4s; --portrait-delay: -1.9s; }
.home-v14-portrait--7  { margin-top: 22px; background-position: 66.667% 33.333%; --portrait-duration: 14.5s; --portrait-delay: -9.3s; }
.home-v14-portrait--8  { margin-top: 82px; background-position: 100% 33.333%; --portrait-duration: 12.2s; --portrait-delay: -6.4s; }
.home-v14-portrait--9  { margin-top: 29px; background-position: 0 66.667%; --portrait-duration: 13.1s; --portrait-delay: -3.5s; }
.home-v14-portrait--10 { margin-top: 0; background-position: 33.333% 66.667%; --portrait-duration: 11.7s; --portrait-delay: -7.9s; }
.home-v14-portrait--11 { margin-top: 62px; background-position: 66.667% 66.667%; --portrait-duration: 14.1s; --portrait-delay: -5.1s; }
.home-v14-portrait--12 { margin-top: 14px; background-position: 100% 66.667%; --portrait-duration: 12.5s; --portrait-delay: -10.2s; }
.home-v14-portrait--13 { margin-top: 74px; background-position: 0 100%; --portrait-duration: 13.6s; --portrait-delay: -2.2s; }

.home-v14-community.is-motion-active .home-v14-portrait {
    animation: home-v14-portrait-drift var(--portrait-duration) ease-in-out var(--portrait-delay) infinite;
    will-change: transform;
}

@keyframes home-v14-portrait-drift {
    0%, 100% { transform: translate3d(0, -2px, 0); }
    50% { transform: translate3d(0, 4px, 0); }
}

.home-v14-community__intro {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: -2px auto clamp(38px, 4vw, 54px);
    text-align: center;
}

.home-v14-community__eyebrow,
.home-v14-community__integrity {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.home-v14-community__eyebrow {
    min-height: 30px;
    padding: 5px 12px;
    border: 1px solid rgba(214, 162, 57, .46);
    border-radius: 999px;
    color: #f1c76d;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.home-v14-community__intro h2 {
    max-width: 760px;
    margin: 19px auto 15px;
    color: #fff;
    font-family: Inter, Manrope, "Segoe UI", sans-serif;
    font-size: clamp(35px, 4.2vw, 57px);
    font-weight: 780;
    line-height: 1.01;
    letter-spacing: -.046em;
    text-wrap: balance;
}

.home-v14-community__intro > p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--community-muted);
    font-size: 15px;
    line-height: 1.72;
}

.home-v14-community__integrity {
    margin-top: 16px;
    color: #dce5ef;
    font-size: 11px;
    font-weight: 720;
}

.home-v14-community__integrity i { color: var(--community-gold); }

.home-v14-community__actions {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.home-v14-community .home-v9-button--primary {
    border-color: var(--community-gold);
    color: var(--home-navy);
    background: var(--community-gold);
}

.home-v14-community .home-v9-button--primary:hover {
    border-color: #e6b74e;
    background: #e6b74e;
}

.home-v14-community__secondary {
    min-height: 52px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 9px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: border-color .2s ease, background-color .2s ease;
}

.home-v14-community__secondary:hover {
    border-color: rgba(214, 162, 57, .72);
    background: rgba(255, 255, 255, .05);
}

.home-v14-community__rail-wrap {
    position: relative;
    z-index: 2;
}

.home-v14-community__rail {
    margin: 0;
    padding: 4px 1px 18px;
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    list-style: none;
}

.home-v14-community__rail::-webkit-scrollbar { display: none; }

.home-v14-community__rail > li {
    min-width: 0;
    flex: 0 0 calc((100% - 45px) / 4);
    scroll-snap-align: start;
}

.home-v14-community[data-voices-count="1"] .home-v14-community__rail {
    justify-content: center;
}

.home-v14-community[data-voices-count="1"] .home-v14-community__rail > li {
    flex-basis: min(650px, 100%);
}

.home-v14-voice {
    min-height: 420px;
    height: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(214, 162, 57, .48);
    border-bottom: 1px solid var(--community-line);
    color: var(--community-ink);
    background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018));
}

.home-v14-voice__author {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
}

.home-v14-voice__initials {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(214, 162, 57, .48);
    border-radius: 50%;
    color: #f4cd78;
    background: rgba(214, 162, 57, .08);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
}

.home-v14-voice__portrait {
    width: 48px;
    aspect-ratio: 4 / 5;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(214, 162, 57, .44);
    border-radius: 12px;
    background-color: #102237;
    background-image: url("../homepage/v14/community-editorial-atlas-v14.jpg");
    background-image: image-set(
        url("../homepage/v14/community-editorial-atlas-v14.avif") type("image/avif"),
        url("../homepage/v14/community-editorial-atlas-v14.webp") type("image/webp"),
        url("../homepage/v14/community-editorial-atlas-v14.jpg") type("image/jpeg")
    );
    background-repeat: no-repeat;
    background-size: 400% 400%;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .24);
}

.home-v14-voice__portrait--1  { background-position: 0 0; }
.home-v14-voice__portrait--2  { background-position: 33.333% 0; }
.home-v14-voice__portrait--3  { background-position: 66.667% 0; }
.home-v14-voice__portrait--4  { background-position: 100% 0; }
.home-v14-voice__portrait--5  { background-position: 0 33.333%; }
.home-v14-voice__portrait--6  { background-position: 33.333% 33.333%; }
.home-v14-voice__portrait--7  { background-position: 66.667% 33.333%; }
.home-v14-voice__portrait--8  { background-position: 100% 33.333%; }
.home-v14-voice__portrait--9  { background-position: 0 66.667%; }
.home-v14-voice__portrait--10 { background-position: 33.333% 66.667%; }
.home-v14-voice__portrait--11 { background-position: 66.667% 66.667%; }
.home-v14-voice__portrait--12 { background-position: 100% 66.667%; }
.home-v14-voice__portrait--13 { background-position: 0 100%; }

.home-v14-voice__sequence {
    color: #d9aa48;
    font-size: 10px;
    font-weight: 850;
    font-variant-numeric: tabular-nums;
    letter-spacing: .1em;
}

.home-v14-voice__author > span:nth-child(2) { min-width: 0; display: grid; gap: 2px; }
.home-v14-voice__author strong { overflow-wrap: anywhere; color: #fff; font-size: 13px; }
.home-v14-voice__author small { color: #92a3b7; font-size: 10px; }
.home-v14-voice__author time { color: #91a2b6; font-size: 10px; }

.home-v14-voice__category {
    align-self: flex-start;
    margin-top: 22px;
    color: #efc365;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.home-v14-voice h3 {
    margin: 12px 0 13px;
    color: #fff;
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -.025em;
    overflow-wrap: anywhere;
}

.home-v14-voice h3 a { color: inherit; text-decoration: none; }
.home-v14-voice blockquote {
    position: relative;
    margin: 30px 0 0;
    padding-top: 28px;
    border-top: 1px solid var(--community-line);
}

.home-v14-voice blockquote::before {
    content: "“";
    position: absolute;
    top: 8px;
    left: 0;
    color: rgba(214, 162, 57, .76);
    font-family: Georgia, serif;
    font-size: 32px;
    line-height: 1;
}

.home-v14-voice blockquote p { color: #d2dae4; font-size: 13px; line-height: 1.76; }

.home-v14-voice__footer {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid var(--community-line);
}

.home-v14-voice__footer ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}

.home-v14-voice__footer li { display: inline-flex; align-items: center; gap: 5px; color: #91a2b6; font-size: 9px; }
.home-v14-voice__footer i { color: #d9aa48; }
.home-v14-voice__footer > a { min-height: 44px; display: inline-flex; align-items: center; gap: 7px; flex: 0 0 auto; color: #f1c76d; font-size: 11px; font-weight: 850; text-decoration: none; }

.home-v14-voice__footer > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #91a2b6;
    font-size: 10px;
    line-height: 1.45;
}

.home-v14-voice__footer > span i { color: #d9aa48; }

.home-v14-community__controls:not([hidden]) {
    width: min(230px, 100%);
    margin: 14px auto 0;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    align-items: center;
    gap: 12px;
}

.home-v14-community__controls > button {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .035);
    cursor: pointer;
}

.home-v14-community__controls > button:disabled { opacity: .35; cursor: default; }

.home-v14-community__counter {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    color: #8192a7;
    font-size: 11px;
    font-variant-numeric: tabular-nums;
    letter-spacing: .08em;
}

.home-v14-community__counter strong { color: #f0c367; font-size: 15px; }

.home-v14-community__empty {
    position: relative;
    z-index: 2;
    max-width: 980px;
    min-height: 124px;
    margin-inline: auto;
    padding: 25px 0;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: 19px;
    border-top: 1px solid rgba(214, 162, 57, .35);
    border-bottom: 1px solid var(--community-line);
}

.home-v14-community__empty > span {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(214, 162, 57, .46);
    border-radius: 50%;
    color: #f1c76d;
    font-size: 21px;
}

.home-v14-community__empty h3 { margin: 0 0 5px; color: #fff; font-size: 17px; }
.home-v14-community__empty p { max-width: 650px; margin: 0; color: #aebdce; font-size: 12px; line-height: 1.62; }
.home-v14-community__empty > a { min-height: 44px; display: inline-flex; align-items: center; gap: 8px; color: #f1c76d; font-size: 12px; font-weight: 850; text-decoration: none; }

.home-v14-community.is-enhanced .home-v14-portrait,
.home-v14-community.is-enhanced .home-v14-community__intro,
.home-v14-community.is-enhanced .home-v14-community__rail > li,
.home-v14-community.is-enhanced .home-v14-community__empty {
    opacity: 0;
}

.home-v14-community.is-enhanced .home-v14-community__intro,
.home-v14-community.is-enhanced .home-v14-community__rail > li,
.home-v14-community.is-enhanced .home-v14-community__empty {
    transform: translateY(14px);
}

.home-v14-community.is-visible .home-v14-portrait,
.home-v14-community.is-visible .home-v14-community__intro,
.home-v14-community.is-visible .home-v14-community__rail > li,
.home-v14-community.is-visible .home-v14-community__empty {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .38s ease, transform .38s ease;
}

.home-v14-community.is-visible .home-v14-portrait:nth-child(3n + 2) { transition-delay: .06s; }
.home-v14-community.is-visible .home-v14-portrait:nth-child(3n) { transition-delay: .12s; }
.home-v14-community.is-visible .home-v14-community__rail > li:nth-child(2) { transition-delay: .06s; }
.home-v14-community.is-visible .home-v14-community__rail > li:nth-child(3) { transition-delay: .12s; }
.home-v14-community.is-visible .home-v14-community__rail > li:nth-child(4) { transition-delay: .18s; }

.home-v14-community a:focus-visible,
.home-v14-community button:focus-visible,
.home-v14-community__rail:focus-visible {
    outline: 3px solid #f2c765;
    outline-offset: 3px;
}

@media (max-width: 1100px) {
    .home-v14-portraits { height: 202px; }
    .home-v14-portrait { width: min(100%, 72px); border-radius: 13px; }
    .home-v14-community__rail > li { flex-basis: calc((100% - 30px) / 3); }
}

@media (max-width: 900px) {
    .home-v14-community__inner { padding-block: 40px 60px; }

    .home-v14-portraits {
        width: min(690px, 100%);
        height: 190px;
        grid-template-columns: repeat(7, minmax(0, 1fr));
        grid-template-rows: repeat(2, 82px);
        align-items: start;
        gap: 8px 10px;
    }

    .home-v14-portrait { width: min(100%, 68px); margin-top: 0; border-radius: 12px; }
    .home-v14-portrait:nth-child(2n) { margin-top: 12px; }
    .home-v14-portrait:nth-child(3n) { margin-top: 5px; }
    .home-v14-community__rail > li { flex-basis: calc(50% - 8px); }
}

@media (max-width: 620px) {
    .home-v14-community { margin-block: 64px; }
    .home-v14-community__inner { width: min(100% - 28px, var(--home-shell)); padding-block: 30px 40px; }
    .home-v14-community::after { display: none; }

    .home-v14-portraits {
        height: 146px;
        grid-template-columns: repeat(7, minmax(0, 1fr));
        grid-template-rows: repeat(2, 66px);
        gap: 6px 5px;
    }

    .home-v14-portrait {
        width: min(100%, 48px);
        aspect-ratio: 4 / 5;
        border-radius: 9px;
    }

    .home-v14-portrait:nth-child(2n) { margin-top: 8px; }
    .home-v14-portrait:nth-child(3n) { margin-top: 3px; }
    .home-v14-community__intro { margin: 7px auto 29px; }
    .home-v14-community__intro h2 { margin-top: 15px; font-size: clamp(30px, 9.2vw, 39px); }
    .home-v14-community__intro > p { font-size: 13px; line-height: 1.66; }
    .home-v14-community__integrity { font-size: 10px; line-height: 1.5; }
    .home-v14-community__actions { align-items: stretch; flex-direction: column; }
    .home-v14-community__actions > * { width: 100%; }

    .home-v14-community__rail { gap: 11px; padding-bottom: 16px; }
    .home-v14-community__rail > li { flex-basis: calc(100% - 34px); }
    .home-v14-voice { min-height: 410px; padding: 20px; }
    .home-v14-voice__author { grid-template-columns: 48px minmax(0, 1fr) auto; }
    .home-v14-voice__footer { align-items: flex-start; flex-direction: column; }

    .home-v14-community__empty {
        padding: 23px 0;
        grid-template-columns: 48px minmax(0, 1fr);
        align-items: start;
        gap: 13px;
    }

    .home-v14-community__empty > span { width: 48px; height: 48px; }
    .home-v14-community__empty > a { grid-column: 1 / -1; justify-self: stretch; justify-content: center; border: 1px solid rgba(255, 255, 255, .18); border-radius: 9px; }
}

@media (max-width: 350px) {
    .home-v14-community__inner { width: calc(100% - 20px); }
    .home-v14-portraits { height: 134px; grid-template-rows: repeat(2, 60px); gap-inline: 3px; }
    .home-v14-portrait { max-width: 41px; }
    .home-v14-community__intro h2 { font-size: 28px; }
    .home-v14-community__rail > li { flex-basis: calc(100% - 24px); }
    .home-v14-voice { padding: 17px; }
}

/* Community voices v19 — visible controls, content-led equal cards and patterned CTA. */
.home-v14-community {
    --voice-card-height: 270px;
}

.home-v14-voice {
    box-sizing: border-box;
    min-height: var(--voice-card-height);
    height: var(--voice-card-height);
    padding: 20px 22px;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
}

.home-v14-voice blockquote {
    margin: 15px 0 0;
    padding-top: 17px;
}

.home-v14-voice blockquote::before {
    top: 4px;
    font-size: 26px;
}

.home-v14-voice blockquote p {
    margin: 0;
    align-self: start;
}

.home-v14-community__controls > [data-voices-prev],
.home-v14-community__controls > [data-voices-next] {
    position: relative;
    display: inline-grid;
    place-items: center;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(255, 236, 179, .82);
    color: #07172b;
    background:
        radial-gradient(circle at 29% 22%, rgba(255, 255, 255, .44) 0 2px, transparent 2.8px),
        linear-gradient(135deg, #e7b640, #c78b18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .52),
        inset 0 -2px 0 rgba(118, 72, 6, .18),
        0 14px 28px rgba(0, 0, 0, .28);
}

.home-v14-community__controls > [data-voices-prev]::before,
.home-v14-community__controls > [data-voices-next]::before {
    content: "";
    position: absolute;
    inset: 5px;
    z-index: -1;
    border: 1px solid rgba(7, 23, 43, .16);
    border-radius: inherit;
}

.home-v14-community__controls > [data-voices-prev] i,
.home-v14-community__controls > [data-voices-next] i {
    width: auto;
    height: auto;
    display: block;
    color: currentColor;
    font-size: 21px;
    line-height: 1;
}

.home-v14-community__controls > [data-voices-prev]:is(:hover, :focus-visible),
.home-v14-community__controls > [data-voices-next]:is(:hover, :focus-visible) {
    color: #fff;
    border-color: #f5d681;
    background: #0b2545;
}

.home-v14-community__share {
    min-height: 52px;
    padding: 0 13px 0 9px;
    gap: 10px;
    border-color: rgba(242, 199, 101, .9);
    color: #fff;
    background:
        linear-gradient(105deg, #0b2545 0 42%, #102e52 42% 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .05),
        inset 0 -3px 0 rgba(214, 162, 57, .92),
        0 14px 28px rgba(0, 0, 0, .2);
}

.home-v14-community__share::before {
    opacity: .95;
    background:
        radial-gradient(circle at 2px 2px, rgba(242, 199, 101, .42) 1px, transparent 1.7px) 0 0 / 11px 11px,
        linear-gradient(122deg, transparent 0 38%, rgba(242, 199, 101, .15) 38% 39%, transparent 39% 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 82%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 82%, transparent 100%);
}

.home-v14-community__share > .bi-chat-left-text-fill {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border: 1px solid rgba(242, 199, 101, .72);
    border-radius: 11px;
    color: #0b2545;
    background: #f0c367;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .42);
}

.home-v14-community__share-arrow {
    margin-left: 1px;
    color: #f3cb73;
    font-size: 15px;
    transition: transform .24s ease;
}

.home-v14-community__share:is(:hover, :focus-visible) {
    border-color: #fff0c4;
    color: #fff;
    background: #0a203a;
}

.home-v14-community__share:is(:hover, :focus-visible) .home-v14-community__share-arrow {
    transform: translateX(3px);
}

@media (max-width: 620px) {
    .home-v14-community {
        --voice-card-height: 238px;
    }

    .home-v14-voice {
        padding: 15px 17px;
    }

    .home-v14-voice blockquote {
        margin-top: 13px;
        padding-top: 15px;
    }

    .home-v14-voice blockquote p {
        font-size: 11.5px;
        line-height: 1.5;
    }

    .home-v14-community__share {
        min-height: 50px;
        padding-inline: 8px 12px;
        gap: 9px;
    }

    .home-v14-community__share > .bi-chat-left-text-fill {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
        border-radius: 10px;
    }

    .home-v14-community__share-arrow {
        font-size: 14px;
    }

    .home-v14-community__controls > [data-voices-prev],
    .home-v14-community__controls > [data-voices-next] {
        top: 106px;
    }
}

@media (max-width: 350px) {
    .home-v14-community {
        --voice-card-height: 250px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-v14-community__share-arrow {
        transition: none;
    }
}


/* Community voices v21 — resolves the homepage button specificity and side-control anchor. */
.home-v14-community.home-v14-community {
    --voice-card-height: 242px;
}

.home-v14-community .home-v14-community__share {
    min-height: 52px;
    padding: 0 13px 0 9px;
    gap: 10px;
    border-color: rgba(242, 199, 101, .9);
    color: #fff;
    background: linear-gradient(105deg, #0b2545 0 42%, #102e52 42% 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .05),
        inset 0 -3px 0 rgba(214, 162, 57, .92),
        0 14px 28px rgba(0, 0, 0, .2);
}

.home-v14-community .home-v9-button--primary.home-v14-community__share--pattern {
    min-height: 52px;
    padding: 0 13px 0 9px;
    gap: 10px;
    border-color: rgba(242, 199, 101, .9);
    color: #fff;
    background: linear-gradient(105deg, #0b2545 0 42%, #102e52 42% 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .05),
        inset 0 -3px 0 rgba(214, 162, 57, .92),
        0 14px 28px rgba(0, 0, 0, .2);
}

.home-v14-community .home-v14-community__share--pattern::before {
    opacity: .95;
    background:
        radial-gradient(circle at 2px 2px, rgba(242, 199, 101, .42) 1px, transparent 1.7px) 0 0 / 11px 11px,
        linear-gradient(122deg, transparent 0 38%, rgba(242, 199, 101, .15) 38% 39%, transparent 39% 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 82%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 82%, transparent 100%);
}

.home-v14-community .home-v14-community__share:is(:hover, :focus-visible) {
    border-color: #fff0c4;
    color: #fff;
    background: #0a203a;
}

@media (max-width: 620px) {
    .home-v14-community.home-v14-community {
        --voice-card-height: 204px;
    }

    .home-v14-community .home-v14-community__share {
        min-height: 50px;
        padding-inline: 8px 12px;
        gap: 9px;
    }

    .home-v14-community .home-v9-button--primary.home-v14-community__share--pattern {
        min-height: 50px;
        padding-inline: 8px 12px;
        gap: 9px;
    }

    .home-v14-community .home-v14-community__controls > [data-voices-prev],
    .home-v14-community .home-v14-community__controls > [data-voices-next] {
        position: absolute;
        top: calc(8px + ((var(--voice-card-height) - 44px) / 2));
    }
}

@media (max-width: 350px) {
    .home-v14-community.home-v14-community {
        --voice-card-height: 216px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-v14-community *,
    .home-v14-community *::before,
    .home-v14-community *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

    .home-v14-community.is-enhanced .home-v14-portrait,
    .home-v14-community.is-enhanced .home-v14-community__intro,
    .home-v14-community.is-enhanced .home-v14-community__rail > li,
    .home-v14-community.is-enhanced .home-v14-community__empty {
        opacity: 1;
        transform: none;
    }
}

/* Community voices v15 — a centered, editorial testimonial stage on every viewport. */
.home-v14-community__intro {
    margin-bottom: clamp(34px, 3.8vw, 50px);
}

.home-v14-community .home-v9-button--primary {
    min-height: 50px;
    padding-inline: 22px;
    border-color: rgba(255, 255, 255, .92);
    color: #07172b;
    background: #fff;
    box-shadow: inset 0 -3px 0 var(--community-gold), 0 16px 36px rgba(0, 0, 0, .2);
}

.home-v14-community .home-v9-button--primary:hover {
    border-color: #fff;
    color: #07172b;
    background: #fff;
    transform: translateY(-2px);
    box-shadow: inset 0 -3px 0 #e4b54f, 0 20px 42px rgba(0, 0, 0, .28);
}

.home-v14-community__status {
    min-width: 150px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.home-v14-community__progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.home-v14-community__progress > span {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .24);
    transition: width .25s ease, background-color .25s ease;
}

.home-v14-community__progress > span.is-active {
    width: 18px;
    background: var(--community-gold);
}

.home-v14-community__controls:not([hidden]) {
    width: min(430px, 100%);
    grid-template-columns: 48px minmax(150px, 1fr) 48px 44px;
    gap: 10px;
}

.home-v14-community__controls > .home-v14-community__autoplay {
    width: 44px;
    height: 44px;
    border-color: rgba(214, 162, 57, .42);
    color: #f1c76d;
}

.home-v14-community__rail > li {
    transition: transform .32s ease;
}

.home-v14-voice {
    border: 1px solid rgba(255, 255, 255, .11);
    border-top-color: rgba(214, 162, 57, .56);
    border-radius: 16px;
    background: linear-gradient(155deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .022));
    box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
    transition: border-color .32s ease, background-color .32s ease, box-shadow .32s ease;
}

.home-v14-community.is-visible .home-v14-community__rail > li.is-active {
    transform: translateY(-4px);
}

.home-v14-community__rail > li.is-active .home-v14-voice {
    border-color: rgba(214, 162, 57, .42);
    background: linear-gradient(155deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .03));
    box-shadow: 0 24px 52px rgba(0, 0, 0, .28);
}

.home-v14-portrait--1  { --portrait-duration: 7.8s; }
.home-v14-portrait--2  { --portrait-duration: 6.6s; }
.home-v14-portrait--3  { --portrait-duration: 8.7s; }
.home-v14-portrait--4  { --portrait-duration: 7.1s; }
.home-v14-portrait--5  { --portrait-duration: 8.2s; }
.home-v14-portrait--6  { --portrait-duration: 6.9s; }
.home-v14-portrait--7  { --portrait-duration: 9s; }
.home-v14-portrait--8  { --portrait-duration: 7.4s; }
.home-v14-portrait--9  { --portrait-duration: 8.5s; }
.home-v14-portrait--10 { --portrait-duration: 6.4s; }
.home-v14-portrait--11 { --portrait-duration: 8.9s; }
.home-v14-portrait--12 { --portrait-duration: 7.2s; }
.home-v14-portrait--13 { --portrait-duration: 8.1s; }

@keyframes home-v14-portrait-drift {
    0%, 100% { transform: translate3d(0, -5px, 0) rotate(-.35deg); }
    50% { transform: translate3d(0, 8px, 0) rotate(.35deg); }
}

@media (max-width: 900px) {
    .home-v14-community__inner {
        --voice-card-size: min(420px, 72vw);
    }

    .home-v14-portraits {
        width: min(720px, 100%);
        height: 176px;
        grid-template-columns: repeat(8, minmax(0, 1fr));
        grid-template-rows: 132px;
        gap: 8px;
    }

    .home-v14-portrait {
        width: min(100%, 70px);
        margin-top: 0;
    }

    .home-v14-portrait:nth-child(2n) { margin-top: 18px; }
    .home-v14-portrait:nth-child(3n) { margin-top: 7px; }
    .home-v14-portrait:nth-child(n + 9) { display: none; }

    .home-v14-community__rail {
        gap: 14px;
        padding-inline: max(1px, calc((100% - var(--voice-card-size)) / 2));
        scroll-padding-inline: max(1px, calc((100% - var(--voice-card-size)) / 2));
    }

    .home-v14-community__rail > li {
        flex-basis: var(--voice-card-size);
        scroll-snap-align: center;
    }
}

@media (max-width: 620px) {
    .home-v14-community {
        margin-block: 58px;
        background:
            radial-gradient(circle at 50% 4%, rgba(214, 162, 57, .1), transparent 25%),
            linear-gradient(180deg, #081a30 0%, #07172b 52%, #04101f 100%);
    }

    .home-v14-community__inner {
        --voice-card-size: clamp(230px, 72vw, 300px);
        width: min(100% - 28px, var(--home-shell));
        padding-block: 30px 44px;
    }

    .home-v14-portraits {
        width: min(100%, 390px);
        height: 116px;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        grid-template-rows: 90px;
        align-items: start;
        gap: clamp(7px, 2.4vw, 12px);
    }

    .home-v14-portrait {
        display: block;
        width: min(100%, 64px);
        max-width: none;
        margin-top: 0;
        border-radius: 12px;
        box-shadow: 0 13px 25px rgba(0, 0, 0, .34);
    }

    .home-v14-portrait:nth-child(n + 6) { display: none; }
    .home-v14-portrait:nth-child(2) { width: min(88%, 56px); margin-top: 18px; }
    .home-v14-portrait:nth-child(3) { margin-top: 4px; }
    .home-v14-portrait:nth-child(4) { width: min(92%, 59px); margin-top: 20px; }
    .home-v14-portrait:nth-child(5) { margin-top: 7px; }

    .home-v14-community__intro {
        max-width: 390px;
        margin: 4px auto 30px;
    }

    .home-v14-community__eyebrow {
        min-height: 29px;
        padding-inline: 11px;
        font-size: 9px;
    }

    .home-v14-community__intro h2 {
        margin: 16px auto 0;
        font-size: clamp(25px, 6.9vw, 28px);
        line-height: 1.06;
    }

    .home-v14-community__intro > p { display: none; }

    .home-v14-community__actions {
        margin-top: 20px;
        align-items: center;
        flex-direction: row;
    }

    .home-v14-community__actions > * { width: auto; }

    .home-v14-community .home-v9-button--primary {
        min-height: 48px;
        padding-inline: 20px;
    }

    .home-v14-community__integrity {
        max-width: 300px;
        margin: 13px auto 0;
        font-size: 9px;
        line-height: 1.45;
    }

    .home-v14-community__rail-wrap {
        padding-bottom: 64px;
    }

    .home-v14-community__rail {
        gap: 12px;
        padding-top: 8px;
        padding-bottom: 14px;
        padding-inline: max(1px, calc((100% - var(--voice-card-size)) / 2));
        scroll-padding-inline: max(1px, calc((100% - var(--voice-card-size)) / 2));
    }

    .home-v14-community__rail > li { flex-basis: var(--voice-card-size); }

    .home-v14-voice {
        min-height: 424px;
        padding: 20px;
        border-radius: 15px;
    }

    .home-v14-voice blockquote { margin-top: 25px; }
    .home-v14-voice blockquote p { font-size: 12px; line-height: 1.68; }
    .home-v14-voice__footer { align-items: flex-start; flex-direction: column; }

    .home-v14-community__controls:not([hidden]) {
        position: static;
        width: 100%;
        min-height: 48px;
        margin-top: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 11px;
    }

    .home-v14-community__controls > [data-voices-prev],
    .home-v14-community__controls > [data-voices-next] {
        position: absolute;
        z-index: 4;
        top: 190px;
        width: 46px;
        height: 46px;
        border-radius: 12px;
        border-color: rgba(255, 255, 255, .16);
        background: rgba(4, 16, 31, .92);
        box-shadow: 0 14px 28px rgba(0, 0, 0, .3);
        backdrop-filter: blur(12px);
    }

    .home-v14-community__controls > [data-voices-prev] { left: 0; }
    .home-v14-community__controls > [data-voices-next] { right: 0; }

    .home-v14-community__status {
        min-width: 152px;
    }

    .home-v14-community__counter { font-size: 10px; }
    .home-v14-community__counter strong { font-size: 14px; }
}

@media (max-width: 350px) {
    .home-v14-community__inner {
        --voice-card-size: clamp(224px, 72vw, 244px);
        width: calc(100% - 20px);
    }

    .home-v14-portraits {
        height: 104px;
        gap: 5px;
    }

    .home-v14-portrait { width: min(100%, 52px); }
    .home-v14-community__intro h2 { font-size: 27px; }
    .home-v14-voice { min-height: 432px; padding: 17px; }
    .home-v14-community__controls > [data-voices-prev],
    .home-v14-community__controls > [data-voices-next] { top: 194px; }
}

@media (prefers-reduced-motion: reduce) {
    .home-v14-community.is-visible .home-v14-community__rail > li.is-active {
        transform: none;
    }
}

/* Community voices v16 — profile-forward, claim-free presentation. */
.home-v14-portraits {
    height: clamp(248px, 20vw, 286px);
    display: block;
}

.home-v14-portrait {
    position: absolute;
    top: var(--portrait-top, 0);
    left: var(--portrait-left, 50%);
    width: clamp(78px, var(--portrait-size, 6vw), 112px);
    max-width: none;
    transform: translate3d(-50%, 0, 0);
    border-radius: clamp(14px, 1.18vw, 20px);
}

.home-v14-community.is-enhanced .home-v14-portrait {
    transform: translate3d(-50%, 16px, 0) scale(.96);
}

.home-v14-community.is-visible .home-v14-portrait {
    transform: translate3d(-50%, 0, 0);
}

.home-v14-portrait--1  { --portrait-left: 4%; --portrait-top: 72px; --portrait-size: 5.6vw; }
.home-v14-portrait--2  { --portrait-left: 12%; --portrait-top: 10px; --portrait-size: 6.8vw; }
.home-v14-portrait--3  { --portrait-left: 20%; --portrait-top: 102px; --portrait-size: 5.9vw; }
.home-v14-portrait--4  { --portrait-left: 29%; --portrait-top: 42px; --portrait-size: 6.4vw; }
.home-v14-portrait--5  { --portrait-left: 39%; --portrait-top: 0; --portrait-size: 7.35vw; }
.home-v14-portrait--6  { --portrait-left: 49%; --portrait-top: 84px; --portrait-size: 6vw; }
.home-v14-portrait--7  { --portrait-left: 58%; --portrait-top: 30px; --portrait-size: 6.9vw; }
.home-v14-portrait--8  { --portrait-left: 66%; --portrait-top: 102px; --portrait-size: 5.9vw; }
.home-v14-portrait--9  { --portrait-left: 75%; --portrait-top: 42px; --portrait-size: 6.5vw; }
.home-v14-portrait--10 { --portrait-left: 84%; --portrait-top: 4px; --portrait-size: 7vw; }
.home-v14-portrait--11 { --portrait-left: 92%; --portrait-top: 78px; --portrait-size: 5.9vw; }
.home-v14-portrait--12 { --portrait-left: 98%; --portrait-top: 18px; --portrait-size: 5.8vw; }
.home-v14-portrait--13 { --portrait-left: 99%; --portrait-top: 122px; --portrait-size: 5.2vw; }

.home-v14-voice__author small {
    color: #b9c6d4;
    font-size: 10px;
    font-weight: 720;
}

.home-v14-voice__footer > span {
    color: #b1c0d0;
    font-weight: 760;
}

.home-v14-voice__footer > span i {
    color: var(--community-gold);
}

@keyframes home-v14-portrait-drift {
    0%, 100% { transform: translate3d(-50%, -5px, 0) rotate(-.25deg); }
    50% { transform: translate3d(-50%, 8px, 0) rotate(.25deg); }
}

@media (max-width: 900px) {
    .home-v14-portraits {
        width: min(720px, 100%);
        height: 188px;
    }

    .home-v14-portrait {
        width: clamp(66px, var(--portrait-size, 9vw), 88px);
    }

    .home-v14-portrait:nth-child(n + 9) { display: none; }
    .home-v14-portrait--1 { --portrait-left: 6%; --portrait-top: 58px; --portrait-size: 8vw; }
    .home-v14-portrait--2 { --portrait-left: 18%; --portrait-top: 8px; --portrait-size: 9.4vw; }
    .home-v14-portrait--3 { --portrait-left: 31%; --portrait-top: 84px; --portrait-size: 8.2vw; }
    .home-v14-portrait--4 { --portrait-left: 44%; --portrait-top: 28px; --portrait-size: 9vw; }
    .home-v14-portrait--5 { --portrait-left: 57%; --portrait-top: 0; --portrait-size: 9.8vw; }
    .home-v14-portrait--6 { --portrait-left: 70%; --portrait-top: 74px; --portrait-size: 8.2vw; }
    .home-v14-portrait--7 { --portrait-left: 83%; --portrait-top: 22px; --portrait-size: 9vw; }
    .home-v14-portrait--8 { --portrait-left: 94%; --portrait-top: 84px; --portrait-size: 7.4vw; }
}

@media (max-width: 620px) {
    .home-v14-portraits {
        width: min(100%, 356px);
        height: 138px;
        margin-bottom: 8px;
    }

    .home-v14-portrait {
        width: clamp(58px, var(--portrait-size, 18vw), 78px);
        border-radius: 14px;
    }

    .home-v14-portrait:nth-child(n + 6) { display: none; }
    .home-v14-portrait--1 { --portrait-left: 8%; --portrait-top: 28px; --portrait-size: 18vw; }
    .home-v14-portrait--2 { --portrait-left: 27%; --portrait-top: 0; --portrait-size: 19.4vw; }
    .home-v14-portrait--3 { --portrait-left: 50%; --portrait-top: 44px; --portrait-size: 17.4vw; }
    .home-v14-portrait--4 { --portrait-left: 72%; --portrait-top: 10px; --portrait-size: 19vw; }
    .home-v14-portrait--5 { --portrait-left: 92%; --portrait-top: 34px; --portrait-size: 17.8vw; }

    .home-v14-community__intro {
        margin-top: 0;
    }
}

@media (max-width: 350px) {
    .home-v14-portraits {
        width: min(100%, 300px);
        height: 126px;
    }

    .home-v14-portrait { width: clamp(50px, var(--portrait-size, 16vw), 66px); }
    .home-v14-portrait--1 { --portrait-left: 9%; --portrait-top: 28px; }
    .home-v14-portrait--2 { --portrait-left: 28%; --portrait-top: 2px; }
    .home-v14-portrait--3 { --portrait-left: 50%; --portrait-top: 42px; }
    .home-v14-portrait--4 { --portrait-left: 72%; --portrait-top: 8px; }
    .home-v14-portrait--5 { --portrait-left: 91%; --portrait-top: 32px; }
}

/* Community voices v17 — compact cards and cleaner controls. */
.home-v14-voice {
    min-height: 332px;
}

.home-v14-voice blockquote {
    margin-top: 22px;
    padding-top: 24px;
}

.home-v14-voice blockquote p {
    margin-bottom: 0;
}

.home-v14-voice__author {
    grid-template-columns: 52px minmax(0, 1fr) auto;
}

.home-v14-voice__portrait {
    width: 52px;
    border-radius: 13px;
}

.home-v14-voice__author small {
    max-width: 180px;
    white-space: normal;
}

.home-v14-community__controls:not([hidden]) {
    width: min(330px, 100%);
    grid-template-columns: 48px minmax(110px, 1fr) 48px;
}

.home-v14-community__controls > [data-voices-prev],
.home-v14-community__controls > [data-voices-next] {
    color: #07172b;
    border-color: rgba(214, 162, 57, .82);
    background: var(--community-gold);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .18);
}

.home-v14-community__controls > [data-voices-prev] i,
.home-v14-community__controls > [data-voices-next] i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    font-size: 16px;
}

.home-v14-community__controls > [data-voices-prev]:hover,
.home-v14-community__controls > [data-voices-next]:hover {
    background: #e5b54b;
}

.home-v14-community__controls > [data-voices-prev] i::before,
.home-v14-community__controls > [data-voices-next] i::before {
    font-weight: 400 !important;
}

@media (max-width: 620px) {
    .home-v14-community__rail-wrap {
        padding-bottom: 28px;
    }

    .home-v14-community__rail {
        padding-bottom: 8px;
    }

    .home-v14-voice {
        min-height: 326px;
        padding: 18px;
    }

    .home-v14-voice__author {
        grid-template-columns: 48px minmax(0, 1fr) auto;
        gap: 10px;
    }

    .home-v14-voice__portrait {
        width: 48px;
    }

    .home-v14-voice blockquote {
        margin-top: 19px;
        padding-top: 20px;
    }

    .home-v14-voice blockquote p {
        font-size: 12px;
        line-height: 1.58;
    }

    .home-v14-community__controls:not([hidden]) {
        margin-top: 0;
    }

    .home-v14-community__controls > [data-voices-prev],
    .home-v14-community__controls > [data-voices-next] {
        top: 150px;
        width: 44px;
        height: 44px;
        border-radius: 13px;
    }

    .home-v14-community__controls > [data-voices-prev] { left: 4px; }
    .home-v14-community__controls > [data-voices-next] { right: 4px; }
}

@media (max-width: 350px) {
    .home-v14-voice {
        min-height: 332px;
        padding: 16px;
    }

    .home-v14-community__controls > [data-voices-prev],
    .home-v14-community__controls > [data-voices-next] {
        top: 152px;
    }
}

/* Community voices v18 — mobile spacing, compact reading block and premium CTA. */
.home-v14-community__share {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 54px;
    padding-inline: 20px 22px;
    border: 1px solid rgba(214, 162, 57, .72);
    border-radius: 14px;
    color: #06172b;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 248, 232, .98));
    box-shadow:
        inset 0 -3px 0 rgba(214, 162, 57, .92),
        0 18px 34px rgba(0, 0, 0, .22);
}

.home-v14-community__share::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 1px 1px, rgba(214, 162, 57, .22) 1px, transparent 1.6px) 0 0 / 12px 12px,
        linear-gradient(90deg, transparent, rgba(214, 162, 57, .1), transparent);
    opacity: .62;
}

.home-v14-community__share i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    background: #07172b;
    font-size: 13px;
    box-shadow: 0 8px 18px rgba(7, 23, 43, .22);
}

.home-v14-community__share span {
    position: relative;
    z-index: 1;
}

.home-v14-community__rail {
    align-items: flex-start;
}

.home-v14-voice {
    height: auto;
    min-height: 292px;
}

.home-v14-voice blockquote {
    margin-top: 18px;
    padding-top: 20px;
}

.home-v14-community__controls > [data-voices-prev],
.home-v14-community__controls > [data-voices-next] {
    place-items: center;
    line-height: 1;
}

.home-v14-community__controls > [data-voices-prev] i,
.home-v14-community__controls > [data-voices-next] i {
    width: 1em;
    height: 1em;
    line-height: 1;
    font-size: 18px;
}

@media (max-width: 620px) {
    .home-v14-portraits {
        width: min(100%, 344px);
        height: 132px;
        margin-bottom: 22px;
    }

    .home-v14-portrait {
        width: clamp(56px, var(--portrait-size, 16.4vw), 68px);
    }

    .home-v14-portrait--1 { --portrait-left: 10%; --portrait-top: 22px; --portrait-size: 16.3vw; }
    .home-v14-portrait--2 { --portrait-left: 29%; --portrait-top: 0; --portrait-size: 17vw; }
    .home-v14-portrait--3 { --portrait-left: 50%; --portrait-top: 24px; --portrait-size: 16.2vw; }
    .home-v14-portrait--4 { --portrait-left: 71%; --portrait-top: 0; --portrait-size: 17vw; }
    .home-v14-portrait--5 { --portrait-left: 90%; --portrait-top: 22px; --portrait-size: 16.3vw; }

    .home-v14-community__eyebrow {
        position: relative;
        z-index: 2;
    }

    .home-v14-community__intro {
        margin-bottom: 24px;
    }

    .home-v14-community__share {
        min-height: 50px;
        padding-inline: 16px 18px;
        gap: 10px;
        border-radius: 13px;
    }

    .home-v14-community__share i {
        width: 26px;
        height: 26px;
        border-radius: 9px;
    }

    .home-v14-voice {
        min-height: 274px;
        padding: 17px;
    }

    .home-v14-voice blockquote {
        margin-top: 16px;
        padding-top: 18px;
    }

    .home-v14-voice blockquote::before {
        top: 5px;
        font-size: 24px;
    }

    .home-v14-voice blockquote p {
        font-size: 11.5px;
        line-height: 1.52;
    }

    .home-v14-community__controls > [data-voices-prev],
    .home-v14-community__controls > [data-voices-next] {
        top: 122px;
        width: 44px;
        height: 44px;
        border-radius: 14px;
        border-color: rgba(255, 255, 255, .18);
        background:
            radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .32), transparent 28%),
            linear-gradient(135deg, #e3ad38, #c9901d);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, .34),
            0 15px 28px rgba(0, 0, 0, .32);
    }

    .home-v14-community__controls > [data-voices-prev] { left: 6px; }
    .home-v14-community__controls > [data-voices-next] { right: 6px; }
}

@media (max-width: 350px) {
    .home-v14-portraits {
        width: min(100%, 292px);
        height: 122px;
        margin-bottom: 20px;
    }

    .home-v14-portrait {
        width: clamp(50px, var(--portrait-size, 15.6vw), 60px);
    }

    .home-v14-voice {
        min-height: 286px;
    }

    .home-v14-community__controls > [data-voices-prev],
    .home-v14-community__controls > [data-voices-next] {
        top: 128px;
    }
}

@media (max-width: 1024px) {
    .home-v9-hero {
        min-height: 760px;
        align-items: flex-end;
    }

    .home-v9-hero__media {
        height: 100%;
    }

    .home-v9-hero__media img {
        object-position: right top;
    }

    .home-v9-hero__media::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(255, 255, 255, .99) 0%, rgba(255, 255, 255, .94) 51%, rgba(255, 255, 255, .26) 68%, rgba(255, 255, 255, 0) 80%);
    }

    .home-v9-hero__copy {
        width: 55%;
        padding-bottom: 88px;
        position: relative;
        z-index: 1;
    }

    .home-v9-hero h1 {
        font-size: clamp(46px, 5.35vw, 54px);
    }

    .home-v9-hero__description-block > p {
        max-width: 470px;
    }

    .home-v9-brand-plate {
        right: 22px;
        bottom: 56px;
        width: 230px;
    }

    .home-v9-services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-v9-services article {
        min-height: 280px;
    }

    .home-v9-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 26px 20px;
        padding-block: 28px;
    }

    .home-v9-about {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .home-v9-about__copy {
        max-width: 690px;
    }

    .home-v9-product {
        width: min(760px, 100%);
        min-height: 440px;
        margin-inline: auto;
    }

    .home-v9-topics > div {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-v9-community {
        grid-template-columns: 1fr 1fr;
    }

    .home-v9-footer__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 36px 28px;
    }

    .home-v9-footer__brand {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 220px minmax(0, 1fr);
        align-items: center;
        column-gap: 28px;
        row-gap: 8px;
        padding: 0 0 28px;
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .home-v9-footer .home-v9-footer__social {
        grid-column: 2;
        margin-top: 0;
    }
}

@media (max-width: 700px) {
    .home-v9-footer::after {
        background: linear-gradient(180deg, rgba(4, 22, 47, .42) 0%, rgba(4, 22, 47, .82) 18%, rgba(4, 22, 47, .91) 74%, rgba(4, 22, 47, .58) 100%);
    }

    .home-v9-footer__art img {
        object-position: center top;
        opacity: .84;
    }

    .home-v9-footer__signature {
        min-height: 82px;
        padding-block: 15px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
    }
}

@media (max-width: 900px) {
    .home-v10-stories {
        padding: 72px 0 88px;
        gap: 76px;
    }

    .home-v10-story,
    .home-v10-story--reverse {
        grid-template-columns: 1fr;
        grid-template-areas: "media" "copy";
        gap: 36px;
    }

    .home-v10-story__copy {
        max-width: 680px;
    }

    .home-v9-faq {
        padding: 76px 0 90px;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .home-v9-faq__intro {
        max-width: 620px;
    }
}

@media (max-width: 760px) {
    .home-v9-hero {
        --home-v9-media-height: calc((100vw - 32px) * .733333);
        min-height: 0;
        padding-top: var(--home-v9-media-height);
        display: block;
        overflow: visible;
        background: #fff;
    }

    .home-v9-hero__media {
        height: var(--home-v9-media-height);
        bottom: auto;
        background: #fff;
    }

    .home-v9-hero__media img {
        object-position: right center;
    }

    .home-v9-hero__media::after {
        display: none;
    }

    .home-v9-hero__copy {
        width: 100%;
        padding: 40px 0 58px;
    }

    .home-v9-brand-plate {
        top: calc(var(--home-v9-media-height) - 90px);
        right: 10px;
        bottom: auto;
        width: 188px;
        height: 66px;
        border-radius: 11px;
    }

    .home-v9-brand-plate img {
        width: 132px;
        height: 56px;
    }

    .home-v9-faq {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .home-v9-updates {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .home-v9-updates > a {
        grid-column: 1 / -1;
        margin-top: 14px;
    }
}

@media (max-width: 620px) {
    .home-v9-shell {
        width: calc(100% - 32px);
    }

    .home-v10-stories {
        padding: 54px 0 72px;
        gap: 66px;
    }

    .home-v10-story,
    .home-v10-story--reverse {
        gap: 29px;
    }

    .home-v10-story__media {
        aspect-ratio: 4 / 3;
        border-radius: 15px;
        box-shadow: 0 18px 44px rgba(7, 24, 47, .09);
    }

    .home-v10-story__copy {
        padding-inline-start: 18px;
    }

    .home-v10-story__copy h2 {
        margin: 17px 0 19px;
        font-size: clamp(32px, 9.2vw, 38px);
        line-height: 1.05;
    }

    .home-v10-story__copy > p {
        font-size: 14px;
        line-height: 1.68;
    }

    .home-v10-story__prose {
        margin: 22px 0 27px;
        padding-top: 18px;
        gap: 12px;
    }

    .home-v10-story__prose p {
        font-size: 12.5px;
        line-height: 1.68;
    }

    .home-v10-story__points {
        margin: 24px 0 27px;
        gap: 13px;
    }

    .home-v10-story__points--compact {
        grid-template-columns: 1fr;
    }

    .home-v10-story__points small {
        font-size: 10px;
    }

    .home-v10-story__actions {
        display: grid;
        justify-items: start;
        gap: 6px;
    }

    .home-v10-story__actions .home-v9-button {
        width: 100%;
    }

    .home-v9-hero {
        --home-v9-media-height: calc((100vw - 32px) * .777778);
    }

    .home-v9-hero__media {
        height: var(--home-v9-media-height);
    }

    .home-v9-hero__media img {
        object-fit: contain;
        object-position: right center;
    }

    .home-v9-brand-plate {
        top: calc(var(--home-v9-media-height) - 73px);
        right: 8px;
        width: 164px;
        height: 58px;
        border-radius: 10px;
    }

    .home-v9-brand-plate img {
        width: 49px;
        height: 49px;
    }

    .home-v9-brand-plate {
        gap: 8px;
    }

    .home-v9-brand-plate > span strong {
        font-size: 7px;
    }

    .home-v9-brand-plate > span b {
        margin-top: 4px;
        font-size: 8px;
    }

    .home-v9-brand-plate > span small {
        margin-top: 4px;
        font-size: 3px;
    }

    .home-v9-hero__copy {
        padding: 34px 0 88px;
    }

    .home-v9-eyebrow {
        min-height: 28px;
        padding: 6px 9px;
        font-size: 9px;
    }

    .home-v9-hero h1 {
        margin: 0;
        font-size: clamp(36px, 10.25vw, 42px);
        line-height: 1.02;
        letter-spacing: -.05em;
    }

    .home-v9-hero__description-block > p {
        font-size: 14px;
        line-height: 1.66;
    }

    .home-v9-actions {
        display: grid;
        gap: 8px;
        margin-top: 0;
    }

    .home-v9-actions .home-v9-button {
        width: 100%;
    }

    .home-v9-proof {
        margin-top: 23px;
    }

    .home-v9-proof__mark {
        width: 42px;
        height: 42px;
    }

    .home-v9-services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 0;
    }

    .home-v9-services article {
        min-height: 240px;
        padding: 18px 15px 16px;
        border-radius: 12px;
    }

    .home-v9-service__icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .home-v9-services h2 {
        margin: 17px 0 9px;
        font-size: 14px;
    }

    .home-v9-services p {
        font-size: 11px;
        line-height: 1.55;
    }

    .home-v9-services a {
        font-size: 10px;
    }

    .home-v9-stats {
        min-height: 0;
        margin-top: 18px;
        padding: 21px 19px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 10px;
    }

    .home-v9-stats article:last-child {
        grid-column: 1 / -1;
        width: 50%;
        justify-self: center;
    }

    .home-v9-stats article {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .home-v9-stats i {
        font-size: 22px;
    }

    .home-v9-stats strong {
        font-size: 21px;
    }

    .home-v9-stats span {
        margin-top: 4px;
        font-size: 9px;
    }

    .home-v9-about {
        min-height: 0;
        padding: 67px 0 48px;
        gap: 30px;
    }

    .home-v9-about__copy h2 {
        font-size: 31px;
    }

    .home-v9-about__copy > p {
        font-size: 14px;
    }

    .home-v9-about__copy li {
        font-size: 12px;
    }

    .home-v9-product {
        min-height: 430px;
    }

    .home-v9-product__path {
        inset: 28px 16px;
    }

    .home-v9-product__forum {
        width: 88%;
        padding-inline: 16px;
    }

    .home-v9-product__cycle {
        top: 192px;
        width: 55%;
        min-height: 156px;
        padding: 18px;
    }

    .home-v9-product__courses {
        right: 0;
        bottom: 0;
        width: 79%;
        padding-inline: 16px;
    }

    .home-v9-product__forum a,
    .home-v9-product__courses a {
        min-height: 44px;
    }

    .home-v9-topics {
        padding: 18px;
        border-radius: 12px;
    }

    .home-v9-topics h2 {
        font-size: 19px;
    }

    .home-v9-topics > div {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .home-v9-topics > div > a {
        min-height: 80px;
        padding: 10px;
        gap: 8px;
    }

    .home-v9-topics > div > a > i {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .home-v9-topics strong {
        font-size: 10px;
    }

    .home-v9-topics small {
        font-size: 8px;
    }

    .home-v9-faq {
        padding: 67px 0;
    }

    .home-v9-faq h2 {
        font-size: 36px;
    }

    .home-v9-faq__list summary {
        min-height: 62px;
        font-size: 12px;
    }

    .home-v9-faq__list p {
        margin-right: 0;
    }

    .home-v9-community {
        min-height: 590px;
        padding: 34px 23px 28px;
        grid-template-columns: 1fr;
        align-content: start;
    }

    .home-v9-community > picture {
        opacity: .54;
    }

    .home-v9-community > picture::after {
        background: linear-gradient(180deg, var(--home-navy) 0%, rgba(7, 24, 47, .95) 54%, rgba(7, 24, 47, .1) 100%);
    }

    .home-v9-community__copy h2 {
        font-size: 34px;
    }

    .home-v9-community > ul {
        margin-top: 19px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }

    .home-v9-community > ul li {
        min-height: 82px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
    }

    .home-v9-community > ul li > i {
        font-size: 20px;
    }

    .home-v9-community > ul strong {
        font-size: 20px;
    }

    .home-v9-community > ul small {
        font-size: 8px;
    }

    .home-v9-updates {
        min-height: 178px;
        margin-block: 18px;
        padding: 21px;
        grid-template-columns: 54px minmax(0, 1fr);
        border-radius: 12px;
    }

    .home-v9-updates > i {
        width: 44px;
        height: 44px;
        font-size: 19px;
    }

    .home-v9-updates p {
        font-size: 12px;
    }

    .home-v9-footer {
        padding-top: 0;
    }

    .home-v9-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 20px;
        padding-block: 36px 30px;
    }

    .home-v9-footer__brand {
        grid-column: 1 / -1;
        display: block;
        padding-bottom: 26px;
    }

    .home-v9-footer__brand p {
        max-width: 100%;
    }

    .home-v9-footer nav a {
        min-height: 44px;
    }

    .home-v9-footer__legal {
        min-height: 86px;
        margin-top: 0;
        display: grid;
        justify-content: start;
    }

    .home-v9-footer__created {
        justify-content: flex-start;
    }
}

@media (max-width: 350px) {
    .home-v9-hero h1 {
        font-size: 35px;
    }

    .home-v9-services,
    .home-v9-topics > div,
    .home-v9-footer__grid {
        grid-template-columns: 1fr;
    }

    .home-v9-footer__brand { grid-column: 1; }

    .home-v9-services article {
        min-height: 220px;
    }

    .home-v9-stats article:last-child {
        width: 100%;
    }
}

/* Hero module pass: title, description, CTA and forum ticker slots. */
.home-v9-hero {
    padding-bottom: 38px;
}

.home-v9-hero__copy {
    width: min(52%, 580px);
    max-width: 580px;
    padding: 74px 0 86px;
    display: grid;
    grid-template-rows: minmax(154px, auto) minmax(42px, auto) minmax(64px, auto);
    align-content: center;
    gap: 12px;
}

.home-v9-hero__title-block {
    width: min(100%, 580px);
    min-height: 154px;
    display: flex;
    align-items: center;
}

.home-v9-hero__description-block {
    width: min(100%, 560px);
    min-height: 42px;
    display: flex;
    align-items: flex-start;
}

.home-v9-hero__description-block > p {
    max-width: 560px;
    margin: 0;
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.65;
}

.home-v9-hero__cta-block {
    width: max-content;
    min-height: 64px;
    margin-top: 0;
    align-items: center;
    justify-self: start;
}

.home-v9-hero__cta-block .home-v9-button {
    min-width: 134px;
}

@media (max-width: 1100px) {
    .home-v9-hero__copy {
        width: min(56%, 540px);
        grid-template-rows: minmax(132px, auto) minmax(42px, auto) minmax(62px, auto);
    }

    .home-v9-hero__title-block {
        min-height: 132px;
    }
}

@media (max-width: 760px) {
    .home-v9-hero {
        padding-bottom: 38px;
    }

    .home-v9-hero__copy {
        width: 100%;
        max-width: none;
        padding: 36px 0 86px;
        grid-template-rows: minmax(74px, auto) minmax(58px, auto) minmax(54px, auto);
        gap: 10px;
    }

    .home-v9-hero__title-block {
        min-height: 74px;
    }

    .home-v9-hero__description-block {
        min-height: 58px;
    }

    .home-v9-hero__description-block > p {
        max-width: 100%;
        font-size: 12px;
        line-height: 1.5;
    }

    .home-v9-hero__cta-block {
        min-height: 54px;
        display: flex;
    }

    .home-v9-hero__cta-block .home-v9-button {
        width: auto;
        min-width: 128px;
        min-height: 44px;
    }

    .home-v9-forum-ticker {
        min-height: 38px;
    }

    .home-v9-forum-ticker__inner {
        width: calc(100% - 24px);
        min-height: 38px;
        gap: 12px;
    }

    .home-v9-forum-ticker__label {
        min-height: 38px;
        gap: 6px;
        font-size: 9px;
    }

    .home-v9-forum-ticker__label span {
        display: none;
    }

    .home-v9-forum-ticker__item {
        min-height: 38px;
        gap: 7px;
        font-size: 10px;
    }

    .home-v9-forum-ticker__item span {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-v9-forum-ticker__track {
        animation: none;
        transform: none;
    }
}

/* Community voices v13 — real forum content with decorative editorial portraits. */
.home-v13-voices {
    --voices-surface: #07172b;
    --voices-panel: #101f33;
    --voices-line: rgba(255, 255, 255, .12);
    --voices-gold: #d6a239;
    position: relative;
    isolation: isolate;
    margin-block: clamp(76px, 8vw, 116px);
    padding: clamp(34px, 4.5vw, 62px);
    overflow: hidden;
    border: 1px solid rgba(207, 152, 45, .24);
    border-radius: 30px;
    color: #f8fafc;
    background: var(--voices-surface);
    box-shadow: 0 28px 70px rgba(7, 24, 47, .15);
    scroll-margin-top: 96px;
}

.home-v13-voices__pattern {
    position: absolute;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    opacity: .23;
    background-image:
        linear-gradient(rgba(214, 162, 57, .18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(214, 162, 57, .13) 1px, transparent 1px);
    background-size: 84px 84px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 82%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 82%, transparent 100%);
}

.home-v13-voices::before,
.home-v13-voices::after {
    content: "";
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(214, 162, 57, .19);
    border-radius: 50%;
    pointer-events: none;
}

.home-v13-voices::before {
    width: 520px;
    height: 520px;
    top: -300px;
    left: calc(50% - 260px);
}

.home-v13-voices::after {
    width: 760px;
    height: 760px;
    right: -470px;
    bottom: -540px;
}

.home-v13-portraits {
    position: relative;
    z-index: 1;
    width: min(1080px, 100%);
    height: 206px;
    margin: 0 auto 14px;
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    align-items: start;
    gap: clamp(9px, 1.4vw, 18px);
}

.home-v13-portrait {
    width: min(100%, 106px);
    aspect-ratio: 3 / 4;
    justify-self: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .19);
    border-radius: 16px;
    background-image: url("../homepage/v13/community-portraits-atlas-v13.jpg");
    background-image: image-set(
        url("../homepage/v13/community-portraits-atlas-v13.avif") type("image/avif"),
        url("../homepage/v13/community-portraits-atlas-v13.webp") type("image/webp"),
        url("../homepage/v13/community-portraits-atlas-v13.jpg") type("image/jpeg")
    );
    background-repeat: no-repeat;
    background-size: 400% 200%;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .28);
}

.home-v13-portrait:nth-child(even) { margin-top: 30px; }
.home-v13-portrait:nth-child(3n) { margin-top: 13px; }
.home-v13-portrait--1 { background-position: 0 0; --float-duration: 10.4s; --float-delay: -2.1s; }
.home-v13-portrait--2 { background-position: 33.333% 0; --float-duration: 11.2s; --float-delay: -6.2s; }
.home-v13-portrait--3 { background-position: 66.667% 0; --float-duration: 12.1s; --float-delay: -4.8s; }
.home-v13-portrait--4 { background-position: 100% 0; --float-duration: 13.4s; --float-delay: -8.1s; }
.home-v13-portrait--5 { background-position: 0 100%; --float-duration: 10.8s; --float-delay: -5.2s; }
.home-v13-portrait--6 { background-position: 33.333% 100%; --float-duration: 12.7s; --float-delay: -9.1s; }
.home-v13-portrait--7 { background-position: 66.667% 100%; --float-duration: 11.7s; --float-delay: -3.4s; }
.home-v13-portrait--8 { background-position: 100% 100%; --float-duration: 13.8s; --float-delay: -7.3s; }

.home-v13-voices.is-motion-active .home-v13-portrait {
    animation: home-v13-portrait-float var(--float-duration) ease-in-out var(--float-delay) infinite;
    will-change: transform;
}

@keyframes home-v13-portrait-float {
    0%, 100% { transform: translate3d(0, -3px, 0); }
    50% { transform: translate3d(0, 5px, 0); }
}

.home-v13-voices__intro {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto clamp(34px, 4vw, 50px);
    text-align: center;
}

.home-v13-voices__eyebrow,
.home-v13-voices__integrity {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.home-v13-voices__eyebrow {
    min-height: 30px;
    padding: 5px 12px;
    border: 1px solid rgba(214, 162, 57, .42);
    border-radius: 999px;
    color: #f2c765;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.home-v13-voices__intro h2 {
    max-width: 720px;
    margin: 18px auto 15px;
    color: #fff;
    font-size: clamp(34px, 4.1vw, 54px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -.045em;
}

.home-v13-voices__intro > p {
    max-width: 650px;
    margin: 0 auto;
    color: #bdc8d7;
    font-size: 15px;
    line-height: 1.72;
}

.home-v13-voices__integrity {
    margin-top: 17px;
    color: #dce4ee;
    font-size: 11px;
    font-weight: 750;
}

.home-v13-voices__integrity i { color: var(--voices-gold); }

.home-v13-voices__actions {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.home-v13-voices .home-v9-button--primary {
    border-color: var(--voices-gold);
    color: var(--home-navy);
    background: var(--voices-gold);
}

.home-v13-voices .home-v9-button--primary:hover {
    border-color: #e5b64d;
    background: #e5b64d;
}

.home-v13-voices__secondary {
    min-height: 52px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 9px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: border-color .2s ease, background-color .2s ease;
}

.home-v13-voices__secondary:hover {
    border-color: rgba(214, 162, 57, .68);
    background: rgba(255, 255, 255, .05);
}

.home-v13-voices__rail-wrap {
    position: relative;
    z-index: 2;
}

.home-v13-voices__rail {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    list-style: none;
}

.home-v13-voices[data-voices-count="1"] .home-v13-voices__rail {
    grid-template-columns: minmax(0, 650px);
    justify-content: center;
}

.home-v13-voices__rail > li { min-width: 0; }

.home-v13-voice {
    min-height: 410px;
    height: 100%;
    padding: 23px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--voices-line);
    border-radius: 17px;
    color: #f8fafc;
    background: var(--voices-panel);
}

.home-v13-voice__author {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
}

.home-v13-voice__initials {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(214, 162, 57, .45);
    border-radius: 12px;
    color: #f3c766;
    background: #0a1a2e;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
}

.home-v13-voice__author > span:nth-child(2) {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.home-v13-voice__author strong {
    overflow-wrap: anywhere;
    color: #fff;
    font-size: 13px;
}

.home-v13-voice__author small,
.home-v13-voice__author time {
    color: #95a5ba;
    font-size: 9px;
    line-height: 1.4;
}

.home-v13-voice__author time { white-space: nowrap; }

.home-v13-voice__category {
    align-self: flex-start;
    margin-top: 22px;
    color: #e2b855;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-v13-voice h3 {
    margin: 10px 0 13px;
    font-size: 20px;
    font-weight: 850;
    line-height: 1.18;
    letter-spacing: -.025em;
    overflow-wrap: anywhere;
}

.home-v13-voice h3 a { color: #fff; text-decoration: none; }
.home-v13-voice h3 a:hover { color: #f0c768; }

.home-v13-voice blockquote {
    margin: 0;
    padding: 0 0 0 14px;
    border-left: 2px solid rgba(214, 162, 57, .62);
}

.home-v13-voice blockquote p {
    margin: 0;
    color: #c6d0de;
    font-size: 12px;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.home-v13-voice__footer {
    margin-top: auto;
    padding-top: 22px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.home-v13-voice__footer > ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 11px;
    list-style: none;
}

.home-v13-voice__footer > ul li {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #91a2b8;
    font-size: 9px;
}

.home-v13-voice__footer > ul i { color: #d9ad4e; }

.home-v13-voice__footer > a {
    min-height: 44px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #f2c765;
    font-size: 11px;
    font-weight: 850;
    text-decoration: none;
}

.home-v13-voices__empty {
    position: relative;
    z-index: 2;
    max-width: 920px;
    min-height: 118px;
    margin-inline: auto;
    padding: 24px 26px;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    border-top: 1px solid var(--voices-line);
    border-bottom: 1px solid var(--voices-line);
}

.home-v13-voices__empty > span {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(214, 162, 57, .42);
    border-radius: 50%;
    color: #f2c765;
    font-size: 21px;
}

.home-v13-voices__empty h3 { margin: 0 0 5px; color: #fff; font-size: 17px; }
.home-v13-voices__empty p { max-width: 620px; margin: 0; color: #aebccc; font-size: 12px; line-height: 1.6; }
.home-v13-voices__empty > a { min-height: 44px; display: inline-flex; align-items: center; gap: 8px; color: #f2c765; font-size: 12px; font-weight: 850; text-decoration: none; }

.home-v13-voices__controls { display: none; }

.home-v13-voices.is-enhanced .home-v13-portrait,
.home-v13-voices.is-enhanced .home-v13-voices__intro,
.home-v13-voices.is-enhanced .home-v13-voices__rail > li,
.home-v13-voices.is-enhanced .home-v13-voices__empty {
    opacity: 0;
}

.home-v13-voices.is-enhanced .home-v13-voices__intro,
.home-v13-voices.is-enhanced .home-v13-voices__rail > li,
.home-v13-voices.is-enhanced .home-v13-voices__empty {
    transform: translateY(14px);
}

.home-v13-voices.is-visible .home-v13-portrait,
.home-v13-voices.is-visible .home-v13-voices__intro,
.home-v13-voices.is-visible .home-v13-voices__rail > li,
.home-v13-voices.is-visible .home-v13-voices__empty {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .38s ease, transform .38s ease;
}

.home-v13-voices.is-visible .home-v13-portrait:nth-child(2),
.home-v13-voices.is-visible .home-v13-voices__rail > li:nth-child(2) { transition-delay: .06s; }
.home-v13-voices.is-visible .home-v13-portrait:nth-child(3),
.home-v13-voices.is-visible .home-v13-voices__rail > li:nth-child(3) { transition-delay: .12s; }
.home-v13-voices.is-visible .home-v13-portrait:nth-child(4),
.home-v13-voices.is-visible .home-v13-voices__rail > li:nth-child(4) { transition-delay: .18s; }
.home-v13-voices.is-visible .home-v13-portrait:nth-child(5) { transition-delay: .24s; }
.home-v13-voices.is-visible .home-v13-portrait:nth-child(6) { transition-delay: .3s; }
.home-v13-voices.is-visible .home-v13-portrait:nth-child(7) { transition-delay: .36s; }
.home-v13-voices.is-visible .home-v13-portrait:nth-child(8) { transition-delay: .42s; }

.home-v13-voices a:focus-visible,
.home-v13-voices button:focus-visible,
.home-v13-voices__rail:focus-visible {
    outline: 3px solid #f2c765;
    outline-offset: 3px;
}

@media (max-width: 1100px) {
    .home-v13-portraits { height: 184px; }
    .home-v13-portrait { width: min(100%, 88px); border-radius: 14px; }
    .home-v13-voices__rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    .home-v13-voices {
        padding: 34px 28px;
    }

    .home-v13-portraits {
        width: min(650px, 100%);
        height: 170px;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 10px;
    }

    .home-v13-portrait { width: min(100%, 78px); }
    .home-v13-portrait:nth-child(n + 7) { display: none; }

    .home-v13-voices__rail {
        width: 100%;
        padding: 4px 2px 18px;
        display: flex;
        gap: 14px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .home-v13-voices__rail::-webkit-scrollbar { display: none; }

    .home-v13-voices__rail > li {
        flex: 0 0 calc(50% - 7px);
        scroll-snap-align: start;
    }

    .home-v13-voices__controls:not([hidden]) {
        margin-top: 14px;
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        align-items: center;
        gap: 10px;
    }

    .home-v13-voices__controls > button {
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: 50%;
        color: #fff;
        background: #0b1c31;
        cursor: pointer;
    }

    .home-v13-voices__controls > button:disabled { opacity: .38; cursor: default; }

    .home-v13-voices__dots {
        min-width: 0;
        display: flex;
        justify-content: center;
    }

    .home-v13-voices__dots button {
        width: 32px;
        height: 44px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .home-v13-voices__dots button span {
        width: 7px;
        height: 7px;
        display: block;
        border-radius: 999px;
        background: #5f7086;
        transition: width .22s ease, background-color .22s ease;
    }

    .home-v13-voices__dots button[aria-current="true"] span { width: 24px; background: var(--voices-gold); }
}

@media (max-width: 700px) {
    .home-v13-voices__rail > li { flex-basis: calc(100% - 46px); }
}

@media (max-width: 620px) {
    .home-v13-voices {
        width: calc(100% - 24px);
        margin-block: 64px;
        padding: 24px 14px 28px;
        border-radius: 22px;
    }

    .home-v13-voices::before { width: 330px; height: 330px; top: -190px; left: calc(50% - 165px); }
    .home-v13-voices::after { display: none; }

    .home-v13-portraits {
        height: 148px;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 7px;
    }

    .home-v13-portrait {
        width: min(100%, 64px);
        border-radius: 11px;
    }

    .home-v13-portrait:nth-child(n + 6) { display: none; }
    .home-v13-portrait:nth-child(even) { margin-top: 18px; }
    .home-v13-portrait:nth-child(3n) { margin-top: 8px; }

    .home-v13-voices__intro { margin-bottom: 28px; }
    .home-v13-voices__intro h2 { margin-top: 15px; font-size: clamp(29px, 9vw, 37px); }
    .home-v13-voices__intro > p { font-size: 13px; line-height: 1.65; }
    .home-v13-voices__integrity { font-size: 10px; }

    .home-v13-voices__actions { align-items: stretch; flex-direction: column; }
    .home-v13-voices__actions > * { width: 100%; }

    .home-v13-voices__rail { gap: 11px; padding-inline: 0; }
    .home-v13-voices__rail > li { flex-basis: calc(100% - 30px); }

    .home-v13-voice { min-height: 420px; padding: 20px; border-radius: 14px; }
    .home-v13-voice__author { grid-template-columns: 42px minmax(0, 1fr); }
    .home-v13-voice__author time { grid-column: 2; }
    .home-v13-voice h3 { font-size: 19px; }
    .home-v13-voice__footer { align-items: flex-start; flex-direction: column; }

    .home-v13-voices__empty {
        padding: 22px 4px;
        grid-template-columns: 48px minmax(0, 1fr);
        align-items: start;
        gap: 13px;
    }

    .home-v13-voices__empty > span { width: 48px; height: 48px; }
    .home-v13-voices__empty > a { grid-column: 1 / -1; justify-self: stretch; justify-content: center; border: 1px solid rgba(255, 255, 255, .18); border-radius: 9px; }
}

@media (max-width: 350px) {
    .home-v13-voices { width: calc(100% - 16px); padding-inline: 10px; }
    .home-v13-portraits { height: 132px; gap: 5px; }
    .home-v13-portrait { max-width: 52px; }
    .home-v13-voices__intro h2 { font-size: 27px; }
    .home-v13-voices__rail > li { flex-basis: calc(100% - 22px); }
    .home-v13-voice { padding: 17px; }
    .home-v13-voices__dots button { width: 28px; }
}

@media (prefers-reduced-motion: reduce) {
    .home-v9 * {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

    .home-v13-voices.is-enhanced .home-v13-portrait,
    .home-v13-voices.is-enhanced .home-v13-voices__intro,
    .home-v13-voices.is-enhanced .home-v13-voices__rail > li,
    .home-v13-voices.is-enhanced .home-v13-voices__empty {
        opacity: 1;
        transform: none;
    }
}

/* Community voices v20 — final authoritative cascade for the review rail. */
.home-v14-community {
    --voice-card-height: 270px;
}

.home-v14-voice {
    box-sizing: border-box;
    min-height: var(--voice-card-height);
    height: var(--voice-card-height);
    padding: 20px 22px;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
}

.home-v14-voice blockquote {
    margin: 15px 0 0;
    padding-top: 17px;
}

.home-v14-voice blockquote::before {
    top: 4px;
    font-size: 26px;
}

.home-v14-voice blockquote p {
    margin: 0;
    align-self: start;
}

.home-v14-community__controls > [data-voices-prev],
.home-v14-community__controls > [data-voices-next] {
    position: relative;
    display: inline-grid;
    place-items: center;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(255, 236, 179, .82);
    color: #07172b;
    background:
        radial-gradient(circle at 29% 22%, rgba(255, 255, 255, .44) 0 2px, transparent 2.8px),
        linear-gradient(135deg, #e7b640, #c78b18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .52),
        inset 0 -2px 0 rgba(118, 72, 6, .18),
        0 14px 28px rgba(0, 0, 0, .28);
}

.home-v14-community__controls > [data-voices-prev]::before,
.home-v14-community__controls > [data-voices-next]::before {
    content: "";
    position: absolute;
    inset: 5px;
    z-index: -1;
    border: 1px solid rgba(7, 23, 43, .16);
    border-radius: inherit;
}

.home-v14-community__controls > [data-voices-prev] i,
.home-v14-community__controls > [data-voices-next] i {
    width: auto;
    height: auto;
    display: block;
    color: currentColor;
    font-size: 21px;
    line-height: 1;
}

.home-v14-community__controls > [data-voices-prev]:is(:hover, :focus-visible),
.home-v14-community__controls > [data-voices-next]:is(:hover, :focus-visible) {
    color: #fff;
    border-color: #f5d681;
    background: #0b2545;
}

.home-v14-community__share {
    min-height: 52px;
    padding: 0 13px 0 9px;
    gap: 10px;
    border-color: rgba(242, 199, 101, .9);
    color: #fff;
    background: linear-gradient(105deg, #0b2545 0 42%, #102e52 42% 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .05),
        inset 0 -3px 0 rgba(214, 162, 57, .92),
        0 14px 28px rgba(0, 0, 0, .2);
}

.home-v14-community__share::before {
    opacity: .95;
    background:
        radial-gradient(circle at 2px 2px, rgba(242, 199, 101, .42) 1px, transparent 1.7px) 0 0 / 11px 11px,
        linear-gradient(122deg, transparent 0 38%, rgba(242, 199, 101, .15) 38% 39%, transparent 39% 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 82%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 82%, transparent 100%);
}

.home-v14-community__share > .bi-chat-left-text-fill {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border: 1px solid rgba(242, 199, 101, .72);
    border-radius: 11px;
    color: #0b2545;
    background: #f0c367;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .42);
}

.home-v14-community__share-arrow {
    margin-left: 1px;
    color: #f3cb73;
    font-size: 15px;
    transition: transform .24s ease;
}

.home-v14-community__share:is(:hover, :focus-visible) {
    border-color: #fff0c4;
    color: #fff;
    background: #0a203a;
}

.home-v14-community__share:is(:hover, :focus-visible) .home-v14-community__share-arrow {
    transform: translateX(3px);
}

@media (max-width: 620px) {
    .home-v14-community {
        --voice-card-height: 238px;
    }

    .home-v14-voice {
        padding: 15px 17px;
    }

    .home-v14-voice blockquote {
        margin-top: 13px;
        padding-top: 15px;
    }

    .home-v14-voice blockquote p {
        font-size: 11.5px;
        line-height: 1.5;
    }

    .home-v14-community__share {
        min-height: 50px;
        padding-inline: 8px 12px;
        gap: 9px;
    }

    .home-v14-community__share > .bi-chat-left-text-fill {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
        border-radius: 10px;
    }

    .home-v14-community__share-arrow {
        font-size: 14px;
    }

    .home-v14-community__controls > [data-voices-prev],
    .home-v14-community__controls > [data-voices-next] {
        top: 106px;
    }
}

@media (max-width: 350px) {
    .home-v14-community {
        --voice-card-height: 250px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-v14-community__share-arrow {
        transition: none;
    }
}

/* Final CTA polish override: keep the community action simple and premium. */
.home-v14-community .home-v9-button--primary.home-v14-community__share,
.home-v14-community .home-v9-button--primary.home-v14-community__share--pattern {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 50px;
    padding: 0 13px 0 9px;
    gap: 10px;
    border: 1px solid rgba(229, 189, 103, .34);
    border-radius: 12px;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, 0) 44%),
        #0a2340;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .12),
        0 14px 26px rgba(0, 0, 0, .22);
    transform: translateY(0);
    transition:
        border-color .2s ease,
        background-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.home-v14-community .home-v14-community__share--pattern::before {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: -1;
    border-radius: 11px;
    background:
        linear-gradient(110deg, transparent 0 24%, rgba(255, 255, 255, .055) 46%, transparent 68%),
        linear-gradient(180deg, rgba(255, 255, 255, .045), transparent 56%);
    opacity: 1;
    -webkit-mask-image: none;
    mask-image: none;
}

.home-v14-community .home-v14-community__share > .bi-chat-left-text-fill,
.home-v14-community .home-v14-community__share i:first-child {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border: 0;
    border-radius: 10px;
    color: #10233b;
    background: linear-gradient(180deg, #f3d27e, #d59d35);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .45),
        0 8px 18px rgba(0, 0, 0, .2);
}

.home-v14-community .home-v14-community__share-arrow {
    color: #f2cf7b;
}

.home-v14-community .home-v14-community__share:is(:hover, :focus-visible) {
    border-color: rgba(243, 210, 126, .62);
    color: #fff;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, 0) 46%),
        #0d2b4d;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .15),
        0 16px 30px rgba(0, 0, 0, .25);
    transform: translateY(-1px);
}

/* Final portrait composition: balanced, lightly irregular, and clear of the intro. */
.home-v14-portraits {
    height: clamp(218px, 18vw, 252px);
    margin-bottom: clamp(18px, 2.6vw, 34px);
}

.home-v14-portrait {
    margin-top: 0 !important;
    width: clamp(68px, var(--portrait-size, 5.35vw), 96px);
}

.home-v14-portrait--1  { --portrait-left: 6%; --portrait-top: 96px; --portrait-size: 5.1vw; }
.home-v14-portrait--2  { --portrait-left: 14%; --portrait-top: 24px; --portrait-size: 5.8vw; }
.home-v14-portrait--3  { --portrait-left: 23%; --portrait-top: 114px; --portrait-size: 5.25vw; }
.home-v14-portrait--4  { --portrait-left: 32%; --portrait-top: 64px; --portrait-size: 5.45vw; }
.home-v14-portrait--5  { --portrait-left: 41%; --portrait-top: 0; --portrait-size: 5.9vw; }
.home-v14-portrait--6  { --portrait-left: 50%; --portrait-top: 108px; --portrait-size: 5.15vw; }
.home-v14-portrait--7  { --portrait-left: 59%; --portrait-top: 48px; --portrait-size: 5.65vw; }
.home-v14-portrait--8  { --portrait-left: 68%; --portrait-top: 116px; --portrait-size: 5.15vw; }
.home-v14-portrait--9  { --portrait-left: 76%; --portrait-top: 64px; --portrait-size: 5.45vw; }
.home-v14-portrait--10 { --portrait-left: 83%; --portrait-top: 18px; --portrait-size: 5.85vw; }
.home-v14-portrait--11 { --portrait-left: 90%; --portrait-top: 112px; --portrait-size: 5.05vw; }
.home-v14-portrait--12 { --portrait-left: 96%; --portrait-top: 26px; --portrait-size: 4.9vw; }
.home-v14-portrait--13 { display: none; }

@media (max-width: 900px) {
    .home-v14-portraits {
        height: 198px;
    }

    .home-v14-portrait:nth-child(n + 9) {
        display: none;
    }

    .home-v14-portrait--1 { --portrait-left: 7%; --portrait-top: 82px; --portrait-size: 8vw; }
    .home-v14-portrait--2 { --portrait-left: 20%; --portrait-top: 12px; --portrait-size: 9vw; }
    .home-v14-portrait--3 { --portrait-left: 33%; --portrait-top: 104px; --portrait-size: 8vw; }
    .home-v14-portrait--4 { --portrait-left: 46%; --portrait-top: 40px; --portrait-size: 8.8vw; }
    .home-v14-portrait--5 { --portrait-left: 59%; --portrait-top: 4px; --portrait-size: 9.2vw; }
    .home-v14-portrait--6 { --portrait-left: 72%; --portrait-top: 94px; --portrait-size: 8vw; }
    .home-v14-portrait--7 { --portrait-left: 85%; --portrait-top: 30px; --portrait-size: 8.8vw; }
    .home-v14-portrait--8 { --portrait-left: 95%; --portrait-top: 102px; --portrait-size: 7.4vw; }
}

@media (max-width: 620px) {
    .home-v14-portraits {
        width: min(100%, 344px);
        height: 132px;
        margin-bottom: 22px;
    }

    .home-v14-portrait:nth-child(n + 6) {
        display: none;
    }

    .home-v14-portrait--1 { --portrait-left: 9%; --portrait-top: 30px; --portrait-size: 16.3vw; }
    .home-v14-portrait--2 { --portrait-left: 29%; --portrait-top: 0; --portrait-size: 17vw; }
    .home-v14-portrait--3 { --portrait-left: 50%; --portrait-top: 42px; --portrait-size: 16.2vw; }
    .home-v14-portrait--4 { --portrait-left: 71%; --portrait-top: 6px; --portrait-size: 17vw; }
    .home-v14-portrait--5 { --portrait-left: 91%; --portrait-top: 34px; --portrait-size: 16.3vw; }
}

/* Homepage SEO text block above the footer. */
.home-v9-seo {
    margin-block: clamp(72px, 8vw, 118px) clamp(34px, 5vw, 70px);
}

.home-v9-seo__panel {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
    gap: clamp(28px, 4.4vw, 72px);
    padding: clamp(28px, 4.6vw, 58px);
    border: 1px solid rgba(214, 162, 57, .38);
    border-left: 4px solid #d6a239;
    border-radius: 8px;
    color: #eaf1f8;
    background:
        radial-gradient(circle at 12% 0, rgba(214, 162, 57, .14), transparent 32%),
        linear-gradient(135deg, rgba(255, 255, 255, .045), transparent 34%),
        #071b34;
    box-shadow: 0 28px 70px rgba(7, 27, 58, .18);
}

.home-v9-seo__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(214, 162, 57, .18), transparent 22%),
        radial-gradient(circle at 86% 18%, rgba(255, 255, 255, .08), transparent 28%);
    opacity: .82;
}

.home-v9-seo__intro,
.home-v9-seo__content {
    position: relative;
    z-index: 1;
}

.home-v9-seo__intro {
    align-self: start;
}

.home-v9-seo__intro h2 {
    max-width: 560px;
    margin: 14px 0 0;
    color: #fff;
    font-size: clamp(27px, 3.1vw, 46px);
    line-height: 1.08;
    letter-spacing: 0;
}

.home-v9-seo__content {
    max-height: 328px;
    overflow: auto;
    padding-right: 18px;
    color: #c4cfdb;
    scrollbar-color: rgba(214, 162, 57, .78) rgba(255, 255, 255, .08);
    scrollbar-width: thin;
}

.home-v9-seo__content::-webkit-scrollbar {
    width: 8px;
}

.home-v9-seo__content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .08);
    border-radius: 999px;
}

.home-v9-seo__content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #f0c367, #b98524);
    border-radius: 999px;
}

.home-v9-seo__content p {
    margin: 0;
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.78;
}

.home-v9-seo__content p + p {
    margin-top: 20px;
}

.home-v9-seo__panel--content-only {
    display: block;
    min-height: 0;
    padding: clamp(26px, 3vw, 34px);
}

.home-v9-seo__panel--content-only::before {
    background: radial-gradient(circle at 86% 18%, rgba(255, 255, 255, .08), transparent 30%);
}

.home-v9-seo__panel--content-only .home-v9-seo__content {
    max-width: 1120px;
    max-height: 316px;
    margin: 0 auto;
    padding: 0 22px 0 0;
}

.home-v9-seo__content h2 {
    max-width: 900px;
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.22;
    letter-spacing: 0;
}

.home-v9-seo__content h3 {
    margin: 32px 0 12px;
    color: #edc46d;
    font-size: clamp(17px, 1.4vw, 21px);
    line-height: 1.35;
    letter-spacing: 0;
}

.home-v9-seo__content a {
    color: #f1c76d;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(241, 199, 109, .34);
    text-underline-offset: 4px;
}

.home-v9-seo__topics {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.home-v9-seo__topics span {
    min-height: 32px;
    padding: 7px 11px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(214, 162, 57, .28);
    border-radius: 999px;
    color: #f5d681;
    background: rgba(255, 255, 255, .045);
    font-size: 11px;
    font-weight: 850;
}

@media (max-width: 900px) {
    .home-v9-seo__panel {
        grid-template-columns: 1fr;
    }

    .home-v9-seo__content {
        max-height: 380px;
    }

    .home-v9-seo__panel--content-only .home-v9-seo__content {
        max-height: 340px;
    }
}

@media (max-width: 620px) {
    .home-v9-seo {
        margin-block: 58px 34px;
    }

    .home-v9-seo__panel {
        padding: 24px 18px;
        border-left-width: 3px;
    }

    .home-v9-seo__intro h2 {
        font-size: 26px;
    }

    .home-v9-seo__content {
        max-height: 430px;
        padding-right: 10px;
    }

    .home-v9-seo__panel--content-only {
        padding: 26px 18px;
    }

    .home-v9-seo__panel--content-only .home-v9-seo__content {
        max-height: 360px;
        padding-right: 12px;
    }

    .home-v9-seo__content h2 {
        margin-bottom: 18px;
        font-size: 21px;
    }

    .home-v9-seo__content h3 {
        margin-top: 26px;
        font-size: 17px;
    }

    .home-v9-seo__topics span {
        font-size: 10.5px;
    }
}

/* Premium carousel chevrons: sharp, proportional and free of the old blur layer. */
.home-v14-community__controls > [data-voices-prev],
.home-v14-community__controls > [data-voices-next] {
    width: 46px;
    height: 46px;
    min-width: 46px;
    aspect-ratio: 1;
    overflow: visible !important;
    border: 1px solid rgba(238, 190, 92, .58) !important;
    border-radius: 14px !important;
    color: #f4c96d !important;
    background:
        linear-gradient(145deg, rgba(9, 28, 52, .98), rgba(6, 19, 36, .98)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .08),
        0 10px 22px rgba(0, 0, 0, .18) !important;
    transform: none;
    transition:
        border-color .2s ease,
        color .2s ease,
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.home-v14-community__controls > [data-voices-prev]::before,
.home-v14-community__controls > [data-voices-next]::before {
    display: none !important;
}

.home-v14-community__controls > [data-voices-prev]::after,
.home-v14-community__controls > [data-voices-next]::after {
    content: "";
    width: 11px;
    height: 11px;
    display: block;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    filter: none;
    transform: rotate(45deg);
    transition: transform .2s ease, opacity .2s ease;
}

.home-v14-community__controls > [data-voices-prev]::after {
    transform: translateX(2px) rotate(-135deg);
}

.home-v14-community__controls > [data-voices-next]::after {
    transform: translateX(-2px) rotate(45deg);
}

.home-v14-community__controls > [data-voices-prev] i,
.home-v14-community__controls > [data-voices-next] i {
    display: none !important;
}

.home-v14-community__controls > [data-voices-prev]:is(:hover, :focus-visible),
.home-v14-community__controls > [data-voices-next]:is(:hover, :focus-visible) {
    color: #fff2c5 !important;
    border-color: rgba(255, 221, 143, .86) !important;
    background:
        linear-gradient(145deg, rgba(14, 42, 76, .98), rgba(8, 26, 49, .98)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .12),
        0 12px 24px rgba(0, 0, 0, .24) !important;
    transform: translateY(-1px);
}

.home-v14-community__controls > [data-voices-prev]:is(:hover, :focus-visible)::after {
    transform: translateX(0) rotate(-135deg);
}

.home-v14-community__controls > [data-voices-next]:is(:hover, :focus-visible)::after {
    transform: translateX(0) rotate(45deg);
}

.home-v14-community__controls > [data-voices-prev]:disabled::after,
.home-v14-community__controls > [data-voices-next]:disabled::after {
    opacity: .45;
}

.home-v14-community__controls > [data-voices-prev]:disabled,
.home-v14-community__controls > [data-voices-next]:disabled {
    color: rgba(173, 186, 202, .58) !important;
    border-color: rgba(255, 255, 255, .12) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04) !important;
    transform: none;
}

@media (max-width: 620px) {
    .home-v14-community__controls > [data-voices-prev],
    .home-v14-community__controls > [data-voices-next] {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 12px !important;
    }

    .home-v14-community__controls > [data-voices-prev]::after,
    .home-v14-community__controls > [data-voices-next]::after {
        width: 10px;
        height: 10px;
    }
}

/* Active testimonial follows hover/focus and comes forward without changing layout. */
.home-v14-community__rail > li {
    position: relative;
    z-index: 1;
}

.home-v14-community__rail > li.is-active,
.home-v14-community__rail > li:is(:hover, :focus-within) {
    z-index: 3;
}

.home-v14-community.is-visible .home-v14-community__rail > li:is(:hover, :focus-within) {
    transform: translateY(-4px);
}

.home-v14-community__rail > li:is(:hover, :focus-within) .home-v14-voice {
    border-color: rgba(214, 162, 57, .5);
    background: linear-gradient(155deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .032));
    box-shadow: 0 26px 56px rgba(0, 0, 0, .3);
}

/* Mobile footer legal band: one professional row with the credit kept as a unit. */
@media (max-width: 700px) {
    .home-v9-footer__legal {
        width: min(calc(100% - 28px), 1440px);
        min-height: 0;
        padding-block: 16px 17px;
        display: grid;
        grid-template-columns: minmax(148px, 1fr) minmax(118px, .78fr) auto;
        align-items: center;
        justify-content: stretch;
        gap: 10px;
        line-height: 1.3;
        font-size: 10px;
        white-space: nowrap;
    }

    .home-v9-footer__created {
        width: auto;
        min-height: 34px;
        margin-top: 0;
        padding-top: 0;
        border-top: 0;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        letter-spacing: .08em;
        white-space: nowrap;
    }

    .home-v9-footer__created img {
        width: 106px;
        height: auto;
        max-width: 29vw;
    }
}

@media (max-width: 430px) {
    .home-v9-footer__legal {
        width: min(calc(100% - 24px), 1440px);
        grid-template-columns: minmax(132px, 1fr) minmax(94px, .68fr) auto;
        gap: 7px;
        padding-block: 15px 16px;
        font-size: 9px;
    }

    .home-v9-footer__legal > span:not(.home-v9-footer__created) {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .home-v9-footer__created {
        align-items: center;
        flex-direction: row;
        justify-content: flex-end;
        gap: 6px;
    }

    .home-v9-footer__created img {
        width: 88px;
        max-width: 25vw;
    }
}

/* Compact mobile SEO panel with a longer scrollable professional text body. */
@media (max-width: 620px) {
    .home-v9-seo {
        margin-block: 44px 28px;
    }

    .home-v9-seo__panel {
        padding: 20px 16px;
        gap: 16px;
        border-left-width: 3px;
        border-radius: 9px;
    }

    .home-v9-seo__intro h2 {
        max-width: 100%;
        margin-top: 10px;
        font-size: 23px;
        line-height: 1.14;
    }

    .home-v9-seo__content {
        max-height: 246px;
        padding-right: 9px;
    }

    .home-v9-seo__content p {
        font-size: 13px;
        line-height: 1.62;
    }

    .home-v9-seo__content p + p {
        margin-top: 15px;
    }

    .home-v9-seo__topics {
        margin-top: 16px;
        gap: 7px;
    }

    .home-v9-seo__topics span {
        min-height: 28px;
        padding: 6px 9px;
        font-size: 10px;
    }
}

@media (max-width: 380px) {
    .home-v9-seo__intro h2 {
        font-size: 21px;
    }

    .home-v9-seo__content {
        max-height: 220px;
    }
}

/* Homepage hero v15: quality-management editorial scene with a focused conversion path. */
body.is-homepage,
body.is-homepage .home-v9 {
    overflow-x: clip;
}

body.is-homepage .home-v9-hero {
    width: 100% !important;
    max-width: none !important;
    margin-inline: 0 !important;
    min-height: 610px !important;
    display: flex !important;
    align-items: stretch !important;
    padding: 0 0 46px !important;
    overflow: hidden !important;
    isolation: isolate !important;
    color: #fff !important;
    background: #071a31 !important;
    border: 0 !important;
}

body.is-homepage .home-v9-hero__media {
    inset: 0 !important;
    z-index: 0 !important;
    height: auto !important;
    background: #071a31 !important;
}

body.is-homepage .home-v9-hero__media::after {
    content: none !important;
    display: none !important;
}

body.is-homepage .home-v9-hero__media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
}

body.is-homepage .home-v9-hero__copy {
    position: relative !important;
    z-index: 1 !important;
    width: min(52%, 650px) !important;
    max-width: 650px !important;
    margin-left: max(24px, calc((100vw - var(--home-shell)) / 2)) !important;
    min-height: 564px !important;
    padding: 68px 0 86px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 0 !important;
}

body.is-homepage .home-v9-hero__title-block {
    width: 100% !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
}

body.is-homepage .home-v9-hero__eyebrow {
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #f0bd49 !important;
    font-size: 10.5px !important;
    font-weight: 800 !important;
    letter-spacing: .12em !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
}

body.is-homepage .home-v9-hero__eyebrow::before {
    width: 28px;
    height: 1px;
    content: "";
    display: block;
    background: currentColor;
}

body.is-homepage .home-v9-hero #home-hero-title {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    color: #fff !important;
    font-size: 56px !important;
    font-weight: 800 !important;
    line-height: 1.02 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    white-space: nowrap !important;
}

body.is-homepage .home-v9-hero #home-hero-title span {
    display: inline !important;
    max-width: none !important;
    white-space: nowrap !important;
}

body.is-homepage .home-v9-hero__title-highlight {
    color: #efb93f !important;
}

body.is-homepage .home-v9-hero__description-block {
    width: min(100%, 560px) !important;
    min-height: 0 !important;
    margin-top: 23px !important;
    display: grid !important;
    gap: 9px !important;
}

body.is-homepage .home-v9-hero__description-block > p {
    max-width: 560px !important;
    margin: 0 !important;
    color: rgba(238, 243, 249, .78) !important;
    font-size: 15px !important;
    line-height: 1.62 !important;
}

body.is-homepage .home-v9-hero__description-block > .home-v9-hero__lead {
    color: #fff !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 1.34 !important;
}

body.is-homepage .home-v9-hero__cta-block {
    width: max-content !important;
    min-height: 0 !important;
    margin-top: 28px !important;
}

body.is-homepage .home-v9-hero__cta-block .home-v9-button--primary {
    min-height: 50px !important;
    padding-inline: 22px 19px !important;
    gap: 14px !important;
    color: #071a31 !important;
    background: #efb93f !important;
    border-radius: 6px !important;
    box-shadow: none !important;
}

body.is-homepage .home-v9-hero__cta-block .home-v9-button--primary::after {
    content: "→";
    font-size: 16px;
    line-height: 1;
}

body.is-homepage .home-v9-hero__cta-block .home-v9-button--primary:hover {
    background: #f6c95d !important;
    transform: translateY(-2px) !important;
}

body.is-homepage .home-v9-hero__platforms {
    width: min(100%, 630px) !important;
    margin-top: 35px !important;
    padding-top: 18px !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-items: start !important;
    border-top: 1px solid rgba(255, 255, 255, .2) !important;
}

body.is-homepage .home-v9-hero__platforms a {
    min-width: 0 !important;
    padding: 0 18px !important;
    display: grid !important;
    gap: 5px !important;
    color: #fff !important;
    letter-spacing: 0 !important;
    text-decoration: none !important;
}

body.is-homepage .home-v9-hero__platforms a:first-child {
    padding-left: 0 !important;
}

body.is-homepage .home-v9-hero__platforms a + a {
    border-left: 1px solid rgba(255, 255, 255, .16) !important;
}

body.is-homepage .home-v9-hero__platforms a:hover {
    color: #f4c65b !important;
}

body.is-homepage .home-v9-hero__platforms strong {
    font-size: 11px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
}

body.is-homepage .home-v9-hero__platforms span {
    color: rgba(229, 237, 246, .66) !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    line-height: 1.38 !important;
}

body.is-homepage .home-v9-forum-ticker {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    min-height: 42px !important;
    margin-left: 0 !important;
    transform: none !important;
    background: #061429 !important;
    border-top: 1px solid rgba(239, 185, 63, .42) !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
}

body.is-homepage .home-v9-forum-ticker__inner {
    width: min(var(--home-shell), calc(100% - 32px)) !important;
    max-width: none !important;
    min-height: 42px !important;
    padding-inline: 0 !important;
}

@media (min-width: 761px) and (max-width: 1180px) {
    body.is-homepage .home-v9-hero__copy {
        width: min(55%, 620px) !important;
    }

    body.is-homepage .home-v9-hero #home-hero-title {
        font-size: 48px !important;
    }

    body.is-homepage .home-v9-hero__description-block {
        width: min(100%, 510px) !important;
    }

    body.is-homepage .home-v9-hero__platforms {
        width: min(100%, 570px) !important;
    }
}

@media (min-width: 761px) and (max-width: 900px) {
    body.is-homepage .home-v9-hero__copy {
        width: min(56%, 470px) !important;
    }

    body.is-homepage .home-v9-hero #home-hero-title {
        font-size: 38px !important;
    }

    body.is-homepage .home-v9-hero__description-block > .home-v9-hero__lead {
        font-size: 19px !important;
    }

    body.is-homepage .home-v9-hero__description-block > p {
        font-size: 13.5px !important;
    }
}

@media (max-width: 760px) {
    body.is-homepage .home-v9-hero {
        --home-v9-media-height: 340px !important;
        min-height: 0 !important;
        padding-top: var(--home-v9-media-height) !important;
        padding-bottom: 46px !important;
        background: #071a31 !important;
    }

    body.is-homepage .home-v9-hero__media {
        inset: 0 0 auto !important;
        height: var(--home-v9-media-height) !important;
    }

    body.is-homepage .home-v9-hero__media img {
        object-position: center 38% !important;
    }

    body.is-homepage .home-v9-hero__copy {
        width: 100% !important;
        max-width: 760px !important;
        min-height: 0 !important;
        margin-inline: auto !important;
        padding: 38px 24px 56px !important;
        justify-content: flex-start !important;
    }

    body.is-homepage .home-v9-hero__title-block {
        gap: 13px !important;
    }

    body.is-homepage .home-v9-hero__eyebrow {
        font-size: 10px !important;
        letter-spacing: .12em !important;
    }

    body.is-homepage .home-v9-hero__eyebrow::before {
        width: 22px;
    }

    body.is-homepage .home-v9-hero #home-hero-title {
        font-size: 42px !important;
        line-height: 1.04 !important;
    }

    body.is-homepage .home-v9-hero__description-block {
        width: 100% !important;
        margin-top: 20px !important;
    }

    body.is-homepage .home-v9-hero__description-block > p {
        max-width: 36rem !important;
        font-size: 14px !important;
        line-height: 1.62 !important;
    }

    body.is-homepage .home-v9-hero__description-block > .home-v9-hero__lead {
        font-size: 20px !important;
    }

    body.is-homepage .home-v9-hero__cta-block {
        min-height: 46px !important;
        margin-top: 25px !important;
    }

    body.is-homepage .home-v9-hero__cta-block .home-v9-button--primary {
        min-height: 46px !important;
        padding-inline: 18px !important;
    }

    body.is-homepage .home-v9-hero__platforms {
        width: 100% !important;
        margin-top: 30px !important;
        padding-top: 17px !important;
    }

    body.is-homepage .home-v9-hero__platforms a {
        padding-inline: 15px !important;
        text-align: left !important;
    }

    body.is-homepage .home-v9-hero__platforms a:first-child {
        padding-left: 0 !important;
    }

    body.is-homepage .home-v9-hero__platforms a:last-child {
        padding-right: 0 !important;
    }

    body.is-homepage .home-v9-forum-ticker {
        left: 0 !important;
        width: 100% !important;
        margin-left: 0 !important;
        overflow: hidden !important;
        contain: paint !important;
    }

    body.is-homepage .home-v9-forum-ticker__inner {
        width: 100% !important;
        grid-template-columns: 34px minmax(0, 1fr) !important;
        gap: 10px !important;
        padding-inline: 14px !important;
        overflow: hidden !important;
        contain: paint !important;
    }

    body.is-homepage .home-v9-forum-ticker__viewport {
        overflow: hidden !important;
        contain: paint !important;
    }

    body.is-homepage .home-v9-forum-ticker__label {
        width: 34px !important;
        min-height: 34px !important;
        justify-content: center !important;
        border-radius: 999px !important;
    }

    body.is-homepage .home-v9-forum-ticker__label span,
    body.is-homepage .home-v9-forum-ticker__item span {
        display: none !important;
    }

    body.is-homepage .home-v9-forum-ticker__item {
        min-height: 42px !important;
        max-width: 72vw !important;
        font-size: 10.5px !important;
    }

    body.is-homepage .home-v9-forum-ticker__item strong {
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
}

@media (max-width: 620px) {
    body.is-homepage .home-v9-hero {
        --home-v9-media-height: 290px !important;
    }

    body.is-homepage .home-v9-hero__copy {
        padding: 31px 16px 45px !important;
    }

    body.is-homepage .home-v9-hero__title-block {
        gap: 12px !important;
    }

    body.is-homepage .home-v9-hero__eyebrow {
        font-size: 8.5px !important;
        letter-spacing: .1em !important;
    }

    body.is-homepage .home-v9-hero__eyebrow::before {
        width: 20px;
    }

    body.is-homepage .home-v9-hero #home-hero-title {
        font-size: 27px !important;
        line-height: 1.05 !important;
    }

    body.is-homepage .home-v9-hero__description-block {
        margin-top: 17px !important;
        gap: 8px !important;
    }

    body.is-homepage .home-v9-hero__description-block > .home-v9-hero__lead {
        font-size: 18px !important;
        line-height: 1.38 !important;
    }

    body.is-homepage .home-v9-hero__description-block > p {
        font-size: 13px !important;
        line-height: 1.58 !important;
    }

    body.is-homepage .home-v9-hero__cta-block {
        margin-top: 22px !important;
    }

    body.is-homepage .home-v9-hero__platforms {
        margin-top: 26px !important;
        padding-top: 15px !important;
    }

    body.is-homepage .home-v9-hero__platforms a {
        padding-inline: 9px !important;
        gap: 4px !important;
    }

    body.is-homepage .home-v9-hero__platforms strong {
        font-size: 10px !important;
    }

    body.is-homepage .home-v9-hero__platforms span {
        font-size: 9px !important;
        line-height: 1.32 !important;
    }
}

@media (max-width: 380px) {
    body.is-homepage .home-v9-hero {
        --home-v9-media-height: 270px !important;
    }

    body.is-homepage .home-v9-hero #home-hero-title {
        font-size: 25px !important;
    }

    body.is-homepage .home-v9-hero__description-block > p {
        font-size: 12.5px !important;
    }

    body.is-homepage .home-v9-hero__platforms span {
        display: none !important;
    }
}
