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

:root {
    --primary-dark: #050816;
    --primary-blue: #0b1120;
    --accent-teal: #facc15;
    --light-teal: #f59e0b;
    --white: #ffffff;
    --off-white: #f9fafb;
    --light-gray: #e5e7eb;
    --medium-gray: #9ca3af;
    --dark-gray: #4b5563;
    --text-dark: #111827;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--off-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Helper classes for mobile nav */
.mobile-only {
    display: none;
}

/* Header Styles */
.header {
    background-color: var(--primary-dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid var(--accent-teal);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.logo-tagline {
    font-size: 11px;
    color: var(--accent-teal);
    font-weight: 600;
    margin-top: 2px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    padding: 8px 0;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-teal);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--accent-teal);
}

.nav-links a:hover:after {
    width: 100%;
}

.btn-waitlist:hover:after {
    width: 0;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 100px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 L100,0 L100,100 Z" fill="%23facc15" opacity="0.05"/></svg>');
    background-size: 100px;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--accent-teal);
    max-width: 800px;
    margin: 0 auto;
}

.hero-description {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 25px;
    color: var(--light-gray);
    font-weight: 300;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background-color: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(250, 204, 21, 0.3);
    font-size: 14px;
    color: var(--light-gray);
}

.hero-tag i {
    color: var(--accent-teal);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-app,
.btn-waitlist {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--accent-teal);
    color: var(--primary-dark) !important;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.3);
}

.btn-app:hover,
.btn-waitlist:hover {
    background-color: #eab308;
    transform: translateY(-3px);
    color: var(--primary-dark) !important;
    box-shadow: 0 6px 20px rgba(250, 204, 21, 0.4);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-teal);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    margin-top: 10px;
    color: var(--light-gray);
    text-align: center;
    max-width: 180px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Problem & Solution Section */
.problem-solution {
    padding: 100px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: var(--accent-teal);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 20px;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 25px auto 0;
    font-weight: 300;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.problem-card {
    background-color: var(--off-white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid var(--accent-teal);
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--light-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 6px 15px rgba(250, 204, 21, 0.2);
}

.problem-icon i {
    font-size: 32px;
    color: var(--primary-dark);
}

.problem-card h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.problem-card p {
    color: var(--dark-gray);
    font-weight: 300;
    line-height: 1.7;
}

.solution-section {
    background-color: var(--primary-dark);
    padding: 60px 50px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.solution-section h2 {
    color: var(--white);
    margin-bottom: 40px;
    text-align: center;
    font-size: 36px;
}

.solution-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    gap: 25px;
}

.solution-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(15, 23, 42, 0.8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--accent-teal);
}

.solution-icon i {
    font-size: 28px;
    color: var(--accent-teal);
}

.solution-text h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 22px;
}

.solution-text p {
    color: var(--light-gray);
    font-weight: 300;
    line-height: 1.7;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.feature-card {
    background-color: var(--white);
    padding: 45px 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow);
    border: 1px solid var(--light-gray);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-teal);
}

.feature-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--light-teal) 100%);
    box-shadow: 0 6px 15px rgba(250, 204, 21, 0.25);
}

.feature-icon i {
    font-size: 40px;
    color: var(--primary-dark);
}

.feature-card h3 {
    font-size: 26px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.feature-card p {
    color: var(--dark-gray);
    margin-bottom: 25px;
    font-weight: 300;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    text-align: left;
    margin-top: 25px;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-list i {
    color: var(--accent-teal);
    margin-right: 12px;
    font-size: 18px;
}

/* Investors Section */
.investors {
    padding: 100px 0;
    background-color: var(--white);
}

.vision-statement {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 50px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent-teal);
}

.vision-statement h3 {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 28px;
}

.vision-statement h3 i {
    color: var(--accent-teal);
}

.vision-statement p {
    margin-top: 15px;
    color: var(--light-gray);
    font-weight: 300;
    font-size: 18px;
    line-height: 1.7;
}

.market-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.highlight-card {
    background-color: var(--off-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent-teal);
    transition: all 0.3s;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.highlight-card h4 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 20px;
}

.highlight-card p {
    color: var(--dark-gray);
    font-weight: 300;
    line-height: 1.6;
}

.investor-quote {
    background-color: var(--off-white);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 50px;
    border-left: 5px solid var(--accent-teal);
    position: relative;
}

.investor-quote:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: var(--accent-teal);
    font-family: serif;
    opacity: 0.2;
    line-height: 0;
}

.investor-quote blockquote {
    font-size: 22px;
    font-style: italic;
    color: var(--primary-dark);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.current-status {
    background-color: var(--off-white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--accent-teal);
}

.current-status h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 24px;
}

.current-status p {
    color: var(--dark-gray);
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 25px;
    max-width: 700px;
    margin: 0 auto;
}

.btn-investor {
    display: inline-block;
    background-color: var(--accent-teal);
    color: var(--primary-dark);
    padding: 18px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    margin-top: 20px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.3);
}

.btn-investor:hover {
    background-color: #eab308;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(250, 204, 21, 0.4);
}

/* Waitlist Section */
.waitlist {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    text-align: center;
    color: var(--white);
}

.waitlist-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.waitlist-content p {
    font-size: 20px;
    color: var(--light-gray);
    max-width: 700px;
    margin: 0 auto 50px;
    font-weight: 300;
}

.waitlist-form {
    max-width: 650px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.96);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

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

.form-group input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.25);
}

.checkbox-group p {
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 18px;
}

.checkbox-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-options label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--dark-gray);
    font-weight: 500;
}

.checkbox-options input {
    width: auto;
    margin-right: 12px;
    accent-color: var(--accent-teal);
}

.btn-submit {
    background-color: var(--accent-teal);
    color: var(--primary-dark);
    border: none;
    padding: 20px 50px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.3);
}

.btn-submit:hover {
    background-color: #eab308;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(250, 204, 21, 0.4);
}

.form-note {
    font-size: 14px;
    color: var(--dark-gray);
    margin-top: 25px;
    font-weight: 300;
}

.thank-you-message {
    background-color: rgba(250, 204, 21, 0.12);
    padding: 40px;
    border-radius: 12px;
    margin-top: 30px;
    border: 2px solid var(--accent-teal);
}

.thank-you-message h3 {
    color: var(--accent-teal);
    font-size: 28px;
    margin-bottom: 15px;
}

.thank-you-message p {
    color: var(--dark-gray);
    font-size: 18px;
}

/* Placeholder sections */
.placeholder-section {
    padding: 60px 0;
    background-color: var(--off-white);
}
.placeholder-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

/* LEGAL PAGES (Privacy / Terms) */
.legal-page {
    padding: 100px 0;
    background-color: var(--white);
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.legal-meta {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.legal-intro {
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.legal-section p {
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.legal-section ul {
    margin-left: 18px;
    color: var(--dark-gray);
}

.legal-section li {
    margin-bottom: 6px;
}

.legal-highlight {
    background-color: var(--off-white);
    border-left: 4px solid var(--accent-teal);
    padding: 10px 14px;
    border-radius: 4px;
    margin-top: 10px;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 70px 0 30px;
    border-top: 3px solid var(--accent-teal);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo-text {
    font-size: 36px;
    margin-bottom: 5px;
}

.footer-description {
    margin-top: 20px;
    color: var(--light-gray);
    line-height: 1.7;
    font-weight: 300;
    font-size: 16px;
}

.footer-contact h4,
.footer-links h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h4:after,
.footer-links h4:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--accent-teal);
    bottom: 0;
    left: 0;
}

.footer-contact p {
    margin-bottom: 15px;
    color: var(--light-gray);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 300;
}

.footer-regulatory {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-regulatory p {
    color: var(--accent-teal);
    font-weight: 500;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 300;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--accent-teal);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: var(--light-gray);
    font-size: 14px;
    font-weight: 300;
}

.confidential-note {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--accent-teal);
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .hero-title {
        font-size: 48px;
    }
    .hero-subtitle {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }
    .hero-subtitle {
        font-size: 22px;
    }
    .section-header h2 {
        font-size: 36px;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-app {
        width: 280px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    
    /* SIDE DRAWER MENU */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 260px;
        background-color: var(--primary-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        gap: 10px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
        box-shadow: -8px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        transform: translateX(0);
    }

    .mobile-only {
        display: block;
    }

    .nav-links li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 6px 0;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 10px 0;
    }
    
    .hero {
        padding: 80px 0 50px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .solution-item {
        flex-direction: column;
        text-align: center;
    }
    
    .solution-icon {
        margin: 0 auto 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-contact h4:after,
    .footer-links h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .waitlist-form {
        padding: 40px 25px;
    }
    
    .solution-section {
        padding: 40px 30px;
    }

    .legal-container {
        padding-top: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    .hero-subtitle {
        font-size: 18px;
    }
    .hero-description {
        font-size: 16px;
    }
    .btn-app, .btn-investor, .btn-submit {
        padding: 15px 25px;
        font-size: 15px;
    }
    .section-header h2 {
        font-size: 28px;
    }
    .vision-statement h3 {
        font-size: 24px;
    }
    .investor-quote blockquote {
        font-size: 18px;
    }
}
