:root {
    /* Approx palette from the image/site vibe */
    --bg: #0e1014;
    /* deep charcoal */
    --bg2: #141822;
    /* slightly lighter */
    --white: #ffffff;
    --muted: rgba(255, 255, 255, .72);

    --accent1: #ff4fa3;
    /* magenta */
    --accent2: #a24cff;
    /* purple */
    --accent3: #ff6b6b;
    /* warm highlight */

    --panel-radius: 22px;
    --shadow: 0 18px 60px rgba(0, 0, 0, .35);
    --hairline: rgba(255, 255, 255, .12);

    --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: var(--font);
    background:
        radial-gradient(1200px 600px at 20% 20%, rgba(162, 76, 255, .20), transparent 55%),
        radial-gradient(900px 500px at 80% 30%, rgba(255, 79, 163, .18), transparent 55%),
        linear-gradient(180deg, var(--bg), #0a0c10);
    color: var(--white);
    overflow-x: hidden;
}

.split {
    min-height: calc(100vh - 56px);
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
}

.divider {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .20), transparent);
    opacity: .85;
}

.panel {
    position: relative;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.panel__inner {
    width: min(560px, 100%);
    padding: clamp(24px, 4vw, 56px);
    margin: auto;
}

.panel--left {
    background:
        linear-gradient(180deg, rgba(14, 16, 20, .75), rgba(10, 12, 16, .85)),
        url("images/left.jpg") center / cover no-repeat;
}

.panel--right {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .80), rgba(255, 255, 255, .90)),
        url("images/right.jpg") center / cover no-repeat;
    color: #0e1014;
}

/* Curved “swoosh” corner accents */
.panel--left::before,
.panel--right::before {
    content: "";
    position: absolute;
    inset: auto -180px -180px auto;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background:
        conic-gradient(from 220deg, var(--accent1), var(--accent2), var(--accent1));
    opacity: .22;
    filter: blur(0.2px);
}

.panel--left::after,
.panel--right::after {
    content: "";
    position: absolute;
    inset: auto -250px -250px auto;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    opacity: .18;
}

.panel--right::before {
    opacity: .16;
}

.panel--right::after {
    background: rgba(14, 16, 20, .14);
    opacity: .10;
}

/* Subtle hover shine */
.panel__shine {
    position: absolute;
    inset: -40% -40%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .22), transparent 45%);
    transform: translate3d(-18%, -18%, 0);
    opacity: 0;
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
}

.panel:hover .panel__shine {
    opacity: 1;
    transform: translate3d(-8%, -8%, 0);
}

.panel:focus-visible {
    outline: 3px solid rgba(255, 79, 163, .65);
    outline-offset: -3px;
}

/* Brand block (simple logo-ish mark) */
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: clamp(18px, 2.5vw, 28px);
}

.brand--right {
    justify-content: space-between;
}

.brand__text {
    line-height: 1.05;
}

.brand__title {
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 18px;
}

.brand__subtitle {
    font-weight: 700;
    letter-spacing: .12em;
    font-size: 14px;
    opacity: .85;
}

.brand__mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .30), transparent 55%),
        linear-gradient(135deg, var(--accent1), var(--accent2));
    box-shadow: 0 10px 30px rgba(162, 76, 255, .25);
}

.brand__mark--flip {
    transform: scaleX(-1);
}

.headline {
    margin: 0 0 10px;
    font-size: clamp(32px, 4vw, 56px);
    letter-spacing: .01em;
}

.subline {
    margin: 0 0 22px;
    font-size: clamp(14px, 1.35vw, 18px);
    opacity: .86;
    max-width: 46ch;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid var(--hairline);
    backdrop-filter: blur(8px);
    font-weight: 700;
    width: fit-content;
    box-shadow: var(--shadow);
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.cta__arrow {
    display: inline-block;
    transform: translateX(0);
    transition: transform .18s ease;
}

.panel:hover .cta {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, .22);
}

.panel:hover .cta__arrow {
    transform: translateX(4px);
}

/* CTA variant on white panel */
.cta--dark {
    background: rgba(14, 16, 20, .08);
    border-color: rgba(14, 16, 20, .12);
    box-shadow: 0 18px 60px rgba(14, 16, 20, .16);
}

.panel--right:hover .cta--dark {
    border-color: rgba(14, 16, 20, .22);
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(255, 255, 255, .10);
    border: 1px solid var(--hairline);
    color: rgba(255, 255, 255, .90);
}

.panel--right .pill {
    background: rgba(14, 16, 20, .06);
    border-color: rgba(14, 16, 20, .10);
    color: rgba(14, 16, 20, .85);
}

.pill--ghost {
    background: transparent;
}

.foot {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    opacity: .72;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.foot__dot {
    opacity: .5;
}

/* Responsive: stack into 2 rows on mobile */
@media (max-width: 860px) {
    .split {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 2px 1fr;
    }

    .divider {
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
    }

    .panel--right {
        color: #0e1014;
    }
}