/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #111111;
    background-color: #FFFFFF;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 640px) {
    .container {
        padding: 0 32px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 48px;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5;
}

.btn:focus {
    outline: 2px solid #10b981;
    outline-offset: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 6px 20px 0 rgba(16, 185, 129, 0.35);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.btn-outline:hover {
    border-color: #d1d5db;
    color: #374151;
    background: #f9fafb;
}

.btn-white {
    background: white;
    color: #059669;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: #f9fafb;
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
}

.btn {
    padding: 12px 24px;
    font-size: 16px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #f3f4f6;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.25);
}

.logo-text {
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.logo-title {
    margin-left: 12px;
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(135deg, #111827, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f9fafb, #ffffff, #ecfdf5);
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 25%;
    right: -25%;
    width: 384px;
    height: 384px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border-radius: 50%;
    filter: blur(96px);
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: 25%;
    left: -25%;
    width: 384px;
    height: 384px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 50%;
    filter: blur(96px);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 1024px;
    margin: 0 auto;
    padding: 96px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 9999px;
    color: #047857;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 32px;
}

.title-line-1 {
    background: linear-gradient(135deg, #111827, #374151, #111827);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.title-line-2 {
    background: linear-gradient(135deg, #059669, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-description {
    font-size: 20px;
    color: #6b7280;
    max-width: 768px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: center;
    margin-bottom: 64px;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 768px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #059669;
    margin-bottom: 8px;
}

.stat-label {
    color: #6b7280;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: bold;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #111827, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 20px;
    color: #6b7280;
    max-width: 768px;
    margin: 0 auto;
}

/* How It Works Section */
.how-it-works {
    padding: 96px 0;
    background: white;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.features-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.feature-icon-1 {
    background: linear-gradient(135deg, #10b981, #059669);
}

.feature-icon-2 {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.feature-icon-3 {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.feature-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.feature-text p {
    color: #6b7280;
}

/* Dashboard Preview */
.dashboard-preview {
    position: relative;
}

.dashboard-container {
    position: relative;
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.dashboard {
    aspect-ratio: 1;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    padding: 24px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-icon svg {
    width: 16px;
    height: 16px;
    color: white;
}

.dashboard-title h3 {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.dashboard-controls {
    display: flex;
    gap: 4px;
}

.control-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.control-dot-1 { background: #10b981; }
.control-dot-2 { background: #f59e0b; }
.control-dot-3 { background: #ef4444; }

.progress-section {
    margin-bottom: 24px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.progress-label {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
}

.progress-value {
    font-size: 12px;
    font-weight: bold;
    color: #059669;
}

.progress-bar {
    width: 100%;
    background: #f3f4f6;
    border-radius: 9999px;
    height: 8px;
}

.progress-fill {
    background: linear-gradient(90deg, #10b981, #059669);
    height: 8px;
    border-radius: 9999px;
    transition: width 0.3s ease;
}

.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid;
}

.flow-step-complete {
    background: #ecfdf5;
    border-color: #a7f3d0;
}

.flow-step-progress {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.flow-step-pending {
    background: #f9fafb;
    border-color: #e5e7eb;
}

.flow-step-warning {
    background: #fffbeb;
    border-color: #fed7aa;
}

.step-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 12px;
    height: 12px;
    color: white;
}

.step-icon-complete {
    background: #10b981;
}

.step-icon-progress {
    background: #3b82f6;
}

.step-icon-pending {
    background: #9ca3af;
}

.step-icon-warning {
    background: #f59e0b;
}

.step-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 12px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 2px;
}

.step-status {
    font-size: 12px;
    color: #6b7280;
}

.flow-step-complete .step-status { color: #059669; }
.flow-step-progress .step-status { color: #2563eb; }
.flow-step-warning .step-status { color: #d97706; }

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.stat-card {
    text-align: center;
    padding: 8px;
    background: #f9fafb;
    border-radius: 8px;
}

.stat-card .stat-number {
    font-size: 18px;
    font-weight: bold;
    color: #059669;
    margin-bottom: 2px;
}

.stat-card .stat-label {
    font-size: 12px;
    color: #6b7280;
}

.dashboard-decoration {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
}

.dashboard-decoration-1 {
    top: -16px;
    right: -16px;
    width: 32px;
    height: 32px;
    background: #10b981;
}

.dashboard-decoration-2 {
    bottom: -16px;
    left: -16px;
    width: 24px;
    height: 24px;
    background: #059669;
}

/* Benefits Section */
.benefits {
    padding: 96px 0;
    background: linear-gradient(135deg, #f9fafb, #ffffff);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: all 0.2s ease;
}

.benefit-card:hover {
    box-shadow: 0 8px 25px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.benefit-icon-1 {
    background: linear-gradient(135deg, #10b981, #059669);
}

.benefit-icon-2 {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.benefit-icon-3 {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.benefit-icon-4 {
    background: linear-gradient(135deg, #f59e0b, #dc2626);
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Waitlist Section */
.waitlist {
    padding: 96px 0;
    background: white;
}

.waitlist-content {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

.waitlist-title {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: bold;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #111827, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.waitlist-description {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 48px;
    line-height: 1.6;
}

.waitlist-form {
    margin-bottom: 48px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

@media (min-width: 640px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.waitlist-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

@media (min-width: 640px) {
    .waitlist-features {
        flex-direction: row;
        justify-content: center;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
}

.feature-item svg {
    width: 16px;
    height: 16px;
    color: #10b981;
    flex-shrink: 0;
}

/* Pricing Section */
.pricing {
    padding: 96px 0;
    background: #f9fafb;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1024px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    position: relative;
    transition: all 0.2s ease;
}

.pricing-card:hover {
    box-shadow: 0 8px 25px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.pricing-card-featured {
    border-color: #10b981;
    box-shadow: 0 8px 25px 0 rgba(16, 185, 129, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-title {
    font-size: 24px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 16px;
}

.price-amount {
    font-size: 48px;
    font-weight: bold;
    color: #111827;
}

.price-period {
    font-size: 18px;
    color: #6b7280;
}

.pricing-description {
    color: #6b7280;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features .feature-item {
    margin-bottom: 16px;
    justify-content: flex-start;
}

/* CTA Section */
.cta {
    padding: 96px 0;
    background: linear-gradient(135deg, #059669, #10b981);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.3) 1px, transparent 0);
    background-size: 20px 20px;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 1024px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: bold;
    color: white;
    margin-bottom: 32px;
}

.cta-description {
    font-size: 20px;
    color: #a7f3d0;
    margin-bottom: 48px;
    max-width: 512px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: center;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .cta-actions {
        flex-direction: row;
    }
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    color: white;
}

@media (min-width: 640px) {
    .cta-features {
        flex-direction: row;
        justify-content: center;
    }
}

.cta-features .feature-item svg {
    color: white;
}

/* Contact Section */
.contact {
    padding: 96px 0;
    background: #f9fafb;
}

.contact-content {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: bold;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #111827, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-description {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 48px;
    line-height: 1.6;
}

.contact-form {
    text-align: left;
}

.form-row {
    margin-bottom: 24px;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.2s ease;
}

.contact-form textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.char-count {
    text-align: right;
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}



/* Pricing Toggle */
.pricing-toggle {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 40;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-title {
    margin-left: 12px;
    font-size: 20px;
    font-weight: bold;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 64px 0;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .features-grid {
        gap: 48px;
    }
    
    .dashboard-container {
        padding: 16px;
    }
    
    .dashboard {
        padding: 16px;
    }
    
    .benefits,
    .how-it-works,
    .waitlist,
    .pricing,
    .cta {
        padding: 64px 0;
    }
    
    .pricing-toggle {
        bottom: 16px;
        right: 16px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #10b981;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success/Error Messages */
.message {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-weight: 500;
}

.message-success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.message-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}
