
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background: #2563eb;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    color: #374151;
    border: 2px solid #d1d5db;
}

.btn-outline:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.btn-cta {
    background: white;
    color: #2563eb;
    font-weight: 600;
}

.btn-cta:hover {
    background: #f3f4f6;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #eef2ff 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(40px);
    opacity: 0.7;
    animation: blob 20s infinite;
}

.blob-1 {
    top: -10rem;
    right: -10rem;
    background: #dbeafe;
    animation-delay: 0s;
}

.blob-2 {
    bottom: -10rem;
    left: -10rem;
    background: #e9d5ff;
    animation-delay: -4s;
}

.blob-3 {
    top: 10rem;
    left: 10rem;
    background: #cffafe;
    animation-delay: -8s;
}

@keyframes blob {
    0%, 100% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-left {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-left {
        text-align: left;
    }
}

.logo-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .logo-container {
        justify-content: flex-start;
    }
}

.logo-wrapper {
    background: white;
    border-radius: 9999px;
    padding: 0.75rem 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}

.logo {
    height: 7rem;
    width: auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-title-gradient {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        margin-left: 0;
        margin-right: 0;
    }
}

.cta-buttons {
    display: flex;
    flex-col: 1;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .cta-buttons {
        justify-content: flex-start;
    }
}

.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0.6;
}

@media (min-width: 1024px) {
    .trust-indicators {
        justify-content: flex-start;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #2563eb;
}

.trust-item:nth-child(2n) .trust-icon {
    color: #7c3aed;
}

.trust-item:nth-child(3n) .trust-icon {
    color: #0891b2;
}

.trust-item span {
    font-size: 0.875rem;
    font-weight: 500;
}

.divider {
    height: 1rem;
    width: 1px;
    background: #d1d5db;
}

/* Widget Card */
.hero-right {
    position: relative;
}

.widget-card {
    background: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 1rem;
    max-width: 28rem;
    margin: 0 auto;
}

.widget-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 2rem 2rem 0;
}

.widget-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 500;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #2563eb;
    border-radius: 50%;
}

.widget-content {
    padding: 0 2rem 2rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.input-wrapper {
    position: relative;
}

.widget-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 500;
    background: white;
    transition: all 0.2s ease;
}

.widget-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.currency-label {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
}

.currency-crypto {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.crypto-icon {
    width: 1rem;
    height: 1rem;
    color: #f59e0b;
}

.currency-crypto span {
    color: #6b7280;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
}

.floating-1 {
    top: -1rem;
    right: -1rem;
    width: 2rem;
    height: 2rem;
    background: #fbbf24;
    animation: bounce 2s infinite;
}

.floating-2 {
    bottom: -1rem;
    left: -1rem;
    width: 1.5rem;
    height: 1.5rem;
    background: #a855f7;
    animation: pulse 2s infinite;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* iRamp Section */
.iramp-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #eff6ff 100%);
}

.section-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.title-highlight {
    color: #2563eb;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.75;
    margin-bottom: 3rem;
}

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

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
}

.feature-icon-green {
    background: #dcfce7;
    color: #16a34a;
}

.feature-icon-orange {
    background: #fed7aa;
    color: #ea580c;
}

.feature-icon-purple {
    background: #e9d5ff;
    color: #9333ea;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
}

.feature-description {
    color: #6b7280;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title-large {
        font-size: 3rem;
    }
}

.main-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .main-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    position: relative;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
}

.feature-card-header {
    text-align: center;
    padding: 2rem 1.5rem 1rem;
}

.feature-icon-large {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-large {
    transform: scale(1.1);
}

.feature-icon-large svg {
    width: 2rem;
    height: 2rem;
}

.feature-icon-blue {
    background: #eff6ff;
    color: #2563eb;
}

.feature-icon-purple {
    background: #faf5ff;
    color: #7c3aed;
}

.feature-icon-cyan {
    background: #ecfeff;
    color: #0891b2;
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.feature-card-description {
    padding: 0 1.5rem 2rem;
    text-align: center;
    color: #6b7280;
    line-height: 1.75;
}

.additional-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .additional-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.additional-feature {
    text-align: center;
}

.additional-feature-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.additional-feature:hover .additional-feature-icon {
    transform: scale(1.1);
}

.additional-feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.additional-feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.additional-feature-description {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Call to Action Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #4338ca 100%);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-blob {
    position: absolute;
    width: 16rem;
    height: 16rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(40px);
}

.cta-blob-1 {
    top: 0;
    left: 25%;
}

.cta-blob-2 {
    bottom: 0;
    right: 25%;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.cta-illustration {
    margin-bottom: 3rem;
}

.cta-icon-wrapper {
    width: 12rem;
    height: 12rem;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.cta-icon-container {
    width: 8rem;
    height: 8rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon {
    width: 4rem;
    height: 4rem;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.email-form {
    max-width: 28rem;
    margin: 0 auto 2rem;
}

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

@media (min-width: 640px) {
    .form-wrapper {
        flex-direction: row;
    }
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    border-radius: 9999px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    transition: all 0.2s ease;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.email-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.cta-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: #111827;
    color: #d1d5db;
}

.footer-content {
    padding: 3rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-main {
    max-width: 28rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 2rem;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #6b7280;
}

.footer-title {
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-link {
    font-size: 0.875rem;
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: white;
}

.footer-separator {
    height: 1px;
    background: #374151;
    margin: 2rem 0;
}

.footer-legal {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-title-large {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .divider {
        width: 100%;
        height: 1px;
    }
}
