/*
 * landing.css — Estilos de la landing Dona · Pureza de María
 *
 * Copia fiel del diseño React original adaptada a WordPress/Elementor.
 * Todos los tokens de diseño se definen en :root.
 *
 * @package Dona_Pureza_Maria
 * @version 1.0.0
 */

/* =====================================================================
   DESIGN TOKENS
   ===================================================================== */

:root {
    --ink:        #1c1d1a;
    --ink-2:      #3a3b37;
    --ink-3:      #6a6c66;
    --paper:      #faf6ee;
    --paper-2:    #f1ebde;
    --paper-3:    #e8e1d0;
    --line:       rgba(28, 29, 26, 0.14);
    --line-2:     rgba(28, 29, 26, 0.08);
    --teal:       #1f6f78;
    --teal-deep:  #145159;
    --terra:      #b95a2a;
    --terra-deep: #8a3e15;
    --terra-soft: #f5e2d4;
    --gold:       #d4a44a;
    --cream:      #fff;

    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 18px;

    --maxw: 1200px;
    --col:  720px;
    --bar-h: 78px;
}

/* =====================================================================
   RESET Y BASE
   ===================================================================== */

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

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-size: 17px;
    line-height: 1.55;
}

/* =====================================================================
   TIPOGRAFÍA
   ===================================================================== */

h1,
h2,
h3,
h4 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin: 0;
}

.display {
    font-size: clamp(40px, 5.6vw, 78px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    font-weight: 700;
}

.display em {
    font-style: normal;
    color: var(--terra-deep);
}

.h2 {
    font-size: clamp(32px, 3.6vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.h3 {
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.2;
}

.eyebrow {
    font-family: "JetBrains Mono", "SF Mono", Menlo, monospace;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terra-deep);
    font-weight: 600;
}

.lead {
    font-size: clamp(19px, 1.55vw, 22px);
    line-height: 1.5;
    color: var(--ink-2);
    text-wrap: pretty;
}

p {
    margin: 0 0 1em;
    text-wrap: pretty;
}

p:last-child {
    margin-bottom: 0;
}

/* =====================================================================
   LAYOUT
   ===================================================================== */

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px;
}

/* narrow mantiene la medida cómoda para body copy pero alineado a la izquierda */
.narrow {
    max-width: var(--col);
    margin-left: 0;
    margin-right: auto;
}

.narrow.center {
    margin-left: auto;
}

section {
    padding: 96px 0;
    position: relative;
}

section.tight {
    padding: 72px 0;
}

/* =====================================================================
   ANIMACIONES
   ===================================================================== */

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(185, 90, 42, 0.18);
    }

    50% {
        box-shadow: 0 0 0 9px rgba(185, 90, 42, 0.05);
    }
}

/* =====================================================================
   REVEAL ON SCROLL
   ===================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

/* Reveal foto: zoom-in sutil al entrar */
.reveal-photo {
    overflow: hidden;
}

.reveal-photo img {
    transform: scale(1.08);
    transition: transform 1.4s cubic-bezier(0.2, 0.7, 0.2, 1);
    height: 100%!important;
    width: 100%!important;
    object-fit: cover;
}

.reveal-photo.in img {
    transform: scale(1);
}

/* Lift paraláctico para galerías apiladas */
.reveal-up {
    transform: translateY(40px);
    transition-duration: 0.9s;
}

.reveal-up.in {
    transform: none;
}

/* =====================================================================
   BOTONES
   ===================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 26px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
    font-family: inherit;
}

.btn-primary {
    background: var(--terra);
    color: #fff;
    box-shadow: 0 8px 18px -8px rgba(185, 90, 42, 0.6);
}

.btn-primary:hover {
    background: var(--terra-deep);
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

.btn-primary svg {
    width: 18px;
    height: 18px;
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink);
}

.btn-ghost:hover {
    background: var(--ink);
    color: #fff;
    text-decoration: none;
}

.btn-lg {
    padding: 20px 32px;
    font-size: 18px;
}

/* =====================================================================
   HERO — WIDGET 1
   ===================================================================== */

.hero {
    padding: 56px 0 88px;
    background:
        radial-gradient(circle at 80% 0%, rgba(212, 164, 74, 0.12), transparent 55%),
        var(--paper);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: end;
}

.hero-loc {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "JetBrains Mono", "SF Mono", Menlo, monospace;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--terra-deep);
    font-weight: 600;
    margin-bottom: 22px;
}

.hero-loc::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--terra);
    box-shadow: 0 0 0 4px rgba(185, 90, 42, 0.18);
    animation: pulse 2.4s ease-in-out infinite;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 36px;
}

.hero-counter {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 32px;
}

.hero-counter > div {
    padding: 0;
}

.hero-counter .num {
    font-size: 28px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero-counter .num .unit {
    font-size: 14px;
    color: var(--ink-3);
    font-weight: 500;
    margin-left: 4px;
    letter-spacing: 0;
}

.hero-counter .lab {
    font-size: 12px;
    color: var(--ink-3);
    margin-top: 6px;
    letter-spacing: 0.04em;
}

/* Foto del hero */
.hero-photo {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #ddd;
    box-shadow: 0 30px 60px -30px rgba(28, 29, 26, 0.35);
}

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

.hero-photo .frame-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    color: var(--ink);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 600;
}

.hero-photo .strip {
    position: absolute;
    inset: auto 0 0 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
}

.hero-photo .caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    color: white;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 500;
}

/* =====================================================================
   REALITY — WIDGET 2
   ===================================================================== */

.reality {
    background: var(--paper-2);
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px 32px;
    margin-top: 56px;
}

.stat {
    padding: 0;
}

.stat .figure {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(48px, 5vw, 76px);
    font-weight: 700;
    color: var(--terra-deep);
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.stat .figure .small {
    font-size: 0.5em;
    color: var(--ink);
    margin-left: 4px;
    vertical-align: 0.4em;
}

.stat .figure-label {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.45;
    color: var(--ink-2);
    max-width: 22ch;
}

/* Bloque de cita */
.quote-block {
    margin-top: 64px;
    padding: 40px 44px;
    background: var(--cream);
    border-radius: var(--r-lg);
    position: relative;
    width: 100%;
}

.quote-block .mark {
    position: absolute;
    top: -8px;
    left: 28px;
    font-family: Georgia, serif;
    font-size: 80px;
    line-height: 1;
    color: var(--terra);
}

.quote-block blockquote {
    margin: 0;
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.45;
    color: var(--ink);
    font-style: italic;
    text-wrap: pretty;
}

.quote-block cite {
    display: block;
    margin-top: 18px;
    font-style: normal;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-3);
    font-weight: 600;
}

/* =====================================================================
   JOLIE — WIDGET 3
   ===================================================================== */

.jolie-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.jolie-photos {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    will-change: transform;
}

.jolie-photos .p1 {
    grid-row: 1 / 3;
    aspect-ratio: 4 / 5;
    transform: translateY(var(--p1-shift, 0));
}

.jolie-photos .p2 {
    aspect-ratio: 1 / 1;
    transform: translateY(var(--p2-shift, 0));
}

.jolie-photos .p3 {
    aspect-ratio: 1 / 1;
    transform: translateY(var(--p3-shift, 0));
}

.jolie-photos figure {
    margin: 0;
    border-radius: var(--r-md);
    overflow: hidden;
    background: #ddd;
}

.jolie-photos img {
    width: 100%;
    height: 100%!important;
    object-fit: cover;
    display: block;
}

.jolie-text p {
    font-size: 19px;
    line-height: 1.55;
}

.jolie-text .pull {
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.3;
    color: var(--ink);
    font-weight: 600;
    margin: 28px 0;
    letter-spacing: -0.01em;
    text-wrap: balance;
}

/* =====================================================================
   SOLUTION — WIDGET 4
   ===================================================================== */

.solution {
    background: var(--ink);
    color: #efe9da;
}

.solution h2,
.solution .eyebrow {
    color: #fff;
}

.solution .eyebrow {
    color: var(--gold);
}

.solution .lead {
    color: rgba(255, 255, 255, 0.78);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: start;
}

.solution-photo {
    aspect-ratio: 4 / 5;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #444;
}

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

/* Columna foto con sticky */
.solution-sticky {
    position: sticky;
    top: 24px;
    align-self: start;
}

.pillars {
    display: grid;
    gap: 20px;
    margin-top: 32px;
}

.pillar {
    padding: 22px 24px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, 0.03);
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 16px;
    align-items: start;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.pillar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 164, 74, 0), rgba(185, 90, 42, 0.18));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.pillar:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.pillar:hover::after {
    opacity: 1;
}

.pillar:hover .num {
    color: var(--gold);
}

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

.pillar .num {
    font-family: "JetBrains Mono", monospace;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.pillar h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 6px;
}

.pillar p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.45;
    margin: 0;
}

/* =====================================================================
   CONSTRUCTION — WIDGET 5
   ===================================================================== */

.construction-stage {
    margin-top: 48px;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
    position: relative;
    box-shadow: 0 30px 60px -30px rgba(28, 29, 26, 0.4);
    cursor: pointer;
}

.construction-stage video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.construction-stage .play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.construction-stage .play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.construction-stage:hover .play-button {
    transform: scale(1.05);
}

.play-button svg {
    width: 32px;
    height: 32px;
    fill: var(--terra-deep);
    margin-left: 4px;
}

.construction-tag {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--ink-3);
    font-family: "JetBrains Mono", monospace;
    letter-spacing: 0.06em;
}

.construction-tag .live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--terra);
    animation: pulse 2.4s ease-in-out infinite;
}

/* =====================================================================
   IMPACT — WIDGET 6
   ===================================================================== */

.impact {
    background:
        radial-gradient(circle at 0% 100%, rgba(185, 90, 42, 0.06), transparent 60%),
        var(--paper);
}

.ladders {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 56px;
}

.ladder {
    background: var(--cream);
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    padding: 32px 26px 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 240px;
    position: relative;
    text-align: left;
    font-family: inherit;
    color: inherit;
}

.ladder:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px -18px rgba(28, 29, 26, 0.28);
    border-color: var(--terra);
}

.ladder.active {
    border-color: var(--terra);
    background: #fff5ed;
    box-shadow: 0 18px 36px -18px rgba(185, 90, 42, 0.45);
}

.ladder.active::before {
    content: "✓";
    position: absolute;
    top: 14px;
    right: 14px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--terra);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.ladder .price {
    font-size: 38px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.025em;
    line-height: 1;
}

.ladder.active .price {
    color: var(--terra-deep);
}

.ladder .item {
    font-size: 15px;
    color: var(--ink-2);
    line-height: 1.4;
    margin-top: auto;
}

.ladder .icon {
    width: 36px;
    height: 36px;
    color: var(--terra);
}

.ladder .icon svg {
    width: 100%;
    height: 100%;
}

/* Bloque de donación grande */
.donate-block {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.donate-block .big-donate {
    padding: 22px 44px;
    font-size: 20px;
    border-radius: 999px;
    box-shadow: 0 14px 30px -10px rgba(185, 90, 42, 0.6);
}

.donate-block .big-donate strong {
    font-weight: 700;
    margin: 0 4px;
}

.donate-block .pay-mini {
    display: inline-flex;
    gap: 8px;
    color: var(--ink-3);
    font-size: 12px;
    align-items: center;
    font-family: "JetBrains Mono", monospace;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.donate-block .pay-mini .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--ink-3);
}

/* =====================================================================
   ROADMAP — WIDGET 7
   ===================================================================== */

.roadmap-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: start;
    margin-top: 48px;
}

.timeline {
    position: relative;
    padding-left: 28px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(var(--terra), var(--teal));
}

.tl-item {
    position: relative;
    padding: 0 0 28px 0;
}

.tl-item::before {
    content: "";
    position: absolute;
    left: -28px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--cream);
    border: 3px solid var(--terra);
}

.tl-item.future::before {
    border-color: var(--ink-3);
    background: var(--paper);
}

.tl-item.now::before {
    background: var(--terra);
    box-shadow: 0 0 0 4px rgba(185, 90, 42, 0.2);
}

.tl-year {
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    letter-spacing: 0.12em;
    color: var(--terra-deep);
    font-weight: 600;
}

.tl-item.future .tl-year {
    color: var(--ink-3);
}

.tl-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    margin-top: 4px;
    line-height: 1.3;
}

.tl-desc {
    font-size: 15px;
    color: var(--ink-2);
    margin-top: 6px;
    line-height: 1.45;
}

/* =====================================================================
   FUTURE BLEED — WIDGET 8
   ===================================================================== */

.future-bleed {
    padding: 0;
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #111;
    color: #fff;
}

.future-bleed .bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.future-bleed .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) contrast(1.05);
}

.future-bleed .bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(20, 81, 89, 0.45) 0%,
        rgba(28, 29, 26, 0.55) 100%
    );
}

.future-bleed .content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 120px 28px;
    max-width: 760px;
    background-color: transparent;
}

.future-bleed h2 {
    font-size: clamp(36px, 5vw, 64px);
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.future-bleed p {
    font-size: clamp(18px, 1.6vw, 22px);
    color: rgba(255, 255, 255, 0.85);
    margin-top: 22px;
    text-wrap: pretty;
}

.future-bleed .future-cta {
    margin-top: 42px;
}

.future-bleed .signpost {
    display: flex;
    gap: 28px;
    justify-content: center;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    flex-wrap: wrap;
}

.future-bleed .signpost span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.future-bleed .signpost svg {
    width: 16px;
    height: 16px;
}

/* =====================================================================
   TRANSPARENCY — WIDGET 9
   ===================================================================== */

.trans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.trans-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 32px 28px;
}

.trans-card .num-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--paper-2);
    color: var(--teal-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
    margin-bottom: 18px;
}

.trans-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.trans-card p {
    font-size: 15px;
    color: var(--ink-2);
    line-height: 1.5;
    margin: 0;
}

/* =====================================================================
   FINAL STRIP — WIDGET 10
   ===================================================================== */

.final-strip {
    background: var(--terra);
    color: #fff;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.final-strip::before,
.final-strip::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.final-strip::before {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 65%);
    top: -180px;
    left: -120px;
}

.final-strip::after {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(212, 164, 74, 0.35), transparent 65%);
    bottom: -140px;
    right: -80px;
}

.final-strip-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 88px 0;
    position: relative;
    z-index: 1;
}

.final-strip h2 {
    color: #fff;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -0.025em;
}

.final-strip h2 .hand {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.final-strip .lead-final {
    margin-top: 22px;
    max-width: 44ch;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(17px, 1.4vw, 19px);
    line-height: 1.5;
}

.final-strip .row {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    align-items: center;
}

.final-strip .btn-primary {
    background: #fff;
    color: var(--terra-deep);
}

.final-strip .btn-primary:hover {
    background: var(--paper);
    color: var(--terra-deep);
}

.final-strip .micro {
    color: rgba(255, 255, 255, 0.95);
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: clamp(20px, 1.7vw, 26px);
    line-height: 1.35;
    border-left: 2px solid rgba(255, 255, 255, 0.4);
    padding-left: 20px;
    max-width: 320px;
}

.final-strip .micro b {
    display: block;
    color: var(--gold);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-size: clamp(28px, 2.4vw, 36px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.final-postcard {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #444;
    transform: rotate(2deg);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.45);
}

.final-postcard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-postcard .stamp {
    position: absolute;
    top: 22px;
    right: 22px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--terra-deep);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 700;
    transform: rotate(6deg);
    border: 2px dashed var(--terra-deep);
}

.final-postcard .signature {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    color: #fff;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 18px;
    line-height: 1.3;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* =====================================================================
   FLOAT DONATE — WIDGET 11
   ===================================================================== */

.float-donate {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 90;
    background: var(--ink);
    color: #fff;
    border-radius: 999px;
    padding: 6px 6px 6px 22px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.float-donate .label {
    font-size: 14px;
    font-weight: 600;
}

.float-donate .label small {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.float-donate .btn {
    padding: 13px 22px;
    font-size: 14px;
}

/* =====================================================================
   OFFSETS DE ANCLAJE
   ===================================================================== */

#donar {
    scroll-margin-top: 24px;
}

#proyecto,
#impacto {
    scroll-margin-top: 16px;
}

/* =====================================================================
   RESPONSIVE — TABLET LANDSCAPE (max 1024px)
   ===================================================================== */

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

    .wrap {
        padding: 0 24px;
    }

    section {
        padding: 80px 0;
    }

    section.tight {
        padding: 60px 0;
    }

    .hero {
        padding: 40px 0 72px;
    }

    .hero-grid {
        grid-template-columns: 1fr 0.95fr;
        gap: 36px;
    }

    .display {
        font-size: clamp(38px, 5.6vw, 60px);
    }

    .jolie-grid {
        gap: 36px;
    }

    .solution-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 36px;
    }

    .ladders {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }

    .ladder {
        padding: 22px 16px 18px;
        min-height: 200px;
    }

    .ladder .price {
        font-size: 30px;
    }

    .ladder .item {
        font-size: 14px;
    }

    .stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px 24px;
    }

    .stat .figure {
        font-size: clamp(40px, 5vw, 60px);
    }

    .trans-grid {
        gap: 18px;
    }
}

/* =====================================================================
   RESPONSIVE — TABLET PORTRAIT (max 900px)
   ===================================================================== */

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-photo {
        aspect-ratio: 3 / 4;
        max-height: 70vh;
    }

    .jolie-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .solution-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .solution-sticky {
        position: static;
    }

    .roadmap-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* =====================================================================
   RESPONSIVE — MÓVIL GRANDE (max 820px)
   ===================================================================== */

@media (max-width: 820px) {
    .hero {
        padding: 32px 0 56px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-photo {
        aspect-ratio: 4 / 5;
        max-height: 75vh;
    }

    .display {
        font-size: clamp(38px, 9vw, 56px);
    }

    .lead {
        font-size: 18px;
    }

    .hero-counter {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .hero-counter .num {
        font-size: 22px;
    }

    .hero-counter .num .unit {
        font-size: 12px;
        display: block;
        margin-left: 0;
        margin-top: 2px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 20px;
    }

    .stat .figure {
        font-size: 44px;
    }

    .quote-block {
        padding: 28px 24px;
    }

    .quote-block .mark {
        font-size: 64px;
        left: 18px;
    }

    .jolie-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .jolie-photos {
        grid-template-columns: 1fr 1fr;
    }

    .jolie-photos .p1 {
        aspect-ratio: 3 / 4;
    }

    .jolie-text .pull {
        font-size: 22px;
        margin: 22px 0;
    }

    .solution-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .solution-sticky {
        position: static;
    }

    .solution-photo {
        aspect-ratio: 3 / 4;
        max-height: 60vh;
    }

    .pillars {
        gap: 14px;
    }

    .pillar {
        padding: 18px;
    }

    .pillar h4 {
        font-size: 16px;
    }

    .pillar p {
        font-size: 14px;
    }

    .construction-stage {
        aspect-ratio: 16 / 10;
        border-radius: var(--r-md);
    }

    .play-button {
        width: 72px;
        height: 72px;
    }

    .play-button svg {
        width: 26px;
        height: 26px;
    }

    .ladders {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 36px;
    }

    .ladder {
        min-height: 170px;
        padding: 22px 18px 18px;
    }

    .ladder .price {
        font-size: 28px;
    }

    .ladder.active::before {
        width: 22px;
        height: 22px;
        font-size: 11px;
        top: 10px;
        right: 10px;
    }

    .donate-block .big-donate {
        padding: 18px 30px;
        font-size: 16px;
    }

    .donate-block .pay-mini {
        font-size: 11px;
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .roadmap-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .future-bleed .content {
        padding: 96px 24px;
    }

    .trans-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .trans-card {
        padding: 24px 22px;
    }

    .final-strip-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 64px 0;
    }

    .final-postcard {
        max-width: 360px;
        margin: 0 auto;
        transform: rotate(1deg);
    }

    .final-strip .row {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    .final-strip .micro {
        max-width: 100%;
    }
}

/* =====================================================================
   RESPONSIVE — MÓVIL ESTÁNDAR (max 560px)
   ===================================================================== */

@media (max-width: 560px) {
    body {
        font-size: 15.5px;
        padding-bottom: 80px;
    }

    .wrap {
        padding: 0 18px;
    }

    section {
        padding: 64px 0;
    }

    section.tight {
        padding: 52px 0;
    }

    .hero {
        padding: 24px 0 44px;
    }

    .hero-loc {
        font-size: 11px;
        letter-spacing: 0.1em;
        margin-bottom: 16px;
    }

    .display {
        font-size: clamp(34px, 11vw, 48px);
        line-height: 1.04;
        letter-spacing: -0.02em;
    }

    .display br {
        display: none;
    }

    .lead {
        font-size: 17px;
        line-height: 1.5;
    }

    .hero-cta-row {
        gap: 10px;
        margin-top: 28px;
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        padding: 14px 22px;
        font-size: 15px;
        gap: 8px;
    }

    .btn-lg {
        padding: 16px 26px;
        font-size: 16px;
    }

    .hero-cta-row .btn {
        justify-content: center;
    }

    .hero-counter {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 14px;
        margin-top: 32px;
    }

    .hero-counter .num {
        font-size: 18px;
    }

    .hero-counter .num .unit {
        font-size: 10px;
    }

    .hero-counter .lab {
        font-size: 11px;
    }

    .hero-photo .frame-tag {
        font-size: 9px;
        padding: 6px 10px;
    }

    .hero-photo .caption {
        font-size: 12px;
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .h2 {
        font-size: clamp(28px, 7.5vw, 36px);
    }

    .eyebrow {
        font-size: 11px;
        letter-spacing: 0.14em;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
        margin-top: 40px;
    }

    .stat .figure {
        font-size: 38px;
    }

    .stat .figure-label {
        font-size: 13px;
        margin-top: 10px;
    }

    .quote-block {
        margin-top: 40px;
        padding: 26px 22px 22px;
    }

    .quote-block blockquote {
        font-size: 16px;
    }

    .quote-block .mark {
        font-size: 56px;
        top: -4px;
        left: 14px;
    }

    .quote-block cite {
        font-size: 11px;
        margin-top: 14px;
    }

    .jolie-photos {
        gap: 8px;
    }

    .jolie-photos .p1 {
        aspect-ratio: 4 / 5;
    }

    .jolie-text .pull {
        font-size: 19px;
    }

    .pillar {
        grid-template-columns: 28px 1fr;
        gap: 12px;
        padding: 16px;
    }

    .pillar .num {
        font-size: 12px;
    }

    .construction-stage {
        aspect-ratio: 4 / 3;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button svg {
        width: 22px;
        height: 22px;
    }

    .construction-tag {
        font-size: 11px;
    }

    .ladders {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 28px;
    }

    .ladder {
        min-height: 150px;
        padding: 18px 14px 14px;
        gap: 10px;
    }

    .ladder .icon {
        width: 28px;
        height: 28px;
    }

    .ladder .price {
        font-size: 24px;
    }

    .ladder .item {
        font-size: 12.5px;
        line-height: 1.35;
    }

    .donate-block {
        margin-top: 28px;
    }

    .donate-block .big-donate {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 16px 22px;
        font-size: 15px;
        box-sizing: border-box;
    }

    .donate-block .pay-mini {
        font-size: 10px;
    }

    .timeline {
        padding-left: 24px;
    }

    .tl-item {
        padding-bottom: 22px;
    }

    .tl-item::before {
        left: -24px;
        width: 12px;
        height: 12px;
    }

    .tl-title {
        font-size: 17px;
    }

    .tl-desc {
        font-size: 14px;
    }

    .tl-year {
        font-size: 11px;
    }

    .future-bleed {
        min-height: 60vh;
    }

    .future-bleed .content {
        padding: 80px 18px;
    }

    .future-bleed h2 {
        font-size: clamp(32px, 9vw, 44px);
    }

    .future-bleed h2 br {
        display: none;
    }

    .future-bleed p {
        font-size: 16px;
    }

    .future-bleed .signpost {
        font-size: 12px;
        gap: 14px 22px;
        margin-top: 22px;
    }

    .trans-card h4 {
        font-size: 17px;
    }

    .trans-card p {
        font-size: 14px;
    }

    .final-strip-grid {
        padding: 56px 0;
        gap: 22px;
    }

    .final-strip h2 {
        font-size: clamp(36px, 11vw, 48px);
    }

    .final-postcard {
        aspect-ratio: 3 / 4;
        max-width: 280px;
    }

    .final-postcard .stamp {
        font-size: 9px;
        padding: 6px 10px;
        top: 14px;
        right: 14px;
    }

    .final-postcard .signature {
        font-size: 14px;
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .final-strip .micro {
        font-size: 18px;
        padding-left: 16px;
    }

    .final-strip .micro b {
        font-size: 24px;
    }

    .final-strip .row .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .float-donate {
        padding: 5px 10px 5px 18px;
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .float-donate .label {
        font-size: 13px;
    }

    .float-donate .label small {
        font-size: 10px;
    }

    .float-donate .btn {
        padding: 11px 18px;
        font-size: 13px;
    }
}

/* =====================================================================
   RESPONSIVE — MÓVIL PEQUEÑO (max 360px)
   ===================================================================== */

@media (max-width: 360px) {
    .hero-counter {
        grid-template-columns: 1fr 1fr;
    }

    .hero-counter > div:last-child {
        grid-column: 1 / -1;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .ladders {
        grid-template-columns: 1fr;
    }
}

/* =====================================================================
   RESET DE TEMA — overflow:hidden del tema Bridge
   Bridge aplica .wrapper_inner { overflow: hidden } en stylesheet.min.css
   que se carga DESPUÉS que landing.css, por lo que sin !important nuestra
   regla es sobrescrita. Necesitamos !important para que position:sticky
   funcione en .solution-sticky y cualquier otro elemento sticky futuro.
   ===================================================================== */

.wrapper_inner {
    overflow: visible !important;
}

/* =====================================================================
   RESET DE TEMA — headings dentro de widgets RW
   El CSS personalizado de página (heredado de Visual Composer) aplica
   text-transform:uppercase a todos los headings. Lo anulamos con
   mayor especificidad solo dentro de nuestros widgets.
   ===================================================================== */

[class*="elementor-widget-rw_"] h1,
[class*="elementor-widget-rw_"] h2,
[class*="elementor-widget-rw_"] h3,
[class*="elementor-widget-rw_"] h4,
[class*="elementor-widget-rw_"] h5,
[class*="elementor-widget-rw_"] h6 {
    text-transform: none;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: -0.01em;
    font-weight: 700;
}

/* =====================================================================
   ELEMENTOR EDITOR — bypass de animaciones de entrada
   - elementor-editor-active  → modo edición (arrastrar widgets)
   - elementor-editor-preview → vista previa dentro del editor
   En ambos modos los .reveal deben ser visibles sin JS para que el
   diseñador pueda ver el contenido mientras construye la página.
   ===================================================================== */

body.elementor-editor-active .reveal,
body.elementor-editor-active .reveal-up,
body.elementor-editor-preview .reveal,
body.elementor-editor-preview .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
}

body.elementor-editor-active .reveal-photo img,
body.elementor-editor-preview .reveal-photo img {
    transform: scale(1);
    transition: none;
}

/* =====================================================================
   ACCESIBILIDAD — MOVIMIENTO REDUCIDO
   ===================================================================== */

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-photo img,
    .jolie-photos .p1,
    .jolie-photos .p2,
    .jolie-photos .p3 {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* =====================================================================
   BARRA FLOTANTE MÓVIL — mostrar en ≤ 980px
   ===================================================================== */

@media (max-width: 980px) {
    .float-donate {
        display: flex;
    }

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

    .ladder {
        min-height: 180px;
        padding: 22px 18px 20px;
    }

    .ladder .price {
        font-size: 30px;
    }

    .donate-block .big-donate {
        padding: 18px 32px;
        font-size: 17px;
    }
}

/* =====================================================================
   DISEÑO MÓVIL — max 560px
   Integración de Landing Page Camerun Mobile.html.
   Solo afecta a la vista móvil; el escritorio queda intacto.
   ===================================================================== */

@media (max-width: 560px) {

    /* ----- HERO: foto full-bleed primero, texto debajo ----- */

    .hero {
        padding: 0;
        background: var(--paper);
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    /* La foto sube al inicio reordenando el flex */
    .hero-photo {
        order: -1;
        margin-left: -18px;
        margin-right: -18px;
        border-radius: 0;
        aspect-ratio: 4 / 5;
        max-height: 75vh;
        box-shadow: none;
    }

    /* Bloque de texto */
    .hero-grid > div:first-child {
        padding-top: 28px;
    }

    /* Cells de contador con fondo de tarjeta */
    .hero-counter {
        margin-top: 22px;
        gap: 10px;
        padding-bottom: 22px;
    }

    .hero-counter > div {
        background: var(--paper-2);
        border-radius: var(--r-md);
        padding: 14px 10px;
    }

    .hero-counter .num {
        font-size: 20px;
        flex-wrap: wrap;
    }

    .hero-counter .num .unit {
        display: block;
        margin-left: 0;
        margin-top: 2px;
        font-size: 9.5px;
        letter-spacing: 0.04em;
    }

    /* ----- REALITY: tarjetas de stat + cita oscura ----- */

    .stats {
        gap: 10px;
        margin-top: 28px;
    }

    .stat {
        background: var(--paper);
        border-radius: var(--r-md);
        padding: 18px 14px 16px;
    }

    .stat .figure {
        font-size: 34px;
        color: var(--terra);
    }

    .stat .figure-label {
        font-size: 12.5px;
        margin-top: 10px;
    }

    /* Cita oscura (tipo .quote-card del móvil) */
    .quote-block {
        background: var(--ink);
        color: var(--paper);
    }

    .quote-block .mark {
        color: var(--gold);
        opacity: 0.85;
    }

    .quote-block blockquote {
        color: var(--paper);
        font-size: 15.5px;
    }

    .quote-block cite {
        color: rgba(250, 246, 238, 0.7);
    }

    /* ----- JOLIE: carrusel swipe horizontal ----- */

    .jolie-grid {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .jolie-text {
        order: 0;
    }

    .jolie-photos {
        order: 1;
        /* Convierte el grid en carrusel horizontal */
        display: flex !important;
        grid-template-columns: unset;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin-left: -18px;
        margin-right: -18px;
        padding-left: 18px;
        padding-right: 18px;
        padding-bottom: 4px;
        gap: 12px;
        scrollbar-width: none;
        will-change: auto;
    }

    .jolie-photos::-webkit-scrollbar {
        display: none;
    }

    .jolie-photos .p1 {
        flex: 0 0 84%;
        grid-row: unset;
        aspect-ratio: 3 / 4;
        transform: translateY(0) !important;
        scroll-snap-align: start;
    }

    .jolie-photos .p2,
    .jolie-photos .p3 {
        flex: 0 0 78%;
        aspect-ratio: 3 / 4;
        transform: translateY(0) !important;
        scroll-snap-align: start;
    }

    .jolie-text p {
        font-size: 16px;
        line-height: 1.6;
    }

    .jolie-text .pull {
        font-size: 20px;
        border-left: 3px solid var(--gold);
        padding-left: 14px;
        font-weight: 400;
        font-style: italic;
        font-family: Georgia, "Times New Roman", serif;
        color: var(--terra-deep);
        margin: 18px 0;
        letter-spacing: 0;
    }

    /* ----- SOLUTION: tema claro + acordeón ----- */

    .solution {
        background: var(--paper-2);
        color: var(--ink);
    }

    .solution h2,
    .solution .eyebrow {
        color: var(--ink);
    }

    .solution .eyebrow {
        color: var(--terra-deep);
    }

    .solution .lead {
        color: var(--ink-2);
    }

    .solution-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .solution-grid > .reveal {
        order: 0;
    }

    /* Foto debajo del texto, full-bleed */
    .solution-photo {
        order: 1;
        margin-left: -18px;
        margin-right: -18px;
        border-radius: 0;
        aspect-ratio: 3 / 2;
        margin-top: 24px;
    }

    /* Texto de pilares: colores sobre fondo claro */
    .solution .pillar h4 {
        color: var(--ink);
    }

    .solution .pillar p {
        color: var(--ink-2);
    }

    .solution .pillar .num {
        color: var(--terra);
    }

    /* Acordeón (clase añadida por JS) */
    .pillars-accordion {
        border-top: 1px solid var(--line);
        gap: 0;
        margin-top: 22px;
    }

    .pillars-accordion .pillar {
        display: grid;
        grid-template-columns: 36px 1fr 32px;
        gap: 0 12px;
        padding: 16px 0;
        background: transparent;
        border: none;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        cursor: pointer;
        min-height: unset;
        align-items: start;
        overflow: visible;
        transform: none;
        transition: none;
    }

    .pillars-accordion .pillar:hover,
    .pillars-accordion .pillar:hover::after {
        transform: none;
        background: transparent;
        border-color: transparent;
    }

    .pillars-accordion .pillar .num {
        margin-top: 2px;
        font-size: 11px;
    }

    .pillars-accordion .pillar h4 {
        font-size: 16px;
        font-weight: 600;
        margin: 0;
        padding-top: 0;
    }

    .pillars-accordion .pillar.open h4 {
        color: var(--terra-deep);
    }

    /* Cuerpo colapsable (envuelto por JS) */
    .pillar-body {
        grid-column: 2;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    }

    .pillars-accordion .pillar.open .pillar-body {
        max-height: 320px;
    }

    .pillar-body p {
        color: var(--ink-2) !important;
        font-size: 14.5px;
        line-height: 1.55;
        padding-top: 10px;
        padding-bottom: 12px;
        margin: 0;
    }

    /* Chevron (inyectado por JS) */
    .pillar-chev {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: var(--paper);
        border: 1px solid var(--line);
        color: var(--ink);
        transition: transform 0.3s ease, background 0.18s ease;
        margin-top: 0;
        flex-shrink: 0;
    }

    .pillar-chev svg {
        width: 14px;
        height: 14px;
        display: block;
        fill: none;
        stroke: currentColor;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .pillars-accordion .pillar.open .pillar-chev {
        transform: rotate(180deg);
        background: var(--terra);
        border-color: var(--terra);
        color: #fff;
    }

    /* ----- IMPACT: carrusel de tiers horizontal ----- */

    .impact .ladders {
        display: flex !important;
        grid-template-columns: unset;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin-left: -18px;
        margin-right: -18px;
        padding: 4px 18px 18px;
        gap: 12px;
        scrollbar-width: none;
        margin-top: 22px;
    }

    .impact .ladders::-webkit-scrollbar {
        display: none;
    }

    .impact .ladder {
        flex: 0 0 72%;
        scroll-snap-align: center;
        min-height: 200px;
        background: var(--paper-2);
        border: none;
        padding: 22px 18px;
        gap: 12px;
        transform: none;
        box-shadow: none;
    }

    .impact .ladder:hover {
        transform: none;
        box-shadow: none;
    }

    .impact .ladder .icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: var(--paper);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
        color: var(--terra);
        transition: background 0.25s ease, color 0.25s ease;
    }

    .impact .ladder .price {
        font-size: 34px;
    }

    /* Estado activo: tarjeta oscura */
    .impact .ladder.active {
        background: var(--ink);
        color: var(--paper);
        border-color: transparent;
        box-shadow: 0 12px 36px rgba(28, 29, 26, 0.28);
        transform: translateY(-2px);
    }

    .impact .ladder.active .price {
        color: var(--gold);
    }

    .impact .ladder.active .item {
        color: rgba(250, 246, 238, 0.85);
    }

    .impact .ladder.active .icon {
        background: var(--terra);
        color: #fff;
    }

    /* Indicadores de posición (inyectados por JS) */
    .tier-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        margin-top: 6px;
    }

    .tier-dots .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--line);
        transition: width 0.25s ease, background 0.25s ease;
    }

    .tier-dots .dot.active {
        width: 22px;
        border-radius: 6px;
        background: var(--terra);
    }

    /* ----- FLOAT DONATE: sincroniza importe en etiqueta ----- */

    .float-donate .float-amount {
        display: block;
        font-size: 15px;
        font-weight: 600;
        color: var(--paper);
    }

    .float-donate .float-amount b {
        color: var(--gold);
    }

    /* ----- SOLUTION: fondo pilares antes de accordion ----- */

    .solution .pillars .pillar {
        background: transparent;
        border-color: var(--line);
    }

    /* ----- ROADMAP: fondo claro ----- */

    section.tight:not(.reality) {
        background: var(--paper-2);
    }

    /* ----- TRANSPARENCY: fondo ligeramente más claro ----- */

    section.tight.reality {
        background: var(--paper);
    }

    .trans-card {
        background: var(--paper-2);
    }

    /* ----- FUTURE BLEED: texto alineado a la izquierda ----- */

    .future-bleed .content {
        text-align: left;
    }

    /* ----- FINAL STRIP: tema claro + postal primero ----- */

    .final-strip {
        background: var(--paper-2);
        color: var(--ink);
    }

    .final-strip::before,
    .final-strip::after {
        display: none;
    }

    .final-strip h2 {
        color: var(--ink);
    }

    .final-strip h2 .hand {
        color: var(--terra-deep);
    }

    .final-strip .lead-final {
        color: var(--ink-2);
    }

    .final-strip-grid {
        display: flex;
        flex-direction: column;
        padding: 56px 0 64px;
        gap: 0;
    }

    .final-postcard {
        order: -1;
        max-width: 100%;
        margin: 0 0 28px;
        aspect-ratio: 4 / 5;
        transform: rotate(-1.2deg);
    }

    .final-strip .btn-primary {
        background: var(--terra);
        color: #fff;
    }

    .final-strip .btn-primary:hover {
        background: var(--terra-deep);
        color: #fff;
    }

    .final-strip .micro {
        background: var(--paper);
        border-left: 3px solid var(--gold);
        border-top: none;
        padding: 18px;
        border-radius: var(--r-md);
        font-style: normal;
        font-family: inherit;
        font-size: 15px;
        line-height: 1.55;
        color: var(--ink-2);
        max-width: 100%;
    }

    .final-strip .micro b {
        color: var(--terra-deep);
        font-size: 22px;
        font-style: normal;
        letter-spacing: -0.015em;
    }
}
