﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #08070c;
    color: #fff;
}

/* ================================
   Main Page
================================ */

.adj-landing {
    min-height: 100vh;
    width: 100%;
    padding: 30px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top left, rgba(255, 160, 190, 0.18), transparent 34%), radial-gradient(circle at bottom right, rgba(180, 120, 255, 0.18), transparent 34%), linear-gradient(135deg, #08070c 0%, #15101d 45%, #09070c 100%);
}

.adj-page {
    width: 100%;
    max-width: 1120px;
}

/* ================================
   Main Card Split Layout
================================ */

.adj-card {
    width: 100%;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
    overflow: hidden;
}

.adj-card-split {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    min-height: 620px;
}

.adj-media-panel {
    position: relative;
    min-height: 620px;
    background: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(0,0,0,0.45));
}

.adj-main-image-wrap {
    width: 100%;
    height: 100%;
    min-height: 620px;
    position: relative;
    overflow: hidden;
}

    .adj-main-image-wrap::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(8,7,12,0.05), rgba(8,7,12,0.52)), linear-gradient(to top, rgba(8,7,12,0.35), transparent 45%);
        pointer-events: none;
    }

.adj-main-image {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    display: block;
}

.adj-copy-panel {
    padding: 48px 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

/* ================================
   Logo / Heading
================================ */

.adj-logo-mark {
    width: 78px;
    height: 78px;
    margin: 0 auto 18px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffd0df, #b486ff);
    color: #130d18;
    font-size: 28px;
    font-weight: 800;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
}

.adj-card h1 {
    font-size: clamp(2rem, 5vw, 3.65rem);
    line-height: 1.02;
    letter-spacing: -2px;
    margin-bottom: 14px;
    color: #fff;
}

.adj-tagline {
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 2.3vw, 1.18rem);
    margin-bottom: 26px;
}

.adj-headline {
    font-size: clamp(1.42rem, 3.5vw, 2rem);
    line-height: 1.18;
    margin-bottom: 12px;
    font-weight: 700;
    color: #fff;
}

.adj-intro {
    max-width: 560px;
    margin: 0 auto 28px auto;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1rem;
    line-height: 1.65;
}

/* ================================
   Form
================================ */

.adj-signup-form {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
}

.adj-form-row {
    width: 100%;
    display: flex;
    gap: 12px;
}

.adj-email-input {
    flex: 1;
    min-width: 0;
    height: 54px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    outline: none;
}

    .adj-email-input::placeholder {
        color: rgba(255, 255, 255, 0.48);
    }

    .adj-email-input:focus {
        border-color: rgba(255, 206, 226, 0.75);
        box-shadow: 0 0 0 4px rgba(255, 206, 226, 0.12);
    }

.adj-join-btn {
    height: 54px;
    padding: 0 26px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    background: linear-gradient(135deg, #ffd0df, #b486ff);
    color: #100b16;
    font-size: 1rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

    .adj-join-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 22px 46px rgba(0, 0, 0, 0.45);
    }

.adj-privacy-note {
    margin-top: 13px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.9rem;
}

/* ================================
   Mini Benefits
================================ */

.adj-mini-benefits {
    max-width: 560px;
    margin: 26px auto 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
}

    .adj-mini-benefits div {
        padding: 10px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.075);
        border: 1px solid rgba(255, 255, 255, 0.11);
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.93rem;
    }

/* ================================
   Social
================================ */

.adj-divider {
    width: 100%;
    max-width: 520px;
    height: 1px;
    margin: 30px auto 24px auto;
    background: rgba(255, 255, 255, 0.13);
}

.adj-social-title {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.96rem;
    margin-bottom: 16px;
}

.adj-social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.adj-social-link {
    min-width: 112px;
    height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-weight: 650;
    transition: background 0.18s ease, transform 0.18s ease;
}

    .adj-social-link:hover {
        background: rgba(255, 255, 255, 0.16);
        transform: translateY(-2px);
    }

/* ================================
   Collage Section
================================ */

.adj-collage-section {
    margin: 22px auto 0 auto;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.052);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.adj-collage-title {
    text-align: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    margin-bottom: 18px;
}

.adj-collage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.adj-collage-item {
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.36);
}

    .adj-collage-item img {
        width: 100%;
        aspect-ratio: 4 / 5;
        object-fit: cover;
        display: block;
        transition: transform 0.35s ease;
    }

    .adj-collage-item:hover img {
        transform: scale(1.04);
    }

/* ================================
   Footer
================================ */

.adj-footer-note {
    text-align: center;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.82rem;
}

/* ================================
   Tablet
================================ */

@media (max-width: 920px) {
    .adj-card-split {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .adj-media-panel {
        min-height: 420px;
    }

    .adj-main-image-wrap,
    .adj-main-image {
        min-height: 420px;
        height: 420px;
    }

        .adj-main-image-wrap::after {
            background: linear-gradient(to top, rgba(8,7,12,0.45), transparent 55%);
        }

    .adj-copy-panel {
        padding: 40px 28px;
    }
}

/* ================================
   Mobile
================================ */

@media (max-width: 620px) {
    .adj-landing {
        align-items: flex-start;
        padding: 18px 12px;
    }

    .adj-card {
        border-radius: 24px;
    }

    .adj-media-panel {
        min-height: 330px;
    }

    .adj-main-image-wrap,
    .adj-main-image {
        min-height: 330px;
        height: 330px;
    }

    .adj-copy-panel {
        padding: 32px 20px;
    }

    .adj-logo-mark {
        width: 70px;
        height: 70px;
        font-size: 25px;
    }

    .adj-card h1 {
        letter-spacing: -1px;
    }

    .adj-form-row {
        flex-direction: column;
    }

    .adj-email-input,
    .adj-join-btn {
        width: 100%;
    }

    .adj-social-links {
        flex-direction: column;
        align-items: center;
    }

    .adj-social-link {
        width: 100%;
        max-width: 320px;
    }

    .adj-collage-section {
        padding: 18px;
        border-radius: 22px;
    }

    .adj-collage-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .adj-collage-item {
        max-width: 320px;
        width: 100%;
        margin: 0 auto;
    }

        .adj-collage-item img {
            aspect-ratio: 4 / 5;
        }
}
/* ================================
   Thank You Page
================================ */

.adj-thankyou-page {
    max-width: 760px;
}

.adj-thankyou-card {
    padding: 52px 38px;
    text-align: center;
}

@media (max-width: 620px) {
    .adj-thankyou-card {
        padding: 38px 20px;
    }
}