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

:root {
    --ink: #11211b;
    --muted: #5f716b;
    --line: #dbe8e0;
    --paper: #ffffff;
    --soft: #f5fbf7;
    --green: #27ae60;
    --green-dark: #1e8c4a;
    --green-deep: #143f2a;
    --aqua: #e8f8f0;
    --coral: #df6f57;
    --blue: #285e72;
    --radius: 8px;
    --shadow: 0 18px 55px rgba(17, 33, 27, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink);
    background: var(--paper);
    font-size: 18px;
    line-height: 1.65;
    letter-spacing: 0;
}

img, video {
    display: block;
    max-width: 100%;
}

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

button, input, select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.btn-solid:hover,
.donate-btn:hover {
    background: var(--green-dark);
}

.hero {
    min-height: 94vh;
    position: relative;
    display: flex;
    align-items: end;
    padding: 86px 0 54px;
    overflow: hidden;
    background: var(--green-deep);
}

.hero-bg,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 34%;
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(9, 30, 20, 0.94) 0%, rgba(9, 30, 20, 0.76) 45%, rgba(9, 30, 20, 0.22) 100%),
        linear-gradient(0deg, rgba(9, 30, 20, 0.78) 0%, rgba(9, 30, 20, 0.1) 58%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 760px;
}

.hero-tag,
.section-kicker {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 14px;
}

.hero-tag {
    color: #92e8b9;
}

.hero h1 {
    font-family: "DM Serif Display", serif;
    font-size: clamp(4rem, 9vw, 7.4rem);
    line-height: 0.92;
    font-weight: 400;
    margin-bottom: 22px;
}

.hero-desc {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px;
}

.btn-solid,
.btn-ghost {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    padding: 14px 24px;
    font-weight: 800;
}

.btn-solid {
    background: var(--green);
    color: #fff;
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}

.hero-meter {
    max-width: 520px;
    padding-top: 2px;
}

.hero-meter strong {
    display: block;
    font-size: 2.1rem;
    line-height: 1;
}

.hero-meter span,
.hero-meter p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.meter-bar {
    height: 7px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    overflow: hidden;
    margin: 16px 0 10px;
}

.meter-bar span {
    display: block;
    width: 51%;
    height: 100%;
    background: var(--green);
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 720px;
    margin: 0 0 28px;
}

.hero-proof span {
    min-height: 76px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.76);
    padding: 13px 14px;
    font-size: 0.84rem;
    line-height: 1.35;
    backdrop-filter: blur(10px);
}

.hero-proof strong {
    display: block;
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.2;
}

.trust-strip {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
}

.trust-grid div {
    background: var(--paper);
    padding: 28px 20px;
}

.trust-grid strong,
.trust-grid span {
    display: block;
}

.trust-grid strong {
    font-size: 1.02rem;
}

.urgency-band {
    padding: 44px 0;
    background: var(--paper);
}

.urgency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.urgency-grid article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    background:
        linear-gradient(180deg, #fff, var(--soft));
}

.urgency-grid span {
    display: block;
    color: var(--green-dark);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.urgency-grid strong {
    display: block;
    font-size: 1.15rem;
    line-height: 1.25;
    margin-bottom: 10px;
}

.urgency-grid p {
    color: var(--muted);
    font-size: 0.92rem;
}

.trust-grid span {
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 4px;
}

.platform-section {
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 8% 12%, rgba(39, 174, 96, 0.10), transparent 24%),
        linear-gradient(180deg, #fff 0%, #f7fcf9 100%);
    padding: 58px 0 48px;
}

.platform-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.76fr) minmax(280px, 0.44fr);
    gap: 42px;
    align-items: end;
    margin-bottom: 30px;
}

.platform-intro span {
    display: block;
    grid-column: 1 / -1;
    color: var(--green-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: -26px;
}

.platform-intro h2 {
    max-width: 680px;
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.55rem);
}

.platform-intro p {
    max-width: 470px;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.55;
}

.logo-marquee {
    position: relative;
    overflow: visible;
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.logo-track {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    width: 100%;
    gap: 12px;
}

.logo-card {
    min-width: 0;
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(31, 120, 78, 0.15);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 253, 251, 0.92));
    padding: 18px 20px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 18px 34px rgba(17, 33, 27, 0.07);
}

.logo-card img {
    width: auto;
    height: 32px;
    max-width: 118px;
    object-fit: contain;
    filter: saturate(1.04);
}

.logo-card img[src*="stripe-logo"] {
    height: 29px;
    max-width: 104px;
}

.logo-card img[src*="visa"] {
    height: 34px;
    max-width: 92px;
}

.logo-card img[src*="mastercard"] {
    height: 38px;
    max-width: 86px;
}

.logo-card img[src*="applepay"] {
    height: 42px;
    max-width: 124px;
}

.logo-card img[src*="instantbuy/svg/light_gpay"] {
    height: 30px;
    max-width: 116px;
}

.section {
    padding: 92px 0;
}

.section-header {
    max-width: 760px;
    margin-bottom: 36px;
}

h2 {
    font-family: "DM Serif Display", serif;
    font-size: clamp(2.25rem, 4.4vw, 4rem);
    line-height: 1.02;
    font-weight: 400;
    margin-bottom: 18px;
}

.section-donate {
    background:
        linear-gradient(180deg, #eef9f3 0%, #f9fdfb 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.donate-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(430px, 480px);
    gap: 54px;
    align-items: start;
}

.donate-copy {
    padding-top: 22px;
}

.donate-copy p {
    color: var(--muted);
    max-width: 640px;
}

.donate-note-panel {
    margin-top: 30px;
    max-width: 620px;
    border-left: 4px solid var(--green);
    background: #fff;
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 18px 20px;
    box-shadow: 0 10px 30px rgba(17, 33, 27, 0.05);
}

.donate-note-panel strong {
    display: block;
    margin-bottom: 5px;
}

.donate-note-panel p {
    font-size: 0.94rem;
}

.check-list {
    margin-top: 28px;
    list-style: none;
    display: grid;
    gap: 12px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--ink);
    font-weight: 700;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 6px var(--aqua);
}

.donation-panel {
    position: sticky;
    top: 18px;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(245, 251, 247, 0.98) 0%, #fff 36%, #fff 100%);
    border: 2px solid rgba(21, 127, 88, 0.32);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: 0 28px 78px rgba(17, 33, 27, 0.2), 0 0 0 7px rgba(39, 174, 96, 0.08);
    scroll-margin-top: 88px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.donation-panel::before {
    content: "Donation checkout";
    display: block;
    width: max-content;
    margin: 0 0 10px;
    color: #fff;
    background: var(--green-deep);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.donation-panel.is-payment-step {
    border-color: rgba(21, 127, 88, 0.58);
    box-shadow: 0 24px 70px rgba(17, 33, 27, 0.18);
    transform: translateY(-2px);
}

.donation-panel.is-payment-step::before {
    content: "Secure checkout";
    color: #fff;
    width: max-content;
    background: var(--green-deep);
    border-radius: 999px;
    padding: 5px 10px;
    margin: -10px 0 18px;
    letter-spacing: 0.08em;
}

.checkout-spotlight {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    padding: 18px;
    margin-bottom: 18px;
    background:
        linear-gradient(135deg, rgba(20, 63, 42, 0.96), rgba(21, 127, 88, 0.9)),
        var(--green-deep);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.checkout-spotlight::after {
    content: "";
    position: absolute;
    inset: auto -18% -72% 28%;
    height: 150px;
    transform: rotate(-10deg);
    background: rgba(255, 255, 255, 0.12);
}

.checkout-spotlight-top,
.checkout-goal,
.checkout-meta {
    position: relative;
    z-index: 1;
}

.checkout-spotlight-top {
    display: grid;
    gap: 4px;
}

.checkout-pill {
    width: max-content;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 4px 9px;
    color: #bff5d4;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.checkout-spotlight strong {
    font-size: 1.4rem;
    line-height: 1.1;
}

.checkout-spotlight small {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    font-weight: 800;
}

.checkout-goal {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
}

.checkout-goal span,
.checkout-goal strong {
    display: block;
}

.checkout-goal span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.82rem;
    font-weight: 800;
}

.checkout-goal strong {
    margin-top: 1px;
    font-size: 1rem;
}

.checkout-goal b {
    font-size: 1.8rem;
    line-height: 1;
}

.checkout-progress {
    position: relative;
    z-index: 1;
    height: 10px;
    border-radius: 999px;
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.checkout-progress span {
    display: block;
    width: 51%;
    height: 100%;
    border-radius: inherit;
    background: #fff;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.45);
}

.checkout-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.checkout-meta span {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 7px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
    line-height: 1.2;
    font-weight: 900;
    text-align: center;
}

.panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    font-weight: 800;
}

.panel-head strong {
    color: var(--green-dark);
    background: var(--aqua);
    border-radius: var(--radius);
    padding: 5px 10px;
    font-size: 0.8rem;
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

.amount-grid button {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: var(--radius);
    padding: 13px 8px;
    font-weight: 800;
    color: var(--ink);
}

.amount-grid button.active {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.amount-grid button:hover {
    border-color: var(--green);
}

.field {
    display: block;
    margin-top: 14px;
}

.field span {
    display: block;
    font-size: 0.86rem;
    color: var(--muted);
    font-weight: 800;
    margin-bottom: 6px;
}

.field input,
.currency-input {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.field input {
    padding: 0 13px;
    color: var(--ink);
    outline: none;
}

.field input:focus,
.currency-input:focus-within {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(21, 127, 88, 0.14);
}

.currency-input {
    display: flex;
    align-items: center;
}

.currency-input b {
    width: 44px;
    text-align: center;
    color: var(--green-dark);
}

.currency-input input {
    border: 0;
    min-height: 46px;
    padding-left: 0;
}

.donor-step[hidden],
.donor-summary[hidden] {
    display: none !important;
}

.phone-row {
    display: grid;
    grid-template-columns: minmax(132px, 0.42fr) minmax(0, 1fr);
    gap: 10px;
}

.country-picker,
.phone-input {
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    display: flex;
    align-items: center;
}

.country-picker {
    gap: 8px;
    padding: 0 10px;
}

.country-picker img {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid rgba(17, 33, 27, 0.12);
    flex: 0 0 auto;
}

.country-picker select {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-weight: 800;
    font-size: 0.82rem;
    min-width: 0;
}

.phone-input b {
    min-width: 54px;
    padding: 0 10px;
    color: var(--green-dark);
    font-size: 0.88rem;
}

.phone-input input {
    border: 0;
    min-height: 46px;
    padding: 0 12px 0 0;
}

.country-picker:focus-within,
.phone-input:focus-within {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(21, 127, 88, 0.14);
}

.country-flag-strip {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
}

.country-flag-strip span {
    width: 28px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: #fff;
    border: 1px solid rgba(17, 33, 27, 0.12);
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(17, 33, 27, 0.06);
}

.country-flag-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-flag-strip small {
    margin-left: 4px;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.25;
}

.donor-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid rgba(39, 174, 96, 0.24);
    border-radius: var(--radius);
    background: var(--soft);
    padding: 14px;
}

.donor-summary span,
.donor-summary strong,
.donor-summary small {
    display: block;
}

.donor-summary span {
    color: var(--green-dark);
    font-size: 0.78rem;
    font-weight: 900;
}

.donor-summary strong {
    font-size: 1rem;
    line-height: 1.2;
}

.donor-summary small {
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.donor-summary button {
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--green-deep);
    padding: 8px 10px;
    font-size: 0.78rem;
    font-weight: 900;
}

.payment-shell {
    margin-top: 18px;
    padding: 18px;
    border: 2px solid rgba(21, 127, 88, 0.42);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, #f0fbf5 0%, #fff 52%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 18px 42px rgba(17, 33, 27, 0.12);
}

.payment-shell[hidden] {
    display: none !important;
}

.payment-shell.is-prewarming {
    position: absolute;
    left: 0;
    bottom: 78px;
    width: 100%;
    margin: 0;
    padding: 0 24px;
    border: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-120vw);
}

.payment-step-label {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(17, 33, 27, 0.08);
}

.payment-step-label span,
.payment-step-label strong {
    display: block;
}

.payment-step-label span {
    color: var(--green-dark);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.payment-step-label strong {
    margin-top: 2px;
    font-size: 1rem;
    line-height: 1.25;
}

.payment-step-label small {
    flex: 0 0 auto;
    border: 1px solid rgba(21, 127, 88, 0.18);
    border-radius: 999px;
    background: #fff;
    color: var(--green-deep);
    padding: 5px 9px;
    font-size: 0.72rem;
    line-height: 1;
    font-weight: 900;
    white-space: nowrap;
}

.payment-shell.is-prewarming .payment-loading {
    display: none !important;
}

.payment-loading {
    min-height: 178px;
    border: 1px dashed rgba(39, 174, 96, 0.36);
    border-radius: var(--radius);
    background: linear-gradient(180deg, #fff, var(--soft));
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    text-align: center;
    padding: 24px;
}

.payment-loading[hidden] {
    display: none !important;
}

.payment-loading span {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 3px solid rgba(39, 174, 96, 0.18);
    border-top-color: var(--green);
    animation: spin 0.8s linear infinite;
}

.payment-loading strong {
    display: block;
    font-size: 0.95rem;
}

.payment-loading small {
    color: var(--muted);
    font-size: 0.82rem;
}

.payment-shell.is-loading .express-checkout-element,
.payment-shell.is-loading .wallet-divider {
    display: none;
}

.payment-shell.is-loading .payment-element {
    min-height: 0;
}

.express-checkout-element {
    min-height: 48px;
    margin-top: 2px;
}

.wallet-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 14px 0;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.wallet-divider::before,
.wallet-divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: var(--line);
}

.wallet-divider[hidden] {
    display: none !important;
}

.payment-element {
    min-height: 180px;
    padding: 2px;
    border-radius: 7px;
    background: #fff;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.donate-btn {
    width: 100%;
    min-height: 56px;
    margin-top: 20px;
    background: var(--green);
    color: #fff;
    border: 0;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 900;
}

.donate-btn:disabled {
    cursor: wait;
    opacity: 0.72;
}

.powered-by-stripe {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    min-height: 30px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.powered-by-stripe img {
    width: 72px;
    height: auto;
}

.form-message {
    min-height: 22px;
    margin-top: 12px;
    font-size: 0.88rem;
    color: var(--coral);
    font-weight: 700;
}

.fine-print {
    color: var(--muted);
    font-size: 0.82rem;
    margin-top: 8px;
}

.payment-brand-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
}

.payment-brand-row span {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(31, 120, 78, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.72);
}

.payment-brand-row img {
    width: auto;
    height: 26px;
    max-width: 92px;
    object-fit: contain;
    filter: grayscale(1) contrast(1.12);
    opacity: 0.86;
}

.payment-brand-row img[src*="visa"] {
    height: 29px;
}

.payment-brand-row img[src*="mastercard"] {
    height: 31px;
}

.payment-brand-row img[src*="applepay"] {
    height: 34px;
}

.payment-brand-row img[src*="instantbuy/svg/light_gpay"] {
    height: 25px;
    filter: grayscale(1) contrast(1.15);
    opacity: 0.82;
}

.stripe-note {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.stripe-note span {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 6px 8px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    background: var(--soft);
}

.story-section {
    background: #fff;
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
    gap: 56px;
    align-items: center;
}

.story-text p {
    color: var(--muted);
    margin-bottom: 16px;
}

.story-callout {
    margin-top: 24px;
    background: var(--green-deep);
    color: #fff;
    border-radius: var(--radius);
    padding: 22px;
}

.story-callout strong,
.story-callout span {
    display: block;
}

.story-callout span {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.94rem;
}

.image-stack {
    display: grid;
    grid-template-columns: 0.9fr 0.72fr;
    gap: 14px;
    align-items: end;
}

.image-stack img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.image-stack img:last-child {
    transform: translateY(34px);
}

.care-section {
    background:
        linear-gradient(90deg, rgba(20, 63, 42, 0.04) 0 1px, transparent 1px),
        linear-gradient(180deg, #fff 0%, #f4fbf7 100%);
    background-size: 32px 32px, auto;
    border-top: 1px solid var(--line);
}

.care-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
    gap: 48px;
    align-items: center;
}

.care-photo {
    position: relative;
}

.care-photo::after {
    content: "Rutina real de cuidado";
    position: absolute;
    left: 18px;
    bottom: 18px;
    border-radius: var(--radius);
    background: rgba(13, 36, 25, 0.84);
    color: #fff;
    padding: 9px 12px;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    backdrop-filter: blur(12px);
}

.care-photo img {
    width: 100%;
    aspect-ratio: 856 / 497;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.care-copy p:not(.section-kicker) {
    color: var(--muted);
    margin-bottom: 20px;
}

.care-card {
    border-left: 4px solid var(--green);
    background: var(--paper);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 18px 20px;
    box-shadow: 0 12px 36px rgba(17, 33, 27, 0.07);
}

.care-card strong,
.care-card span {
    display: block;
}

.care-card span {
    color: var(--muted);
    font-size: 0.94rem;
    margin-top: 5px;
}

.care-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.care-points span {
    border: 1px solid rgba(39, 174, 96, 0.24);
    border-radius: var(--radius);
    background: #fff;
    color: var(--green-dark);
    padding: 8px 10px;
    font-size: 0.78rem;
    font-weight: 900;
}

.video-section {
    background:
        radial-gradient(circle at 18% 20%, rgba(39, 174, 96, 0.22), transparent 28%),
        var(--green-deep);
    color: #fff;
    padding: 92px 0;
}

.video-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(280px, 430px);
    gap: 48px;
    align-items: center;
}

.video-copy p:not(.section-kicker) {
    color: rgba(255, 255, 255, 0.76);
}

.video-frame {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
}

.video-frame video {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.featured-video {
    isolation: isolate;
}

.featured-video::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 28%, rgba(0, 0, 0, 0.18));
    z-index: 1;
}

.video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 78px;
    height: 78px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.26);
    display: grid;
    place-items: center;
}

.video-play span {
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 19px solid var(--green-deep);
    margin-left: 5px;
}

.video-play.small {
    width: 58px;
    height: 58px;
}

.video-play.small span {
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 15px;
}

[data-video-shell].is-playing .video-play {
    opacity: 0;
    pointer-events: none;
}

.video-fallback {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.88);
    color: var(--green-deep);
    padding: 7px 10px;
    font-size: 0.74rem;
    font-weight: 900;
}

.updates-section {
    background:
        radial-gradient(circle at 88% 10%, rgba(39, 174, 96, 0.18), transparent 26%),
        linear-gradient(180deg, #fbfefc 0%, #fff 100%);
    border-bottom: 1px solid var(--line);
}

.updates-header {
    max-width: 860px;
}

.updates-header p:not(.section-kicker) {
    color: var(--muted);
    max-width: 760px;
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.update-video-card {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    border: 1px solid rgba(39, 174, 96, 0.22);
    border-radius: var(--radius);
    background: #fff;
    padding: 16px;
    box-shadow: 0 18px 48px rgba(17, 33, 27, 0.08);
}

.update-video-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: #06130d;
}

.update-video-frame video {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.update-video-card span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 10px;
    border-radius: var(--radius);
    background: var(--aqua);
    color: var(--green-dark);
    padding: 6px 9px;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.update-video-card h3 {
    font-size: 1.35rem;
    line-height: 1.15;
    margin-bottom: 10px;
}

.update-video-card p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.photo-evidence-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.photo-evidence-grid figure {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--green-deep);
    box-shadow: var(--shadow);
}

.photo-evidence-grid img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.photo-evidence-grid figcaption {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: var(--radius);
    background: rgba(13, 36, 25, 0.84);
    color: #fff;
    padding: 10px 12px;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.3;
    backdrop-filter: blur(12px);
}

.transparency-section {
    background: var(--soft);
}

.impact-section {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.impact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    gap: 44px;
    align-items: start;
}

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

.impact-list article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    background: var(--soft);
}

.impact-list strong {
    display: block;
    color: var(--green-dark);
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 12px;
}

.impact-list span {
    color: var(--muted);
    font-size: 0.94rem;
}

.allocation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.allocation-grid article {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
}

.allocation-grid article:hover,
.urgency-grid article:hover,
.impact-list article:hover {
    border-color: rgba(39, 174, 96, 0.42);
}

.allocation-grid strong {
    display: block;
    color: var(--green-dark);
    font-size: 1.55rem;
    line-height: 1;
    margin-bottom: 18px;
}

.allocation-grid h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.allocation-grid p,
.faq-list p {
    color: var(--muted);
    font-size: 0.92rem;
}

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 820px;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px 18px;
    background: #fff;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 800;
}

.faq-list p {
    margin-top: 10px;
}

.transparency-note {
    margin-top: 18px;
    border: 1px solid rgba(39, 174, 96, 0.26);
    border-radius: var(--radius);
    background: #fff;
    padding: 20px;
}

.transparency-note strong {
    display: block;
    margin-bottom: 4px;
}

.transparency-note p {
    color: var(--muted);
    font-size: 0.94rem;
}

.footer {
    background:
        radial-gradient(circle at 12% 10%, rgba(39, 174, 96, 0.22), transparent 28%),
        linear-gradient(180deg, #143f2a 0%, #0a1b13 100%);
    color: #fff;
    padding: 64px 0 24px;
}

.footer-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    padding: 28px;
    margin-bottom: 42px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.footer-cta span {
    display: block;
    color: #92e8b9;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-cta h2 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.footer-donate {
    min-width: 190px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(160px, 0.54fr) minmax(240px, 0.82fr) minmax(240px, 0.82fr);
    gap: 34px;
    padding-bottom: 36px;
}

.footer-brand-panel {
    max-width: 560px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 16px;
    color: #fff;
}

.footer-brand-photo {
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 999px;
    border: 2px solid rgba(146, 232, 185, 0.58);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.footer-brand-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-brand strong {
    display: block;
    margin-bottom: 0;
    color: #fff;
    font-size: 1.26rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.footer-brand small {
    display: block;
    margin-top: 4px;
    color: rgba(146, 232, 185, 0.88);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.footer p,
.footer-grid > div > span,
.footer-grid > div > a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.footer p {
    max-width: 520px;
}

.footer-payment-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
    max-width: 500px;
}

.footer-payment-strip span {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.footer-payment-strip img {
    width: auto;
    height: 23px;
    max-width: 82px;
    object-fit: contain;
}

.footer-payment-strip img[src*="stripe-logo"] {
    height: 25px;
}

.footer-payment-strip img[src*="mastercard"] {
    height: 29px;
}

.footer-payment-strip img[src*="applepay"] {
    height: 31px;
}

.footer-payment-strip img[src*="light_gpay"] {
    height: 24px;
}

.footer-mini-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.footer-mini-trust span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(146, 232, 185, 0.22);
    border-radius: var(--radius);
    background: rgba(146, 232, 185, 0.1);
    color: rgba(255, 255, 255, 0.86);
    padding: 7px 10px;
    font-size: 0.78rem;
    font-weight: 900;
}

.footer-mini-trust img {
    width: 25px;
    height: 18px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-mini-trust svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    color: #92e8b9;
}

.footer-column > strong,
.footer-trust-row strong {
    display: block;
    margin-bottom: 12px;
}

.footer-column {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 20px;
}

.footer-grid > div > a:not(.footer-brand),
.footer-grid > div > span {
    display: block;
    margin-bottom: 7px;
}

.footer-grid > div > a:hover {
    color: #fff;
}

.footer-icon-list span {
    display: grid !important;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin-bottom: 12px !important;
}

.footer-icon-list svg,
.footer-trust-row svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.footer-icon-list svg {
    width: 38px;
    height: 38px;
    padding: 8px;
    border-radius: var(--radius);
    background: rgba(146, 232, 185, 0.12);
    color: #92e8b9;
}

.footer-trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}

.footer-trust-row article {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.055);
    padding: 16px;
}

.footer-trust-row span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(146, 232, 185, 0.14);
    color: #92e8b9;
    margin-bottom: 12px;
}

.footer-trust-row strong {
    margin-bottom: 4px;
}

.footer-trust-row p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.86rem;
    line-height: 1.45;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.thankyou-page {
    min-height: 100vh;
    background: var(--green-deep);
}

.thankyou-shell,
.thankyou-hero {
    min-height: 100vh;
}

.thankyou-hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 72px 0;
}

.thankyou-bg,
.thankyou-shade {
    position: absolute;
    inset: 0;
}

.thankyou-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 56% 34%;
}

.thankyou-shade {
    background:
        linear-gradient(90deg, rgba(9, 30, 20, 0.94) 0%, rgba(9, 30, 20, 0.78) 44%, rgba(9, 30, 20, 0.38) 100%),
        linear-gradient(0deg, rgba(9, 30, 20, 0.66), rgba(9, 30, 20, 0.08));
}

.thankyou-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
    gap: 34px;
    align-items: center;
}

.thankyou-copy {
    color: #fff;
    max-width: 680px;
}

.thankyou-copy h1 {
    font-family: "DM Serif Display", serif;
    font-size: clamp(3.7rem, 8vw, 7rem);
    line-height: 0.94;
    font-weight: 400;
    margin-bottom: 22px;
}

.thankyou-copy p:not(.hero-tag) {
    color: rgba(255, 255, 255, 0.78);
    max-width: 620px;
}

.status-panel {
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    padding: 28px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: 999px;
    background: #e8f8f0;
    color: var(--green-dark);
    padding: 5px 12px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.status-badge.pending {
    background: #fff5df;
    color: #9a650f;
}

.status-badge.warning {
    background: #fde9e3;
    color: #a33f29;
}

.status-badge.paid {
    background: var(--green);
    color: #fff;
}

.status-panel h2 {
    font-size: 1.75rem;
    line-height: 1.15;
    margin: 18px 0 10px;
}

.status-panel p {
    color: var(--muted);
    font-size: 0.98rem;
}

.receipt-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
}

.receipt-grid div {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
    padding: 14px 16px;
}

.receipt-grid dt {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.receipt-grid dd {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.delivery-box {
    border: 1px solid #bfe5cc;
    border-radius: var(--radius);
    background: #f2fbf5;
    padding: 18px;
    margin-top: 18px;
}

.delivery-box span {
    display: block;
    color: var(--green-dark);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.delivery-box strong {
    display: block;
    font-size: 1.08rem;
    margin-bottom: 6px;
}

.delivery-box .btn-solid {
    margin-top: 14px;
    min-height: 46px;
}

.status-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.status-actions .btn-solid,
.status-actions .btn-ghost {
    min-height: 46px;
    padding: 11px 16px;
    border: 0;
}

.btn-ghost.dark {
    border: 1px solid var(--line);
    color: var(--green-deep);
    background: #fff;
}

.support-toast {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 30;
    width: min(350px, calc(100vw - 36px));
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    border: 1px solid rgba(21, 127, 88, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 60px rgba(17, 33, 27, 0.18);
    padding: 11px 13px;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.support-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.support-toast[hidden] {
    display: none !important;
}

.support-flag {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--soft);
    border: 1px solid rgba(17, 33, 27, 0.1);
}

.support-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-toast strong,
.support-toast small {
    display: block;
}

.support-toast strong {
    color: var(--green-deep);
    font-size: 0.9rem;
    line-height: 1.15;
}

.support-toast small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.3;
    font-weight: 800;
}

@media (max-width: 920px) {
    .hero {
        min-height: 88vh;
        align-items: end;
    }

    .trust-grid,
    .donate-layout,
    .story-grid,
    .care-layout,
    .video-layout,
    .video-gallery,
    .allocation-grid,
    .urgency-grid,
    .impact-layout,
    .footer-cta,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .platform-intro,
    .footer-trust-row {
        grid-template-columns: 1fr;
    }

    .platform-intro p {
        margin-top: 8px;
        text-align: left;
    }

    .platform-intro span {
        grid-column: auto;
        margin-bottom: 0;
    }

    .logo-track {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .footer-column {
        border-left: 0;
        padding-left: 0;
    }

    .hero-proof {
        grid-template-columns: 1fr;
    }

    .donation-panel {
        position: static;
        max-width: none;
    }

    .image-stack img:last-child {
        transform: translateY(0);
    }

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

    .photo-evidence-grid {
        grid-template-columns: 1fr;
    }

    .photo-evidence-grid img {
        height: min(620px, 118vw);
    }

    .footer-bottom {
        flex-direction: column;
    }

    .thankyou-layout {
        grid-template-columns: 1fr;
    }

    .status-panel {
        max-width: 620px;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 16px;
    }

    .container {
        width: min(100% - 28px, 1160px);
    }

    .hero {
        min-height: 86vh;
        padding-bottom: 30px;
    }

    .hero-shade {
        background:
            linear-gradient(0deg, rgba(8, 22, 17, 0.9) 0%, rgba(8, 22, 17, 0.5) 70%),
            linear-gradient(90deg, rgba(8, 22, 17, 0.4), rgba(8, 22, 17, 0.05));
    }

    .hero h1 {
        font-size: 3.85rem;
    }

    .hero-proof {
        display: none;
    }

    .btn-solid,
    .btn-ghost {
        width: 100%;
    }

    .section,
    .video-section {
        padding: 68px 0;
    }

    .logo-card {
        min-width: 0;
        min-height: 74px;
        padding: 16px 18px;
    }

    .logo-card img {
        height: 28px;
        max-width: 102px;
    }

    .logo-card img[src*="stripe-logo"] {
        height: 26px;
    }

    .logo-card img[src*="visa"],
    .logo-card img[src*="applepay"] {
        height: 30px;
    }

    .logo-card img[src*="applepay"] {
        height: 38px;
    }

    .logo-card img[src*="mastercard"] {
        height: 34px;
    }

    .logo-card img[src*="instantbuy/svg/light_gpay"] {
        height: 27px;
    }

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

    .amount-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .country-flag-strip {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .country-flag-strip small {
        flex-basis: 100%;
        margin-left: 0;
    }

    .payment-brand-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .donor-summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .donor-summary button {
        width: 100%;
    }

    .donation-panel {
        padding: 18px;
    }

    .checkout-meta {
        grid-template-columns: 1fr;
    }

    .payment-shell {
        padding: 14px;
    }

    .payment-step-label {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
    }

    .payment-step-label small {
        width: max-content;
    }

    .image-stack {
        grid-template-columns: 1fr;
    }

    .care-photo::after {
        left: 12px;
        bottom: 12px;
    }

    .update-video-card {
        grid-template-columns: 1fr;
    }

    .update-video-frame {
        max-width: 270px;
    }

    .footer-cta {
        padding: 22px;
    }

    .thankyou-hero {
        padding: 42px 0;
        align-items: end;
    }

    .thankyou-copy h1 {
        font-size: 3.45rem;
    }

    .status-panel {
        padding: 20px;
    }

    .status-actions .btn-solid,
    .status-actions .btn-ghost {
        width: 100%;
    }

    .support-toast {
        left: 14px;
        bottom: 14px;
        width: calc(100vw - 28px);
    }
}

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

    .payment-loading span {
        animation: none;
    }

    .support-toast {
        transition: none;
    }
}
