/* ============================= */
/* AURORA STUDIO — EXOTIC THEME  */
/* ============================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

:root{
    --bg:#070B17;
    --bg-2:#0B1224;
    --surface:rgba(255,255,255,.05);
    --surface-2:rgba(255,255,255,.08);
    --border:rgba(255,255,255,.09);
    --text:#EAF2FF;
    --muted:rgba(234,242,255,.7);
    --teal:#2DD4BE;
    --teal-2:#0FB8A4;
    --amber:#FBBF24;
    --coral:#FB7185;
    --accent-grad:linear-gradient(135deg,#2DD4BE 0%,#FBBF24 100%);
    --accent-soft:rgba(45,212,190,.18);
    --shadow:0 20px 50px rgba(0,0,0,.45);
}

body{
    font-family:'Inter',sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
}

body.loaded{ cursor:none; }
@media(hover:none){ body.loaded{ cursor:auto; } }

h1,h2,h3,h4{ font-family:'Sora',sans-serif; }

.grad{
    background:var(--accent-grad);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

/* ============================= */
/* Loading Screen                */
/* ============================= */

.loader{
    position:fixed;
    inset:0;
    z-index:9999;
    background:var(--bg);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:30px;
    transition:opacity .6s ease, visibility .6s ease;
}

.loader-mark{
    width:84px;
    height:84px;
    border-radius:24px;
    background:var(--accent-grad);
    display:flex;
    align-items:center;
    justify-content:center;
    font-family:'Sora',sans-serif;
    font-weight:800;
    font-size:42px;
    color:#070B17;
    animation:pulseLoader 1.4s ease-in-out infinite;
    box-shadow:0 0 50px rgba(45,212,190,.45);
}

.loader-bar{
    width:220px;
    height:4px;
    border-radius:10px;
    background:rgba(255,255,255,.08);
    overflow:hidden;
}

.loader-bar span{
    display:block;
    height:100%;
    width:40%;
    background:var(--accent-grad);
    border-radius:10px;
    animation:loaderMove 1.1s ease-in-out infinite;
}

.loader.hide{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}

@keyframes pulseLoader{
    0%,100%{transform:scale(1);opacity:1;}
    50%{transform:scale(1.08);opacity:.75;}
}

@keyframes loaderMove{
    0%{transform:translateX(-100%);}
    100%{transform:translateX(350%);}
}

/* ============================= */
/* Particles                     */
/* ============================= */

#particles{
    position:fixed;
    inset:0;
    z-index:-5;
    pointer-events:none;
}

/* ============================= */
/* Custom Cursor                 */
/* ============================= */

.cursor-dot,.cursor-ring{
    position:fixed;
    top:0;
    left:0;
    border-radius:50%;
    pointer-events:none;
    z-index:9998;
    transform:translate(-50%,-50%);
}

.cursor-dot{
    width:8px;
    height:8px;
    background:var(--teal);
}

.cursor-ring{
    width:36px;
    height:36px;
    border:2px solid rgba(45,212,190,.5);
    transition:width .2s, height .2s, border-color .2s, background .2s;
}

.cursor-ring.active{
    width:54px;
    height:54px;
    background:rgba(45,212,190,.12);
    border-color:var(--teal);
}

@media(hover:none){
    .cursor-dot,.cursor-ring{display:none;}
}

/* ============================= */
/* Animated Background           */
/* ============================= */

.background{
    position:fixed;
    inset:0;
    overflow:hidden;
    z-index:-10;
}

.circle{
    position:absolute;
    border-radius:50%;
    filter:blur(140px);
    opacity:.4;
    animation:float 14s ease-in-out infinite;
}

.one{ width:550px; height:550px; background:var(--teal); top:-180px; left:-160px; }
.two{ width:450px; height:450px; background:var(--amber); bottom:-140px; right:-130px; animation-delay:2s; }
.three{ width:300px; height:300px; background:var(--coral); top:40%; left:45%; animation-delay:4s; }
.four{ width:380px; height:380px; background:#1E9F8E; top:60%; left:10%; animation-delay:6s; }

@keyframes float{
    0%{transform:translateY(0px);}
    50%{transform:translateY(-30px);}
    100%{transform:translateY(0px);}
}

/* ============================= */
/* Navbar                        */
/* ============================= */

nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:22px 70px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    backdrop-filter:blur(18px);
    background:rgba(10,12,22,.45);
    border-bottom:1px solid var(--border);
    z-index:999;
    gap:20px;
    transition:background .3s, box-shadow .3s;
}

.logo{ display:flex; align-items:center; gap:12px; }

.logo-mark{
    width:42px;
    height:42px;
    border-radius:12px;
    background:var(--accent-grad);
    display:flex;
    align-items:center;
    justify-content:center;
    font-family:'Sora',sans-serif;
    font-weight:800;
    font-size:22px;
    color:#070B17;
}

.logo span{
    font-size:24px;
    font-weight:700;
    font-family:'Sora',sans-serif;
}

.logo .dot{ color:var(--teal); }

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
    align-items:center;
}

nav a{
    color:var(--text);
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

nav a:hover{ color:var(--teal); }

.nav-discord-btn{
    background:rgba(88,101,242,.18)!important;
    border:1px solid rgba(88,101,242,.4)!important;
    padding:8px 16px;
    border-radius:10px;
    font-size:14px;
}

.cart-icon{
    position:relative;
    background:var(--surface-2);
    border:1px solid var(--border);
    color:var(--text);
    font-size:20px;
    width:46px;
    height:46px;
    border-radius:12px;
    cursor:pointer;
    transition:.3s;
    flex-shrink:0;
}

.cart-icon:hover{
    background:var(--teal);
    color:#070B17;
    transform:translateY(-2px);
}

.cart-count{
    position:absolute;
    top:-6px;
    right:-6px;
    background:var(--amber);
    color:#070B17;
    font-size:11px;
    font-weight:700;
    width:20px;
    height:20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* ============================= */
/* Hero Section                  */
/* ============================= */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:120px 8%;
    gap:40px;
}

.hero-left{ max-width:650px; }

.status-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:8px 16px;
    border-radius:999px;
    background:rgba(45,212,190,.12);
    border:1px solid rgba(45,212,190,.3);
    font-size:13px;
    font-weight:600;
    color:var(--teal);
    margin-bottom:22px;
}

.pulse-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--teal);
    animation:pulse 1.6s ease-in-out infinite;
}

@keyframes pulse{
    0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(45,212,190,.6);}
    50%{opacity:.6;box-shadow:0 0 0 8px rgba(45,212,190,0);}
}

.tag{
    display:inline-block;
    padding:10px 18px;
    border-radius:30px;
    background:var(--surface);
    border:1px solid var(--border);
    margin-bottom:25px;
    color:var(--teal);
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
}

.hero h1{
    font-size:68px;
    line-height:1.05;
    margin-bottom:25px;
    font-weight:800;
    letter-spacing:-1px;
}

.hero h1 span{
    background:var(--accent-grad);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.hero p{
    font-size:19px;
    line-height:1.8;
    opacity:.85;
    margin-bottom:45px;
}

.buttons{ display:flex; gap:20px; }

/* ============================= */
/* Buttons                       */
/* ============================= */

.primary,.secondary{
    text-decoration:none;
    padding:17px 32px;
    border-radius:14px;
    font-weight:600;
    transition:.35s;
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-family:'Sora',sans-serif;
    cursor:pointer;
    border:none;
    font-size:16px;
}

.primary{
    background:var(--accent-grad);
    color:#070B17;
    box-shadow:0 0 30px rgba(45,212,190,.45);
}

.primary:hover{
    transform:translateY(-5px);
    box-shadow:0 0 55px rgba(45,212,190,.75);
}

.secondary{
    border:2px solid var(--teal);
    color:var(--text);
    background:transparent;
}

.secondary:hover{
    background:var(--teal);
    color:#070B17;
    transform:translateY(-5px);
}

/* FIX: Added missing styling for Buy/Plan/Add-on Buttons */
.buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 14px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: none;
    background: var(--accent-grad);
    color: #070B17;
    box-shadow: 0 4px 20px rgba(45, 212, 190, .25);
    transition: all .3s ease;
}

.buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(45, 212, 190, .5);
}

/* Styling for featured cards' buy buttons */
.plan-card.featured .buy-btn {
    background: var(--amber);
    box-shadow: 0 4px 20px rgba(251, 191, 36, .25);
}

.plan-card.featured .buy-btn:hover {
    box-shadow: 0 8px 30px rgba(251, 191, 36, .5);
}

/* ============================= */
/* Hero Orb                      */
/* ============================= */

.hero-right{
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-orb{
    position:relative;
    width:360px;
    height:360px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.orb-ring{
    position:absolute;
    border-radius:50%;
    border:1px solid rgba(45,212,190,.25);
}

.orb-ring.r1{ width:360px; height:360px; animation:spin 22s linear infinite; }
.orb-ring.r2{ width:270px; height:270px; border-color:rgba(251,191,36,.25); animation:spin 16s linear infinite reverse; }
.orb-ring.r3{ width:180px; height:180px; border-color:rgba(251,113,133,.25); animation:spin 12s linear infinite; }

.orb-core{
    width:110px;
    height:110px;
    border-radius:50%;
    background:var(--accent-grad);
    display:flex;
    align-items:center;
    justify-content:center;
    font-family:'Sora',sans-serif;
    font-weight:800;
    font-size:54px;
    color:#070B17;
    box-shadow:0 0 60px rgba(45,212,190,.5);
    animation:logoFloat 5s ease-in-out infinite;
}

@keyframes spin{
    0%{transform:rotate(0deg);}
    100%{transform:rotate(360deg);}
}

@keyframes logoFloat{
    0%{transform:translateY(0px);}
    50%{transform:translateY(-14px);}
    100%{transform:translateY(0px);}
}

/* ============================= */
/* Sections                      */
/* ============================= */

section{
    padding:120px 8%;
    position:relative;
}

section.hidden{
    opacity:0;
    transform:translateY(40px);
    transition:opacity .8s ease, transform .8s ease;
}

section.show{
    opacity:1;
    transform:translateY(0);
}

h2{
    font-size:46px;
    margin-bottom:20px;
    font-weight:800;
    letter-spacing:-.5px;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title p{
    opacity:.7;
    margin-top:15px;
    font-size:17px;
}

.section-tag{
    display:inline-block;
    margin-bottom:18px;
    padding:9px 20px;
    background:var(--accent-soft);
    border:1px solid rgba(45,212,190,.4);
    border-radius:999px;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    color:var(--teal);
}

/* ============================= */
/* Pricing Plans                 */
/* ============================= */

.plans-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    max-width:1200px;
    margin:0 auto;
}

.plan-card{
    position:relative;
    background:linear-gradient(160deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
    border:1px solid var(--border);
    border-radius:24px;
    padding:38px 32px;
    transition:transform .3s ease, box-shadow .35s ease, border-color .3s;
    overflow:hidden;
    backdrop-filter:blur(15px);
    display:flex;
    flex-direction:column;
}

.plan-glow{
    position:absolute;
    inset:0;
    background:radial-gradient(circle at 50% 0%,rgba(45,212,190,.16),transparent 60%);
    opacity:0;
    transition:opacity .35s;
    pointer-events:none;
}

.plan-card:hover .plan-glow{ opacity:1; }

.plan-card:hover{
    transform:translateY(-8px);
    box-shadow:0 24px 50px rgba(45,212,190,.25);
    border-color:rgba(45,212,190,.4);
}

.plan-card.featured{
    border-color:rgba(251,191,36,.45);
    background:linear-gradient(160deg,rgba(251,191,36,.08),rgba(255,255,255,.02));
}

.plan-card.featured:hover{
    box-shadow:0 24px 50px rgba(251,191,36,.3);
    border-color:rgba(251,191,36,.6);
}

.plan-ribbon{
    position:absolute;
    top:22px;
    right:-34px;
    transform:rotate(45deg);
    background:var(--amber);
    color:#070B17;
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
    padding:6px 40px;
    z-index:2;
}

.plan-head{ margin-bottom:28px; }

.plan-tier{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    color:var(--teal);
    text-transform:uppercase;
    margin-bottom:14px;
}

.plan-card.featured .plan-tier{ color:var(--amber); }

.plan-price{
    font-size:56px;
    font-weight:800;
    font-family:'Sora',sans-serif;
    line-height:1;
    margin-bottom:14px;
}

.plan-price .cur{ font-size:30px; opacity:.8; vertical-align:top; margin-right:2px; }
.plan-price .plus{ font-size:34px; opacity:.7; }

.plan-tagline{
    opacity:.75;
    line-height:1.6;
    font-size:15px;
}

.plan-features{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-bottom:32px;
    flex:1;
}

.plan-features li{
    display:flex;
    align-items:center;
    gap:12px;
    opacity:.9;
    font-size:15px;
}

.plan-features i{
    color:var(--teal);
    font-size:14px;
    width:22px;
    height:22px;
    border-radius:50%;
    background:rgba(45,212,190,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.plan-card.featured .plan-features i{ color:var(--amber); background:rgba(251,191,36,.15); }

.plan-btn{
    width:100%;
    justify-content:center;
}

.plans-note{
    text-align:center;
    opacity:.55;
    margin-top:30px;
    font-size:13px;
}

/* ============================= */
/* Add-ons                       */
/* ============================= */

.addons-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
    max-width:1200px;
    margin:0 auto;
}

.addon-card{
    background:linear-gradient(160deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
    border:1px solid var(--border);
    border-radius:22px;
    padding:32px;
    transition:transform .3s, box-shadow .35s, border-color .3s;
    position:relative;
    overflow:hidden;
    backdrop-filter:blur(15px);
    display:flex;
    flex-direction:column;
}

.addon-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(251,113,133,.22);
    border-color:rgba(251,113,133,.4);
}

.addon-icon{
    width:60px;
    height:60px;
    border-radius:16px;
    background:rgba(251,113,133,.15);
    border:1px solid rgba(251,113,133,.3);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    color:var(--coral);
    margin-bottom:22px;
}

.addon-card h3{
    font-size:21px;
    margin-bottom:12px;
}

.addon-card p{
    opacity:.75;
    line-height:1.7;
    font-size:15px;
    margin-bottom:24px;
    flex:1;
}

.addon-foot{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
}

.addon-tag{
    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--coral);
    background:rgba(251,113,133,.12);
    padding:6px 12px;
    border-radius:8px;
}

.addon-btn{
    padding:12px 20px;
    font-size:14px;
}

/* ============================= */
/* Work / Showcase               */
/* ============================= */

.work-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
    max-width:1200px;
    margin:0 auto;
}

.work-card{
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:20px;
    padding:28px;
    transition:.3s;
}

.work-card:hover{
    transform:translateY(-8px);
    border-color:rgba(45,212,190,.4);
}

.work-swatch{
    height:160px;
    border-radius:14px;
    margin-bottom:20px;
}

.work-swatch.s1{ background:linear-gradient(135deg,#2DD4BE,#0FB8A4); }
.work-swatch.s2{ background:linear-gradient(135deg,#FBBF24,#F59E0B); }
.work-swatch.s3{ background:linear-gradient(135deg,#FB7185,#E11D48); }

.work-card h3{ font-size:22px; margin-bottom:8px; }
.work-card p{ opacity:.75; margin-bottom:16px; font-size:15px; }

.work-tag{
    font-size:12px;
    font-weight:600;
    color:var(--teal);
    background:var(--accent-soft);
    padding:6px 12px;
    border-radius:8px;
}

/* ============================= */
/* Why Aurora Grid               */
/* ============================= */

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
    max-width:1200px;
    margin:0 auto;
}

.why-card{
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:20px;
    padding:30px;
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-8px);
    border-color:rgba(45,212,190,.4);
}

.why-card .icon{
    font-size:32px;
    margin-bottom:15px;
    display:block;
}

.why-card h3{ margin-bottom:10px; font-size:20px; }
.why-card p{ opacity:.75; line-height:1.6; font-size:15px; }

/* ============================= */
/* Stats / Counters              */
/* ============================= */

#stats{ padding-top:0; }

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:25px;
    text-align:center;
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:24px;
    padding:50px 30px;
    max-width:1200px;
    margin:0 auto;
}

.stat-number{
    font-size:52px;
    font-weight:800;
    font-family:'Sora',sans-serif;
    background:var(--accent-grad);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.stat-label{
    opacity:.7;
    margin-top:8px;
    font-size:15px;
}

/* ============================= */
/* FAQ                           */
/* ============================= */

.faq-list{
    max-width:850px;
    margin:0 auto;
}

.faq-item{
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:16px;
    margin-bottom:16px;
    overflow:hidden;
}

.faq-question{
    padding:22px 26px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-weight:600;
    font-size:17px;
}

.faq-question .plus{
    transition:.3s;
    font-size:22px;
    color:var(--teal);
}

.faq-item.open .plus{ transform:rotate(45deg); }

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease, padding .35s ease;
    padding:0 26px;
    opacity:.8;
    line-height:1.7;
}

.faq-item.open .faq-answer{ padding:0 26px 22px 26px; }

/* ============================= */
/* Contact Form                  */
/* ============================= */

.custom-form{
    max-width:640px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:16px 20px;
    border-radius:14px;
    border:1px solid var(--border);
    background:var(--surface);
    color:var(--text);
    font-size:16px;
    font-family:'Inter',sans-serif;
    outline:none;
    transition:.3s;
    resize:vertical;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:var(--teal);
    box-shadow:0 0 25px rgba(45,212,190,.3);
}

.custom-form .primary{
    justify-content:center;
    width:100%;
}

/* ============================= */
/* Footer                        */
/* ============================= */

footer{
    padding:70px 8%;
    text-align:center;
    border-top:1px solid var(--border);
}

footer h3{
    font-size:36px;
    margin-bottom:20px;
}

footer a{
    display:inline-block;
    margin-bottom:25px;
    text-decoration:none;
    color:#fff;
    background:#5865F2;
    padding:16px 30px;
    border-radius:12px;
    transition:.3s;
}

footer a:hover{
    transform:translateY(-4px);
    box-shadow:0 0 25px rgba(88,101,242,.7);
}

footer p{ opacity:.6; }

/* ============================= */
/* Cart Drawer                   */
/* ============================= */

.cart-overlay{
    position:fixed;
    inset:0;
    background:rgba(4,6,14,.6);
    z-index:1000;
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.cart-overlay.active{ opacity:1; visibility:visible; }

.cart-drawer{
    position:fixed;
    top:0;
    right:-420px;
    width:400px;
    max-width:90vw;
    height:100vh;
    background:#0D111F;
    border-left:1px solid var(--border);
    z-index:1001;
    display:flex;
    flex-direction:column;
    padding:30px;
    transition:right .4s ease;
}

.cart-drawer.active{ right:0; }

.cart-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.cart-header h3{ font-size:22px; }

.cart-header button{
    background:var(--surface-2);
    border:none;
    color:var(--text);
    width:36px;
    height:36px;
    border-radius:50%;
    cursor:pointer;
    font-size:18px;
}

.cart-items{
    flex:1;
    overflow-y:auto;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.cart-items .empty{
    opacity:.5;
    text-align:center;
    margin-top:40px;
}

.cart-item{
    display:flex;
    gap:14px;
    align-items:center;
    background:var(--surface);
    border-radius:14px;
    padding:14px;
}

.cart-item img{
    width:44px;
    height:44px;
    border-radius:10px;
    object-fit:cover;
}

.cart-item .info{ flex:1; }

.cart-item .name{ font-weight:600; font-size:14px; }
.cart-item .price{ color:var(--teal); font-size:13px; margin-top:2px; }

.cart-item .qty-controls{
    display:flex;
    align-items:center;
    gap:8px;
}

.cart-item .qty-controls button{
    width:26px;
    height:26px;
    border-radius:8px;
    border:none;
    background:var(--surface-2);
    color:var(--text);
    cursor:pointer;
}

.cart-item .remove{
    background:none;
    border:none;
    color:var(--coral);
    cursor:pointer;
    font-size:18px;
}

.cart-footer{
    border-top:1px solid var(--border);
    padding-top:20px;
    margin-top:20px;
}

.cart-total{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:16px;
}

.cart-total h4{
    font-size:26px;
    color:var(--teal);
}

#checkoutBtn{ width:100%; justify-content:center; }

/* ============================= */
/* Checkout Modal                */
/* ============================= */

.modal-overlay{
    position:fixed;
    inset:0;
    background:rgba(4,6,14,.75);
    backdrop-filter:blur(6px);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:1000;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    padding:20px;
}

.modal-overlay.active{ opacity:1; visibility:visible; }

.modal-box{
    background:#0D111F;
    border:1px solid var(--border);
    border-radius:24px;
    padding:40px;
    max-width:700px;
    width:100%;
    max-height:85vh;
    overflow-y:auto;
    position:relative;
    transform:translateY(20px);
    transition:.3s;
}

.modal-overlay.active .modal-box{ transform:translateY(0); }

.modal-close{
    position:absolute;
    top:20px;
    right:20px;
    background:var(--surface-2);
    border:none;
    color:var(--text);
    width:38px;
    height:38px;
    border-radius:50%;
    cursor:pointer;
    font-size:18px;
    transition:.3s;
}

.modal-close:hover{ background:var(--teal); color:#070B17; }

.checkout-box h3{ margin-bottom:20px; }

.checkout-list{
    list-style:none;
    margin:20px 0;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.checkout-list li{
    display:flex;
    justify-content:space-between;
    opacity:.85;
    padding-bottom:10px;
    border-bottom:1px solid rgba(255,255,255,.06);
    font-size:15px;
}

.checkout-total{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:20px 0;
}

.checkout-total h4{
    font-size:30px;
    color:var(--teal);
}

.checkout-note{
    margin-top:18px;
    opacity:.6;
    font-size:13px;
    text-align:center;
}

.checkout-success{
    text-align:center;
    padding:20px 0;
}

.checkout-success .icon{
    font-size:52px;
    display:block;
    margin-bottom:15px;
}

/* ============================= */
/* Responsive                    */
/* ============================= */

@media(max-width:1000px){

    nav{ padding:20px 30px; }

    nav ul{ display:none; }

    .hero{
        flex-direction:column;
        text-align:center;
        justify-content:center;
        gap:50px;
        padding-top:140px;
    }

    .hero h1{ font-size:48px; }

    .hero-orb{ width:260px; height:260px; }
    .orb-ring.r1{ width:260px; height:260px; }
    .orb-ring.r2{ width:195px; height:195px; }
    .orb-ring.r3{ width:130px; height:130px; }
    .orb-core{ width:80px; height:80px; font-size:40px; }

    .buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    h2{ font-size:36px; }
}