/* =====================================================
   Coming Soon Page — Standalone CSS
   Theme: Wood / Dark Premium (matches landing page)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --wood-dark:    #2C1A0E;
    --wood-mid:     #5C3D2E;
    --wood-light:   #8B5E3C;
    --gold:         #C8973F;
    --gold-light:   #E8B96A;
    --cream:        #F5ECD7;
    --text-primary: #F0E6D3;
    --text-muted:   #BFA98E;
    --glass-bg:     rgba(44, 26, 14, 0.55);
    --glass-border: rgba(200, 151, 63, 0.25);
    --radius-lg:    20px;
    --radius-pill:  50px;
    --transition:   all 0.35s cubic-bezier(.4,0,.2,1);
}

html, body {
    height: 100%;
    font-family: 'Outfit', sans-serif;
    background-color: var(--wood-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* ---------- Background ---------- */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(92,61,46,.55) 0%, transparent 60%),
        radial-gradient(ellipse 70% 70% at 80% 70%, rgba(139,94,60,.40) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    z-index: 0;
    pointer-events: none;
}

/* ---------- Floating Orbs ---------- */
.orb { position: fixed; border-radius: 50%; filter: blur(90px); opacity: .18; pointer-events: none; z-index: 0; animation: orbFloat 10s ease-in-out infinite alternate; }
.orb-1 { width: 420px; height: 420px; background: radial-gradient(circle, var(--gold) 0%, transparent 70%); top: -10%; left: -10%; animation-duration: 12s; }
.orb-2 { width: 320px; height: 320px; background: radial-gradient(circle, var(--wood-light) 0%, transparent 70%); bottom: -5%; right: -5%; animation-duration: 9s; animation-delay: -4s; }
@keyframes orbFloat { from { transform: translate(0,0) scale(1); } to { transform: translate(30px, 20px) scale(1.08); } }

/* ---------- Floating Nav ---------- */
.floating-nav {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: min(92%, 1100px);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(30,16,6,.72);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-pill);
    padding: 10px 22px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
.nav-logo {
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: .5px;
}
.nav-back {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--cream);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.nav-back:hover { background: rgba(200,151,63,.18); border-color: var(--gold); color: var(--gold-light); transform: translateX(-3px); }
.nav-back i { font-size: 13px; }

/* ---------- Main Layout ---------- */
.page-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
}

/* ---------- Card ---------- */
.cs-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 24px 80px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.06);
    padding: 56px 48px 48px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    animation: cardIn .7s cubic-bezier(.22,1,.36,1) both;
}
@keyframes cardIn { from { opacity: 0; transform: translateY(32px) scale(.97); } to { opacity: 1; transform: none; } }

/* ---------- Icon ---------- */
.cs-icon-wrap {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200,151,63,.18), rgba(200,151,63,.06));
    border: 1.5px solid rgba(200,151,63,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    animation: iconPulse 3s ease-in-out infinite;
}
@keyframes iconPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(200,151,63,.25); } 50% { box-shadow: 0 0 0 14px rgba(200,151,63,0); } }
.cs-icon-wrap i { font-size: 36px; color: var(--gold); }

/* ---------- Gear Animation ---------- */
.gear-wrap { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 0 auto 28px; }
.gear { color: var(--gold); opacity: .85; }
.gear-big  { font-size: 48px; animation: spinCw 4s linear infinite; }
.gear-small{ font-size: 28px; animation: spinCcw 2.8s linear infinite; }
@keyframes spinCw  { to { transform: rotate(360deg); } }
@keyframes spinCcw { to { transform: rotate(-360deg); } }

/* ---------- Feature Badge ---------- */
.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(200,151,63,.12);
    border: 1px solid rgba(200,151,63,.3);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.feature-badge i { font-size: 11px; }

/* ---------- Headline ---------- */
.cs-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    color: var(--cream);
    line-height: 1.25;
    margin-bottom: 8px;
}
.cs-feature-name {
    color: var(--gold);
    font-style: italic;
}
.cs-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 36px;
}

/* ---------- Progress Bar ---------- */
.progress-wrap {
    margin-bottom: 36px;
    text-align: left;
}
.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.progress-label span:last-child { color: var(--gold); }
.progress-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,.08);
    border-radius: 50px;
    overflow: hidden;
}
.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--wood-light), var(--gold));
    border-radius: 50px;
    animation: fillBar 1.8s cubic-bezier(.4,0,.2,1) both;
    animation-delay: .5s;
}
@keyframes fillBar { from { width: 0; } }

/* ---------- Divider ---------- */
.cs-divider {
    border: none;
    border-top: 1px solid var(--glass-border);
    margin: 0 0 32px;
}

/* ---------- Buttons ---------- */
.btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn-primary-cs {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 28px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--gold), var(--wood-light));
    color: var(--wood-dark);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 18px rgba(200,151,63,.35);
}
.btn-primary-cs:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,151,63,.5); filter: brightness(1.07); }

.btn-secondary-cs {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    background: transparent;
    border: 1.5px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn-secondary-cs:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(200,151,63,.08); }

/* ---------- Bubbles (decorative) ---------- */
.bubbles { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.bubble {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200,151,63,.12);
    animation: riseUp linear infinite;
    bottom: -80px;
}
.bubble:nth-child(1)  { width: 14px; height: 14px; left: 10%;  animation-duration: 14s; animation-delay: 0s; }
.bubble:nth-child(2)  { width: 8px;  height: 8px;  left: 25%;  animation-duration: 10s; animation-delay: 2s; }
.bubble:nth-child(3)  { width: 18px; height: 18px; left: 40%;  animation-duration: 12s; animation-delay: 5s; }
.bubble:nth-child(4)  { width: 10px; height: 10px; left: 60%;  animation-duration: 16s; animation-delay: 1s; }
.bubble:nth-child(5)  { width: 6px;  height: 6px;  left: 75%;  animation-duration: 11s; animation-delay: 3s; }
.bubble:nth-child(6)  { width: 20px; height: 20px; left: 88%;  animation-duration: 15s; animation-delay: 7s; }
@keyframes riseUp { from { transform: translateY(0) rotate(0deg); opacity: .6; } to { transform: translateY(-110vh) rotate(720deg); opacity: 0; } }

/* ---------- Toast Notification ---------- */
#cs-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(30,16,6,.92);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-pill);
    padding: 12px 24px;
    font-size: 13px;
    color: var(--gold-light);
    font-weight: 600;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transition: all .4s cubic-bezier(.4,0,.2,1);
    white-space: nowrap;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
}
#cs-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
#cs-toast i { color: var(--gold); font-size: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
    .cs-card { padding: 40px 24px 36px; }
    .btn-group { flex-direction: column; }
    .btn-primary-cs, .btn-secondary-cs { justify-content: center; }
    .nav-inner { padding: 8px 16px; }
}
