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

:root {
    --brand: #a12f35;
    --brand-dark: #7b2027;
    --brand-deep: #4f1418;
    --rose-25: #fffafa;
    --rose-50: #fbf0f1;
    --rose-100: #f4dfe2;
    --paper: #ffffff;
    --ink: #261d1f;
    --muted: #76696c;
    --line: #ead9dc;
    --success: #2f855a;
    --error: #d62f48;
    --shadow: 0 24px 70px rgba(123, 32, 39, 0.14);
}

html {
    scroll-behavior: smooth;
}

@keyframes pageGlow {
    0%, 100% {
        background-position: 0 0, 0 0;
    }

    50% {
        background-position: 18px 14px, 0 0;
    }
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes softFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes cardShine {
    0% {
        transform: translateX(130%) rotate(10deg);
    }

    100% {
        transform: translateX(-140%) rotate(10deg);
    }
}

@keyframes pulseDot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(161, 47, 53, 0.28);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(161, 47, 53, 0);
    }
}

html,
body {
    min-height: 100%;
}

body {
    color: var(--ink);
    direction: rtl;
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    margin: 0;
    background:
        radial-gradient(circle, rgba(161, 47, 53, 0.085) 1.05px, transparent 1.7px) 0 0 / 18px 18px,
        linear-gradient(135deg, #ffffff 0%, var(--rose-50) 46%, #f7e7e9 100%);
    animation: pageGlow 18s ease-in-out infinite;
}

a {
    color: inherit;
    text-decoration: none;
}

.auth-page {
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.auth-page::before {
    background:
        linear-gradient(90deg, rgba(161, 47, 53, 0.12), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent);
    content: "";
    height: 420px;
    inset: 0 0 auto;
    pointer-events: none;
    position: absolute;
}

.site-shell {
    margin: 0 auto;
    max-width: 1180px;
    padding-left: 22px;
    padding-right: 22px;
}

.top-nav {
    align-items: center;
    display: flex;
    gap: 22px;
    justify-content: space-between;
    min-height: 106px;
    padding-top: 10px;
}

.brand {
    align-items: center;
    display: inline-flex;
    min-width: 270px;
}

.brand img {
    animation: softFloat 7s ease-in-out infinite;
    display: block;
    height: 88px;
    object-fit: contain;
    width: 270px;
}

.nav-links {
    align-items: center;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(234, 217, 220, 0.9);
    border-radius: 999px;
    box-shadow: 0 16px 38px rgba(123, 32, 39, 0.09);
    display: flex;
    gap: 6px;
    padding: 8px;
}

.nav-links a {
    border-radius: 999px;
    color: var(--brand-deep);
    font-size: 0.92rem;
    font-weight: 900;
    padding: 10px 15px;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus {
    background: var(--brand);
    color: #fff;
    transform: translateY(-1px);
}

.nav-action {
    background: var(--brand);
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(161, 47, 53, 0.18);
    color: #fff;
    font-weight: 900;
    padding: 12px 22px;
    white-space: nowrap;
}

.nav-action--light {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--brand-dark);
}

.hero {
    isolation: isolate;
    overflow: hidden;
    padding: 8px 0 44px;
    position: relative;
}

.hero::before {
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.0) 0 42%, rgba(161, 47, 53, 0.065) 42.2% 58%, transparent 58.2%),
        repeating-linear-gradient(135deg, rgba(161, 47, 53, 0.07) 0 1px, transparent 1px 22px);
    content: "";
    inset: 0 0 20%;
    opacity: 0.9;
    pointer-events: none;
    position: absolute;
    z-index: -1;
}

.hero::after {
    border: 1px solid rgba(161, 47, 53, 0.16);
    content: "";
    height: 460px;
    left: -180px;
    pointer-events: none;
    position: absolute;
    top: 28px;
    transform: rotate(-12deg);
    width: 460px;
    z-index: -1;
}

.hero-grid {
    align-items: center;
    display: grid;
    gap: 44px;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 440px);
    min-height: calc(100vh - 130px);
    position: relative;
}

.hero-copy {
    animation: riseIn 0.75s ease both;
    min-width: 0;
    padding: 22px 0;
    position: relative;
}

.hero-copy::before {
    background: linear-gradient(180deg, var(--brand), rgba(161, 47, 53, 0.08));
    border-radius: 999px;
    content: "";
    height: 82%;
    position: absolute;
    right: -22px;
    top: 9%;
    width: 4px;
}

.eyebrow {
    align-items: center;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(234, 217, 220, 0.9);
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(123, 32, 39, 0.07);
    color: var(--brand-dark);
    display: inline-flex;
    font-size: 0.95rem;
    font-weight: 900;
    gap: 8px;
    margin-bottom: 16px;
    padding: 10px 14px;
}

.eyebrow::before {
    animation: pulseDot 2.2s ease-in-out infinite;
    background: var(--brand);
    border-radius: 999px;
    content: "";
    height: 10px;
    width: 10px;
}

.hero-copy h1 {
    color: var(--brand-deep);
    font-size: clamp(3.1rem, 7vw, 7rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.98;
    margin: 0 0 20px;
    max-width: 760px;
    text-shadow: 0 16px 42px rgba(79, 20, 24, 0.08);
}

.hero-copy p {
    color: #5f5154;
    font-size: 1.18rem;
    line-height: 2;
    margin: 0;
    max-width: 650px;
}

.impact-strip {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 26px;
    max-width: 720px;
}

.impact-item {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(234, 217, 220, 0.92);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(123, 32, 39, 0.07);
    min-height: 86px;
    padding: 13px 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.impact-item:hover {
    border-color: rgba(161, 47, 53, 0.32);
    box-shadow: 0 18px 38px rgba(123, 32, 39, 0.12);
    transform: translateY(-4px);
}

.impact-item strong {
    color: var(--brand-deep);
    display: block;
    font-size: 1.02rem;
    margin-bottom: 6px;
}

.impact-item span {
    color: var(--muted);
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.primary-link,
.secondary-link {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-weight: 900;
    min-height: 52px;
    padding: 13px 26px;
    transition: box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.primary-link {
    background: var(--brand);
    box-shadow: 0 16px 36px rgba(161, 47, 53, 0.18);
    color: #fff;
}

.secondary-link {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--line);
    color: var(--brand-dark);
}

.primary-link:hover,
.primary-link:focus,
.secondary-link:hover,
.secondary-link:focus {
    transform: translateY(-3px);
}

.primary-link:hover,
.primary-link:focus {
    box-shadow: 0 20px 42px rgba(161, 47, 53, 0.26);
}

.secondary-link:hover,
.secondary-link:focus {
    background: #fff;
    box-shadow: 0 16px 34px rgba(123, 32, 39, 0.10);
}

.login-card {
    animation: riseIn 0.85s 0.12s ease both;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(234, 217, 220, 0.92);
    border-radius: 8px;
    box-shadow: 0 30px 90px rgba(123, 32, 39, 0.18);
    overflow: hidden;
    position: relative;
}

.login-card::before {
    background: linear-gradient(90deg, var(--brand), #e4a0a4, var(--brand));
    content: "";
    display: block;
    height: 6px;
}

.login-card::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), transparent);
    content: "";
    height: 120%;
    inset: -10% auto auto 0;
    opacity: 0.55;
    position: absolute;
    transform: translateX(130%) rotate(10deg);
    width: 72px;
    z-index: 0;
}

.login-card:hover::after {
    animation: cardShine 1.1s ease;
}

.login-card > * {
    position: relative;
    z-index: 1;
}

.login-card__header {
    padding: 32px 32px 12px;
}

.login-card__header span {
    color: var(--brand);
    display: block;
    font-weight: 900;
    margin-bottom: 6px;
}

.login-card__header h2 {
    color: var(--ink);
    font-size: 2.18rem;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 8px;
}

.login-card__header p {
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

.alert {
    align-items: flex-start;
    border-radius: 8px;
    display: flex;
    font-size: 0.9rem;
    gap: 10px;
    line-height: 1.55;
    margin: 18px 30px 0;
    padding: 12px 14px;
}

.alert svg {
    flex: 0 0 auto;
    margin-top: 2px;
}

.alert--error {
    background: #fff2f4;
    border: 1px solid #f3bdc8;
    color: var(--error);
}

.alert--success {
    background: #eefaf3;
    border: 1px solid #bce4cc;
    color: var(--success);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px 32px 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.form-label {
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 900;
}

.input-wrapper {
    align-items: center;
    display: flex;
    position: relative;
}

.input-icon {
    color: #a995a2;
    pointer-events: none;
    position: absolute;
    right: 15px;
    transition: color 0.2s ease;
    z-index: 1;
}

.form-input {
    background: rgba(255, 255, 255, 0.92);
    border: 1.5px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    direction: rtl;
    font: inherit;
    min-height: 56px;
    outline: none;
    padding: 13px 46px 13px 46px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.form-input::placeholder {
    color: #b8aab4;
}

.form-input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(161, 47, 53, 0.12);
}

.input-wrapper:focus-within .input-icon {
    color: var(--brand);
}

.toggle-password {
    align-items: center;
    background: transparent;
    border: 0;
    color: #a995a2;
    cursor: pointer;
    display: flex;
    left: 14px;
    padding: 0;
    position: absolute;
}

.field-error {
    color: var(--error);
    font-size: 0.78rem;
    min-height: 1rem;
}

.btn-primary {
    background: var(--brand);
    border: 0;
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(161, 47, 53, 0.20);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 1.02rem;
    font-weight: 900;
    min-height: 58px;
    padding: 14px 20px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    width: 100%;
}

.btn-primary:hover,
.btn-primary:focus {
    box-shadow: 0 20px 42px rgba(161, 47, 53, 0.30);
    transform: translateY(-2px);
}

.auth-footer {
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.92rem;
    padding: 18px 30px 26px;
    text-align: center;
}

.auth-footer p {
    margin: 0;
}

.auth-footer a {
    color: var(--brand);
    font-weight: 900;
}

.photo-strip {
    animation: riseIn 0.8s 0.2s ease both;
    display: grid;
    gap: 18px;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    padding-bottom: 34px;
}

.photo-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(123, 32, 39, 0.09);
    min-height: 290px;
    overflow: hidden;
    position: relative;
    transform: translateZ(0);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.photo-card img {
    display: block;
    height: 100%;
    min-height: 290px;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
    width: 100%;
}

.photo-card:hover {
    box-shadow: 0 24px 58px rgba(123, 32, 39, 0.16);
    transform: translateY(-6px);
}

.photo-card:hover img {
    filter: saturate(1.08);
    transform: scale(1.055);
}

.photo-card::after {
    background: linear-gradient(180deg, transparent 20%, rgba(79, 20, 24, 0.78));
    content: "";
    inset: 0;
    position: absolute;
}

.photo-card div {
    bottom: 0;
    color: #fff;
    padding: 22px;
    position: absolute;
    right: 0;
    z-index: 1;
}

.photo-card span {
    color: #ffdfe2;
    display: block;
    font-weight: 900;
    margin-bottom: 6px;
}

.photo-card strong {
    display: block;
    font-size: 1.18rem;
    line-height: 1.55;
    max-width: 360px;
}

.photo-card--large {
    min-height: 360px;
}

.photo-card--large img {
    min-height: 360px;
}

.identity-section {
    animation: riseIn 0.8s 0.28s ease both;
    display: grid;
    gap: 18px;
    grid-template-columns: 1.15fr 0.92fr 0.92fr;
    padding-bottom: 34px;
}

.identity-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 250, 0.92)),
        #fff;
    border: 1px solid rgba(234, 217, 220, 0.95);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(123, 32, 39, 0.08);
    min-height: 245px;
    overflow: hidden;
    padding: 28px;
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.identity-card:hover {
    box-shadow: 0 26px 66px rgba(123, 32, 39, 0.16);
    transform: translateY(-7px) scale(1.01);
}

.identity-card::before {
    background: var(--brand);
    border-radius: 999px;
    content: "";
    height: 76px;
    left: -28px;
    opacity: 0.08;
    position: absolute;
    top: -28px;
    width: 76px;
}

.identity-card::after {
    background: linear-gradient(180deg, var(--brand), #d98287);
    content: "";
    inset: 0 auto 0 0;
    position: absolute;
    width: 5px;
}

.identity-card span {
    color: var(--brand);
    display: block;
    font-size: 0.95rem;
    font-weight: 900;
    margin-bottom: 14px;
}

.identity-card h2 {
    color: var(--brand-deep);
    font-size: 1.28rem;
    font-weight: 900;
    line-height: 1.75;
    margin: 0 0 12px;
}

.identity-card p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.95;
    margin: 0;
}

.identity-card--about {
    background:
        linear-gradient(135deg, rgba(123, 32, 39, 0.96), rgba(177, 56, 62, 0.92)),
        var(--brand);
    color: #fff;
}

.identity-card--about::before {
    background: #fff;
    opacity: 0.12;
}

.identity-card--about::after {
    background: rgba(255, 255, 255, 0.74);
}

.identity-card--about span,
.identity-card--about h2,
.identity-card--about p {
    color: #fff;
}

.identity-card--about p {
    color: rgba(255, 255, 255, 0.88);
}

.team-divider {
    align-items: center;
    animation: riseIn 0.7s ease both;
    display: grid;
    gap: 10px;
    justify-items: center;
    margin-bottom: 18px;
    margin-top: 22px;
    position: relative;
    text-align: center;
}

.team-divider::before,
.team-divider::after {
    background: linear-gradient(90deg, transparent, rgba(161, 47, 53, 0.36), transparent);
    content: "";
    height: 1px;
    width: min(100%, 780px);
}

.team-divider span {
    background: var(--brand);
    border-radius: 999px;
    box-shadow: 0 18px 42px rgba(123, 32, 39, 0.18);
    color: #fff;
    display: inline-flex;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 900;
    padding: 12px 28px;
}

.team-divider p {
    color: var(--muted);
    font-weight: 800;
    line-height: 1.8;
    margin: 0;
}

.yarub-footer {
    animation: riseIn 0.8s 0.34s ease both;
    background:
        linear-gradient(175deg, transparent 0 64%, rgba(161, 47, 53, 0.08) 64.2% 100%),
        rgba(255, 255, 255, 0.88);
    border-top: 1px solid var(--line);
    color: var(--ink);
    margin-top: 18px;
    padding: 36px 0;
}

.footer-grid {
    align-items: start;
    display: grid;
    gap: 24px;
    grid-template-columns: 1.2fr 1fr 1fr 1.15fr;
}

.footer-brand img {
    display: block;
    height: 68px;
    margin-bottom: 14px;
    object-fit: contain;
    width: 220px;
}

.footer-brand p,
.footer-block p {
    color: var(--muted);
    line-height: 1.8;
    margin: 0;
}

.footer-block h2 {
    color: var(--brand-deep);
    font-size: 1rem;
    margin: 0 0 12px;
}

.footer-block a {
    color: var(--brand-dark);
    display: block;
    font-weight: 700;
    line-height: 1.9;
}

.footer-block a:hover,
.footer-block a:focus {
    color: var(--brand);
    text-decoration: underline;
}

.register-page {
    padding-bottom: 46px;
}

.register-shell {
    align-items: start;
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    padding-bottom: 42px;
    padding-top: 26px;
}

.register-intro {
    padding-top: 42px;
}

.register-intro h1 {
    color: var(--brand-deep);
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.08;
    margin: 0 0 18px;
}

.register-intro p {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.95;
    margin: 0;
    max-width: 480px;
}

.register-card {
    max-width: 760px;
}

.campaign-profile {
    animation: riseIn 0.65s ease both;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 248, 0.94)),
        var(--paper);
    border: 1px solid rgba(234, 217, 220, 0.95);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    margin-bottom: 18px;
    margin-top: 18px;
    overflow: hidden;
    padding-bottom: clamp(24px, 4vw, 38px);
    padding-top: clamp(24px, 4vw, 38px);
    position: relative;
}

.campaign-profile::before {
    background: linear-gradient(180deg, var(--brand), var(--brand-dark));
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 6px;
}

.campaign-profile__intro,
.campaign-profile__side,
.campaign-values article {
    position: relative;
}

.campaign-profile__intro h2 {
    color: var(--brand-deep);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    line-height: 1.35;
    margin: 0 0 16px;
}

.campaign-profile__intro p,
.campaign-profile__side p,
.campaign-values p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 2;
    margin: 0;
}

.campaign-profile__intro p + p {
    margin-top: 12px;
}

.campaign-signal-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
}

.campaign-signal-strip span {
    background: var(--rose-50);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--brand-dark);
    font-weight: 900;
    padding: 8px 12px;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.campaign-signal-strip span:hover {
    background: var(--brand);
    color: #fff;
    transform: translateY(-3px);
}

.campaign-guide-link {
    align-items: center;
    background: var(--brand);
    border-radius: 8px;
    box-shadow: 0 18px 38px rgba(123, 32, 39, 0.16);
    color: #fff;
    display: inline-flex;
    font-weight: 900;
    margin-top: 20px;
    min-height: 46px;
    padding: 11px 18px;
    transition: transform 0.22s ease, background 0.22s ease;
}

.campaign-guide-link:hover,
.campaign-guide-link:focus {
    background: var(--brand-dark);
    color: #fff;
    transform: translateY(-2px);
}

.campaign-profile__side {
    display: grid;
    gap: 14px;
}

.campaign-profile__side article,
.campaign-values article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(123, 32, 39, 0.08);
    padding: 22px;
}

.campaign-profile__side article {
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.campaign-profile__side article:hover {
    border-color: rgba(161, 47, 53, 0.34);
    box-shadow: 0 24px 56px rgba(123, 32, 39, 0.14);
    transform: translateY(-5px);
}

.campaign-profile__side article strong,
.campaign-values article span {
    color: rgba(161, 47, 53, 0.2);
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}

.campaign-profile__side article span,
.campaign-values strong {
    color: var(--brand);
    display: block;
    font-size: 1.05rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.campaign-values {
    animation: riseIn 0.65s ease both;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-bottom: 30px;
    margin-top: 0;
}

.campaign-values article {
    min-height: 170px;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.campaign-values article:hover {
    border-color: rgba(161, 47, 53, 0.34);
    box-shadow: 0 24px 56px rgba(123, 32, 39, 0.14);
    transform: translateY(-5px);
}

@media (max-width: 980px) {
    .top-nav {
        align-items: stretch;
        flex-wrap: wrap;
    }

    .nav-links {
        justify-content: center;
        order: 3;
        width: 100%;
    }

    .hero-grid,
    .photo-strip,
    .campaign-profile,
    .campaign-values,
    .identity-section,
    .footer-grid,
    .register-shell {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: 0;
    }

    .impact-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .register-intro {
        padding-top: 0;
    }
}

@media (max-width: 620px) {
    .site-shell {
        padding-left: 16px;
        padding-right: 16px;
    }

    .top-nav {
        justify-content: center;
    }

    .brand {
        justify-content: center;
        min-width: 100%;
    }

    .brand img {
        height: 74px;
        width: 230px;
    }

    .nav-links {
        border-radius: 8px;
        flex-wrap: wrap;
        gap: 4px;
    }

    .nav-links a {
        flex: 1 1 42%;
        padding: 10px 8px;
        text-align: center;
    }

    .nav-action {
        text-align: center;
        width: 100%;
    }

    .hero {
        padding-top: 24px;
    }

    .hero-copy h1 {
        font-size: 3.1rem;
        line-height: 1.05;
    }

    .hero-copy::before {
        display: none;
    }

    .impact-strip {
        grid-template-columns: 1fr;
    }

    .login-card__header,
    .auth-form,
    .auth-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-brand img {
        height: 58px;
        width: 190px;
    }

    .campaign-values article {
        min-height: auto;
    }
}

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

.forgot-password-link {
  color: #b04a55;
  display: inline-flex;
  font-weight: 800;
  justify-content: flex-start;
  margin-top: -4px;
  text-decoration: none;
}

.forgot-password-link:hover {
  text-decoration: underline;
}