/* ============================================
   COMING SOON PAGE — comingsoon.css
   ============================================ */

/* ======== BASE ======== */
.cs-body {
    background: #080808;
    overflow-x: hidden;
}

/* ======== NOISE OVERLAY ======== */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ======== THREE.JS CANVAS ======== */
#cs-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* ======== PAGE WRAPPER ======== */
.cs-page {
    position: relative;
    z-index: 2;
}

/* ======== SHARED COMPONENTS ======== */
.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.cs-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 0, 0.06);
    border: 1px solid rgba(255, 107, 0, 0.15);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff6b00;
    margin-bottom: 20px;
}

.cs-section-label .dot {
    width: 6px;
    height: 6px;
    background: #ff6b00;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff6b00;
}

.cs-section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #fff;
}

.cs-section-title .accent {
    color: #ff6b00;
}

.cs-section-desc {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 50px;
}

/* Glass card base */
.cs-glass {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cs-glass:hover {
    border-color: rgba(255, 107, 0, 0.2);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-4px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.cs-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 130px 24px 80px;
    position: relative;
}

/* Radial glow */
.cs-hero::before {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, rgba(255, 107, 0, 0.02) 40%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Badge */
.cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 0, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 0, 0.18);
    padding: 10px 22px;
    border-radius: 100px;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(20px);
}

.cs-badge .dot {
    width: 8px;
    height: 8px;
    background: #ff6b00;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff6b00, 0 0 20px rgba(255, 107, 0, 0.3);
    animation: csPulse 2s ease-in-out infinite;
}

@keyframes csPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.cs-badge .badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #ff6b00;
}

/* Heading */
.cs-heading {
    font-size: clamp(2.5rem, 7vw, 4.8rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 24px;
    max-width: 780px;
    color: #fff;
    animation: csFloat 6s ease-in-out infinite;
}

.cs-heading .line {
    display: block;
    overflow: hidden;
}

.cs-heading .line-inner {
    display: block;
    opacity: 0;
    transform: translateY(100%);
}

.cs-heading .accent {
    color: #ff6b00;
    position: relative;
}

.cs-heading .accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b00, rgba(255, 107, 0, 0.15));
    border-radius: 2px;
}

@keyframes csFloat {

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

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

/* Subheading */
.cs-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 44px;
    opacity: 0;
    transform: translateY(20px);
}

/* Notify form */
.cs-notify {
    display: flex;
    align-items: center;
    max-width: 460px;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 60px;
    padding: 5px;
    backdrop-filter: blur(16px);
    opacity: 0;
    transform: translateY(20px);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.cs-notify:focus-within {
    border-color: rgba(255, 107, 0, 0.35);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.06);
}

.cs-notify input {
    flex: 1;
    border: none;
    background: transparent;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    padding: 14px 22px;
    outline: none;
}

.cs-notify input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cs-notify button {
    background: #ff6b00;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    border: none;
    padding: 13px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.cs-notify button:hover {
    background: #e85d00;
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(255, 107, 0, 0.3);
}

.cs-success {
    display: none;
    align-items: center;
    gap: 10px;
    color: #4ade80;
    font-size: 0.92rem;
    font-weight: 500;
    margin-top: 16px;
}

.cs-success.show {
    display: flex;
    animation: csFadeIn 0.5s ease forwards;
}

.cs-success i {
    font-size: 1.2rem;
}

/* Scroll indicator */
.scroll-cue {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
}

.scroll-cue .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 107, 0, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
        height: 40px;
    }

    50% {
        opacity: 0.3;
        height: 25px;
    }
}

/* ============================================
   SECTION: WHAT TO EXPECT
   ============================================ */
.cs-expect {
    padding: 100px 0;
    position: relative;
}

.cs-expect .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.cs-expect .section-header .cs-section-desc {
    margin-left: auto;
    margin-right: auto;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.expect-card {
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.expect-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.4), transparent);
    transition: width 0.4s ease;
}

.expect-card:hover::before {
    width: 160px;
}

.expect-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border-radius: 16px;
    background: rgba(255, 107, 0, 0.06);
    border: 1px solid rgba(255, 107, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff6b00;
    transition: all 0.4s ease;
}

.expect-card:hover .expect-icon {
    background: rgba(255, 107, 0, 0.12);
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.1);
}

.expect-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.expect-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

/* ============================================
   SECTION: SNEAK PEEK
   ============================================ */
.cs-peek {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 0, 0.015) 50%, transparent 100%);
}

.peek-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.peek-left .cs-section-desc {
    margin-bottom: 32px;
}

.peek-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.peek-highlight {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.peek-highlight:hover {
    border-color: rgba(255, 107, 0, 0.15);
    background: rgba(255, 107, 0, 0.03);
}

.peek-highlight .ph-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(255, 107, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b00;
    font-size: 1rem;
}

.peek-highlight .ph-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.peek-highlight .ph-text strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Timeline */
.peek-timeline {
    position: relative;
    padding-left: 32px;
}

.peek-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 107, 0, 0.3), rgba(255, 107, 0, 0.05));
}

.timeline-item {
    position: relative;
    padding: 0 0 36px 28px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 6px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #ff6b00;
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.4);
    border: 2px solid #080808;
}

.timeline-item .tl-phase {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ff6b00;
    margin-bottom: 6px;
}

.timeline-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 6px;
}

.timeline-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.5;
}

/* ============================================
   SECTION: WHY BBX
   ============================================ */
.cs-why {
    padding: 100px 0;
    position: relative;
}

.cs-why .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.cs-why .section-header .cs-section-desc {
    margin-left: auto;
    margin-right: auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.why-stat {
    text-align: center;
    padding: 36px 20px;
}

.why-stat .stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ff6b00;
    margin-bottom: 8px;
    line-height: 1;
}

.why-stat .stat-label {
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 28px;
}

.why-feature .wf-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(255, 107, 0, 0.06);
    border: 1px solid rgba(255, 107, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b00;
    font-size: 1.1rem;
}

.why-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 6px;
}

.why-feature p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.5;
}

/* ============================================
   SECTION: FINAL CTA
   ============================================ */
.cs-cta {
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
}

.cs-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box {
    padding: 60px 40px;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.cta-box .cs-section-title {
    margin-bottom: 16px;
}

.cta-box .cs-section-desc {
    margin: 0 auto 40px;
    max-width: 500px;
}

/* CTA Form — stacked fields */
.cta-form {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-form-row {
    display: flex;
    gap: 12px;
}

.cta-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 0 18px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.cta-input-wrap:focus-within {
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.04);
}

.cta-input-wrap i {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
    margin-right: 10px;
    flex-shrink: 0;
}

.cta-input-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    padding: 14px 0;
    outline: none;
    width: 100%;
}

.cta-input-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.cta-form .cta-submit-btn {
    background: #ff6b00;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    border: none;
    padding: 15px 32px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.cta-form .cta-submit-btn:hover {
    background: #e85d00;
    transform: scale(1.02);
    box-shadow: 0 8px 28px rgba(255, 107, 0, 0.3);
}

.cta-form .cta-submit-btn i {
    font-size: 1rem;
}

.cta-success {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #4ade80;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 16px;
}

.cta-success.show {
    display: flex;
    animation: csFadeIn 0.5s ease forwards;
}

/* ============================================
   FOOTER OVERRIDE (bottom spacing)
   ============================================ */
.cs-body footer {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes csFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #080808;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 0, 0.25);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 107, 0, 0.45);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .expect-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .peek-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .cs-hero {
        padding: 110px 20px 60px;
        min-height: 100svh;
    }

    .cs-hero::before {
        width: 300px;
        height: 300px;
    }

    .cs-heading .accent::after {
        height: 2px;
    }

    .cs-badge {
        margin-bottom: 28px;
    }

    .cs-notify {
        flex-direction: column;
        border-radius: 18px;
        padding: 8px;
        gap: 6px;
    }

    .cs-notify input {
        text-align: center;
        padding: 12px 14px;
        width: 100%;
    }

    .cs-notify button {
        width: 100%;
        padding: 13px;
        border-radius: 12px;
    }

    .expect-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-features {
        grid-template-columns: 1fr;
    }

    .cs-expect,
    .cs-peek,
    .cs-why,
    .cs-cta {
        padding: 70px 0;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .cta-form-row {
        flex-direction: column;
    }

    .scroll-cue {
        display: none;
    }
}

@media (max-width: 480px) {
    .cs-heading {
        font-size: 2.1rem;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-stat .stat-number {
        font-size: 1.8rem;
    }

    .cs-section-title {
        font-size: 1.6rem;
    }
}