/* =====================
           CSS VARIABLES
        ===================== */
:root {
    --primary: #f54342;
    --primary-dark: #d93a39;
    --primary-light: #fff0f0;
}

/* =====================
           GLOBAL
        ===================== */
body {
    font-family: Arial, sans-serif;
    color: #111827;
    background: #fff;
}

/* =====================
    NAVBAR
===================== */
#mainNavbar {
    background-color: transparent !important;
    border-bottom: 1px solid transparent !important;
    box-shadow: none !important;
    transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    font-family: system-ui, -apple-system, sans-serif !important;
}

#mainNavbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid #e5e7eb !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
}

@media (max-width: 991.98px) {
    .navbar-nav.position-absolute {
        position: static !important;
        transform: none !important;
        width: 100%;
        text-align: left;
        margin: 0;
    }

    #navbarNav {
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 1rem;
        border-top: 1px solid #e5e7eb;
        /* margin-top: 0.5rem; */
    }

    #navbarNav .navbar-nav {
        gap: 0 !important;
        width: 100%;
    }

    #navbarNav .nav-item {
        width: 100%;
    }

    #navbarNav .nav-link-custom {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 0.75rem 1rem !important;
        border-radius: 0.75rem;
        font-size: 0.875rem;
        font-weight: 500;
        color: #374151 !important;
    }

    #navbarNav .nav-link-custom::after {
        content: "";
        display: inline-block;
        width: 6px;
        height: 6px;
        border-right: 2px solid #9ca3af;
        border-top: 2px solid #9ca3af;
        transform: rotate(45deg);
        opacity: 0.6;
        flex-shrink: 0;
    }

    #navbarNav .nav-link-custom:hover,
    #navbarNav .nav-link-custom.active {
        color: #f54342 !important;
        background-color: #fff0f0;
    }

    /* Buttons section */
    #navbarNav .ms-auto {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        margin-top: 0 !important;
        padding-top: 0.75rem;
        border-top: 1px solid #e5e7eb;
    }

    #navbarNav .ms-auto a {
        display: block !important;
        width: 100%;
        text-align: center;
        padding: 0.625rem 1.25rem;
        border-radius: 0.75rem;
        font-size: 0.875rem;
        font-weight: 600;
    }

    #navbarNav .ms-auto .login-btn {
        background-color: #374151;
        color: #fff !important;
        border: none;
    }

    #navbarNav .ms-auto .login-btn:hover {
        background-color: #1f2937;
    }

    #navbarNav .ms-auto .subscribe-btn {
        background-color: #f54342;
        color: #fff !important;
        border: none;
    }

    #navbarNav .ms-auto .subscribe-btn:hover {
        background-color: #d93a39;
    }
}

/* #mainNavbar:not(.scrolled) .nav-link-custom {
    color: rgba(255, 255, 255, 0.9) !important;
} */

#mainNavbar:not(.scrolled) .nav-link-custom:hover {
    /* color: #fff !important; */
    background-color: rgba(255, 255, 255, 0.15) !important;
}

#mainNavbar:not(.scrolled) .nav-link-custom.active {
    color: #d93a39 !important;
    background-color: #fff0f0 !important;
}

/* #mainNavbar:not(.scrolled) .navbar-toggler-icon {
    filter: invert(1);
} */
.navbar-toggler:focus {
    box-shadow: none !important;
}

#mainNavbar.scrolled .nav-link-custom {
    color: #374151 !important;
}

#mainNavbar.scrolled .nav-link-custom:hover {
    color: var(--primary) !important;
    background-color: var(--primary-light) !important;
}

#mainNavbar.scrolled .nav-link-custom.active {
    color: var(--primary) !important;
    background-color: var(--primary-light) !important;
}

#mainNavbar.scrolled .navbar-toggler-icon {
    filter: none !important;
}

.nav-logo {
    height: 58px;
    width: auto;
}

.nav-link-custom {
    font-size: .875rem;
    font-weight: 500;
    color: #ffffff !important;
    padding: .5rem 1rem !important;
    border-radius: .5rem;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link-custom:hover {
    color: var(--primary) !important;
    background-color: var(--primary-light) !important;
}


.nav-link-custom.active {
    color: var(--primary) !important;
    background-color: var(--primary-light) !important;
}

.login-btn {
    background-color: #374151;
    color: #fff !important;
    font-size: .875rem;
    font-weight: 600;
    border-radius: .5rem;
    border: none;
    padding: .625rem 1.25rem;
    transition: background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.login-btn:hover {
    background-color: #1f2937;
    color: #fff !important;
}

.subscribe-btn {
    background-color: var(--primary);
    color: #fff !important;
    font-size: .875rem;
    font-weight: 600;
    border-radius: .5rem;
    border: none;
    padding: .625rem 1.25rem;
    transition: background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.subscribe-btn:hover {
    background-color: var(--primary-dark);
    color: #fff !important;
}

/* ============
  Navbar Clean
============= */
.navbar-clean#mainNavbar {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px !important;
}

.navbar-clean#mainNavbar .nav-link-custom {
    color: #333131 !important;
}

.navbar-clean#mainNavbar .nav-link-custom:hover {
    color: var(--primary) !important;
}

@media (max-width: 991px) {
    .navbar#mainNavbar {
        padding: 8px 16px !important;
        background: #ffffff !important;
    }

    .owl-theme .owl-nav {
        display: none !important;
    }
}

/* =====================
           HERO SECTION
        ===================== */
.hero-section {
    position: relative;
    /* min-height: 90vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden; */
    margin-top: -64px;
}

.hero-section .hero-bg {
    position: absolute;
    inset: 0;
}

.hero-section .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section .hero-overlay-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-section .hero-overlay-2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 6rem;
    padding-top: 8rem;

    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-content::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.hero-tag-line {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.5rem;
}

.hero-tag-line .line {
    height: 1px;
    width: 2rem;
    background-color: var(--primary);
}

.hero-tag-line span {
    color: var(--primary);
    font-size: .875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.125rem;
    margin-top: 1.25rem;
    line-height: 1.7;
    max-width: 32rem;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .875rem 1.5rem;
    background-color: var(--primary);
    color: #fff;
    font-weight: 700;
    border-radius: .75rem;
    text-decoration: none;
    transition: background-color 0.2s;
}

.hero-btn-primary:hover {
    background-color: var(--primary-dark);
    color: #fff;
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .875rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    color: #fff;
    font-weight: 700;
    border-radius: .75rem;
    text-decoration: none;
    transition: background-color 0.2s;
}

.hero-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Slider dots */
.hero-dot {
    height: 6px;
    border-radius: 999px;
    border: none;
    transition: all 0.3s;
    width: 8px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.hero-dot.active {
    width: 2rem;
    background: var(--primary);
}

.hero-nav-btn {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.owl-dots {
    left: 50%;
    bottom: 60px;
    z-index: 999999;
    position: absolute;
    transform: translateX(-50%);
}

.owl-theme .owl-dots .owl-dot span {
    background: #848484;
    height: 13px;
    width: 13px;
    border-radius: 50%;
}

.owl-theme .owl-dots .owl-dot.active span {
    width: 30px;
    border-radius: 8px;
    background: #db4544;
}

.owl-theme .owl-nav {
    margin-top: 0;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    color: #fff;

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-carousel .owl-nav button.owl-next span,
.owl-carousel .owl-nav button.owl-prev span {
    display: none;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 25px;
}

.owl-carousel .owl-nav button.owl-next {
    right: 25px;
}

.owl-carousel .owl-nav button.owl-prev::before,
.owl-carousel .owl-nav button.owl-next::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 28px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.owl-carousel .owl-nav button.owl-prev::before {
    content: "\f053";
}

.owl-carousel .owl-nav button.owl-next::before {
    content: "\f054";
}

/* =====================
           SECTION HEADINGS
        ===================== */
.section-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #111827;
}

.section-subtitle {
    color: #6b7280;
    font-size: 1rem;
    margin-top: .25rem;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    font-size: .875rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.view-all-link:hover {
    color: var(--primary-dark);
}

/* =====================
           ATHLETE CARD
        ===================== */
.athlete-card-wrap {
    min-width: 200px;
    flex-shrink: 0;
}

@media (min-width: 576px) {
    .athlete-card-wrap {
        min-width: 240px;
    }
}

.athlete-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    transition: border-color 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: block;
}

.athlete-card:hover {
    border-color: rgba(245, 67, 66, 0.4);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.athlete-card .card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.athlete-card .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.athlete-card:hover .card-img-wrap img {
    transform: scale(1.05);
}

.athlete-card .img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

.athlete-card .card-badges {
    position: absolute;
    top: .75rem;
    left: .75rem;
    display: flex;
    gap: .375rem;
}

.badge-top {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    padding: .25rem .5rem;
    border-radius: .375rem;
    background: rgba(245, 67, 66, 0.9);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
}

.badge-rising {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    padding: .25rem .5rem;
    border-radius: .375rem;
    background: rgba(34, 197, 94, 0.8);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
}

.athlete-card .card-score {
    position: absolute;
    top: .75rem;
    right: .75rem;
    padding: .25rem .625rem;
    border-radius: .5rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.athlete-card .card-score span {
    color: var(--primary);
    font-weight: 700;
    font-size: .875rem;
}

.athlete-card .card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.athlete-card .card-info h3 {
    font-weight: 900;
    color: #fff;
    font-size: 1.125rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s;
}

.athlete-card:hover .card-info h3 {
    color: var(--primary);
}

.athlete-card .card-info .card-meta {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: .25rem;
    font-size: .875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.athlete-card .card-info .card-meta .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
}

.athlete-card .card-info .card-school {
    font-size: .875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: .125rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Slider scroll nav buttons */
.slider-nav-btn {
    padding: .625rem;
    border-radius: .75rem;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}

.slider-nav-btn:hover {
    background: #e5e7eb;
    color: #111827;
}

/* =====================
           ARTICLE / EVENT CARDS
        ===================== */
.content-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    transition: border-color 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: block;
    aspect-ratio: 16/10;
}

.content-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.content-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.content-card:hover img {
    transform: scale(1.05);
}

.content-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
}

.content-card .card-body-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1.5rem;
}

.content-card .article-tag {
    display: inline-block;
    padding: .25rem .625rem;
    border-radius: .375rem;
    background: var(--primary);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .75rem;
}

.content-card h3 {
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    font-size: clamp(.875rem, 2vw, 1.25rem);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    transition: color 0.2s;
}

.content-card:hover h3 {
    color: var(--primary);
}

.content-card p.card-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: .875rem;
    margin-top: .5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.content-card .card-author-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: .75rem;
    font-size: .75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.content-card .card-author-row .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

/* Premium badge */
.premium-badge {
    position: absolute;
    top: .75rem;
    right: .75rem;
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    padding: .375rem .75rem;
    border-radius: .5rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    color: #facc15;
    font-size: .75rem;
    font-weight: 700;
    border: 1px solid rgba(250, 204, 21, 0.3);
}

/* =====================
           CLIPS SECTION
        ===================== */
.clip-card {
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e7eb;
    transition: border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.clip-card:hover {
    border-color: rgba(245, 67, 66, 0.4);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.clip-card .clip-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.clip-card .clip-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.clip-card:hover .clip-thumb img {
    transform: scale(1.05);
}

.clip-card .clip-thumb .thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.2s;
}

.clip-card:hover .clip-thumb .thumb-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.clip-card .play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clip-card .play-btn .play-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(245, 67, 66, 0.9);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s, transform 0.2s;
}

.clip-card:hover .play-btn .play-circle {
    opacity: 1;
    transform: scale(1.1);
}

.clip-card .clip-duration {
    position: absolute;
    bottom: .5rem;
    right: .5rem;
    padding: .125rem .5rem;
    border-radius: .375rem;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: .75rem;
    font-weight: 500;
}

.clip-card .clip-info {
    padding: 1rem;
}

.clip-card .clip-info h3 {
    font-weight: 600;
    color: #111827;
    font-size: .875rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    transition: color 0.2s;
}

.clip-card:hover .clip-info h3 {
    color: var(--primary);
}

.clip-card .clip-meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: .5rem;
    font-size: .75rem;
    color: #6b7280;
}

.clip-card .clip-meta .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #d1d5db;
}

/* =====================
    EVENTS SECTION
===================== */
.events-content {
    padding: 2.5rem 0 3.5rem;
}

.event-card {
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e7eb;
    transition: border-color 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: block;
    height: 100%;
}

.event-card:hover {
    border-color: rgba(245, 67, 66, 0.4);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.event-card .event-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.event-card .event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.event-card:hover .event-img img {
    transform: scale(1.05);
}

.event-card .event-type-badge {
    position: absolute;
    top: .75rem;
    left: .75rem;
    padding: .25rem .625rem;
    border-radius: .375rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.event-card .event-body {
    padding: 1.25rem;
}

.event-card .event-body h3 {
    font-weight: 700;
    color: #111827;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    transition: color 0.2s;
}

.event-card:hover .event-body h3 {
    color: var(--primary);
}

.event-card .event-meta {
    margin-top: .75rem;
}

.event-card .event-meta .meta-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    color: #6b7280;
}

.event-card .event-meta .meta-item i {
    color: var(--primary);
    font-size: .875rem;
}

/* =====================
           APP DOWNLOAD SECTION
        ===================== */
.app-section {
    padding: 5rem 0;
    background: #fff;
}

.app-cta-box {
    position: relative;
    /* border-radius: 1.5rem; */
    overflow: hidden;
    /* background: linear-gradient(135deg, var(--primary) 0%, #c0302f 100%); */
    /* padding: 3rem 4rem; */
}

@media (max-width: 768px) {
    .app-cta-box {
        padding: 2rem;
    }
}

.app-cta-box .blob-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(3rem);
    transform: translate(50%, -50%);
}

.app-cta-box .blob-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 16rem;
    height: 16rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    filter: blur(3rem);
    transform: translate(-50%, 50%);
}

.app-cta-box .app-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    /* color: #fff; */
    line-height: 1.2;
}

.app-cta-box .app-desc {
    /* color: rgba(255, 255, 255, 0.8); */
    font-size: 1.125rem;
    margin-top: 1rem;
    max-width: 28rem;
    line-height: 1.7;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: .5rem;
    /* color: rgba(255, 255, 255, 0.9); */
    font-size: .875rem;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1.25rem;
    background: rgb(0 0 0);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: .75rem;
    text-decoration: none;
    transition: background 0.2s;
}

.store-btn:hover {
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
}

.store-btn .store-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: .625rem;
    line-height: 1;
}

.store-btn .store-name {
    color: #fff;
    font-weight: 700;
    font-size: .875rem;
    line-height: 1.3;
}

.app-mockup {
    height: 480px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}
.newsletter-section {
    background: #111827;
    border-top: 1px solid #374151;
    padding: 3rem 0;
}

.newsletter-section h3 {
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
}

.newsletter-section p {
    color: #9ca3af;
    font-size: .875rem;
    margin-top: .25rem;
}

.newsletter-input {
    padding: .625rem 1rem;
    border-radius: .5rem;
    background: #1f2937;
    border: 1px solid #4b5563;
    color: #fff;
    font-size: .875rem;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}

.newsletter-input::placeholder {
    color: #9ca3af;
}

.newsletter-input:focus {
    border-color: #f97316;
}

.newsletter-btn {
    padding: .625rem 1.25rem;
    border-radius: .5rem;
    background: linear-gradient(to right, #f97316, #ea6c0a);
    color: #fff;
    font-size: .875rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.newsletter-btn:hover {
    background: linear-gradient(to right, #ea6c0a, #d4620a);
}

/* =====================
           FOOTER
        ===================== */
.main-footer {
    background: #111827;
    border-top: 1px solid #374151;
    padding: 3rem 0 4rem;
}

.footer-brand p {
    color: #e5e7eb;
    font-size: .875rem;
    line-height: 1.7;
}

.footer-heading {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.footer-link {
    display: block;
    font-size: .875rem;
    color: #f3f4f6;
    text-decoration: none;
    margin-bottom: .75rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    font-size: .875rem;
    color: #9ca3af;
    margin: 0;
}

.footer-bottom-links a {
    font-size: .875rem;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* =====================
    OVERFLOW SCROLL HIDE
===================== */
.overflow-x-hidden-scroll {
    overflow-x: auto;
    scrollbar-width: none;
}

.overflow-x-hidden-scroll::-webkit-scrollbar {
    display: none;
}

/* Bg gray section */
.bg-section-gray {
    background: #f9fafb;
}

/* Carousel fills hero-bg exactly */
#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
}

/* Overlays sit above carousel images */
.hero-overlay-1,
.hero-overlay-2 {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Hero content sits above overlays */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Fade speed */
#heroCarousel.carousel-fade .carousel-item {
    transition: opacity 0.8s ease-in-out;
}


/* Push content below fixed navbar */
main {
    padding-top: 4rem;
}

/* ── BREADCRUMB ─────────────────────────────────────── */
.ar-breadcrumb {
    display: flex;
    align-items: center;
    gap: .375rem;
    font-size: .875rem;
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.ar-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    color: #9ca3af;
    text-decoration: none;
    transition: color .2s;
}

.ar-breadcrumb a:hover {
    color: #f54342;
}

.ar-breadcrumb .crumb-sep {
    color: #d1d5db;
    font-size: .75rem;
}

.ar-breadcrumb .crumb-current {
    color: #374151;
    font-weight: 500;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ── PAGE HEADER ────────────────────────────────────── */
.page-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 0 3.5rem;
}

.page-header h1 {
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: 900;
    color: #111827;
    letter-spacing: -0.02em;
    margin: 0;
}

.page-header p {
    color: #6b7280;
    font-size: 1rem;
    margin-top: .5rem;
}

/* ── FILTER PILLS ───────────────────────────────────── */
.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.ar-breadcrumb .current {
    color: #111827;
    font-weight: 500;
}

.filter-pill {
    padding: .5rem 1rem;
    border-radius: .75rem;
    font-size: .875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all .2s;
    background: #f3f4f6;
    color: #6b7280;
}

.filter-pill:hover {
    background: #e5e7eb;
    color: #374151;
}

.filter-pill.active {
    background: #f54342;
    color: #fff;
}

/* ── ARTICLE CARDS ──────────────────────────────────── */
.article-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    transition: border-color .3s, box-shadow .3s;
    text-decoration: none;
    display: block;
}

.article-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.article-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.article-card:hover img {
    transform: scale(1.05);
}

.article-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
}

.article-card .card-body-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1.5rem;
}

.article-tag {
    display: inline-block;
    padding: .25rem .625rem;
    border-radius: .375rem;
    background: #f54342;
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .75rem;
}

.article-card h3 {
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    transition: color .2s;
}

.article-card:hover h3 {
    color: #f54342;
}

/* Featured card larger title */
.article-card.featured h3 {
    font-size: clamp(1.25rem, 3vw, 1.875rem);
}

/* Grid card normal title */
.article-card.grid-card h3 {
    font-size: clamp(.875rem, 2vw, 1.25rem);
}

.article-card .card-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: .875rem;
    margin-top: .5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card .card-author-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: .75rem;
    font-size: .75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.article-card .card-author-row .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

/* Featured card aspect ratio */
.aspect-featured {
    aspect-ratio: 16/10;
}

@media (min-width: 576px) {
    .aspect-featured {
        aspect-ratio: 16/9;
    }
}

/* Grid card aspect ratio */
.aspect-grid {
    aspect-ratio: 16/10;
}

/* Premium badge */
.premium-badge {
    position: absolute;
    top: .75rem;
    right: .75rem;
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    padding: .375rem .75rem;
    border-radius: .5rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    color: #facc15;
    font-size: .75rem;
    font-weight: 700;
    border: 1px solid rgba(250, 204, 21, 0.3);
    z-index: 2;
}

/* ── ARTICLES CONTENT AREA ──────────────────────────── */
.articles-content {
    padding: 2.5rem 0 3.5rem;
}

.articles-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* ── Page content ── */
.page-wrap {
    min-height: auto;
    background: #fff;
}

.page-inner {
    max-width: 896px;
    margin: 0 auto;
    padding: 80px 1rem;
}

@media(max-width:575px) {
    .page-inner {
        padding: 40px 1.5rem;
    }
}

.page-inner h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px;
}

.page-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0 0 40px;
}

/* ── Prose body ── */
.prose-body {
    color: #374151;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.prose-body p {
    font-size: 1.125rem;
    line-height: 1.75;
    margin: 0;
}

.prose-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 40px 0 0;
}

.prose-body ul {
    list-style: disc;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
}

.prose-body ul li {
    font-size: 1.125rem;
    line-height: 1.75;
}

/* ── Privacy content ── */
.privacy-wrap {
    max-width: 896px;
    margin: 0 auto;
    padding: 50px 1rem;
}

.privacy-wrap h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px;
}

.privacy-wrap .last-updated {
    font-size: .875rem;
    color: #9ca3af;
    margin: 0 0 40px;
}

.privacy-sections {
    color: #374151;
}

.privacy-sections section {
    margin-bottom: 32px;
}

.privacy-sections section:last-child {
    margin-bottom: 0;
}

.privacy-sections h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
}

.privacy-sections p {
    line-height: 1.7;
    margin: 0;
}

/* ── Terms content ── */
.terms-wrap {
    max-width: 896px;
    margin: 0 auto;
    padding: 50px 1rem;
}

.terms-wrap h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px;
}

.terms-wrap .last-updated {
    font-size: .875rem;
    color: #9ca3af;
    margin: 0 0 40px;
}

.terms-sections {
    color: #374151;
}

.terms-sections section {
    margin-bottom: 32px;
}

.terms-sections section:last-child {
    margin-bottom: 0;
}

.terms-sections h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
}

.terms-sections p {
    line-height: 1.7;
    margin: 0;
}

/* Contact page */
.page-intro {
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0 0 48px;
}

/* ── Two-col grid ── */
.contact-grid {
    display: grid;
    gap: 48px;
}

@media(min-width:768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

/* ── Contact info items ── */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #fff0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px;
}

.contact-item p {
    font-size: .875rem;
    color: #6b7280;
    margin: 0;
}

/* ── Contact form ── */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

label.form-label-sm {
    display: block;
    font-size: .875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 4px;
}

.form-field {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: .875rem;
    color: #111827;
    background: #fff;
    outline: none;
    transition: border-color .15s;
}

.form-field::placeholder {
    color: #9ca3af;
}

.form-field:focus {
    border-color: #f54342;
}

textarea.form-field {
    resize: none;
}

.btn-send {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    background: #f54342;
    color: #fff;
    font-weight: 600;
    font-size: .875rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .15s;
}

.btn-send:hover {
    background: #d93a39;
}


/* Articles details */
/* ── Max-width wrappers ── */
.wrap-4xl {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 1rem;
}

.wrap-3xl {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media(min-width:576px) {
    .wrap-4xl {
        padding: 0 1.5rem;
    }

    .wrap-3xl {
        padding: 0 1.5rem;
    }
}

@media(min-width:992px) {
    .wrap-4xl {
        padding: 0 2rem;
    }

    .wrap-3xl {
        padding: 0 2rem;
    }
}

/* ── Back link ── */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .875rem;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    padding: 1.5rem 0 0;
    transition: color .2s;
}

.back-link:hover {
    color: #f54342;
}

/* ── Tag pills row ── */
.tag-pills-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
}

.tag-pill-red {
    display: inline-block;
    padding: 4px 12px;
    border-radius: .375rem;
    background: #f54342;
    color: #fff;
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.tag-pill-premium {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: .375rem;
    background: #fef9c3;
    color: #b45309;
    font-size: .6875rem;
    font-weight: 700;
    border: 1px solid #fde68a;
}

/* ── Article title ── */
.article-title {
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 900;
    color: #111827;
    letter-spacing: -.03em;
    line-height: 1.15;
    margin: 0 0 1rem;
}

/* ── Meta row ── */
.meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .625rem 1rem;
    font-size: .875rem;
    color: #6b7280;
    margin-bottom: 1.25rem;
}

.meta-author {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    color: #374151;
}

.meta-author-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(245, 67, 66, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.meta-read {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ── Share row ── */
.share-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.share-label {
    font-size: .6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #9ca3af;
    margin-right: 4px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: .5rem;
    font-size: .75rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all .15s;
}

.share-btn-twitter {
    background: rgba(29, 161, 242, .1);
    color: #1d9bf0;
}

.share-btn-twitter:hover {
    background: rgba(29, 161, 242, .2);
    color: #1d9bf0;
}

.share-btn-facebook {
    background: rgba(24, 119, 242, .1);
    color: #1877f2;
}

.share-btn-facebook:hover {
    background: rgba(24, 119, 242, .2);
    color: #1877f2;
}

.share-btn-copy {
    background: #f3f4f6;
    color: #4b5563;
}

.share-btn-copy:hover {
    background: #e5e7eb;
    color: #374151;
}

/* ── Hero image (16:9 below header) ── */
.article-hero-img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
    margin: 2rem 0;
}

.article-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Premium paywall card ── */
.premium-card {
    border-radius: 1rem;
    background: linear-gradient(135deg, #fefce8 0%, #fff7ed 100%);
    border: 1px solid #fde68a;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.premium-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #b45309;
    font-size: 1.75rem;
}

.premium-card h3 {
    font-size: 1.125rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 .5rem;
}

.premium-card p {
    font-size: .875rem;
    color: #6b7280;
    margin: 0 0 1.25rem;
}

.btn-subscribe-red {
    display: inline-flex;
    align-items: center;
    padding: .625rem 1.25rem;
    border-radius: .5rem;
    background: #f54342;
    color: #fff;
    font-size: .875rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .15s;
}

.btn-subscribe-red:hover {
    background: #d93a39;
    color: #fff;
}

/* ── Article body ── */
.article-body {
    color: #374151;
    font-size: 1.0625rem;
    line-height: 1.85;
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4 {
    font-weight: 900;
    color: #111827;
    letter-spacing: -.02em;
    margin-top: 2rem;
    margin-bottom: .75rem;
}

.article-body h1 {
    font-size: 1.75rem;
}

.article-body h2 {
    font-size: 1.375rem;
}

.article-body h3 {
    font-size: 1.125rem;
}

.article-body h4 {
    font-size: 1rem;
}

.article-body p {
    margin-bottom: 1.25rem;
}

.article-body strong {
    color: #111827;
    font-weight: 700;
}

.article-body a {
    color: #f54342;
    text-decoration: none;
}

.article-body a:hover {
    text-decoration: underline;
}

.article-body blockquote {
    border-left: 4px solid rgba(245, 67, 66, .25);
    background: #f9fafb;
    border-radius: 0 .5rem .5rem 0;
    padding: .75rem 1.25rem;
    margin: 1.5rem 0;
    color: #6b7280;
    font-style: italic;
}

.article-body code {
    color: #f54342;
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: .9em;
}

/* ── Tags bottom ── */
.tags-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.tag-chip {
    display: inline-block;
    padding: 5px 12px;
    border-radius: .5rem;
    background: #f3f4f6;
    color: #4b5563;
    font-size: .75rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s, color .15s;
}

.tag-chip:hover {
    background: #e5e7eb;
    color: #374151;
}

/* ── Author bio card ── */
.author-bio-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 2.5rem;
}

.author-bio-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(245, 67, 66, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.75rem;
    color: #f54342;
}

.author-bio-label {
    font-size: .6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #9ca3af;
    margin-bottom: 2px;
}

.author-bio-name {
    font-size: 1.125rem;
    font-weight: 900;
    color: #111827;
    margin: 0 0 4px;
}

.author-bio-desc {
    font-size: .875rem;
    color: #6b7280;
    margin: 0 0 .5rem;
}

.author-bio-link {
    font-size: .75rem;
    font-weight: 600;
    color: #f54342;
    text-decoration: none;
}

.author-bio-link:hover {
    text-decoration: underline;
    color: #f54342;
}

/* ── Discussion / comments ── */
.discussion-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.discussion-title {
    font-size: 1.125rem;
    font-weight: 900;
    color: #111827;
    margin: 0 0 1rem;
}

.comment-form {
    display: flex;
    gap: .75rem;
    margin-bottom: 1.5rem;
}

.comment-input {
    flex: 1;
    padding: .625rem 1rem;
    border-radius: .75rem;
    border: 1px solid #e5e7eb;
    background: #fff;
    font-size: .875rem;
    color: #111827;
    outline: none;
    transition: border-color .15s;
}

.comment-input:focus {
    border-color: #f54342;
}

.btn-post {
    padding: .625rem 1.25rem;
    border-radius: .75rem;
    background: #f54342;
    color: #fff;
    font-size: .875rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s;
}

.btn-post:hover {
    background: #d93a39;
}

.no-comments {
    font-size: .875rem;
    color: #9ca3af;
    text-align: center;
    padding: 1rem 0;
}

/* ── Related articles band ── */
.related-band {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 3rem 0;
    margin-top: 3rem;
}

.related-band-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: #111827;
    margin: 0 0 1.5rem;
}

/* Related card */
.related-card {
    position: relative;
    display: block;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 16/10;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    transition: border-color .3s, box-shadow .3s;
}

.related-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}

.related-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.related-card:hover img {
    transform: scale(1.05);
}

.related-card .rc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, transparent 60%);
}

.related-card .rc-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1.5rem;
}

.related-card .rc-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: .375rem;
    background: #f54342;
    color: #fff;
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .625rem;
}

.related-card .rc-body h3 {
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 .5rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .2s;
}

@media(min-width:576px) {
    .related-card .rc-body h3 {
        font-size: 1.125rem;
    }
}

.related-card:hover .rc-body h3 {
    color: #fca5a5;
}

.related-card .rc-meta {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 500;
}

.related-card .rc-meta .dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
}

/* Event Details */
/* ── Event hero band ── */
.event-hero-band {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 2rem 0 3rem;
}

/* ── Event image (square) ── */
.event-img-wrap {
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #f3f4f6;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
}

.event-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.event-img-wrap:hover img {
    transform: scale(1.03);
}

/* ── Event type badge ── */
.event-type-pill {
    display: inline-block;
    padding: 5px 14px;
    border-radius: .625rem;
    background: rgba(245, 67, 66, .1);
    color: #f54342;
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 1.25rem;
}

/* ── Event title ── */
.event-title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 900;
    color: #111827;
    letter-spacing: -.03em;
    line-height: 1.1;
    margin: 0 0 2rem;
}

/* ── Event meta rows ── */
.event-meta-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.event-meta-icon {
    width: 24px;
    height: 24px;
    color: #f54342;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 1.25rem;
}

.event-meta-label {
    font-size: .625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #9ca3af;
    margin-bottom: 2px;
}

.event-meta-value {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #111827;
}

.event-meta-sub {
    font-size: .875rem;
    color: #6b7280;
    margin-top: 1px;
}

/* ── Action button ── */
.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: .625rem 1.25rem;
    border-radius: .625rem;
    font-size: .875rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .15s;
}

.btn-action-light {
    background: #f3f4f6;
    color: #111827;
}

.btn-action-light:hover {
    background: #e5e7eb;
    color: #111827;
}

.btn-action-dark {
    background: #111827;
    color: #fff;
}

.btn-action-dark:hover {
    background: #1f2937;
    color: #fff;
}

.btn-action-outline {
    background: #fff;
    color: #374151;
    border: 1px solid #e5e7eb !important;
}

.btn-action-outline:hover {
    background: #f9fafb;
    color: #111827;
}

/* ── Content sections ── */
.event-content {
    padding: 3.5rem 0;
}

/* ── Section title ── */
.section-heading {
    font-size: 1.75rem;
    font-weight: 900;
    color: #111827;
    letter-spacing: -.02em;
    margin: 0 0 1rem;
}

/* ── About text ── */
.about-text {
    font-size: 1.0625rem;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 2rem;
}

/* ── Highlights card ── */
.highlights-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
}

.highlights-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 1.25rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #374151;
    font-size: .9375rem;
    padding: .375rem 0;
}

.highlight-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f54342;
    flex-shrink: 0;
}

/* ── Divider ── */
.section-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 0;
}

/* ── Reviews section ── */
.reviews-section {
    padding: 3.5rem 0;
}

/* ── Review card ── */
.review-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

.review-card .reviewer-name {
    font-size: .9375rem;
    font-weight: 700;
    color: #111827;
}

.review-card .review-date {
    font-size: .8125rem;
    color: #9ca3af;
    margin-top: 2px;
}

.review-card .review-text {
    font-size: .9375rem;
    color: #374151;
    line-height: 1.65;
    margin: .75rem 0 0;
}

.stars {
    display: flex;
    gap: 2px;
}

.star-icon {
    font-size: .875rem;
    color: #f59e0b;
}

/* ── Write a review form card ── */
.review-form-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
}

.review-form-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 1.5rem;
}

/* Form controls */
.form-label-custom {
    display: block;
    font-size: .8125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: .5rem;
}

.form-input-custom {
    width: 100%;
    padding: .75rem 1rem;
    border-radius: .625rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #111827;
    font-size: .9375rem;
    outline: none;
    transition: border-color .15s;
    box-sizing: border-box;
}

.form-input-custom::placeholder {
    color: #9ca3af;
}

.form-input-custom:focus {
    border-color: #f54342;
}

textarea.form-input-custom {
    resize: none;
}

/* Star rating interactive */
.star-rating {
    display: flex;
    gap: 6px;
}

.star-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 2rem;
    color: #f59e0b;
    transition: transform .15s;
    line-height: 1;
}

.star-btn:hover {
    transform: scale(1.15);
}

/* Submit button */
.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: .75rem 2rem;
    border-radius: .625rem;
    font-size: .9375rem;
    font-weight: 700;
    background: #f54342;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background .15s;
}

.btn-submit:hover {
    background: #d93a39;
}

/* ======== Pricing ======== */
/* ── PAGE INTRO ─────────────────────────────────── */
.pricing-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-intro h1 {
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: 900;
    color: #111827;
    letter-spacing: -0.02em;
    margin: 0;
}

.pricing-intro p {
    color: #6b7280;
    font-size: 1rem;
    margin-top: .75rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

/* ── CARDS ──────────────────────────────────────── */
.pricing-card {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    padding: 2rem;
}

@media (min-width: 576px) {
    .pricing-card {
        padding: 2rem;
    }
}

.pricing-card h2 {
    font-size: 1.25rem;
    font-weight: 900;
    color: #111827;
    margin-bottom: 1.5rem;
}

/* ── FEATURES GRID ──────────────────────────────── */
.feature-item {
    display: flex;
    gap: .75rem;
    padding: 1rem;
    border-radius: .75rem;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
}

.feature-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: .5rem;
    background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: .875rem;
}

.feature-item p.feat-title {
    font-size: .875rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.feature-item p.feat-desc {
    font-size: .75rem;
    color: #6b7280;
    margin: .25rem 0 0;
    line-height: 1.5;
}

/* ── BILLING TOGGLE ─────────────────────────────── */
.billing-toggle {
    display: flex;
    gap: .5rem;
    padding: .25rem;
    background: #f3f4f6;
    border-radius: .75rem;
    margin-bottom: 2rem;
}

.billing-toggle button {
    flex: 1;
    padding: .625rem 0;
    font-size: .875rem;
    font-weight: 600;
    border-radius: .5rem;
    border: none;
    cursor: pointer;
    transition: all .2s;
    background: transparent;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.billing-toggle button.active {
    background: #fff;
    color: #111827;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ── PRICE DISPLAY ──────────────────────────────── */
.plan-label {
    font-size: .875rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .25rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #111827;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: #9ca3af;
    margin-bottom: .5rem;
    align-self: flex-end;
    padding-bottom: .375rem;
}

.trial-badge {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    padding: .5rem .75rem;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: .5rem;
    font-size: .75rem;
    font-weight: 700;
    color: #ea580c;
    margin-top: .75rem;
}

/* ── CHECKLIST ──────────────────────────────────── */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .875rem;
    font-weight: 500;
    color: #374151;
}

.check-circle {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: .625rem;
}

/* ── ORDER SUMMARY ──────────────────────────────── */
.order-summary {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: .75rem;
    padding: 1rem;
    margin-bottom: 1.25rem;
}

.order-row {
    display: flex;
    justify-content: space-between;
    font-size: .875rem;
}

.order-row+.order-row {
    margin-top: .375rem;
}

.order-row .label {
    color: #6b7280;
}

.order-row .value {
    font-weight: 600;
    color: #111827;
}

/* ── CTA BUTTON ─────────────────────────────────── */
.checkout-btn {
    width: 100%;
    padding: 1rem;
    border-radius: .75rem;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    border: none;
    background: linear-gradient(to right, #f97316, #ea580c);
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
    cursor: pointer;
}

.checkout-btn a {
    color: inherit;
    text-decoration: none;
}

.checkout-btn:hover {
    background: linear-gradient(to right, #ea580c, #c2410c);
}

.checkout-note {
    text-align: center;
    font-size: .75rem;
    color: #9ca3af;
    margin-top: .75rem;
}

/* ── Page wrapper ── */
.page-bg {
    background: #f9fafb;
}

/* ── Page heading ── */
.page-heading {
    text-align: center;
    margin-bottom: 40px;
}

.page-heading h1 {
    font-size: 1.875rem;
    font-weight: 900;
    color: #111827;
    letter-spacing: -.03em;
    margin: 0 0 8px;
}

@media(min-width:576px) {
    .page-heading h1 {
        font-size: 2.25rem;
    }
}

.page-heading p {
    color: #6b7280;
    font-size: 1rem;
    margin: 0 auto;
    max-width: 672px;
}

/* ── Form card ── */
.form-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
    padding: 24px;
}

@media(min-width:576px) {
    .form-card {
        padding: 32px;
    }
}

/* ── Fields ── */
label.field-label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.field-input {
    width: 100%;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: .875rem;
    background: #fff;
    color: #111827;
    transition: box-shadow .15s, border-color .15s;
    outline: none;
}

.field-input::placeholder {
    color: #9ca3af;
}

.field-input:focus {
    border-color: #fb923c;
    box-shadow: 0 0 0 2px rgba(251, 146, 60, 0.35);
}

select.field-input {
    appearance: auto;
}

textarea.field-input {
    resize: none;
    padding: 12px 16px;
}

/* two-col grid on sm+ */
.two-col {
    display: grid;
    gap: 20px;
}

@media(min-width:576px) {
    .two-col {
        grid-template-columns: 1fr 1fr;
    }
}

/* form vertical spacing */
.form-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── Submit button ── */
.btn-from-submit {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(to right, #f97316, #ea580c);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background .15s;
    margin-top: 32px;
}

.btn-from-submit:hover {
    background: linear-gradient(to right, #ea580c, #c2410c);
}

.btn-from-submit:disabled {
    opacity: .7;
    cursor: default;
}

/* Reset pass page */
.bg-gray-50 {
    background: #f9fafb;
}

/* ── Password reset card ── */
.reset-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 16px 50px;
}

.reset-card {
    width: 100%;
    max-width: 384px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
    padding: 32px;
}

.reset-card .logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.reset-card .logo-wrap img {
    height: 48px;
    width: auto;
}

.reset-card h1 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #111827;
    letter-spacing: -.03em;
    text-align: center;
    margin: 0 0 4px;
}

.reset-card .subtitle {
    font-size: .875rem;
    color: #6b7280;
    text-align: center;
    margin: 0 0 24px;
}

.pass-send {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: .875rem;
    color: #fff;
    background: linear-gradient(to right, #f97316, #ea580c);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background .15s;
    margin-top: 24px;
}

.pass-send:hover {
    background: linear-gradient(to right, #ea580c, #c2410c);
}

.pass-send:disabled {
    opacity: .7;
    cursor: default;
}

.login-hint {
    text-align: center;
    font-size: .875rem;
    color: #6b7280;
    margin-top: 24px;
    margin-bottom: 0;
}

.login-hint a {
    color: #ea580c;
    font-weight: 600;
    text-decoration: none;
    transition: color .15s;
}

.login-hint a:hover {
    color: #c2410c;
}

/* ======== Get the App ======= */
/* ══════════════════════════════
SECTION 1 — HERO
══════════════════════════════ */
.app-hero-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
}

@media(min-width:576px) {
    .app-hero-section {
        padding: 128px 0;
    }
}

.hero-bg-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media(min-width:576px) {
    .hero-inner {
        padding: 0 1.5rem;
    }
}

@media(min-width:1024px) {
    .hero-inner {
        padding: 0 2rem;
    }
}

.hero-grid {
    display: grid;
    gap: 64px;
    align-items: center;
}

@media(min-width:1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 9999px;
    background: rgba(249, 115, 22, 0.1);
    color: #fb923c;
    font-size: .75rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-h1 {
    font-size: 2.25rem;
    font-weight: 900;
    color: #111827;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin: 0;
}

@media(min-width:576px) {
    .hero-h1 {
        font-size: 3rem;
    }
}

@media(min-width:1024px) {
    .hero-h1 {
        font-size: 3.75rem;
    }
}

.hero-h1 .accent {
    color: #f97316;
}

.hero-sub {
    color: #6b7280;
    font-size: 1.125rem;
    margin: 24px 0 0;
    line-height: 1.7;
    max-width: 448px;
}

.dl-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
}

.btn-appstore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: #111827;
    color: #fff;
    font-weight: 700;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    transition: background .15s;
}

.btn-appstore:hover {
    background: #1f2937;
}

.dl-pre {
    font-size: .625rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .6;
    margin: 0;
    line-height: 1.4;
}

.dl-name {
    font-size: .875rem;
    font-weight: 700;
    margin: -2px 0 0;
    line-height: 1.4;
}

.btn-gplay {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: #f3f4f6;
    color: #111827;
    font-weight: 700;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: background .15s;
}

.btn-gplay:hover {
    background: #e5e7eb;
}

/* Phone mockup */
.phone-col {
    display: none;
    justify-content: center;
}

@media(min-width:1024px) {
    .phone-col {
        display: flex;
    }
}

.phone-wrap {
    position: relative;
}

.phone-shell {
    width: 288px;
    height: 580px;
    border-radius: 48px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 64px;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}

.phone-notch-bar {
    width: 112px;
    height: 20px;
    border-radius: 9999px;
    background: #000;
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
}

.app-icon span {
    font-size: 1.875rem;
    font-weight: 900;
    color: #fff;
}

.phone-app-name {
    color: #111827;
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0;
}

.phone-app-sub {
    color: #9ca3af;
    font-size: .75rem;
    margin: 4px 0 0;
}

.phone-menu {
    width: 100%;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border-radius: 12px;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
}

.phone-menu-item span {
    font-size: .875rem;
    color: #374151;
}

.phone-glow {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 256px;
    height: 160px;
    background: rgba(249, 115, 22, 0.15);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

/* ══════════════════════════════
SECTION 2 — FEATURES
══════════════════════════════ */
.features-section {
    padding: 64px 0;
    background: #f9fafb;
}

@media(min-width:576px) {
    .features-section {
        padding: 96px 0;
    }
}

.features-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media(min-width:576px) {
    .features-inner {
        padding: 0 1.5rem;
    }
}

@media(min-width:1024px) {
    .features-inner {
        padding: 0 2rem;
    }
}

.features-heading {
    font-size: 1.5rem;
    font-weight: 900;
    color: #111827;
    letter-spacing: -.02em;
    text-align: center;
    margin: 0 0 8px;
}

@media(min-width:576px) {
    .features-heading {
        font-size: 1.875rem;
    }
}

.features-sub {
    color: #6b7280;
    text-align: center;
    margin: 0 0 64px;
}

.features-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}

@media(min-width:576px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(min-width:1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    transition: border-color .15s;
}

.feature-card:hover {
    border-color: rgba(249, 115, 22, 0.4);
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(249, 115, 22, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
}

.feature-card p {
    font-size: .875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* ══════════════════════════════
SECTION 3 — CTA
══════════════════════════════ */
.cta-section {
    padding: 80px 0;
}

@media(min-width:576px) {
    .cta-section {
        padding: 112px 0;
    }
}

.cta-inner {
    max-width: 672px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.cta-h2 {
    font-size: 1.875rem;
    font-weight: 900;
    color: #111827;
    letter-spacing: -.02em;
    margin: 0 0 12px;
}

@media(min-width:576px) {
    .cta-h2 {
        font-size: 2.25rem;
    }
}

.cta-sub {
    color: #6b7280;
    font-size: 1.125rem;
    margin: 0;
}

.btn-dl-now {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #f97316;
    color: #fff;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: background .15s;
    margin-top: 32px;
}

.btn-dl-now:hover {
    background: #ea580c;
}

/* ── Toast portal ── */
.toast-portal {
    position: fixed;
    top: 0;
    z-index: 9999;
    display: flex;
    max-height: 100vh;
    width: 100%;
    flex-direction: column-reverse;
    padding: 16px;
    pointer-events: none;
}

@media(min-width:576px) {
    .toast-portal {
        bottom: 0;
        right: 0;
        top: auto;
        flex-direction: column;
        max-width: 420px;
        left: auto;
    }
}


/* ====== Register ====== */
.bg-gray-50-page {
    background: #f9fafb;
}

/* ── Card wrapper ── */
.card-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 16px 50px;
}

/* ── Form card ── */
.reg-card {
    width: 100%;
    max-width: 384px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
    padding: 32px;
}

.reg-card h1 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #111827;
    letter-spacing: -.03em;
    text-align: center;
    margin: 0 0 4px;
}

.reg-card .subtitle {
    font-size: .875rem;
    color: #6b7280;
    text-align: center;
    margin: 0;
}

/* password eye toggle wrapper */
.pw-wrap {
    position: relative;
}

.pw-wrap .field-input {
    padding-right: 40px;
}

.pw-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    padding: 0;
    display: flex;
    align-items: center;
    transition: color .15s;
}

.pw-toggle:hover {
    color: #4b5563;
}

/* ── Submit ── */
.btn-create {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: .875rem;
    color: #fff;
    background: linear-gradient(to right, #f97316, #ea580c);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background .15s;
    margin-top: 24px;
}

.btn-create:hover {
    background: linear-gradient(to right, #ea580c, #c2410c);
}

.btn-create:disabled {
    opacity: .7;
    cursor: default;
}

/* ── Divider ── */
.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.divider-text {
    font-size: .75rem;
    color: #9ca3af;
    font-weight: 500;
}

/* ── Google btn ── */
.btn-google {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .875rem;
    color: #111827;
    background: #fff;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .15s;
}

.btn-google:hover {
    background: #f9fafb;
}

.btn-google:disabled {
    opacity: .7;
    cursor: default;
}

/* spacing helper */
.space-y-4>*+* {
    margin-top: 16px;
}

/* ======= Clips ======= */
.page-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media(min-width:1024px) {
    .page-header-inner {
        padding: 0 2rem;
    }
}

/* ── Clips grid ── */
.clips-content {
    padding: 40px 0 56px;
}

.clips-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media(min-width:1024px) {
    .clips-inner {
        padding: 0 2rem;
    }
}

.clips-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}

@media(min-width:576px) {
    .clips-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(min-width:1024px) {
    .clips-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* ── Empty state ── */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 64px 0;
    color: #9ca3af;
    display: none;
}

.empty-state p {
    font-size: 1rem;
    margin: 8px 0 0;
}

/* ── Clip item ── */
.clip-item {
    display: block;
}

.clip-item.hidden {
    display: none;
}

/* ── Filter pills ── */
.clips-filter-pills {
    margin-top: 32px;
}

/* ── Clip meta ── */
.clip-meta .views {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ── Controls row ── */
.header-controls {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

@media(min-width:576px) {
    .header-controls {
        flex-direction: row;
        align-items: center;
    }
}

/* Search */
.search-wrap {
    position: relative;
    flex: 1;
    max-width: 448px;
}

.search-wrap .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: .875rem;
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 10px 16px 10px 38px;
    border-radius: 12px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #111827;
    font-size: .875rem;
    outline: none;
    transition: border-color .2s;
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-input:focus {
    border-color: rgba(245, 67, 66, 0.5);
}

/* ════════════════════════════════
ATHLETES GRID
════════════════════════════════ */
.athletes-section {
    padding: 40px 0 56px;
}

.athletes-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media(min-width:1024px) {
    .athletes-inner {
        padding: 0 2rem;
    }
}

.athletes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media(min-width:576px) {
    .athletes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media(min-width:1024px) {
    .athletes-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

/* hide/show */
.athlete-item {
    display: block;
}

.athlete-item.hidden {
    display: none !important;
}

/* ── Empty state (unique version) ── */
.athletes-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 64px 16px;
    color: #9ca3af;
    display: none;
}

.athletes-empty-state i {
    font-size: 2.5rem;
    display: block;
    margin: 0 auto 12px;
}

.athletes-empty-state p {
    font-size: 1rem;
    margin: 0;
}

/* -------- Athelete Details -------- */
/* ── Hero band ── */
.athlete-hero {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 2.5rem;
}

/* ── Profile photo ── */
.profile-photo {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #f3f4f6;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.profile-photo:hover img {
    transform: scale(1.03);
}

.profile-photo .photo-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .4) 0%, transparent 55%);
}

.profile-score-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f54342;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(245, 67, 66, .45);
}

/* ── Athlete badges ── */
/* .badge-top {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 9999px;
    background: rgba(245, 67, 66, .1);
    color: #f54342;
    font-size: .75rem;
    font-weight: 700;
}

.badge-rising {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 9999px;
    background: rgba(34, 197, 94, .1);
    color: #16a34a;
    font-size: .75rem;
    font-weight: 700;
} */

/* ── Name & meta ── */
.athlete-name {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 900;
    color: #111827;
    letter-spacing: -.03em;
    line-height: 1.1;
    margin: .5rem 0 .75rem;
}

.athlete-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .25rem .625rem;
    color: #6b7280;
    font-size: .9375rem;
    margin-bottom: 1.5rem;
}

.athlete-meta strong {
    color: #111827;
    font-weight: 600;
}

.meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #d1d5db;
    flex-shrink: 0;
}

/* ── Stat pills ── */
.stat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .625rem;
    margin-bottom: 1.75rem;
}

.stat-pill {
    padding: .5rem 1rem;
    border-radius: .75rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    min-width: 72px;
    text-align: center;
}

.sp-label {
    font-size: .625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #9ca3af;
}

.sp-value {
    font-size: 1.0625rem;
    font-weight: 800;
    color: #111827;
    margin-top: 2px;
}

.sp-value.red {
    color: #f54342;
}

/* ── Content area ── */
.athlete-content {
    padding: 2.5rem 0 3.5rem;
    background: #fff;
}

/* ── Info cards ── */
.info-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-card-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 1rem;
}

/* ── Season stats ── */
.season-stat {
    text-align: center;
    padding: 1rem .75rem;
    border-radius: .75rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.ss-val {
    font-size: 2rem;
    font-weight: 900;
    color: #f54342;
    line-height: 1;
}

.ss-label {
    font-size: .625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #9ca3af;
    margin-top: 4px;
}

/* ── Video thumb ── */
.video-thumb {
    position: relative;
    border-radius: .75rem;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #111827;
    cursor: pointer;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.video-thumb:hover img {
    transform: scale(1.05);
}

.v-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .3);
    transition: background .2s;
}

.video-thumb:hover .v-overlay {
    background: rgba(0, 0, 0, .45);
}

.v-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v-play-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s, background .2s;
}

.video-thumb:hover .v-play-circle {
    transform: scale(1.1);
    background: #fff;
}

.v-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    padding: 2px 8px;
    border-radius: 6px;
    background: rgba(0, 0, 0, .75);
    color: #fff;
    font-size: .6875rem;
    font-weight: 600;
}

.v-title-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: .625rem .75rem 1.75rem;
    background: linear-gradient(to top, rgba(0, 0, 0, .85), transparent);
}

.v-title-bar h4 {
    font-size: .8125rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.v-title-bar p {
    font-size: .6875rem;
    color: #d1d5db;
    margin: 2px 0 0;
}

/* ── College tags ── */
.college-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 9999px;
    background: #f3f4f6;
    color: #374151;
    font-size: .8125rem;
    font-weight: 600;
    margin: 3px;
    text-decoration: none;
    transition: background .15s, color .15s;
}

.college-tag:hover {
    background: #fff0f0;
    color: #f54342;
}

/* ── Sidebar detail card ── */
.detail-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    position: sticky;
    top: 88px;
}

.detail-card-title {
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #9ca3af;
    margin: 0 0 1.25rem;
}

.detail-row {
    padding: .75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.dr-label {
    font-size: .625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #9ca3af;
    margin-bottom: 2px;
}

.dr-value {
    font-size: .9375rem;
    font-weight: 600;
    color: #111827;
}

/* Login */
/* ── Forgot ── */
.forgot-link {
    font-size: .75rem;
    font-weight: 600;
    color: #ea580c;
    text-decoration: none;
    transition: color .2s;
}

.forgot-link:hover {
    color: #c2410c;
}

/* ── Submit ── */
.login-submit {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: .875rem;
    color: #fff;
    border: none;
    background: linear-gradient(to right, #f97316, #ea580c);
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.3);
    cursor: pointer;
    margin-top: 24px;
}

.login-submit:hover {
    background: linear-gradient(to right, #ea580c, #c2410c);
}

/* ── OR divider ── */
.or-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

.or-divider .line {
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.or-divider span {
    font-size: .75rem;
    font-weight: 500;
    color: #9ca3af;
}

/* ── Google btn ── */
.google-btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .875rem;
    color: #111827;
    background: #fff;
    border: 1px solid #e5e7eb;
    transition: background .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.google-btn:hover {
    background: #f9fafb;
}

/* ── Signup row ── */
.signup-row {
    text-align: center;
    font-size: .875rem;
    color: #6b7280;
    margin-top: 24px;
    margin-bottom: 0;
}

.signup-row a {
    color: #ea580c;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s;
}

.signup-row a:hover {
    color: #c2410c;
}


/* Checkout page */
.checkout-page-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 32px 1rem;
}

@media(min-width:576px) {
    .checkout-page-inner {
        padding: 56px 1.5rem;
    }
}

@media(min-width:1024px) {
    .checkout-page-inner {
        padding: 56px 2rem;
    }
}

/* ── Info banner ── */
.info-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    font-size: .875rem;
    color: #1e40af;
    margin-bottom: 24px;
}

.info-banner button {
    background: none;
    border: none;
    font-weight: 600;
    text-decoration: underline;
    color: #1e40af;
    cursor: pointer;
    padding: 0;
    margin-left: 4px;
    transition: color .15s;
}

.info-banner button:hover {
    color: #1d4ed8;
}

/* ── White card ── */
.white-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
    padding: 24px;
}

@media(min-width:576px) {
    .white-card {
        padding: 28px;
    }
}

.white-card h2 {
    font-size: 1rem;
    font-weight: 900;
    color: #111827;
    margin: 0 0 20px;
}

/* ── Payment tabs ── */
.pay-tabs {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: #f3f4f6;
    border-radius: 12px;
    margin-bottom: 24px;
}

.pay-tab {
    flex: 1;
    padding: 8px;
    font-size: .875rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all .15s;
}

.pay-tab.active {
    background: #fff;
    color: #111827;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pay-tab.inactive {
    background: transparent;
    color: #6b7280;
}

/* ── Submit ── */
.btn-complete {
    width: 100%;
    margin-top: 24px;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(to right, #f97316, #ea580c);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background .15s;
}

.btn-complete:hover {
    background: linear-gradient(to right, #ea580c, #c2410c);
}

.btn-complete:disabled {
    opacity: .7;
    cursor: default;
}

.payment-note {
    text-align: center;
    font-size: .75rem;
    color: #9ca3af;
    margin-top: 12px;
    margin-bottom: 0;
}

/* ── Main grid ── */
.checkout-grid {
    display: grid;
    gap: 24px;
}

@media(min-width:1024px) {
    .checkout-grid {
        grid-template-columns: 1fr 360px;
    }
}

/* ── Order summary ── */
.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: .875rem;
}

.summary-row .label {
    color: #6b7280;
}

.summary-row .value {
    font-weight: 600;
    color: #111827;
    text-align: right;
    max-width: 180px;
}

.summary-divider {
    border: none;
    border-top: 1px solid #f3f4f6;
    margin: 16px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: .875rem;
    font-weight: 900;
    color: #111827;
}

/* coupon row */
.coupon-wrap {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.coupon-input-wrap {
    position: relative;
    flex: 1;
}

.coupon-input-wrap .tag-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

.coupon-input {
    width: 100%;
    padding: 10px 12px 10px 36px;
    font-size: .875rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    outline: none;
    transition: box-shadow .15s;
}

.coupon-input::placeholder {
    color: #9ca3af;
}

.coupon-input:focus {
    box-shadow: 0 0 0 2px rgba(251, 146, 60, 0.35);
    border-color: #fb923c;
}

.coupon-apply {
    padding: 10px 16px;
    font-size: .875rem;
    font-weight: 700;
    background: #111827;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background .15s;
    white-space: nowrap;
}

.coupon-apply:hover {
    background: #374151;
}

/* includes list */
.includes-heading {
    font-size: .75rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin: 0 0 12px;
}

.includes-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.includes-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    color: #374151;
}

/* trial badge */
.checkout-trial-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 8px;
    margin-top: 16px;
}

.checkout-trial-badge p {
    font-size: .75rem;
    font-weight: 600;
    color: #c2410c;
    margin: 0;
}

/* mobile order summary (hidden on lg) */
.mobile-summary {
    display: block;
    margin-bottom: 24px;
}

@media(min-width:1024px) {
    .mobile-summary {
        display: none;
    }
}

/* desktop sidebar (hidden below lg) */
.desktop-summary {
    display: none;
}

@media(min-width:1024px) {
    .desktop-summary {
        display: block;
    }
}

.blur-lock {
    filter: blur(4px);
    pointer-events: none;
    user-select: none;
    cursor: not-allowed;
}