        :root {
            --entry-dark: #070911;
            --entry-brown: #b87943;
            --entry-brown-light: #e9d8c9;
            --entry-bg: #fbf7f3;
            --entry-muted: #6d6a66;
        }

        body {
            font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background:
                radial-gradient(circle at top center, #fff 0%, var(--entry-bg) 55%, #f5eee7 100%);
            color: var(--entry-dark);
        }

        .entry-hero {
            min-height: 100vh;
            padding: 48px 0 56px;
        }

        .entry-logo {
            display: flex;
            align-items: center;
            gap: 14px;
            font-weight: 800;
            font-size: clamp(1.7rem, 3vw, 2.5rem);
            letter-spacing: .22em;
        }

        .logo-mark {
            position: relative;
            width: 42px;
            height: 34px;
        }

        .logo-mark span {
            display: block;
            height: 7px;
            border-radius: 999px;
            background: var(--entry-dark);
            margin-bottom: 7px;
        }

        .logo-mark span:nth-child(2) {
            width: 31px;
        }

        .logo-mark span:nth-child(3) {
            width: 25px;
            background: var(--entry-brown);
        }

        .logo-plane {
            position: absolute;
            right: -10px;
            top: 9px;
            color: var(--entry-brown);
            font-size: 18px;
            transform: rotate(15deg);
        }

        .early-access {
            color: var(--entry-brown);
            font-weight: 700;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .entry-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(184, 121, 67, .45);
            color: var(--entry-brown);
            border-radius: 999px;
            padding: 9px 22px;
            font-weight: 700;
            background: rgba(255,255,255,.45);
        }

        .hero-title {
            max-width: 900px;
            margin: 28px auto 18px;
            font-size: clamp(2.5rem, 6vw, 5rem);
            line-height: 1.06;
            /* font-weight: 900; */
            letter-spacing: -.06em;
        }

        .hero-text {
            max-width: 760px;
            margin: 0 auto;
            font-size: clamp(1.1rem, 1.6vw, 1.5rem);
            line-height: 1.45;
        }

        .top-features {
            max-width: 960px;
            margin: 54px auto 30px;
        }

        .top-feature {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .top-feature i {
            color: var(--entry-brown);
            font-size: 2.4rem;
        }

        .feature-title {
            font-weight: 800;
            margin-bottom: 3px;
        }

        .feature-subtitle {
            color: var(--entry-muted);
        }

        .feature-divider {
            width: 1px;
            background: rgba(184, 121, 67, .28);
        }

        .signup-card {
            max-width: 1220px;
            margin: 0 auto;
            border-radius: 28px;
            background: rgba(255,255,255,.78);
            box-shadow: 0 24px 60px rgba(75, 47, 28, .10);
            padding: 34px 42px 18px;
            backdrop-filter: blur(12px);
        }

        .form-label {
            font-weight: 700;
            margin-bottom: 12px;
        }

        .entry-input {
            height: 66px;
            border-radius: 14px;
            border: 1px solid rgba(26, 26, 26, .18);
            font-size: 1.1rem;
            padding-left: 58px;
        }

        .input-wrap {
            position: relative;
        }

        .input-wrap i {
            position: absolute;
            left: 22px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--entry-brown);
            font-size: 1.45rem;
            z-index: 2;
        }

        .entry-button {
            height: 66px;
            border-radius: 14px;
            background: var(--entry-dark);
            color: var(--entry-brown-light);
            font-weight: 800;
            font-size: 1.1rem;
            border: 0;
            padding: 0 30px;
            width: 100%;
            box-shadow: 0 18px 30px rgba(7, 9, 17, .18);
        }

        .entry-button:hover {
            background: #11131d;
            color: white;
        }

        .privacy-note {
            color: var(--entry-dark);
            font-weight: 600;
            margin-top: 16px;
        }

        .privacy-note i {
            color: var(--entry-brown);
        }

        .bottom-features {
            max-width: 1240px;
            margin: 46px auto 0;
        }

        .bottom-feature {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .bottom-icon {
            flex: 0 0 64px;
            width: 64px;
            height: 64px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: #f0e4da;
            color: var(--entry-brown);
            font-size: 2rem;
        }

        .bottom-feature h3 {
            font-size: 1rem;
            font-weight: 900;
            margin-bottom: 8px;
        }

        .bottom-feature p {
            margin: 0;
            font-size: .95rem;
            line-height: 1.55;
        }

        .bottom-divider {
            max-width: 1220px;
            margin: 60px auto 0;
            display: flex;
            align-items: center;
            gap: 36px;
            color: var(--entry-brown);
        }

        .bottom-divider::before,
        .bottom-divider::after {
            content: "";
            height: 1px;
            flex: 1;
            background: rgba(184, 121, 67, .45);
        }

        .bottom-divider i {
            font-size: 1.7rem;
            transform: rotate(15deg);
        }

        @media (max-width: 991px) {
            .feature-divider {
                display: none;
            }

            .top-feature {
                justify-content: center;
                text-align: left;
                margin-bottom: 22px;
            }

            .signup-card {
                padding: 28px;
            }

            .entry-button {
                margin-top: 8px;
            }
        }

        @media (max-width: 576px) {
            .entry-hero {
                padding-top: 28px;
            }

            .entry-logo {
                font-size: 1.45rem;
            }

            .early-access {
                font-size: .85rem;
            }

            .signup-card {
                border-radius: 22px;
                padding: 24px 18px;
            }

            .bottom-feature {
                gap: 14px;
            }

            .bottom-icon {
                width: 54px;
                height: 54px;
                flex-basis: 54px;
                font-size: 1.6rem;
            }
        }