/* ============================================
   FINANCIA — Crowdfunding Page
   ============================================ */

.financia-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 4rem;
}

.financia-hero .page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3) contrast(1.15);
    z-index: 0;
}

.financia-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.7) 70%, rgba(10,10,10,0.95) 100%),
        radial-gradient(ellipse at 50% 50%, rgba(139, 26, 26, 0.15) 0%, transparent 60%);
    z-index: 1;
}

.financia-hero .container {
    position: relative;
    z-index: 2;
}

.urgent-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(201, 168, 76, 0.4);
    background: rgba(201, 168, 76, 0.05);
    margin-bottom: 2rem;
    text-transform: uppercase;
    animation: pulse-tag 2s ease-in-out infinite;
}

@keyframes pulse-tag {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.3); }
    50% { box-shadow: 0 0 0 12px rgba(201, 168, 76, 0); }
}

.financia-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.financia-title em {
    color: var(--gold);
    font-style: italic;
}

.financia-tagline {
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    color: var(--white);
    max-width: 750px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.financia-tagline strong {
    color: var(--gold);
    font-size: 1.2em;
}

.financia-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 1.1rem 3rem;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
}

/* ---- Speakers credits ---- */
.section-video {
    background: var(--dark);
}

.speakers-credits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.speaker {
    text-align: center;
    padding: 1.5rem;
    border-top: 2px solid var(--gold);
    background: rgba(201, 168, 76, 0.04);
}

.speaker strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.speaker span {
    font-size: 0.85rem;
    color: var(--gray-light);
    line-height: 1.5;
}

/* ---- Story ---- */
.section-story {
    background: var(--black);
}

.big-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.big-number {
    padding: 2rem 1rem;
    background: linear-gradient(135deg, rgba(139, 26, 26, 0.08), rgba(201, 168, 76, 0.04));
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.big-number .num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.big-number .num-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ---- Why donate ---- */
.section-why {
    background: var(--dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s var(--ease);
}

.why-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    color: var(--gold);
}

.why-icon svg {
    width: 100%;
    height: 100%;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.why-card strong {
    color: var(--gold);
}

/* ---- Donate Section ---- */
.section-donate {
    position: relative;
    background: var(--black);
    overflow: hidden;
}

.donate-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(139, 26, 26, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.section-donate .container {
    position: relative;
}

.donate-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin: 2rem 0 4rem;
}

.amount-btn {
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    color: var(--white);
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    min-width: 100px;
}

.amount-btn:last-child {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.amount-btn:hover,
.amount-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.donate-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.donate-method {
    background: var(--dark-2);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 2.5rem;
    transition: all 0.4s var(--ease);
}

.donate-method:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.method-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.method-icon {
    width: 56px;
    height: 56px;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    width: 28px;
    height: 28px;
}

.method-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.method-fee {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.donate-method > p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.iban-box {
    background: var(--black);
    border: 1px solid var(--dark-3);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.iban-row {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 1rem;
    align-items: center;
    font-size: 0.9rem;
}

.iban-label {
    color: var(--gold);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.iban-value {
    color: var(--white);
    word-break: break-all;
}

.iban-value.mono {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.copy-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.4rem 0.9rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    font-weight: 600;
}

.copy-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.copy-btn.copied {
    background: #2a7a2a;
    border-color: #2a7a2a;
    color: var(--white);
}

.iban-note {
    font-size: 0.8rem !important;
    color: var(--gray) !important;
    font-style: italic;
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

/* ---- Credits Pledge ---- */
.credits-pledge {
    margin-top: 1.25rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.02));
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-left: 3px solid var(--gold);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.credits-pledge::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.credits-pledge-icon {
    width: 36px;
    height: 36px;
    color: var(--gold);
    flex-shrink: 0;
    animation: starShine 3s ease-in-out infinite;
}

@keyframes starShine {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.85; }
    50% { transform: scale(1.1) rotate(8deg); opacity: 1; filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.6)); }
}

.credits-pledge-icon svg {
    width: 100%;
    height: 100%;
}

.credits-pledge-text {
    position: relative;
    z-index: 1;
}

.credits-pledge-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--gold);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.credits-pledge-text p {
    font-size: 0.85rem !important;
    color: var(--gray-light) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.credits-pledge-text em {
    color: var(--white);
    font-style: italic;
    font-weight: 500;
}

.donate-confirm {
    text-align: center;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.02));
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 2.5rem;
    margin-top: 2rem;
}

.donate-confirm h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.donate-confirm p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.donate-confirm strong {
    color: var(--gold);
}

/* ---- Institutional ---- */
.section-colabora {
    background: var(--dark);
}

.institutional-contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.inst-card {
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    border-left: 3px solid var(--gold);
    padding: 1.5rem;
}

.inst-card strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.inst-card span,
.inst-card a {
    font-size: 0.85rem;
    color: var(--gray-light);
    line-height: 1.5;
}

.inst-card a {
    color: var(--gold);
}

/* ---- Final CTA ---- */
.cta-final {
    background: linear-gradient(135deg, var(--black), var(--dark));
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.cta-final .hero-cta {
    margin-top: 1.5rem;
}

/* ---- Custom Amount Modal ---- */
.amount-modal {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s;
}

.amount-modal.open {
    opacity: 1;
    visibility: visible;
}

.amount-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(8px);
}

.amount-modal-content {
    position: relative;
    background: linear-gradient(180deg, var(--dark-2), var(--black));
    border: 1px solid rgba(201, 168, 76, 0.3);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(201, 168, 76, 0.08);
    padding: 3rem 2.5rem 2.5rem;
    max-width: 460px;
    width: 100%;
    text-align: center;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s var(--ease-out);
}

.amount-modal.open .amount-modal-content {
    transform: translateY(0) scale(1);
}

.amount-modal-content::before,
.amount-modal-content::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--gold);
}

.amount-modal-content::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.amount-modal-content::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.amount-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--dark-3);
    color: var(--gray);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
}

.amount-modal-close:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.amount-modal-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    color: var(--gold);
    animation: starShine 3s ease-in-out infinite;
}

.amount-modal-icon svg {
    width: 100%;
    height: 100%;
}

.amount-modal-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.amount-modal-title em {
    color: var(--gold);
    font-style: italic;
}

.amount-modal-text {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.amount-modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.amount-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--black);
    border: 1px solid rgba(201, 168, 76, 0.3);
    transition: border-color 0.3s var(--ease);
}

.amount-input-wrap:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.amount-currency {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    padding: 0 1.25rem;
    border-right: 1px solid var(--dark-3);
}

#amountInput {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 2rem;
    padding: 1rem 1.25rem;
    outline: none;
    -moz-appearance: textfield;
    text-align: left;
    letter-spacing: 0.05em;
}

#amountInput::-webkit-outer-spin-button,
#amountInput::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#amountInput::placeholder {
    color: var(--gray-dark);
}

@media (max-width: 480px) {
    .amount-modal-content {
        padding: 2.5rem 1.5rem 2rem;
    }
    .amount-modal-title {
        font-size: 1.5rem;
    }
    .amount-currency,
    #amountInput {
        font-size: 1.5rem;
    }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .donate-methods,
    .speakers-credits,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .institutional-contact {
        grid-template-columns: 1fr;
    }

    .big-numbers {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .iban-row {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .copy-btn {
        justify-self: start;
    }

    .donate-method {
        padding: 1.75rem;
    }

    .amount-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1.2rem;
        min-width: 80px;
    }
}

/* RADIO INTERVIEW EMBED */
.section-radio {
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(201, 168, 76, 0.03) 100%);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.section-radio + .section-story {
    padding-top: 2rem;
}

.section-radio .section-header {
    margin-bottom: 2.5rem;
}

.radio-embed {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.radio-embed iframe {
    display: block;
    width: 100%;
    border-radius: 4px;
    background: #000;
}

.radio-source {
    margin: 1.25rem 0 0;
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.55);
}

.radio-source a {
    color: #c9a84c;
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.4);
    transition: border-color 0.2s ease;
}

.radio-source a:hover {
    border-bottom-color: #c9a84c;
}

@media (max-width: 768px) {
    .radio-embed {
        padding: 1.25rem;
    }
}

/* ============================================
   REWARD TIERS — Verkami-style
   ============================================ */
.section-tiers {
    background: linear-gradient(180deg, var(--color-bg, #0a0a0a) 0%, rgba(201, 168, 76, 0.04) 100%);
    padding: 5rem 0;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0 2rem;
}

.tier-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 6px;
    padding: 2rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.tier-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.tier-card.tier-popular {
    border-color: rgba(201, 168, 76, 0.55);
    background: rgba(201, 168, 76, 0.04);
}

.tier-card.tier-premium {
    border-color: rgba(201, 168, 76, 0.65);
    background:
        linear-gradient(180deg, rgba(201, 168, 76, 0.08) 0%, rgba(201, 168, 76, 0.02) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tier-card.tier-top {
    border-color: #c9a84c;
    box-shadow: 0 15px 50px rgba(201, 168, 76, 0.15);
}

.tier-badge {
    position: absolute;
    top: -10px;
    right: 1rem;
    padding: 0.3rem 0.85rem;
    background: rgba(245, 240, 225, 0.95);
    color: #0a0a0a;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 3px;
}

.tier-badge-gold {
    background: #c9a84c;
    color: #0a0a0a;
}

.tier-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
    color: #c9a84c;
    margin-bottom: 0.4rem;
}

.tier-amount span {
    font-size: 1.6rem;
    font-weight: 400;
    margin-left: 0.15rem;
    vertical-align: super;
    color: rgba(201, 168, 76, 0.7);
}

.tier-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #f5f0e1;
    margin: 0 0 1.2rem;
    font-weight: 700;
}

.tier-rewards {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    flex: 1;
}

.tier-rewards li {
    position: relative;
    padding-left: 1.4rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(245, 240, 225, 0.8);
    margin-bottom: 0.6rem;
}

.tier-rewards li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c9a84c;
}

.tier-btn {
    width: 100%;
    margin-top: auto;
}

.btn-sm {
    padding: 0.7rem 1.2rem;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
}

.tiers-note {
    text-align: center;
    color: rgba(245, 240, 225, 0.6);
    font-size: 0.9rem;
    margin-top: 2rem;
}

.tiers-note a {
    color: #c9a84c;
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.4);
}

@media (max-width: 768px) {
    .tiers-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .section-tiers {
        padding: 3.5rem 0;
    }
}
