:root{
    --bg:#06101f;
    --panel:#0d1b2f;
    --panel2:#10243d;
    --line:#1f3d63;
    --text:#eaf2ff;
    --muted:#91a7c5;
    --gold:#f4c95d;
    --blue:#5db7ff;
    --green:#1ee391;
    --red:#ff5c7a;
}
*{box-sizing:border-box;}
body{
    margin:0;
    background:radial-gradient(circle at top,#14345c 0,#07111f 46%,#030914 100%);
    color:var(--text);
    font-family:Arial,Helvetica,sans-serif;
}
a{color:inherit;text-decoration:none;}
.rocx-public-header{
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(7,17,31,.94);
    border-bottom:1px solid var(--line);
    backdrop-filter:blur(10px);
}
.rocx-nav{
    max-width:1280px;
    margin:0 auto;
    padding:16px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
}
.rocx-brand{
    font-size:24px;
    font-weight:900;
    letter-spacing:.10em;
}
.rocx-brand span{color:var(--gold);}
.rocx-links{
    display:flex;
    gap:18px;
    align-items:center;
    flex-wrap:wrap;
}
.rocx-links a{
    color:var(--muted);
    font-size:14px;
}
.rocx-links a:hover{color:var(--text);}
.rocx-btn{
    display:inline-block;
    border-radius:12px;
    padding:11px 15px;
    background:#0d6efd;
    color:#fff!important;
    font-weight:800;
    border:0;
}
.rocx-btn.secondary{
    background:#163457;
    border:1px solid var(--line);
}
.rocx-hero{
    max-width:1280px;
    margin:0 auto;
    padding:80px 20px 56px;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:28px;
    align-items:center;
}
.rocx-kicker{
    display:inline-block;
    color:var(--gold);
    background:rgba(244,201,93,.08);
    border:1px solid rgba(244,201,93,.25);
    border-radius:999px;
    padding:7px 11px;
    font-size:12px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:16px;
}
.rocx-hero h1{
    font-size:56px;
    line-height:1.02;
    margin:0 0 18px;
    letter-spacing:-.04em;
}
.rocx-hero p{
    color:var(--muted);
    font-size:18px;
    line-height:1.55;
    max-width:720px;
}
.rocx-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:24px;
}
.rocx-panel{
    background:linear-gradient(180deg,rgba(16,36,61,.95),rgba(8,22,41,.95));
    border:1px solid var(--line);
    border-radius:24px;
    padding:22px;
    box-shadow:0 30px 80px rgba(0,0,0,.35);
}
.rocx-market-card{
    background:#071326;
    border:1px solid var(--line);
    border-radius:16px;
    padding:15px;
    margin-bottom:12px;
    display:flex;
    justify-content:space-between;
    gap:14px;
}
.rocx-market-card strong{display:block;margin-bottom:4px;}
.rocx-market-card span{color:var(--muted);font-size:13px;}
.rocx-price{
    color:var(--green);
    font-weight:900;
    text-align:right;
}
.rocx-section{
    max-width:1280px;
    margin:0 auto;
    padding:34px 20px;
}
.rocx-section h2{
    font-size:34px;
    margin:0 0 12px;
}
.rocx-section-intro{
    color:var(--muted);
    max-width:820px;
    line-height:1.55;
    margin-bottom:22px;
}
.rocx-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}
.rocx-card{
    background:linear-gradient(180deg,var(--panel),#081629);
    border:1px solid var(--line);
    border-radius:18px;
    padding:20px;
    min-height:190px;
}
.rocx-card h3{
    margin:0 0 8px;
    color:var(--gold);
}
.rocx-card p{
    color:var(--muted);
    line-height:1.5;
}
.rocx-list{
    margin:14px 0 0;
    padding-left:18px;
    color:var(--muted);
    line-height:1.55;
}
.rocx-band{
    max-width:1280px;
    margin:32px auto;
    padding:28px 20px;
}
.rocx-band-inner{
    background:linear-gradient(135deg,#10243d,#07111f);
    border:1px solid var(--line);
    border-radius:24px;
    padding:28px;
    display:flex;
    justify-content:space-between;
    gap:18px;
    align-items:center;
}
.rocx-footer{
    margin-top:40px;
    border-top:1px solid var(--line);
    background:#030914;
}
.rocx-footer-inner{
    max-width:1280px;
    margin:0 auto;
    padding:26px 20px;
    display:flex;
    justify-content:space-between;
    gap:16px;
    color:var(--muted);
    font-size:13px;
}
.rocx-form{
    display:grid;
    gap:12px;
}
.rocx-form input,.rocx-form textarea,.rocx-form select{
    width:100%;
    border:1px solid var(--line);
    background:#061326;
    color:var(--text);
    border-radius:12px;
    padding:12px;
}
.rocx-form textarea{min-height:130px;}
.rocx-note{
    color:var(--muted);
    font-size:13px;
    line-height:1.45;
}
@media(max-width:960px){
    .rocx-hero,.rocx-grid{grid-template-columns:1fr;}
    .rocx-hero h1{font-size:40px;}
    .rocx-band-inner,.rocx-footer-inner,.rocx-nav{display:block;}
    .rocx-links{margin-top:14px;}
}
@media print{
    body{background:#fff;color:#111;}
    .rocx-public-header,.rocx-footer{display:none;}
    .rocx-panel,.rocx-card,.rocx-band-inner{box-shadow:none;background:#fff;color:#111;border:1px solid #ccc;}
    .rocx-card p,.rocx-section-intro,.rocx-note,.rocx-list,.rocx-market-card span{color:#555;}
}
