@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* ==========================================
   NEON BRUTALIST CYBERPUNK THEME
   ========================================== */

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

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0d0d12;
    color: #ffffff;
    overflow-x: hidden;
}

/* Neon glow effects - Enhanced for better readability */
.neon-cyan {
    color: #00fff0;
    text-shadow:
        0 0 5px rgba(0, 255, 240, 0.8),
        0 0 10px rgba(0, 255, 240, 0.6),
        0 0 20px rgba(0, 255, 240, 0.4),
        0 0 1px #000,
        0 0 2px #000;
}

.neon-magenta {
    color: #ff00ff;
    text-shadow:
        0 0 5px rgba(255, 0, 255, 0.8),
        0 0 10px rgba(255, 0, 255, 0.6),
        0 0 20px rgba(255, 0, 255, 0.4),
        0 0 1px #000,
        0 0 2px #000;
}

.neon-yellow {
    color: #ffff00;
    text-shadow:
        0 0 5px rgba(255, 255, 0, 0.8),
        0 0 10px rgba(255, 255, 0, 0.6),
        0 0 20px rgba(255, 255, 0, 0.4),
        0 0 1px #000,
        0 0 2px #000;
}

/* Glassmorphism */
.glass {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 255, 240, 0.3);
}

.glass-magenta {
    background: rgba(46, 26, 46, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 0, 255, 0.3);
}

/* Brutalist shadows with neon */
.brutal-shadow-cyan {
    box-shadow: 6px 6px 0 #00fff0;
}

.brutal-shadow-magenta {
    box-shadow: 6px 6px 0 #ff00ff;
}

.brutal-shadow-yellow {
    box-shadow: 6px 6px 0 #ffff00;
}

/* Hover transforms */
.brutal-hover:hover {
    transform: translate(-3px, -3px);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brutal-hover:hover.brutal-shadow-cyan {
    box-shadow: 9px 9px 0 #00fff0;
}

.brutal-hover:hover.brutal-shadow-magenta {
    box-shadow: 9px 9px 0 #ff00ff;
}

.brutal-hover:hover.brutal-shadow-yellow {
    box-shadow: 9px 9px 0 #ffff00;
}

/* ==========================================
   3D SYNTHWAVE GRID BACKGROUND
   ========================================== */
.cyber-grid {
    position: fixed;
    inset: 0;
    perspective: 1000px;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.cyber-grid::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 79px,
            rgba(0, 255, 240, 0.15) 79px,
            rgba(0, 255, 240, 0.15) 81px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 79px,
            rgba(255, 0, 255, 0.1) 79px,
            rgba(255, 0, 255, 0.1) 81px
        );
    transform: rotateX(75deg) translateZ(-200px);
    animation: grid-move 20s linear infinite;
}

.cyber-grid::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 80% 50% at 50% 100%,
        transparent 0%,
        rgba(13, 13, 18, 0.9) 70%,
        rgba(13, 13, 18, 1) 100%
    );
}

@keyframes grid-move {
    0% {
        transform: rotateX(75deg) translateZ(-200px) translateY(0);
    }
    100% {
        transform: rotateX(75deg) translateZ(-200px) translateY(80px);
    }
}

/* ==========================================
   ENHANCED GLITCH EFFECTS
   ========================================== */
@keyframes glitch {
    0%, 100% {
        transform: translate(0);
    }
    33% {
        transform: translate(-2px, 2px);
    }
    66% {
        transform: translate(2px, -2px);
    }
}

.glitch {
    animation: glitch 3s infinite;
}

@keyframes glitch-intense {
    0% {
        transform: translate(0);
        filter: hue-rotate(0deg);
    }
    10% {
        transform: translate(-5px, 3px);
        filter: hue-rotate(90deg);
    }
    20% {
        transform: translate(5px, -3px);
        filter: hue-rotate(180deg);
    }
    30% {
        transform: translate(-3px, -5px);
        filter: hue-rotate(270deg);
    }
    40% {
        transform: translate(3px, 5px);
        filter: hue-rotate(0deg);
    }
    50%, 100% {
        transform: translate(0);
        filter: hue-rotate(0deg);
    }
}

.glitch-intense {
    position: relative;
    animation: glitch-intense 0.3s ease-in-out;
}

/* Glitch text effect with layers - Reduced opacity for clarity */
.glitch-text {
    position: relative;
    z-index: 10;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.glitch-text::before {
    animation: glitch-anim-1 2.5s infinite;
    color: #00fff0;
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-anim-2 3s infinite;
    color: #ff00ff;
    z-index: -2;
}

@keyframes glitch-anim-1 {
    0%, 100% {
        transform: translate(0);
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    }
    20% {
        transform: translate(-3px, 2px);
        clip-path: polygon(0 15%, 100% 15%, 100% 100%, 0 100%);
    }
    40% {
        transform: translate(-3px, -2px);
        clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0 100%);
    }
    60% {
        transform: translate(3px, 2px);
        clip-path: polygon(0 0, 100% 0, 100% 25%, 0 25%);
    }
    80% {
        transform: translate(-3px, -2px);
        clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
    }
}

@keyframes glitch-anim-2 {
    0%, 100% {
        transform: translate(0);
        clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
    }
    20% {
        transform: translate(3px, -2px);
        clip-path: polygon(0 0, 100% 0, 100% 20%, 0 20%);
    }
    40% {
        transform: translate(-3px, 2px);
        clip-path: polygon(0 30%, 100% 30%, 100% 80%, 0 80%);
    }
    60% {
        transform: translate(3px, -2px);
        clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
    }
    80% {
        transform: translate(-3px, 2px);
        clip-path: polygon(0 40%, 100% 40%, 100% 100%, 0 100%);
    }
}

/* Pulse animation for neon */
@keyframes neon-pulse {
    0%, 100% {
        opacity: 1;
        filter: brightness(1);
    }
    50% {
        opacity: 0.8;
        filter: brightness(1.2);
    }
}

.neon-pulse {
    animation: neon-pulse 2s ease-in-out infinite;
}

/* Fade slide animations */
@keyframes fade-slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-slide-up {
    animation: fade-slide-up 0.6s ease-out;
}

/* Scan line effect */
@keyframes scan-line {
    0% {
        top: -100%;
    }
    100% {
        top: 100%;
    }
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(0, 255, 240, 0.5), transparent);
    animation: scan-line 8s linear infinite;
    pointer-events: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0d0d12;
    border-left: 2px solid #00fff0;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00fff0, #ff00ff);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff00ff, #ffff00);
}

/* Tab indicator */
.tab-indicator {
    position: absolute;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, #00fff0, #ff00ff);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Floating particles */
@keyframes float-particle {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00fff0;
    border-radius: 50%;
    animation: float-particle 6s ease-in-out infinite;
}

/* Button ripple effect */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    width: 20px;
    height: 20px;
    animation: ripple 0.6s ease-out;
}

/* Loading spinner */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spinner {
    border: 3px solid rgba(0, 255, 240, 0.2);
    border-top-color: #00fff0;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 0.8s linear infinite;
}

/* ==========================================
   HOLOGRAPHIC UI PANELS
   ========================================== */
/* Cut corners (clipped corners) for futuristic panels */
.holo-panel {
    position: relative;
    clip-path: polygon(
        0 0,
        calc(100% - 20px) 0,
        100% 20px,
        100% 100%,
        20px 100%,
        0 calc(100% - 20px)
    );
}

.holo-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(0, 255, 240, 0.015) 0px,
            transparent 1px,
            transparent 2px,
            rgba(0, 255, 240, 0.015) 3px
        );
    pointer-events: none;
    animation: scanline-move 8s linear infinite;
    z-index: 1;
}

.holo-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: 1;
}

@keyframes scanline-move {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100%);
    }
}

/* Enhanced glassmorphism with holographic effect */
.glass-holo {
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 255, 240, 0.3);
    position: relative;
    overflow: hidden;
}

.glass-holo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(0, 255, 240, 0.05) 50%,
        transparent 70%
    );
    animation: holo-shine 3s linear infinite;
    pointer-events: none;
}

@keyframes holo-shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* ==========================================
   CYBER DECORATIONS
   ========================================== */
/* Corner brackets */
.cyber-corners {
    position: relative;
}

.cyber-corners::before,
.cyber-corners::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #00fff0;
}

.cyber-corners::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.cyber-corners::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

/* Add extra corners with pseudo elements on child */
.cyber-corners-all::before,
.cyber-corners-all::after,
.cyber-corners-all > *:first-child::before,
.cyber-corners-all > *:first-child::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid #00fff0;
}

.cyber-corners-all::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.cyber-corners-all::after {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.cyber-corners-all > *:first-child::before {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.cyber-corners-all > *:first-child::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

/* Crosshair decoration */
.cyber-crosshair {
    position: absolute;
    width: 30px;
    height: 30px;
    pointer-events: none;
}

.cyber-crosshair::before,
.cyber-crosshair::after {
    content: '';
    position: absolute;
    background: #ff00ff;
}

.cyber-crosshair::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.cyber-crosshair::after {
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

/* Technical numbers decoration - Lower opacity */
.cyber-tech-numbers {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: #00fff0;
    opacity: 0.15;
    letter-spacing: 2px;
    animation: flicker 3s infinite;
    z-index: 0;
}

@keyframes flicker {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.25; }
}

/* Data stream effect - Lower opacity */
.data-stream {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 8px;
    color: #00fff0;
    opacity: 0.1;
    white-space: nowrap;
    animation: stream-scroll 15s linear infinite;
    z-index: 0;
}

@keyframes stream-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* HUD lines */
.hud-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00fff0, transparent);
    height: 1px;
    animation: hud-pulse 2s ease-in-out infinite;
}

@keyframes hud-pulse {
    0%, 100% {
        opacity: 0.3;
        width: 100%;
    }
    50% {
        opacity: 0.8;
        width: 80%;
    }
}

/* Glowing accent lines */
.accent-line-top,
.accent-line-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        #00fff0 20%,
        #ff00ff 50%,
        #ffff00 80%,
        transparent 100%
    );
    box-shadow: 0 0 10px rgba(0, 255, 240, 0.5);
}

.accent-line-top {
    top: 0;
}

.accent-line-bottom {
    bottom: 0;
}

/* Cyberpunk button with glitch effect on hover */
.cyber-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cyber-btn:hover {
    animation: glitch-intense 0.3s ease-in-out;
}

.cyber-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00fff0, #ff00ff, #ffff00, #00fff0);
    background-size: 400%;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: gradient-rotate 3s linear infinite;
    z-index: -1;
}

.cyber-btn:hover::before {
    opacity: 1;
}

@keyframes gradient-rotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Scan effect overlay - Reduced opacity for text clarity */
.scan-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 255, 240, 0.03) 50%,
        transparent 100%
    );
    pointer-events: none;
    animation: scan-vertical 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes scan-vertical {
    0%, 100% {
        transform: translateY(-100%);
    }
    50% {
        transform: translateY(100%);
    }
}

/* ==========================================
   TEXT CLARITY ENHANCEMENTS
   ========================================== */
/* Ensure text is always readable */
.text-clear {
    position: relative;
    z-index: 10 !important;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
}

/* Important text with dark background */
.text-important {
    position: relative;
    z-index: 10 !important;
    padding: 0.25rem 0.5rem;
    background: rgba(13, 13, 18, 0.8);
    border-radius: 0.25rem;
}

/* Amount displays with enhanced visibility */
.amount-display {
    position: relative;
    z-index: 10 !important;
    font-weight: 900 !important;
    letter-spacing: 0.02em;
    text-shadow:
        0 0 10px rgba(0, 0, 0, 1),
        0 0 20px rgba(0, 0, 0, 0.8),
        0 0 5px currentColor,
        0 0 10px currentColor;
}

/* ==========================================
   HOME PAGE LAYOUT HELPERS
   ========================================== */
.metric-panel {
    background: rgba(7, 11, 22, 0.72);
    border: 1px solid rgba(0, 255, 240, 0.24);
    border-radius: 22px;
    padding: 1rem 1rem 1.1rem;
    min-height: 150px;
}

.metric-panel--magenta {
    border-color: rgba(255, 0, 255, 0.24);
}

.metric-panel--yellow {
    border-color: rgba(255, 255, 0, 0.24);
}

.metric-label {
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.46);
    margin-bottom: 0.8rem;
}

.metric-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

.metric-copy {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
    line-height: 1.45;
}

.process-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(11, 14, 25, 0.6);
}

.process-step,
.instruction-step {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 900;
}

.process-title {
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.process-copy {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
    line-height: 1.45;
}

.mini-status {
    padding: 0.9rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 12, 20, 0.72);
}

.mini-status__label {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.45rem;
}

.mini-status__value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.soft-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.2rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.soft-chip--cyan {
    color: #00fff0;
    border-color: rgba(0, 255, 240, 0.28);
}

.soft-chip--magenta {
    color: #ff00ff;
    border-color: rgba(255, 0, 255, 0.28);
}

.soft-chip--yellow {
    color: #ffff00;
    border-color: rgba(255, 255, 0, 0.28);
}

.benefit-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(10, 12, 20, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.benefit-row i {
    font-size: 1.15rem;
    margin-top: 0.15rem;
}

.benefit-row strong {
    display: block;
    margin-bottom: 0.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.82rem;
}

.benefit-row p {
    font-size: 0.94rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.68);
}

.placeholder-stat {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.placeholder-stat span {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.45rem;
}

.placeholder-stat strong {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.instruction-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(12, 15, 22, 0.62);
}

.instruction-card h4 {
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.instruction-card p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
    line-height: 1.45;
}

.homepage-feed {
    max-height: 28rem;
    overflow-y: auto;
    padding-right: 0.2rem;
}

.support-card {
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 12, 20, 0.72);
}

.support-card__header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0.7rem;
}

.support-card__name {
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #00fff0;
}

.support-card__amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #ff00ff;
    text-align: right;
}

.support-card__message {
    white-space: pre-line;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.96rem;
    line-height: 1.5;
    margin-bottom: 0.7rem;
}

.support-card__message--muted {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.support-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.live-ticker {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
}

.live-ticker__label {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(0, 255, 240, 0.25);
    border-radius: 999px;
    background: rgba(0, 255, 240, 0.08);
    color: #00fff0;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    white-space: nowrap;
}

.live-ticker__viewport {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(8, 12, 19, 0.82);
}

.live-ticker__track {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    width: max-content;
    min-width: 100%;
    padding: 0.75rem 1.2rem;
    animation: ticker-scroll 24s linear infinite;
}

.live-ticker__item {
    flex: 0 0 auto;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    white-space: nowrap;
}

.live-ticker__item::after {
    content: "•";
    margin-left: 0.9rem;
    color: rgba(0, 255, 240, 0.55);
}

.live-ticker__item:last-child::after {
    display: none;
}

.sawer-popup-stack {
    position: fixed;
    top: 1.25rem;
    right: 1rem;
    z-index: 60;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: min(360px, calc(100vw - 2rem));
}

.sawer-popup {
    pointer-events: none;
    padding: 1rem 1.05rem;
    border: 2px solid rgba(0, 255, 240, 0.4);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(0, 255, 240, 0.14), rgba(255, 0, 255, 0.14)),
        rgba(9, 12, 19, 0.94);
    box-shadow: 8px 8px 0 #00fff0;
    backdrop-filter: blur(20px);
    transform: translateX(120%);
    opacity: 0;
    animation: sawer-popup-in 300ms ease-out forwards;
}

.sawer-popup.is-leaving {
    animation: sawer-popup-out 260ms ease-in forwards;
}

.sawer-popup__eyebrow {
    margin-bottom: 0.4rem;
    color: #ffff00;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.sawer-popup__name {
    color: #00fff0;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sawer-popup__amount {
    margin-top: 0.3rem;
    color: #ff00ff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
}

.sawer-popup__message {
    margin-top: 0.55rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    line-height: 1.45;
    white-space: pre-line;
}

.thankyou-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.thankyou-modal.hidden {
    display: none;
}

.thankyou-modal__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 0, 255, 0.18), transparent 34%),
        radial-gradient(circle at bottom right, rgba(0, 255, 240, 0.18), transparent 36%),
        rgba(4, 6, 11, 0.82);
    backdrop-filter: blur(10px);
}

.thankyou-modal__dialog {
    position: relative;
    isolation: isolate;
    width: min(100%, 980px);
    max-height: calc(100vh - 3rem);
    overflow: auto;
    padding: 1.5rem;
    border: 3px solid rgba(0, 255, 240, 0.5);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(10, 13, 20, 0.96), rgba(21, 11, 31, 0.95)),
        #0d0d12;
    box-shadow: 14px 14px 0 #00fff0;
}

.thankyou-modal__dialog::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    pointer-events: none;
}

.thankyou-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 0, 0.7);
    border-radius: 14px;
    background: rgba(255, 255, 0, 0.08);
    color: #ffff00;
    font-size: 1.1rem;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 180ms ease, background 180ms ease;
}

.thankyou-modal__close:hover {
    transform: translate(-2px, -2px);
    background: rgba(255, 255, 0, 0.18);
}

.thankyou-hero {
    position: relative;
    z-index: 1;
    margin-bottom: 1.25rem;
    padding-right: 3.75rem;
}

.thankyou-hero__eyebrow {
    color: #ffff00;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.45em;
    text-transform: uppercase;
}

.thankyou-hero__title {
    margin-top: 0.65rem;
    color: #00fff0;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-shadow: 0 0 24px rgba(0, 255, 240, 0.22);
}

.thankyou-hero__subtitle {
    margin-top: 0.6rem;
    max-width: 42rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.5;
}

.thankyou-poster {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    margin-top: 1.5rem;
    border: 3px solid rgba(255, 0, 255, 0.65);
    border-radius: 30px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 0, 0.18), transparent 26%),
        radial-gradient(circle at top right, rgba(0, 255, 240, 0.2), transparent 32%),
        linear-gradient(145deg, rgba(7, 8, 15, 0.98), rgba(28, 12, 41, 0.96)),
        #0a0d14;
    box-shadow: 12px 12px 0 #ff00ff;
}

.thankyou-poster__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.02);
}

.thankyou-poster__grid,
.thankyou-poster__noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.thankyou-poster__grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: 0.3;
}

.thankyou-poster__noise {
    background:
        linear-gradient(transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
    animation: thankyou-scan 5.5s linear infinite;
}

.thankyou-poster__content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 620px;
}

.thankyou-poster__chip {
    align-self: flex-start;
    padding: 0.55rem 0.9rem;
    border: 2px solid rgba(255, 255, 0, 0.8);
    border-radius: 999px;
    background: rgba(255, 255, 0, 0.08);
    color: #ffff00;
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.thankyou-poster__headline {
    margin-top: 1.2rem;
    color: #ff00ff;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4.2vw, 4rem);
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 0.9;
    text-transform: uppercase;
}

.thankyou-poster__statement {
    margin-top: 1rem;
    max-width: 42rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 1.8vw, 1.28rem);
    line-height: 1.6;
    font-weight: 700;
}

.thankyou-poster__amount-panel {
    margin-top: 1.35rem;
    padding: 1.25rem 1.35rem 1.1rem;
    border: 3px solid rgba(255, 255, 0, 0.78);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 0, 0.1), rgba(255, 0, 255, 0.08)),
        rgba(255, 255, 255, 0.03);
    box-shadow: 8px 8px 0 rgba(255, 255, 0, 0.2);
}

.thankyou-poster__amount-label {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.thankyou-poster__amount {
    margin-top: 0.65rem;
    color: #ffff00;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.7rem, 6vw, 5.4rem);
    font-weight: 900;
    line-height: 0.98;
    text-shadow: 0 0 32px rgba(255, 255, 0, 0.14);
}

.thankyou-poster__meta-row {
    margin-top: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.thankyou-poster__meta {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 0.95rem;
    border: 2px solid rgba(0, 255, 240, 0.45);
    border-radius: 16px;
    background: rgba(0, 255, 240, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.thankyou-poster__meta--accent {
    border-color: rgba(0, 255, 240, 0.6);
    background: rgba(0, 255, 240, 0.12);
    color: #00fff0;
}

.thankyou-poster__message-box {
    margin-top: 1.5rem;
    padding: 1.1rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(7, 10, 17, 0.72);
}

.thankyou-poster__message-label {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.thankyou-poster__message {
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.02rem;
    line-height: 1.65;
    white-space: pre-line;
}

.thankyou-poster__footer {
    margin-top: auto;
    padding-top: 1.6rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.thankyou-poster__footer-text {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.thankyou-poster__footer-label {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.thankyou-poster__footer-link {
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    word-break: break-all;
    line-height: 1.45;
}

.thankyou-poster__footer-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1rem;
    border: 2px solid rgba(255, 0, 255, 0.55);
    border-radius: 16px;
    background: rgba(255, 0, 255, 0.08);
    color: #ff00ff;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.thankyou-actions {
    margin-top: 1.4rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.thankyou-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 58px;
    padding: 0.95rem 1rem;
    border: 3px solid transparent;
    border-radius: 18px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.thankyou-btn:hover {
    transform: translate(-3px, -3px);
}

.thankyou-btn--cyan {
    border-color: #00fff0;
    background: #00fff0;
    color: #0d0d12;
    box-shadow: 7px 7px 0 rgba(0, 255, 240, 0.85);
}

.thankyou-btn--magenta {
    border-color: #ff00ff;
    background: #ff00ff;
    color: #0d0d12;
    box-shadow: 7px 7px 0 rgba(255, 0, 255, 0.85);
}

.thankyou-btn--ghost {
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    box-shadow: 7px 7px 0 rgba(255, 255, 255, 0.16);
}

.thankyou-caption {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.85rem;
    line-height: 1.6;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-35%);
    }
}

@keyframes sawer-popup-in {
    0% {
        transform: translateX(120%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes sawer-popup-out {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(120%);
        opacity: 0;
    }
}

@keyframes thankyou-scan {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

@media (max-width: 640px) {
    .live-ticker {
        grid-template-columns: 1fr;
    }

    .live-ticker__label {
        justify-content: center;
    }

    .live-ticker__track {
        animation-duration: 18s;
    }

    .sawer-popup-stack {
        top: auto;
        bottom: 1rem;
        right: 1rem;
    }

    .metric-panel,
    .process-card,
    .instruction-card,
    .benefit-row,
    .placeholder-stat {
        border-radius: 18px;
    }

    .brutal-shadow-cyan {
        box-shadow: 4px 4px 0 #00fff0;
    }

    .brutal-shadow-magenta {
        box-shadow: 4px 4px 0 #ff00ff;
    }

    .brutal-shadow-yellow {
        box-shadow: 4px 4px 0 #ffff00;
    }

    .thankyou-modal {
        padding: 0.8rem;
    }

    .thankyou-modal__dialog {
        padding: 1rem;
        border-radius: 22px;
        box-shadow: 7px 7px 0 #00fff0;
    }

    .thankyou-poster,
    .thankyou-poster__content {
        min-height: 520px;
    }

    .thankyou-poster__content {
        padding: 1.15rem;
    }

    .thankyou-poster__statement {
        font-size: 0.98rem;
    }

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

    .thankyou-btn {
        min-height: 54px;
        font-size: 0.82rem;
    }
}
