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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    overflow-x: hidden;
    background: #000;
}

.landing-container {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
    transition: opacity 0.1s ease-out;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    z-index: 10;
}

.media-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 16px;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: none;
    z-index: 20;
    max-width: 95vw;
    max-height: 85vh;
}

.media-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 0.2s ease-out;
    pointer-events: none;
}

.title-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    pointer-events: none;
}

.title-word {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 700;
    color: #bfdbfe;
    text-align: center;
    transition: none;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.scroll-hint {
    position: fixed;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    color: #bfdbfe;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    z-index: 30;
    opacity: 1;
    transition: opacity 0.3s ease-out;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}


/* Hero Grid Section Styles */
.hero-grid-section {
    position: relative;
    background: #000;
    overflow: hidden;
    min-height: 100vh;
    z-index: 50;
}

.hero-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: -1;
}

.radial-gradient-overlay {
    position: absolute;
    top: 0;
    z-index: 0;
    height: 100vh;
    width: 100vw;
    background: radial-gradient(ellipse 20% 80% at 50% -20%, rgba(120, 119, 198, 0.3), rgba(255, 255, 255, 0));
}

.retro-grid-container {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.5;
    perspective: 200px;
}

.retro-grid-perspective {
    position: absolute;
    inset: 0;
    transform: rotateX(65deg);
}

.retro-grid-lines {
    animation: grid-animation 20s linear infinite;
    background-image:
        linear-gradient(to right, gray 1px, transparent 0),
        linear-gradient(to bottom, gray 1px, transparent 0);
    background-repeat: repeat;
    background-size: 60px 60px;
    height: 300vh;
    inset: 0 0px;
    margin-left: -200%;
    transform-origin: 100% 0 0;
    width: 600vw;
}

@keyframes grid-animation {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(60px);
    }
}

.retro-grid-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000 0%, transparent 90%);
}

.hero-content-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    z-index: 10;
}

.hero-content-inner {
    max-width: 1280px;
    z-index: 10;
    margin: 0 auto;
    padding: 7rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-text-content {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-small-title {
    font-size: 0.875rem;
    color: #9ca3af;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(to top right, rgba(212, 212, 216, 0.05), rgba(156, 163, 175, 0.05), transparent);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    width: fit-content;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-small-title:hover .chevron-icon {
    transform: translateX(4px);
}

.chevron-icon {
    display: inline;
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.hero-main-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 400;
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin: 0 auto;
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0) 202.08%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-gradient-text {
    background: linear-gradient(to right, #34eb8f, #34c0eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    max-width: 672px;
    margin: 0 auto;
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1.6;
}

.hero-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.animated-border-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 9999px;
    padding: 1.5px;
}

.animated-border-spinner {
    position: absolute;
    inset: -1000%;
    animation: spin 2s linear infinite;
    background: conic-gradient(from 90deg at 50% 50%, #34eb8f 0%, #34c0eb 50%, #34eb8f 100%);
}

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

.animated-border-inner {
    display: inline-flex;
    height: 100%;
    width: 100%;
    cursor: pointer;
    align-items: center;
    justify-center: center;
    border-radius: 9999px;
    background: #030712;
    backdrop-filter: blur(12px);
}

.hero-cta-button {
    display: inline-flex;
    border-radius: 9999px;
    text-align: center;
    align-items: center;
    width: 100%;
    justify-content: center;
    background: linear-gradient(to top right, rgba(212, 212, 216, 0.05), rgba(192, 132, 252, 0.2), transparent);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-cta-button:hover {
    background: linear-gradient(to top right, rgba(212, 212, 216, 0.1), rgba(192, 132, 252, 0.3), transparent);
}

.hero-image-wrapper {
    margin-top: 8rem;
    margin-left: 2.5rem;
    margin-right: 2.5rem;
    position: relative;
    z-index: 10;
}

.hero-dashboard-image {
    width: 100%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    border-radius: 0.5rem;
    border: 1px solid rgba(75, 85, 99, 1);
}

@media (max-width: 768px) {
    .hero-content-inner {
        padding: 5rem 1.5rem;
    }

    .hero-image-wrapper {
        margin-left: 1rem;
        margin-right: 1rem;
        margin-top: 4rem;
    }

    .hero-main-title {
        font-size: 2rem;
    }
}

/* Signup Section Styles */
.signup-section {
    position: relative;
    background: #000;
    padding: 8rem 2rem;
    z-index: 60;
}

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

.signup-header {
    text-align: center;
    margin-bottom: 3rem;
}

.signup-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.signup-subtitle {
    color: #9ca3af;
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Early Access Benefits */
.early-access-benefits {
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(52, 235, 143, 0.1), rgba(52, 192, 235, 0.1));
    border: 1px solid rgba(52, 235, 143, 0.2);
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

.early-access-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #34eb8f, #34c0eb);
}

.benefit-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(to right, rgba(52, 235, 143, 0.15), rgba(52, 192, 235, 0.15));
    border: 1px solid rgba(52, 235, 143, 0.3);
    border-radius: 9999px;
    margin-bottom: 0.75rem;
}

.benefit-badge svg {
    color: #34eb8f;
    flex-shrink: 0;
}

.benefit-badge span {
    color: #34eb8f;
    font-size: 0.875rem;
    font-weight: 600;
}

.benefit-description {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.signup-form {
    background: linear-gradient(to bottom right, rgba(31, 41, 55, 0.3), rgba(17, 24, 39, 0.5));
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-full {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group label,
.form-group-full label,
.checkbox-label {
    color: #d1d5db;
    font-size: 0.875rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group-full input {
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group-full input:focus {
    border-color: #34eb8f;
    box-shadow: 0 0 0 3px rgba(52, 235, 143, 0.1);
}

.form-group input::placeholder,
.form-group-full input::placeholder {
    color: #6b7280;
}

.form-group select {
    cursor: pointer;
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.75rem;
    background: rgba(17, 24, 39, 0.3);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.checkbox-item:hover {
    background: rgba(17, 24, 39, 0.5);
    border-color: rgba(75, 85, 99, 0.5);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #34eb8f;
}

.checkbox-item span {
    color: #d1d5db;
    font-size: 0.875rem;
}

/* Submit Button */
.form-submit {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.submit-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 3rem;
    background: linear-gradient(to right, #34eb8f, #34c0eb);
    border: none;
    border-radius: 9999px;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 14px 0 rgba(52, 235, 143, 0.4);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(52, 235, 143, 0.6);
}

.submit-button:active {
    transform: translateY(0);
}

.button-arrow {
    transition: transform 0.3s;
}

.submit-button:hover .button-arrow {
    transform: translateX(4px);
}

/* Success/Error Messages */
.form-message {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.success-message {
    background: rgba(52, 235, 143, 0.1);
    border: 1px solid rgba(52, 235, 143, 0.3);
}

.success-message svg {
    flex-shrink: 0;
    color: #34eb8f;
    margin-top: 0.25rem;
}

.success-message h3 {
    color: #34eb8f;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.success-message p {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Hidden honeypot field */
.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .signup-section {
        padding: 5rem 1.5rem;
    }

    .signup-form {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .submit-button {
        width: 100%;
        justify-content: center;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}
