:root {
    --color-primary: #1e3a5f;
    --color-primary-dark: #0d1b2e;
    --color-secondary: #191919;
    --color-text: #191919;
    --color-text-light: #5A5A5A;
    --color-background: #ffffff;
    --color-accent: #98c1d9;
    --font-heading: 'Jost', sans-serif;
    --font-body: 'Crimson Pro', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-background);
    color: var(--color-text);
    font-family: var(--font-body);
    overflow: hidden; 
    height: 100vh;
    width: 100vw;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

/* Base White Layer */
.page-bg {
    position: absolute;
    inset: 0;
    background-color: var(--color-background);
    z-index: 1;
}

/* Dark Primary Layer with Diagonal Cut */
.split-left {
    position: absolute;
    inset: 0;
    background-color: var(--color-primary-dark);
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 100%);
    z-index: 2;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Atmospheric Depth */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: drift 15s infinite alternate ease-in-out;
    pointer-events: none;
}
.blob-1 {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--color-accent), transparent 70%);
    top: -20%;
    left: -10%;
}
.blob-2 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, #5A8DB6, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, -50px) scale(1.1); }
}

/* Left Typography & Content */
.content-left {
    position: relative;
    z-index: 10;
    color: #fff;
    max-width: 800px;
    padding: 0 10vw;
    margin-top: -15vh;
}

.content-left h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.domain-name {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    background: linear-gradient(90deg, #fff, var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.notice {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    line-height: 1.6;
}

/* Right Content Area */
.content-right {
    position: absolute;
    bottom: 8vh;
    right: 5vw;
    width: 380px;
    max-width: 90vw;
    padding: 2rem;
    text-align: right;
    z-index: 10; /* Fixed stacking issue to float over the layout */
}

.qr-logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 2rem;
}

.qr-logo-container img {
    height: 48px;
    width: auto;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.qr-logo-container span {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
}

.content-right h3 {
    font-size: 1.4rem;
    color: var(--color-secondary);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.content-right p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

/* Pill Button replacing custom clip-path as requested */
.pill-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    text-decoration: none;
    border: 2px solid var(--color-primary);
    transition: all 0.3s ease;
}

.pill-btn:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.2);
}

/* Footer Section */
.bottom-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 5vw;
    z-index: 10;
    text-align: left;
    background: transparent;
}

.bottom-footer p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.bottom-footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottom-footer a:hover {
    color: var(--color-accent);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpAnim 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .split-left {
        clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
    }
    .bottom-footer {
        text-align: center;
        background: rgba(21, 44, 71, 0.9);
    }
}

@media (max-width: 768px) {
    body {
        overflow-y: auto;
        height: auto;
    }
    .split-left {
        position: relative;
        min-height: 70vh;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
        align-items: flex-start;
        padding-top: 15vh;
    }
    .content-left {
        margin-top: 0;
        padding: 0 6vw;
    }
    .content-right {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 4rem 6vw 6rem 6vw;
    }
    .qr-logo-container {
        justify-content: center;
    }
    .bottom-footer {
        position: relative;
        background: var(--color-primary-dark);
        padding: 2rem 6vw;
    }
}
