main {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 3em;
    padding-bottom: 5em;
    display: flex;
    justify-content: center;
    align-items: center;
}

body {
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; */
    overflow-x: hidden;
}


.hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 24px 0;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: 24px;
    color: #b3b3b3;
    margin-bottom: 48px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

/* Background gradient effect */
.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(156, 39, 176, 0.15) 0%, transparent 60%);
    pointer-events: none;
}


#header {
    display: flex;
    justify-content: center;
}


.button-primary {
    background: #ffffff;
    color: #000000;
    padding: 10px 24px !important;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600 !important;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.button-primary:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.pricing-meta-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 2em;
}

.section-description {
    width: 100%;
    padding: 40px;
    max-width: 1100px;
    text-align: center;
}

#main-pricing-heading {
    padding-top: 100px;
    padding-bottom: 68px;
}

.sub-desciption-title {
    font-size: 1.3em;
    font-weight: 600;
}

.section-description h2,
.section-description h1 {
    font-weight: 600;
    color: white !important;
}

.section-description p {
    margin-bottom: 0 !important;
}


.call-to-action {
    width: 100%;
    padding: 40px;
    max-width: 1100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 1em;
    align-items: center;
}


.loader {
    /* display: none; */
    position: relative;
    border: 0.2em solid #181818;
    border-top: 0.2em solid var(--main-color);
    border-right: 0.2em solid var(--main-color);
    border-radius: 50%;
    width: 1.1em;
    height: 1.1em;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 0.5s linear infinite;
}


@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#email {
    padding: 10px;
    border: 1px solid #272727bd;
    border-radius: 5px;
    background-color: transparent;
    color: var(--text-color);
    font-size: 16px;
    width: 35%;
    outline: none !important;
}

@media (max-width: 576px) {
    #email {
        width: 95%;
    }
}

#waitlistButton {
    width: fit-content;
}

.pricing-container {
    /* background-color: rgba(48, 48, 48, 0.5); */
    background-color: transparent;
    border-radius: 15px;
    max-width: 1100px;
    width: 100%;
    text-align: center;
}

@media (max-width: 576px) {
    .pricing-container {
        padding: 40px 10px;
    }
}

@media (min-width: 576px) {
    .pricing-container {
        padding: 40px;
    }
}

.pricing-header {
    margin-bottom: 40px;
}

.pricing-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pricing-model {
    background-color: rgba(98, 0, 238, 0.05);
    border: 2px solid rgba(98, 0, 238, 0.3);
    border-radius: 10px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.pricing-model h2 {
    color: white;
    margin-bottom: 15px;
}

.feature-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: separate;
    border-spacing: 0 10px;
}


.feature-table tr td:first-child {
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}

.feature-table tr td:last-child {
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}

.feature-table td {
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(183, 183, 183, 0.1);
}

.feature-table .feature-name {
    text-align: left;
}

.feature-table .feature-status {
    text-align: right;
}

.locked-badge {
    background-color: #ff4500;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.unlocked-badge {
    background-color: #4CAF50;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}


.unlock-message {
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
    padding: 15px;
    margin-top: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
}


@media (max-width: 768px) {

    .button-primary {
        width: 100%;
        max-width: 200px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .credits-calculator-container {
        width: 100% !important;
    }

    .credits-breakdown tbody {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.7em;
    }

    .credits-breakdown tr {
        display: flex !important;
        flex-direction: column !important;
    }

    .credits-breakdown tr td,
    .credits-breakdown tr th {
        width: 100% !important;
        text-align: center !important;
    }

    .credits-breakdown tr td:nth-child(odd) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }
}




.credits-calculator-container {
    background-color: transparent;
    border-radius: 16px;
    width: 70%;
    margin-top: 40px;
    /* margin-bottom: 40px; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border-color);
}

.calculator-inputs {
    padding: 30px;
    background-color: rgba(48, 48, 48, 0.3);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calculator-results {
    padding: 30px;
    background-color: rgba(98, 0, 238, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.input-group-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group-container label {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.input-group-container input,
.input-group-container select {
    background-color: var(--input-background);
    border: 1px solid rgba(183, 183, 183, 0.1);
    color: white;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.input-group-container input:focus,
.input-group-container select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(98, 0, 238, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: var(--input-background);
    border: 2px solid rgba(183, 183, 183, 0.3);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: '✔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

.credits-breakdown {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.credits-breakdown table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.credits-breakdown table tr {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.credits-breakdown table td,
.credits-breakdown table th {
    padding: 10px;
    text-align: left;
}

.credits-breakdown .total-credits {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.credit-insight {
    margin-top: 15px;
    font-style: italic;
    color: var(--text-color);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .credits-calculator-container {
        grid-template-columns: 1fr;
    }
}








/* Value proposition */
.value-proposition {
    /* background: linear-gradient(165deg, rgba(98, 0, 238, 0.05) 0%, rgba(98, 0, 238, 0.1) 100%); */
    /* border: 1px solid rgba(98, 0, 238, 0.2); */
    background-color: rgba(98, 0, 238, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
}

.value-title {
    color: white;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 24px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background-color: rgba(48, 48, 48, 0.3);
    border-radius: 8px;
    transition: transform 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
}

.benefit-item:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.05);
}

.benefit-icon {
    font-size: 24px;
    background-color: rgba(98, 0, 238, 0.1);
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
}

.benefit-content {
    flex: 1;
}

.benefit-content h4 {
    color: white;
    font-size: 1rem;
    margin: 0 0 4px 0;
}

.benefit-content p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}







/* Call to action section */
.cta-button {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    background-color: rgba(98, 0, 238, 0.1) !important;
    color: var(--accent-color) !important;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.3s;
    border: 2px solid rgba(98, 0, 238, 0.5) !important;
    border-image: initial !important;
    outline: none;
}


@media (min-width: 576px) {
    .cta-button {
        padding: 0.7em 1.7em;
    }
}

@media (max-width: 576px) {
    .cta-button {
        padding: 0.5em 0;
        width: 50%;
        text-align: center;
    }
}


.cta-button:hover {
    /* background-color: var(--hover-color) !important; */
    transform: scale(1.05);
    border: 2px solid rgba(98, 0, 238) !important;
    color: white !important;
}




/* Waitlist form */
.modal-title {
    color: #b7b7b7 !important;
}

.modal-content {
    position: relative;
    border-radius: 10px !important;
    background-color: transparent !important;
    background-color: #070707 !important;
    border: 1px solid #272727bd !important;
}

.modal-header {
    padding-top: 0.8em !important;
    padding-bottom: 0em !important;
    border: none !important;
}

.modal-footer {
    display: flex;
    justify-content: center !important;
    flex-direction: column !important;
    border: none !important;
}


.waitlist-form-section {
    display: flex;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.custom-form {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    width: 95%;
}

.custom-form input,
.custom-form textarea,
.custom-form select,
#user-experience-level,
#primary-content-platform {
    padding: 10px;
    border: 1px solid #272727bd;
    border-radius: 5px;
    background-color: transparent;
    color: var(--text-color);
    font-size: 16px;
}

.custom-form input:focus,
.custom-form textPath:focus,
.custom-form select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.custom-form select {
    color: #b7b7b7;
}

.custom-form button {
    background-color: var(--accent-color);
    color: white;
    padding: 10px;
    border: none;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    width: 7em;
    transition: background-color 0.3s;
}

.custom-form button:hover {
    background-color: var(--hover-color);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-weight: bold;
}



.comparison-table-container {
    padding: 0.5em;
    border-radius: 10px;
    width: 100%;
    border: 1px solid var(--border-color);
}


.comparison-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th {
    /* background-color: rgba(98, 0, 238, 0.1) !important; */
    background-color: #272727bd !important;
    /* background-color: rgba(48, 48, 48, 0.3); */
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--border-color) !important;
}

.comparison-table th:first-child {
    width: 25%;
}

.comparison-table th:not(:first-child) {
    width: 37.5%;
    text-align: center;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #272727bd;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background-color: transparent;
}

.feature-name {
    font-weight: 500;
}

.traditional,
.credits {
    text-align: start;
}

/* 
.traditional span, .credits span {
    margin-left: 1em;
} */

.locked {
    /* background-color: #ff4500; */
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 1em;
}

.unlocked {
    /* background-color: #4CAF50; */
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 1em;
}

.header-cell {
    text-align: center;
    padding: 20px;
}

.model-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.model-description {
    font-size: 14px;
    color: #6c757d;
}

.credits-highlight {
    background-color: #f0f9ff;
}

.unlock-message {
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}


/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .comparison-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        box-shadow: none;
        /* border: 1px solid #e9ecef; */
    }

    .model-title {
        font-size: 18px;
    }

    .model-description {
        font-size: 12px;
    }

    .locked,
    .unlocked {
        padding: 4px 8px;
        font-size: 12px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }
}

/* For very small screens */
@media screen and (max-width: 480px) {

    /* Card-style for mobile */
    .mobile-cards {
        display: block;
    }

    .mobile-card {
        /* border: 1px solid #e9ecef; */
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }

    .card-header {
        background-color: #f8f9fa;
        padding: 15px;
        border-bottom: 1px solid #e9ecef;
        text-align: center;
    }

    .card-content {
        padding: 0;
    }

    .feature-row {
        padding: 10px 15px;
        border-bottom: 1px solid #e9ecef;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .feature-row:last-child {
        border-bottom: none;
    }

    .desktop-table {
        display: none;
    }

    .credits-card {
        background-color: #f0f9ff;
    }
}



.early-access-text {
    margin-bottom: 0 !important;
    font-size: 1.1em;
    font-weight: 600;
    /* background: linear-gradient(90deg, #00f3ff, #6a00f4, #d400ff, #00f3ff); */
    background: linear-gradient(45deg, #00fffc, #fc00ff, #fffc00);
    background-size: 400% 400%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    /* animation: buttonGlow 3s infinite; */
    animation: gradient-animation 6s ease-in-out infinite;
    text-align: center;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}





.credit-slider-section {
    padding: 0px 0px;
    /* background-color: rgba(48, 48, 48, 0.3); */
    background-color: transparent;
    text-align: center;
    /* font-family: Arial, sans-serif; */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 786px) {
    .credit-slider-section {
        border-radius: 20px;
    }
}

.credit-slider-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.maintext {
    /* color: var(--font-color); */
    margin-bottom: 25px !important;
}

.subtext {
    font-size: 16px;
    color: var(--font-color);
    margin-bottom: 30px;
}

.slider-box-container {
    width: 50%;
    /* border-radius: 12px; */
    /* background-color: var(--background-color); */
    /* border: 2px solid var(--border-color); */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-box {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    /* background: rgb(98, 0, 238, 0.1); */
    border-radius: 12px;
}

@media (max-width: 786px) {
    .slider-box-container {
        width: 95%;
    }
}

.slider-box label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.slider-box input[type="range"] {
    width: 100%;
    margin: 15px 0;
    outline: none;
}

.creditRange {
    color: var(--font-color);
}

.slider-info {
    display: flex;
    justify-content: center;
    gap: 1em;
    font-size: 16px;
    margin-top: 10px;
    width: 100%;
    align-items: start;
}

@media (max-width: 786px) {

    .money-info,
    .videos-info {
        display: flex;
        align-items: center;
        gap: 0.5em;
    }

    .credits-info {
        display: flex;
        flex-direction: column;
        gap: 0.2em;
        align-items: center;
    }
}

.slider-info span {
    /* flex: 1; */
    text-align: center;
    font-weight: bold;
}

.slider-info #videos,
.slider-info #amount,
.slider-info #credits {
    background-color: black;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.3em 0.6em;
    border-radius: 7px;
}

.price-line {
    font-size: 1.2rem;
    font-weight: 600;
    /* background-color: rgba(0, 128, 0, 0.412); */
    /* display: flex;
    width: 100%;
    justify-content: center; */
}

.price-savings {
    margin-top: 6px;
    font-size: 0.9rem;
    opacity: 0.5;
    background-color: rgba(0, 128, 0, 0.412);
    border-radius: 7px;
    /* width: fit-content; */
    padding-left: 1em;
    padding-right: 1em;
}




.credit-usage-details {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
}

.credit-usage-explanation {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.credit-usage-details .note {
    font-size: 17px;
    color: var(--font-color);
    margin-bottom: 0.4em;
}

.note strong {
    color: var(--accent-color);
}

.more-credits-details {
    display: flex;
    flex-direction: column;
    /* gap: 0.1em; */
    align-items: start;
    width: fit-content;
}

.more-credits-details p {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 0 !important;
}