:root{
    --bg:#020617;
    --bg-soft:#020617;
    --card:#020617;
    --card-soft:#0b1120;
    --border:#1f2937;
    --text:#e5e7eb;
    --sub:#9ca3af;
    --accent:#3b82f6;
    --accent-soft:rgba(59,130,246,0.12);
    --gold:#d4af37;
}

*{box-sizing:border-box;}

body{
    margin:0;
    background:var(--bg);
    color:var(--text);
    font-family:-apple-system,system-ui,"SF Pro Text",sans-serif;
}

/* Top bar */
.om-topbar{
    position:sticky;
    top:0;
    z-index:40;
    backdrop-filter:blur(14px);
    background:linear-gradient(to bottom,rgba(15,23,42,0.95),rgba(15,23,42,0.80));
    border-bottom:1px solid rgba(15,23,42,1);
}
.om-topbar-inner{
    max-width:1080px;
    margin:0 auto;
    padding:10px 14px;
    display:flex;
    align-items:center;
    gap:10px;
}
.om-logo{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:var(--text);
}
.om-logo-mark{
    width:32px;
    height:32px;
    border-radius:10px;
    display:grid;
    place-items:center;
    background:radial-gradient(circle at 20% 0%,#facc15,#a16207);
    box-shadow:0 0 0 3px rgba(250,204,21,0.3);
}
.om-logo-text{
    display:flex;
    flex-direction:column;
    font-size:11px;
}
.om-logo-text strong{
    font-size:14px;
}
.om-logo-text span{
    color:var(--sub);
}

/* Nav */
.om-nav{
    margin-left:14px;
    display:flex;
    gap:12px;
    font-size:13px;
}
.om-nav a{
    color:var(--sub);
    text-decoration:none;
    padding:4px 6px;
    border-radius:999px;
}
.om-nav a:hover{
    background:rgba(15,23,42,0.9);
    color:#e5e7eb;
}

.om-nav-actions{
    margin-left:auto;
    display:flex;
    align-items:center;
    gap:8px;
}
.om-link{
    color:var(--sub);
    font-size:13px;
    text-decoration:none;
}
.om-link:hover{text-decoration:underline;}
.om-btn{
    padding:8px 14px;
    border-radius:999px;
    border:0;
    background:var(--accent);
    color:#0b1120;
    font-size:13px;
    font-weight:600;
    text-decoration:none;
}
.om-btn:hover{
    filter:brightness(1.1);
}

/* Mobile nav */
.om-nav-toggle{
    display:none;
    margin-left:6px;
    border:0;
    background:transparent;
    color:var(--text);
    font-size:18px;
}
@media (max-width:720px){
    .om-nav{
        display:none;
    }
    .om-nav-actions{
        display:none;
    }
    .om-nav-toggle{
        display:block;
    }
    body.om-nav-open .om-nav,
    body.om-nav-open .om-nav-actions{
        display:flex;
        flex-direction:column;
        position:absolute;
        left:0;
        right:0;
        top:52px;
        padding:10px 14px 14px;
        background:#020617;
        border-bottom:1px solid var(--border);
    }
    body.om-nav-open .om-nav{
        order:1;
    }
    body.om-nav-open .om-nav-actions{
        order:2;
    }
}

/* Main container */
.om-main{
    max-width:1080px;
    margin:0 auto;
    padding:22px 14px 40px;
}

/* Hero */
.om-hero{
    display:grid;
    grid-template-columns:minmax(0,2fr) minmax(0,1.6fr);
    gap:20px;
    align-items:center;
    margin-bottom:26px;
}
@media (max-width:840px){
    .om-hero{
        grid-template-columns:1fr;
    }
}
.om-hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:4px 9px 4px 4px;
    border-radius:999px;
    border:1px solid rgba(148,163,184,0.4);
    background:rgba(15,23,42,0.95);
    font-size:11px;
    color:var(--sub);
    margin-bottom:10px;
}
.om-hero-badge span{
    padding:3px 7px;
    border-radius:999px;
    background:rgba(34,197,94,0.15);
    color:#bbf7d0;
}
.om-hero-title{
    font-size:32px;
    line-height:1.1;
    margin-bottom:10px;
}
.om-hero-sub{
    color:var(--sub);
    font-size:14px;
    margin-bottom:16px;
}
.om-hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:14px;
}
.om-hero-note{
    font-size:12px;
    color:var(--sub);
}
.om-hero-card{
    background:radial-gradient(circle at 0 0,rgba(56,189,248,0.16),rgba(15,23,42,1));
    border-radius:18px;
    border:1px solid rgba(15,23,42,1);
    padding:14px 14px 18px;
    box-shadow:0 28px 60px rgba(15,23,42,1);
    font-size:13px;
}
.om-hero-card h3{
    margin:0 0 6px;
    font-size:15px;
}
.om-hero-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
    margin-top:8px;
}
.om-kpi{
    padding:8px;
    border-radius:10px;
    background:rgba(15,23,42,0.9);
    border:1px solid rgba(15,23,42,1);
}
.om-kpi-label{
    font-size:11px;
    color:var(--sub);
}
.om-kpi-value{
    font-size:14px;
    font-weight:600;
}

/* Section */
.om-section{
    margin-top:26px;
}
.om-section-title{
    font-size:18px;
    margin-bottom:6px;
}
.om-section-sub{
    font-size:13px;
    color:var(--sub);
    margin-bottom:12px;
}

/* Cards */
.om-grid-3{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:14px;
}
@media (max-width:900px){
    .om-grid-3{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width:640px){
    .om-grid-3{grid-template-columns:1fr;}
}
.om-card{
    background:var(--card-soft);
    border-radius:14px;
    padding:14px;
    border:1px solid var(--border);
}
.om-card h3{
    margin:0 0 6px;
    font-size:15px;
}
.om-card p{
    margin:0;
    font-size:13px;
    color:var(--sub);
}

/* Pricing */
.om-pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:14px;
}
@media (max-width:900px){
    .om-pricing-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width:640px){
    .om-pricing-grid{grid-template-columns:1fr;}
}
.om-price-card{
    background:#020617;
    border-radius:16px;
    border:1px solid var(--border);
    padding:16px;
}
.om-price-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:8px;
    margin-bottom:10px;
}
.om-price-name{
    font-size:15px;
    font-weight:600;
}
.om-price-tag{
    font-size:11px;
    color:var(--sub);
}
.om-price-value{
    font-size:20px;
    font-weight:700;
}
.om-price-period{
    font-size:11px;
    color:var(--sub);
}
.om-price-ul{
    margin:8px 0 0;
    padding-left:18px;
    font-size:12px;
    color:var(--sub);
}
.om-price-ul li{
    margin-bottom:2px;
}

/* Footer */
.om-footer{
    border-top:1px solid var(--border);
    padding:18px 14px 24px;
    background:#020617;
}
.om-footer-inner{
    max-width:1080px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:12px;
    font-size:12px;
}
.om-footer-brand{
    display:flex;
    align-items:center;
    gap:10px;
}
.om-logo-mini{
    width:26px;
    height:26px;
    border-radius:8px;
    display:grid;
    place-items:center;
    background:radial-gradient(circle at 20% 0%,#facc15,#a16207);
}
.om-footer-brand span{
    color:var(--sub);
}
.om-footer-links{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}
.om-footer-links a{
    display:block;
    color:var(--sub);
    text-decoration:none;
    margin-bottom:2px;
}
.om-footer-links a:hover{
    color:var(--text);
}
.om-footer-meta{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    color:var(--sub);
}