html { font-size: 62.5%; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Poppins', sans-serif;
    background: #0d0d1a;
    color: #fff;
}

/* ── Main ──────────────────────────────────────── */
.ps-main { min-height: 100vh; }

/* ── Hero ──────────────────────────────────────── */
.ps-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff7800 0%, #130f40 55%, #0d0d1a 100%);
    overflow: hidden;
    padding: 10rem 2rem 8rem;
}

.ps-hero-glow {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 120, 0, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.ps-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 70rem;
    width: 100%;
}

/* ── Badge ──────────────────────────────────────── */
.ps-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 120, 0, 0.18);
    border: 1px solid rgba(255, 120, 0, 0.45);
    color: #ff9a40;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.6rem 1.8rem;
    border-radius: 10rem;
    margin-bottom: 2.4rem;
}

/* ── Heading ──────────────────────────────────────── */
.ps-hero-content h1 {
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(90deg, #fff 30%, #ff9a40 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.4rem;
}

.ps-tagline {
    font-size: 1.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5rem;
}

/* ── Coming Soon Box ──────────────────────────────── */
.ps-coming-soon-box {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 2rem;
    padding: 4rem 5rem;
    margin-bottom: 4rem;
    display: inline-block;
    min-width: 32rem;
}

.ps-countdown-icon {
    font-size: 4.5rem;
    color: #ff7800;
    margin-bottom: 1.6rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { text-shadow: 0 0 8px rgba(255, 120, 0, 0.4); transform: scale(1); }
    50% { text-shadow: 0 0 24px rgba(255, 120, 0, 0.8); transform: scale(1.08); }
}

.ps-coming-soon-box h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.ps-coming-soon-box p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 40rem;
    line-height: 1.6;
}

/* ── Feature Cards ──────────────────────────────── */
.ps-features {
    display: flex;
    justify-content: center;
    gap: 1.6rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.ps-feature-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.2rem;
    padding: 1.6rem 2.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.ps-feature-card:hover {
    background: rgba(255, 120, 0, 0.14);
    border-color: rgba(255, 120, 0, 0.5);
    transform: translateY(-3px);
}

.ps-feature-card i {
    color: #ff7800;
    font-size: 1.8rem;
}

/* ── Button ──────────────────────────────────────── */
.ps-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(to right, #ff7800, #130f40);
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1.2rem 3rem;
    border-radius: 10rem;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(255, 120, 0, 0.35);
}

.ps-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255, 120, 0, 0.5);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 600px) {
    .ps-coming-soon-box { padding: 3rem 2.4rem; min-width: unset; width: 100%; }
    .ps-coming-soon-box h2 { font-size: 2.4rem; }
    .ps-features { gap: 1rem; }
    .ps-feature-card { font-size: 1.3rem; padding: 1.2rem 1.6rem; }
}
