:root {
            --bg: #0b0b0f;
            --card-bg: rgba(255, 255, 255, 0.03);
            --accent: #f5c48b;      /* soft gold / beige */
            --accent-soft: rgba(245, 196, 139, 0.12);
            --text-main: #f9f9f9;
            --text-muted: #a5a5b3;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: radial-gradient(circle at top, #1a1a25 0, #050509 55%, #000 100%);
            color: var(--text-main);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }

        .wrapper {
            max-width: 1100px;
            width: 100%;
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
            gap: 48px;
            align-items: center;
        }

        @media (max-width: 880px) {
            .wrapper {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 6px 14px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(5, 5, 10, 0.7);
            backdrop-filter: blur(12px);
            font-size: 11px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        .brand-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent);
        }

        .headline {
            margin-top: 24px;
            font-size: clamp(2.4rem, 4vw, 3.2rem);
            line-height: 1.05;
            letter-spacing: 0.02em;
        }

        .headline span {
            color: var(--accent);
        }

        .subtext {
            margin-top: 16px;
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--text-muted);
            max-width: 420px;
        }

        .pill-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 18px;
        }

        .pill {
            font-size: 11px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            padding: 6px 12px;
            border-radius: 999px;
            border: 1px solid var(--accent-soft);
            color: var(--accent);
            background: rgba(245, 196, 139, 0.05);
        }

        .notify-wrapper {
            margin-top: 26px;
        }

        .notify-label {
            font-size: 0.75rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .notify-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .notify-form input[type="email"] {
            flex: 1 1 200px;
            min-width: 0;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(4, 4, 10, 0.9);
            color: var(--text-main);
            padding: 11px 16px;
            font-size: 0.9rem;
            outline: none;
        }

        .notify-form input[type="email"]::placeholder {
            color: #6f7080;
        }

        .notify-form button {
            border: none;
            border-radius: 999px;
            padding: 11px 22px;
            font-size: 0.9rem;
            background: linear-gradient(135deg, var(--accent), #f1a75a);
            color: #151515;
            font-weight: 500;
            cursor: pointer;
            transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
            white-space: nowrap;
        }

        .notify-form button:hover {
            transform: translateY(-1px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
            filter: brightness(1.05);
        }

        .note {
            margin-top: 10px;
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        .note strong {
            color: var(--accent);
            font-weight: 500;
        }

        .footer {
            margin-top: 32px;
            font-size: 0.78rem;
            color: var(--text-muted);
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            align-items: center;
        }

        .footer a {
            color: var(--text-muted);
            text-decoration: none;
            border-bottom: 1px solid transparent;
        }

        .footer a:hover {
            color: var(--accent);
            border-bottom-color: var(--accent-soft);
        }

        /* Right side visual */
        .visual-card {
            position: relative;
            border-radius: 28px;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(10, 10, 16, 0.96));
            padding: 24px;
            overflow: hidden;
            min-height: 320px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            backdrop-filter: blur(16px);
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.65),
                0 0 0 1px rgba(255, 255, 255, 0.02);
        }

        .visual-tag {
            font-size: 10px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        .visual-title {
            margin-top: 14px;
            font-size: 1.2rem;
            font-weight: 500;
        }

        .visual-grid {
            margin-top: 24px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .tile {
            border-radius: 18px;
            background-size: cover;
            background-position: center;
            aspect-ratio: 3 / 4;
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }

        .tile::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 60%);
        }

        /* Neutral image-style gradients mimicking fabric/clothing */
        .tile:nth-child(1) {
            background-image: linear-gradient(135deg, #15151c, #363641);
        }
        .tile:nth-child(2) {
            background-image: linear-gradient(135deg, #3b3027, #b38b64);
        }
        .tile:nth-child(3) {
            background-image: linear-gradient(135deg, #111, #343434);
        }
        .tile:nth-child(4) {
            background-image: linear-gradient(135deg, #24243e, #302b63);
        }
        .tile:nth-child(5) {
            background-image: linear-gradient(135deg, #403234, #d1a08a);
        }
        .tile:nth-child(6) {
            background-image: linear-gradient(135deg, #121212, #252525);
        }

        .tile-label {
            position: absolute;
            left: 10px;
            bottom: 10px;
            z-index: 1;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: rgba(255, 255, 255, 0.92);
        }

        .badge {
            position: absolute;
            right: 18px;
            top: 18px;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(0, 0, 0, 0.75);
            color: var(--accent);
            font-size: 0.72rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            border: 1px solid rgba(245, 196, 139, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .badge-dot {
            width: 7px;
            height: 7px;
            border-radius: 999px;
            background: #35d399;
        }

        .bottom-strip {
            margin-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .bottom-strip strong {
            font-weight: 500;
            color: var(--accent);
        }

        @media (max-width: 880px) {
            .visual-card {
                order: -1;
                min-height: 260px;
            }
        }
		/* reCAPTCHA container takes full row inside flex form */
.notify-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.notify-captcha {
    flex: 0 0 100%;
    margin-top: 8px;
    display: flex;
    justify-content: flex-start;
}

/* Center it on mobile / narrow screens */
@media (max-width: 600px) {
    .notify-captcha {
        justify-content: center;
    }
}

/* Optional: slightly shrink reCAPTCHA if it feels too big */
.notify-captcha .g-recaptcha {
    transform: scale(0.9);
    transform-origin: left top;
}

/* If scaling causes awkward spacing, limit height of its wrapper */
.notify-captcha {
    height: 70px; /* adjust as needed when scaling */
    overflow: visible;
}
    </style>
	<style>
    .ks-auth-link {
        font-size: 13px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        text-decoration: none;
        color: #111;
    }

    .ks-auth-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .35);
        display: none;
        z-index: 9998;
    }

    .ks-auth-modal {
        position: fixed;
        inset: 0;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 20px;
        z-index: 9999;
    }

    .ks-auth-inner {
        width: 100%;
        max-width: 400px;
        background: #fff;
        border-radius: 16px;
        border: 1px solid #e3e3e0;
        box-shadow: 0 22px 40px rgba(0, 0, 0, .12);
        padding: 22px 22px 18px;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    }

    .ks-auth-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 14px;
    }

    .ks-auth-title {
        font-size: 14px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }

    .ks-auth-close {
        border: none;
        background: transparent;
        font-size: 20px;
        line-height: 1;
        cursor: pointer;
    }

    .ks-auth-tabs {
        display: inline-flex;
        border-radius: 999px;
        background: #f4f4f2;
        padding: 2px;
        margin-bottom: 14px;
    }

    .ks-auth-tab {
        border: none;
        background: transparent;
        border-radius: 999px;
        padding: 6px 14px;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        cursor: pointer;
        color: #777;
    }

    .ks-auth-tab-active {
        background: #fff;
        color: #111;
        box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
    }

    .ks-auth-message {
        display: none;
        font-size: 13px;
        padding: 8px 12px;
        border-radius: 999px;
        margin-bottom: 10px;
    }

    .ks-auth-message-success {
        background: #ebf9ef;
        color: #166534;
    }

    .ks-auth-message-error {
        background: #fef2f2;
        color: #b91c1c;
    }

    .ks-auth-body {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .ks-auth-field {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .ks-auth-label {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: #777;
    }

    .ks-auth-input {
        border-radius: 999px;
        border: 1px solid #e3e3e0;
        padding: 9px 13px;
        font-size: 14px;
        outline: none;
        background: #fafaf8;
    }

    .ks-auth-input:focus {
        border-color: #111;
        background: #fff;
    }

    .ks-auth-btn {
        width: 100%;
        border-radius: 999px;
        padding: 9px 14px;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        border: 1px solid transparent;
        cursor: pointer;
        margin-top: 8px;
    }

    .ks-auth-btn-solid {
        background: #111;
        color: #fff;
        border-color: #111;
    }

    .ks-auth-btn:disabled {
        opacity: .6;
        cursor: default;
    }

    @media (max-width: 480px) {
        .ks-auth-inner {
            padding: 18px 16px 14px;
        }
    }