/* VSRP F4-меню → веб
   purple #D963FF · white10 · Gilroy · radius 6 */

:root {
    --purple: #c97ae8;
    --purple-a70: rgba(201, 122, 232, 0.55);
    --purple-a35: rgba(201, 122, 232, 0.28);
    --purple-a20: rgba(201, 122, 232, 0.14);
    --purple-a12: rgba(201, 122, 232, 0.08);
    --bg: #16151a;
    --bg-panel: #222128;
    --bg-panel-88: rgba(34, 33, 40, 0.92);
    --white10: rgba(255, 255, 255, 0.06);
    --white20: rgba(255, 255, 255, 0.12);
    --white30: rgba(255, 255, 255, 0.48);
    --white50: rgba(255, 255, 255, 0.62);
    --white: #f5f3f7;
    --green: #6bcf7a;
    --green-muted: rgba(107, 207, 122, 0.7);
    --yellow: #e8d87a;
    --success: #6bcf7a;
    --error: #e08a8a;
    --radius: 8px;
    --radius-lg: 14px;
    --header-h: 64px;
    --font: "Segoe UI", "Helvetica Neue", Arial, system-ui, sans-serif;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);

    --primary: var(--purple);
    --primary-dark: #a85fc7;
    --primary-light: #d9a0f0;
    --primary-glow: var(--purple-a35);
    --text: var(--white);
    --text-muted: var(--white30);
    --card: var(--bg-panel);
    --border: var(--white10);
    --border-strong: var(--purple-a35);
    --input-bg: rgba(255, 255, 255, 0.04);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font);
    font-weight: 500;
    color: var(--white);
    background: var(--bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page {
    position: relative;
    min-height: 100vh;
}

.page-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 55% at 50% -5%, rgba(201, 122, 232, 0.1), transparent 58%),
        radial-gradient(ellipse 45% 35% at 85% 75%, rgba(201, 122, 232, 0.04), transparent 55%),
        linear-gradient(180deg, #18171c 0%, #121116 100%);
}

/* ── Header / F4-style nav pills ── */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    border-bottom: 1px solid var(--white10);
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(14px) saturate(1.1);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 980px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.2s;
}

.site-logo:hover {
    opacity: 0.9;
}

.site-logo__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    background: var(--purple-a20);
    border: 1px solid var(--purple-a35);
    border-radius: var(--radius);
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white30);
    text-decoration: none;
    background: var(--white10);
    border-radius: var(--radius);
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--white);
    background: var(--purple-a70);
}

/* ── Layout shell ── */

.wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--header-h) - 140px);
    padding: 32px 20px;
}

.wrapper--wide,
.wrapper--shop {
    align-items: flex-start;
    padding-top: 36px;
}

.f4-shell {
    width: 100%;
    max-width: 920px;
    padding: 22px 20px 24px;
    background: var(--bg-panel-88);
    border: 1px solid var(--white10);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.shop-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 18px;
    width: 100%;
}

.shop-grid .card {
    max-width: none;
}

/* ── Cards (white10 panels) ── */

.card {
    width: 100%;
    max-width: 420px;
    padding: 24px 22px 22px;
    background: var(--white10);
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    box-shadow: none;
    backdrop-filter: none;
}

.card--pay {
    border-top: none;
}

.card--info {
    display: flex;
    flex-direction: column;
    background: var(--white10);
}

.card--status {
    text-align: center;
    max-width: 460px;
}

.card--legal {
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    height: 28px;
    margin-bottom: 14px;
    padding: 0 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--purple-a70);
    border: none;
    border-radius: var(--radius);
}

.title {
    margin: 0 0 8px;
    font-size: 1.625rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--white);
    background: none;
    -webkit-text-fill-color: unset;
}

.subtitle {
    margin: 0 0 22px;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--white30);
}

.info-title {
    margin: 0 0 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.info-desc {
    margin: 0 0 18px;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--white50);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--white10);
    border-radius: var(--radius);
}

.feature-item__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    font-size: 0.8125rem;
    line-height: 28px;
    text-align: center;
    color: var(--white);
    background: var(--purple-a70);
    border-radius: var(--radius);
}

.feature-item__text {
    font-size: 0.8125rem;
    line-height: 1.45;
    color: var(--white30);
}

.feature-item__text strong {
    display: block;
    margin-bottom: 2px;
    color: var(--white);
    font-weight: 600;
}

.info-links {
    margin-top: auto;
    padding-top: 14px;
    font-size: 0.8125rem;
    border-top: 1px solid var(--white10);
}

.info-links a {
    color: var(--purple);
    text-decoration: none;
    transition: color 0.15s;
}

.info-links a:hover {
    color: var(--white);
}

/* ── Alerts ── */

.alert {
    margin-bottom: 16px;
    padding: 12px 14px;
    font-size: 0.875rem;
    line-height: 1.45;
    border-radius: var(--radius);
}

.alert--error {
    color: #efc0c0;
    background: rgba(224, 138, 138, 0.08);
    border: 1px solid rgba(224, 138, 138, 0.2);
}

.alert--success {
    color: #b8f0cc;
    background: rgba(82, 255, 88, 0.1);
    border: 1px solid rgba(82, 255, 88, 0.25);
}

/* ── Form ── */

.form-group {
    margin-bottom: 16px;
}

.label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--white30);
}

.input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--white);
    background: var(--input-bg);
    border: 1px solid var(--white20);
    border-radius: var(--radius);
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.input::placeholder {
    color: rgba(255, 255, 255, 0.32);
}

.input:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.055);
}

.input:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px var(--purple-a12);
    background: rgba(255, 255, 255, 0.06);
}

.amount-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.preset {
    height: 36px;
    padding: 0 14px;
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--white50);
    background: transparent;
    border: 1px solid var(--white20);
    border-radius: 999px;
    cursor: pointer;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.preset:hover {
    color: var(--white);
    border-color: var(--purple-a35);
    background: var(--purple-a12);
}

.preset.is-active {
    color: var(--white);
    background: var(--purple-a20);
    border-color: var(--purple-a70);
}

.hint {
    margin: 12px 0 0;
    font-size: 0.8125rem;
    color: var(--white30);
    text-align: center;
}

/* ── Buttons (F4: white10 → purple) ── */

.btn {
    display: block;
    width: 100%;
    height: 46px;
    margin-top: 4px;
    padding: 0 20px;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    line-height: 46px;
    text-decoration: none;
    background: var(--purple-a70);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    box-shadow: none;
    transition:
        background 0.2s ease,
        filter 0.2s ease,
        transform 0.15s ease;
}

.btn:hover {
    background: rgba(201, 122, 232, 0.75);
    filter: none;
    transform: none;
    box-shadow: none;
}

.btn:active {
    transform: scale(0.98);
}

.btn--ghost {
    display: inline-block;
    width: auto;
    min-width: 160px;
    margin-top: 20px;
    color: var(--white30);
    background: var(--white10);
    border: none;
    box-shadow: none;
}

.btn--ghost:hover {
    color: var(--white);
    background: var(--purple-a70);
    box-shadow: none;
    transform: none;
    filter: none;
}

/* ── Status ── */

.status-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
}

.status-mark--ok {
    color: var(--green);
    background: rgba(82, 255, 88, 0.12);
    border: 2px solid rgba(82, 255, 88, 0.3);
}

.status-mark--fail {
    color: var(--error);
    background: rgba(224, 122, 122, 0.12);
    border: 2px solid rgba(224, 122, 122, 0.3);
}

.status-text {
    margin: 0 0 8px;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--white30);
}

.loader {
    padding: 24px 0;
    text-align: center;
}

.loader-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 3px;
    background: var(--purple);
    border-radius: 50%;
    animation: bounce 1.2s infinite ease-in-out;
}

.loader-dot:nth-child(2) { animation-delay: 0.15s; }
.loader-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

/* ── Footer ── */

.site-footer {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
    padding: 28px 20px 36px;
    text-align: center;
}

.pay-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
}

.pay-badge {
    padding: 6px 12px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--white30);
    background: var(--white10);
    border: none;
    border-radius: var(--radius);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}

.pay-badge--link:hover {
    color: var(--white);
    background: var(--purple-a70);
}

.footer-links {
    margin: 0 0 10px;
    font-size: 0.8125rem;
    line-height: 2;
}

.footer-links a {
    color: var(--white30);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copy {
    margin: 0;
    font-size: 0.75rem;
    color: var(--white30);
}

/* ── Legal ── */

.legal-block {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--white10);
}

.legal-block:first-of-type {
    margin-top: 8px;
    padding-top: 0;
    border-top: none;
}

.legal-block h2 {
    margin: 0 0 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--purple);
}

.legal-block p {
    margin: 0 0 12px;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--white50);
}

.legal-block a {
    color: var(--purple);
}

.footer-note {
    margin-top: 22px;
    padding-top: 16px;
    font-size: 0.75rem;
    color: var(--white30);
    border-top: 1px solid var(--white10);
}

.order-info {
    margin: 20px 0 6px;
    padding: 14px 16px;
    text-align: left;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--white10);
    border-radius: var(--radius);
}

.order-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
    font-size: 0.8125rem;
    color: var(--white30);
}

.order-row strong {
    color: var(--white);
    font-weight: 600;
    text-align: right;
    word-break: break-all;
}

.info-list {
    margin: 12px 0;
    padding-left: 18px;
    font-size: 0.8125rem;
    color: var(--white30);
    line-height: 1.6;
}

/* ── Payment provider (F4 pills / cards) ── */

.pay-provider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.pay-provider__option {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 14px;
    cursor: pointer;
    background: var(--white10);
    border: 1px solid transparent;
    border-radius: var(--radius);
    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.pay-provider__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pay-provider__option:hover {
    background: var(--purple-a20);
}

.pay-provider__option.is-active {
    color: var(--white);
    background: var(--purple-a70);
    border-color: transparent;
    box-shadow: none;
}

.pay-provider__name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
}

.pay-provider__option.is-active .pay-provider__name {
    color: var(--white);
}

.pay-provider__desc {
    font-size: 0.75rem;
    color: var(--white30);
}

.pay-provider__option.is-active .pay-provider__desc {
    color: var(--white50);
}

/* ── Section headings like settings categories ── */

.f4-section-title {
    margin: 0 0 12px;
    padding-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--purple);
    border-bottom: 1px solid var(--white20);
}

/* ══════════════════════════════════════════
   F4 MENU — спокойный UI
   ══════════════════════════════════════════ */

.page--f4 .site-header {
    display: none;
}

.wrapper--f4 {
    align-items: center;
    min-height: 100vh;
    padding: 48px 20px;
}

.f4-menu {
    display: grid;
    grid-template-columns: 188px 1fr;
    width: 100%;
    max-width: 960px;
    min-height: 580px;
    background: var(--bg-panel-88);
    border: 1px solid var(--white10);
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.f4-menu__side {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid var(--white10);
}

.f4-menu__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0 4px 16px;
    border-bottom: 1px solid var(--white10);
}

.f4-menu__brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    background: var(--purple-a20);
    border: 1px solid var(--purple-a35);
    border-radius: var(--radius);
}

.f4-menu__brand-name {
    font-size: 0.9375rem;
    font-weight: 650;
    letter-spacing: 0.01em;
    color: var(--white);
}

.f4-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.f4-menu__nav-item {
    display: flex;
    align-items: center;
    height: 36px;
    padding: 0 12px;
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--white50);
    text-decoration: none;
    background: transparent;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.f4-menu__nav-item:hover {
    color: var(--white);
    background: var(--white10);
}

.f4-menu__nav-item.is-active {
    color: var(--white);
    background: var(--purple-a20);
}

.f4-howto {
    margin: auto 0 0;
    padding: 16px 4px 0;
    list-style: none;
    counter-reset: howto;
    border-top: 1px solid var(--white10);
}

.f4-howto li {
    position: relative;
    margin: 0 0 8px;
    padding-left: 20px;
    font-size: 0.6875rem;
    line-height: 1.45;
    color: var(--white30);
    counter-increment: howto;
}

.f4-howto li::before {
    content: counter(howto);
    position: absolute;
    left: 0;
    top: 1px;
    width: 14px;
    height: 14px;
    font-size: 0.5625rem;
    font-weight: 600;
    line-height: 14px;
    text-align: center;
    color: var(--white50);
    background: var(--white10);
    border-radius: 4px;
}

.f4-menu__main {
    display: flex;
    flex-direction: column;
    padding: 28px 28px 24px;
    min-width: 0;
}

.f4-menu__top {
    margin-bottom: 22px;
}

.f4-menu__title {
    margin: 0 0 6px;
    font-size: 1.375rem;
    font-weight: 650;
    letter-spacing: -0.02em;
    color: var(--white);
}

.f4-menu__subtitle {
    margin: 0;
    font-size: 0.875rem;
    color: var(--white30);
}

.f4-donate {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    max-width: 520px;
    gap: 0;
}

.ux-step {
    margin-bottom: 8px;
    padding: 0 0 18px;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--white10);
    border-radius: 0;
}

.ux-step:last-of-type {
    border-bottom: none;
}

.ux-step__head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.ux-step__num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-top: 1px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white50);
    background: transparent;
    border: 1px solid var(--white20);
    border-radius: 50%;
}

.ux-step .label {
    margin-bottom: 2px;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
}

.ux-step__hint {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--white30);
}

.ux-amount-row {
    position: relative;
    margin-top: 10px;
}

.ux-amount-row .input {
    padding-right: 40px;
}

.ux-amount-currency {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.875rem;
    color: var(--white30);
    pointer-events: none;
}

.amount-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.field-msg {
    margin: 8px 0 0;
    font-size: 0.75rem;
    line-height: 1.35;
}

.field-msg--muted {
    color: var(--white30);
}

.field-msg--error {
    color: #e8a0a0;
}

.input.is-invalid {
    border-color: rgba(224, 138, 138, 0.45);
    box-shadow: 0 0 0 3px rgba(224, 138, 138, 0.1);
}

.ux-summary {
    margin-top: auto;
    padding: 18px 0 0;
    background: transparent;
    border-top: 1px solid var(--white10);
    border-radius: 0;
}

.ux-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
    font-size: 0.875rem;
    color: var(--white30);
}

.ux-summary__row strong {
    font-size: 1.375rem;
    font-weight: 650;
    letter-spacing: -0.02em;
    color: var(--white);
}

.ux-summary__row--muted {
    margin-bottom: 16px;
    font-size: 0.8125rem;
}

.f4-donate__submit {
    width: 100%;
    max-width: none;
    margin-top: 0;
    height: 48px;
    line-height: 48px;
    font-size: 0.9375rem;
    border-radius: var(--radius);
}

.ux-summary .hint {
    margin-top: 12px;
    text-align: left;
    color: var(--white30);
}

.pay-provider--f4 {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.pay-provider--f4 .pay-provider__option {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 12px 14px;
    background: var(--input-bg);
    border: 1px solid var(--white20);
    border-radius: var(--radius-lg);
    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.pay-provider--f4 .pay-provider__option:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--purple-a35);
    transform: none;
}

.pay-provider--f4 .pay-provider__option.is-active {
    background: var(--purple-a12);
    border-color: var(--purple-a70);
    box-shadow: none;
}

.pay-provider__badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white50);
    background: var(--white10);
    border-radius: var(--radius);
}

.pay-provider--f4 .pay-provider__option.is-active .pay-provider__badge {
    color: var(--white);
    background: var(--purple-a35);
}

.pay-provider__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.pay-provider--f4 .pay-provider__name {
    font-size: 0.9375rem;
    font-weight: 650;
}

.pay-provider--f4 .pay-provider__desc {
    font-size: 0.75rem;
    color: var(--white30);
}

.pay-provider--f4 .pay-provider__option.is-active .pay-provider__desc {
    color: var(--white50);
}

.pay-provider__check {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid var(--white20);
    background: transparent;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.pay-provider--f4 .pay-provider__option.is-active .pay-provider__check {
    border-color: var(--purple);
    background: var(--purple);
    box-shadow: inset 0 0 0 3px var(--bg-panel);
}

.page--f4 .site-footer {
    max-width: 960px;
}

.page--f4 .site-footer .footer-copy,
.page--f4 .site-footer .footer-links a {
    color: rgba(255, 255, 255, 0.35);
}
