﻿@font-face {
    font-family: 'Vazirmatn';
    src: local('Vazirmatn');
    font-display: swap
}

:root {
    --navy: #0b1830;
    --navy-2: #0f2242;
    --gold: #d6b36a;
    --gold-2: #f0d48a;
    --text: #e8ecf5;
    --muted: #a9b1c6;
    --glass: rgba(255, 255, 255, 0.06);
    --glass-2: rgba(255, 255, 255, 0.08);
    --ring: #c8ac63;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Vazirmatn, system-ui, -apple-system, Segoe UI, Roboto;
    background: radial-gradient(1200px 700px at 70% -10%, #173460 0%, var(--navy) 55%) fixed;
    color: var(--text);
    -webkit-font-smoothing: antialiased
}

/* ===== Header ===== */
header {
    position: sticky;
    top: 0;
    z-index: 4;
    backdrop-filter: blur(10px);
    background: linear-gradient(180deg, rgba(7, 14, 28, .85), rgba(7, 14, 28, .55));
    border-bottom: 1px solid rgba(214, 179, 106, .12);
}

.nav {
    margin: auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px
}

.badge {
    width: 28px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--gold-2), var(--gold) 55%, #9a7d44 75%);
    box-shadow: 0 0 0 2px rgba(214, 179, 106, .3) inset, 0 8px 30px rgba(214, 179, 106, .2);
}

.brand-title {
    font-weight: 800;
    margin-left: 16px;
    width: fit-content;
}

    .brand-title a {
        width: fit-content;
    }

    .brand-title img {
        width: 120px;
    }

.thumb img {
    margin: auto;
    width: 100%;
}

.cta {
    display: flex;
    gap: 10px;
    margin-bottom: .5rem !important;
}

.custom-btn {
    border: 1px solid rgba(214, 179, 106, .25) !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    color: var(--text);
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
}

    .custom-btn.gold {
        background: linear-gradient(180deg, var(--gold-2), var(--gold));
        color: #101522 !important;
        border-color: rgba(214, 179, 106, .6);
        font-weight: 700
    }

@media(min-width:992px) {
    .custom-btn {
        padding: 10px 14px;
        border-radius: 10px;
        font-size: 16px;
    }
}

.card-hover:hover .top-right {
    display: none !important;
}

/*/* ===== Splash / Motion Logo ===== */
.splash {
    min-height: 50vh;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.bg-stars {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 15%, rgba(255, 255, 255, .12) 0 1px, transparent 2px) 0 0/120px 120px, radial-gradient(circle at 80% 35%, rgba(255, 255, 255, .10) 0 1px, transparent 2px) 0 0/140px 140px, radial-gradient(circle at 40% 75%, rgba(255, 255, 255, .10) 0 1px, transparent 2px) 0 0/180px 180px;
    opacity: .6;
    filter: blur(.2px);
}

.logo-wrap {
    display: grid;
    place-items: center;
    gap: 18px;
}

.logo-ring {
    width: 160px;
    aspect-ratio: 1;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(from 210deg, color-mix(in oklab, var(--gold), #000 45%) 0 25%, var(--gold) 25% 55%, color-mix(in oklab, var(--gold), #fff 25%) 55% 65%, transparent 65% 100%);
    -webkit-mask: radial-gradient(circle at 50% 50%, transparent 0 48px, #000 49px);
    mask: radial-gradient(circle at 50% 50%, transparent 0 48px, #000 49px);
    animation: spin 6s linear infinite;
    box-shadow: 0 0 0 1px rgba(214, 179, 106, .25) inset, 0 10px 40px rgba(214, 179, 106, .15);
}

    .logo-ring::after {
        content: "";
        position: absolute;
        inset: 12px;
        border-radius: 50%;
        background: radial-gradient(60% 60% at 50% 40%, rgba(255, 255, 255, .12), rgba(255, 255, 255, 0) 70%);
        filter: blur(2px);
    }

.logo-B {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
}

    .logo-B svg {
        width: 82px;
        opacity: .92;
        filter: drop-shadow(0 6px 14px rgba(214, 179, 106, .25));
    }

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.hero-section-title {
    margin: 0;
    font-size: clamp(26px, 4.2vw, 40px);
    letter-spacing: .5px;
    background: linear-gradient(180deg, var(--gold), var(--gold-2));
    -webkit-background-clip: var(--text);
    background-clip: var(--text);
    color: transparent;
    text-shadow: 0 2px 24px rgba(214, 179, 106, .15);
}

.tagline {
    color: var(--muted);
    font-size: 14px
}

@media(min-width:992px) {
    .splash {
        min-height: 68vh;
    }
}

/* ===== Countdown + Hero ===== */
.hero {
    margin: 26px auto 14px;
    padding: 0 16px;
    display: flex;
    gap: 18px;
    align-items: center;
}

.countdown {
    display: flex;
    gap: 8px;
    margin-top: 0px !important;
    /*    flex-wrap: wrap*/
}

    .countdown .cell {
        min-width: 84px;
        text-align: center;
        padding: 12px 10px;
        border-radius: 12px;
        background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
        border: 1px solid rgba(214, 179, 106, .15);
    }

    .countdown .num {
        font-size: 26px;
        font-weight: 800;
        color: var(--gold-2)
    }

    .countdown .lbl {
        font-size: 12px;
        color: var(--muted)
    }

/* ===== Sections ===== */
.section {
    margin: 18px auto;
    padding: 0 16px
}

    .section h2 {
        margin: 0 0 10px
    }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px
}

.custom-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    border: 1px solid rgba(214, 179, 106, .15);
    border-radius: 14px;
    overflow: hidden
}

.thumb {
    position: relative;
}

.lock {
    position: absolute;
    inset: auto auto 10px 10px;
    background: rgba(0, 0, 0, .45);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px
}

.custom-card .title {
    margin: 12px 12px 4px
}

.meta {
    color: var(--muted);
    font-size: 12px;
    margin: 0 12px 12px
}

.custom-card .actions {
    display: flex;
    gap: 8px;
    padding: 0 12px 14px
}

    .custom-card .actions .custom-btn {
        flex: 1
    }

.title {
    font-size: 16px;
}

@media (min-width:992px) {
    .title {
        font-size: 20px;
    }
}
/* ===== Vision Select ===== */
.vselect {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px
}

.banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 160px;
    border: 1px solid rgba(214, 179, 106, .18);
    background: linear-gradient(120deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
}

    .banner .art {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        filter: saturate(1.05) contrast(1.05);
        opacity: .9;
    }

    .banner::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(9, 14, 28, 0) 40%, rgba(9, 14, 28, .85) 100%);
    }

    .banner .cap {
        position: absolute;
        inset: auto 0 0 0;
        padding: 12px;
    }

        .banner .cap h4 {
            margin: 0 0 4px
        }

        .banner .cap .tag {
            font-size: 12px;
            color: var(--muted)
        }

.badge-vs {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid rgba(214, 179, 106, .35);
    background: rgba(22, 26, 46, .5);
    margin-right: 8px
}

/* ===== Pricing ===== */
.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px
}

.plan {
    padding: 18px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03));
    border: 1px solid rgba(214, 179, 106, .18)
}

.price {
    font-size: 16px;
    font-weight: 900;
    color: var(--gold-2)
}

@media(min-width:576px) {
    .price {
        font-size: 14px;
        font-weight: 900;
        color: var(--gold-2)
    }
}

@media(min-width:768px) {
    .price {
        font-size: 16px;
        font-weight: 900;
        color: var(--gold-2)
    }
}

@media(min-width:992px) {
    .price {
        font-size: 18px;
        font-weight: 900;
        color: var(--gold-2)
    }
}

@media(min-width:1280px) {
    .price {
        font-size: 20px;
        font-weight: 900;
        color: var(--gold-2)
    }
}
/*.price {
    font-size: 24px;
    font-weight: 900;
    color: var(--gold-2)
}*/



.custom-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: red;
    transform: translateY(-50%);
}

small {
    color: var(--muted)
}

/* ===== Footer ===== */
footer {
    margin-top: 40px;
    padding: 28px 16px;
    text-align: center;
    color: var(--muted);
    border-top: 1px solid rgba(214, 179, 106, .12)
}

/* ===== Modal ===== */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    z-index: 50
}

    .modal.show {
        display: grid
    }

    .modal .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, .55);
        backdrop-filter: blur(4px)
    }

    .modal .dialog {
        position: relative;
        width: min(92vw, 520px);
        border-radius: 18px;
        padding: 18px;
        background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
        border: 1px solid rgba(214, 179, 106, .22)
    }

        .modal .dialog h3 {
            margin-top: 6px
        }

    .modal .close {
        position: absolute;
        inset: 12px 12px auto auto;
        cursor: pointer;
        opacity: .8
    }

.custom-input {
    width: 100%;
    background: rgba(255, 255, 255, .06);
    color: var(--text);
    border: 1px solid rgba(214, 179, 106, .18);
    border-radius: 10px;
    padding: 10px 12px;
    margin: 6px 0 10px;
    box-shadow: none !important;
    outline: none !important;
}

/*.row {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end
}*/

.badge-mini {
    font-weight: 700;
    color: #0f1424;
    background: linear-gradient(180deg, var(--gold-2), var(--gold));
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px
}

.notice {
    font-size: 12px;
    color: var(--muted)
}

header logo tweak
.logo-header {
    vertical-align: middle
}

/* === Overrides for sponsor/legal banners to show full text === */
#sponsor .banner,
#legal .banner {
    overflow: visible !important;
    min-height: auto !important;
}

    #sponsor .banner .cap,
    #legal .banner .cap {
        position: relative !important;
        inset: auto !important;
        padding: 16px !important;
    }

    #sponsor .banner::after,
    #legal .banner::after {
        display: none !important;
    }

    #sponsor .banner .art,
    #legal .banner .art {
        opacity: .35 !important;
    }

#faq {
    direction: rtl;
    /*    background: radial-gradient(1200px 600px at 50% -10%, rgba(255, 255, 255, 0.06), transparent 70%), #0f1a2a;*/
    padding: 48px 0 56px;
}


    #faq h2 {
        color: #e9edf5;
        font-size: 28px;
        font-weight: 800;
        margin: 0 0 16px 0;
    }

    #faq p.faq-intro {
        color: #a9b6c8;
        margin: 0 0 20px 0;
    }

.faq-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.faq-card {
    background: linear-gradient(180deg, rgba(25, 39, 61, 0.9), rgba(21, 33, 54, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin: 12px 0;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

    .faq-card summary {
        cursor: pointer;
        padding: 18px 20px;
        color: #e7ecf4;
        font-weight: 700;
        /*        font-size: 18px;*/
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .faq-card[open] summary {
        background: rgba(255, 255, 255, 0.04);
    }

    .faq-card summary::after {
        content: "▾";
        font-size: 14px;
        opacity: .7;
    }

    .faq-card[open] summary::after {
        transform: rotate(180deg);
    }

    .faq-card .faq-answer {
        padding: 0 20px 18px 20px;
        color: #cdd7e3;
        line-height: 1.8;
        font-size: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

        .faq-card .faq-answer p {
            margin: 0;
        }

@media (min-width:1024px) {
    html, body {
        font-size: 16.5px;
    }
}

@media (min-width:1440px) {

    html,
    body {
        font-size: 18px;
    }
}

header,
.header,
.nav {
    position: sticky;
    top: 0px;
    z-index: 100;
    /*    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(15, 26, 42, .80);*/
    /*    border-bottom: 1px solid rgba(255, 255, 255, .06);*/
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid #6ab0ff;
    outline-offset: 2px;
}

@media(max-width:724px) {
    .custom-btn {
        padding: 8px 4px !important;
    }

    .max-md-w-80px {
        width: 80px;
    }

    .brand-title {
        margin-left: 0;
    }

        .brand-title img {
            max-width: unset !important;
            width: 90px !important;
        }

    .hero {
        flex-direction: column;
    }
}

.login-box {
    border-radius: 16px;
    padding: 80px 16px 40px !important;
    background-color: var(--s-dimgray);
    max-width: 350px;
}

@media(min-width:768px) {
    .login-box {
        max-width: 450px;
    }
}

.cursor-not-allowed {
    cursor: not-allowed;
}

.bg-dimgray {
    background-color: var(--s-dimgray) !important;
}

.text-gold {
    color: var(--gold);
}

.custom-card {
    background: linear-gradient(180deg, var(--card), var(--soft));
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    padding: 22px 8px;
    box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

    .custom-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 40px rgba(0,0,0,.45);
        border-color: rgba(214,179,95,.25)
    }

.plan-img {
    width: 50px;
    height: 50px;
}

    .plan-img img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

.custom-badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 800;
    background: linear-gradient(135deg,var(--gold),var(--gold-2));
    color: #1b1607;
    font-size: 13px;
    letter-spacing: .1px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}

.custom-badge-absolute {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

#hero-section {
    width: 100%;
    max-height: 80vh;
    aspect-ratio: 1000/1185;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s ease-in-out;
}

#hero-section.show-video #hero-video {
    opacity: 1;
    z-index: 3;
}

.mute-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 4;
    background: transparent !important;
    color: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.3s;
}

    .mute-btn:hover {
        /*    background: rgba(255, 255, 255, 0.3);*/
    }

.Carousel-Swiper {
    margin-top: 0px;
}
.Carousel-Swiper img{
    max-height: 80vh;
    object-fit: cover;
}