@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Montserrat:wght@200;300;400;500&display=swap');

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --text-primary: #0f172a;
    /* Deep Navy */
    --text-secondary: #64748b;
    /* Slate */
    --accent-gold: #b45309;
    /* Darker Gold for contrast on white */
    --accent-teal: #0f766e;
    --glass-surface: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(148, 163, 184, 0.2);
    --cursor-dot: #0f172a;
    --cursor-outline: rgba(15, 23, 42, 0.2);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Custom cursor */
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Ambient Background (Light Mode) --- */
.ambient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: #ffffff;
    overflow: hidden;
}

/* Subtle Moving Gradients */
.aurora {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 237, 213, 0.4), transparent 40%),
        /* Soft Orange */
        radial-gradient(circle at 90% 90%, rgba(204, 251, 241, 0.4), transparent 40%),
        /* Soft Teal */
        radial-gradient(circle at 50% 50%, rgba(224, 231, 255, 0.3), transparent 60%);
    /* Soft Indigo */
    filter: blur(60px);
    animation: moveLight 25s ease-in-out infinite alternate;
}

@keyframes moveLight {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(-5%, -5%);
    }
}

/* --- Custom Cursor --- */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--cursor-dot);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--cursor-outline);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline {
    width: 50px;
    height: 50px;
    background-color: rgba(15, 23, 42, 0.02);
}

/* --- Main Content --- */
.main-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

/* Left: Visual/Logo */
.visual-col {
    display: flex;
    justify-content: center;
    position: relative;
    perspective: 1000px;
}

.logo-container {
    position: relative;
    width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Subtle shadow instead of glow for light mode */
.logo-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
    transform: scale(1.2);
}

.logo-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
    /* Softer shadow */
    opacity: 0;
    /* JS Fade in */
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
    opacity: 0.6;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.orb-1 {
    width: 120px;
    height: 120px;
    top: -30px;
    right: -40px;
    animation: float 10s infinite ease-in-out;
}

.orb-2 {
    width: 80px;
    height: 80px;
    bottom: 0px;
    left: -40px;
    animation: float 8s infinite ease-in-out reverse;
}

/* Right: Content */
.content-col {
    color: var(--text-primary);
    text-align: left;
}

h2.pre-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0;
}

h1 {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 400;
    /* Regular weight looks better in dark on white */
    line-height: 0.9;
    margin-bottom: 2rem;
    color: var(--text-primary);
    letter-spacing: -2px;
    opacity: 0;
}

p.subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    max-width: 480px;
    font-weight: 400;
    opacity: 0;
}

/* Form Styling */
.notify-wrapper {
    position: relative;
    opacity: 0;
}

.input-group {
    position: relative;
    display: inline-flex;
    align-items: center;
    border-bottom: 1px solid var(--text-secondary);
    /* Darker line */
    transition: border-color 0.3s;
    width: 100%;
    max-width: 350px;
}

.input-group:focus-within {
    border-bottom: 2px solid var(--accent-gold);
}

input {
    background: transparent;
    border: none;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: var(--text-primary);
    width: 100%;
    outline: none;
    font-family: var(--font-body);
}

input::placeholder {
    color: rgba(15, 23, 42, 0.4);
}

button.btn-arrow {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    padding: 0 1rem;
    transition: transform 0.3s, color 0.3s;
}

button.btn-arrow:hover {
    transform: translateX(8px);
    color: var(--accent-gold);
}

/* Social Minimal */
.social-vertical {
    position: fixed;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    opacity: 0;
}

.social-vertical::before {
    content: '';
    width: 1px;
    height: 80px;
    background: var(--text-secondary);
    margin: 0 auto;
    opacity: 0.3;
}

.social-link {
    color: var(--text-secondary);
    font-size: 1.3rem;
    transition: color 0.3s, transform 0.3s;
}

.social-link:hover {
    color: var(--text-primary);
    transform: scale(1.2);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .main-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 3rem;
    }

    .content-col {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .visual-col {
        order: -1;
    }

    h1 {
        font-size: 3.5rem;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    * {
        cursor: auto;
    }

    .social-vertical {
        position: static;
        flex-direction: row;
        transform: none;
        margin-top: 4rem;
    }

    .social-vertical::before {
        display: none;
    }
}