/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ============================================================
   Shared site header — used on every page (home + secondary),
   matching the Stratos marketing nav so the chrome is consistent.
   ============================================================ */
.site-header[b-4fw89zowky] {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
}

.site-nav[b-4fw89zowky] {
    max-width: 1140px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 32px;
    min-height: 0;
}

.site-brand[b-4fw89zowky] {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.site-brand__mark[b-4fw89zowky] {
    display: block;
    flex: none;
    fill: #115dd1;
}

.site-brand__text[b-4fw89zowky] {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.site-brand__name[b-4fw89zowky] {
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.site-brand__kicker[b-4fw89zowky] {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #94a3b8;
}

.site-nav__links[b-4fw89zowky] {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: 12px;
}

.site-nav__links a[b-4fw89zowky] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: color 150ms ease;
}

.site-nav__links a:hover[b-4fw89zowky] {
    color: #1d4ed8;
}

.site-nav__actions[b-4fw89zowky] {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-nav__signin[b-4fw89zowky] {
    font-size: 0.9rem;
    font-weight: 700;
    color: #334155;
    text-decoration: none;
    transition: color 150ms ease;
}

.site-nav__signin:hover[b-4fw89zowky] {
    color: #1d4ed8;
}

.site-nav__cta[b-4fw89zowky] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 20px;
    border-radius: 999px;
    background: #115dd1;
    border: 1px solid #115dd1;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    transition: all 150ms ease;
}

.site-nav__cta:hover[b-4fw89zowky] {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #fff;
    box-shadow: 0 8px 20px rgba(17, 93, 209, 0.24);
}

@media (max-width: 640px) {
    .site-nav__links[b-4fw89zowky] {
        display: none;
    }
}

#blazor-error-ui[b-4fw89zowky] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-4fw89zowky] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}


/* /Components/Pages/Engage.razor.rz.scp.css */
.form-field[b-7jto833g0e] {
    padding: 10px 0 10px 0;
}

    .form-field:last-child[b-7jto833g0e] {
        padding-bottom: 20px;
    }
/* /Components/Pages/Home.razor.rz.scp.css */
/* ============================================================
   Stratos landing / home page — design tokens + helpers
   Tokens are declared on the page wrapper so the design's
   inline styles (var(--slate-600), var(--brand-primary), ...)
   resolve exactly. Custom properties inherit to all descendants.
   ============================================================ */
.stratos-home[b-7uf5vx2zy5] {
    --brand-primary: #115dd1;
    --blue-600: #1d4ed8;
    --blue-500: #2563eb;
    --blue-200: #bfdbfe;
    --blue-100: #dbeafe;
    --blue-50: #eff6ff;
    --border-tint: #bfdbfe;
    --success: #1aa663;
    --white: #ffffff;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    font-family: 'Archivo', system-ui, sans-serif;
    color: var(--slate-600);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.stratos-home *[b-7uf5vx2zy5] {
    box-sizing: border-box;
}

/* Neutralise the global `section { padding: 64px 0 }` rule from
   stratos.css; every section here supplies its own inline padding. */
.stratos-home section[b-7uf5vx2zy5] {
    padding: 0;
}

/* Anchor targets clear the sticky header so headings aren't hidden
   under it when navigating to #how, #plans, #faq, etc. */
.stratos-home section[id][b-7uf5vx2zy5] {
    scroll-margin-top: 84px;
}

.stratos-home a[b-7uf5vx2zy5] {
    color: var(--brand-primary);
    text-decoration: none;
}

.stratos-home a:hover[b-7uf5vx2zy5] {
    color: var(--blue-600);
}

/* ---- Buttons (design-system equivalents) ---- */
.stratos-home .sp-btn[b-7uf5vx2zy5] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 40px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    transition: all 150ms ease;
}

.stratos-home .sp-btn--lg[b-7uf5vx2zy5] {
    height: 48px;
    padding: 0 24px;
    font-size: 0.95rem;
}

.stratos-home .sp-btn--block[b-7uf5vx2zy5] {
    width: 100%;
    height: 44px;
}

.stratos-home .sp-btn--primary[b-7uf5vx2zy5] {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

.stratos-home .sp-btn--primary:hover[b-7uf5vx2zy5] {
    background: var(--blue-600);
    border-color: var(--blue-600);
    color: #fff;
    box-shadow: 0 8px 20px rgba(17, 93, 209, 0.24);
}

.stratos-home .sp-btn--secondary[b-7uf5vx2zy5] {
    background: var(--white);
    border-color: var(--slate-200);
    color: var(--slate-700);
}

.stratos-home .sp-btn--secondary:hover[b-7uf5vx2zy5] {
    border-color: var(--slate-300);
    color: var(--slate-900);
}

.stratos-home .sp-btn i[b-7uf5vx2zy5] {
    font-size: 0.8rem;
}

/* ---- Billing toggle (segmented control) ---- */
.stratos-home .sp-seg[b-7uf5vx2zy5] {
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.86rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 999px;
    background: transparent;
    color: var(--slate-500);
    transition: all 150ms ease;
}

.stratos-home .sp-seg.is-active[b-7uf5vx2zy5] {
    background: var(--white);
    color: var(--brand-primary);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}

/* ---- Responsive: collapse the multi-column grids on small screens ---- */
@media (max-width: 900px) {
    .stratos-home .sp-steps-grid[b-7uf5vx2zy5] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .stratos-home .sp-plans-grid[b-7uf5vx2zy5] {
        grid-template-columns: 1fr !important;
    }

    .stratos-home .sp-plan--popular[b-7uf5vx2zy5] {
        transform: none !important;
    }

    .stratos-home .sp-table-scroll[b-7uf5vx2zy5] {
        overflow-x: auto;
    }

    .stratos-home .sp-table-scroll table[b-7uf5vx2zy5] {
        min-width: 640px;
    }
}

@media (max-width: 560px) {
    .stratos-home .sp-steps-grid[b-7uf5vx2zy5] {
        grid-template-columns: 1fr !important;
    }
}
