/* ── Reset & base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg:        #080808;
    --card:      #141414;
    --border:    rgba(255,255,255,0.07);
    --lime:      #aaff60;
    --lime-dk:   #88dd44;
    --text:      #f0f0f0;
    --muted:     #888888;
    --subtle:    #444444;
    --blue:      #63b3ff;
    --font:      -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

html, body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

/* ── Nav ──────────────────────────────────────────────────────────────────── */
.osb-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 64px;
    background: rgba(8,8,8,0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

body.admin-bar .osb-nav,
body.osb-fullscreen-template.admin-bar .osb-nav { top: 32px; }

.osb-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}
.osb-nav-logo-img { height: 28px; width: auto; filter: brightness(0) invert(1); }
.osb-nav-wordmark { color: var(--text); font-weight: 700; }

.osb-nav-links { display: flex; align-items: center; gap: 4px; }

.osb-nav-link {
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.15s, background 0.15s;
    white-space: nowrap;
}
.osb-nav-link:hover { color: var(--text); background: rgba(255,255,255,0.06); }

.osb-nav-account {
    background: var(--lime);
    color: #0a0a0a !important;
    font-weight: 700;
    border-radius: 8px;
    padding: 7px 16px;
}
.osb-nav-account:hover { background: var(--lime-dk) !important; color: #0a0a0a !important; }

.osb-nav-cart { position: relative; }
.osb-cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--lime);
    color: #0a0a0a;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    margin-left: 4px;
}

/* ── Page shell ───────────────────────────────────────────────────────────── */
.osb-page-shell { min-height: 100vh; background: var(--bg); padding-top: 64px; }
body.admin-bar .osb-page-shell { padding-top: 96px; }

/* ── Video section ────────────────────────────────────────────────────────── */
.osb-video-section {
    padding: 0 24px 56px;
    max-width: 1100px;
    margin: 0 auto;
}
.osb-video-wrap {
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #000;
    overflow: hidden;
}
.osb-video-wrap video,
.osb-video-wrap iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.osb-hero {
    text-align: center;
    padding: 96px 24px 80px;
    max-width: 760px;
    margin: 0 auto;
}

.osb-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border-radius: 999px;
    border: 1px solid rgba(170,255,96,0.3);
    background: rgba(170,255,96,0.06);
    color: var(--lime);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.osb-hero-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--lime);
    animation: osbPulse 2s infinite;
}
@keyframes osbPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

.osb-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 20px;
}
.osb-hero h1 em {
    font-style: normal;
    color: var(--lime);
    display: block;
    font-size: clamp(1.6rem, 3.2vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-top: 4px;
}

.osb-hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* ── Products ─────────────────────────────────────────────────────────────── */
.osb-products {
    padding: 0 24px 100px;
    max-width: 1100px;
    margin: 0 auto;
}

.osb-products-label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--subtle);
    margin-bottom: 40px;
}

.osb-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.osb-product-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.osb-product-grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1100px) {
    .osb-product-grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
    .osb-product-grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
    .osb-product-grid,
    .osb-product-grid-3,
    .osb-product-grid-4 { grid-template-columns: 1fr; }
    .osb-hero { padding: 64px 24px 56px; }
    .osb-nav  { padding: 0 20px; }
}

/* ── Product card ─────────────────────────────────────────────────────────── */
.osb-product-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: border-color 0.2s;
}
.osb-product-card:hover { border-color: rgba(255,255,255,0.14); }
.osb-product-card.primary { border-color: rgba(170,255,96,0.2); }
.osb-product-card.primary:hover { border-color: rgba(170,255,96,0.4); }

.osb-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }

.osb-card-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.osb-card-icon.lime   { background: rgba(170,255,96,0.12); }
.osb-card-icon.blue   { background: rgba(99,179,255,0.1); }
.osb-card-icon.purple { background: rgba(180,120,255,0.1); }

.osb-card-status {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    flex-shrink: 0;
}
.osb-card-status.live {
    background: rgba(170,255,96,0.1);
    color: var(--lime);
    border: 1px solid rgba(170,255,96,0.2);
}
.osb-card-status.soon {
    background: rgba(180,120,255,0.08);
    color: #b478ff;
    border: 1px solid rgba(180,120,255,0.2);
}

.osb-card-body { flex: 1; }

.osb-card-name {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.osb-card-tagline {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.osb-card-features { display: flex; flex-direction: column; gap: 10px; }

.osb-card-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: #ccc;
}

.osb-feature-check {
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
}
.osb-feature-check.lime   { background: rgba(170,255,96,0.15); color: var(--lime); }
.osb-feature-check.blue   { background: rgba(99,179,255,0.12); color: var(--blue); }
.osb-feature-check.purple { background: rgba(180,120,255,0.12); color: #b478ff; }

.osb-card-cta {
    display: block;
    text-align: center;
    padding: 13px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity 0.15s, background 0.15s, border-color 0.15s;
}
.osb-card-cta.lime { background: var(--lime); color: #0a0a0a; }
.osb-card-cta.lime:hover { background: var(--lime-dk); }
.osb-card-cta.outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.15);
}
.osb-card-cta.outline:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.25); }

.osb-card-cta.lime.coming-soon {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.osb-footer {
    border-top: 1px solid var(--border);
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.osb-footer-copy { font-size: 0.8rem; color: var(--subtle); }
.osb-footer-links { display: flex; gap: 20px; }
.osb-footer-links a { font-size: 0.8rem; color: var(--subtle); transition: color 0.15s; }
.osb-footer-links a:hover { color: var(--muted); }
