/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove borders from all images, especially logos */
img {
    border: none !important;
    outline: none !important;
    background: transparent !important;
}

/* Specific rules for logo images */
img[src*="RWAMP-COIN-Logo"],
img[src*="logo"],
img[alt*="RWAMP"],
img[alt*="Logo"] {
    border: none !important;
    outline: none !important;
    background: transparent !important;
}

body {
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

body.loaded {
    opacity: 1;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(227, 6, 19, 0.1) 0%, rgba(255, 215, 0, 0.1) 50%, rgba(227, 6, 19, 0.1) 100%);
    background-size: 200% 200%;
    animation: gradient 15s ease infinite;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* Animated particles background */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float-particle 20s infinite ease-in-out;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-100vh) translateX(50px) scale(1.5);
        opacity: 0.5;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 4rem 1rem;
    max-width: 1400px;
    margin: 0 auto;
    min-height: calc(100vh - 8rem);
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    text-align: center;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-container {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.logo-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: contain;
    box-shadow: 0 25px 50px -12px rgba(227, 6, 19, 0.4), 0 0 60px rgba(255, 215, 0, 0.3), 0 0 0 8px rgba(255, 255, 255, 0.1);
    background: transparent;
    border: none;
    outline: none;
    transition: all 0.4s ease;
    animation: logo-glow 3s ease-in-out infinite;
}

@keyframes logo-glow {
    0%, 100% {
        box-shadow: 0 25px 50px -12px rgba(227, 6, 19, 0.4), 0 0 60px rgba(255, 215, 0, 0.3), 0 0 0 8px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 30px 60px -12px rgba(227, 6, 19, 0.5), 0 0 80px rgba(255, 215, 0, 0.4), 0 0 0 10px rgba(255, 255, 255, 0.15);
    }
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 255, 255, 0.3), 0 0 60px rgba(255, 215, 0, 0.2);
    animation: title-glow 3s ease-in-out infinite;
    letter-spacing: -0.02em;
}

@keyframes title-glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 215, 0, 0.2);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.5), 0 0 60px rgba(255, 215, 0, 0.4), 0 0 80px rgba(227, 6, 19, 0.3);
    }
}

.rocket {
    font-size: 3rem;
    display: inline-block;
    animation: rocket-float 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

@keyframes rocket-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
}

.btn-primary {
    background: #FFD700;
    color: #000000;
}

.btn-primary:hover {
    background: #FFC700;
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

/* Hero Form Styles */
.hero-form-wrapper {
    max-width: 550px;
    margin: 0 auto;
    animation: fadeInRight 1s ease-out 0.4s both;
    width: 100%;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
    display: block !important;
    visibility: visible !important;
}

.hero-form-container {
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.98) 0%, rgba(255, 140, 0, 0.98) 50%, rgba(255, 215, 0, 0.98) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 1.75rem;
    padding: 3rem 2.5rem;
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 215, 0, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: block;
    visibility: visible;
}

.hero-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero-form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 0.75rem;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

.hero-form-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

.hero-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.hero-form-group {
    text-align: left;
}

.hero-form-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
}

.hero-form-input {
    width: 100%;
    padding: 1.125rem 1.5rem;
    border-radius: 0.875rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.hero-form-input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.4), 0 8px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.hero-form-hint {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.625rem;
    text-align: left;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-submit-btn {
    width: 100%;
    background: white;
    color: #E30613;
    padding: 1.25rem 2.5rem;
    border-radius: 0.875rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.125rem;
    border: 3px solid white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(227, 6, 19, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-submit-btn:hover:not(:disabled)::before {
    width: 300px;
    height: 300px;
}

.hero-submit-btn:hover:not(:disabled) {
    background: #FFD700;
    color: #000;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.3);
    border-color: #FFD700;
}

.hero-submit-btn:active:not(:disabled) {
    transform: translateY(-1px) scale(0.98);
}

.hero-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.hero-success-message,
.hero-error-message {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.hero-success-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
}

.hero-success-icon .checkmark {
    font-size: 2rem;
    color: white;
    font-weight: bold;
}

.hero-success-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-success-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.hero-error-message {
    background: rgba(239, 68, 68, 0.2);
    border-radius: 0.75rem;
    border: 2px solid rgba(239, 68, 68, 0.4);
}

.hero-error-text {
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite, pulse-glow 2s ease-in-out infinite;
    opacity: 0;
    transition: opacity 1s ease-out;
    cursor: pointer;
    z-index: 10;
}

.scroll-indicator:hover {
    animation: bounce 1s infinite, pulse-glow 1s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
    }
}

.scroll-arrow {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

/* Color Variables */
:root {
    --primary: #E30613;
    --accent: #FFD700;
    --success: #10B981;
    --blue: #3B82F6;
}

.text-primary {
    color: var(--primary);
}

.text-accent {
    color: var(--accent);
}

.text-success {
    color: var(--success);
}

.font-bold {
    font-weight: 700;
}

/* About Section */
.about-section {
    padding: 6rem 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 6, 19, 0.3), transparent);
    animation: line-expand 3s ease-in-out infinite;
}

@keyframes line-expand {
    0%, 100% {
        transform: scaleX(0);
        opacity: 0;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

.about-container {
    max-width: 80rem;
    margin: 0 auto;
}

.about-content {
    animation: fadeInUp 0.8s ease-out;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    text-align: center;
}

.about-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.about-logo {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: contain;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 40px rgba(255, 215, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: logo-rotate 20s linear infinite;
    background: transparent;
    border: none;
    outline: none;
}

.about-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3), 0 0 60px rgba(255, 215, 0, 0.4);
    animation-play-state: paused;
}

@keyframes logo-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.about-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 3rem;
    height: 3rem;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 0 20px rgba(16, 185, 129, 0.4);
    animation: badge-bounce 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes badge-bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
}

.property-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.property-icon {
    text-align: center;
}

.property-icon-bg {
    width: 6rem;
    height: 6rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.property-icon-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.property-icon-bg:hover::before {
    width: 200%;
    height: 200%;
}

.property-icon-bg:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.property-icon-dubai {
    background: rgba(227, 6, 19, 0.15);
}

.property-icon-pakistan {
    background: rgba(255, 215, 0, 0.15);
}

.property-icon-saudi {
    background: rgba(16, 185, 129, 0.15);
}

.property-label {
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1F2937;
}

.about-text {
    text-align: center;
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.25rem;
    color: #1F2937;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.feature-check {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    position: relative;
    animation: check-pulse 2s ease-in-out infinite;
}

.feature-check::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid;
    opacity: 0;
    animation: check-ripple 2s ease-out infinite;
}

@keyframes check-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes check-ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.feature-check-primary {
    background: var(--primary);
}

.feature-check-accent {
    background: var(--accent);
    color: #000;
}

.feature-check-success {
    background: var(--success);
}

.about-feature .feature-text {
    color: #1F2937;
    line-height: 1.7;
    font-size: 1.0625rem;
    font-weight: 400;
}

.about-feature .feature-text .font-bold {
    color: #111827;
    font-weight: 700;
}

.about-powered {
    background: linear-gradient(to right, rgba(227, 6, 19, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 0.75rem;
    padding: 2rem;
    margin-top: 2rem;
}

.about-powered-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 0.75rem;
}

.about-powered-text {
    color: #1F2937;
    line-height: 1.7;
    font-size: 1.0625rem;
    font-weight: 400;
}

/* Roadmap Section */
.roadmap-section {
    padding: 2.5rem 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.roadmap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(227, 6, 19, 0.3), rgba(255, 215, 0, 0.3), rgba(227, 6, 19, 0.3), transparent);
    animation: line-flow 3s ease-in-out infinite;
}

.roadmap-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(227, 6, 19, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

@keyframes line-flow {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        transform: translateX(100%);
        opacity: 1;
    }
}

.roadmap-container {
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.roadmap-header {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.roadmap-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.375rem;
}

.roadmap-subtitle {
    font-size: 1rem;
    color: #6B7280;
    max-width: 48rem;
    margin: 0 auto;
}

.roadmap-timeline-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 1rem 1rem;
}

/* Timeline Line */
.roadmap-timeline-line {
    position: absolute;
    top: 80px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: #E5E7EB;
    border-radius: 2px;
    z-index: 1;
    display: none;
}

.timeline-line-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, #D1D5DB 100%);
    border-radius: 2px;
    width: 33.33%;
    transition: width 1.5s ease-out;
    box-shadow: 0 0 15px rgba(227, 6, 19, 0.4);
}

.roadmap-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.roadmap-phase {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.8s ease-out;
}

/* Phase Number Circle */
.phase-number-circle {
    position: relative;
    width: 45px;
    height: 45px;
    margin-bottom: 0.4rem;
    z-index: 10;
}

.phase-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08), 0 0 0 2px #ffffff;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.phase-glow {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    opacity: 0.35;
    animation: glow-pulse 2s ease-in-out infinite;
}

.phase-glow-current {
    background: radial-gradient(circle, rgba(227, 6, 19, 0.4) 0%, transparent 70%);
    box-shadow: 0 0 30px rgba(227, 6, 19, 0.5);
}

.phase-glow-upcoming {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.phase-glow-future {
    background: radial-gradient(circle, rgba(156, 163, 175, 0.3) 0%, transparent 70%);
    box-shadow: 0 0 20px rgba(156, 163, 175, 0.3);
}

@keyframes glow-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.roadmap-phase-current .phase-number {
    background: var(--primary);
    color: white;
    box-shadow: 0 3px 12px rgba(227, 6, 19, 0.25), 0 0 0 2px #ffffff, 0 0 18px rgba(227, 6, 19, 0.3);
}

.roadmap-phase-upcoming .phase-number {
    background: var(--accent);
    color: #000;
    box-shadow: 0 3px 12px rgba(255, 215, 0, 0.18), 0 0 0 2px #ffffff;
}

.roadmap-phase-future .phase-number {
    background: #9CA3AF;
    color: white;
    box-shadow: 0 3px 10px rgba(156, 163, 175, 0.12), 0 0 0 2px #ffffff;
}

/* Status Badge */
.phase-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.5rem;
    border-radius: 1rem;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    margin-bottom: 0.6rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.phase-status-current {
    background: var(--primary);
    color: white;
}

.phase-status-upcoming {
    background: var(--accent);
    color: #000;
}

.phase-status-future {
    background: #9CA3AF;
    color: white;
}

.status-live,
.status-upcoming,
.status-future {
    font-size: 0.75rem;
    padding: 0.125rem 0.4rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.25px;
    font-weight: 700;
}

.phase-status-upcoming .status-upcoming {
    background: rgba(0, 0, 0, 0.2);
    color: #000;
}

/* Phase Card */
.phase-card {
    background: #ffffff;
    border-radius: 0.625rem;
    padding: 1rem 0.875rem;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 240px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.roadmap-phase-current .phase-card {
    border: 1px solid rgba(227, 6, 19, 0.2);
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.08);
}

.roadmap-phase-upcoming .phase-card {
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.06);
}

.roadmap-phase-future .phase-card {
    border: 1px solid rgba(156, 163, 175, 0.2);
    box-shadow: 0 4px 15px rgba(156, 163, 175, 0.05);
}

.phase-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Phase Icon Large */
.phase-icon-large {
    font-size: 2.5rem;
    margin-bottom: 0.625rem;
    display: block;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.08));
    animation: icon-float 3s ease-in-out infinite;
}

.phase-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #111827;
    margin-bottom: 0.375rem;
}

.phase-description {
    color: #6B7280;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.4;
}

/* Phase Features List */
.phase-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 0.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.phase-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
    font-size: 1.125rem;
    padding: 0.625rem 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    line-height: 1.5;
    background: rgba(249, 250, 251, 0.6);
    border-left: 3px solid transparent;
    margin-left: 0.5rem;
}

.roadmap-phase-current .phase-features-list li {
    border-left-color: rgba(227, 6, 19, 0.3);
}

.roadmap-phase-current .phase-features-list li:hover {
    background: rgba(227, 6, 19, 0.05);
    border-left-color: var(--primary);
}

.roadmap-phase-upcoming .phase-features-list li {
    border-left-color: rgba(255, 215, 0, 0.3);
}

.roadmap-phase-upcoming .phase-features-list li:hover {
    background: rgba(255, 215, 0, 0.05);
    border-left-color: var(--accent);
}

.roadmap-phase-future .phase-features-list li {
    border-left-color: rgba(156, 163, 175, 0.3);
}

.roadmap-phase-future .phase-features-list li:hover {
    background: rgba(156, 163, 175, 0.05);
    border-left-color: #9CA3AF;
}

.phase-features-list li:hover {
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 2rem;
    text-align: center;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

.roadmap-cta {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.roadmap-cta-content {
    background: linear-gradient(to right, #111827, #000000);
    border-radius: 1rem;
    padding: 3rem 2rem;
    color: white;
}

.roadmap-cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.roadmap-cta-text {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.roadmap-cta-button {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.roadmap-cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.roadmap-cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.roadmap-cta-button:hover {
    background: #B91C1C;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(227, 6, 19, 0.4);
}

.roadmap-cta-button:active {
    transform: translateY(0) scale(1.02);
}

/* Why Invest Section */
.why-invest-section {
    padding: 5rem 1rem;
    background: linear-gradient(180deg, #F9FAFB 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-invest-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.why-invest-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.why-invest-container {
    max-width: 80rem;
    margin: 0 auto;
}

.why-invest-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.why-invest-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.why-invest-subtitle {
    font-size: 1.25rem;
    color: #6B7280;
    max-width: 48rem;
    margin: 0 auto;
}

.why-invest-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.why-invest-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.why-invest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.why-invest-card:hover::before {
    left: 100%;
}

.why-invest-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.why-invest-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: icon-float 3s ease-in-out infinite;
}

.why-invest-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    background-clip: padding-box;
    opacity: 0;
    transition: opacity 0.3s;
}

.why-invest-card:hover .why-invest-icon {
    transform: scale(1.2) rotate(10deg);
    animation-play-state: paused;
}

.why-invest-card:hover .why-invest-icon::after {
    opacity: 1;
    animation: icon-rotate 2s linear infinite;
}

@keyframes icon-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes icon-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.why-invest-icon-primary {
    background: linear-gradient(135deg, var(--primary), #B91C1C);
}

.why-invest-icon-accent {
    background: linear-gradient(135deg, var(--accent), #F59E0B);
}

.why-invest-icon-success {
    background: linear-gradient(135deg, var(--success), #059669);
}

.why-invest-icon-blue {
    background: linear-gradient(135deg, var(--blue), #2563EB);
}

.why-invest-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.why-invest-card-text {
    color: #6B7280;
    line-height: 1.6;
}

/* Signup Section (formerly Presell) */
.signup-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #E30613 0%, #dc2626 50%, #E30613 100%);
    background-size: 200% 200%;
    animation: gradient-shift 10s ease infinite;
    position: relative;
    overflow: hidden;
}

.signup-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotate-bg 20s linear infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes rotate-bg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.signup-container {
    max-width: 64rem;
    margin: 0 auto;
}

.signup-content {
    text-align: center;
    color: white;
    animation: fadeInUp 0.8s ease-out;
}

.signup-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.signup-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.signup-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.signup-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer-sweep 3s infinite;
}

@keyframes shimmer-sweep {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group {
    text-align: left;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    transition: opacity 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.form-input:focus::placeholder {
    opacity: 0.5;
}

.form-hint {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    text-align: left;
    line-height: 1.4;
}

.submit-btn {
    width: 100%;
    background: #FFD700;
    color: #000000;
    padding: 1rem 3rem;
    border-radius: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover:not(:disabled)::before {
    width: 300px;
    height: 300px;
}

.submit-btn:hover:not(:disabled) {
    background: #FFC700;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.submit-btn:active:not(:disabled) {
    transform: translateY(0) scale(0.98);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.loading-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.spinner {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #000000;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.success-message {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.success-icon {
    width: 5rem;
    height: 5rem;
    background: #28A745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.checkmark {
    font-size: 2.5rem;
    color: white;
}

.success-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.success-text {
    font-size: 1.125rem;
    opacity: 0.9;
}

.error-message {
    text-align: center;
    padding: 1rem;
    background: rgba(220, 38, 38, 0.2);
    border-radius: 0.5rem;
}

.error-text {
    color: white;
}

.features-grid {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-text {
    font-size: 0.9375rem;
    color: #ffffff;
    opacity: 1;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

.trust-indicators {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    opacity: 0.8;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
}

.trust-label {
    font-size: 0.875rem;
}

.hidden {
    display: none;
}

[x-cloak] {
    display: none !important;
}

/* Ensure hero form is always visible, even before Alpine loads */
.hero-form-wrapper[x-cloak] {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-form-container[x-cloak] {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Professional Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-down {
    animation: fadeInDown 0.8s ease-out forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

.slide-in-up {
    animation: slideInUp 0.8s ease-out forwards;
}

.zoom-in {
    animation: zoomIn 0.6s ease-out forwards;
}

.rotate-in {
    animation: rotateIn 0.8s ease-out forwards;
}

.bounce-in {
    animation: bounceIn 0.8s ease-out forwards;
}

/* Stagger Animation Delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(227, 6, 19, 0.5);
}

/* Smooth Transitions */
.smooth-transition {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Emoji Enhancements */
h1, h2, h3, h4, h5, h6 {
    position: relative;
}

h1 .rocket,
h2 .rocket,
h3 .rocket {
    display: inline-block;
    animation: rocket-float 2s ease-in-out infinite;
}

/* Emoji animations in text */
.hero-subtitle,
.about-description,
.roadmap-subtitle,
.why-invest-subtitle,
.signup-subtitle {
    position: relative;
}

.hero-subtitle,
.about-description,
.roadmap-subtitle,
.why-invest-subtitle,
.signup-subtitle {
    font-size: inherit;
}

/* Animated emojis in lists */
.phase-features li,
.footer-links-list li {
    position: relative;
}

.phase-features li::before,
.footer-links-list li::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    animation: emoji-bounce 2s ease-in-out infinite;
}

/* Trust indicators emoji animation */
.trust-label {
    position: relative;
}

.trust-label::first-letter {
    display: inline-block;
    animation: emoji-pulse 2s ease-in-out infinite;
}

@keyframes emoji-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes emoji-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Feature icon emoji enhancement */
.feature-icon {
    font-size: 2.5rem;
    display: inline-block;
    animation: emoji-float 3s ease-in-out infinite;
}

@keyframes emoji-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(-5deg);
    }
    75% {
        transform: translateY(-5px) rotate(5deg);
    }
}

/* Parallax Effect */
.parallax {
    transition: transform 0.3s ease-out;
}

/* Loading Animation */
@keyframes skeleton {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.skeleton {
    animation: skeleton 1.5s ease-in-out infinite;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced Glow Effects */
.glow-on-hover {
    transition: all 0.3s ease;
}

.glow-on-hover:hover {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.3);
}

/* Text Gradient Animation */
.gradient-text {
    background: linear-gradient(90deg, #E30613, #FFD700, #E30613);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-text 3s linear infinite;
}

@keyframes gradient-text {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Card Tilt Effect */
.tilt-on-hover {
    transition: transform 0.3s ease;
}

.tilt-on-hover:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg) scale(1.02);
}

/* Loading Spinner Enhancement */
.spinner {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #000000;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite, pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% {
        border-width: 2px;
    }
    50% {
        border-width: 3px;
    }
}

/* Responsive Design */
@media (min-width: 1024px) {
    .hero-content {
        padding: 5rem 2rem;
    }
    
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 4rem;
        align-items: center;
    }
    
    .hero-text {
        text-align: left;
        align-items: flex-start;
    }
    
    .logo-container {
        justify-content: flex-start;
        margin-bottom: 3rem;
    }
    
    .logo-img {
        width: 240px;
        height: 240px;
    }
    
    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }
    
    .hero-form-wrapper {
        max-width: 100%;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hero-form-container {
        padding: 3.5rem 3rem;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hero-form-title {
        font-size: 2.25rem;
    }
    
    .hero-form-subtitle {
        font-size: 1.125rem;
    }
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .btn-primary,
    .btn-secondary {
        width: auto;
    }
    
    .hero-form-wrapper {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    
    .hero-form-container {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hero-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .submit-btn {
        width: auto;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .trust-indicators {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 3rem 1rem 1.5rem;
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    animation: fadeInUp 0.8s ease-out;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: contain;
    background: transparent;
    border: none;
    outline: none;
}

.footer-brand-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.footer-brand-subtitle {
    font-size: 0.875rem;
    color: #9CA3AF;
}

.footer-description {
    color: #D1D5DB;
    line-height: 1.6;
    max-width: 32rem;
}

.footer-links {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.1s;
}

.footer-links-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links-list a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-list a:hover {
    color: var(--accent);
}

.footer-contact {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.2s;
}

.footer-contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #D1D5DB;
}

/* Social Media Links */
.footer-social {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.3s;
}

.footer-social-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #D1D5DB;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: currentColor;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-icon {
    width: 1.375rem;
    height: 1.375rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Social Media Brand Colors */
.social-facebook {
    color: #1877F2;
}

.social-facebook:hover {
    background: #1877F2;
    color: white;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.social-twitter {
    color: #1DA1F2;
}

.social-twitter:hover {
    background: #1DA1F2;
    color: white;
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
}

.social-linkedin {
    color: #0077B5;
}

.social-linkedin:hover {
    background: #0077B5;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4);
}

.social-instagram {
    color: #E4405F;
}

.social-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
}

.social-telegram {
    color: #0088CC;
}

.social-telegram:hover {
    background: #0088CC;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
}

.social-youtube {
    color: #FF0000;
}

.social-youtube:hover {
    background: #FF0000;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

/* Social Link Animation */
@keyframes socialPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.social-link:active {
    transform: translateY(-3px) scale(0.95);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #9CA3AF;
}

.footer-scroll-top {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-scroll-top:hover {
    background: #B91C1C;
    transform: scale(1.1);
}

.footer-scroll-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

@media (min-width: 640px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-social {
        grid-column: span 2;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-text {
        text-align: left;
    }
    
    .about-feature {
        text-align: left;
    }
    
    .roadmap-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        position: relative;
    }
    
    .roadmap-progress-line {
        display: block;
        top: 120px;
    }
    
    .roadmap-phase {
        flex-direction: column;
        align-items: center;
    }
    
    .phase-connector {
        display: none;
    }
    
    .phase-marker {
        position: relative;
        margin-bottom: 1.5rem;
    }
    
    .phase-card {
        width: 100%;
        max-width: 100%;
        margin-top: 0;
    }
    
    .phase-number {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .phase-icon {
        font-size: 5rem;
    }
    
    .why-invest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .about-title {
        font-size: 3.5rem;
    }
    
    .about-logo {
        width: 280px;
        height: 280px;
    }
    
    .property-icon-bg {
        width: 7rem;
        height: 7rem;
        font-size: 3rem;
    }
    
    .property-label {
        font-size: 1.125rem;
    }
    
    .about-description {
        font-size: 1.375rem;
    }
    
    .about-feature .feature-text {
        font-size: 1.125rem;
    }
    
    .about-powered-title {
        font-size: 1.75rem;
    }
    
    .about-powered-text {
        font-size: 1.125rem;
    }
    
    .roadmap-title {
        font-size: 3.5rem;
    }
    
    .roadmap-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        align-items: start;
    }
    
    .roadmap-timeline-line {
        display: block;
        top: 40px;
    }
    
    .phase-number-circle {
        width: 50px;
        height: 50px;
    }
    
    .phase-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .phase-icon-large {
        font-size: 3rem;
    }
    
    .phase-card {
        max-width: 100%;
    }
    
    .phase-title {
        font-size: 1.25rem;
    }
    
    .phase-description {
        font-size: 0.8125rem;
    }
    
    .phase-features-list li {
        font-size: 1.25rem;
        padding: 0.75rem 0.875rem;
    }
    
    .feature-icon {
        font-size: 1.75rem;
        width: 2.25rem;
    }
    
    .why-invest-title {
        font-size: 3rem;
    }
    
    .signup-title {
        font-size: 3rem;
    }
    
    .signup-subtitle {
        font-size: 1.5rem;
    }
    
    .signup-form-container {
        padding: 3rem;
    }
    
    .why-invest-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-social {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: row;
    }
    
    .social-link {
        width: 3rem;
        height: 3rem;
    }
    
    .social-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
}

/* ===== INVEST PAGE ===== */

.rwamp-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rwamp-header-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.rwamp-header-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #ffffff;
}

.rwamp-header-logo {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    object-fit: contain;
}

.rwamp-header-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.rwamp-header-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #ffffff;
}

.rwamp-header-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 0.625rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.125rem;
}

.rwamp-header-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Mobile hamburger toggle (hidden on desktop) */
.rwamp-header-toggle {
    display: none;
    position: relative;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(15, 23, 42, 0.9);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.rwamp-header-toggle-line {
    position: relative;
    display: block;
    width: 1.2rem;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease, translate 0.2s ease;
}

.rwamp-header-toggle-line + .rwamp-header-toggle-line {
    margin-top: 4px;
}

/* When menu is open, animate lines into an "X" */
.rwamp-header-toggle-line.open:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.rwamp-header-toggle-line.open:nth-child(2) {
    opacity: 0;
}

.rwamp-header-toggle-line.open:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.rwamp-header-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.rwamp-header-link::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.rwamp-header-link:hover {
    color: #f9fafb;
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

.rwamp-header-link:hover::after {
    opacity: 1;
}

.rwamp-header-link-active {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: #000000;
    font-weight: 600;
}

.rwamp-header-link-active::after {
    opacity: 0;
}

.rwamp-header-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #000000;
    text-decoration: none;
    background: linear-gradient(90deg, #E30613 0%, #FF8C00 50%, #FFD700 100%);
    background-size: 200% 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
    overflow: hidden;
}

.rwamp-header-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.rwamp-header-btn:hover {
    background-position: 100% 0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.4);
}

.rwamp-header-btn:hover::before {
    transform: translateX(100%);
}

.rwamp-header-btn:active {
    transform: translateY(0);
}

.rwamp-header-btn-active {
    background: linear-gradient(90deg, #E30613 0%, #FF8C00 50%, #FFD700 100%);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

@media (max-width: 640px) {
    .rwamp-header-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
    }
    
    .rwamp-header-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 0.75rem 1rem 1rem;
        background: rgba(0, 0, 0, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
    }

    .rwamp-header-nav.is-open {
        display: flex;
    }

    .rwamp-header-link,
    .rwamp-header-btn {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
        padding: 0.45rem 0.9rem;
        font-size: 0.9rem;
    }

    .rwamp-header-toggle {
        display: inline-flex;
    }
}

.invest-main {
    min-height: 100vh;
    background: radial-gradient(circle at top, rgba(227, 6, 19, 0.12), transparent 55%),
                radial-gradient(circle at bottom, rgba(255, 215, 0, 0.12), transparent 55%),
                #0b0b0f;
    color: #ffffff;
}

.invest-hero-section {
    padding: 1.5rem 1rem 1rem;
    margin-bottom: 0;
}

.invest-hero-container {
    max-width: 80rem;
    margin: 0 auto;
}

.invest-hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: start;
}

.invest-hero-content {
    max-width: 100%;
}

.invest-hero-dashboard {
    width: 100%;
}

.invest-hero-projects {
    margin-top: 2rem;
    width: 100%;
}

.invest-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.4);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.invest-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.invest-hero-subtitle {
    font-size: 1rem;
    color: rgba(249, 250, 251, 0.85);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.invest-hero-note {
    font-size: 0.9rem;
    color: rgba(209, 213, 219, 0.9);
    line-height: 1.6;
    margin-top: 0.25rem;
}

.invest-projects-container {
    max-width: 80rem;
    margin: 0 auto;
}

.invest-section-header {
    text-align: left;
    margin-bottom: 1rem;
}

.invest-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.invest-section-subtitle {
    font-size: 0.9rem;
    color: #d1d5db;
    margin-top: 0;
}

.glass-card {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 55%),
                rgba(15, 23, 42, 0.9);
    border-radius: 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.invest-projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.invest-dashboard-card {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.18) 0%, rgba(227, 6, 19, 0.18) 100%);
    border-radius: 1.25rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 215, 0, 0.25);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.75), 0 0 30px rgba(255, 140, 0, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.invest-dashboard-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85), 0 0 40px rgba(255, 140, 0, 0.12);
}

/* Stage Banner */
.invest-stage-banner {
    background: linear-gradient(90deg, #FF8C00 0%, #E30613 100%);
    border-radius: 0.65rem;
    padding: 0.65rem 0.9rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 3px 12px rgba(255, 140, 0, 0.35);
    margin-bottom: 0.75rem;
}

/* Token Price Card */
.invest-price-card {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.2) 0%, rgba(227, 6, 19, 0.2) 100%);
    border-radius: 1rem;
    padding: 1.25rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
}

.invest-price-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.invest-price-icon {
    font-size: 1.1rem;
}

.invest-price-label {
    font-weight: 500;
}

.invest-price-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Metrics Grid */
.invest-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.invest-metric-card {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15) 0%, rgba(227, 6, 19, 0.15) 100%);
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.invest-metric-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.invest-metric-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.invest-metric-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

/* Bonus Info */
.invest-bonus-info {
    text-align: center;
    padding: 0.75rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #FFD700;
    font-size: 0.9rem;
}

.invest-bonus-icon {
    font-size: 1.1rem;
}

.invest-token-name {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-top: -0.5rem;
}

/* Supply Progress Card */
.invest-supply-progress-card {
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.2) 0%, rgba(255, 140, 0, 0.2) 100%);
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.invest-supply-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    gap: 0.5rem;
}

.invest-supply-icon {
    font-size: 1rem;
}

.invest-supply-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    flex: 1;
}

.invest-supply-percent {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.invest-supply-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.invest-supply-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 999px;
    overflow: hidden;
}

.invest-supply-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3B82F6, #2563EB);
    border-radius: 999px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* Dashboard Buy Button */
.invest-dashboard-buy-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(90deg, #E30613 0%, #B91C1C 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(227, 6, 19, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 0.5rem;
}

.invest-dashboard-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(227, 6, 19, 0.6);
}

.invest-dashboard-buy-btn:active {
    transform: translateY(0);
}

/* Minimum Buy Info */
.invest-min-buy-info {
    text-align: center;
    padding: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.invest-min-buy-icon {
    font-size: 1rem;
    color: #3B82F6;
}

/* Project Details Section (Below Projects) */
.invest-project-details-section {
    padding: 1rem 1rem 1.5rem;
    margin-top: 0;
}

.invest-project-details-card {
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.12) 0%, rgba(255, 140, 0, 0.12) 100%);
    border-radius: 1.25rem;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.invest-project-details-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85);
}

.invest-project-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.invest-project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.8);
}

.invest-project-skeleton-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.invest-project-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem 1.25rem 0 0;
}

.invest-project-image {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.invest-project-card:hover .invest-project-image {
    transform: scale(1.05);
}

.invest-status-badge {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.9);
    color: #ecfdf5;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.invest-project-body {
    padding: 1.25rem 1.25rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.invest-project-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.invest-project-location {
    font-size: 0.9rem;
    color: #d1d5db;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.invest-project-token {
    margin-top: 0.25rem;
    font-size: 0.9rem;
    color: #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.invest-project-token .token-symbol {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    background: rgba(31, 41, 55, 0.9);
    align-self: flex-start;
}

.invest-project-token .token-meta {
    font-size: 0.85rem;
    color: #9ca3af;
}

.invest-progress-block {
    margin-top: 0.4rem;
}

.invest-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.invest-progress-label {
    color: #9ca3af;
}

.invest-progress-value {
    color: #e5e7eb;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
}

.invest-progress-bar {
    position: relative;
    width: 100%;
    height: 0.4rem;
    border-radius: 999px;
    background: rgba(31, 41, 55, 0.9);
    overflow: hidden;
}

.invest-progress-fill {
    position: absolute;
    inset: 0;
    width: 0%;
    background: linear-gradient(90deg, #FFD700, #F59E0B);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.8);
    border-radius: inherit;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.invest-progress-percent {
    margin-top: 0.2rem;
    font-size: 0.8rem;
    color: #9ca3af;
}

.invest-project-cta-btn {
    margin-top: auto;
    width: 100%;
    padding: 0.9rem 1.25rem;
    border-radius: 0.85rem;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(90deg, #FFD700, #F59E0B);
    color: #000000;
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.invest-project-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(255, 215, 0, 0.5);
}

.invest-project-cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}

.invest-empty-text {
    font-size: 0.95rem;
    color: #9ca3af;
}

.invest-modal {
    position: fixed;
    inset: 0;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.invest-modal::backdrop {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.invest-modal-backdrop {
    position: fixed;
    inset: 0;
}

.invest-modal-panel {
    position: relative;
    max-width: 900px;
    width: 100%;
    margin: 1rem;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 55%),
                linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 25px 100px rgba(0, 0, 0, 0.95), 0 0 50px rgba(255, 140, 0, 0.1);
    padding: 2rem;
    color: #f9fafb;
    animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.invest-modal-panel::-webkit-scrollbar {
    width: 8px;
}

.invest-modal-panel::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.invest-modal-panel::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.4);
    border-radius: 10px;
}

.invest-modal-panel::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.6);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.invest-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    background: rgba(15, 23, 42, 0.95);
    color: #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.2s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.invest-modal-close:hover {
    background: rgba(227, 6, 19, 0.9);
    border-color: rgba(227, 6, 19, 0.5);
    transform: rotate(90deg) scale(1.1);
    color: #ffffff;
}

/* Investment Card - Top Panel */
.invest-modal-summary-card {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.12) 0%, rgba(227, 6, 19, 0.12) 100%);
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.invest-modal-card-header {
    margin-bottom: 1rem;
}

.invest-modal-card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0.75rem;
}

.invest-modal-card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 0.75rem 0;
}

.invest-modal-card-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .invest-modal-card-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.invest-modal-card-stat {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.invest-modal-card-stat .stat-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.invest-modal-card-stat .stat-label {
    font-weight: 600;
    color: #ffffff;
    min-width: 120px;
}

.invest-modal-card-stat .stat-value {
    color: #f9fafb;
    flex: 1;
}

.invest-modal-card-stat .status-check {
    margin-left: 0.25rem;
    font-size: 1rem;
}

.invest-modal-card-stat .status-x {
    margin-left: 0.25rem;
    color: #f97373;
    font-size: 1rem;
}

.invest-modal-card-stat .stat-hint {
    margin-left: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.invest-modal-card-progress {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.invest-modal-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.invest-modal-progress-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.invest-modal-progress-percent {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.invest-modal-progress-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.invest-modal-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.invest-modal-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #F59E0B);
    border-radius: 999px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Project Details Section */
.invest-modal-project-details {
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.08) 0%, rgba(255, 140, 0, 0.08) 100%);
    border-radius: 1rem;
    padding: 1.25rem;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.invest-project-details-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

.invest-project-details-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.invest-project-details-img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    display: block;
}

.invest-project-details-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.invest-project-coming-soon {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #FFD700;
    text-align: center;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.invest-project-details-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.invest-project-name-highlight {
    color: #FFD700;
    font-size: 1.3rem;
    display: block;
    margin: 0.25rem 0;
}

.invest-project-price-highlight {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 1rem 0 1.25rem;
}

.invest-project-price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #FF8C00;
    margin: 0.5rem 0;
    text-shadow: 0 2px 10px rgba(255, 140, 0, 0.4);
}

.invest-project-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 0.5rem;
}

.invest-project-benefit {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.65rem 0.75rem;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 0.5rem;
    border-left: 3px solid #FFD700;
}

.invest-project-benefit .benefit-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.invest-project-benefit .benefit-text {
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.5;
    flex: 1;
}

.invest-project-benefit .benefit-text strong {
    color: #FFD700;
    font-weight: 700;
}

.invest-project-benefit .benefit-value {
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: #FF8C00;
}

.invest-modal-form-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.invest-modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.invest-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .invest-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.invest-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.invest-form-label {
    font-size: 0.875rem;
    color: #f3f4f6;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.invest-form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    border: 1.5px solid rgba(75, 85, 99, 0.6);
    background: rgba(15, 23, 42, 0.8);
    color: #f9fafb;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.invest-form-input:hover {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(15, 23, 42, 0.9);
}

.invest-form-input::placeholder {
    color: #6b7280;
}

.invest-form-input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15), 0 0 20px rgba(255, 215, 0, 0.1);
    background: rgba(15, 23, 42, 1);
    transform: translateY(-1px);
}

.invest-form-hint {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 0.25rem;
    line-height: 1.4;
}

.invest-calculation-summary {
    margin-top: 0.5rem;
    padding: 1.25rem 1.25rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.08) 0%, rgba(227, 6, 19, 0.08) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.invest-calculation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #e5e7eb;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.invest-calculation-row:last-of-type {
    border-bottom: none;
}

.invest-calculation-total {
    font-weight: 700;
    font-size: 1rem;
    color: #FFD700;
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.invest-form-actions {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.invest-submit-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #FFD700 0%, #F59E0B 50%, #FF8C00 100%);
    color: #000000;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4), 0 0 20px rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.invest-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.invest-submit-btn:hover::before {
    left: 100%;
}

.invest-submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5), 0 0 30px rgba(255, 140, 0, 0.3);
    background: linear-gradient(135deg, #FFE135 0%, #FFB020 50%, #FF9D00 100%);
}

.invest-submit-btn:active:not(:disabled) {
    transform: translateY(-1px);
}

.invest-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.invest-submit-hint {
    font-size: 0.85rem;
    color: #fca5a5;
    text-align: center;
    padding: 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
    margin-top: 0.5rem;
}

.invest-error-text {
    margin-top: 0.75rem;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    color: #fee2e2;
    background: rgba(239, 68, 68, 0.15);
    border-radius: 0.5rem;
    border: 1px solid rgba(239, 68, 68, 0.3);
    text-align: center;
}

.invest-success-text {
    margin-top: 0.75rem;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    color: #d1fae5;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 0.5rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
    text-align: center;
}

@media (min-width: 768px) {
    .invest-hero-section {
        padding: 2rem 1rem 1rem;
    }
    
    .invest-hero-title {
        font-size: 2.5rem;
    }
    
    .invest-hero-layout {
        grid-template-columns: 1.2fr 1fr;
        gap: 1.75rem;
        align-items: start;
    }
    
    .invest-hero-content {
        max-width: 100%;
    }
    
    .invest-hero-dashboard {
        position: sticky;
        top: 5.5rem;
        height: fit-content;
        max-height: calc(100vh - 6rem);
    }
    
    .invest-hero-projects {
        margin-top: 2.5rem;
    }
    
    .invest-projects-grid {
        grid-template-columns: 1fr;
    }
    
    .invest-project-skeleton-grid {
        grid-template-columns: 1fr;
    }
    
    .invest-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .invest-project-details-container {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.6fr);
        align-items: center;
    }
    
    .invest-modal-card-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .invest-hero-section {
        padding: 2.5rem 1rem 1rem;
    }
    
    .invest-hero-title {
        font-size: 2.8rem;
    }
    
    .invest-hero-layout {
        grid-template-columns: 1.5fr 1fr;
        gap: 2rem;
    }
    
    .invest-hero-dashboard {
        top: 6rem;
        max-width: 100%;
    }
    
    .invest-hero-projects {
        margin-top: 3rem;
    }
    
    .invest-projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .invest-project-skeleton-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .invest-project-details-section {
        padding: 1.5rem 1rem 2rem;
    }
    
    .invest-project-details-card {
        padding: 2rem;
    }
    
    .invest-modal-panel {
        padding: 1.75rem 2rem 2rem;
    }
    
    .invest-modal-card-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .invest-project-details-container {
        gap: 2rem;
    }
    
    .invest-project-coming-soon {
        font-size: 2rem;
    }
    
    .invest-project-details-title {
        font-size: 1.3rem;
    }
    
    .invest-project-name-highlight {
        font-size: 1.6rem;
    }
    
    .invest-project-price-highlight {
        font-size: 1.1rem;
    }
    
    .invest-project-price-amount {
        font-size: 2.5rem;
    }
}

/* ------------------------------------------------------------------
   Extra-small device refinements (phones in portrait, < 480px)
   These tweaks make the landing and invest flows cleaner on
   very small screens.
------------------------------------------------------------------- */
@media (max-width: 480px) {
    .rwamp-header-container {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }

    .rwamp-header-title {
        font-size: 1rem;
    }

    .rwamp-header-subtitle {
        font-size: 0.55rem;
    }

    .rwamp-header-nav {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .rwamp-header-link,
    .rwamp-header-btn {
        padding-inline: 0.6rem;
        font-size: 0.8rem;
    }

    .hero-section,
    .invest-hero-section {
        padding-inline: 0.75rem;
    }

    .hero-heading {
        font-size: 1.9rem;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-form-card,
    .invest-dashboard-card,
    .invest-project-card,
    .invest-project-details-card {
        border-radius: 1rem;
        padding: 1rem;
    }

    .invest-modal-panel {
        margin: 0.75rem;
        padding: 1.25rem 1.25rem 1.5rem;
        max-height: 92vh;
    }

    .invest-modal-card-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .invest-form-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .invest-form-input {
        font-size: 0.9rem;
        padding: 0.75rem 0.9rem;
    }

    .invest-submit-btn {
        font-size: 0.9rem;
        padding-block: 0.85rem;
    }

    .invest-project-details-grid,
    .invest-project-details-container {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    img,
    video {
        max-width: 100%;
        height: auto;
    }

    body {
        overflow-x: hidden;
    }
}
