/* =====================================================
   SipLive SBC — Public Distribution Site
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy: #0b1220;
    --navy2: #0f172a;
    --navy3: #1e293b;
    --sky: #0ea5e9;
    --sky-dark: #0284c7;
    --sky-light: #38bdf8;
    --white: #f8fafc;
    --text: #e2e8f0;
    --muted: #94a3b8;
    --radius: 10px;
    --radius-lg: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--navy);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* =====================================================
   HEADER / NAV
   ===================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11,18,32,.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: .875rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.site-logo {
    text-decoration: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.site-logo-img {
    height: 36px;
    width: auto;
}
.logo-siplive {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -.02em;
}
.logo-sbc-tag {
    font-size: .7rem;
    font-weight: 700;
    background: var(--sky);
    color: #fff;
    padding: .15rem .4rem;
    border-radius: 4px;
    margin-left: .3rem;
    vertical-align: middle;
    letter-spacing: .08em;
}
.site-nav {
    display: flex;
    gap: 1.5rem;
    margin-left: auto;
}
.site-nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    transition: color .15s;
}
.site-nav a:hover,
.site-nav a.nav-active { color: var(--white); }
.btn-demo {
    background: var(--sky);
    color: #fff;
    text-decoration: none;
    padding: .45rem 1.1rem;
    border-radius: 6px;
    font-size: .875rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background .15s;
    flex-shrink: 0;
}
.btn-demo:hover { background: var(--sky-dark); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy2) 60%, #0c1a30 100%);
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14,165,233,.12) 0%, transparent 70%);
    pointer-events: none;
}
.hero-inner {
    max-width: 760px;
    margin: 0 auto;
}
.hero-eyebrow {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--sky);
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 1.25rem;
}
.hero-sub {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-hero-primary {
    display: inline-block;
    background: var(--sky);
    color: #fff;
    text-decoration: none;
    padding: .75rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: background .15s, transform .1s;
}
.btn-hero-primary:hover { background: var(--sky-dark); transform: translateY(-1px); }
.btn-hero-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text);
    text-decoration: none;
    padding: .75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,.15);
    transition: border-color .15s, background .15s;
}
.btn-hero-secondary:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.04); }

/* =====================================================
   SELLING POINTS
   ===================================================== */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 5rem 1.5rem; }
.section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
}
.selling-points { background: var(--navy2); }
.sp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.sp-card {
    background: var(--navy3);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius);
    padding: 1.75rem;
}
.sp-icon { font-size: 2rem; margin-bottom: .75rem; }
.sp-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.sp-card p { color: var(--muted); font-size: .9rem; line-height: 1.6; }

/* =====================================================
   HIGHLIGHTS
   ===================================================== */
.highlights { background: var(--navy); }
.hl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.hl-item {
    border-left: 3px solid var(--sky);
    padding-left: 1.25rem;
}
.hl-item h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.hl-item p { color: var(--muted); font-size: .875rem; line-height: 1.6; margin-bottom: .75rem; }
.hl-link { color: var(--sky); text-decoration: none; font-size: .875rem; font-weight: 600; }
.hl-link:hover { text-decoration: underline; }

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--navy2), var(--navy3));
    border-top: 1px solid rgba(255,255,255,.06);
}
.cta-section h2 { font-size: 2rem; font-weight: 700; color: var(--white); }

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
    background: var(--navy2);
    padding: 4rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.page-hero .section-inner { padding: 0; max-width: 800px; }
.page-hero h1 { font-size: 2.5rem; font-weight: 800; color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: var(--muted); font-size: 1.05rem; }

/* =====================================================
   FEATURES PAGE
   ===================================================== */
.features-page .section-inner { padding-top: 3rem; padding-bottom: 4rem; }
.features-layout { display: grid; grid-template-columns: 200px 1fr; gap: 3rem; align-items: start; }
@media (max-width: 768px) { .features-layout { grid-template-columns: 1fr; } .features-toc { display: none; } }
.features-toc {
    position: sticky;
    top: 5rem;
    background: var(--navy2);
    border-radius: var(--radius);
    padding: 1.25rem;
    border: 1px solid rgba(255,255,255,.07);
}
.features-toc h4 { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .75rem; }
.features-toc a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    font-size: .82rem;
    padding: .2rem 0;
    transition: color .15s;
}
.features-toc a:hover { color: var(--sky); }
.feature-section { margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.feature-section:last-child { border-bottom: none; }
.feature-section h2 { font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.feature-section ul { list-style: none; }
.feature-section ul li {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.6;
    padding: .3rem 0 .3rem 1.2rem;
    position: relative;
}
.feature-section ul li::before { content: '→'; position: absolute; left: 0; color: var(--sky); font-size: .75rem; top: .38rem; }
.features-tier-note {
    background: rgba(14,165,233,.07);
    border: 1px solid rgba(14,165,233,.2);
    border-radius: 8px;
    padding: .65rem 1rem;
    font-size: .82rem;
    color: var(--muted);
    margin-bottom: 2rem;
}
.features-tier-note a { color: var(--sky); text-decoration: none; }
.features-tier-note a:hover { text-decoration: underline; }
.features-pro-badge {
    display: inline-block;
    background: rgba(14,165,233,.15);
    color: var(--sky);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .06em;
    padding: .1rem .4rem;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: .35rem;
    white-space: nowrap;
}
.feature-section h2 .features-pro-badge { font-size: .7rem; }

/* =====================================================
   DEMO PAGE
   ===================================================== */
.demo-page .section-inner { padding-top: 3rem; padding-bottom: 4rem; }
.demo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
@media (max-width: 768px) { .demo-grid { grid-template-columns: 1fr; } }
.demo-cred-card {
    background: var(--navy3);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.demo-cred-card h2 { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 1.5rem; }
.cred-row { display: flex; gap: 1rem; align-items: center; padding: .5rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.cred-row:last-of-type { border-bottom: none; }
.cred-label { font-size: .8rem; color: var(--muted); width: 70px; flex-shrink: 0; }
.cred-value { font-size: .9rem; color: var(--white); }
.demo-note { margin-top: 1.5rem; }
.demo-note h3 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.demo-note ul { list-style: none; }
.demo-note ul li { color: var(--muted); font-size: .875rem; padding: .25rem 0 .25rem 1.25rem; position: relative; }
.demo-note ul li::before { content: '•'; position: absolute; left: 0; color: var(--sky); }
.screenshot-gallery { display: flex; flex-direction: column; gap: 1rem; }
.screenshot-placeholder {
    background: var(--navy3);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: .85rem;
}

/* =====================================================
   PRICING PAGE
   ===================================================== */
.pricing-page .section-inner { padding-top: 3rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; align-items: start; }
.pricing-card {
    background: var(--navy2);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    position: relative;
}
.pricing-card.pricing-featured {
    border-color: var(--sky);
    background: linear-gradient(160deg, #0c1e30, var(--navy2));
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sky);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: .2rem .75rem;
    border-radius: 20px;
    white-space: nowrap;
}
.pricing-tier { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sky); margin-bottom: .5rem; }
.pricing-price { font-size: 2.25rem; font-weight: 800; color: var(--white); }
.pricing-sub { font-size: .8rem; color: var(--muted); margin-bottom: 1.5rem; }
.pricing-features { list-style: none; margin-bottom: 2rem; flex: 1; }
.pricing-features li { color: var(--muted); font-size: .875rem; padding: .4rem 0 .4rem 1.4rem; position: relative; border-bottom: 1px solid rgba(255,255,255,.05); }
.pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--sky); font-weight: 700; }
.pricing-features small { color: #64748b; font-size: .77rem; }
.pricing-note { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.06); }
.pricing-note a { color: var(--sky); text-decoration: none; }

/* =====================================================
   COMPARISON TABLE
   ===================================================== */
.compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 0;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.compare-feature-col { width: auto; }
.compare-tier-col {
    width: 200px;
    text-align: center;
    vertical-align: top;
    padding: 1.75rem 1.25rem 1.25rem;
    background: var(--navy2);
    border-left: 1px solid rgba(255,255,255,.08);
}
.compare-tier-col.compare-tier-featured {
    background: linear-gradient(180deg, #0c1e30, var(--navy2));
    border-left: 1px solid var(--sky);
    border-right: 1px solid var(--sky);
    position: relative;
}
.compare-badge {
    display: inline-block;
    background: var(--sky);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: .18rem .65rem;
    border-radius: 20px;
    margin-bottom: .6rem;
    letter-spacing: .04em;
}
.compare-tier-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: .35rem;
}
.compare-tier-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}
.compare-tier-sub {
    font-size: .75rem;
    color: var(--muted);
    margin-bottom: 1.1rem;
}
.compare-cta {
    display: block;
    text-align: center;
    font-size: .82rem;
    padding: .5rem .9rem;
}
.compare-table tbody tr td {
    padding: .6rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
    font-size: .875rem;
    color: var(--muted);
    vertical-align: middle;
}
.compare-table tbody tr td:first-child {
    color: var(--text);
}
.compare-table tbody tr td:nth-child(2),
.compare-table tbody tr td:nth-child(3) {
    text-align: center;
    border-left: 1px solid rgba(255,255,255,.08);
}
.compare-table tbody tr td.compare-featured-col {
    border-left: 1px solid var(--sky);
    border-right: 1px solid var(--sky);
    background: rgba(14,165,233,.03);
}
.compare-table tbody tr:last-child td.compare-featured-col {
    border-bottom: 1px solid var(--sky);
}
.compare-group-row td {
    background: var(--navy3) !important;
    color: var(--white) !important;
    font-size: .72rem !important;
    font-weight: 700 !important;
    letter-spacing: .1em !important;
    text-transform: uppercase !important;
    padding: .55rem 1rem !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
    border-left: none !important;
    border-right: none !important;
    background: var(--navy3) !important;
}
.compare-group-row td.compare-featured-col {
    background: var(--navy3) !important;
    border-left: 1px solid var(--sky) !important;
    border-right: 1px solid var(--sky) !important;
}
.compare-check {
    color: var(--sky);
    font-size: 1rem;
    font-weight: 700;
}
.compare-no {
    color: #334155;
    font-size: 1rem;
}
.compare-val {
    font-size: .82rem;
    color: var(--text);
    font-weight: 500;
}
.compare-highlight {
    color: var(--sky);
    font-weight: 700;
}
.compare-table tbody tr:hover td { background: rgba(255,255,255,.015); }
.compare-table tbody tr:hover td.compare-featured-col { background: rgba(14,165,233,.05); }
.compare-table tbody .compare-group-row:hover td { background: var(--navy3) !important; }

@media (max-width: 640px) {
    .compare-tier-col { width: 130px; padding: 1.25rem .75rem 1rem; }
    .compare-tier-price { font-size: 1.35rem; }
    .compare-table tbody tr td { font-size: .8rem; padding: .5rem .65rem; }
}

/* =====================================================
   DOWNLOAD / CONTACT FORMS
   ===================================================== */
.download-page .section-inner,
.contact-page .section-inner { padding-top: 3rem; padding-bottom: 4rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; color: #cbd5e1; margin-bottom: .35rem; }
.form-input {
    width: 100%;
    padding: .6rem .85rem;
    background: var(--navy3);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 6px;
    color: var(--white);
    font-size: .9rem;
    font-family: inherit;
    transition: border-color .15s;
}
.form-input:focus { outline: none; border-color: var(--sky); }
textarea.form-input { resize: vertical; }
.form-success {
    background: rgba(22,163,74,.15);
    border: 1px solid rgba(22,163,74,.4);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    color: #86efac;
    margin-bottom: 2rem;
}
.form-success h2 { color: #4ade80; margin-bottom: .5rem; }
.form-errors {
    background: rgba(220,38,38,.15);
    border: 1px solid rgba(220,38,38,.4);
    border-radius: 6px;
    padding: .75rem 1rem;
    color: #fca5a5;
    margin-bottom: 1rem;
    font-size: .875rem;
}

/* =====================================================
   CHANGELOG PAGE
   ===================================================== */
.changelog-page .section-inner { padding-top: 3rem; padding-bottom: 4rem; }
.changelog-entry {
    background: var(--navy2);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 2rem;
}
.changelog-meta { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; flex-wrap: wrap; }
.changelog-version { font-size: 1.1rem; font-weight: 800; color: var(--sky); }
.changelog-date { font-size: .85rem; color: var(--muted); }
.changelog-tag { font-size: .72rem; font-weight: 700; padding: .15rem .5rem; border-radius: 4px; }
.tag-release { background: rgba(14,165,233,.2); color: var(--sky); }
.changelog-entry h2 { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.changelog-entry h3 { font-size: .85rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--sky); margin: 1rem 0 .4rem; }
.changelog-entry ul { list-style: none; }
.changelog-entry ul li { color: var(--muted); font-size: .875rem; padding: .2rem 0 .2rem 1.2rem; position: relative; }
.changelog-entry ul li::before { content: '+'; position: absolute; left: 0; color: #22c55e; font-weight: 700; }

/* =====================================================
   ADMIN CARD (reused in forms on public pages)
   ===================================================== */
.admin-card {
    background: var(--navy2);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    color: var(--white);
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
    background: var(--navy2);
    border-top: 1px solid rgba(255,255,255,.07);
    padding-top: 3rem;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
}
.footer-brand p { color: var(--muted); font-size: .85rem; margin-top: .75rem; max-width: 300px; line-height: 1.6; }
.footer-links { display: flex; gap: 3rem; }
.footer-col { display: flex; flex-direction: column; gap: .5rem; }
.footer-col h4 { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .25rem; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: .875rem; transition: color .15s; }
.footer-col a:hover { color: var(--sky); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 1.25rem 1.5rem;
    text-align: center;
    color: var(--muted);
    font-size: .8rem;
}
@media (max-width: 640px) {
    .footer-inner { grid-template-columns: 1fr; }
    .footer-links { flex-wrap: wrap; gap: 2rem; }
    .site-nav { display: none; }
}

/* Support assistant page (moved from portal/support/index.blade.php inline <style>). */
.sa-wrap { max-width: 820px; margin: 0 auto; padding: 2.5rem 1.5rem; }
.sa-card { display: flex; flex-direction: column; height: calc(100vh - 260px); min-height: 440px; border: 1px solid rgba(148,163,184,.2); border-radius: 12px; overflow: hidden; background: rgba(255,255,255,.02); }
.sa-log { flex: 1; overflow-y: auto; padding: 1.25rem; display: flex; flex-direction: column; gap: .85rem; }
.sa-msg { max-width: 85%; border-radius: 10px; padding: .7rem .9rem; font-size: .95rem; line-height: 1.55; white-space: pre-wrap; }
.sa-bot { align-self: flex-start; background: rgba(255,255,255,.05); border: 1px solid rgba(148,163,184,.2); }
.sa-me  { align-self: flex-end; background: var(--sky, #0ea5e9); color: #fff; }
.sa-meta { align-self: flex-start; color: var(--muted, #94a3b8); font-size: .78rem; margin-top: -.4rem; }
.sa-meta a { color: var(--sky, #0ea5e9); }
.sa-form { display: flex; gap: .5rem; padding: 1rem 1.25rem; border-top: 1px solid rgba(148,163,184,.2); }
.sa-input { flex: 1; padding: .6rem .8rem; border-radius: 8px; border: 1px solid rgba(148,163,184,.35); background: rgba(255,255,255,.03); color: inherit; font: inherit; }
.sa-contact { display: flex; gap: .6rem; margin-bottom: 1rem; flex-wrap: wrap; }
.sa-contact input { flex: 1; min-width: 200px; padding: .55rem .8rem; border-radius: 8px; border: 1px solid rgba(148,163,184,.35); background: rgba(255,255,255,.03); color: inherit; font: inherit; }

/* Pricing page (moved from pages/pricing.blade.php inline <style>). */
.pricing-features li.feat-no::before { content: '—'; color: #475569; }
.pricing-features li.feat-no { color: var(--muted); }
.compare-table thead th { color: var(--white); font-weight: 700; background: var(--navy3); border-bottom: 1px solid var(--border); }
.soon-badge { display:inline-block; background:rgba(14,165,233,.15); border:1px solid rgba(14,165,233,.4); color:var(--sky); font-size:.65rem; font-weight:700; letter-spacing:.05em; text-transform:uppercase; padding:.2rem .6rem; border-radius:999px; vertical-align:middle; margin-left:.5rem; }
.cta-soon { display:block; text-align:center; margin-top:1.25rem; opacity:.6; cursor:default; }

#sbc { scroll-margin-top: 90px; }

/* Billing period toggle (Monthly/Annual) */
.billing-toggle-wrap { display:flex; justify-content:center; padding:1.5rem 1.5rem 0; }
.billing-toggle { display:inline-flex; background:var(--navy2); border:1px solid var(--border); border-radius:999px; padding:.25rem; gap:.25rem; }
.billing-toggle-btn { background:none; border:0; font:inherit; color:var(--muted); font-size:.85rem; font-weight:600; padding:.5rem 1.1rem; border-radius:999px; cursor:pointer; }
.billing-toggle-btn.active { background:var(--sky); color:#fff; }
.price-monthly { display:none; }
body[data-billing="monthly"] .price-monthly { display:inline; }
body[data-billing="monthly"] .price-annual { display:none; }

/* KB article content (moved from public/kb/show.blade.php inline <style>). */
.kb-content { line-height: 1.7; font-size: 1rem; }
.kb-content h2, .kb-content h3, .kb-content h4 { margin: 1.75rem 0 .6rem; font-weight: 700; line-height: 1.3; }
.kb-content h2 { font-size: 1.4rem; }
.kb-content h3 { font-size: 1.15rem; }
.kb-content p { margin: 0 0 1rem; }
.kb-content ul, .kb-content ol { margin: 0 0 1rem; padding-left: 1.35rem; }
.kb-content li { margin: .3rem 0; }
.kb-content a { color: var(--sky, #0ea5e9); }
.kb-content strong { color: inherit; font-weight: 700; }
.kb-content table { border-collapse: collapse; width: 100%; margin: 1.25rem 0; font-size: .92rem; display: table; }
.kb-content th, .kb-content td { border: 1px solid rgba(148,163,184,.45); padding: .6rem .85rem; text-align: left; vertical-align: top; }
.kb-content thead th { background: rgba(14,165,233,.12); font-weight: 700; white-space: nowrap; }
.kb-content tbody tr:nth-child(even) { background: rgba(255,255,255,.03); }
.kb-content code { background: rgba(148,163,184,.15); padding: .1rem .35rem; border-radius: 4px; font-size: .88em; }
.kb-content pre { background: #0b1220; border: 1px solid rgba(148,163,184,.2); border-radius: 8px; padding: 1rem 1.15rem; overflow-x: auto; margin: 0 0 1.25rem; }
.kb-content pre code { background: none; padding: 0; font-size: .85rem; line-height: 1.5; color: #cbd5e1; }
.kb-content blockquote { border-left: 3px solid var(--sky, #0ea5e9); margin: 0 0 1rem; padding: .25rem 0 .25rem 1rem; color: var(--muted, #94a3b8); }

/* Migrated from inline style= attributes (CSP style-src has no 'unsafe-inline') */
.s-029746e8 { padding:1.25rem; }
.s-04080adf { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:1.25rem; align-items:start; }
.s-067eb338 { font-size:1.7rem; font-weight:800; margin:.5rem 0 0; }
.s-0bc37029 { text-align:center; padding:.7rem 1rem; }
.s-0cd0fbe4 { display:flex; justify-content:space-between; padding:.5rem 0; border-bottom:1px solid var(--border); }
.s-10efeeeb { max-width:900px; }
.s-13d7fc11 { color:var(--sky); font-weight:600; }
.s-148bb20a { font-size:.8rem; text-transform:uppercase; color:var(--muted); margin-bottom:.75rem; }
.s-16e1632e { color:var(--muted); font-size:.8rem; margin:.25rem 0 0; }
.s-17de80a6 { text-align:center; padding:1.5rem 1rem; }
.s-1b1bde34 { line-height:1.7; font-size:1rem; }
.s-1e84a5f5 { color:var(--muted); font-size:.85rem; }
.s-1f4a58c3 { margin-top:3rem; padding-top:1.5rem; border-top:1px solid var(--border,#1e293b); }
.s-20fcccc4 { display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap; background:rgba(14,165,233,.08); border:1px solid rgba(14,165,233,.3); border-radius:12px; padding:1rem 1.25rem; margin-bottom:1.75rem; }
.s-2642c615 { color:var(--muted); margin-bottom:1.75rem; }
.s-26883ab0 { padding:4rem 1.5rem; text-align:center; }
.s-26917cd7 { color:var(--muted); line-height:1.7; }
.s-2c46cc3b { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:1rem; }
.s-2cc20a38 { display:block; text-align:center; margin-top:1.25rem; }
.s-3033ed3d { margin-top:2rem; padding:1rem 1.25rem; background:rgba(14,165,233,.08); border:1px solid rgba(14,165,233,.2); border-radius:var(--radius); display:flex; gap:.75rem; align-items:flex-start; }
.s-36cf118a { font-weight:600; margin:.35rem 0 .2rem; }
.s-3e9d9c4c { max-width:600px; }
.s-403688b7 { max-width:700px; }
.s-4291cd83 { font-size:2rem; font-weight:800; margin-bottom:.5rem; }
.s-449a4458 { text-align:center; padding:.75rem 1rem; }
.s-48438c45 { font-size:1.75rem; font-weight:800; color:var(--sky); }
.s-4ac27fa2 { '.$style.'; }
.s-4ddbe905 { white-space:nowrap; }
.s-560adf12 { color:var(--muted); font-weight:400; font-size:.85rem; }
.s-577aa2f5 { max-width:900px; margin:0 auto; padding:3rem 1.5rem; }
.s-58208382 { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.s-590e9a6c { display:flex; align-items:center; gap:.6rem; padding:.6rem .75rem; background:var(--navy3); border-radius:8px; }
.s-5a2f13c9 { font-size:.72rem; text-transform:uppercase; letter-spacing:.05em; color:var(--sky,#0ea5e9); margin-bottom:.4rem; }
.s-5d964cbb { font-size:1.6rem; font-weight:800; margin-bottom:.4rem; }
.s-5d9cf453 { display:flex; flex-direction:column; gap:.6rem; }
.s-5e5529e4 { text-align:center; padding:1.5rem 1rem; border-color:rgba(14,165,233,.35); }
.s-5e99dd90 { color:var(--muted); font-size:.85rem; line-height:1.6; }
.s-62b087de { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:1.25rem; align-items:start; max-width:700px; margin:0 auto; }
.s-693df97c { width:100%; max-width:520px; }
.s-699141ef { padding:.7rem 1rem; }
.s-6a19fc17 { display:inline-block; }
.s-6a64e075 { text-align:center; padding:1.5rem; color:var(--muted); }
.s-6aeb84d1 { padding:1rem 1.5rem 4rem; }
.s-6d567387 { width:100%; }
.s-703a2709 { color:var(--muted); font-size:.9rem; margin:0; }
.s-712cb87d { padding:3rem 1.5rem; }
.s-7795938e { color:var(--muted); font-size:.8rem; margin:.75rem 0 0; }
.s-77bd7ce2 { padding:5rem 1.5rem; text-align:center; }
.s-783ae7eb { padding:3rem 1.5rem; background:var(--navy2); }
.s-7d5b664f { font-size:1.05rem; font-weight:700; margin-bottom:1rem; }
.s-80c26b28 { font-size:1.8rem; font-weight:800; margin-bottom:.75rem; }
.s-82347169 { display:flex; flex-wrap:wrap; gap:.5rem; margin-bottom:2rem; }
.s-826be67a { max-width:420px; margin:0 auto; }
.s-831acaf6 { margin-top:2rem; }
.s-83e4487b { font-weight:700; }
.s-83f0d633 { color:var(--muted); font-size:.8rem; margin-top:1.5rem; }
.s-84ec4dbb { font-size:1.6rem; font-weight:800; margin-bottom:.75rem; }
.s-87ddc0dc { color:var(--muted); }
.s-881a4909 { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1rem; margin-bottom:2rem; }
.s-884080a8 { color:var(--muted); font-size:.9rem; }
.s-8aedc182 { font-size:clamp(2rem,5vw,3rem); margin:.75rem 0 1rem; }
.s-8c9d787f { font-size:1rem; font-weight:500; color:var(--muted); }
.s-8cec7ae9 { font-size:3rem; margin-bottom:1rem; }
.s-8e8bbcb8 { display:grid; grid-template-columns:1fr 320px; gap:1.5rem; align-items:start; }
.s-9167ebf1 { font-size:1.2rem; font-weight:800; color:var(--white); }
.s-92186482 { color:var(--sky); font-size:.85rem; }
.s-9590f79e { margin-bottom:1rem; }
.s-9c3f857e { font-size:1.05rem; font-weight:700; margin-bottom:.5rem; }
.s-a190814b { max-width:820px; margin:0 auto; padding:3rem 1.5rem; }
.s-a2e795f4 { text-align:center; margin-bottom:2.5rem; }
.s-a7894511 { padding:1rem 1.25rem; background:var(--navy3); border-radius:var(--radius); border:1px solid var(--border); }
.s-a9f9d2f7 { color:var(--muted); margin-bottom:1.25rem; }
.s-ae5b926d { margin-top:1.5rem; padding:1rem; background:rgba(14,165,233,.08); border:1px solid rgba(14,165,233,.2); border-radius:10px; }
.s-ae990aa1 { color:var(--muted); font-size:.85rem; margin-bottom:.35rem; }
.s-aee76f91 { color:var(--text); }
.s-b33383ea { margin-top:.75rem; }
.s-b3f70f5a { color:var(--muted); font-size:1.05rem; line-height:1.7; }
.s-b3fc9fee { font-weight:700; margin-bottom:.5rem; font-size:.9rem; }
.s-b670d804 { display:flex; flex-direction:column; gap:1.25rem; }
.s-b85f83b4 { padding:1.25rem; position:sticky; top:1rem; }
.s-b9cd9fb0 { width:100%; margin-top:1.25rem; }
.s-bbbbbdac { display:block; padding:1.1rem 1.25rem; margin-bottom:.85rem; border:1px solid var(--border,#1e293b); border-radius:10px; text-decoration:none; }
.s-be4b2e51 { text-align:center; margin-top:2.5rem; }
.s-bf15e986 { font-size:1.1rem; flex-shrink:0; }
.s-c451fdb0 { position:relative; }
.s-c59f29cc { color:var(--muted); font-weight:400; font-size:.8rem; }
.s-c9271128 { color:var(--muted); font-size:.75rem; text-align:center; margin:.75rem 0 0; }
.s-cf2d1376 { padding:2.5rem 1.5rem 1.5rem; }
.s-d4033180 { margin-bottom:1.25rem; }
.s-d512ebdd { color:var(--muted); font-size:.82rem; margin:.25rem 0 0; }
.s-d80f5e63 { max-width:560px; }
.s-da5cd676 { flex:1; }
.s-dd7d4674 { width:60px; padding:.25rem .4rem; text-align:center; }
.s-df2a69f4 { margin-bottom:2rem; }
.s-e20ed92a { text-align:center; padding:4rem 1.5rem 3rem; }
.s-e3ecb041 { color:var(--muted); font-size:.85rem; text-decoration:none; }
.s-e9650e9b { display:block; color:var(--sky,#0ea5e9); text-decoration:none; margin-bottom:.4rem; }
.s-f7bb1479 { text-align:left; padding:.75rem 1rem; }
.s-fb3cf193 { color:var(--sky); }
.s-fca54bd7 { font-size:2rem; font-weight:800; margin-bottom:1.5rem; }
.s-fd220e5a { font-size:.72rem; text-transform:uppercase; color:var(--muted); margin-bottom:.35rem; }
.s-ff2d4999 { font-weight:700; color:var(--sky,#0ea5e9); margin-bottom:.25rem; }
