/* styles.css */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:#050507;
color:#fff;
overflow-x:hidden;
}

body::before{
content:"";
position:fixed;
inset:0;
background:
radial-gradient(circle at 15% 20%,rgba(0,255,255,.08),transparent 25%),
radial-gradient(circle at 85% 15%,rgba(255,0,120,.08),transparent 25%),
radial-gradient(circle at 50% 90%,rgba(255,180,0,.06),transparent 25%);
z-index:-1;
}

.container{
width:min(1280px,92%);
margin:auto;
}

/* navbar */

.navbar{
position:fixed;
top:0;
width:100%;
z-index:999;
background:rgba(10,10,15,.72);
backdrop-filter:blur(14px);
border-bottom:1px solid rgba(255,255,255,.06);
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    gap: 15px;
}

.brand{
display:flex;
align-items:center;
gap:12px;
}

.nav-logo{
width:46px;
height:46px;
object-fit:cover;
border-radius:12px;
box-shadow:0 0 20px rgba(0,255,255,.2);
}

.brand-text{
font-family:'Orbitron',sans-serif;
font-size:26px;
font-weight:900;
}

.brand-text span{
color:#00eaff;
}

/* Container to keep dot and text aligned */
.status-box {
    display: flex;
    align-items: center;
    justify-content: center; /* Center for mobile header */
    gap: 8px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap; /* Prevents text from breaking into two lines */
}

/* The Status Dot */
.open-dot {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0; /* Prevents the dot from squishing */
}

/* Text adjustments for mobile */
#status-text {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* Media Query for very small screens (iPhone SE, etc.) */
@media(max-width: 900px) {
    .nav-wrap {
        flex-direction: column; 
        gap: 10px;
        padding: 15px 0;
    }

    .brand-text {
        font-size: 18px; /* Optimized for long name */
    }

    .status-box {
        display: flex !important;
        order: 2; /* Positioned under name */
        transform: scale(0.85);
    }

    .nav-links {
        order: 3; /* Positioned at the bottom of the nav stack */
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .brand-collab {
        gap: 10px;
    }

    .collab-img {
        width: 120px; /* Smaller logos for mobile */
    }

    .collab-x {
        font-size: 22px;
    }

    .hero-right { order: -1; }
    .hero { padding: 140px 0 40px; }
}

/* --- Navigation & Collab Styles --- */
.nav-links {
    display: flex;
    align-items: center;
}

.nav-btn {
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 8px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 234, 255, 0.2);
    transition: 0.3s;
}

.nav-btn:hover {
    background: #00eaff;
    color: #050507;
    box-shadow: 0 0 15px rgba(0, 234, 255, 0.4);
}

.brand-collab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    animation: float 4s ease-in-out infinite;
}

.collab-img {
    width: 170px;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 0 20px rgba(0, 234, 255, 0.2));
}

.collab-x {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* hero */

.hero{
padding:150px 0 70px;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.mini-badge{
display:inline-block;
padding:8px 14px;
border-radius:50px;
background:rgba(0,234,255,.08);
color:#00eaff;
font-weight:800;
font-size:13px;
margin-bottom:18px;
}

.hero h1{
font-family:'Orbitron',sans-serif;
font-size:clamp(38px,6vw,72px);
line-height:1.05;
margin-bottom:18px;
}

.hero h1 span{
background:linear-gradient(90deg,#00eaff,#4c87ff,#ff4ea3);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero p{
font-size:18px;
color:#b8bed0;
line-height:1.7;
margin-bottom:25px;
max-width:620px;
}

.hero-buttons{
display:flex;
gap:16px;
flex-wrap:wrap;
}

.hero-logo{
max-width:100%;
width:420px;
animation:float 4s ease-in-out infinite;
filter:drop-shadow(0 0 30px rgba(0,234,255,.18));
}

@keyframes float{
0%,100%{transform:translateY(0)}
50%{transform:translateY(-12px)}
}

/* buttons */

.btn{
padding:15px 24px;
border:none;
border-radius:14px;
font-weight:800;
cursor:pointer;
transition:.25s;
font-size:15px;
}

.btn:hover{
transform:translateY(-4px);
}

.primary{
background:linear-gradient(90deg,#00eaff,#00b8ff);
color:#00131a;
box-shadow:0 12px 28px rgba(0,234,255,.25);
}

.secondary{
background:rgba(255,255,255,.05);
color:#fff;
border:1px solid rgba(255,255,255,.08);
}

.full{
width:100%;
margin-top:18px;
}

/* sections */

.section{
padding:35px 0;
}

.title{
text-align:center;
font-family:'Orbitron',sans-serif;
font-size:clamp(28px,4vw,46px);
margin-bottom:10px;
}

.subtitle{
text-align:center;
color:#9da6bb;
margin-bottom:32px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:24px;
}

.two{
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
}

.card{
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.07);
padding:24px;
border-radius:24px;
backdrop-filter:blur(18px);
transition:.25s;
}

.card:hover{
transform:translateY(-6px);
border-color:rgba(0,234,255,.28);
}

.card h3{
font-size:26px;
margin-bottom:8px;
}

.desc{
color:#adb4c7;
line-height:1.8;
}

.price{
font-size:34px;
font-weight:900;
color:#00eaff;
margin-top:16px;
}

.featured{
border-color:rgba(255,85,85,.4);
}

.tag{
display:inline-block;
padding:6px 10px;
font-size:11px;
font-weight:900;
border-radius:50px;
background:#ff4545;
margin-bottom:12px;
}

.hot{
background:#ff007a;
}

.soon{
color:#fff;
}

/* footer */

.footer {
    margin-top: 80px;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .07);
    background: rgba(0, 0, 0, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.order-text {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.highlight {
    color: #00eaff;
}

.legal-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #aab0bf;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.dev-credit {
    font-size: 12px;
    opacity: 0.8;
}

.dev-credit a {
    color: #00eaff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.dev-credit a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 234, 255, 0.5);
}

/* responsive */

@media(max-width:900px){

.hero-grid{
grid-template-columns:1fr;
text-align:center;
}

.hero p{
margin:auto auto 25px;
}

.hero-buttons{
justify-content:center;
}

.hero-right{
order:-1;
}

.hero-logo{
width:260px;
}

.status-box{
display:none;
}
}

@media(max-width:600px){

.brand-text{
font-size:20px;
}

.nav-logo{
width:38px;
height:38px;
}

.btn{
width:100%;
}
}





/*Optimizer*/

/* Add this to handle links styled as buttons */
a.btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Ensure the Optimizer gear logo looks consistent */
.nav-logo {
    filter: drop-shadow(0 0 10px #00eaff);
}

/* Specific styling for the Optimizer description on hero */
.hero-left p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #aab0bf;
}

/* Make sure the "Back to Store" button stands out */
.nav-btn {
    border: 1px solid #00eaff;
    background: rgba(0, 234, 255, 0.05);
    padding: 6px 15px;
    border-radius: 8px;
    font-weight: bold;
    color: #fff;
    transition: 0.3s;
}

.nav-btn:hover {
    background: #00eaff;
    color: #000;
}
