:root {
    --bg-color: #050510;
    --text-color: #e2e8f0;
    --primary-color: #6366f1;
    --secondary-color: #ec4899;
    --accent-color: #8b5cf6;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(15, 23, 42, 0.6);
}

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

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass {
    background: rgba(5, 5, 16, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
}

/* Background Stars */
.stars-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(white, rgba(255, 255, 255, .2) 2px, transparent 3px),
        radial-gradient(white, rgba(255, 255, 255, .15) 1px, transparent 2px),
        radial-gradient(white, rgba(255, 255, 255, .1) 2px, transparent 3px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px;
    z-index: -1;
    animation: starsMove 120s linear infinite;
}

@keyframes starsMove {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-550px);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.dot {
    color: var(--secondary-color);
}

.btn-small {
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 0.9rem;
}

.btn-small:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: auto;
    /* Was 100vh */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 5% 4rem;
    /* Added bottom padding, kept top */
    position: relative;
    overflow: hidden;
}


.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 10;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.benefits-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    color: #cbd5e1;
    flex-wrap: wrap;
}

.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.6);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: white;
    border-radius: 12px;
    font-weight: 600;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Rocket Animation CSS */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 400px;
}

.rocket-container {
    position: relative;
    width: 120px;
    height: 250px;
    animation: bounce 3s ease-in-out infinite;
    z-index: 20;
}

.rocket {
    position: relative;
    width: 80px;
    margin: 0 auto;
    transition: transform 0.3s;
}

.rocket-body {
    width: 80px;
    height: 180px;
    background: #e2e8f0;
    border-radius: 50% 50% 10% 10%;
    position: relative;
    z-index: 10;
    background: linear-gradient(to right, #e2e8f0 40%, #cbd5e1 100%);
    box-shadow: inset 5px 0 10px rgba(0, 0, 0, 0.1);
}

.window {
    width: 40px;
    height: 40px;
    background: #38bdf8;
    border: 4px solid #94a3b8;
    border-radius: 50%;
    position: absolute;
    top: 50px;
    left: 20px;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.fin {
    position: absolute;
    bottom: 0;
    width: 40px;
    height: 60px;
    background: var(--secondary-color);
    z-index: 5;
}

.fin-left {
    left: -20px;
    border-radius: 100% 0 0 0;
}

.fin-right {
    right: -20px;
    border-radius: 0 100% 0 0;
}

.exhaust-flame {
    position: absolute;
    top: 90%;
    left: 20px;
    width: 40px;
    height: 80px;
    background: linear-gradient(to bottom, transparent 10%, #f59e0b 40%, #ef4444 80%);
    border-radius: 50%;
    animation: flame 0.2s infinite;
    z-index: 1;
    filter: blur(5px);
}

.exhaust-fumes li {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    list-style: none;
    position: absolute;
    border-radius: 100%;
    left: 10px;
    animation: fume 2s infinite;
    top: 150px;
    z-index: 0;
}

.exhaust-fumes li:nth-child(2) {
    width: 40px;
    height: 40px;
    left: 20px;
    animation-delay: 0.2s;
}

.exhaust-fumes li:nth-child(3) {
    width: 50px;
    height: 50px;
    left: 15px;
    animation-delay: 0.4s;
}

.exhaust-fumes li:nth-child(4) {
    width: 70px;
    height: 70px;
    left: 5px;
    animation-delay: 0.6s;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes flame {
    0% {
        height: 80px;
        width: 40px;
        opacity: 0.8;
    }

    50% {
        height: 100px;
        width: 45px;
        opacity: 1;
    }

    100% {
        height: 80px;
        width: 40px;
        opacity: 0.8;
    }
}

@keyframes fume {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(200px) scale(1.5);
        opacity: 0;
    }
}

/* Sections */
section {
    padding: 3rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.section-lead {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: #94a3b8;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Features List */
.solution-section {
    background: linear-gradient(to bottom, var(--bg-color), #0f172a);
}

.features-list {
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: var(--glass-bg);
    padding: 1.5rem;
    border-radius: 12px;
}

.check {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Philosophy - Pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pillar-card {
    border-left: 1px solid var(--glass-border);
    padding: 2rem;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
}

.pillar-number {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 0;
    right: 20px;
}

.pillar-card ul {
    list-style: none;
    margin-top: 1rem;
}

.pillar-card li::before {
    content: "•";
    color: var(--accent-color);
    display: inline-block;
    width: 1em;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--glass-border);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    z-index: 2;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

/* Tags */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.tag {
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    font-size: 0.9rem;
}

/* Founder */
.founder-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.founder-content .name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

/* CTA Footer */
.cta-section {
    position: relative;
    padding: 8rem 0;
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
    padding: 4rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 4rem;
}

.signup-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.signup-form input {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    width: 300px;
    font-family: inherit;
}

.final-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #e2e8f0;
    opacity: 0.8;
}

/* Utilities Enhancements */
.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.top-margin {
    margin-top: 3rem;
}

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

.styled-list {
    list-style: none;
    padding-left: 0;
}

.styled-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.styled-list li::before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.check-list-styled {
    list-style: none;
    padding-left: 0;
}

.check-list-styled li {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.comparison-table th {
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
}

.highlight-row {
    background: rgba(99, 102, 241, 0.1);
}

.quote-box {
    text-align: center;
    font-size: 1.3rem;
    font-style: italic;
    color: #cbd5e1;
    border-left: 4px solid var(--accent-color);
    padding: 1rem 2rem;
    background: var(--glass-bg);
    border-radius: 0 16px 16px 0;
    margin: 3rem auto;
    max-width: 900px;
}

/* Countdown Timer */
.countdown-box {
    margin-top: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    display: inline-block;
    backdrop-filter: blur(5px);
}

.countdown-title {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.time-label {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 0.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .grid-2-col {
        grid-template-columns: 1fr;
    }

    .hero {
        flex-direction: column-reverse;
        padding-top: 8rem;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .benefits-row {
        justify-content: center;
    }

    .cta-group {
        justify-content: center;
    }

    .hero-visual {
        margin-bottom: 2rem;
        height: 300px;
    }
}

/* Form Message Styles */
.form-message {
    margin-top: 1rem;
    font-size: 1rem;
    min-height: 1.5rem;
    transition: all 0.3s ease;
}

.form-message.success {
    color: #4ade80;
    font-weight: 600;
}

.form-message.error {
    color: #f87171;
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    filter: saturate(0.5);
}