﻿:root {
    --st-bg: #071a2c;
    --st-bg-alt: #0b2238;
    --st-surface: #0f2a44;
    --st-surface-2: #133252;
    --st-surface-3: #173b61;
    --st-border: rgba(255, 255, 255, 0.08);
    --st-border-strong: rgba(37, 131, 255, 0.28);
    --st-text: #f8fbff;
    --st-text-soft: rgba(248, 251, 255, 0.88);
    --st-text-muted: rgba(248, 251, 255, 0.68);
    --st-text-faint: rgba(248, 251, 255, 0.52);
    --st-primary: #2583ff;
    --st-primary-hover: #1f73e0;
    --st-primary-active: #1962c2;
    --st-primary-soft: rgba(37, 131, 255, 0.16);
    --st-accent: #49a1ff;
    --st-accent-2: #7bc0ff;
    --st-success: #22c55e;
    --st-warning: #f59e0b;
    --st-danger: #ef4444;
    --st-shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.14);
    --st-shadow-md: 0 16px 34px rgba(0, 0, 0, 0.20);
    --st-shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.26);
    --st-radius-sm: 12px;
    --st-radius-md: 16px;
    --st-radius-lg: 20px;
    --st-radius-xl: 24px;
    --st-shell-width: 1440px;
    --st-transition: 0.18s ease;
}

html,
body {
    background: linear-gradient(180deg, var(--st-bg) 0%, #081d31 100%);
    color: var(--st-text);
}

a {
    color: var(--st-accent-2);
    text-decoration: none;
    transition: color var(--st-transition);
}

    a:hover {
        color: #ffffff;
    }

/* =========================
   Base Layout
   ========================= */

.st-page {
    min-height: 100vh;
    background: radial-gradient(circle at top center, rgba(37, 131, 255, 0.08), transparent 34%), linear-gradient(180deg, var(--st-bg) 0%, #081c2f 100%);
}

.st-shell {
    width: 100%;
    max-width: var(--st-shell-width);
    margin: 0 auto;
}

/* =========================
   Cards / Panels
   ========================= */

.st-card,
.st-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)), var(--st-surface);
    border: 1px solid var(--st-border);
    border-radius: var(--st-radius-lg);
    box-shadow: var(--st-shadow-sm);
}

.st-card {
    padding: 24px;
}

.st-panel {
    padding: 18px 20px;
}

.st-card-flat {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--st-border);
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)), var(--st-surface);
    box-shadow: var(--st-shadow-sm);
}

.st-card-accent {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(37,131,255,0.20);
    background: linear-gradient(180deg, rgba(37,131,255,.09), rgba(255,255,255,.012)), var(--st-surface);
    box-shadow: var(--st-shadow-sm);
}

.st-card-muted {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.018);
}

.st-card-strong {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    background: radial-gradient(circle at top left, rgba(37,131,255,.12), transparent 44%), linear-gradient(180deg, rgba(15,42,68,.98), rgba(9,28,47,.98));
    box-shadow: var(--st-shadow-md);
}

.st-card-head {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.st-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.st-card-title {
    color: #fff;
    font-size: .98rem;
    font-weight: 850;
}

.st-card-sub {
    margin: 0;
    color: var(--st-text-muted);
    line-height: 1.5;
    font-size: .92rem;
}

/* =========================
   Typography
   ========================= */

.st-section-title {
    margin: 0;
    color: #fff;
    font-size: clamp(1.55rem, 2.2vw, 2.1rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.st-section-sub,
.st-muted {
    color: var(--st-text-muted);
}

.st-section-sub {
    margin: 0;
    line-height: 1.58;
    font-size: 0.96rem;
}

.st-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 131, 255, 0.34), transparent);
    border: 0;
    margin: 18px 0;
}

/* =========================
   Buttons
   ========================= */

.st-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: background-color var(--st-transition), border-color var(--st-transition), color var(--st-transition), transform var(--st-transition), box-shadow var(--st-transition);
}

    .st-btn:hover {
        transform: translateY(-1px);
    }

    .st-btn:active {
        transform: translateY(0);
    }

.st-btn-primary {
    color: #ffffff;
    background: linear-gradient(180deg, var(--st-primary), #1d6ee7);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 24px rgba(37, 131, 255, 0.28);
}

    .st-btn-primary:hover {
        background: linear-gradient(180deg, #3790ff, var(--st-primary));
        color: #ffffff;
    }

.st-btn-outline {
    color: var(--st-text);
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--st-border);
}

    .st-btn-outline:hover {
        background: rgba(37, 131, 255, 0.10);
        border-color: var(--st-border-strong);
        color: #ffffff;
    }

.st-btn-soft {
    color: #ffffff;
    background: var(--st-primary-soft);
    border-color: rgba(37, 131, 255, 0.20);
}

.st-btn-disabled {
    opacity: .45;
    pointer-events: none;
    cursor: not-allowed;
}

/* =========================
   Forms
   ========================= */

.st-input,
.st-select,
.st-textarea,
.form-control,
.form-select {
    width: 100%;
    color: var(--st-text);
    background: rgba(7, 26, 44, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: none;
    transition: border-color var(--st-transition), box-shadow var(--st-transition), background-color var(--st-transition);
}

.st-input,
.st-select,
.form-control,
.form-select {
    min-height: 46px;
    padding: 10px 14px;
}

.st-textarea {
    min-height: 120px;
    padding: 12px 14px;
    resize: vertical;
}

    .st-input::placeholder,
    .st-textarea::placeholder,
    .form-control::placeholder {
        color: var(--st-text-faint);
    }

    .st-input:focus,
    .st-select:focus,
    .st-textarea:focus,
    .form-control:focus,
    .form-select:focus {
        color: var(--st-text);
        background: rgba(7, 26, 44, 0.96);
        border-color: rgba(37, 131, 255, 0.52);
        box-shadow: 0 0 0 0.22rem rgba(37, 131, 255, 0.16);
        outline: none;
    }

/* =========================
   Tables
   ========================= */

.st-table-wrap {
    overflow: auto;
    border: 1px solid var(--st-border);
    border-radius: 18px;
    background: rgba(10, 28, 46, 0.74);
}

.st-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--st-text);
}

    .st-table th,
    .st-table td {
        padding: 14px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        text-align: left;
        vertical-align: middle;
    }

    .st-table th {
        color: var(--st-text-soft);
        font-size: 0.82rem;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        background: rgba(255, 255, 255, 0.02);
    }

    .st-table tbody tr:hover {
        background: rgba(37, 131, 255, 0.05);
    }

/* =========================
   Badges / Alerts
   ========================= */

.st-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(37, 131, 255, 0.22);
    background: rgba(37, 131, 255, 0.10);
    color: #dcecff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.st-alert {
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 700;
}

.st-alert-info {
    background: rgba(37, 131, 255, 0.10);
    border-color: rgba(37, 131, 255, 0.22);
    color: #dcecff;
}

.st-alert-success {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.24);
    color: #d9ffe8;
}

.st-alert-warning {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.26);
    color: #fff1c9;
}

.st-alert-danger {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.24);
    color: #ffdede;
}

/* =========================
   Logo
   ========================= */

.st-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    line-height: 0;
}

.st-logo-img {
    display: block;
    width: 100%;
    max-width: 340px;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
}

.st-logo-nav {
    width: 300px;
    border-radius: 14px;
}

.st-logo-hero {
    max-width: 420px;
    width: min(100%, 420px);
    border-radius: 20px;
}

.st-logo-pos {
    max-width: 220px;
    width: clamp(150px, 16vw, 220px);
    border-radius: 14px;
}

/* =========================
   Navbar / Mobile Nav
   ========================= */

.st-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
}

.st-navbar {
    background: rgba(7, 26, 44, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.st-navbar-wrap {
    align-items: center;
}

.st-nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    color: var(--st-text-muted);
    font-weight: 700;
    transition: background-color var(--st-transition), color var(--st-transition);
}

    .st-nav-link:hover,
    .st-nav-link.active {
        color: #ffffff;
        background: rgba(37, 131, 255, 0.12);
    }

.st-mobilebar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(7, 26, 44, 0.96);
    border-top: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.st-mobilebar-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 6px;
}

.st-mitem {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--st-text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 8px;
    border-radius: 10px;
}

    .st-mitem.active {
        color: #fff;
        background: rgba(37, 131, 255, 0.15);
    }

.st-mitem-cta {
    color: #fff;
    background: linear-gradient(180deg, var(--st-primary), #1d6ee7);
}

/* =========================
   Modal
   ========================= */

.st-modal,
.modal-content {
    background: linear-gradient(180deg, rgba(17, 42, 67, 0.98), rgba(10, 28, 46, 0.98));
    border: 1px solid var(--st-border);
    border-radius: 22px;
    color: var(--st-text);
    box-shadow: var(--st-shadow-lg);
}

.modal-header,
.modal-footer {
    border-color: rgba(255, 255, 255, 0.06);
}

/* =========================
   Stats
   ========================= */

.st-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
    border: 1px solid var(--st-border);
}

.st-stat-label {
    color: var(--st-text-muted);
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 3px;
}

.st-stat-value {
    color: var(--st-text);
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
}

.st-stat-value-sm {
    color: #fff;
    font-size: .94rem;
    font-weight: 850;
}

.st-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
}

    .st-stat-row .st-card-muted {
        min-width: 0;
        padding: 16px 18px;
        border-radius: 16px;
        background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)), var(--st-surface);
        border: 1px solid rgba(255,255,255,.06);
    }

/* =========================
   Marketing Sections
   ========================= */

.st-marketing-page {
    position: relative;
    padding: 24px 0 54px;
    background: radial-gradient(circle at top center, rgba(37, 131, 255, 0.09), transparent 34%), linear-gradient(180deg, var(--st-bg) 0%, #081c2f 100%);
}

.st-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.st-section-plain {
    background: transparent;
}

.st-section-surface {
    padding: 20px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01)), rgba(10, 31, 51, 0.72);
}

.st-section-accent {
    padding: 20px;
    border-radius: 24px;
    border: 1px solid rgba(37,131,255,0.18);
    background: radial-gradient(circle at top left, rgba(37,131,255,.14), transparent 42%), linear-gradient(180deg, rgba(37,131,255,.06), rgba(255,255,255,.012)), rgba(10, 31, 51, 0.82);
}

.st-section-dark {
    padding: 20px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.07);
    background: linear-gradient(180deg, rgba(6,18,31,.96), rgba(9,28,47,.94));
    box-shadow: var(--st-shadow-sm);
}

.st-section-head {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 760px;
}

.st-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(37, 131, 255, 0.20);
    background: rgba(37, 131, 255, 0.10);
    color: #dcecff;
    font-size: 0.8rem;
    font-weight: 800;
}

.st-home-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* =========================
   Grids
   ========================= */

.st-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.st-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.st-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

/* =========================
   Hero / Feature Helpers
   ========================= */

.st-hero {
    display: grid;
    gap: 14px;
    padding: 22px 0 10px;
}

.st-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 410px);
    gap: 20px;
    align-items: stretch;
}

.st-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding-top: 0;
}

.st-hero-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 950;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.st-hero-sub {
    margin: 0;
    max-width: 68ch;
    color: var(--st-text-muted);
    font-size: 1.02rem;
    line-height: 1.62;
}

.st-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
    margin-bottom: 4px;
}

    .st-hero-actions .st-btn {
        min-width: 160px;
    }

.st-micro-proof {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: var(--st-text-muted);
    font-size: .88rem;
    font-weight: 700;
    line-height: 1.35;
}

.st-proof-sep {
    color: rgba(255,255,255,.28);
}

.st-hero-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 4px;
}

.st-hero-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(37, 131, 255, 0.16);
    background: rgba(255, 255, 255, 0.025);
    color: var(--st-text-soft);
    font-size: 0.86rem;
    font-weight: 800;
}

    .st-hero-mini i {
        color: var(--st-accent-2);
        font-size: 1rem;
    }

.st-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

    .st-feature-list li {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 10px;
        align-items: start;
    }

    .st-feature-list b {
        display: block;
        color: #fff;
        font-size: .93rem;
        font-weight: 850;
        margin-bottom: 2px;
    }

    .st-feature-list small {
        display: block;
        color: var(--st-text-muted);
        line-height: 1.45;
        font-size: .9rem;
    }

.st-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: rgba(37, 131, 255, 0.12);
    border: 1px solid rgba(37, 131, 255, 0.18);
    color: #dcecff;
    font-size: 1.05rem;
}

.st-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(37, 131, 255, 0.14);
    border: 1px solid rgba(37, 131, 255, 0.22);
    color: #dcecff;
    font-weight: 900;
    font-size: 0.85rem;
    box-shadow: 0 0 0 2px rgba(37,131,255,0.10);
}

.st-note-row {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(37, 131, 255, .18);
    background: linear-gradient(180deg, rgba(37,131,255,.09), rgba(37,131,255,.035)), rgba(12, 34, 56, .92);
}

/* Compact right-side hero proof card */
.st-proof-list-card {
    padding: 16px 16px 14px;
    box-shadow: 0 10px 22px rgba(0,0,0,.18);
}

    .st-proof-list-card .st-card-head {
        gap: 4px;
        margin-bottom: 8px;
    }

    .st-proof-list-card .st-feature-list {
        gap: 8px;
    }

        .st-proof-list-card .st-feature-list li {
            grid-template-columns: 36px minmax(0, 1fr);
            gap: 8px;
        }

    .st-proof-list-card .st-icon-box {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        font-size: 0.9rem;
    }

    .st-proof-list-card .st-feature-list b {
        font-size: 0.9rem;
        margin-bottom: 1px;
    }

    .st-proof-list-card .st-feature-list small {
        font-size: 0.85rem;
        line-height: 1.35;
    }

/* =========================
   Split / CTA
   ========================= */

.st-split-head {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.st-cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(37, 131, 255, 0.18);
    background: radial-gradient(circle at top left, rgba(37,131,255,.13), transparent 42%), linear-gradient(180deg, rgba(37,131,255,.08), rgba(255,255,255,.02)), var(--st-surface);
}

.st-cta-title {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 900;
    margin-bottom: 2px;
}

.st-cta-sub {
    color: var(--st-text-muted);
    line-height: 1.5;
    font-size: 0.92rem;
}

.st-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    /* force side-by-side layout */
    .st-cta-actions .st-btn {
        flex: 0 0 auto;
    }

/* =========================
   Responsive
   ========================= */

@media (max-width: 1199.98px) {
    .st-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .st-card {
        padding: 20px;
    }

    .st-topbar {
        flex-wrap: wrap;
    }

    .st-logo-nav {
        width: 300px;
        border-radius: 14px;
    }

    .st-hero-grid,
    .st-grid-2,
    .st-grid-3 {
        grid-template-columns: 1fr;
    }

    .st-hero-copy {
        justify-content: flex-start;
    }

    .st-stat-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .st-section-surface,
    .st-section-accent,
    .st-section-dark {
        padding: 16px;
        border-radius: 18px;
    }

    .st-note-row {
        grid-template-columns: 42px minmax(0, 1fr);
    }

        .st-note-row .st-badge {
            grid-column: 1 / -1;
            justify-self: start;
        }

    .st-cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .st-card,
    .st-panel {
        padding: 16px;
        border-radius: 16px;
    }

    .st-btn {
        width: auto;
    }

    .st-hero-actions,
    .st-cta-actions {
        width: 100%;
    }       

    .st-cta-actions {
        flex-wrap: nowrap;
        overflow-x: auto; /* prevents ugly wrapping */
        padding-bottom: 2px;
    }

    .st-logo-img {
        max-width: 780px;
    }

    .st-logo-nav,
    .st-logo-pos {       
        width: 300px;   
        border-radius: 14px;
    }
   
    .st-table th,
    .st-table td {
        padding: 12px 12px;
    }

    .st-footer {
        padding-bottom: 96px;
    }

    .st-marketing-page {
        padding: 18px 0 70px;
    }

    .st-card-flat,
    .st-card-accent,
    .st-card-muted,
    .st-card-strong {
        padding: 15px;
        border-radius: 16px;
    }

    .st-home-stack {
        gap: 16px;
    }

    .st-hero-mini-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .st-stat-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .st-hero-actions .st-btn,
    .st-cta-actions .st-btn {
        flex: 1 1 100%;
    }
}

/* Horizontal marketing cards */
.st-card-row {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

    .st-card-row .st-icon-box {
        margin-top: 2px;
    }

.st-card-row-content {
    min-width: 0;
}

.st-card-row .st-card-title {
    margin-bottom: 4px;
}

.st-feature-list li {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr); /* smaller icon column */
    gap: 10px;
    align-items: center; /* THIS fixes vertical alignment */
}

    .st-feature-list li .st-icon-box {
        width: 28px;
        height: 28px;
        border-radius: 10px;
        font-size: 0.8rem;
        margin-top: 0; /* remove offset */
    }

    .st-feature-list li small {
        display: block;
        line-height: 1.4;
    }

/* =========================================================
   SOLENTX TABLE — DARK THEME + HEADER (MATCHES SALES HEADER)
   IMPORTANT: Put this block at the END of the file
   ========================================================= */

/* Wrapper transparency (kills any white strip) */
.table-responsive {
    background: transparent !important;
}

.st-table,
table.st-table {
    background: transparent !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
}

    /* Ensure all cells are dark/glass and text is light */
    .st-table,
    .st-table tbody,
    .st-table tr,
    .st-table td,
    .st-table th,
    table.st-table,
    table.st-table tbody,
    table.st-table tr,
    table.st-table td,
    table.st-table th {
        background: transparent !important;
        color: rgba(234,242,255,0.92) !important;
    }

        /* Row hover */
        .st-table tbody tr:hover,
        table.st-table tbody tr:hover {
            background: rgba(255,255,255,0.04) !important;
        }

        /* Inputs inside table rows */
        .st-table input[type="number"],
        .st-table .form-control,
        table.st-table input[type="number"],
        table.st-table .form-control {
            background: rgba(255,255,255,0.06) !important;
            border: 1px solid rgba(255,255,255,0.14) !important;
            color: rgba(234,242,255,0.95) !important;
        }

        /* Kill bootstrap header painting */
        .st-table thead,
        table.st-table thead {
            background: transparent !important;
        }

            /* Header cells — match your Sales table screenshot */
            .st-table thead th,
            table.st-table thead th {
                background: linear-gradient(180deg, #1b2436 0%, #222c3f 100%) !important;
                color: rgba(234,242,255,0.92) !important;
                font-weight: 900 !important;
                font-size: .86rem !important;
                letter-spacing: .02em;
                padding: 14px 16px !important;
                border-top: 0 !important;
                border-bottom: 1px solid rgba(255,255,255,0.10) !important;
            }

                /* Rounded top corners */
                .st-table thead th:first-child,
                table.st-table thead th:first-child {
                    border-top-left-radius: 16px !important;
                }

                .st-table thead th:last-child,
                table.st-table thead th:last-child {
                    border-top-right-radius: 16px !important;
                }

        /* Body cell separators (subtle) */
        .st-table tbody td,
        table.st-table tbody td {
            border-top: 1px solid rgba(255,255,255,0.06) !important;
            border-bottom: 0 !important;
        }

        /* Remove the last bottom line completely */
        .st-table tbody tr:last-child td,
        table.st-table tbody tr:last-child td {
            border-bottom: 0 !important;
        }

        /* If bootstrap adds table border, kill it */
        .st-table.table,
        table.st-table.table {
            --bs-table-bg: transparent !important;
            --bs-table-striped-bg: transparent !important;
            --bs-table-hover-bg: rgba(255,255,255,0.04) !important;
            --bs-table-border-color: rgba(255,255,255,0.08) !important;
        }

        /* Also remove any default bottom border on thead */
        .st-table thead tr,
        table.st-table thead tr {
            border-bottom: 0 !important;
        }

/* =========================
   Solentx Table Outer Border
   ========================= */

.st-table,
table.st-table {
    border: 1px solid rgba(255,255,255,0.10) !important;
    border-radius: 16px !important;
    overflow: hidden;
}

/* optional: subtle glow like other Solentx panels */
.st-table,
table.st-table {
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

/* ===== Buttons ===== */

.st-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 900;
    letter-spacing: .01em;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
    color: rgba(248,250,252,1);
    backdrop-filter: blur(10px);
    transition: transform .08s ease, background .15s ease, border-color .15s ease, filter .15s ease;
    cursor: pointer;
}

    .st-btn:hover {
        transform: translateY(-1px);
        border-color: rgba(255,255,255,0.22);
        background: rgba(255,255,255,0.08);
        color: rgba(248,250,252,1);
    }

.st-btn-primary {
    border-color: rgba(56,189,248,0.45);
    background: linear-gradient(135deg, rgba(56,189,248,0.28), rgba(29,78,216,0.22));
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

    .st-btn-primary:hover {
        border-color: rgba(56,189,248,0.65);
        background: linear-gradient(135deg, rgba(56,189,248,0.34), rgba(29,78,216,0.28));
        filter: brightness(1.02);
    }

.st-btn-outline {
    background: rgba(255,255,255,0.04);
}

    .st-btn-outline:hover {
        background: rgba(255,255,255,0.06);
    }

.st-btn:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none !important;
}


.st-btn-secondary {
    background: linear-gradient(135deg, #334155, #020617);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
}


.st-btn-danger {
    background: linear-gradient(135deg, #7c2d12, #dc2626);
    color: #fff;
}

.st-btn-sm {
    height: 36px;
    padding: 0 12px;
    border-radius: 12px;
    font-weight: 850;
}

/* Checkout shared marketing styling */

.st-checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(340px, .85fr);
    gap: 18px;
    align-items: start;
}

.st-checkout-picker {
    display: grid;
    gap: 16px;
}

.st-checkout-group-title {
    color: #fff;
    font-weight: 950;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.st-checkout-group-sub {
    color: rgba(226,232,240,.68);
    font-weight: 720;
    line-height: 1.45;
    margin-bottom: 10px;
}

.st-checkout-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.st-checkout-options-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.st-checkout-option {
    width: 100%;
    min-height: 100%;
    text-align: left;
    border-radius: 18px;
    border: 1px solid rgba(148,163,184,.14);
    background: rgba(15,23,42,.88);
    color: #eaf2ff;
    padding: 15px;
    cursor: pointer;
}

    .st-checkout-option:hover {
        border-color: rgba(56,189,248,.34);
        background: rgba(15,23,42,.96);
    }

    .st-checkout-option.selected {
        border-color: rgba(56,189,248,.52);
        background: radial-gradient(circle at top right, rgba(56,189,248,.16), transparent 42%), rgba(15,23,42,.96);
        box-shadow: 0 0 0 3px rgba(56,189,248,.10);
    }

    .st-checkout-option.disabled {
        opacity: .65;
        cursor: not-allowed;
    }

.st-checkout-option-name {
    color: #fff;
    font-weight: 950;
    line-height: 1.2;
}

.st-checkout-option-price {
    margin-top: 5px;
    color: rgba(234,242,255,.94);
    font-weight: 950;
}

.st-checkout-option-sub {
    margin-top: 9px;
    color: rgba(226,232,240,.72);
    font-weight: 720;
    line-height: 1.42;
}

.st-checkout-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.st-checkout-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,.16);
    background: rgba(255,255,255,.04);
    color: rgba(226,232,240,.86);
    font-size: .75rem;
    font-weight: 900;
}

    .st-checkout-tag.good {
        border-color: rgba(34,197,94,.26);
        background: rgba(34,197,94,.12);
        color: #dcfce7;
    }

    .st-checkout-tag.warn {
        border-color: rgba(245,158,11,.30);
        background: rgba(245,158,11,.12);
        color: #fef3c7;
    }

.st-checkout-summary-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(148,163,184,.12);
}

    .st-checkout-summary-row:last-child {
        border-bottom: 0;
    }

.st-checkout-summary-label {
    color: rgba(226,232,240,.68);
    font-weight: 760;
}

.st-checkout-summary-value {
    color: #fff;
    font-weight: 950;
    text-align: right;
}

.st-checkout-status {
    margin-top: 14px;
    border-radius: 16px;
    border: 1px solid rgba(148,163,184,.14);
    background: rgba(255,255,255,.035);
    padding: 13px;
}

.st-checkout-status-title {
    color: #fff;
    font-weight: 950;
}

.st-checkout-status-sub {
    margin-top: 4px;
    color: rgba(226,232,240,.68);
    font-weight: 720;
    line-height: 1.42;
}

.st-checkout-divider {
    height: 1px;
    background: rgba(148,163,184,.14);
    margin: 14px 0;
}

@media (max-width: 980px) {
    .st-checkout-grid,
    .st-checkout-options,
    .st-checkout-options-2 {
        grid-template-columns: 1fr;
    }
}

.st-license-key-box {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px dashed rgba(255,255,255,.20);
    background: rgba(255,255,255,.045);
    color: #fff;
    font-weight: 950;
    letter-spacing: .08em;
    word-break: break-word;
}

.st-owner-progress-card {
    min-width: 260px;
    max-width: 360px;
    border-radius: 18px;
    border: 1px solid rgba(148,163,184,.14);
    background: rgba(15,23,42,.72);
    padding: 15px;
}

.st-owner-progress-label {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: rgba(226,232,240,.88);
    font-weight: 850;
    margin-bottom: 9px;
}

    .st-owner-progress-label strong {
        color: #fff;
        font-weight: 950;
    }

.st-owner-progress-bar {
    height: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
}

.st-owner-progress-fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(56,189,248,.95), rgba(29,78,216,.92));
    box-shadow: 0 0 18px rgba(56,189,248,.35);
}

.st-owner-progress-note {
    margin-top: 8px;
    color: rgba(226,232,240,.66);
    font-size: .88rem;
    font-weight: 720;
    line-height: 1.4;
}

.st-owner-ready-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: .52rem .82rem;
    border-radius: 999px;
    border: 1px solid rgba(34,197,94,.28);
    background: rgba(34,197,94,.12);
    color: #dcfce7;
    font-size: .84rem;
    font-weight: 900;
    white-space: nowrap;
}

.st-owner-step-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    border-radius: 20px;
    border: 1px solid rgba(148,163,184,.13);
    background: rgba(15,23,42,.88);
    padding: 18px;
    color: #eaf2ff;
}

    .st-owner-step-card.done {
        border-color: rgba(34,197,94,.30);
        background: radial-gradient(circle at top right, rgba(34,197,94,.12), transparent 42%), rgba(15,23,42,.92);
    }

    .st-owner-step-card.locked {
        opacity: .70;
    }

.st-owner-step-number {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #fff;
    font-weight: 950;
    background: rgba(56,189,248,.14);
    border: 1px solid rgba(56,189,248,.22);
}

.st-owner-step-card.done .st-owner-step-number {
    color: #dcfce7;
    background: rgba(34,197,94,.16);
    border-color: rgba(34,197,94,.30);
}

.st-owner-step-title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.st-owner-step-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: .22rem .55rem;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
}

    .st-owner-step-badge.required {
        background: rgba(56,189,248,.12);
        border: 1px solid rgba(56,189,248,.22);
        color: rgba(186,230,253,.96);
    }

    .st-owner-step-badge.optional {
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.12);
        color: rgba(226,232,240,.78);
    }

.st-owner-step-status {
    margin-top: 12px;
    color: rgba(226,232,240,.70);
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.45;
}

    .st-owner-step-status strong {
        color: #fff;
    }

.st-owner-step-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 767.98px) {
    .st-owner-progress-card,
    .st-owner-step-actions,
    .st-owner-step-actions .st-btn {
        width: 100%;
        max-width: none;
    }

        .st-owner-step-actions .st-btn {
            justify-content: center;
        }
}

.st-auth-page {
    min-height: 100vh;
    display: grid;
    align-items: start;
}

.st-auth-shell {
    width: min(520px, 100%);
    margin: 0 auto;
    padding: 28px 14px 44px;
}

.st-auth-card {
    padding: 22px;
}

.st-auth-title {
    margin: 12px 0 8px;
    color: #fff;
    font-weight: 950;
    letter-spacing: -.02em;
    line-height: 1.08;
    font-size: clamp(1.65rem, 3vw, 2.15rem);
}

.st-auth-sub {
    margin: 0 0 18px;
    color: rgba(226,232,240,.72);
    font-weight: 720;
    line-height: 1.5;
}

.st-auth-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
}

/* two-column auth rows */

.st-form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 720px) {
    .st-form-row-2 {
        grid-template-columns: 1fr;
    }
}

/* Setup Layout */

.st-setup-layout {
    min-height: 100vh;
}

.st-setup-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 26px 16px 10px;
}

.st-setup-logo-link {
    display: inline-flex;
    justify-content: center;
    text-decoration: none;
}

.st-setup-logo {
    width: min(620px, 92vw);
    height: auto;
    display: block;
    opacity: .96;
}

.st-setup-intro {
    text-align: center;
    margin-bottom: 14px;
    padding: 0 16px;
}

.st-setup-divider {
    height: 1px;
    max-width: 420px;
    margin: 0 auto 10px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,.25), transparent);
}

.st-setup-instructions {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(226,232,240,.68);
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.45;
}

.st-setup-body {
    max-width: 980px;
    margin: 0 auto;
    padding: 14px 18px 32px;
}

@media (max-width: 576px) {
    .st-setup-header {
        padding: 20px 12px 8px;
    }

    .st-setup-body {
        padding: 10px 12px 28px;
    }
}

/* Vendor auth adjustments */

.st-auth-page-vendor .st-auth-logo {
    width: min(520px, 90%);
}

.st-auth-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.st-auth-logo {
    max-width: 777px;
    border-radius: 14px;
}

.st-auth-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.st-auth-check {
    font-weight: 800;
    color: rgba(226,232,240,.85);
}

.st-auth-links-sep {
    color: rgba(226,232,240,.35);
    font-weight: 700;
}

.st-auth-note {
    margin-top: 14px;
    text-align: center;
    color: rgba(226,232,240,.60);
    font-size: .9rem;
    font-weight: 650;
}

.st-auth-link-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.st-auth-link-pill {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,.16);
    background: rgba(255,255,255,.035);
    color: rgba(226,232,240,.86);
    font-weight: 850;
    text-decoration: none;
    text-align: center;
}

    .st-auth-link-pill:hover {
        color: #fff;
        border-color: rgba(56,189,248,.30);
        background: rgba(56,189,248,.08);
        text-decoration: none;
    }

@media (max-width: 480px) {
    .st-auth-link-row {
        grid-template-columns: 1fr;
    }
}

/* fix alignment */

.st-auth-links {
    display: flex;
    justify-content: center;
    align-items: center; /* KEY FIX */
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

/* make icon + text align perfectly */
.st-auth-inline-link {
    display: inline-flex;
    align-items: center; /* KEY FIX */
    gap: 6px;
}

/* fix separator vertical alignment */
.st-auth-links-sep {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    line-height: 1;
    transform: translateY(-1px); /* micro-adjust */
    color: rgba(226,232,240,.35);
    font-weight: 700;
}

/* Vendor login page title */

.st-auth-page-title {
    text-align: center;
    margin-bottom: 18px;
}

.st-auth-page-kicker {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(56,189,248,.12);
    border: 1px solid rgba(56,189,248,.22);
    color: rgba(186,230,253,.95);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.st-auth-page-heading {
    margin: 10px 0 6px;
    color: #fff;
    font-weight: 950;
    letter-spacing: -.02em;
    font-size: clamp(1.6rem, 3vw, 2rem);
}

.st-auth-page-sub {
    color: rgba(226,232,240,.68);
    font-weight: 720;
    font-size: .95rem;
    line-height: 1.45;
    max-width: 460px;
    margin: 0 auto;
}

/* Homepage polish */
.st-home-hero-feature {
    border-color: rgba(73,161,255,.26);
    background: radial-gradient(circle at top right, rgba(73,161,255,.20), transparent 42%), linear-gradient(180deg, rgba(15,42,68,.98), rgba(7,24,40,.98));
}

.st-home-proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.st-home-section-break {
    margin-top: 4px;
}

.st-home-cta-emphasis {
    border-color: rgba(73,161,255,.26);
    box-shadow: 0 18px 42px rgba(0,0,0,.28);
}

@media (max-width: 991.98px) {
    .st-home-proof-strip {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Global Mobile Spacing Fix
   ========================================================= */

.st-shell {
    width: min(100%, var(--st-shell-width));
    padding-left: clamp(16px, 4vw, 28px);
    padding-right: clamp(16px, 4vw, 28px);
}

.st-navbar-wrap.st-shell {
    padding-left: clamp(14px, 4vw, 28px);
    padding-right: clamp(14px, 4vw, 28px);
}

@media (max-width: 767.98px) {
    .st-marketing-page {
        padding: 22px 0 84px;
    }

    .st-home-stack,
    .st-section {
        gap: 18px;
    }

    .st-hero {
        padding: 14px 0 4px;
        gap: 16px;
    }

    .st-hero-title {
        font-size: clamp(2rem, 10vw, 2.65rem);
        line-height: 1.04;
    }

    .st-hero-sub,
    .st-section-sub,
    .st-card-sub {
        font-size: .95rem;
        line-height: 1.58;
    }

    .st-card,
    .st-panel,
    .st-card-flat,
    .st-card-accent,
    .st-card-muted,
    .st-card-strong,
    .st-section-surface,
    .st-section-accent,
    .st-section-dark {
        padding: 18px;
        border-radius: 18px;
    }

    .st-grid-2,
    .st-grid-3,
    .st-grid-4,
    .st-hero-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .st-hero-actions,
    .st-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
        overflow: visible;
        padding-bottom: 0;
    }

        .st-hero-actions .st-btn,
        .st-cta-actions .st-btn {
            width: 100%;
            min-width: 0;
        }

    .st-cta-panel {
        padding: 18px;
        border-radius: 20px;
    }

    .st-footer-inner {
        padding-left: clamp(16px, 4vw, 28px);
        padding-right: clamp(16px, 4vw, 28px);
    }

    .st-footer-bottom,
    .st-footer-actions {
        align-items: stretch;
        gap: 12px;
    }

    .st-footer-legalpills {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
    }

    .st-footer-pill,
    .st-scrolltop {
        justify-content: center;
        width: 100%;
    }

    .st-mobilebar-inner {
        padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
        gap: 6px;
    }

    .st-mitem {
        flex: 1 1 0;
        min-width: 0;
        padding: 8px 6px;
    }
}

@media (max-width: 420px) {
    .st-shell {
        padding-left: 16px;
        padding-right: 16px;
    }

    .st-card,
    .st-panel,
    .st-card-flat,
    .st-card-accent,
    .st-card-muted,
    .st-card-strong,
    .st-section-surface,
    .st-section-accent,
    .st-section-dark {
        padding: 16px;
    }

    .st-logo-img {
        max-width: 780px;
    }

    .st-logo-nav,
    .st-logo-pos {
        width: 300px;
        border-radius: 14px;
    }
}

/* =========================
   Solentx Note Box
   ========================= */

.st-note {
    border-radius: 16px;
    border: 1px solid rgba(37,131,255,.18);
    background: linear-gradient(180deg, rgba(37,131,255,.09), rgba(37,131,255,.035)), rgba(12,34,56,.92);
    padding: 13px 14px;
    color: rgba(234,242,255,.92);
}

.st-note-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 950;
    line-height: 1.25;
}

.st-note-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    border: 1px solid rgba(56,189,248,.28);
    background: rgba(56,189,248,.12);
    color: #d9f4ff;
    font-size: .72rem;
    font-weight: 950;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.st-note-text {
    margin-top: 7px;
    color: rgba(226,232,240,.76);
    font-weight: 720;
    line-height: 1.45;
}