:root {
    --bg-dark: #0f172a;
    --bg-light: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
}

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

body, html {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    height: 100%;
    line-height: 1.6;
}

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--bg-light);
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.hero {
    text-align: center;
    padding: 6rem 1rem 4rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--accent), #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    background-color: var(--accent);
    color: var(--text-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background-color: var(--accent-hover);
}

.asset-types {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 4rem 0;
}

.asset-type {
    text-align: center;
}

.asset-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.asset-name {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    font-size: 1rem;
}

#pricing {
    text-align: center;
    padding: 4rem 0;
}

#pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.pricing-toggle label {
    margin: 0 1rem;
}

.pricing-toggle input[type="checkbox"] {
    appearance: none;
    width: 50px;
    height: 26px;
    background-color: var(--bg-light);
    border-radius: 13px;
    position: relative;
    cursor: pointer;
}

.pricing-toggle input[type="checkbox"]::before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    background-color: var(--accent);
    transition: transform 0.3s;
}

.pricing-toggle input[type="checkbox"]:checked::before {
    transform: translateX(24px);
}

.pricing-plans {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

/* Flexbox for Equal Height Pricing Cards */
.pricing-plans {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    align-items: stretch; /* Ensure all cards have the same height */
}

.pricing-plan {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 2rem;
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Space between content and button */
}

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

.plan-features {
    list-style-type: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1; /* Ensures list grows to fill space */
}

.plan-features li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.btn {
    background-color: var(--accent);
    color: var(--text-primary);
    border: none;
    padding: 1rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: var(--accent-hover);
}
.benefits-subheader {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-primary);
    background: linear-gradient(45deg, #3b82f6, #4ade80); /* Optional gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Founder Section Styling */
.founder-section {
    background: linear-gradient(135deg, #1a1f2e, #2a3040);
    padding: 4rem 2rem;
    margin-top: 4rem;
    border-radius: 10px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #3b82f6, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
}

.founder-benefits {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap; /* Allow wrapping for mobile devices */
}

.benefit-card {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 8px;
    padding: 2rem;
    flex: 1;
    transition: transform 0.3s ease;
    text-align: center; /* Center the text */
    color: var(--text-primary); /* Ensure text is visible */
}

.benefit-card:hover {
    transform: translateY(-10px);
}

/* Benefit Cards with Vibrant Icons */
.benefit-icon {
    font-size: 3rem;
    color: #4ade80; /* Vibrant green color to make the icons stand out */
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    color: #22d3ee; /* Change to a bright cyan on hover */
}



.benefit-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.benefit-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Vision and Numbers Sections */
.vision-section, .numbers-section {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center; /* Center the text */
}

.vision-section h3, .numbers-section h3 {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 1rem;
    text-align: center;
}

.vision-section p, .numbers-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Improve Icons in the Vision and Numbers Sections */
.vision-section i, .numbers-section i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: block; /* Ensure the icon is on a separate line */
}

/* Better Spacing for the Numbers List */
.numbers-section ul {
    text-align: left;
    margin-top: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.numbers-section li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
}

/* Improve Form Input and Button Styles */
#founder-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
}

#founder-form input {
    width: 100%;
    max-width: 400px;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid var(--text-secondary);
    border-radius: 4px;
    background-color: var(--bg-light);
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

#founder-form input:focus {
    border-color: var(--accent);
}

#founder-form .btn {
    width: 100%;
    max-width: 300px;
    background-color: var(--accent);
    color: var(--text-primary);
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#founder-form .btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

#founder-form .btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--accent-hover);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid var(--bg-light);
    color: var(--text-secondary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .founder-benefits {
        flex-direction: column;
    }

    .pricing-plans {
        flex-direction: column;
    }

    .asset-types {
        flex-direction: column;
        gap: 2rem;
    }
}
