/* ---------- SudoByte Landing (premium dark/glass/animated) ---------- */

:root {
    --sb-bg0: #060A18;
    --sb-bg1: #070D22;
    --sb-ink: #EAF0FF;
    --sb-muted: rgba(234,240,255,.72);
    --sb-dim: rgba(234,240,255,.55);
    --sb-surface: rgba(16, 24, 48, .55);
    --sb-surface2: rgba(13, 20, 40, .60);
    --sb-border: rgba(255,255,255,.12);
    --sb-primary1: #5B8CFF;
    --sb-primary2: #35D0FF;
    --sb-accent: #A78BFA;
    --sb-radius: 22px;
    --sb-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.landing {
    min-height: 100vh;
    color: var(--sb-ink);
    background: radial-gradient(1200px 700px at 20% 20%, rgba(91,140,255,.22), transparent 60%), radial-gradient(900px 600px at 85% 25%, rgba(53,208,255,.18), transparent 55%), radial-gradient(900px 700px at 55% 95%, rgba(167,139,250,.14), transparent 60%), linear-gradient(180deg, var(--sb-bg0), var(--sb-bg1));
    position: relative;
    overflow: hidden;
}

    /* subtle animated noise/grid */
    .landing::before {
        content: "";
        position: absolute;
        inset: -2px;
        background: radial-gradient(circle at 10% 15%, rgba(255,255,255,.06), transparent 40%), radial-gradient(circle at 80% 20%, rgba(255,255,255,.05), transparent 45%), repeating-linear-gradient(90deg, rgba(255,255,255,.04), rgba(255,255,255,.04) 1px, transparent 1px, transparent 16px), repeating-linear-gradient(0deg, rgba(255,255,255,.03), rgba(255,255,255,.03) 1px, transparent 1px, transparent 16px);
        opacity: .18;
        pointer-events: none;
        mask-image: radial-gradient(closest-side, rgba(0,0,0,1), rgba(0,0,0,.25));
    }

    /* floating orbs */
    .landing::after {
        content: "";
        position: absolute;
        width: 520px;
        height: 520px;
        left: -140px;
        top: 240px;
        background: radial-gradient(circle at 30% 30%, rgba(91,140,255,.45), transparent 60%), radial-gradient(circle at 70% 60%, rgba(53,208,255,.25), transparent 55%);
        filter: blur(22px);
        opacity: .55;
        animation: floaty 10s ease-in-out infinite;
        pointer-events: none;
    }

@keyframes floaty {
    0%,100% {
        transform: translate3d(0,0,0);
    }

    50% {
        transform: translate3d(40px,-24px,0);
    }
}

/* spacing */
.section-pad {
    padding: 72px 0;
}

@media (max-width: 992px) {
    .section-pad {
        padding: 54px 0;
    }
}

/* topbar */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(6,10,24,.55);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand-logo {
    height: 70px;
    width: auto; /* don't stretch/crop */
    object-fit: contain; /* show the whole logo */
    border-radius: 0; /* no rounded corners */
    box-shadow: none; /* no shadow */
    background: transparent; /* keep transparency */
    display: block;
}

.brand-name {
    font-weight: 700;
    letter-spacing: .2px;
}

.brand-sub {
    font-size: 12px;
    color: var(--sb-dim);
    margin-top: -2px;
}

.navlinks .navlink {
    color: var(--sb-dim);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid transparent;
}

    .navlinks .navlink.active,
    .navlinks .navlink:hover {
        color: var(--sb-ink);
        border-color: rgba(255,255,255,.14);
        background: rgba(255,255,255,.04);
    }

/* buttons */
.landing .btn {
    border-radius: 999px;
    padding: .7rem 1.05rem;
    border: 1px solid transparent;
}

.landing .btn-ghost {
    color: var(--sb-ink);
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.12);
}

    .landing .btn-ghost:hover {
        background: rgba(255,255,255,.10);
        border-color: rgba(255,255,255,.18);
    }

.landing .btn-primary {
    border: 0;
    background: linear-gradient(90deg, var(--sb-primary1), var(--sb-primary2));
    box-shadow: 0 16px 40px rgba(53,208,255,.14);
}

.btn-soft-outline {
    border-color: rgba(255,255,255,.20) !important;
    color: var(--sb-ink) !important;
}

.btn-glow {
    position: relative;
    isolation: isolate;
}

    .btn-glow::after {
        content: "";
        position: absolute;
        inset: -2px;
        border-radius: 999px;
        background: linear-gradient(90deg, rgba(91,140,255,.55), rgba(53,208,255,.55));
        filter: blur(10px);
        opacity: .35;
        z-index: -1;
        transition: opacity .25s ease;
    }

    .btn-glow:hover::after {
        opacity: .55;
    }

/* hero */
.hero {
    position: relative;
}

.hero-content h1 {
    font-size: clamp(2.3rem, 4.2vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 14px 0 14px;
}

.hero-subtitle {
    color: var(--sb-muted);
    font-size: 1.05rem;
    max-width: 52ch;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem .75rem;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    color: var(--sb-ink);
    font-size: .9rem;
}

.grad-text {
    background: linear-gradient(90deg, var(--sb-primary1), var(--sb-primary2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-metadata {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 12px;
    margin-top: 22px;
}

    .hero-metadata > div {
        padding: 14px 14px;
        border-radius: 16px;
        border: 1px solid rgba(255,255,255,.10);
        background: rgba(255,255,255,.04);
    }

    .hero-metadata strong {
        display: block;
        font-size: .95rem;
    }

    .hero-metadata span {
        display: block;
        margin-top: 4px;
        color: var(--sb-dim);
        font-size: .85rem;
    }

@media (max-width: 992px) {
    .hero-metadata {
        grid-template-columns: 1fr;
    }
}

/* stats + trust */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 12px;
    margin-top: 18px;
}

.stat {
    padding: 14px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
}

.stat-num {
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -.01em;
}

.stat-label {
    color: var(--sb-dim);
    font-size: .85rem;
    margin-top: 2px;
}

@media (max-width: 576px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

.trust {
    margin-top: 18px;
}

.trust-label {
    color: var(--sb-dim);
    font-size: .9rem;
    margin-bottom: 10px;
}

.trust-marquee {
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    border-radius: 999px;
    padding: 10px 0;
    overflow: hidden;
}

.trust-track {
    display: flex;
    gap: 22px;
    white-space: nowrap;
    padding-left: 18px;
    animation: marquee 18s linear infinite;
}

    .trust-track span {
        color: rgba(234,240,255,.75);
        font-size: .9rem;
        padding: 6px 12px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,.10);
        background: rgba(255,255,255,.03);
    }

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* hero card */
.hero-card {
    border-radius: var(--sb-radius);
    background: var(--sb-surface);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--sb-shadow);
    backdrop-filter: blur(16px);
    padding: 18px;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

    .hero-card::before {
        content: "";
        position: absolute;
        inset: -1px;
        background: radial-gradient(420px 220px at 30% 0%, rgba(91,140,255,.22), transparent 60%), radial-gradient(420px 240px at 110% 30%, rgba(53,208,255,.16), transparent 55%);
        opacity: .9;
        pointer-events: none;
    }

.hero-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: relative;
}

.hero-card h2 {
    font-size: 1.1rem;
}

.chip {
    font-size: .75rem;
    padding: .35rem .6rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
    color: rgba(234,240,255,.85);
}

.text-mutedish {
    color: var(--sb-dim);
}

.stack-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.stack-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(10,16,34,.35);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

    .stack-item:hover {
        transform: translateY(-2px);
        border-color: rgba(255,255,255,.18);
        background: rgba(255,255,255,.05);
    }

.ico {
    width: 26px;
    text-align: center;
    opacity: .95;
}

.stack-title {
    font-weight: 700;
}

.stack-sub {
    color: var(--sb-dim);
    font-size: .86rem;
    margin-top: 1px;
}

.pill {
    margin-left: auto;
    font-size: .75rem;
    padding: .25rem .55rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
    color: rgba(234,240,255,.82);
}

.preview-mini {
    border-top: 1px solid rgba(255,255,255,.10);
    padding-top: 12px;
    position: relative;
}

.mini-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(234,240,255,.80);
    font-size: .88rem;
    padding: 6px 0;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 99px;
    box-shadow: 0 0 0 4px rgba(255,255,255,.04);
}

    .dot.ok {
        background: #55f7c4;
    }

    .dot.warn {
        background: #ffd166;
    }

.hero-card-footnote {
    color: var(--sb-dim);
    font-size: .9rem;
}

/* section styling */
.section-head {
    margin-bottom: 18px;
}

    .section-head h2 {
        font-size: clamp(1.6rem, 2.2vw, 2.2rem);
        letter-spacing: -0.01em;
        margin: 0 0 8px;
    }

.lead-muted {
    color: var(--sb-muted);
    max-width: 70ch;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

/* cards */
.feature-card, .step-card, .use-card, .price-card {
    border-radius: var(--sb-radius);
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    padding: 18px;
    box-shadow: 0 14px 40px rgba(0,0,0,.25);
}

    .feature-card h3, .step-card h3, .use-card h3, .price-card h3 {
        font-size: 1.05rem;
        margin: 10px 0 8px;
    }

    .feature-card p, .step-card p, .use-card p {
        color: var(--sb-dim);
        margin: 0;
    }

.feature-ico {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
    box-shadow: 0 10px 30px rgba(91,140,255,.10);
}

.step-num {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(91,140,255,.25), rgba(53,208,255,.18));
    border: 1px solid rgba(255,255,255,.14);
    font-weight: 800;
}

/* use case tags */
.mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

    .mini-tags span {
        font-size: .75rem;
        padding: .3rem .55rem;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,.12);
        color: rgba(234,240,255,.80);
        background: rgba(255,255,255,.03);
    }

/* pricing */
.price-top {
    margin-bottom: 12px;
}

.price {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -.02em;
}

.price-sub {
    color: var(--sb-dim);
    font-size: .9rem;
    margin-top: 2px;
}

.price-list {
    list-style: none;
    padding-left: 0;
    margin: 12px 0 16px;
    color: rgba(234,240,255,.80);
}

    .price-list li {
        padding: 6px 0;
        border-bottom: 1px solid rgba(255,255,255,.06);
    }

        .price-list li:last-child {
            border-bottom: 0;
        }

.price-card.featured {
    position: relative;
    background: rgba(16, 24, 48, .62);
    border-color: rgba(91,140,255,.22);
    box-shadow: 0 24px 70px rgba(53,208,255,.14);
}

.badge-feature {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: .75rem;
    padding: .35rem .6rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(91,140,255,.35), rgba(53,208,255,.25));
    border: 1px solid rgba(255,255,255,.14);
}

/* faq */
.faq {
    display: grid;
    gap: 10px;
}

.faq-item {
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    padding: 12px 14px;
}

    .faq-item summary {
        cursor: pointer;
        font-weight: 700;
    }

.faq-body {
    margin-top: 10px;
    color: var(--sb-dim);
}

/* CTA */
.cta-card {
    border-radius: calc(var(--sb-radius) + 6px);
    border: 1px solid rgba(255,255,255,.12);
    background: radial-gradient(900px 400px at 20% 20%, rgba(91,140,255,.18), transparent 60%), radial-gradient(700px 420px at 90% 40%, rgba(53,208,255,.14), transparent 55%), rgba(255,255,255,.03);
    padding: 22px;
    box-shadow: var(--sb-shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .cta-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* footer */
.footer {
    border-top: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.10);
}

.footer-link {
    color: rgba(234,240,255,.72);
    text-decoration: none;
}

    .footer-link:hover {
        color: rgba(234,240,255,.95);
    }

/* animations (respect reduced motion) */
.anim {
    animation: fadeUp .8s cubic-bezier(.2,.9,.2,1) both;
    animation-delay: var(--d, 0s);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translate3d(0,12px,0);
    }

    to {
        opacity: 1;
        transform: translate3d(0,0,0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .anim, .landing::after, .trust-track {
        animation: none !important;
    }
}

/* Make background apply to the whole app */
html, body {
    height: 100%;
}

body {
    margin: 0;
    background: #060A18;
}

/* Shell uses the same �landing� background everywhere */
.sb-shell {
    min-height: 100vh;
    color: var(--sb-ink);
    background: radial-gradient(1200px 700px at 20% 20%, rgba(91,140,255,.22), transparent 60%), radial-gradient(900px 600px at 85% 25%, rgba(53,208,255,.18), transparent 55%), radial-gradient(900px 700px at 55% 95%, rgba(167,139,250,.14), transparent 60%), linear-gradient(180deg, var(--sb-bg0), var(--sb-bg1));
    overflow: hidden;
}

/* Topbar inner layout */
.sb-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
    position: relative;
}

.sb-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--sb-ink);
}

.brand-name {
    font-weight: 700;
}

.brand-sub {
    font-size: 12px;
    color: var(--sb-dim);
    margin-top: -2px;
}

/* main spacing so content isn't glued under sticky header */
.sb-main {
    padding: 8px 0 0;
}

/* Mobile nav toggle */
.sb-nav-toggle {
    display: none;
}

.sb-burger {
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    cursor: pointer;
}

    .sb-burger span {
        display: block;
        width: 18px;
        height: 2px;
        background: rgba(234,240,255,.85);
        margin: 2px 0;
        border-radius: 10px;
    }

/* Mobile panel */
.sb-mobile-panel {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(8, 12, 26, .75);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 60px rgba(0,0,0,.45);
    padding: 12px;
}

.sb-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sb-mobile-link {
    display: block;
    padding: 10px 12px;
    border-radius: 14px;
    text-decoration: none;
    color: rgba(234,240,255,.82);
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
}

    .sb-mobile-link.active, .sb-mobile-link:hover {
        color: var(--sb-ink);
        border-color: rgba(255,255,255,.18);
        background: rgba(255,255,255,.06);
    }

.sb-mobile-cta {
    margin-top: 10px;
}

@media (max-width: 767.98px) {
    .sb-burger {
        display: flex;
    }

    .sb-nav-toggle:checked ~ .sb-mobile-panel {
        display: block;
    }
}

/* Optional: side nav styling if you keep NavMenu */
.sb-side-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sb-side-link {
    padding: 10px 12px;
    border-radius: 14px;
    text-decoration: none;
    color: rgba(234,240,255,.78);
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
}

.sb-side-link.active, .sb-side-link:hover {
    color: var(--sb-ink);
    border-color: rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
}

/* --- State pages helpers (Error / NotFound) --- */
.sb-state-num {
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: .9;
    font-size: clamp(4.5rem, 10vw, 8rem);
}

.sb-code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: .85rem;
    padding: .18rem .5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
    color: rgba(234,240,255,.86);
}

/* --- Contact form fields (match existing glass style) --- */
.sb-label{
    display:block;
    margin: 8px 0 6px;
    font-size:.85rem;
    color: var(--sb-dim);
}

.sb-input,
.sb-textarea{
    width:100%;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    color: var(--sb-ink);
    padding: .7rem .9rem;
    outline: none;
}

.sb-textarea{
    min-height: 150px;
    resize: vertical;
}

.sb-input:focus,
.sb-textarea:focus{
    border-color: rgba(91,140,255,.45);
    box-shadow: 0 0 0 4px rgba(91,140,255,.14);
}

.sb-validation{
    display:block;
    margin-top: 6px;
    font-size: .85rem;
    color: #ffd166;
}

/* --- About page layout helpers --- */
.about-hero{
    max-width: 920px;
    margin: 0 auto;
}

.about-rail{
    position: sticky;
    top: 92px; /* tweak if your header is taller */
}

.about-rail-links{
    display:flex;
    flex-direction:column;
    gap: .45rem;
}

.about-link{
    display:block;
    padding: .65rem .75rem;
    border-radius: 14px;
    text-decoration:none;
    color: rgba(234,240,255,.86);
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
}
.about-link:hover{
    border-color: rgba(91,140,255,.35);
    background: rgba(91,140,255,.08);
}

/* Timeline */
.sb-timeline{
    position: relative;
    margin-top: 1rem;
    padding-left: 1.25rem;
}
.sb-timeline:before{
    content:"";
    position:absolute;
    left:.35rem;
    top:.25rem;
    bottom:.25rem;
    width:2px;
    background: rgba(255,255,255,.10);
    border-radius: 2px;
}

.sb-milestone{
    position: relative;
    padding: .9rem 1rem;
    margin: 0 0 .75rem;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
}
.sb-milestone:before{
    content:"";
    position:absolute;
    left:-1.05rem;
    top: 1.15rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(91,140,255,.55);
    box-shadow: 0 0 0 4px rgba(91,140,255,.14);
}

.sb-ms-head{
    display:flex;
    align-items:center;
    gap:.6rem;
    margin-bottom:.35rem;
}
.sb-ms-body{
    color: rgba(234,240,255,.78);
}

/* About: centered hero + actions */
.about-hero{
    text-align:center;
    max-width: 980px;
    margin: 0 auto;
}
.about-hero .hero-subtitle{
    margin-inline:auto;
    max-width: 860px;
}
.about-hero-actions{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:.6rem;
    margin-top: 1.1rem;
}

/* Hero metric chips (distinctive from landing stats/cards) */
.about-hero-metrics{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:.75rem;
    margin-top: 1.2rem;
}
.about-metric{
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    padding: .85rem 1rem;
    min-width: 220px;
    text-align:left;
}
.about-metric-k{
    font-weight: 800;
    color: rgba(234,240,255,.94);
    margin-bottom: .15rem;
}
.about-metric-v{
    color: rgba(234,240,255,.74);
    font-size: .95rem;
}

/* About: rail + article layout (CSS grid) */
.about-layout{
    display:grid;
    grid-template-columns: 320px minmax(0,1fr);
    gap: 24px;
    align-items:start;
}
@media (max-width: 992px){
    .about-layout{ grid-template-columns: 1fr; }
    .about-rail{ position: relative; top:auto; }
    .about-metric{ min-width: 0; width: 100%; max-width: 520px; }
}

/* Sticky rail */
.about-rail{
    position: sticky;
    top: 92px; /* adjust if your header is taller */
}
.about-rail-links{
    display:flex;
    flex-direction:column;
    gap: .45rem;
}
.about-link{
    display:block;
    padding: .65rem .75rem;
    border-radius: 14px;
    text-decoration:none;
    color: rgba(234,240,255,.86);
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
}
.about-link:hover{
    border-color: rgba(91,140,255,.35);
    background: rgba(91,140,255,.08);
}

/* Timeline badge that DOES NOT push right (avoid .pill { margin-left:auto; }) */
.sb-badge{
    font-size: .75rem;
    padding: .25rem .55rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
    color: rgba(234,240,255,.82);
}

.sb-ms-head{
    display:flex;
    align-items:center;
    gap:.6rem;
    justify-content:flex-start;
}
.sb-ms-body{
    color: rgba(234,240,255,.78);
}

/* Timeline spine + nodes */
.sb-timeline{
    position: relative;
    margin-top: 1rem;
    padding-left: 1.25rem;
}
.sb-timeline:before{
    content:"";
    position:absolute;
    left:.35rem;
    top:.25rem;
    bottom:.25rem;
    width:2px;
    background: rgba(255,255,255,.10);
    border-radius: 2px;
}
.sb-milestone{
    position: relative;
    padding: .9rem 1rem;
    margin: 0 0 .75rem;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
}
.sb-milestone:before{
    content:"";
    position:absolute;
    left:-1.05rem;
    top: 1.15rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(91,140,255,.55);
    box-shadow: 0 0 0 4px rgba(91,140,255,.14);
}

h1:focus {
    outline: none;
}

.brand-break {
    display: flex;
    justify-content: center;
    padding: 28px 0 10px; /* space above/below */
}

.brand-break-logo {
    width: min(380px, 70vw); /* responsive */
    height: auto;
    display: block;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.brand-signature {
    padding: 26px 0 6px;
}

.brand-signature-card {
    position: relative;
    border-radius: 24px;
    padding: 28px 24px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 22px 90px rgba(0,0,0,.42);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

    /* glow layers */
    .brand-signature-card::before {
        content: "";
        position: absolute;
        inset: -120px;
        background: radial-gradient(closest-side, rgba(91,140,255,.22), transparent 62%), radial-gradient(closest-side, rgba(120,255,233,.10), transparent 70%);
        opacity: .9;
        pointer-events: none;
        animation: brandGlow 6s ease-in-out infinite;
    }

@keyframes brandGlow {
    0%,100% {
        transform: translate3d(0,0,0) scale(1);
        opacity: .75;
    }

    50% {
        transform: translate3d(0,-6px,0) scale(1.03);
        opacity: .95;
    }
}

/* shimmer divider line */
.brand-divider {
    position: absolute;
    left: 6%;
    right: 6%;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), rgba(91,140,255,.28), rgba(255,255,255,.12), transparent);
    opacity: .45;
    overflow: hidden;
}

    .brand-divider::after {
        content: "";
        position: absolute;
        top: 0;
        left: -40%;
        width: 40%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
        animation: brandSweep 3.2s ease-in-out infinite;
    }

@keyframes brandSweep {
    0% {
        transform: translateX(0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    50% {
        transform: translateX(220%);
        opacity: .9;
    }

    100% {
        transform: translateX(260%);
        opacity: 0;
    }
}

.brand-signature-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 420px 1fr; /* logo column */
    gap: 24px;
    align-items: center;
}

/* Logo area */
.brand-signature-logo-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.brand-signature-logo {
    width: min(420px, 78vw); /* BIGGER */
    height: auto;
    display: block;
    background: transparent;
    border: 0;
    box-shadow: none;
    filter: drop-shadow(0 18px 40px rgba(0,0,0,.50));
    animation: floatLogo 5.2s ease-in-out infinite;
    transform-origin: 50% 60%;
}

@keyframes floatLogo {
    0%,100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

/* orbit ring behind logo */
.brand-orbit {
    position: absolute;
    width: 330px;
    height: 330px;
    border-radius: 999px;
    border: 1px solid rgba(91,140,255,.22);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
    background: radial-gradient(circle at 50% 50%, rgba(91,140,255,.10), transparent 60%);
    filter: blur(.1px);
    animation: orbit 12s linear infinite;
    opacity: .75;
}

@keyframes orbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Content */
.brand-signature-body {
    text-align: left;
}

.brand-kicker {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .85rem;
    color: rgba(255,255,255,.88);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.brand-title {
    margin: 12px 0 8px;
    font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2.05rem);
    line-height: 1.12;
}

.brand-tagline {
    margin: 0;
    color: rgba(255,255,255,.78);
    max-width: 62ch;
}

.brand-bullets {
    margin-top: 14px;
    display: grid;
    gap: 8px;
}

.brand-bullet {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255,255,255,.80);
}

.bullet-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    margin-top: 7px;
    flex: 0 0 auto;
    box-shadow: 0 0 0 3px rgba(255,255,255,.04);
}

    .bullet-dot.ok {
        background: rgba(120,255,233,.85);
    }

    .bullet-dot.warn {
        background: rgba(255,210,90,.9);
    }

.brand-chips {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.brand-chip {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .85rem;
    color: rgba(255,255,255,.86);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.brand-actions {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.brand-link {
    color: rgba(145,180,255,.95);
    text-decoration: none;
}

    .brand-link:hover {
        text-decoration: underline;
    }

/* Responsive: stack */
@media (max-width: 992px) {
    .brand-signature-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .brand-signature-body {
        text-align: center;
    }

    .brand-orbit {
        width: 280px;
        height: 280px;
    }

    .brand-divider {
        display: none;
    }
}
