:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --accent-color: #d4af37; /* Subtle Luxury Gold */
    --accent-hover: #f3c745;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle noise texture for a premium look */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 50;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 4rem;
    position: relative;
    z-index: 2;
}

/* Header */
header {
    width: 100%;
    opacity: 0; /* Handled by GSAP */
}

.logo-container {
    display: inline-flex;
    align-items: baseline;
    gap: 0.3rem;
}

.logo {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.logo-bold {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ltd {
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    margin-left: 0.5rem;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.content-wrapper {
    max-width: 800px;
}

.title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.title .line {
    display: block;
    overflow: hidden;
}

.title .line span {
    display: block;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 3.5rem;
    opacity: 0; /* Handled by GSAP */
}

/* Subscription Form */
.notify-container {
    width: 100%;
    max-width: 450px;
    opacity: 0; /* Handled by GSAP */
}

.notify-form {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 0.8rem;
    transition: border-color 0.4s ease;
    position: relative;
}

.notify-form:focus-within {
    border-color: rgba(255, 255, 255, 0.8);
}

.email-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 300;
    outline: none;
    padding: 0;
}

.email-input::placeholder {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.email-input:focus::placeholder {
    color: transparent;
}

.notify-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0;
    transition: color 0.3s ease;
}

.btn-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.notify-btn:hover {
    color: var(--accent-color);
}

.notify-btn:hover .btn-icon {
    transform: translateX(8px);
}

.form-feedback {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 1.2rem;
    font-weight: 300;
}

/* Footer */
footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    opacity: 0; /* Handled by GSAP */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    position: relative;
    padding-bottom: 2px;
}

.link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--text-primary);
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Dynamic Background Gradients */
.bg-gradients {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: floatBlob 25s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-1 {
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, rgba(0,0,0,0) 70%);
    top: -15%;
    right: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0) 70%);
    bottom: -25%;
    left: -15%;
    animation-delay: -5s;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-8%, 8%) scale(1.15); }
}

/* Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .title {
        margin-bottom: 1.5rem;
    }
}
