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

:root {
    --color-primary: #ff5a00;
    --color-dark: #013330;
    --color-lime: #a6fe5a;
    --color-purple: #9d8eff;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-text-light: #ffeee4;
    --color-text-dark: #0c005c;
    --color-cyan: #c9fffc;
}

body {
    font-family: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Header */
.header {
    position: relative;
    background-color: var(--color-black);
    padding: 39px 0 0 0;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 134.6px;
    height: 32px;
    object-fit: contain;
}

/* Hero Section */
.hero {
    width: 100vw;
    min-height: 900px;
    margin-top: 0;
    position: relative;
    display: flex;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.hero-container {
    display: flex;
    width: 100%;
    min-height: 900px;
    position: relative;
}

.header .logo {
    padding-left: 140px;
}

.hero-content {
    flex: 1;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 89px;
    align-items: flex-start;
    justify-content: center;
    padding: 0 40px 0 140px;
    background-color: var(--color-black);
}

.hero-header-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    text-align: left;
    max-width: 577px;
    width: 100%;
}

.hero-title {
    font-size: 90px;
    font-weight: 800;
    line-height: 90px;
    color: var(--color-white);
    width: 100%;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    animation: heroRevealTitle 0.8s ease-out 0.2s forwards;
}

@keyframes heroRevealTitle {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    color: var(--color-white);
    max-width: 558px;
    width: 100%;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    animation: heroRevealSubtitle 0.8s ease-out 0.4s forwards;
}

@keyframes heroRevealSubtitle {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    max-width: 453px;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: heroRevealCTA 0.8s ease-out 0.6s forwards;
}

@keyframes heroRevealCTA {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    padding: 16px 24px;
    border: none;
    border-radius: 4px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Onest', sans-serif;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 90, 0, 0.4);
}

.hero-stats {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary);
    text-align: left;
    width: 100%;
}

.hero-visual {
    flex: 1;
    width: 50%;
    height: 900px;
    background-color: var(--color-primary);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    opacity: 0;
    transform: translateX(50px);
    animation: heroRevealVisual 1s ease-out 0.3s forwards;
}

@keyframes heroRevealVisual {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-visual-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-main-image {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 100%;
    min-height: 700px;
    z-index: 2;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0 40px 20px;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 90%;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    animation: heroRevealImage 1s ease-out 0.5s forwards;
}

@keyframes heroRevealImage {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes softRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero-logo {
    position: absolute;
    left: 30px;
    bottom: 30px;
    width: 106.72px;
    height: 106.72px;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.5);
    animation: heroRevealLogo 0.6s ease-out 1s forwards;
}

@keyframes heroRevealLogo {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-logo-img {
    width: 100%;
    height: 100%;
}

/* Features Section */
.features-section {
    width: 100%;
    padding: 160px 0 0 0;
    background-color: var(--color-black);
}

.features-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px 0 130px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: flex-start;
}

.features-header {
    display: flex;
    flex-direction: column;
    gap: 23px;
    max-width: 576px;
    width: 100%;
    text-align: left;
    align-items: flex-start;
}

.section-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--color-white);
    line-height: 24px;
    text-align: left;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 24px;
    text-align: left;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 1340px;
}

.feature-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.feature-card {
    border-radius: 30px;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-card-orange {
    background-color: var(--color-primary);
    padding: 69px 66px;
}

.feature-card-white {
    background-color: var(--color-white);
    padding: 91px 73px;
}

.feature-card-dark {
    background-color: var(--color-dark);
    padding: 91px 75px;
}

.feature-card-lime {
    background-color: var(--color-lime);
    padding: 102px 75px;
}

.feature-icon {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    display: block;
}

.feature-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: var(--color-white);
    max-width: 284px;
    width: 100%;
    text-align: left;
}

/* Mission Section */
.mission-section {
    width: 100%;
    padding: 160px 0 0 0;
    background-color: var(--color-black);
    position: relative;
}

.mission-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px 0 130px;
    display: flex;
    gap: 178px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.mission-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 910px;
    width: 100%;
    flex: 1;
    min-width: 300px;
}

.mission-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
    color: var(--color-white);
    width: 100%;
}

.mission-description {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: var(--color-white);
    max-width: 597px;
    width: 100%;
}

.mission-description p {
    margin: 0;
}

.mission-description p:first-child {
    margin-bottom: 0;
}

.btn-secondary-cta {
    max-width: 252px;
    width: 100%;
    flex-shrink: 0;
}

.mission-visual {
    width: 100%;
    height: 486px;
    background: linear-gradient(180deg, #000000 0%, #3a0000 50%, #000000 100%);
    position: relative;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mission-image {
    width: 570px;
    height: 467px;
    object-fit: cover;
    object-position: center;
    animation: softRotate 20s linear infinite;
}

/* Detailed Features Grid */
.detailed-features {
    width: 100%;
    padding: 160px 0 0 0;
    background-color: var(--color-black);
}

.detailed-features-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px 0 130px;
}

.features-grid-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

@media (max-width: 968px) {
    .features-grid-large {
        grid-template-columns: 1fr;
    }
}

.feature-block {
    border-radius: 30px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-height: 589px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-block-orange {
    background-color: var(--color-primary);
}

.feature-block-dark {
    background-color: var(--color-dark);
}

.feature-block-purple {
    background-color: var(--color-purple);
}

.feature-block-lime {
    background-color: var(--color-lime);
}

.feature-block-content {
    display: flex;
    flex-direction: column;
    gap: 116px;
    position: relative;
    z-index: 2;
}

.feature-block-dark .feature-block-content {
    gap: 91px;
}

.feature-block-purple .feature-block-content {
    gap: 70px;
}

.feature-block-lime .feature-block-content {
    gap: 81px;
}

.feature-block-text-block {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
}

.feature-block-dark .feature-block-text-block {
    gap: 30px;
}

.feature-block-purple .feature-block-text-block,
.feature-block-lime .feature-block-text-block {
    gap: 32px;
}

.feature-block-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 38px;
    width: 100%;
}

.feature-block-orange .feature-block-title,
.feature-block-dark .feature-block-title {
    color: var(--color-white);
}

.feature-block-dark .feature-block-title {
    color: var(--color-cyan);
}

.feature-block-purple .feature-block-title,
.feature-block-lime .feature-block-title {
    color: var(--color-black);
}

.feature-block-text {
    font-size: 28px;
    font-weight: 500;
    line-height: 34px;
    width: 100%;
}

.feature-block-orange .feature-block-text {
    color: var(--color-white);
}

.feature-block-dark .feature-block-text {
    color: var(--color-cyan);
}

.feature-block-purple .feature-block-text,
.feature-block-lime .feature-block-text {
    color: var(--color-black);
}

.feature-block-icon {
    width: 160px;
    height: 160px;
    flex-shrink: 0;
}

.feature-block-dark .feature-block-icon {
    width: 157px;
    height: 160px;
}

.feature-block-purple .feature-block-icon {
    width: 145px;
    height: 160px;
}

.feature-block-lime .feature-block-icon {
    width: 159px;
    height: 160px;
}

.feature-block-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    border-radius: 30px;
}

.feature-image-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* FAQ Section */
.faq-section {
    width: 100%;
    padding: 160px 0 0 0;
    background-color: var(--color-black);
}

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

.faq-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 20px;
    text-align: left;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 90, 0, 0.3);
    background-color: rgba(255, 90, 0, 0.05);
}

.faq-item.active {
    border-color: var(--color-primary);
    background-color: rgba(255, 90, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 20px;
    font-weight: 600;
    font-family: 'Onest', sans-serif;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-item.active .faq-question {
    color: var(--color-primary);
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 32px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 32px 24px 32px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
    margin-top: 8px;
}

.faq-answer p:first-child {
    margin-top: 0;
}

/* Footer */
.footer {
    background-color: var(--color-black);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 100px;
}

.footer p {
    color: var(--color-white);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1600px) {
    body {
        max-width: 100%;
    }

    .header .logo {
        padding-left: 80px;
    }

    .hero-content {
        padding-left: 80px;
    }

    .features-container,
    .mission-container,
    .detailed-features-container {
        padding: 0 20px;
        width: 100%;
    }
}

@media (max-width: 1400px) {
    .hero-title {
        font-size: 70px;
        line-height: 70px;
    }

    .header .logo {
        padding-left: 40px;
    }

    .hero-content {
        width: 50%;
        flex: 1;
        padding-left: 40px;
    }

    .hero-visual {
        width: 50%;
        flex: 1;
    }

    .features-grid {
        flex-wrap: wrap;
    }

    .features-grid-large > div {
        flex-wrap: wrap;
    }

    .feature-block {
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 968px) {
    .hero {
        flex-direction: column;
    }

    .hero-container {
        flex-direction: column;
    }

    .hero-content {
        width: 100%;
        flex: 1;
        padding: 80px 20px 40px;
        gap: 30px;
        align-items: center;
    }

    .hero-header-container {
        align-items: center;
        text-align: center;
    }

    .hero-title {
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
    }

    .hero-cta-container {
        align-items: center;
    }

    .hero-stats {
        text-align: center;
    }

    .hero-visual {
        width: 100%;
        height: 500px;
        flex: 1;
    }

    .hero-title {
        font-size: 50px;
        line-height: 50px;
    }

    .hero-header-container,
    .hero-cta-container {
        width: 100%;
        max-width: 577px;
    }

    .hero-subtitle {
        width: 100%;
        max-width: 558px;
    }

    .features-container {
        padding: 0 20px;
        width: 100%;
    }

    .features-header {
        width: 100%;
    }

    .features-grid {
        flex-direction: column;
    }

    .feature-card-wrapper {
        width: 100% !important;
    }

    .mission-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
        width: 100%;
    }

    .mission-content {
        width: 100%;
    }

    .mission-description {
        width: 100%;
    }

    .btn-secondary-cta {
        width: 100%;
        max-width: 453px;
    }

    .features-grid-large > div {
        flex-direction: column;
    }

    .feature-block {
        width: 100%;
        min-height: auto;
    }

    .faq-container {
        padding: 0 20px;
    }

    .faq-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .faq-question {
        font-size: 18px;
        padding: 20px 24px;
    }
}

@media (max-width: 640px) {
    .header {
        padding: 20px 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header .logo {
        padding-left: 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .logo-icon {
        width: 90px;
        height: 21px;
        object-fit: contain;
    }

    .hero-title {
        font-size: 40px;
        line-height: 46px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 22px;
    }

    .section-title {
        font-size: 28px;
        line-height: 34px;
    }

    .section-subtitle {
        font-size: 16px;
        line-height: 22px;
    }

    .mission-title {
        font-size: 24px;
        line-height: 30px;
    }

    .mission-description p {
        font-size: 16px;
        line-height: 22px;
    }

    .feature-text {
        font-size: 16px;
        line-height: 22px;
    }

    .feature-block {
        padding: 30px;
    }

    .feature-block-title {
        font-size: 24px;
        line-height: 30px;
    }

    .feature-block-text {
        font-size: 18px;
        line-height: 24px;
    }

    .features-section,
    .mission-section,
    .detailed-features,
    .faq-section {
        padding-top: 60px;
    }

    .features-container,
    .mission-container,
    .detailed-features-container,
    .faq-container {
        padding: 0 20px;
    }

    .mission-container {
        gap: 40px;
    }

    .faq-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .faq-question {
        font-size: 16px;
        padding: 16px 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-answer p {
        font-size: 15px;
        line-height: 22px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 16px 20px;
    }

    .hero-content {
        padding: 60px 20px 40px;
        gap: 30px;
    }

    .hero-header-container {
        gap: 20px;
    }

    .hero-main-image {
        max-width: 300px;
        min-height: auto;
        padding: 20px;
    }

    .hero-image {
        max-height: 70%;
    }

    .hero-logo {
        display: none;
    }

    .features-container {
        gap: 40px;
    }

    .features-grid {
        gap: 20px;
    }

    .feature-card {
        padding: 24px;
    }

    .btn-primary,
    .btn-secondary-cta {
        font-size: 16px;
        padding: 14px 28px;
    }

    .modal-content {
        width: 90%;
        max-width: 500px;
        padding: 30px 20px;
    }

    .modal-title {
        font-size: 28px;
    }

    .modal-subtitle {
        font-size: 16px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: var(--color-black);
    border: 1px solid rgba(255, 90, 0, 0.3);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(255, 90, 0, 0.2);
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--color-primary);
}

.modal-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
    text-align: center;
}

.modal-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    text-align: center;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-white);
    font-size: 16px;
    font-family: 'Onest', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: rgba(255, 90, 0, 0.05);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-modal {
    width: 100%;
    margin-top: 8px;
}

.form-message {
    text-align: center;
    font-size: 14px;
    margin-top: 8px;
    min-height: 20px;
}

.form-message.success {
    color: var(--color-lime);
}

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

.form-message.loading {
    color: var(--color-primary);
}
