/* ─── home.css — Index / Coming Soon page ─── */

/* ─── Particles fixed BG ─── */
#particles-js {
    position: fixed;
    width: 100%; height: 100%;
    top: 0; left: 0;
    z-index: 0;
    pointer-events: none;
}

/* ─── Glow blobs ─── */
body.home-page::before {
    content: '';
    position: fixed;
    top: -20%; left: -10%;
    width: 55%; height: 55%;
    background: radial-gradient(circle, rgba(239,68,68,0.1) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
    animation: driftA 14s ease-in-out infinite alternate;
}
body.home-page::after {
    content: '';
    position: fixed;
    bottom: -20%; right: -10%;
    width: 50%; height: 50%;
    background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
    animation: driftB 18s ease-in-out infinite alternate;
}
@keyframes driftA {
    from { transform: translate(0,0) scale(1); }
    to   { transform: translate(50px, 35px) scale(1.12); }
}
@keyframes driftB {
    from { transform: translate(0,0) scale(1); }
    to   { transform: translate(-40px,-28px) scale(1.08); }
}

/* ─── Floating orbs ─── */
.orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    filter: blur(65px);
    opacity: 0.22;
}
.orb-1 {
    width: 340px; height: 340px;
    background: radial-gradient(circle, #ef4444, transparent);
    top: 8%; left: 4%;
    animation: orbF1 18s ease-in-out infinite;
}
.orb-2 {
    width: 270px; height: 270px;
    background: radial-gradient(circle, #f97316, transparent);
    bottom: 12%; right: 6%;
    animation: orbF2 22s ease-in-out infinite;
}
.orb-3 {
    width: 180px; height: 180px;
    background: radial-gradient(circle, #ef4444, transparent);
    top: 50%; left: 48%;
    animation: orbF3 15s ease-in-out infinite;
}
@keyframes orbF1 {
    0%,100% { transform: translate(0,0); }
    50%     { transform: translate(70px, 55px); }
}
@keyframes orbF2 {
    0%,100% { transform: translate(0,0); }
    50%     { transform: translate(-60px,-45px); }
}
@keyframes orbF3 {
    0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.15; }
    50%     { transform: translate(-42%,-58%) scale(1.25); opacity: 0.06; }
}

/* ─── HERO ─── */
.hero {
    position: relative;
    z-index: 10;
    min-height: calc(100vh - 74px); /* 74 = navbar height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 0; /* controlled individually */
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.28);
    border-radius: 9999px;
    padding: 0.48rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #f87171;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: riseIn 0.7s ease-out both;
}
.badge-dot {
    width: 7px; height: 7px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(239,68,68,0.7);
    animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.15} }

/* Title */
.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3.2rem, 9vw, 7rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 1.6rem;
    animation: riseIn 0.8s ease-out 0.08s both;
}
.hero-title .brand-name {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 55%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 4s linear infinite;
    filter: drop-shadow(0 0 25px rgba(239,68,68,0.35));
}
@keyframes shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}
.hero-sub {
    display: block;
    color: var(--text-muted);
    font-size: clamp(0.95rem, 2.2vw, 1.35rem);
    font-weight: 400;
    letter-spacing: 7px;
    text-transform: uppercase;
    margin-top: 0.7rem;
}

/* Description */
.hero-desc {
    max-width: 580px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.82;
    margin-bottom: 2.8rem;
    animation: riseIn 0.9s ease-out 0.16s both;
}

/* ─── COUNTDOWN ─── */
.countdown-wrapper {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3rem;
    animation: riseIn 1s ease-out 0.24s both;
}

.countdown-item {
    background: rgba(15,23,42,0.72);
    border: 1px solid rgba(239,68,68,0.2);
    border-radius: 18px;
    padding: 1.5rem 2rem;
    min-width: 96px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s;
}
.countdown-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(239,68,68,0.7), transparent);
}
.countdown-item:hover {
    border-color: rgba(239,68,68,0.45);
    box-shadow: 0 0 28px rgba(239,68,68,0.12);
    transform: translateY(-3px);
}

.countdown-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.8rem;
    font-weight: 700;
    display: block;
    line-height: 1;
    background: linear-gradient(to bottom, #fff 30%, #f87171 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.countdown-label {
    display: block;
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-top: 0.6rem;
    font-weight: 600;
}

/* ─── ACTION BUTTONS ─── */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: riseIn 1.1s ease-out 0.32s both;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 2.2rem;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}
.btn-ghost:hover {
    color: white;
    border-color: rgba(239,68,68,0.4);
    background: rgba(239,68,68,0.06);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239,68,68,0.1);
}

/* ─── FEATURE PILLS ─── */
.pills-label {
    position: relative;
    z-index: 10;
    text-align: center;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(239,68,68,0.45);
    margin-bottom: 1rem;
    animation: riseIn 1.2s ease-out 0.4s both;
}

.features-row {
    position: relative;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    padding: 0 2rem 4rem;
    max-width: 860px;
    margin: 0 auto;
    animation: riseIn 1.3s ease-out 0.48s both;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(15,23,42,0.6);
    border: 1px solid rgba(239,68,68,0.14);
    border-radius: 9999px;
    padding: 0.55rem 1.15rem;
    font-size: 0.83rem;
    color: var(--text-muted);
    backdrop-filter: blur(12px);
    transition: all 0.28s;
    cursor: default;
    white-space: nowrap;
}
.feature-pill:hover {
    border-color: rgba(239,68,68,0.38);
    color: white;
    background: rgba(239,68,68,0.07);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(239,68,68,0.1);
}
.feature-pill i {
    color: var(--primary);
    font-size: 0.78rem;
}

/* ─── Animations ─── */
@keyframes riseIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─── Responsive ─── */
@media (max-width: 600px) {
    .countdown-wrapper { gap: 0.7rem; }
    .countdown-item { padding: 1.1rem 1.3rem; min-width: 72px; }
    .countdown-number { font-size: 2.1rem; }
    .hero-title { letter-spacing: -1px; }
}
