/* Active Nutrition guided questionnaire — intentionally scoped to .anq. */
.anq {
    --anq-bg: #0a0910;
    --anq-surface: #121019;
    --anq-surface-raised: #191622;
    --anq-surface-soft: #211c2d;
    --anq-border: rgba(255, 255, 255, 0.11);
    --anq-border-strong: rgba(181, 156, 255, 0.5);
    --anq-text: #fcfbff;
    --anq-muted: #b8b2c2;
    --anq-muted-strong: #d7d1df;
    --anq-purple: #8a62ff;
    --anq-purple-light: #b9a4ff;
    --anq-purple-deep: #6940de;
    --anq-success: #8be2ba;
    --anq-error: #ffb6c1;
    --anq-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
    display: block;
    width: 100%;
    color: var(--anq-text);
    font-family: inherit;
    font-size: 16px;
    line-height: 1.5;
    isolation: isolate;
}

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

.anq button,
.anq input,
.anq a {
    font: inherit;
}

.anq button,
.anq a {
    -webkit-tap-highlight-color: transparent;
}

.anq__shell {
    position: relative;
    width: min(100%, 1140px);
    min-height: 680px;
    margin: 0 auto;
    overflow: clip;
    border: 1px solid var(--anq-border);
    border-radius: 28px;
    background:
        radial-gradient(circle at 92% 4%, rgba(138, 98, 255, 0.14), transparent 34%),
        linear-gradient(145deg, #0d0b13 0%, var(--anq-bg) 58%, #0e0b17 100%);
    box-shadow: var(--anq-shadow);
}

.anq__accent {
    position: absolute;
    z-index: -1;
    top: -155px;
    right: -95px;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(181, 156, 255, 0.13);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 98, 255, 0.09), transparent 66%);
    pointer-events: none;
}

.anq__accent::before,
.anq__accent::after {
    position: absolute;
    border: 1px solid rgba(181, 156, 255, 0.09);
    border-radius: inherit;
    content: "";
}

.anq__accent::before {
    inset: 54px;
}

.anq__accent::after {
    inset: 108px;
}

.anq__topbar {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 76px;
    padding: 0 clamp(22px, 4.4vw, 54px);
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.anq__brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--anq-text);
    font-size: 14px;
    font-weight: 760;
    letter-spacing: 0.025em;
}

.anq__brand-mark {
    display: inline-flex;
    width: 31px;
    height: 31px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(181, 156, 255, 0.48);
    border-radius: 10px;
    background: rgba(138, 98, 255, 0.12);
    color: var(--anq-purple-light);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: -0.02em;
}

.anq__time,
.anq__progress-text {
    color: var(--anq-muted);
    font-size: 13px;
    font-weight: 570;
}

.anq__progress {
    position: relative;
    height: 3px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.07);
}

.anq__progress-bar {
    display: block;
    height: 100%;
    border-radius: 0 4px 4px 0;
    background: linear-gradient(90deg, var(--anq-purple-deep), var(--anq-purple-light));
    box-shadow: 0 0 18px rgba(138, 98, 255, 0.48);
    transition: width 320ms ease;
}

.anq__welcome,
.anq__question,
.anq__results,
.anq__loading,
.anq__error {
    position: relative;
    z-index: 1;
    width: min(100% - 44px, 850px);
    margin: 0 auto;
    padding: clamp(54px, 8vw, 98px) 0 clamp(58px, 8vw, 96px);
    animation: anq-enter 340ms ease both;
}

.anq__welcome {
    width: min(100% - 44px, 760px);
    padding-top: clamp(66px, 10vw, 118px);
    text-align: center;
}

.anq__eyebrow {
    margin: 0 0 13px;
    color: var(--anq-purple-light);
    font-size: 12px;
    font-weight: 820;
    letter-spacing: 0.15em;
    line-height: 1.2;
    text-transform: uppercase;
}

.anq__title {
    max-width: 780px;
    margin: 0;
    color: var(--anq-text);
    font-size: clamp(30px, 4.4vw, 50px);
    font-weight: 760;
    letter-spacing: -0.042em;
    line-height: 1.06;
    text-wrap: balance;
}

.anq__title--hero {
    margin-inline: auto;
    font-size: clamp(38px, 6vw, 66px);
    line-height: 0.99;
}

.anq__title:focus {
    outline: 0;
}

.anq__lead,
.anq__help {
    max-width: 700px;
    margin: 19px 0 0;
    color: var(--anq-muted);
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.62;
}

.anq__welcome .anq__lead {
    max-width: 655px;
    margin-inline: auto;
}

.anq__help {
    margin-top: 13px;
    font-size: 15px;
}

.anq__intro-points {
    display: flex;
    margin: 34px 0 38px;
    padding: 0;
    justify-content: center;
    gap: 12px 22px;
    color: var(--anq-muted-strong);
    font-size: 14px;
    list-style: none;
}

.anq__intro-points li,
.anq__reason-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.anq__tick {
    display: inline-flex;
    flex: 0 0 19px;
    width: 19px;
    height: 19px;
    margin-top: 1px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(139, 226, 186, 0.11);
    color: var(--anq-success);
    font-size: 11px;
    font-weight: 850;
}

.anq__privacy {
    display: flex;
    margin: 18px 0 0;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #928b9e;
    font-size: 12px;
}

.anq__lock {
    color: var(--anq-purple-light);
    font-size: 8px;
}

.anq__fieldset {
    min-width: 0;
    margin: 31px 0 0;
    padding: 0;
    border: 0;
}

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

.anq__choice {
    display: block;
    min-width: 0;
    margin: 0;
    cursor: pointer;
}

.anq__choice > input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.anq__choice-card {
    position: relative;
    display: grid;
    min-height: 82px;
    padding: 16px 50px 16px 16px;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    overflow: hidden;
    border: 1px solid var(--anq-border);
    border-radius: 16px;
    background: var(--anq-surface);
    color: var(--anq-text);
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.anq__choice:hover .anq__choice-card {
    border-color: rgba(181, 156, 255, 0.32);
    background: var(--anq-surface-raised);
    transform: translateY(-1px);
}

.anq__choice > input:focus-visible + .anq__choice-card {
    outline: 3px solid var(--anq-purple-light);
    outline-offset: 3px;
}

.anq__choice > input:checked + .anq__choice-card {
    border-color: var(--anq-border-strong);
    background: linear-gradient(135deg, rgba(138, 98, 255, 0.16), rgba(138, 98, 255, 0.055));
    box-shadow: inset 0 0 0 1px rgba(138, 98, 255, 0.11), 0 10px 28px rgba(0, 0, 0, 0.18);
}

.anq__choice-symbol {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--anq-muted);
    font-size: 10px;
    font-weight: 820;
    letter-spacing: 0.04em;
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.anq__choice > input:checked + .anq__choice-card .anq__choice-symbol {
    border-color: rgba(181, 156, 255, 0.36);
    background: rgba(138, 98, 255, 0.15);
    color: var(--anq-purple-light);
}

.anq__choice-label {
    font-size: 15px;
    font-weight: 610;
    line-height: 1.34;
}

.anq__choice-check {
    position: absolute;
    top: 50%;
    right: 17px;
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: transparent;
    font-size: 11px;
    font-weight: 900;
    transform: translateY(-50%);
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.anq__choice > input:checked + .anq__choice-card .anq__choice-check {
    border-color: var(--anq-purple);
    background: var(--anq-purple);
    color: #fff;
}

.anq__validation {
    min-height: 23px;
    margin: 10px 0 0;
    color: var(--anq-error);
    font-size: 13px;
    font-weight: 610;
}

.anq__actions {
    display: flex;
    margin-top: 27px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.anq__actions--center {
    justify-content: flex-start;
    flex-wrap: wrap;
}

.anq__button {
    display: inline-flex;
    min-height: 50px;
    padding: 12px 24px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 13px;
    text-align: center;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.anq__button:focus-visible,
.anq__text-button:focus-visible,
.anq__text-link:focus-visible {
    outline: 3px solid var(--anq-purple-light);
    outline-offset: 3px;
}

.anq__button--primary {
    border-color: var(--anq-purple);
    background: linear-gradient(135deg, #7045dc, #5a32c4);
    box-shadow: 0 12px 30px rgba(105, 64, 222, 0.24);
    color: #fff !important;
}

.anq__button--primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #754ae5, #6336d1);
    box-shadow: 0 15px 38px rgba(105, 64, 222, 0.34);
    transform: translateY(-1px);
}

.anq__button--primary:disabled {
    border-color: #332d3d;
    background: #292430;
    box-shadow: none;
    color: #797181 !important;
    cursor: not-allowed;
}

.anq__button--secondary {
    border-color: var(--anq-border);
    background: rgba(255, 255, 255, 0.025);
    color: var(--anq-muted-strong) !important;
}

.anq__button--secondary:hover {
    border-color: rgba(255, 255, 255, 0.23);
    background: rgba(255, 255, 255, 0.055);
    color: #fff !important;
}

.anq__button--large {
    min-height: 57px;
    padding-inline: 32px;
    font-size: 15px;
}

.anq__live,
.anq__sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    border: 0 !important;
    white-space: nowrap !important;
}

/* Loading state */
.anq__loading {
    max-width: 700px;
    padding-top: clamp(84px, 12vw, 138px);
    text-align: center;
}

.anq__loading .anq__title,
.anq__loading .anq__lead {
    margin-inline: auto;
}

.anq__loader {
    position: relative;
    display: inline-flex;
    width: 72px;
    height: 72px;
    margin-bottom: 29px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(181, 156, 255, 0.2);
    border-radius: 22px;
    background: rgba(138, 98, 255, 0.08);
}

.anq__loader::after {
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(138, 98, 255, 0.12);
    border-radius: 27px;
    content: "";
    animation: anq-pulse 1.7s ease-in-out infinite;
}

.anq__loader > span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--anq-purple-light);
    animation: anq-dot 1s ease-in-out infinite;
}

.anq__loader > span:nth-child(2) {
    animation-delay: 120ms;
}

.anq__loader > span:nth-child(3) {
    animation-delay: 240ms;
}

.anq__loading-steps {
    display: grid;
    width: min(100%, 480px);
    margin: 38px auto 0;
    padding: 0;
    gap: 10px;
    color: #877f90;
    font-size: 13px;
    list-style: none;
    text-align: left;
}

.anq__loading-steps li {
    display: flex;
    padding: 11px 14px;
    align-items: center;
    gap: 11px;
    border: 1px solid transparent;
    border-radius: 10px;
    transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.anq__loading-steps li.is-active {
    border-color: rgba(181, 156, 255, 0.16);
    background: rgba(138, 98, 255, 0.055);
    color: var(--anq-muted-strong);
}

.anq__loading-steps li.is-done {
    color: #8dcaad;
}

.anq__loading-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: currentColor;
}

/* Results */
.anq__shell--results {
    min-height: 720px;
}

.anq__results {
    width: min(100% - 44px, 1020px);
    padding-top: clamp(48px, 7vw, 78px);
}

.anq__results > .anq__lead {
    max-width: 780px;
}

.anq__result-list {
    display: grid;
    margin-top: 38px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.anq__result-card {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 23px;
    flex-direction: column;
    border: 1px solid var(--anq-border);
    border-radius: 20px;
    background: linear-gradient(160deg, var(--anq-surface-raised), #111017);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.anq__result-card--first {
    border-color: rgba(181, 156, 255, 0.43);
    background:
        radial-gradient(circle at 100% 0%, rgba(138, 98, 255, 0.16), transparent 38%),
        linear-gradient(160deg, #1b1726, #111017);
    box-shadow: 0 23px 48px rgba(0, 0, 0, 0.24), inset 0 0 0 1px rgba(138, 98, 255, 0.06);
}

.anq__recommended-label {
    position: absolute;
    top: 13px;
    right: 13px;
    padding: 5px 8px;
    border: 1px solid rgba(181, 156, 255, 0.24);
    border-radius: 999px;
    background: rgba(138, 98, 255, 0.11);
    color: var(--anq-purple-light);
    font-size: 9px;
    font-weight: 820;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.anq__identity {
    display: flex;
    min-width: 0;
    padding-right: 4px;
    align-items: center;
    gap: 13px;
}

.anq__result-card--first .anq__identity {
    padding-right: 72px;
}

.anq__portrait {
    display: inline-flex;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(181, 156, 255, 0.25);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(138, 98, 255, 0.26), rgba(138, 98, 255, 0.07));
    color: var(--anq-purple-light);
    font-size: 15px;
    font-weight: 850;
}

.anq__portrait img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.anq__identity-copy {
    min-width: 0;
}

.anq__result-kicker {
    margin: 0 0 3px;
    color: var(--anq-muted);
    font-size: 10px;
    font-weight: 690;
    line-height: 1.3;
}

.anq__result-name {
    margin: 0;
    color: var(--anq-text);
    font-size: 20px;
    font-weight: 750;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.anq__reason-list {
    display: grid;
    min-height: 112px;
    margin: 22px 0 0;
    padding: 18px 0;
    align-content: start;
    gap: 9px;
    border-top: 1px solid rgba(255, 255, 255, 0.075);
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
    color: var(--anq-muted-strong);
    font-size: 12px;
    line-height: 1.42;
    list-style: none;
}

.anq__availability {
    display: grid;
    margin-top: 17px;
    gap: 11px;
}

.anq__availability-item {
    display: grid;
    grid-template-columns: 29px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
}

.anq__availability-icon {
    display: inline-flex;
    width: 29px;
    height: 29px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--anq-purple-light);
    font-size: 9px;
    font-weight: 850;
}

.anq__availability-item > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.anq__availability-item small {
    color: #8f8898;
    font-size: 9px;
    font-weight: 620;
    letter-spacing: 0.04em;
    line-height: 1.3;
    text-transform: uppercase;
}

.anq__availability-item strong {
    overflow: hidden;
    margin-top: 1px;
    color: var(--anq-text);
    font-size: 12px;
    font-weight: 680;
    line-height: 1.35;
    text-overflow: ellipsis;
}

.anq__capacity-note {
    margin: 15px 0 0;
    color: var(--anq-success);
    font-size: 10px;
    font-weight: 650;
}

.anq__capacity-note::before {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 6px;
    border-radius: 50%;
    background: currentColor;
    content: "";
    vertical-align: 1px;
}

.anq__button--card {
    width: 100%;
    min-height: 48px;
    margin-top: auto;
    padding: 12px 13px;
}

.anq__booking-feedback {
    margin: 11px 0 0;
    color: var(--anq-muted);
    font-size: 11px;
    font-weight: 610;
    line-height: 1.4;
}

.anq__booking-feedback.is-success {
    color: var(--anq-success);
}

.anq__booking-feedback.is-error {
    color: var(--anq-error);
}

.anq__result-footer {
    display: flex;
    margin-top: 30px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.anq__text-button,
.anq__text-link {
    padding: 3px 0;
    border: 0;
    border-bottom: 1px solid rgba(181, 156, 255, 0.38);
    background: transparent;
    color: var(--anq-purple-light) !important;
    font-size: 13px;
    font-weight: 650;
    text-decoration: none !important;
    cursor: pointer;
}

.anq__updated {
    color: #817a8a;
    font-size: 11px;
}

/* Error and no-result states */
.anq__error {
    width: min(100% - 44px, 730px);
    padding-top: clamp(64px, 9vw, 104px);
}

.anq__quick-actions {
    margin-top: 28px;
    padding: 18px;
    border: 1px solid rgba(181, 156, 255, 0.2);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(138, 98, 255, 0.09), rgba(255, 255, 255, 0.025));
}

.anq__quick-title {
    margin: 0 0 12px;
    color: var(--anq-muted-strong);
    font-size: 13px;
    font-weight: 690;
    line-height: 1.45;
}

.anq__quick-list {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
}

.anq__quick-action {
    min-height: 44px;
    padding: 10px 16px;
    flex: 1 1 230px;
    font-size: 13px;
}

.anq__compatible-box {
    margin-top: 31px;
    padding: 20px;
    border: 1px solid var(--anq-border);
    border-radius: 16px;
    background: var(--anq-surface);
}

.anq__compatible-title {
    margin: 0 0 12px;
    color: var(--anq-muted);
    font-size: 11px;
    font-weight: 740;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.anq__compatible-list {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 8px;
    list-style: none;
}

.anq__compatible-list li {
    display: flex;
    padding-top: 8px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.anq__compatible-list li:first-child {
    padding-top: 0;
    border-top: 0;
}

.anq__compatible-list strong {
    color: var(--anq-text);
    font-size: 14px;
}

.anq__compatible-list span {
    color: #918a9b;
    font-size: 11px;
}

@keyframes anq-enter {
    from {
        opacity: 0;
        transform: translateY(9px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes anq-pulse {
    0%, 100% { opacity: 0.35; transform: scale(0.96); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes anq-dot {
    0%, 65%, 100% { opacity: 0.35; transform: translateY(0); }
    32% { opacity: 1; transform: translateY(-4px); }
}

@media (max-width: 900px) {
    .anq__shell {
        min-height: 640px;
    }

    .anq__result-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .anq__result-card {
        display: grid;
        padding: 20px;
        grid-template-columns: minmax(225px, 0.9fr) minmax(280px, 1.1fr);
        column-gap: 24px;
    }

    .anq__identity,
    .anq__reason-list {
        grid-column: 1;
    }

    .anq__reason-list {
        min-height: 0;
        margin-bottom: 0;
        border-bottom: 0;
    }

    .anq__availability,
    .anq__capacity-note,
    .anq__button--card,
    .anq__booking-feedback {
        grid-column: 2;
    }

    .anq__availability {
        grid-row: 1 / span 2;
        margin: 2px 0 64px;
        align-content: start;
    }

    .anq__capacity-note {
        grid-row: 2;
        align-self: end;
        margin: 0 0 60px;
    }

    .anq__button--card {
        grid-row: 2;
        align-self: end;
        margin-top: 0;
    }

    .anq__booking-feedback {
        grid-row: 3;
    }
}

@media (max-width: 680px) {
    .anq__shell {
        min-height: 610px;
        border-right: 0;
        border-left: 0;
        border-radius: 20px;
        box-shadow: 0 18px 52px rgba(0, 0, 0, 0.3);
    }

    .anq__topbar {
        min-height: 65px;
        padding: 0 19px;
    }

    .anq__brand-name {
        display: none;
    }

    .anq__brand-mark {
        width: 29px;
        height: 29px;
        border-radius: 9px;
    }

    .anq__welcome,
    .anq__question,
    .anq__results,
    .anq__loading,
    .anq__error {
        width: min(100% - 32px, 850px);
        padding-top: 48px;
        padding-bottom: 42px;
    }

    .anq__welcome {
        padding-top: 62px;
    }

    .anq__title {
        font-size: clamp(29px, 9vw, 39px);
        line-height: 1.08;
    }

    .anq__title--hero {
        font-size: clamp(38px, 12vw, 50px);
        line-height: 1;
    }

    .anq__intro-points {
        display: grid;
        width: max-content;
        max-width: 100%;
        margin: 29px auto 33px;
        gap: 10px;
        text-align: left;
    }

    .anq__choices,
    .anq__choices--compact {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .anq__choice-card {
        min-height: 70px;
        padding: 12px 46px 12px 12px;
        grid-template-columns: 38px minmax(0, 1fr);
        border-radius: 14px;
    }

    .anq__choice-symbol {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .anq__choice-label {
        font-size: 14px;
    }

    .anq__actions {
        position: sticky;
        z-index: 3;
        bottom: 0;
        margin-right: -16px;
        margin-left: -16px;
        padding: 14px 16px 4px;
        background: linear-gradient(180deg, transparent, rgba(10, 9, 16, 0.96) 26%);
    }

    .anq__actions .anq__button {
        min-width: 112px;
        padding-inline: 17px;
    }

    .anq__result-card {
        display: flex;
        padding: 19px;
    }

    .anq__result-card--first .anq__identity {
        padding-right: 58px;
    }

    .anq__recommended-label {
        top: 11px;
        right: 11px;
        max-width: 58px;
        text-align: center;
    }

    .anq__reason-list {
        min-height: 0;
        margin-top: 18px;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.075);
    }

    .anq__availability {
        margin: 15px 0 0;
    }

    .anq__capacity-note {
        margin: 14px 0 0;
    }

    .anq__button--card {
        width: 100%;
        margin-top: 22px;
    }

    .anq__result-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .anq__compatible-list li {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .anq__actions--center {
        position: static;
        margin-inline: 0;
        padding-inline: 0;
        background: none;
    }

    .anq__actions--center .anq__button {
        width: 100%;
    }

    .anq__quick-actions {
        padding: 15px;
    }

    .anq__quick-action {
        width: 100%;
        flex-basis: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .anq *,
    .anq *::before,
    .anq *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (forced-colors: active) {
    .anq__choice-card,
    .anq__button,
    .anq__result-card,
    .anq__compatible-box,
    .anq__quick-actions {
        border: 1px solid CanvasText;
    }

    .anq__choice > input:checked + .anq__choice-card {
        outline: 3px solid Highlight;
    }
}
