/* ─── 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(148,163,184,0.06) 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(71,85,105,0.06) 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 (GPU friendly, zero lag) ─── */
.orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none !important;
    z-index: 2;
    opacity: 0.12;
    will-change: transform;
}
.orb-1 {
    width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(148,163,184,0.25) 0%, rgba(148,163,184,0.05) 50%, transparent 70%);
    top: 8%; left: 4%;
    animation: orbF1 22s ease-in-out infinite;
}
.orb-2 {
    width: 270px; height: 270px;
    background: radial-gradient(circle, rgba(100,116,139,0.2) 0%, rgba(100,116,139,0.05) 50%, transparent 70%);
    bottom: 12%; right: 6%;
    animation: orbF2 26s ease-in-out infinite;
}
.orb-3 {
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(239,68,68,0.25) 0%, rgba(239,68,68,0.05) 50%, transparent 70%);
    top: 50%; left: 48%;
    animation: orbF3 18s ease-in-out infinite;
}
@keyframes orbF1 {
    0%,100% { transform: translate3d(0,0,0); }
    50%     { transform: translate3d(50px, 40px, 0); }
}
@keyframes orbF2 {
    0%,100% { transform: translate3d(0,0,0); }
    50%     { transform: translate3d(-40px,-35px, 0); }
}
@keyframes orbF3 {
    0%,100% { transform: translate3d(-50%,-50%,0); opacity: 0.12; }
    50%     { transform: translate3d(-42%,-58%,0); opacity: 0.05; }
}

/* ─── 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;
}

/* ─── UPCOMING UPDATE & AUTOSECURE FREE SECTIONS ─── */
.section-tag {
    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.4rem 1.1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #f87171;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.section-tag.free-tag {
    background: rgba(249, 115, 22, 0.09);
    border-color: rgba(249, 115, 22, 0.35);
    color: #fb923c;
}

.gradient-text {
    background: linear-gradient(135deg, #ef4444, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-free {
    background: linear-gradient(135deg, #f97316, #fbbf24, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -1px;
    color: white;
    margin-bottom: 0.8rem;
}
.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ─── UPCOMING UPDATE BANNER & CARDS ─── */
.update-status-box {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}
.update-status-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ef4444, #f97316, transparent);
    animation: barShine 3s linear infinite;
}
@keyframes barShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.update-status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.2rem;
}
.update-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.28);
    padding: 0.35rem 0.9rem;
    border-radius: 8px;
}
.update-progress-info {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #cbd5e1;
    font-weight: 600;
}
.update-progress-info span {
    color: #ef4444;
    font-weight: 800;
}

.progress-track {
    width: 100%;
    height: 10px;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 9999px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.progress-fill {
    width: 78%;
    height: 100%;
    background: linear-gradient(90deg, #ef4444, #f97316);
    border-radius: 9999px;
    box-shadow: 0 0 16px rgba(239, 68, 68, 0.6);
    position: relative;
    animation: progressGlow 2.5s ease-in-out infinite alternate;
}
@keyframes progressGlow {
    from { filter: brightness(1); }
    to { filter: brightness(1.35) drop-shadow(0 0 8px rgba(239, 68, 68, 0.8)); }
}

.update-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.update-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(239, 68, 68, 0.16);
    border-radius: 18px;
    padding: 1.8rem;
    backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}
.update-card:hover {
    transform: translateY(-6px);
    border-color: rgba(239, 68, 68, 0.45);
    background: rgba(20, 30, 52, 0.75);
    box-shadow: 0 16px 36px rgba(239, 68, 68, 0.15);
}
.update-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    transition: all 0.3s;
}
.update-card:hover .update-card-icon {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: white;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}
.update-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.6rem;
}
.update-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    flex-grow: 1;
}
.update-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1.2rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f97316;
}

/* ─── AUTOSECURE FREE SECTION ─── */
.free-container {
    background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.12), transparent 60%),
                rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}
.free-container::after {
    content: 'FREE';
    position: absolute;
    right: -25px;
    bottom: -35px;
    font-family: 'Outfit', sans-serif;
    font-size: 11rem;
    font-weight: 900;
    color: rgba(249, 115, 22, 0.03);
    pointer-events: none;
    line-height: 1;
}
.free-empty-state {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 260px;
    width: 100%;
}
.free-question-mark {
    font-size: 7rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: #f97316;
    line-height: 1;
    text-shadow: 0 0 35px rgba(249, 115, 22, 0.5), 0 0 70px rgba(249, 115, 22, 0.25);
    user-select: none;
    animation: iconPulse 3s ease-in-out infinite;
}
.free-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
}
@media (max-width: 860px) {
    .free-grid { grid-template-columns: 1fr; }
}
.free-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.15;
}
.free-info p {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 1.8rem;
}
.free-highlight-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2rem;
}
.free-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #e2e8f0;
}
.free-highlight-item i {
    color: #10b981;
    font-size: 1.1rem;
    background: rgba(16, 185, 129, 0.12);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.free-custom-box {
    background: rgba(2, 6, 23, 0.6);
    border: 1px dashed rgba(249, 115, 22, 0.35);
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
}
.free-custom-box i.placeholder-icon {
    font-size: 2.5rem;
    color: #fb923c;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 12px rgba(249, 115, 22, 0.3));
}
.free-custom-box h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}
.free-custom-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.btn-free-action {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, #f97316, #ef4444);
    color: white;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.85rem 1.8rem;
    border-radius: 12px;
    transition: all 0.28s;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}
.btn-free-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.45);
}

/* ─── SITE FOOTER ─── */
.site-footer {
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(239, 68, 68, 0.12);
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(16px);
    padding: 3rem 1.5rem 2rem;
    margin-top: 5rem;
}
.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
}
.footer-brand i {
    color: #ef4444;
}
.footer-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: white;
}
.footer-copy {
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 2rem;
    padding-top: 1.5rem;
    font-size: 0.82rem;
    color: #64748b;
}

/* ─── 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; }
    .free-container { padding: 2rem 1.5rem; }
}

