﻿/* JCustoms â€” main.css */
:root {
    --bg:           #07070F;
    --bg-card:      #0D0D1A;
    --bg-nav:       rgba(7,7,15,.92);
    --primary:      #9333EA;
    --primary-h:    #7C22D4;
    --accent:       #06B6D4;
    --text:         #E4E4E7;
    --text-muted:   #71717A;
    --text-sub:     #A1A1AA;
    --border:       rgba(147,51,234,.18);
    --radius:       8px;
    --header-h:     68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* â”€â”€ Page loader â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#jc-loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .4s ease, visibility .4s ease;
}
#jc-loader.jc-loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.jc-loader__ring {
    width: 52px; height: 52px; border-radius: 50%;
    background: conic-gradient(var(--primary) 0deg, var(--accent) 130deg, rgba(7,7,15,0) 185deg);
    animation: jcLoaderSpin .85s linear infinite; position: relative;
}
.jc-loader__ring::after {
    content: ''; position: absolute; inset: 6px;
    border-radius: 50%; background: var(--bg);
}
@keyframes jcLoaderSpin { to { transform: rotate(360deg); } }

/* â”€â”€ Header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-header {
    position: sticky; top: 0; z-index: 800;
    background: var(--bg-nav);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    height: var(--header-h);
}
.site-header__inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; height: 100%;
    position: relative;
}
.site-logo { flex-shrink: 0; display: flex; align-items: center; }
.site-logo img { height: 48px; width: auto; display: block; }

.site-nav {
    position: absolute; left: 50%; transform: translateX(-50%);
    display: flex; gap: 4px;
}
.site-nav a {
    padding: 6px 12px; border-radius: var(--radius);
    font-size: 13.5px; font-weight: 500; color: var(--text-sub);
    transition: color .2s, background .2s;
    white-space: nowrap;
}
.site-nav a:hover, .site-nav a.active { color: var(--text); background: rgba(147,51,234,.14); }
.site-nav a.active { color: var(--primary); }

.header-basket-btn {
    margin-left: auto;
    display: none; align-items: center; gap: 7px;
    padding: 7px 16px; border-radius: 6px;
    background: var(--primary); color: #fff;
    font-size: 13.5px; font-weight: 600;
    border: none; cursor: pointer;
    transition: background .2s;
}
.header-basket-btn:hover { background: var(--primary-h); }
.header-basket-btn svg { flex-shrink: 0; }

/* Sale banner */
.site-sale-banner {
    position: relative;
    text-align: center; padding: 8px 16px;
    background: var(--bg);
    font-size: 11.5px; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase;
    overflow: hidden;
}
.site-sale-banner::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none;
    background: rgba(147,51,234,.07);
}
.site-sale-banner::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(147,51,234,.9) 30%, rgba(6,182,212,.9) 70%, transparent 100%);
    animation: jcBannerLine 3s ease-in-out infinite;
}
@keyframes jcBannerLine {
    0%, 100% { opacity: .55; }
    50%       { opacity: 1; }
}
.site-sale-banner span {
    position: relative; z-index: 1;
    background: linear-gradient(90deg, #C084FC 0%, #22D3EE 50%, #C084FC 100%);
    background-size: 200%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: jcBannerShimmer 5s linear infinite;
}
@keyframes jcBannerShimmer {
    from { background-position: 0% center; }
    to   { background-position: -200% center; }
}

/* Mobile nav toggle */
.nav-toggle {
    margin-left: auto;
    display: none; background: none; border: none;
    color: var(--text); cursor: pointer; padding: 4px;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .site-nav {
        position: absolute; left: 0; right: 0; top: var(--header-h);
        transform: none;
        display: none; flex-direction: column; gap: 2px;
        background: var(--bg-nav);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        padding: 12px;
    }
    .site-nav.is-open { display: flex; }
    .site-nav a { padding: 10px 14px; white-space: normal; }
    .header-basket-btn { display: none !important; }
}

/* â”€â”€ Hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.jc-hero {
    position: relative; overflow: hidden;
    min-height: 680px;
    display: flex; align-items: center;
    padding: 100px 24px 90px;
}

/* Tech grid lines */
.jc-hero::before {
    content: '';
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(147,51,234,.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(147,51,234,.09) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse 92% 96% at 50% 46%, black 25%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 92% 96% at 50% 46%, black 25%, transparent 100%);
}

#jc-canvas {
    position: absolute; inset: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 1;
}

/* Primary orb — strong center glow */
.jc-hero__orb {
    position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
    width: 960px; height: 960px; border-radius: 50%;
    background: radial-gradient(ellipse at center,
        rgba(147,51,234,.40) 0%,
        rgba(147,51,234,.14) 38%,
        transparent 65%);
    pointer-events: none; z-index: 0;
    animation: jcOrbPulse 7s ease-in-out infinite;
}
@keyframes jcOrbPulse {
    0%, 100% { transform: translateX(-50%) scale(1);    opacity: 1;  }
    50%       { transform: translateX(-50%) scale(1.07); opacity: .78; }
}

/* Secondary orbs */
.jc-hero__orb-2 {
    position: absolute; top: 22%; right: -60px;
    width: 440px; height: 440px; border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(6,182,212,.2) 0%, transparent 62%);
    pointer-events: none; z-index: 0;
    animation: jcOrbFloat 10s ease-in-out infinite;
}
.jc-hero__orb-3 {
    position: absolute; bottom: 4%; left: -50px;
    width: 360px; height: 360px; border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(147,51,234,.22) 0%, transparent 62%);
    pointer-events: none; z-index: 0;
    animation: jcOrbFloat 13s ease-in-out infinite reverse;
}
@keyframes jcOrbFloat {
    0%, 100% { transform: translateY(0)    scale(1); }
    50%       { transform: translateY(-16px) scale(1.04); }
}

/* Sweeping light beams */
.jc-hero__beam {
    position: absolute; top: 0; height: 100%;
    width: 50%; pointer-events: none; z-index: 0;
    background: linear-gradient(90deg, transparent, rgba(147,51,234,.07), transparent);
    animation: jcBeamSweep 14s ease-in-out infinite;
}
.jc-hero__beam--2 {
    background: linear-gradient(90deg, transparent, rgba(6,182,212,.055), transparent);
    animation-delay: -7s; animation-duration: 18s;
}
@keyframes jcBeamSweep {
    0%   { left: -55%; }
    100% { left: 165%; }
}

/* Scan line sweep */
.jc-hero__scan {
    position: absolute; left: 0; right: 0; height: 1px; z-index: 2;
    background: linear-gradient(90deg, transparent 0%, rgba(147,51,234,.75) 35%, rgba(6,182,212,.85) 65%, transparent 100%);
    box-shadow: 0 0 14px rgba(147,51,234,.65), 0 0 28px rgba(6,182,212,.3);
    pointer-events: none;
    animation: jcScanLine 7s ease-in-out infinite;
}
@keyframes jcScanLine {
    0%   { top: 4%; opacity: 0; }
    8%   { opacity: 1; }
    92%  { opacity: 1; }
    100% { top: 96%; opacity: 0; }
}

/* Corner bracket accents */
.jc-hero__corner {
    position: absolute; width: 28px; height: 28px; pointer-events: none; z-index: 2;
}
.jc-hero__corner--tl {
    top: 20px; left: 20px;
    border-top: 2px solid rgba(147,51,234,.6); border-left: 2px solid rgba(147,51,234,.6);
    border-radius: 3px 0 0 0;
    box-shadow: -3px -3px 10px rgba(147,51,234,.3);
}
.jc-hero__corner--tr {
    top: 20px; right: 20px;
    border-top: 2px solid rgba(6,182,212,.6); border-right: 2px solid rgba(6,182,212,.6);
    border-radius: 0 3px 0 0;
    box-shadow: 3px -3px 10px rgba(6,182,212,.3);
}
.jc-hero__corner--bl {
    bottom: 44px; left: 20px;
    border-bottom: 2px solid rgba(147,51,234,.45); border-left: 2px solid rgba(147,51,234,.45);
    border-radius: 0 0 0 3px;
}
.jc-hero__corner--br {
    bottom: 44px; right: 20px;
    border-bottom: 2px solid rgba(6,182,212,.45); border-right: 2px solid rgba(6,182,212,.45);
    border-radius: 0 0 3px 0;
}

/* Floating geometric accents */
.jc-hero__geo {
    position: absolute; pointer-events: none; z-index: 0;
    animation: jcGeoFloat var(--geo-dur, 8s) ease-in-out infinite var(--geo-delay, 0s);
}
.jc-hero__geo--1 {
    top: 20%; left: 6%;
    width: 22px; height: 22px;
    border: 2px solid rgba(147,51,234,.6);
    border-radius: 3px; transform: rotate(45deg);
    box-shadow: 0 0 16px rgba(147,51,234,.45), inset 0 0 8px rgba(147,51,234,.15);
    --geo-dur: 7s; --geo-delay: 0s;
}
.jc-hero__geo--2 {
    top: 60%; right: 8%;
    width: 16px; height: 16px;
    border: 2px solid rgba(6,182,212,.55);
    border-radius: 2px; transform: rotate(45deg);
    box-shadow: 0 0 14px rgba(6,182,212,.45);
    --geo-dur: 9s; --geo-delay: -3s;
}
.jc-hero__geo--3 {
    top: 36%; left: 12%;
    width: 9px; height: 9px;
    background: rgba(147,51,234,.8); border-radius: 50%;
    box-shadow: 0 0 12px rgba(147,51,234,.7);
    --geo-dur: 5s; --geo-delay: -1.8s;
    animation-name: jcDotFloat;
}
.jc-hero__geo--4 {
    bottom: 25%; right: 12%;
    width: 26px; height: 26px;
    border: 2px solid rgba(147,51,234,.4);
    border-radius: 3px; transform: rotate(45deg);
    box-shadow: 0 0 12px rgba(147,51,234,.3);
    --geo-dur: 12s; --geo-delay: -5s;
}
.jc-hero__geo--5 {
    top: 50%; right: 6%;
    width: 8px; height: 8px;
    background: rgba(6,182,212,.8); border-radius: 50%;
    box-shadow: 0 0 12px rgba(6,182,212,.7);
    --geo-dur: 6s; --geo-delay: -0.8s;
    animation-name: jcDotFloat;
}
@keyframes jcGeoFloat {
    0%, 100% { transform: rotate(45deg) translateY(0);     opacity: .8; }
    50%       { transform: rotate(45deg) translateY(-14px); opacity: 1; }
}
@keyframes jcDotFloat {
    0%, 100% { transform: translateY(0);     opacity: .65; }
    50%       { transform: translateY(-12px); opacity: 1; }
}

.jc-hero__inner {
    position: relative; z-index: 3;
    max-width: 700px; margin: 0 auto; text-align: center;
}

/* Glowing eyebrow badge */
.jc-hero__eyebrow {
    display: inline-block;
    font-size: 11px; font-weight: 700; letter-spacing: .15em;
    color: #C084FC; text-transform: uppercase; margin-bottom: 20px;
    padding: 6px 18px; border-radius: 20px;
    background: rgba(147,51,234,.18);
    border: 1px solid rgba(192,132,252,.55);
    animation: jcEyebrowGlow 2.5s ease-in-out infinite alternate;
}
@keyframes jcEyebrowGlow {
    from { box-shadow: 0 0 12px rgba(147,51,234,.25), 0 0 24px rgba(147,51,234,.1); border-color: rgba(192,132,252,.4); }
    to   { box-shadow: 0 0 24px rgba(147,51,234,.55), 0 0 50px rgba(147,51,234,.22), inset 0 0 14px rgba(147,51,234,.1); border-color: rgba(192,132,252,.8); }
}

.jc-hero__h {
    font-size: clamp(2.6rem, 6.5vw, 4.2rem);
    font-weight: 800; line-height: 1.08;
    letter-spacing: -.02em; color: #fff;
    margin-bottom: 22px;
}

/* Bright purple→cyan gradient on "JCustoms" */
.jc-hero__h em {
    font-style: normal; display: inline-block;
    background: linear-gradient(135deg, #C084FC 0%, 42%, #22D3EE 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 22px rgba(147,51,234,.6)) drop-shadow(0 0 44px rgba(6,182,212,.28));
}

.jc-hero__sub {
    font-size: 16px; color: var(--text-sub); margin-bottom: 34px;
    max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.65;
}
.jc-hero__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }

.jc-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 26px; border-radius: 8px;
    font-size: 14.5px; font-weight: 600;
    transition: all .22s;
    position: relative; overflow: hidden;
}

.jc-btn--fill {
    background: var(--primary); color: #fff;
    box-shadow: 0 0 20px rgba(147,51,234,.35), 0 0 40px rgba(147,51,234,.12);
}
.jc-btn--fill::after {
    content: ''; position: absolute; top: 0; left: -80%; width: 55%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
    transition: left .5s ease;
}
.jc-btn--fill:hover {
    background: var(--primary-h); transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(147,51,234,.6), 0 0 0 1px rgba(147,51,234,.35);
}
.jc-btn--fill:hover::after { left: 150%; }

.jc-btn--outline {
    border: 1px solid rgba(147,51,234,.38); color: var(--text);
    background: rgba(147,51,234,.06);
}
.jc-btn--outline:hover {
    border-color: rgba(147,51,234,.75); color: #C084FC;
    background: rgba(147,51,234,.12); transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(147,51,234,.25);
}
.jc-btn svg { width: 17px; height: 17px; flex-shrink: 0; }

/* Pills */
.jc-pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.jc-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: 20px;
    background: rgba(147,51,234,.12); border: 1px solid rgba(147,51,234,.3);
    font-size: 12.5px; color: var(--text-sub);
    transition: background .2s, border-color .2s, color .2s, transform .2s, box-shadow .2s;
    cursor: default;
}
.jc-pill:hover {
    background: rgba(147,51,234,.22); border-color: rgba(147,51,234,.6);
    color: #fff; transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(147,51,234,.3);
}
.jc-pill-icon { font-size: 13px; }

/* Mobile */
@media (max-width: 768px) {
    .jc-hero__geo    { display: none; }
    .jc-hero__orb-2, .jc-hero__orb-3 { display: none; }
    .jc-hero__scan   { display: none; }
    .jc-hero__corner { width: 20px; height: 20px; }
    .jc-hero::before { opacity: .4; }
}
@media (prefers-reduced-motion: reduce) {
    .jc-hero__orb, .jc-hero__orb-2, .jc-hero__orb-3 { animation: none; }
    .jc-hero__beam, .jc-hero__scan { display: none; }
    .jc-hero__geo  { display: none; }
    .jc-hero__eyebrow { animation: none; }
    .jc-btn--fill::after { display: none; }
}

/* â”€â”€ Ticker â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.jc-ticker-wrap {
    overflow: hidden; position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(147,51,234,.08);
    border-top: 1px solid rgba(147,51,234,.15);
    border-bottom: 1px solid rgba(147,51,234,.15);
    height: 36px; display: flex; align-items: center;
}
.jc-ticker-track {
    display: flex; gap: 0; white-space: nowrap;
    animation: jcTicker var(--jc-ticker-dur, 30s) linear infinite;
}
@keyframes jcTicker { from { transform: translateX(0); } to { transform: translateX(var(--jc-ticker-w, -1000px)); } }
.jc-tick-item {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 0 28px;
    font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--text-sub);
}
.jc-tick-item .dot { color: var(--primary); font-size: 8px; }

/* â”€â”€ Stats bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.jc-stats {
    display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
    gap: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
}
.jc-stat {
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    padding: 0 40px;
}
.jc-stat__v { font-size: 22px; font-weight: 800; color: #fff; }
.jc-stat__l { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.jc-stat-sep { width: 1px; height: 36px; background: var(--border); }
@media (max-width: 600px) {
    .jc-stats { gap: 24px; }
    .jc-stat-sep { display: none; }
    .jc-stat { padding: 0; }
}

/* -- Category cards ---------------------------------------------------------------- */
.jc-cats-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.jc-section-hd { text-align: center; margin-bottom: 48px; }
.jc-section-hd__label {
    font-size: 11px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--primary); margin-bottom: 8px;
}
.jc-section-hd h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: #fff; }

.jc-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.jc-card {
    position: relative; overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    text-align: center;
    display: flex; flex-direction: column;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.jc-card::before {
    content: ""; position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0; transition: opacity .3s;
}
.jc-card:hover::before { opacity: 1; }
.jc-card::after {
    content: ""; position: absolute;
    top: 0; left: -80%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(147,51,234,.07), transparent);
    transition: left .55s ease; pointer-events: none;
}
.jc-card:hover::after { left: 150%; }
.jc-card:hover {
    transform: translateY(-6px);
    border-color: rgba(147,51,234,.4);
    box-shadow: 0 16px 40px rgba(147,51,234,.18), 0 0 0 1px rgba(147,51,234,.1);
}
.jc-card__img-wrap { padding: 32px 24px 8px; }
.jc-card__img-box {
    width: 110px; height: 110px; margin: 0 auto;
    border-radius: 14px; overflow: hidden;
    background: rgba(147,51,234,.1);
    border: 1px solid rgba(147,51,234,.2);
    transition: box-shadow .3s;
}
.jc-card:hover .jc-card__img-box { box-shadow: 0 0 28px rgba(147,51,234,.5); }
.jc-card__img-box img { width: 100%; height: 100%; object-fit: cover; }
.jc-card__body { padding: 16px 20px 28px; flex: 1; display: flex; flex-direction: column; }
.jc-card__tier {
    font-size: 10px; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--primary); margin-bottom: 6px;
}
.jc-card__name { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.3; }
.jc-card__desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.55; margin-bottom: 20px; flex: 1; }
.jc-card__btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 9px 20px; border-radius: 6px;
    background: rgba(147,51,234,.12);
    border: 1px solid rgba(147,51,234,.28);
    color: var(--primary);
    font-size: 12.5px; font-weight: 600;
    transition: background .2s, border-color .2s, color .2s;
    align-self: center;
}
.jc-card:hover .jc-card__btn { background: var(--primary); border-color: var(--primary); color: #fff; }

@media (max-width: 900px) { .jc-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .jc-card-grid { grid-template-columns: 1fr; } }


/* â”€â”€ News list â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.jc-page { max-width: 900px; margin: 0 auto; padding: 64px 24px; }
.jc-page-title { font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.jc-page-sub { color: var(--text-muted); margin-bottom: 40px; }

.news-grid { display: grid; gap: 20px; }
.news-card {
    display: grid; grid-template-columns: 1fr auto;
    gap: 12px; align-items: start;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 22px 24px;
    transition: border-color .2s;
}
.news-card:hover { border-color: rgba(147,51,234,.4); }
.news-card__date { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.news-card__title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.news-card__excerpt { font-size: 14px; color: var(--text-sub); }
.news-card__link {
    margin-top: 14px; display: inline-block;
    font-size: 13px; font-weight: 600; color: var(--primary);
}
.news-card__link:hover { text-decoration: underline; }

.news-post__header { margin-bottom: 32px; }
.news-post__date { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.news-post__title { font-size: 2rem; font-weight: 800; line-height: 1.2; }
.news-post__body { font-size: 15.5px; line-height: 1.8; color: var(--text-sub); }
.news-post__body h1, .news-post__body h2, .news-post__body h3 { color: var(--text); margin: 24px 0 10px; }
.news-post__body p { margin-bottom: 16px; }
.news-post__body a { color: var(--primary); text-decoration: underline; }
.news-post__body img { border-radius: 6px; margin: 16px 0; }
.news-back { display: inline-flex; align-items: center; gap: 6px; color: var(--text-muted); font-size: 13px; margin-bottom: 28px; }
.news-back:hover { color: var(--text); }

/* ── Portfolio ──────────────────────────────────────────────────────────────── */
.port-page { max-width: 1100px; }

.port-header { text-align: center; margin-bottom: 56px; }
.port-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: #fff;
    margin: 8px 0 14px;
}
.port-sub {
    font-size: 16px; color: var(--text-sub); max-width: 520px;
    margin: 0 auto 28px; line-height: 1.65;
}
.port-fiverr-btn { margin: 0 auto; }
.port-fiverr-btn svg { width: 16px; height: 16px; }

.port-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; align-items: start;
}
.port-card {
    position: relative;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 14px; padding: 32px 28px 28px;
    display: flex; flex-direction: column;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.port-card:hover {
    transform: translateY(-4px); border-color: rgba(147,51,234,.4);
    box-shadow: 0 16px 40px rgba(147,51,234,.15);
}
.port-card--featured {
    border-color: rgba(147,51,234,.5);
    box-shadow: 0 0 0 1px rgba(147,51,234,.18), 0 8px 32px rgba(147,51,234,.18);
}
.port-card--featured::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 14px 14px 0 0;
}
.port-card__badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    padding: 4px 14px; border-radius: 20px; white-space: nowrap;
}
.port-card__tier {
    font-size: 11px; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--primary); margin-bottom: 10px;
}
.port-card__price {
    font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 8px;
}
.port-card__delivery { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.port-card__features {
    list-style: none; padding: 0; margin: 0 0 28px; flex: 1;
    display: flex; flex-direction: column; gap: 10px;
}
.port-card__features li {
    font-size: 13.5px; color: var(--text-sub);
    padding-left: 22px; position: relative; line-height: 1.45;
}
.port-card__features li::before {
    content: '✓'; position: absolute; left: 0;
    color: var(--primary); font-weight: 700; font-size: 13px;
}
.port-card__btn {
    display: block; text-align: center; padding: 11px 20px; border-radius: 8px;
    font-size: 13.5px; font-weight: 600;
    border: 1px solid rgba(147,51,234,.35); color: var(--primary);
    background: rgba(147,51,234,.08);
    transition: background .2s, border-color .2s, color .2s;
}
.port-card__btn:hover { background: rgba(147,51,234,.18); border-color: rgba(147,51,234,.6); }
.port-card__btn--primary {
    background: var(--primary); color: #fff; border-color: var(--primary);
    box-shadow: 0 0 18px rgba(147,51,234,.35);
}
.port-card__btn--primary:hover { background: var(--primary-h); border-color: var(--primary-h); }

@media (max-width: 860px) {
    .port-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* â”€â”€ Realm preview â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.realm-frame-wrap {
    width: 100%; height: calc(100vh - var(--header-h));
    border: none; display: block;
}

/* â”€â”€ Promo popup (FAB) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#jc-fab {
    position: fixed; bottom: 90px; right: 28px; z-index: 1300;
    display: flex; align-items: center; gap: 7px;
    padding: 10px 16px; border-radius: 30px;
    background: var(--bg-card);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(147,51,234,.32); color: #C084FC;
    cursor: pointer;
    font-size: 12.5px; font-weight: 700;
    transition: box-shadow .25s, border-color .25s, transform .25s;
    box-shadow: 0 4px 18px rgba(0,0,0,.5);
}
#jc-fab:hover { border-color: rgba(147,51,234,.65); box-shadow: 0 0 24px rgba(147,51,234,.45); transform: translateY(-2px); }
#jc-fab svg { width: 15px; height: 15px; }
.jc-fab__badge {
    background: var(--primary); color: #fff;
    border-radius: 10px; padding: 2px 8px; font-size: 11px;
}

#jc-pop {
    position: fixed; bottom: 140px; right: 28px; z-index: 1301;
    width: 300px; background: #12121F;
    border: 1px solid rgba(147,51,234,.35);
    border-radius: 12px; padding: 22px;
    box-shadow: 0 16px 48px rgba(0,0,0,.7);
    opacity: 0; transform: translateY(12px) scale(.97);
    pointer-events: none;
    transition: opacity .25s, transform .25s;
}
#jc-pop.open { opacity: 1; transform: none; pointer-events: auto; }
.jc-pop__close {
    position: absolute; top: 12px; right: 12px;
    background: none; border: none; color: var(--text-muted); cursor: pointer;
}
.jc-pop__close:hover { color: var(--text); }
.jc-pop__close svg { width: 16px; height: 16px; }
.jc-pop__lbl { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--primary); }
.jc-pop__title { font-size: 20px; font-weight: 800; margin: 6px 0 8px; }
.jc-pop__title .hi { color: var(--primary); }
.jc-pop__sub { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.jc-pop__code {
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(147,51,234,.1); border: 1px dashed rgba(147,51,234,.4);
    border-radius: 8px; padding: 12px 14px; cursor: pointer; margin-bottom: 12px;
    transition: background .2s;
}
.jc-pop__code:hover { background: rgba(147,51,234,.18); }
.jc-pop__code-lbl { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }
.jc-pop__code-val { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: .06em; }
.jc-pop__code svg { color: var(--primary); width: 16px; height: 16px; }
.jc-pop__copy {
    width: 100%; padding: 10px; border-radius: 7px;
    background: var(--primary); color: #fff;
    font-size: 13.5px; font-weight: 600; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 7px;
    transition: background .2s;
}
.jc-pop__copy:hover { background: var(--primary-h); }
.jc-pop__copy svg { width: 14px; height: 14px; }
.jc-pop__copy--done { background: #16a34a; }

/* â”€â”€ Back-to-top â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#jc-btt {
    position: fixed; bottom: 28px; right: 28px; z-index: 1200;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(13,13,28,.92); backdrop-filter: blur(14px);
    border: 1px solid rgba(147,51,234,.32); color: #C084FC;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; opacity: 0; transform: translateY(14px);
    transition: opacity .3s, transform .3s, box-shadow .25s;
    pointer-events: none;
}
#jc-btt.jc-btt--visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#jc-btt:hover { border-color: rgba(147,51,234,.65); box-shadow: 0 0 22px rgba(147,51,234,.4); }
#jc-btt svg { width: 16px; height: 16px; }

/* â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 32px 24px;
}
.site-footer__inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.footer-copy { font-size: 12.5px; color: var(--text-muted); }
.footer-features { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-feat { display: flex; align-items: center; gap: 5px; font-size: 11.5px; color: var(--text-muted); }
.footer-feat-div { color: var(--border); }
.footer-payments { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.footer-payments img { height: 22px; width: auto; opacity: .7; }

/* â”€â”€ Utilities â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 64px 0; }


