* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: #050914;
    color: #ffffff;
}

.landing {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(5, 9, 20, 0.98) 0%, rgba(5, 9, 20, 0.88) 42%, rgba(5, 9, 20, 0.35) 100%),
        url("/public/theme/img/bricksindex-cover.jpg") center right / cover no-repeat;
}

.overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 52%, rgba(255, 112, 0, 0.22), transparent 24%),
        radial-gradient(circle at 20% 30%, rgba(0, 116, 255, 0.16), transparent 26%);
    pointer-events: none;
}

.hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    padding: 64px 8vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand-icon {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.brand-name {
    font-size: clamp(32px, 5vw, 62px);
    font-weight: 800;
    letter-spacing: -2px;
}

.brand-name span {
    color: #ff7a00;
}

.hero-content {
    max-width: 760px;
    padding: 80px 0;
}

.eyebrow {
    color: #ff7a00;
    text-transform: uppercase;
    letter-spacing: 8px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
}

h1 {
    margin: 0;
    font-size: clamp(64px, 10vw, 132px);
    line-height: 0.9;
    letter-spacing: -5px;
    text-transform: uppercase;
}

.subtitle {
    margin: 28px 0 42px;
    font-size: clamp(20px, 2.2vw, 30px);
    color: #d9e2ef;
    max-width: 620px;
}

.beta-form {
    display: flex;
    max-width: 560px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 8px;
    backdrop-filter: blur(18px);
}

.beta-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 18px 20px;
    font-size: 16px;
    outline: none;
}

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

.beta-form button {
    border: none;
    background: #ff7a00;
    color: #fff;
    padding: 0 28px;
    border-radius: 14px;
    font-weight: 800;
    cursor: pointer;
    font-size: 15px;
}

.beta-form button:hover {
    background: #ff8f24;
}

.small-text {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    margin-top: 18px;
}

.icons {
    display: flex;
    gap: 34px;
    color: rgba(255,255,255,0.72);
    font-size: 28px;
}

.icons span {
    filter: drop-shadow(0 0 12px rgba(255, 122, 0, 0.4));
}

@media (max-width: 768px) {
    .hero {
        padding: 34px 24px;
    }

    .brand-icon {
        width: 54px;
        height: 54px;
    }

    .hero-content {
        padding: 70px 0;
    }

    .beta-form {
        flex-direction: column;
    }

    .beta-form button {
        padding: 16px;
    }

    .icons {
        gap: 22px;
        font-size: 22px;
    }
}