* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    min-height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #f5f5f5;
    overflow-x: hidden;

    background:
        radial-gradient(circle at left 40%, rgba(255,140,0,0.18), transparent 45%),
        radial-gradient(circle at right 70%, rgba(255,140,0,0.08), transparent 60%),
        #050505;
}

/* HEADER */

.header {
    position: absolute;
    top: 30px;
    left: 60px;
    z-index: 10;
}

.logo {
    width: 180px;
}

/* HERO GRID */

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding: 0 6%;
    gap: 40px;
}

/* HERO TEXT */

.hero-content h1 {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 800;
}

.hero-content h1 span {
    color: #ff8c00;
}

.hero-content p {
    margin-top: 25px;
    font-size: 18px;
    color: #bbb;
    line-height: 1.6;
}

.beta-spots {
    margin-top: 15px;
    font-size: 14px;
    color: #ff8c00;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    margin-top: 35px;
    padding: 16px 32px;
    background: #ff8c00;
    color: #000;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,140,0,0.4);
}

.micro-proof {
    margin-top: 18px;
    font-size: 13px;
    color: #888;
}

/* DASHBOARD */

.dashboard-preview {
    display: flex;
    justify-content: center;
}

.mockup-placeholder {
    width: 100%;
    max-width: 500px;
    height: 320px;
    border-radius: 20px;
    background: linear-gradient(135deg, #111, #1a1a1a);
    border: 1px solid rgba(255,140,0,0.3);
    box-shadow: 0 0 50px rgba(255,140,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

/* FEATURES */

.features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-box {
    padding: 25px;
    border-radius: 18px;
    border: 1px solid rgba(255,140,0,0.3);
    background: rgba(0,0,0,0.45);
}

.feature-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ff8c00;
}

.feature-box p {
    font-size: 14px;
    color: #ccc;
}

/* TARGET */

.target {
    padding: 120px 6%;
    text-align: center;
}

.target h2 {
    font-size: 36px;
    margin-bottom: 60px;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.target-item {
    padding: 30px;
    border-radius: 18px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,140,0,0.2);
}

/* BETA */

.beta-section {
    padding: 120px 6%;
    text-align: center;
}

.beta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.beta-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* INPUTS UNIFORMI */

.beta-form input,
.beta-form select {
    width: 250px;
    padding: 14px 20px;
    border-radius: 30px;
    border: none;
    background: #111;
    color: #bbb;
    font-size: 14px;
    outline: none;
}

/* Placeholder coerente */

.beta-form input::placeholder {
    color: #555;
}

/* SELECT PERSONALIZZATO */

.select-wrapper {
    position: relative;
    width: 250px;
}

.select-wrapper select {
    width: 100%;
    appearance: none;
    background: #111;
    color: #bbb;
    cursor: pointer;
}

/* freccia custom */

.select-wrapper::after {
    content: "▾";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    pointer-events: none;
}

/* BOTTONE */

.beta-form button {
    padding: 14px 28px;
    border-radius: 30px;
    border: none;
    background: #ff8c00;
    color: #000;
    font-weight: 600;
    cursor: pointer;
}

/* FOOTER */

.footer {
    text-align: center;
    padding: 40px 0;
    font-size: 14px;
    color: #666;
}

/* RESPONSIVE */

@media (max-width: 1400px) {

    .hero {
        grid-template-columns: 1fr 1fr;
    }

    .features {
        grid-column: span 2;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 900px) {

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature-box {
        max-width: 400px;
    }

    .header {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 600px) {

    .hero-content h1 {
        font-size: 32px;
    }

    .mockup-placeholder {
        height: 220px;
    }

    .beta-form {
        flex-direction: column;
        align-items: center;
    }

    .beta-form input,
    .select-wrapper,
    .beta-form button {
        width: 100%;
        max-width: 350px;
    }
}
