:root {
    --bg: #070b18;
    --bg-soft: #0f172a;
    --card: rgba(255, 255, 255, 0.08);
    --card-border: rgba(255, 255, 255, 0.14);
    --text: #ffffff;
    --muted: #aab4cf;
    --primary: #7c3aed;
    --primary-2: #2563eb;
    --cyan: #06b6d4;
    --green: #22c55e;
    --orange: #f97316;
    --purple: #a855f7;
    --blue: #3b82f6;
    --shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
    --radius: 26px;
}

body.light {
    --bg: #f4f7fb;
    --bg-soft: #ffffff;
    --card: rgba(255, 255, 255, 0.75);
    --card-border: rgba(15, 23, 42, 0.12);
    --text: #0f172a;
    --muted: #64748b;
    --shadow: 0 25px 80px rgba(15, 23, 42, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cairo", sans-serif;
    background:
        radial-gradient(circle at top right, rgba(124, 58, 237, 0.25), transparent 35%),
        radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.22), transparent 35%),
        var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: var(--primary);
    color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary), var(--primary-2));
    border-radius: 20px;
}

/* ===============================
   Global
   =============================== */

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}

.glass {
    background: var(--card);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: var(--shadow);
}

button,
a {
    font-family: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    cursor: pointer;
}

/* ===============================
   Loader
   =============================== */

#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background:
        radial-gradient(circle at center, rgba(124, 58, 237, 0.25), transparent 35%),
        #050816;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 170px;
    height: 170px;
    background: transparent;
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: loaderPulse 1.4s 2 ease-in-out;
    filter: drop-shadow(0 0 45px rgba(124, 58, 237, 0.9));
    overflow: visible;
    padding: 0;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transform: scale(1.65);
}

@keyframes loaderPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(8deg);
    }
}

/* ===============================
   Background Effects
   =============================== */

.bg-grid {
    position: fixed;
    inset: 0;
    z-index: -3;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.bg-glow {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.45;
    z-index: -2;
    animation: floatGlow 8s infinite ease-in-out;
}

.glow-1 {
    background: var(--primary);
    top: 8%;
    right: -120px;
}

.glow-2 {
    background: var(--primary-2);
    bottom: 10%;
    left: -120px;
    animation-delay: 2s;
}

@keyframes floatGlow {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-35px) scale(1.08);
    }
}

/* ===============================
   Navbar
   =============================== */

.navbar {
    position: sticky;
    top: 18px;
    z-index: 1000;
    width: min(1180px, calc(100% - 40px));
    margin: 18px auto 0;
    border-radius: 999px;
}

.navbar .container {
    width: 100%;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: fit-content;
}

.logo img {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    object-fit: cover;
    display: block;
    transform: scale(1.25);
    filter: drop-shadow(0 0 18px rgba(124, 58, 237, 0.8));
    transition: 0.35s ease;
}

.logo:hover img {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 
        0 0 35px rgba(124, 58, 237, 0.85),
        0 0 55px rgba(37, 99, 235, 0.45);
}

.logo h2 {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    background: linear-gradient(135deg, #ffffff, #a78bfa, #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo span {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
}

nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a {
    padding: 10px 14px;
    color: var(--muted);
    border-radius: 999px;
    font-size: 15px;
    transition: 0.3s;
}

nav a:hover,
nav a.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.45), rgba(37, 99, 235, 0.35));
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    font-size: 18px;
    transition: 0.3s;
}

.icon-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.18);
}

/* ===============================
   Buttons
   =============================== */

.primary-btn,
.secondary-btn,
.install-btn {
    position: relative;
    overflow: hidden;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 800;
    color: #fff;
    transition: 0.35s;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.35);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--card-border);
}

.install-btn {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.28);
}

.primary-btn::before,
.secondary-btn::before,
.install-btn::before {
    content: "";
    position: absolute;
    top: 0;
    right: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: skewX(-25deg);
}

.primary-btn:hover::before,
.secondary-btn:hover::before,
.install-btn:hover::before {
    animation: shine 0.8s ease;
}

.primary-btn:hover,
.secondary-btn:hover,
.install-btn:hover {
    transform: translateY(-4px) scale(1.02);
}

@keyframes shine {
    to {
        right: 140%;
    }
}

/* ===============================
   Hero
   =============================== */

.hero {
    min-height: calc(100vh - 110px);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 50px;
    padding: 80px 0 50px;
}

.hero-content {
    animation: fadeUp 0.9s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.14);
    border: 1px solid rgba(124, 58, 237, 0.35);
    color: #ddd6fe;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(42px, 7vw, 86px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero h1 span {
    display: block;
    background: linear-gradient(135deg, #a78bfa, #38bdf8, #22c55e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    max-width: 680px;
    color: var(--muted);
    font-size: 20px;
    line-height: 2;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.hero-stats div {
    min-width: 130px;
    padding: 18px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--card-border);
}

.hero-stats h3 {
    font-size: 30px;
    color: #fff;
}

.hero-stats span {
    color: var(--muted);
}

/* ===============================
   Hero Dashboard
   =============================== */

.hero-image {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-card {
    width: min(430px, 100%);
    height: 330px;
    border-radius: 34px;
    padding: 24px;
    position: relative;
}

.dashboard-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.55), rgba(6, 182, 212, 0.35), transparent);
    z-index: -1;
}

.floating {
    animation: floating 4s infinite ease-in-out;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-22px) rotate(2deg);
    }
}

.dashboard-top {
    display: flex;
    gap: 8px;
    margin-bottom: 35px;
}

.dashboard-top span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.dashboard-top span:nth-child(1) { background: #ef4444; }
.dashboard-top span:nth-child(2) { background: #f59e0b; }
.dashboard-top span:nth-child(3) { background: #22c55e; }

.dashboard-chart {
    height: 210px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.dashboard-chart div {
    flex: 1;
    border-radius: 999px 999px 10px 10px;
    background: linear-gradient(to top, var(--primary), var(--cyan));
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.25);
    animation: chartGrow 1.5s ease forwards;
}

@keyframes chartGrow {
    from {
        height: 0;
    }
}

/* ===============================
   Search
   =============================== */

.search-section {
    margin-top: 10px;
    margin-bottom: 55px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 26px;
    padding: 12px;
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    font-size: 18px;
    padding: 14px 18px;
}

.search-box input::placeholder {
    color: var(--muted);
}

.search-box button {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    font-size: 20px;
}

/* ===============================
   Sections
   =============================== */

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: 34px;
    position: relative;
}

.section-header h2::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -10px;
    width: 70px;
    height: 4px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--primary), var(--cyan));
}

/* ===============================
   Categories
   =============================== */

.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 60px;
}

.cat {
    padding: 12px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--muted);
    border: 1px solid var(--card-border);
    transition: 0.3s;
}

.cat:hover,
.cat.active {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    transform: translateY(-3px);
}

/* ===============================
   Apps
   =============================== */

.apps-section {
    margin-bottom: 80px;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.app-card {
    position: relative;
    padding: 22px;
    border-radius: var(--radius);
    transition: 0.35s;
    overflow: hidden;
}

.app-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.18), transparent 40%);
    opacity: 0;
    transition: 0.35s;
}

.app-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.28);
}

.app-card:hover::before {
    opacity: 1;
}

.app-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.app-icon {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}

.app-icon.orange {
    background: linear-gradient(135deg, #f97316, #facc15);
}

.app-icon.purple {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.app-icon.green {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.app-icon.blue {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.fav-btn {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: #ff5c8a;
    font-size: 18px;
    transition: 0.3s;
}

.fav-btn:hover,
.fav-btn.active {
    background: rgba(255, 92, 138, 0.18);
    transform: scale(1.12);
}

.app-card h3 {
    position: relative;
    z-index: 2;
    font-size: 22px;
    margin-bottom: 12px;
}

.app-card p {
    position: relative;
    z-index: 2;
    color: var(--muted);
    line-height: 1.8;
    min-height: 62px;
}

.app-tags {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0;
}

.app-tags span {
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    color: #dbeafe;
    background: rgba(37, 99, 235, 0.16);
    border: 1px solid rgba(37, 99, 235, 0.25);
}

.app-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rating {
    color: #facc15;
    font-weight: 800;
}

/* ===============================
   Features
   =============================== */

.features {
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.feature {
    padding: 26px;
    border-radius: var(--radius);
    transition: 0.35s;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.4), rgba(37, 99, 235, 0.3));
    font-size: 28px;
    margin-bottom: 18px;
}

.feature h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.feature p {
    color: var(--muted);
    line-height: 1.8;
}

/* ===============================
   CTA
   =============================== */

.cta {
    text-align: center;
    padding: 60px 25px;
    border-radius: 34px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.35);
    filter: blur(80px);
    right: -80px;
    top: -80px;
}

.cta h2 {
    position: relative;
    font-size: clamp(30px, 5vw, 52px);
    margin-bottom: 15px;
}

.cta p {
    position: relative;
    color: var(--muted);
    font-size: 19px;
    margin-bottom: 26px;
}

/* ===============================
   Footer
   =============================== */

/* ===============================
   Footer - Cyber Shield
   =============================== */

footer {
    position: relative;
    margin-top: 80px;
    padding: 70px 0 25px;
    border-top: 1px solid var(--card-border);
    background:
        radial-gradient(circle at top center, rgba(124, 58, 237, 0.18), transparent 35%),
        rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: -120px;
    right: 50%;
    transform: translateX(50%);
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.22);
    filter: blur(90px);
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    text-align: center;
}

.footer-content > div {
    max-width: 700px;
    padding: 35px 30px;
    border-radius: 30px;
    background: var(--card);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.footer-content h3 {
    margin-bottom: 14px;
    font-size: clamp(30px, 5vw, 46px);
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff, #a78bfa, #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-content p {
    color: var(--muted);
    font-size: 17px;
    line-height: 2;
    margin: 0 auto;
    max-width: 620px;
}

.copyright {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--muted);
    padding-top: 35px;
    font-size: 14px;
}

.copyright::before {
    content: "";
    display: block;
    width: min(420px, 80%);
    height: 1px;
    margin: 0 auto 22px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(124, 58, 237, 0.8),
        rgba(56, 189, 248, 0.7),
        transparent
    );
}


/* ===============================
   Reveal Animation
   =============================== */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: 0.8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hidden-card {
    display: none !important;
}

/* ===============================
   Responsive
   =============================== */

@media (max-width: 1050px) {
    nav {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 70px;
    }

    .hero p {
        margin-inline: auto;
    }

    .hero-buttons,
    .hero-stats {
        justify-content: center;
    }

    .apps-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .container {
        width: min(100% - 26px, 1180px);
    }

    .navbar {
        width: calc(100% - 20px);
        border-radius: 24px;
    }

    .navbar .container {
        padding: 12px;
    }

    .logo span {
        display: none;
    }

    .logo h2 {
        font-size: 18px;
    }

    .nav-actions .primary-btn {
        display: none;
    }

    .hero {
        padding-top: 55px;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 17px;
    }

    .hero-stats div {
        flex: 1;
        min-width: 105px;
    }

    .hero-image {
        min-height: 310px;
    }

    .dashboard-card {
        height: 270px;
    }

    .apps-grid,
    .features-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .search-box {
        padding: 8px;
    }

    .search-box input {
        font-size: 15px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .categories {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }

    .cat {
        white-space: nowrap;
    }
}
@media (max-width: 650px) {
    footer {
        padding: 55px 0 22px;
        margin-top: 60px;
    }

    .footer-content > div {
        padding: 28px 20px;
        border-radius: 24px;
    }

    .footer-content h3 {
        font-size: 32px;
    }

    .footer-content p {
        font-size: 15px;
        line-height: 1.9;
    }

    .copyright {
        font-size: 13px;
    }
}
@media (max-width: 650px) {
    .logo img {
        width: 48px;
        height: 48px;
        border-radius: 15px;
    }

    .logo h2 {
        font-size: 18px;
    }

    .logo span {
        font-size: 10px;
    }
}

@media (max-width: 650px) {
    .hero-image {
        min-height: 300px;
        overflow: hidden;
    }

    .dashboard-card {
        width: min(320px, 100%);
        height: 240px;
        padding: 18px;
        border-radius: 28px;
        overflow: hidden;
    }

    .dashboard-top {
        margin-bottom: 20px;
    }

    .dashboard-top span {
        width: 11px;
        height: 11px;
    }

    .dashboard-chart {
        height: 155px;
        gap: 10px;
    }

    .dashboard-chart div {
        min-width: 0;
        border-radius: 999px 999px 8px 8px;
    }
}

/* ===============================
   Coming Soon Page
   =============================== */

.coming-soon-page {
    min-height: calc(100vh - 260px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 0 60px;
}

.coming-soon-card {
    width: min(720px, 100%);
    text-align: center;
    padding: 65px 35px;
    border-radius: 38px;
    position: relative;
    overflow: hidden;
}

.coming-soon-card::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.32);
    filter: blur(80px);
    top: -120px;
    right: -90px;
}

.coming-soon-card::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.22);
    filter: blur(75px);
    bottom: -100px;
    left: -80px;
}

.coming-soon-icon {
    position: relative;
    z-index: 2;
    width: 95px;
    height: 95px;
    margin: 0 auto 25px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    box-shadow: 0 18px 45px rgba(37, 99, 235, 0.35);
    animation: floating 4s infinite ease-in-out;
}

.coming-soon-card h1 {
    position: relative;
    z-index: 2;
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1.3;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff, #a78bfa, #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.coming-soon-card p {
    position: relative;
    z-index: 2;
    color: var(--muted);
    font-size: 22px;
    line-height: 2;
    margin-bottom: 18px;
}

.coming-soon-card h2 {
    position: relative;
    z-index: 2;
    font-size: 30px;
    margin-bottom: 32px;
    color: #fff;
}

.coming-soon-card .primary-btn {
    position: relative;
    z-index: 2;
    display: inline-block;
}

/* Mobile */
@media (max-width: 650px) {
    .coming-soon-page {
        min-height: calc(100vh - 230px);
        padding: 65px 0 45px;
    }

    .coming-soon-card {
        padding: 48px 22px;
        border-radius: 28px;
    }

    .coming-soon-icon {
        width: 78px;
        height: 78px;
        font-size: 36px;
        border-radius: 24px;
    }

    .coming-soon-card h1 {
        font-size: 34px;
    }

    .coming-soon-card p {
        font-size: 18px;
    }

    .coming-soon-card h2 {
        font-size: 24px;
    }
}

/* ===============================
   Coming Soon Page
   =============================== */

.coming-soon-page {
    min-height: calc(100vh - 260px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 0 60px;
}

.coming-soon-card {
    width: min(720px, 100%);
    text-align: center;
    padding: 65px 35px;
    border-radius: 38px;
    position: relative;
    overflow: hidden;
}

.coming-soon-card::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.32);
    filter: blur(80px);
    top: -120px;
    right: -90px;
}

.coming-soon-card::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.22);
    filter: blur(75px);
    bottom: -100px;
    left: -80px;
}

.coming-soon-icon {
    position: relative;
    z-index: 2;
    width: 95px;
    height: 95px;
    margin: 0 auto 25px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    box-shadow: 0 18px 45px rgba(37, 99, 235, 0.35);
    animation: floating 4s infinite ease-in-out;
}

.coming-soon-card h1 {
    position: relative;
    z-index: 2;
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1.3;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff, #a78bfa, #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.coming-soon-card p {
    position: relative;
    z-index: 2;
    color: var(--muted);
    font-size: 22px;
    line-height: 2;
    margin-bottom: 18px;
}

.coming-soon-card h2 {
    position: relative;
    z-index: 2;
    font-size: 30px;
    margin-bottom: 32px;
    color: #fff;
}

.coming-soon-card .primary-btn {
    position: relative;
    z-index: 2;
    display: inline-block;
}

/* Mobile */
@media (max-width: 650px) {
    .coming-soon-page {
        min-height: calc(100vh - 230px);
        padding: 65px 0 45px;
    }

    .coming-soon-card {
        padding: 48px 22px;
        border-radius: 28px;
    }

    .coming-soon-icon {
        width: 78px;
        height: 78px;
        font-size: 36px;
        border-radius: 24px;
    }

    .coming-soon-card h1 {
        font-size: 34px;
    }

    .coming-soon-card p {
        font-size: 18px;
    }

    .coming-soon-card h2 {
        font-size: 24px;
    }
}