@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,400;1,600&family=Inter:wght@300;400;600&family=Outfit:wght@100;300;400;600;800&family=JetBrains+Mono:wght@300&display=swap');

:root {
    --bg-dark: #05070a;
    --text-white: #ffffff;
    --text-muted: #a0a6b5;
    
    --v-cyan: #00e5ff;
    --v-banana: #d4ff00;
    --v-magenta: #ff00c8;
    
    --gradient-vibrant: linear-gradient(135deg, var(--v-cyan), var(--v-magenta));
    --gradient-warm: linear-gradient(135deg, var(--v-magenta), var(--v-banana));
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

/* NOISE TEXTURE */
.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.15;
    pointer-events: none;
    z-index: 100;
}

/* LUMINOUS BACKGROUND */
.glow-container {
    position: fixed;
    width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
    filter: blur(120px);
}

.glow-blob {
    position: absolute;
    width: 40vw; height: 40vw;
    border-radius: 50%;
    opacity: 0.25;
}

.blob-1 { top: -10%; left: -10%; background: var(--v-cyan); animation: float 20s infinite alternate; }
.blob-2 { bottom: -10%; right: -10%; background: var(--v-magenta); animation: float 25s infinite alternate-reverse; }
.blob-3 { top: 40%; left: 30%; background: var(--v-banana); animation: float 18s infinite alternate; opacity: 0.15; }

@keyframes float {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(100px, 150px) scale(1.2); }
}

/* NAV */
.v-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 6vw;
    position: fixed;
    top: 0; width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-brand {
    font-family: 'Outfit';
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--text-white); }

.btn-small {
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: var(--text-white) !important;
}

/* HERO */
.h-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 0 50px;
}

.luxury-italic {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 20px;
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.massive-title-wrapper {
    width: 100%;
    margin: -20px 0;
}

.massive-title {
    font-family: 'Outfit';
    font-weight: 100;
    font-size: clamp(5rem, 24vw, 28rem);
    line-height: 0.8;
    letter-spacing: -0.04em;
    color: var(--text-white);
    text-transform: uppercase;
}

.hero-subtext {
    font-family: 'Inter';
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-top: 20px;
}

.hero-image-vessel {
    width: 80%;
    max-width: 1000px;
    margin-top: 60px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-image-vessel img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.05); /* Zoom in for drama */
    transition: transform 10s ease-out;
}

.hero:hover .hero-image-vessel img { transform: scale(1); }

/* SECTIONS */
.section-pad { padding: 12vh 0; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6vw;
}

.grid-valign {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
    align-items: center;
}

.grid-valign.reverse { direction: rtl; }
.grid-valign.reverse .text-block { direction: ltr; }

.category-tag {
    font-family: 'JetBrains Mono';
    font-size: 0.8rem;
    color: var(--v-cyan);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.display-md {
    font-family: 'Outfit';
    font-weight: 600;
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1;
    margin-bottom: 30px;
}

.text-gradient { background: var(--gradient-vibrant); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-gradient-warm { background: var(--gradient-warm); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.text-block p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Inter';
    font-weight: 500;
}

.feature-item span { color: var(--v-banana); font-size: 1.2rem; }

/* IMAGE FRAME */
.image-frame {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 40px;
    background: #111;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.image-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.image-frame:hover img { transform: scale(1.1); }

/* FINAL CTA */
.final-cta {
    padding: 20vh 0 10vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.final-cta .massive-title {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -55%);
    z-index: 1;
    pointer-events: none;
    width: 100vw;
    text-align: center;
    opacity: 0.05;
}

.cta-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    padding: 0 6vw;
}

.cta-overlay h3 {
    font-family: 'Outfit';
    font-size: clamp(2.5rem, 9vw, 6rem);
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.btn-vibrant {
    display: inline-block;
    padding: 20px 50px;
    background: var(--gradient-vibrant);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    margin: 40px 0;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-vibrant:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.4);
}

.social-footer {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--text-muted);
    font-family: 'JetBrains Mono';
    font-size: 0.9rem;
}

.social-footer a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.social-footer a:hover { color: var(--text-white); }
.footer-copy { margin-top: 80px; color: rgba(255,255,255,0.2); font-size: 0.8rem; letter-spacing: 1px; }

/* REVEAL SYSTEM */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s, transform 1s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ANIMATIONS */
.animate-in { opacity: 0; transform: translateY(20px); animation: fadeIn 1s forwards; }
.animate-in-up { opacity: 0; transform: translateY(40px); animation: fadeIn 1s forwards 0.3s; }

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

/* RESPONSIVE */
@media (max-width: 900px) {
    .grid-valign { grid-template-columns: 1fr; }
    .grid-valign.reverse { direction: ltr; }
    .massive-title { font-size: 20vw; }
    .nav-links { display: none; }
}
