/* ==========================================================================
   dissolveX HRMS — Onboarding Showcase Stylesheet
   Designed with the dissolveX Emerald Design System
   ========================================================================== */

:root {
    --emerald-deep: #030712;
    --emerald-dark: #0b2b20;
    --emerald-forest: #064e3b;
    --emerald-primary: #10b981;
    --emerald-accent: #059669;
    --emerald-glow: rgba(16, 185, 129, 0.22);
    --mint-bg: #ecfdf5;
    --mint-glow: rgba(16, 185, 129, 0.15);
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border-light: rgba(15, 57, 43, 0.09);
    --border-dark: rgba(255, 255, 255, 0.08);
    --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 16px 36px rgba(15, 57, 43, 0.08);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.2);
    --font-sans: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Instrument Serif', Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    overflow-x: clip;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #eaf6f0;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: #eaf6f0;
    background-image: radial-gradient(circle at 50% 20%, rgba(16, 185, 129, 0.20) 0%, rgba(230, 247, 240, 0.75) 45%, #eaf6f0 80%);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

button {
    -webkit-tap-highlight-color: transparent;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, #0b2b20 0%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-right: 4px;
}

/* ==========================================================================
   Floating Navbar
   ========================================================================== */

/* Right Translucent Pill Capsule (Matching Screenshot) */

/* ==========================================================================
   Hero Section
   ========================================================================== */
.onb-hero-section {
    position: relative;
    padding: 140px 0 80px;
    background: transparent;
    overflow: hidden;
    text-align: center;
}

.onb-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 6px 16px;
    border-radius: 9999px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #064e3b;
    letter-spacing: 0.2px;
}

.onb-hero-pill .pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
}

.onb-hero-title {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.14;
    color: #0c2017;
    letter-spacing: -2px;
    margin-bottom: 22px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.onb-hero-title .serif-italic {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 4.8rem;
    color: #116949;
    background: linear-gradient(135deg, #0b2b20 0%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    letter-spacing: -0.5px;
    padding-right: 6px;
}

.onb-hero-desc {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.65;
    max-width: 720px;
    margin: 0 auto 36px;
}

.onb-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

/* Key Metric KPIs (Matching Screenshot) */

/* Hero UI Mockup Card */
/* Hero UI Mockup Card (Airy, Professional Enterprise SaaS Style) */
.onb-hero-mockup-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    border-radius: 28px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.22) 0%, rgba(255, 255, 255, 0.95) 45%, rgba(16, 185, 129, 0.15) 100%);
    box-shadow: 0 25px 70px -15px rgba(16, 185, 129, 0.18), 0 10px 30px -5px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.22);
}

.onb-hero-mockup-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(15, 57, 43, 0.08);
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.03);
}

.onb-mockup-header {
    background: #ffffff;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(15, 57, 43, 0.06);
}

.onb-card-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.onb-card-brand-img {
    height: 22px;
    width: auto;
    display: block;
    object-fit: contain;
}

.onb-card-brand-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: #065f46;
    background: #ecfdf5;
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 3px 9px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.onb-card-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #047857;
    background: #f0fdf4;
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 5px 14px;
    border-radius: 9999px;
}

.onb-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
    animation: onbPulse 2s infinite ease-in-out;
}

@keyframes onbPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* Welcome Canvas (2 Columns) */
.onb-welcome-canvas {
    display: grid;
    grid-template-columns: 1.02fr 1.18fr;
    gap: 40px;
    align-items: center;
    padding: 40px 44px 44px;
    background: linear-gradient(135deg, #f8fdfa 0%, #ffffff 45%, #f8fafc 80%, #f0fdf4 100%);
    position: relative;
}

/* Left Visual Column */
.onb-welcome-visual-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.onb-visual-frame {
    position: relative;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.16);
    box-shadow: 0 16px 40px -10px rgba(16, 185, 129, 0.12), 0 6px 18px rgba(15, 23, 42, 0.04);
}

.onb-visual-illustration {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.onb-visual-floating-tag {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 6px 14px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #065f46;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.onb-tag-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #065f46;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 900;
}

/* Right Content Column */
.onb-welcome-content-col {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.onb-welcome-title-wrap {
    margin-bottom: 12px;
}

.onb-welcome-pill-sub {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #059669;
    margin-bottom: 6px;
}

.onb-welcome-title {
    font-family: var(--font-sans);
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.08;
    letter-spacing: -1.2px;
    margin: 0;
}

.onb-welcome-title .serif-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: #065f46;
    font-size: 3.2rem;
    letter-spacing: -0.5px;
}

.onb-welcome-message {
    font-size: 0.94rem;
    line-height: 1.65;
    color: #475569;
    margin: 14px 0 20px;
    max-width: 500px;
}

/* Employee Profile Card */
.onb-employee-profile-card {
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 4px 18px rgba(16, 185, 129, 0.06), 0 2px 6px rgba(15, 23, 42, 0.03);
    margin-bottom: 22px;
}

.onb-profile-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.onb-avatar-wrap {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.onb-profile-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #10b981;
    display: block;
}

.onb-avatar-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 11px;
    height: 11px;
    background: #10b981;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

.onb-profile-details {
    display: flex;
    flex-direction: column;
}

.onb-profile-name {
    font-size: 0.94rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 2px;
}

.onb-profile-role {
    font-size: 0.78rem;
    font-weight: 500;
    color: #64748b;
    margin: 0;
}

.onb-profile-meta-tags {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: right;
}

.onb-meta-item {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.onb-meta-label {
    color: #64748b;
}

.onb-meta-sep {
    color: #cbd5e1;
}

.onb-meta-val {
    color: #0f172a;
    font-weight: 700;
}

/* Action Area */
.onb-welcome-footer-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Part of the welcome-screen illustration, not a control: it has no action,
   so it has no pointer, hover or press state either. The font is pinned to
   what it rendered with while it was a <button>, so its size is unchanged. */
.onb-get-started-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: normal;
    padding: 11px 22px;
    border-radius: 12px;
    border: none;
    cursor: default;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.28);
}

.onb-welcome-stepper-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 6px 12px;
    border-radius: 12px;
}

.onb-stepper-check-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #065f46;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

.onb-stepper-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.onb-stepper-status {
    font-size: 0.76rem;
    font-weight: 700;
    color: #065f46;
}

.onb-stepper-count {
    font-size: 0.7rem;
    color: #64748b;
}

/* ==========================================================================
   Showcase Sections (Split layout with UI Cards)
   ========================================================================== */
.onb-showcase-section {
    padding: 100px 0;
    position: relative;
}

.onb-showcase-section.alt-bg {
    background: rgba(230, 247, 240, 0.45);
}

.onb-section-tag {
    display: inline-block;
    background: #ecfdf5;
    color: #022c22;
    border: 1px solid rgba(16, 185, 129, 0.3);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

/* Wide Section Header for Pre-onboarding */
.onb-section-header-wide {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 48px;
    align-items: flex-start;
    margin-bottom: 44px;
}

.onb-header-wide-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.onb-header-wide-left .onb-section-tag {
    margin-top: 0;
    margin-bottom: 14px;
}

.onb-header-wide-left .onb-section-title {
    margin-bottom: 0;
}

.onb-header-wide-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.onb-header-wide-right .onb-section-desc {
    margin-top: 0;
    padding-top: 3px;
    margin-bottom: 16px;
}

.onb-studio-quick-metrics {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.onb-metric-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #f0fdf4;
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #065f46;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 9999px;
}

.onb-metric-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
}

/* Full-Width Interactive Studio Workspace Mockup */
.onb-studio-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    border-radius: 26px;
    padding: 10px;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.18) 0%, rgba(255, 255, 255, 0.95) 45%, rgba(6, 78, 59, 0.12) 100%);
    box-shadow: 0 25px 70px -15px rgba(16, 185, 129, 0.16), 0 10px 30px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.22);
}

.onb-studio-window {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 57, 43, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    user-select: none;
    pointer-events: none;
}

.onb-studio-topbar {
    background: #f8fafc;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
}

.onb-studio-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.onb-studio-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.onb-studio-dot.red {
    background: #ef4444;
}

.onb-studio-dot.yellow {
    background: #f59e0b;
}

.onb-studio-dot.green {
    background: #10b981;
}

.onb-studio-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 500;
}

.onb-bc-sep {
    color: #cbd5e1;
}

.onb-bc-current {
    color: #0f172a;
    font-weight: 700;
}

.onb-studio-top-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.onb-studio-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #047857;
    background: #ecfdf5;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 3px 10px;
    border-radius: 9999px;
}

.onb-studio-encryption-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.74rem;
    font-weight: 600;
    color: #475569;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 3px 10px;
    border-radius: 9999px;
}

/* Studio Grid Layout */
.onb-studio-grid {
    display: grid;
    grid-template-columns: 270px 1fr;
    min-height: 460px;
    background: #ffffff;
}

/* Left Sidebar */
.onb-studio-sidebar {
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
    padding: 22px 16px;
    display: flex;
    flex-direction: column;
}

.onb-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.onb-sidebar-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
}

.onb-sidebar-edit-btn {
    background: transparent;
    border: none;
    color: #64748b;
    cursor: default;
    padding: 4px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.onb-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.onb-sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid transparent;
    background: transparent;
    color: #475569;
    font-size: 0.86rem;
    font-weight: 600;
    cursor: default;
    text-align: left;
}

.onb-sidebar-nav-item.completed {
    color: #334155;
}

.onb-sidebar-nav-item.completed .onb-item-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ecfdf5;
    color: #059669;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 900;
}

.onb-sidebar-nav-item .onb-item-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #475569;
}

.onb-sidebar-nav-item.active {
    background: #ffffff;
    border-color: rgba(16, 185, 129, 0.25);
    color: #065f46;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.08);
}

.onb-item-badge {
    margin-left: auto;
    font-size: 0.68rem;
    font-weight: 700;
    color: #047857;
    background: #ecfdf5;
    padding: 2px 7px;
    border-radius: 9999px;
}

.onb-item-active-dot {
    margin-left: auto;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
}

.onb-sidebar-toggle-row {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.onb-toggle-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
    display: block;
}

.onb-toggle-sub {
    font-size: 0.7rem;
    color: #64748b;
    display: block;
}

/* Switch Slider */
.onb-switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
    flex-shrink: 0;
}

.onb-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.onb-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: 0.25s;
    border-radius: 9999px;
}

.onb-slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: #ffffff;
    transition: 0.25s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.onb-switch input:checked+.onb-slider {
    background-color: #10b981;
}

.onb-switch input:checked+.onb-slider:before {
    transform: translateX(16px);
}

/* Right Main Workspace */
.onb-studio-main {
    padding: 26px 30px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.onb-main-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.onb-main-title {
    font-size: 1.12rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 3px;
}

.onb-main-sub {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0;
}

.onb-main-header-badge {
    background: #f1f5f9;
    color: #334155;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 9999px;
    flex-shrink: 0;
}

/* Studio Table */
.onb-table-container {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 24px;
}

.onb-studio-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.86rem;
}

.onb-studio-table thead th {
    background: #f8fafc;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    padding: 10px 14px;
    text-align: left;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.onb-studio-table tbody td {
    padding: 14px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    vertical-align: middle;
}

.onb-task-name-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.onb-doc-type-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.onb-doc-type-icon.pdf {
    background: #fef2f2;
    color: #ef4444;
    border: 1px solid #fee2e2;
}

.onb-doc-type-icon.doc {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #d1fae5;
}

.onb-doc-type-icon.edu {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #dbeafe;
}

.onb-doc-type-icon.policy {
    background: #fdf4ff;
    color: #a855f7;
    border: 1px solid #f5d0fe;
}

.onb-doc-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    display: block;
    margin-bottom: 2px;
}

.onb-doc-meta {
    font-size: 0.74rem;
    color: #64748b;
    display: block;
}

.onb-tag-type {
    font-size: 0.74rem;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-block;
}

.onb-task-count-pill {
    font-size: 0.8rem;
    color: #475569;
    font-weight: 500;
}

/* Studio Footer */
.onb-studio-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
}

.onb-btn-studio-primary {
    background: #047857;
    color: #ffffff;
    border: none;
    font-size: 0.86rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 8px;
    cursor: default;
    box-shadow: 0 4px 12px rgba(4, 120, 87, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.onb-btn-studio-ghost {
    background: transparent;
    color: #64748b;
    border: 1px solid #cbd5e1;
    font-size: 0.86rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: default;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}

.onb-btn-studio-action {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #ffffff;
    border: none;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 8px;
    cursor: default;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.25);
}

.onb-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.16;
    color: #0b2b20;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.onb-section-desc {
    font-size: 1.08rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ==========================================================================
   Scenic Software Screenshot Image Mockups (Pure Display Presentations)
   ========================================================================== */

.onb-scenic-mockup-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    border-radius: 26px;
    padding: 38px 40px 0;
    background-image: none;
    background-size: cover;
    background-position: center 30%;
    box-shadow: 0 25px 65px -15px rgba(16, 185, 129, 0.18), 0 10px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.24);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none !important;
    cursor: default !important;
}

.onb-scenic-mockup-wrapper.onb-scenic-tracker {
    padding: 38px 38px 0;
}

.onb-scenic-mockup-wrapper>* {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

.onb-preview-modal-window,
.onb-tracker-dashboard-window {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 60px -8px rgba(15, 23, 42, 0.28), 0 6px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.85);
    pointer-events: none !important;
    user-select: none !important;
}

.onb-laptop-dashboard-window {
    width: 100% !important;
    max-width: 1060px !important;
    margin: 0 auto !important;
    border-radius: 12px 12px 0 0 !important;
    border-bottom: none !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    margin-bottom: 0 !important;
    box-shadow: 0 30px 70px -10px rgba(15, 23, 42, 0.38), 0 10px 25px rgba(0, 0, 0, 0.14);
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.onb-app-screenshot-card {
    pointer-events: none !important;
    user-select: none !important;
    cursor: default !important;
}

/* Modal Bar */

/* Section 2: Onboarding Preview Modal Grid */
.onb-preview-modal-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 480px;
    background: #ffffff;
}

.onb-modal-sidebar {
    background: #ffffff;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.onb-sidebar-geo-banner {
    position: relative;
    height: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.onb-poly-art {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.onb-brand-badge-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.onb-brand-modal-logo {
    height: 20px;
    width: auto;
    display: block;
    object-fit: contain;
}

.onb-modal-steps-list {
    padding: 16px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.onb-modal-step-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #475569;
}

.onb-modal-step-item.active {
    background: #f0fdf4;
    border-left: 3px solid #10b981;
    color: #065f46;
}

.onb-step-ico {
    font-size: 0.92rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.onb-step-col {
    display: flex;
    flex-direction: column;
}

.onb-step-txt.highlight {
    font-weight: 700;
    color: #047857;
}

.onb-step-sub {
    font-size: 0.68rem;
    color: #64748b;
}

.onb-modal-sidebar-foot {
    margin-top: auto;
    padding: 16px 18px;
    border-top: 1px solid #f1f5f9;
}

.onb-foot-prog-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.76rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 6px;
}

.onb-prog-num {
    color: #0f172a;
}

.onb-foot-prog-bar {
    height: 6px;
    border-radius: 9999px;
    background: #e2e8f0;
    overflow: hidden;
}

.onb-foot-prog-bar-fill {
    height: 100%;
    background: #10b981;
}

/* Form View inside Modal */
.onb-modal-form-view {
    background: #f8fafc;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.onb-form-sub-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.onb-card-section-label {
    font-size: 0.86rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
}

.onb-fields-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 22px;
}

.onb-mock-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.onb-field-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}

.onb-field-input-box {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.82rem;
    color: #1e293b;
    font-weight: 500;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ==========================================================================
   Full Laptop Dashboard Application Components (Section 2 Mockup)
   ========================================================================== */
.onb-laptop-chrome {
    background: #0f172a;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    user-select: none;
}

.onb-laptop-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

.onb-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.onb-dot-red {
    background: #ef4444;
}

.onb-dot-yellow {
    background: #f59e0b;
}

.onb-dot-green {
    background: #10b981;
}

.onb-laptop-tabs {
    display: flex;
    align-items: center;
    gap: 6px;
}

.onb-laptop-tab {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 5px 12px;
    border-radius: 6px 6px 0 0;
    font-size: 0.72rem;
    font-weight: 600;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.05);
}

.onb-laptop-tab.active {
    background: #1e293b;
    color: #f8fafc;
}

.onb-tab-icon {
    font-size: 0.8rem;
}

.onb-tab-close {
    font-size: 0.85rem;
    line-height: 1;
    color: #cbd5e1;
    margin-left: 2px;
}

.onb-laptop-url-bar {
    margin-left: auto;
    background: #1e293b;
    border-radius: 6px;
    padding: 4px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: #cbd5e1;
    font-family: monospace;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.onb-url-text {
    font-weight: 500;
}

.onb-url-badge {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-family: var(--font-sans);
}

/* Application Internal Nav Header */
.onb-app-topbar {
    background: #ffffff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.onb-app-brand-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.onb-app-logo {
    height: 20px;
    width: auto;
    object-fit: contain;
}

.onb-app-module-pill {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 9999px;
}

.onb-app-search-box {
    flex: 1;
    max-width: 440px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.76rem;
    color: #64748b;
}

.onb-app-user-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.onb-notif-bell {
    position: relative;
    display: flex;
    align-items: center;
    color: #64748b;
}

.onb-bell-dot {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
}

.onb-app-user-pill {
    display: flex;
    align-items: center;
    gap: 8px;
}

.onb-app-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #cbd5e1;
}

.onb-user-name-col {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.onb-user-name {
    font-size: 0.76rem;
    font-weight: 700;
    color: #0f172a;
}

.onb-user-role {
    font-size: 0.65rem;
    color: #64748b;
}

/* Laptop Grid & Workspace */
.onb-laptop-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    background: #f8fafc;
    min-height: 480px;
}

.onb-laptop-workspace {
    background: #f8fafc;
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.onb-workspace-welcome-banner {
    background: linear-gradient(135deg, #0b2b20 0%, #064e3b 100%);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(11, 43, 32, 0.15);
}

.onb-welcome-banner-text h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.onb-welcome-banner-text p {
    font-size: 0.74rem;
    color: #a7f3d0;
    margin: 0;
}

.onb-tag-pill-active {
    background: rgba(16, 185, 129, 0.25);
    border: 1px solid rgba(52, 211, 153, 0.4);
    color: #6ee7b7;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 9999px;
    white-space: nowrap;
}

.onb-workspace-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.onb-workspace-cards-grid .onb-form-sub-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px 18px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.onb-field-input-box.filled {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    font-weight: 600;
    font-size: 0.78rem;
}

.onb-card-status-ok {
    font-size: 0.72rem;
    font-weight: 600;
    color: #047857;
    margin-left: 8px;
}

.onb-milestones-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.onb-milestone-pill {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.onb-milestone-pill.checked {
    background: #ffffff;
    border-color: #d1fae5;
}

.onb-ms-left {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.onb-ms-ico {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #dcfce7;
    color: #047857;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.onb-ms-left strong {
    display: block;
    font-size: 0.76rem;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.onb-ms-left small {
    display: block;
    font-size: 0.67rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.onb-ms-tag {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    flex-shrink: 0;
}

.onb-ms-tag.ok {
    background: #dcfce7;
    color: #166534;
}

.onb-ms-tag.ship {
    background: #e0e7ff;
    color: #3730a3;
}

.onb-ms-tag.warn {
    background: #fef3c7;
    color: #92400e;
}

.onb-sidebar-buddy-card {
    margin-top: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 10px;
}

.onb-buddy-title {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #64748b;
    margin-bottom: 6px;
}

.onb-buddy-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.onb-buddy-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #065f46;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.onb-buddy-row strong {
    display: block;
    font-size: 0.74rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.1;
}

.onb-buddy-row small {
    display: block;
    font-size: 0.65rem;
    color: #64748b;
    line-height: 1.1;
}

/* ==========================================================================
   Section 3: Real-Time Reporting Dashboard Tracker Mockup
   ========================================================================== */
.onb-tracker-modal-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 480px;
    background: #ffffff;
}

.onb-tracker-sidebar {
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.onb-tracker-tabs-head {
    display: flex;
    background: #1e293b;
    padding: 6px;
}

.onb-tab-pill {
    flex: 1;
    padding: 7px 10px;
    text-align: center;
    font-size: 0.76rem;
    font-weight: 700;
    color: #94a3b8;
    border-radius: 6px;
}

.onb-tab-pill.active {
    background: #0f172a;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.onb-tracker-nav-tree {
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.onb-tree-header {
    font-size: 0.82rem;
    font-weight: 700;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
}

.onb-tree-header.closed {
    color: #64748b;
}

.onb-tree-sub-list {
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 2px;
}

.onb-tree-item {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
}

.onb-tree-item.active {
    background: #ecfdf5;
    color: #065f46;
    font-weight: 700;
    border-radius: 6px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Tracker Table */
.onb-tracker-table-wrap {
    overflow-x: auto;
    background: #ffffff;
}

.onb-report-screenshot-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.84rem;
}

.onb-report-screenshot-table thead th {
    background: #f1f3f9;
    padding: 11px 14px;
    font-size: 0.74rem;
    font-weight: 700;
    color: #475569;
    text-align: left;
    border-bottom: 1px solid #cbd5e1;
}

.onb-report-screenshot-table tbody td {
    padding: 10px 14px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    vertical-align: middle;
}

.onb-mock-check {
    width: 15px;
    height: 15px;
    border: 1.5px solid #cbd5e1;
    border-radius: 4px;
    display: inline-block;
    background: #ffffff;
}

.onb-table-person-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.onb-table-avatar-silhouette {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #e2e8f0;
}

.onb-table-person-info {
    display: flex;
    flex-direction: column;
}

.person-name {
    font-size: 0.86rem;
    font-weight: 700;
    color: #0f172a;
}

.person-email {
    font-size: 0.72rem;
    color: #64748b;
}

.onb-stat-text {
    font-size: 0.82rem;
    font-weight: 500;
    color: #334155;
    white-space: nowrap;
}

.onb-stat-text.onb-stat-done {
    color: #047857;
    font-weight: 700;
    background: #ecfdf5;
    padding: 3px 9px;
    border-radius: 9999px;
    border: 1px solid rgba(16, 185, 129, 0.25);
    display: inline-block;
}

/* ==========================================================================
   Bento Grid: More Reasons to Choose Dissolvex
   ========================================================================== */
.onb-bento-section {
    background: transparent;
    color: #0f172a;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.onb-bento-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 56px;
}

.onb-bento-header .onb-section-tag {
    margin-bottom: 16px;
}

.onb-bento-title {
    font-family: var(--font-sans);
    font-size: 2.85rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.18;
    letter-spacing: -0.6px;
    margin-bottom: 16px;
}

.onb-bento-title .serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: #059669;
    background: linear-gradient(135deg, #0b2b20 0%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.onb-bento-desc {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.65;
    max-width: 680px;
    margin: 0 auto;
}

.onb-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.onb-bento-card {
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: 20px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.05), 0 1px 3px rgba(15, 23, 42, 0.03);
    transition: none !important;
    transform: none !important;
}

.onb-bento-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #ecfdf5;
    border: 1px solid rgba(16, 185, 129, 0.28);
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.onb-bento-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.35;
}

.onb-bento-card-p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.65;
}

/* Customer Testimonial Slider (3 Clients) */
.onb-testimonial-slider-wrap {
    background: #ffffff;
    color: #0f172a;
    border-radius: 24px;
    padding: 42px 48px 36px;
    max-width: 980px;
    margin: 0 auto;
    border: 1px solid rgba(16, 185, 129, 0.26);
    box-shadow: 0 25px 65px -15px rgba(16, 185, 129, 0.16), 0 8px 24px rgba(15, 23, 42, 0.04);
    position: relative;
}

.onb-slider-viewport {
    overflow: hidden;
    width: 100%;
}

.onb-slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.onb-testimonial-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
}

.onb-slide-badge-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.onb-company-pill {
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 0.6px;
    color: #065f46;
    background: #ecfdf5;
    border: 1px solid rgba(16, 185, 129, 0.28);
    padding: 4px 14px;
    border-radius: 9999px;
    text-transform: uppercase;
}

.onb-slide-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.onb-stat-chip {
    font-size: 0.76rem;
    color: #047857;
    background: #f0fdf4;
    border: 1px solid rgba(16, 185, 129, 0.22);
    padding: 4px 10px;
    border-radius: 9999px;
}

.onb-stat-chip strong {
    font-weight: 700;
    color: #065f46;
}

.onb-testimonial-quote {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.65;
    color: #1e293b;
    margin: 4px 0 12px;
    font-style: normal;
}

/* Slides in the track stretch to the tallest one; pushing the author row to
   the bottom keeps the arrows in the same place whatever the quote length. */
.onb-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
    gap: 16px;
    margin-top: auto;
}

.onb-author-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.onb-author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #10b981;
    flex-shrink: 0;
}

.onb-author-name {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 2px;
}

.onb-author-company {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0;
}

.onb-slider-nav-arrows {
    display: flex;
    align-items: center;
    gap: 8px;
}

.onb-slider-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .onb-slider-btn:hover {
        background: #10b981;
        color: #ffffff;
        border-color: #10b981;
    }
}

.onb-slider-dots-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
}

.onb-slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 9999px;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

.onb-slider-dot.active {
    width: 26px;
    background: #10b981;
}

/* ==========================================================================
   FAQ Section (Light Theme matching Image 2, Split Layout)
   ========================================================================== */
.onb-faq-section {
    background: transparent;
    color: #0f172a;
    padding: 100px 0 120px;
    position: relative;
    border-top: 1px solid rgba(16, 185, 129, 0.15);
}

.onb-faq-badge-center {
    text-align: center;
    margin-bottom: 40px;
}

.onb-faq-badge-center .onb-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.28);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.08);
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.onb-faq-split-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 56px;
    align-items: flex-start;
}

.onb-faq-split-left {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 110px;
    align-self: flex-start;
    text-align: left;
}

.onb-faq-title {
    font-family: var(--font-sans);
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.onb-faq-title .serif-italic {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 3.2rem;
    margin-top: 4px;
    background: linear-gradient(135deg, #0b2b20 0%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.onb-faq-desc {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 360px;
}

.onb-faq-support-box {
    background: #ffffff;
    border: 1px solid rgba(15, 57, 43, 0.1);
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 16px rgba(15, 57, 43, 0.04);
}

.onb-faq-support-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #e6f7f0;
    color: #0b2b20;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.onb-faq-support-text p {
    font-size: 0.82rem;
    color: #64748b;
    margin-bottom: 2px;
}

.onb-faq-login-link-btn {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0b2b20;
    text-decoration: none;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}

@media (hover: hover) and (pointer: fine) {
    .onb-faq-login-link-btn:hover {
        color: #10b981;
    }
}

/* Accordion List */
.onb-faq-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    text-align: left;
}

.onb-faq-item {
    background: #ffffff;
    border: 1px solid rgba(15, 57, 43, 0.1);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 2px 8px rgba(15, 57, 43, 0.03);
    cursor: pointer;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.onb-faq-item.active {
    border-color: rgba(16, 185, 129, 0.45);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.09);
    background: linear-gradient(180deg, #f8fdfa 0%, #ffffff 100%);
}

.onb-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    user-select: none;
    line-height: 1.35;
    background: transparent;
    border: none;
    padding: 0;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}

.onb-faq-item.active .onb-faq-question {
    color: #0b2b20;
}

.onb-faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e6f7f0;
    color: #0b2b20;
    border: 1px solid rgba(16, 185, 129, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.onb-faq-item.active .onb-faq-icon {
    background: #0b2b20;
    color: #ffffff;
    border-color: #0b2b20;
}

.onb-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
}

.onb-faq-item.active .onb-faq-answer {
    grid-template-rows: 1fr;
}

.onb-faq-answer-inner {
    min-height: 0;
    overflow: hidden;
}

.onb-faq-answer-inner p {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.68;
    padding-top: 14px;
    margin-top: 14px;
    border-top: 1px solid rgba(15, 57, 43, 0.08);
    margin-bottom: 0;
}

/* ==========================================================================
   Bottom CTA Banner ("First steps matter") - Light Emerald SaaS Theme
   ========================================================================== */
.onb-cta-banner-section {
    position: relative;
    padding: 120px 0 130px;
    background-image: none;
    background-size: cover;
    background-position: center;
    color: #0c2017;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid rgba(16, 185, 129, 0.22);
}

.onb-cta-banner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(2px);
    z-index: 0;
}

.onb-cta-banner-section>* {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1080px) {
    .onb-hero-title {
        font-size: 3.2rem;
        letter-spacing: -1.5px;
    }

    .onb-hero-title .serif-italic {
        font-size: 3.8rem;
    }

    .onb-welcome-canvas {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 24px;
        text-align: center;
    }

    .onb-welcome-visual-col {
        max-width: 520px;
        margin: 0 auto;
    }

    .onb-welcome-content-col {
        text-align: center;
        align-items: center;
    }

    .onb-welcome-title {
        font-size: 2.4rem;
    }

    .onb-welcome-title .serif-title {
        font-size: 2.8rem;
    }

    .onb-employee-profile-card {
        width: 100%;
        max-width: 520px;
    }

    .onb-welcome-footer-actions {
        justify-content: center;
    }

    .onb-section-header-wide {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .onb-scenic-mockup-wrapper {
        padding: 24px 20px 24px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    .onb-scenic-mockup-wrapper.onb-scenic-tracker {
        padding: 24px 20px 0;
    }

    .onb-studio-wrapper {
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 12px 10px;
    }

    .onb-studio-window,
    .onb-laptop-dashboard-window,
    .onb-preview-modal-window,
    .onb-tracker-dashboard-window {
        flex-shrink: 0;
        transform-origin: top center;
    }

    .onb-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .onb-faq-split-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .onb-faq-split-left {
        position: static !important;
    }
}

@media (max-width: 768px) {
    .onb-mockup-header {
        padding: 12px 16px;
    }

    .onb-welcome-canvas {
        padding: 24px 16px 28px;
    }

    .onb-employee-profile-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 14px;
    }

    .onb-profile-meta-tags {
        text-align: center;
        align-items: center;
    }

    .onb-meta-item {
        justify-content: center;
    }

    .onb-welcome-footer-actions {
        flex-direction: column;
        width: 100%;
    }

    .onb-get-started-btn {
        width: 100%;
        justify-content: center;
    }

    .onb-welcome-stepper-pill {
        width: 100%;
        justify-content: center;
    }

    .onb-scenic-mockup-wrapper {
        padding: 16px 12px 16px;
        border-radius: 18px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    .onb-scenic-mockup-wrapper.onb-scenic-tracker {
        padding: 16px 12px 0;
    }

    .onb-studio-wrapper {
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 10px 8px;
        border-radius: 18px;
    }

    .onb-studio-window,
    .onb-laptop-dashboard-window,
    .onb-preview-modal-window,
    .onb-tracker-dashboard-window {
        flex-shrink: 0;
        transform-origin: top center;
    }

    .onb-tracker-table-wrap {
        overflow-x: auto;
    }

    .onb-report-screenshot-table {
        min-width: 580px;
    }

    .onb-hero-title {
        font-size: 2.3rem;
        letter-spacing: -1px;
    }

    .onb-hero-title .serif-italic {
        font-size: 2.7rem;
    }

    .onb-section-title {
        font-size: 2rem;
    }

    .onb-bento-title {
        font-size: 2.2rem;
    }

    .onb-bento-grid {
        grid-template-columns: 1fr;
    }

    .onb-testimonial-slider-wrap {
        padding: 24px 20px 20px;
        border-radius: 18px;
    }

    .onb-testimonial-quote {
        font-size: 1.05rem;
    }

    .onb-testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .onb-slider-nav-arrows {
        width: 100%;
        justify-content: flex-end;
    }
}

/* Interactive Floating Notification Toast */

/* ==========================================================================
   Permanent Card & Div Stability Rule (No Hover Movement / Displacements)
   ========================================================================== */
.onb-hero-mockup-wrapper,
.onb-hero-mockup-card,
.onb-welcome-canvas,
.onb-visual-frame,
.onb-employee-profile-card,
.onb-studio-wrapper,
.onb-studio-window,
.onb-scenic-mockup-wrapper,
.onb-preview-modal-window,
.onb-tracker-dashboard-window,
.onb-app-screenshot-card,
.onb-bento-card,
[class*="-card"],
[class*="-box"],
[class*="-frame"],
[class*="-window"],
[class*="-wrapper"] {
    transition: none !important;
}

@media (hover: hover) and (pointer: fine) {

    .onb-hero-mockup-wrapper:hover,
    .onb-hero-mockup-card:hover,
    .onb-welcome-canvas:hover,
    .onb-visual-frame:hover,
    .onb-employee-profile-card:hover,
    .onb-studio-wrapper:hover,
    .onb-studio-window:hover,
    .onb-scenic-mockup-wrapper:hover,
    .onb-preview-modal-window:hover,
    .onb-tracker-dashboard-window:hover,
    .onb-app-screenshot-card:hover,
    .onb-bento-card:hover,
    [class*="-card"]:hover,
    [class*="-box"]:hover,
    [class*="-frame"]:hover,
    [class*="-window"]:hover,
    [class*="-wrapper"]:hover {
        transform: none !important;
    }
}

/* ==========================================================================
   Page Scenic CTA Backdrop Image
   ========================================================================== */
.feat-cta-banner-section,
[class*="-cta-banner-section"],
.onb-cta-banner-section,
.mf-download-section {
    background-image: none !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* ==========================================================================
   Custom Onboarding CTA Showcase Section ("First steps matter")
   ========================================================================== */
.onb-cta-showcase-section {
    padding: 38px 0 60px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.onb-cta-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.onb-cta-showcase-card {
    background: linear-gradient(135deg, #f3faf6 0%, #e6f6ee 50%, #d8f1e4 100%);
    border: 1.5px solid rgba(16, 185, 129, 0.28);
    border-radius: 28px;
    padding: 42px 44px 42px 48px;
    display: grid;
    grid-template-columns: 1.12fr 0.98fr;
    gap: 36px;
    align-items: center;
    position: relative;
    box-shadow: 0 16px 48px rgba(16, 185, 129, 0.08), 0 4px 16px rgba(0, 0, 0, 0.03);
    overflow: visible;
}

/* --- Left Column: Copy & Actions --- */
.onb-cta-showcase-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    z-index: 2;
    text-align: left;
}

.onb-cta-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #ffffff;
    border: 1px solid #c9edd9;
    border-radius: 100px;
    padding: 5px 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0d5435;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.onb-cta-badge-pill svg {
    color: #10b981;
}

.onb-cta-showcase-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.35rem;
    font-weight: 800;
    line-height: 1.18;
    color: #0b2b20;
    margin: 0;
    letter-spacing: -0.02em;
}

.onb-cta-showcase-title .serif-italic {
    font-family: 'Instrument Serif', Georgia, serif !important;
    font-style: italic !important;
    font-weight: 400 !important;
    font-size: 2.75rem !important;
    color: #065f46 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: initial !important;
    display: inline !important;
    line-height: 1.1 !important;
    letter-spacing: -0.01em;
}

.onb-cta-showcase-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #2d5a47;
    margin: 0;
    max-width: 500px;
}

.onb-cta-actions-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.onb-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #065f46;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 100px;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(6, 95, 70, 0.28);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
    .onb-cta-btn-primary:hover {
        background: #047857;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(6, 95, 70, 0.32);
        color: #ffffff !important;
    }
}

.onb-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffffff;
    color: #065f46 !important;
    border: 1.5px solid #a7dcc2;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none !important;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
    .onb-cta-btn-secondary:hover {
        border-color: #065f46;
        transform: translateY(-2px);
        color: #065f46 !important;
        background: #ffffff;
        box-shadow: 0 4px 12px rgba(6, 95, 70, 0.12);
    }
}

.onb-cta-micro-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
    margin-top: 4px;
    width: 100%;
    max-width: 500px;
}

.onb-micro-feat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.onb-micro-icon-box {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #10b981;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.onb-micro-icon-box svg {
    width: 11px;
    height: 11px;
    stroke: #ffffff;
}

.onb-micro-feat-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1b4d38;
}

/* --- Right Column: Mockup Showcase + Doodle --- */
.onb-cta-showcase-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.onb-cta-mockup-stage {
    position: relative;
    width: 485px;
    max-width: 100%;
    padding: 40px 0;
    box-sizing: border-box;
    user-select: none;
}

.onb-cta-doodle-sparks {
    position: absolute;
    top: 2px;
    left: 86px;
    pointer-events: none;
    z-index: 5;
}

/* Floating Badges */
.onb-floating-badge {
    position: absolute;
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.28);
    border-radius: 12px;
    padding: 6px 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.onb-float-top-right {
    top: 2px;
    right: 10px;
}

.onb-float-bottom-left {
    bottom: 2px;
    left: 10px;
}

.onb-float-icon-wrap {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.onb-float-icon-wrap.icon-lightning {
    background: #dcfce7;
    color: #15803d;
}

.onb-float-icon-wrap.icon-check {
    background: #16a34a;
    color: #ffffff;
}

.onb-float-title {
    font-size: 0.72rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
}

.onb-float-bars {
    display: flex;
    flex-direction: column;
    gap: 2.5px;
    margin-top: 3px;
}

.onb-bar {
    height: 3px;
    background: #e2e8f0;
    border-radius: 99px;
}

.bar-1 {
    width: 48px;
}

.bar-2 {
    width: 32px;
}

/* Main Dashboard Window */
.onb-cta-mockup-window {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #cce8da;
    box-shadow: 0 14px 36px rgba(11, 43, 32, 0.12);
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    transform: none !important;
}

.onb-cta-mockup-sidebar {
    width: 95px;
    border-right: 1px solid #f1f5f9;
    padding: 12px 8px 32px;
    display: flex;
    flex-direction: column;
    background: #fafcfa;
    flex-shrink: 0;
}

.onb-mockup-brand-logo {
    font-size: 0.82rem;
    font-weight: 800;
    color: #0b2b20;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
    padding: 0 4px;
}

.onb-mockup-brand-logo .brand-x {
    color: #10b981;
}

.onb-mockup-nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.onb-mockup-nav-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 6px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #64748b;
}

.onb-mockup-nav-item.active {
    background: #dcfce7;
    color: #15803d;
    font-weight: 700;
}

.onb-cta-mockup-content {
    flex: 1;
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    min-width: 0;
}

.onb-cta-mockup-topbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 8px;
}

.onb-mockup-bell-icon {
    color: #64748b;
    display: flex;
    align-items: center;
}

.onb-cta-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 114px;
    gap: 10px;
    align-items: center;
}

.onb-stepper-header {
    margin-bottom: 8px;
}

.onb-stepper-title {
    font-size: 0.82rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 2px 0;
}

.onb-stepper-sub {
    font-size: 0.58rem;
    color: #64748b;
    margin: 0;
}

.onb-stepper-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
    position: relative;
    padding-left: 2px;
}

.onb-step-item {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    position: relative;
}

.onb-step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 15px;
    bottom: -6px;
    width: 1.5px;
    background: #bbf7d0;
}

.onb-step-marker {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    z-index: 1;
}

.onb-step-item.pending .onb-step-marker {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
}

.onb-step-name {
    font-size: 0.65rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.15;
}

.onb-step-status {
    font-size: 0.52rem;
    color: #64748b;
}

.onb-cta-profile-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.onb-cta-welcome-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 8px 10px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.onb-welcome-avatar-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #dcfce7;
    border: 2px solid #22c55e;
    overflow: hidden;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(34, 197, 94, 0.2);
}

.onb-welcome-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.onb-welcome-card-text {
    font-size: 0.66rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 4px;
}

.onb-welcome-squiggle {
    display: flex;
    justify-content: center;
}

/* Doodle Note (Positioned cleanly beside stage) */
.onb-cta-doodle-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    flex-shrink: 0;
    pointer-events: none;
    user-select: none;
}

.onb-doodle-text {
    font-family: 'Caveat', cursive, sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: #166534;
    line-height: 1.08;
    text-align: center;
    transform: rotate(3deg);
    margin-bottom: 2px;
}

.onb-doodle-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   Responsive Breakpoints for Onboarding CTA Showcase
   ========================================================================== */
@media (max-width: 1200px) and (min-width: 961px) {
    .onb-cta-showcase-card {
        grid-template-columns: 1fr 1fr;
        padding: 36px 30px;
        gap: 24px;
    }

    .onb-cta-showcase-title {
        font-size: 2.4rem;
    }

    .onb-cta-showcase-title .serif-italic {
        font-size: 2.8rem;
    }

    .onb-cta-mockup-stage {
        width: 420px;
    }

    .onb-cta-doodle-note {
        display: none;
    }
}

@media (max-width: 960px) {
    .onb-cta-showcase-card {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 36px 24px;
        text-align: center;
    }

    .onb-cta-showcase-left {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }

    .onb-cta-showcase-title {
        font-size: 2.3rem;
    }

    .onb-cta-showcase-title .serif-italic {
        font-size: 2.7rem;
    }

    .onb-cta-actions-row {
        justify-content: center;
    }

    .onb-cta-micro-features {
        margin: 0 auto;
    }

    .onb-cta-showcase-right {
        justify-content: center;
        width: 100%;
    }

    .onb-cta-mockup-stage {
        width: 100%;
        max-width: 460px;
    }

    .onb-cta-doodle-note {
        display: none;
    }

    .onb-float-top-right {
        top: -14px;
        right: -8px;
    }

    .onb-float-bottom-left {
        bottom: -14px;
        left: -8px;
    }
}

@media (max-width: 680px) {
    .onb-cta-showcase-section {
        padding: 36px 0 54px;
    }

    .onb-cta-showcase-card {
        padding: 26px 14px 30px;
        border-radius: 24px;
        gap: 26px;
    }

    .onb-cta-showcase-title {
        font-size: 1.85rem;
        letter-spacing: -0.8px;
    }

    .onb-cta-showcase-title .serif-italic {
        font-size: 2.25rem;
    }

    .onb-cta-showcase-desc {
        font-size: 0.88rem;
        margin-bottom: 20px;
    }

    .onb-cta-actions-row {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-bottom: 24px;
    }

    .onb-cta-btn-primary,
    .onb-cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .onb-cta-micro-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 16px;
        max-width: 300px;
        margin: 0 auto;
    }

    .onb-cta-showcase-right {
        overflow: hidden;
        padding: 16px 8px 20px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    .onb-cta-doodle-note {
        display: none !important;
    }

    .onb-cta-mockup-stage {
        flex-shrink: 0;
        transform-origin: top center;
        margin: 0 auto;
        position: relative;
    }

    .onb-cta-mockup-window {
        width: 100%;
        border-radius: 18px;
    }

    .onb-cta-mockup-sidebar {
        display: flex;
        width: 90px;
        padding: 10px 6px;
    }

    .onb-mockup-nav-item span {
        display: inline;
        font-size: 0.62rem;
    }

    .onb-cta-mockup-content {
        padding: 12px 12px 14px;
        flex: 1;
    }

    .onb-cta-dashboard-grid {
        grid-template-columns: 1fr 108px;
        gap: 8px;
        align-items: center;
    }

    .onb-stepper-title {
        font-size: 0.78rem;
    }

    .onb-stepper-sub {
        font-size: 0.54rem;
        margin-bottom: 6px;
    }

    .onb-step-name {
        font-size: 0.6rem;
    }

    .onb-step-status {
        font-size: 0.48rem;
    }

    .onb-step-marker {
        width: 13px;
        height: 13px;
    }

    .onb-cta-welcome-card {
        padding: 10px 6px 8px;
        border-radius: 12px;
    }

    .onb-welcome-avatar-wrap {
        width: 38px;
        height: 38px;
        margin-bottom: 5px;
    }

    .onb-welcome-card-text {
        font-size: 0.62rem;
        line-height: 1.2;
    }

    .onb-floating-badge {
        padding: 6px 10px;
        border-radius: 12px;
        gap: 7px;
        box-shadow: 0 6px 18px rgba(11, 43, 32, 0.12);
    }

    .onb-float-icon-wrap {
        width: 22px;
        height: 22px;
    }

    .onb-float-title {
        font-size: 0.62rem;
        line-height: 1.15;
    }

    .onb-float-bars {
        display: flex;
    }

    .onb-float-top-right {
        top: -16px;
        right: -14px;
    }

    .onb-float-bottom-left {
        bottom: -16px;
        left: -14px;
    }
}

/* ==========================================================================
   REAL SCREENSHOT IMAGE MOCKUPS (High-DPI Responsive Showcase)
   ========================================================================== */
.onb-img-mockup-wrapper {
    width: 100%;
    max-width: 1180px;
    margin: 36px auto 0;
    position: relative;
    z-index: 2;
}

.onb-img-mockup-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 45px -10px rgba(11, 43, 32, 0.12), 0 10px 20px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: relative;
}

.onb-real-mockup-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .onb-img-mockup-wrapper {
        margin: 20px auto 0;
    }
    .onb-img-mockup-card {
        border-radius: 12px;
    }
    .onb-real-mockup-img {
        border-radius: 11px;
    }
}