@font-face {
    font-family: 'coolvetica';
    src: url("/Users/mooster/Desktop/Summer Accelerator/Gaialith/Coolvetica Rg.otf");
}

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

body {
    background: linear-gradient(135deg, #0a1a1a 0%, #073229 25%, #041010 50%, #062323 75%, #0a1a1a 100%);
    color: #fafafa;
    font-family: 'coolvetica', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Navigation */
.nav-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 80px;
    z-index: 9999;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(74, 253, 203, 0.1);
    transition: all 0.3s ease;
}

.nav-toolbar:hover {
    background: rgba(10, 26, 26, 0.98);
    border-bottom: 1px solid rgba(74, 253, 203, 0.2);
}

.brand-title {
    font-size: 28px;
    font-weight: 700;
    color: #fafafa;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 10px;
}


/* Main Content */
.main-content {
    padding: 120px 40px 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
    font-family: 'coolvetica', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #fafafa;
    text-align: left;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-top: 75px;
    margin-bottom: 100px;
    animation: fadeInUp 1s ease-out;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(74, 253, 203, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.page-title-1 {
    font-size: 80px;
    font-weight: bold;
    color: #fafafa;
    margin: 0;
    letter-spacing: 3px;
    display: inline-block;
    animation: slideInLeft 1s ease-out 0.2s both;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-title-2 {
    font-size: 80px;
    font-weight: bold;
    color: #4afdcb;
    margin: 0 0 0 20px;
    letter-spacing: 3px;
    display: inline-block;
    padding: 20px 30px;
    border-radius: 20px;
    background: rgba(74, 253, 203, 0.1);
    border: 2px solid #4afdcb;
    animation: slideInRight 1s ease-out 0.4s both;
    transition: all 0.3s ease;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 32px rgba(74, 253, 203, 0.2);
    line-height: 1;
}

.page-title-2:hover {
    background: rgba(74, 253, 203, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(74, 253, 203, 0.3);
}

.tagline {
    font-size: 20px;
    color: #4afdcb;
    margin-top: 30px;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Hero Content Row */
.hero-content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 40px 0;
    animation: fadeInUp 1s ease-out 0.7s both;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Content Sections */
.content-section {
    margin: 80px 0;
    animation: fadeInUp 1s ease-out 0.8s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-section p {
    margin: 30px 0;
    font-size: 18px;
    line-height: 1.8;
    color: #fafafa;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.content-section p:hover {
    opacity: 1;
}

/* Statistics Section */
.stats-section {
    margin: 80px 0;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.stats-container {
    background: linear-gradient(135deg, rgba(74, 253, 203, 0.1) 0%, rgba(43, 193, 152, 0.05) 100%);
    border: 2px solid rgba(74, 253, 203, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.stats-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(74, 253, 203, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.stats-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4afdcb 0%, #2bc198 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #073229;
    box-shadow: 0 4px 15px rgba(74, 253, 203, 0.3);
}

.stats-title {
    font-size: 24px;
    font-weight: bold;
    color: #4afdcb;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.stats-text {
    font-size: 18px;
    color: #fafafa;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
    animation: fadeInUp 1s ease-out 1s both;
}

.feature-item {
    background: rgba(74, 253, 203, 0.05);
    border: 1px solid rgba(74, 253, 203, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    background: rgba(74, 253, 203, 0.1);
    border-color: rgba(74, 253, 203, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 253, 203, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4afdcb 0%, #2bc198 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #073229;
}

.feature-title {
    font-size: 20px;
    font-weight: bold;
    color: #4afdcb;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 16px;
    color: #fafafa;
    opacity: 0.8;
    line-height: 1.6;
}

/* Highlighted Text */
.highlightText {
    display: inline-block;
    background: linear-gradient(135deg, #4afdcb 0%, #2bc198 100%);
    color: #073229;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: bold;
    margin: 0 8px;
    font-size: inherit;
    box-shadow: 0 4px 15px rgba(74, 253, 203, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlightText::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;
}

.highlightText:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 253, 203, 0.4);
}

.highlightText:hover::before {
    left: 100%;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(74, 253, 203, 0.1) 0%, rgba(43, 193, 152, 0.05) 100%);
    border: 1px solid rgba(74, 253, 203, 0.2);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(74, 253, 203, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(43, 193, 152, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.cta-title {
    font-size: 32px;
    font-weight: bold;
    color: #4afdcb;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.cta-description {
    font-size: 18px;
    color: #fafafa;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    border: none;
    color: #073229;
    padding: 12px 24px;
    margin: 0 8px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background: #073229;
    color: #4afdcb;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn2 {
    border: none;
    background: linear-gradient(135deg, #4afdcb 0%, #2bc198 100%);
    color: #073229;
    padding: 18px 36px;
    margin: 20px 8px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(74, 253, 203, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn2::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;
}

.btn2:hover {
    background: linear-gradient(135deg, #2bc198 0%, #4afdcb 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(74, 253, 203, 0.4);
    text-decoration: none;
}

.btn2:hover::before {
    left: 100%;
}

.mailing-list {
    margin-top: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(74, 253, 203, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(74, 253, 203, 0.5);
    }
    100% {
        box-shadow: 0 8px 25px rgba(74, 253, 203, 0.3);
    }
}

/* Modal Styling */
.modal-dialog {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 100px);
    margin: 50px auto;
}

.modal-content {
    background: linear-gradient(135deg, #0a1a1a 0%, #073229 100%);
    border: 2px solid #4afdcb;
    border-radius: 20px;
    color: #fafafa;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin-top: 80px;
    max-width: 500px;
    width: 90%;
}

.modal-header {
    border-bottom: 1px solid rgba(74, 253, 203, 0.2);
    padding: 20px 30px 0;
    position: relative;
}

.modal-body {
    color: #fafafa;
    padding: 30px;
    text-align: center;
    position: relative;
}

.newsletter-content {
    text-align: center;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4afdcb 0%, #2bc198 100%);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #073229;
    box-shadow: 0 8px 25px rgba(74, 253, 203, 0.3);
}

.newsletter-description {
    font-size: 16px;
    line-height: 1.6;
    color: #fafafa;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    margin-top: 25px;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    color: #4afdcb;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(74, 253, 203, 0.2);
    border-radius: 12px;
    background: rgba(4, 16, 16, 0.8);
    color: #fafafa;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #4afdcb;
    background: rgba(4, 16, 16, 0.9);
    box-shadow: 0 0 0 3px rgba(74, 253, 203, 0.1);
}

.form-group input::placeholder {
    color: rgba(74, 253, 203, 0.6);
}

.submit-container {
    margin: 30px 0 20px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.newsletter-submit-btn {
    background: linear-gradient(135deg, #4afdcb 0%, #2bc198 100%);
    color: #073229;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(74, 253, 203, 0.3);
    min-width: 200px;
    justify-content: center;
}

.newsletter-submit-btn:hover {
    background: linear-gradient(135deg, #2bc198 0%, #4afdcb 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 253, 203, 0.4);
}

.newsletter-submit-btn i {
    font-size: 14px;
}

.privacy-note {
    font-size: 12px;
    color: rgba(250, 250, 250, 0.6);
    margin-top: 15px;
    line-height: 1.4;
}

/* Thank You Modal Styling */
.thank-you-content {
    text-align: center;
    padding: 20px 0;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4afdcb 0%, #2bc198 100%);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #073229;
    box-shadow: 0 12px 35px rgba(74, 253, 203, 0.4);
    animation: pulse 2s infinite;
}

.thank-you-message {
    font-size: 18px;
    line-height: 1.6;
    color: #fafafa;
    opacity: 0.9;
    margin-top: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 12px 35px rgba(74, 253, 203, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(74, 253, 203, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 12px 35px rgba(74, 253, 203, 0.4);
    }
}

.modal-title {
    color: #fafafa !important;
    font-family: 'coolvetica', sans-serif;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: bold;
}

.modal-body .form-control {
    background: rgba(4, 16, 16, 0.8);
    border: 2px solid #05634d;
    color: #fafafa;
    border-radius: 15px;
    padding: 15px 20px;
    font-family: 'coolvetica', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.modal-body .form-control:focus {
    background: rgba(4, 16, 16, 0.9);
    border-color: #4afdcb;
    color: #fafafa;
    box-shadow: 0 0 0 3px rgba(74, 253, 203, 0.2);
    outline: none;
}

.modal-body .form-control::placeholder {
    color: #2dc295;
    opacity: 0.7;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.btn-close:hover {
    opacity: 1;
}

/* Custom Alert */
.custom-alert {
    background: linear-gradient(135deg, #0a1a1a 0%, #073229 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 450px;
    width: 90%;
    text-align: center;
    border: 2px solid #4afdcb;
    transform: scale(0.7);
    transition: transform 0.3s ease-in-out;
    font-size: 24px;
}

.custom-alert-overlay.show .custom-alert {
    transform: scale(1);
}

.custom-alert-content p {
    margin: 0 0 25px 0;
    font-size: 18px;
    color: #fafafa;
    font-family: 'coolvetica', sans-serif;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 100px 20px 60px 20px;
        font-size: 16px;
    }
    
    .page-title-1,
    .page-title-2 {
        font-size: 48px;
        margin: 0;
    }
    
    .page-title-2 {
        margin: 10px 0 0 0;
        display: block;
    }
    
    .tagline {
        font-size: 18px;
    }
    
    .content-section p {
        font-size: 16px;
    }
    
    .highlightText {
        font-size: 14px;
        padding: 6px 12px;
        margin: 0 4px;
    }
    
    .nav-toolbar {
        padding: 15px 20px;
    }
    
    .brand-title {
        font-size: 24px;
        margin-top: 50px;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-content-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-stats {
        order: -1;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
.btn:focus,
.btn2:focus,
.highlightText:focus {
    outline: 2px solid #4afdcb;
    outline-offset: 2px;
}

/* Font Awesome Icon Fixes */
.fas, .fa {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}


