:root {
    --bg: #09090f;
    --bg-soft: #11111d;
    --card: rgba(255, 255, 255, 0.075);
    --card-strong: rgba(255, 255, 255, 0.12);
    --text: #f7f2ff;
    --muted: #bcb4cc;
    --muted-strong: #ded7ea;
    --line: rgba(255, 255, 255, 0.14);
    --hot: #ff3d81;
    --hot-2: #ff7a45;
    --violet: #8c5cff;
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 61, 129, 0.24), transparent 28rem),
        radial-gradient(circle at 80% 20%, rgba(140, 92, 255, 0.24), transparent 26rem),
        radial-gradient(circle at 60% 90%, rgba(255, 122, 69, 0.12), transparent 30rem),
        var(--bg);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.landing-page {
    width: min(100% - 32px, var(--max));
    margin: 0 auto;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
    gap: 56px;
    align-items: center;
    min-height: 780px;
    padding: 28px 0 72px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    filter: blur(34px);
    opacity: 0.4;
    pointer-events: none;
}

.hero-glow-one {
    top: 160px;
    left: -80px;
    background: var(--hot);
}

.hero-glow-two {
    right: 40px;
    bottom: 100px;
    background: var(--violet);
}

.topbar {
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(9, 9, 15, 0.72);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--hot), var(--violet));
    box-shadow: 0 10px 30px rgba(255, 61, 129, 0.35);
}

.brand-name {
    font-size: 1.15rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--muted);
    font-size: 0.94rem;
}

.nav-actions a {
    transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-actions a:hover {
    color: var(--text);
}

.nav-pill {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--text);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 96px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    color: var(--muted-strong);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--hot), var(--hot-2));
    box-shadow: 0 0 24px rgba(255, 61, 129, 0.9);
}

h1,
h2,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: clamp(3.4rem, 8vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.08em;
}

.hero-copy {
    max-width: 650px;
    margin-bottom: 32px;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        border-color 160ms ease,
        background 160ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--hot), var(--violet));
    box-shadow: 0 18px 40px rgba(255, 61, 129, 0.28);
}

.button-secondary {
    border: 1px solid var(--line);
    color: var(--text);
    background: rgba(255, 255, 255, 0.07);
}

.button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.28);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-row span {
    padding: 10px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted-strong);
    background: rgba(255, 255, 255, 0.055);
    font-size: 0.92rem;
}

.preview-card {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding-top: 90px;
}

.phone-shell {
    width: min(100%, 390px);
    min-height: 620px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 46px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
        rgba(20, 20, 34, 0.88);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.phone-top {
    width: 118px;
    height: 28px;
    margin: 0 auto 18px;
    border-radius: 0 0 18px 18px;
    background: rgba(0, 0, 0, 0.35);
}

.match-card {
    min-height: 535px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.06);
}

.profile-photo {
    display: grid;
    place-items: end start;
    min-height: 340px;
    padding: 24px;
    background:
        linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.72)),
        radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.16), transparent 11rem),
        linear-gradient(135deg, rgba(255, 61, 129, 0.9), rgba(140, 92, 255, 0.8));
}

.profile-photo span {
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.07em;
}

.profile-info {
    padding: 22px;
}

.profile-info h2 {
    margin-bottom: 8px;
    font-size: 1.45rem;
    letter-spacing: -0.04em;
}

.profile-info p {
    margin-bottom: 18px;
    color: var(--muted);
    line-height: 1.5;
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.profile-tags span {
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted-strong);
    font-size: 0.82rem;
}

.swipe-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 0 22px 24px;
}

.swipe-actions button {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
    cursor: default;
    font-size: 1.45rem;
    font-weight: 900;
}

.swipe-actions button:last-child {
    background: linear-gradient(135deg, var(--hot), var(--violet));
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 34px 0 86px;
}

.feature-card {
    min-height: 300px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--card);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.feature-icon {
    display: inline-flex;
    margin-bottom: 38px;
    color: var(--hot-2);
    font-weight: 900;
    letter-spacing: 0.08em;
}

.feature-card h2 {
    margin-bottom: 14px;
    font-size: 1.55rem;
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.65;
}

.updates-section {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 34px;
    align-items: center;
    margin-bottom: 32px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 61, 129, 0.16), transparent 20rem),
        var(--card);
}

.updates-section h2 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 0.96;
    letter-spacing: -0.07em;
}

.updates-section p {
    max-width: 620px;
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.65;
}

.updates-form {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(0, 0, 0, 0.18);
}

.updates-form label {
    display: block;
    margin-bottom: 12px;
    color: var(--muted-strong);
    font-weight: 800;
}

.email-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.email-row input,
.email-row button {
    min-height: 50px;
    border-radius: 999px;
}

.email-row input {
    width: 100%;
    border: 1px solid var(--line);
    padding: 0 16px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.email-row input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.email-row button {
    border: 0;
    padding: 0 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--hot), var(--violet));
    font-weight: 900;
}

.form-note {
    margin-top: 12px;
    font-size: 0.9rem;
}

.policy-strip {
    margin-bottom: 26px;
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
}

.policy-strip p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.site-footer {
    width: min(100% - 32px, var(--max));
    margin: 0 auto;
    padding: 26px 0 40px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
}

.site-footer p {
    margin: 0;
}

.site-footer div {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width: 920px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: auto;
        padding-bottom: 50px;
    }

    .hero-content {
        padding-top: 124px;
    }

    .preview-card {
        padding-top: 0;
    }

    .feature-grid,
    .updates-section {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: auto;
    }
}

@media (max-width: 680px) {
    .landing-page,
    .site-footer {
        width: min(100% - 22px, var(--max));
    }

    .topbar {
        align-items: flex-start;
        border-radius: 24px;
    }

    .nav-actions {
        display: none;
    }

    h1 {
        font-size: clamp(3rem, 18vw, 4.8rem);
    }

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

    .button {
        width: 100%;
    }

    .trust-row span {
        width: 100%;
        text-align: center;
    }

    .phone-shell {
        min-height: auto;
        border-radius: 36px;
    }

    .match-card {
        min-height: auto;
    }

    .profile-photo {
        min-height: 270px;
    }

    .updates-section {
        padding: 22px;
    }

    .email-row {
        grid-template-columns: 1fr;
    }

    .site-footer {
        flex-direction: column;
    }
    .form-alert {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 0.94rem;
    line-height: 1.45;
}

.form-alert-success {
    border: 1px solid rgba(110, 255, 190, 0.28);
    color: #d7ffec;
    background: rgba(60, 220, 150, 0.12);
}

.form-alert-error {
    border: 1px solid rgba(255, 100, 135, 0.32);
    color: #ffdce5;
    background: rgba(255, 61, 129, 0.13);
}

.turnstile-wrap {
    margin-top: 14px;
    min-height: 65px;
}
}