/* Core Styling Variables & Font Setup */
@import url('https://googleapis.com');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #030303;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Fluid Moving Glow Background Styles */
.fluid-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(circle at 50% 50%, #08080c 0%, #010101 100%);
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.14;
    animation: smoothFloat 14s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.sphere-1 {
    width: 450px;
    height: 450px;
    background: #dfb743; /* Soft Gold */
    top: -10%;
    left: 15%;
}

.sphere-2 {
    width: 550px;
    height: 550px;
    background: #a37f1c; /* Deep Bronze */
    bottom: -15%;
    right: 10%;
    animation-delay: -4s;
}

.cyber-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(223, 183, 67, 0.012) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(223, 183, 67, 0.012) 1px, transparent 1px);
    background-size: 45px 45px;
}

@keyframes smoothFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 30px) scale(1.1); }
}

/* Glassmorphic Navigation Bar */
.luxury-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 80px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(3, 3, 3, 0.5);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.brand-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    letter-spacing: 5px;
    font-weight: 600;
}

.brand-title span {
    color: #dfb743;
    font-weight: 400;
}

.nav-links-list {
    display: flex;
    gap: 40px;
    list-style: none;
}

.link-item {
    color: #9f9f9f;
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
    transition: color 0.3s, letter-spacing 0.3s;
}

.link-item:hover {
    color: #dfb743;
    letter-spacing: 4px;
}

.cart-pulse-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 18px;
    border-radius: 4px;
}

.pulse-beacon {
    width: 6px;
    height: 6px;
    background: #dfb743;
    border-radius: 50%;
    box-shadow: 0 0 12px #dfb743;
    animation: wavePulse 2s infinite ease-in-out;
}

.badge-txt {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #dfb743;
    font-weight: 600;
}

@keyframes wavePulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* Central Content Container Stage */
.content-stage {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 140px 20px 40px 20px;
}

.glass-vault {
    background: linear-gradient(135deg, rgba(255,255,255,0.01) 0%, rgba(255,255,255,0.00) 100%);
    border: 1px solid rgba(223, 183, 67, 0.09);
    backdrop-filter: blur(30px);
    padding: 60px 85px;
    border-radius: 2px; /* Sharp high-end premium framing */
    text-align: center;
    max-width: 900px;
    box-shadow: 0 40px 90px rgba(0,0,0,0.8);
}

.launch-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-left: 2px solid #dfb743;
    padding: 4px 16px;
    font-size: 11px;
    color: #dfb743;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 35px;
    font-weight: 600;
}

.active-dot {
    width: 6px;
    height: 6px;
    background: #dfb743;
    border-radius: 50%;
    box-shadow: 0 0 10px #dfb743;
}

.main-title {
    font-family: 'Cinzel', serif;
    font-size: 3.4rem;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.gradient-gold-text {
    background: linear-gradient(90deg, #ffffff 0%, #dfb743 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: lightShimmer 4s linear infinite;
}

@keyframes lightShimmer {
    to { background-position: 200% center; }
}

.brand-pitch {
    font-size: 15px;
    color: #a4a4ab;
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto 45px auto;
    font-weight: 300;
}

/* Linear Sharp Countdown Style */
.modern-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.time-block span {
    font-size: 50px;
    font-weight: 200;
    color: #ffffff;
    font-family: 'Cinzel', serif;
}

.time-block p {
    font-size: 10px;
    color: #6e6e77;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

.time-divider {
    font-size: 30px;
    font-weight: 100;
    color: rgba(223, 183, 67, 0.25);
    padding-bottom: 22px;
}

/* Minimal Premium Form Integration */
.premium-form {
    max-width: 520px;
    margin: 0 auto;
}

.form-input-group {
    display: flex;
    border-bottom: 1px solid rgba(223, 183, 67, 0.3);
    padding-bottom: 8px;
    transition: border-bottom-color 0.4s;
}

.form-input-group:focus-within {
    border-bottom-color: #dfb743;
}

.form-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 10px;
    color: #fff;
    font-size: 14px;
    outline: none;
    font-weight: 300;
    letter-spacing: 1px;
}

.form-input-group input::placeholder {
    color: #4b4b52;
}

.form-input-group button {
    background: transparent;
    color: #dfb743;
    border: none;
    padding: 0 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
}

.form-input-group button:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* Clean Structured Footer */
.boutique-footer {
    width: 100%;
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding-top: 35px;
}

.perks-strip {
    display: flex;
    gap: 40px;
}

.perk-tag {
    font-size: 11px;
    color: #52525b;
    letter-spacing: 1px;
}

.social-links-wrapper {
    display: flex;
    gap: 25px;
}

.social-btn {
    text-decoration: none;
    font-size: 12px;
    color: #9f9f9f;
    letter-spacing: 1px;
    transition: color 0.3s, text-shadow 0.3s;
}

.social-btn:hover {
    color: #dfb743;
    text-shadow: 0 0 10px rgba(223, 183, 67, 0.5);
}

/* Full Responsive Breakdown Layout */
@media (max-width: 768px) {
    .luxury-nav { padding: 20px 30px; }
    .nav-links-list { display: none; }
    .glass-vault { padding: 45px 25px; }
    .main-title { font-size: 2.2rem; }
    .modern-timer { gap: 15px; }
    .time-block span { font-size: 34px; }
    .time-divider { font-size: 22px; }
    .boutique-footer { flex-direction: column; gap: 30px; text-align: center; }
    .perks-strip { flex-direction: column; gap: 12px; }
}
