.imotive-onboarding-page {
    background: #f8fafc;
    color: #0f172a;
}
.imotive-onboarding-page * { box-sizing: border-box; }
.imotive-onboarding-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}
.imotive-onboarding-hero {
    padding: 72px 0 56px;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.imotive-onboarding-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    align-items: center;
    gap: 52px;
}
.imotive-onboarding-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #dbeafe;
    background: #eff6ff;
    color: #0369a1;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.imotive-onboarding-kicker::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0ea5e9;
}
.imotive-onboarding-title {
    margin: 22px 0 18px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.01;
    letter-spacing: -.055em;
    font-weight: 750;
}
.imotive-onboarding-lead {
    max-width: 660px;
    margin: 0;
    color: #475569;
    font-size: 19px;
    line-height: 1.65;
}
.imotive-onboarding-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 12px;
    margin-top: 28px;
}
.imotive-onboarding-point {
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
}
.imotive-onboarding-point strong { display: block; font-size: 14px; margin-bottom: 4px; }
.imotive-onboarding-point span { color: #64748b; font-size: 13px; line-height: 1.45; }
.imotive-signup-card,
.imotive-quickstart-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}
.imotive-signup-card h2,
.imotive-quickstart-card h2 { margin: 0 0 8px; font-size: 25px; letter-spacing: -.03em; }
.imotive-signup-card > p,
.imotive-quickstart-card > p { margin: 0 0 22px; color: #64748b; line-height: 1.6; }
.imotive-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.imotive-field { display: grid; gap: 7px; }
.imotive-field.is-full { grid-column: 1 / -1; }
.imotive-field label,
.imotive-field legend { color: #334155; font-size: 13px; font-weight: 650; }
.imotive-field input,
.imotive-field select,
.imotive-field textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    background: #fff;
    color: #0f172a;
    font: inherit;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}
.imotive-field textarea { min-height: 96px; resize: vertical; }
.imotive-field input:focus,
.imotive-field select:focus,
.imotive-field textarea:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14,165,233,.12);
}
.imotive-field-help { color: #64748b; font-size: 12px; line-height: 1.45; }
.imotive-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.imotive-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #475569;
    font-size: 13px;
    line-height: 1.5;
}
.imotive-checkbox-row input { margin-top: 3px; }
.imotive-onboarding-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    border: 1px solid #0f172a;
    border-radius: 999px;
    padding: 11px 20px;
    background: #0f172a;
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, opacity .18s ease;
}
.imotive-onboarding-button:hover { background: #020617; transform: translateY(-1px); }
.imotive-onboarding-button:disabled { opacity: .55; cursor: wait; transform: none; }
.imotive-onboarding-button.is-secondary { background: #fff; color: #0f172a; border-color: #cbd5e1; }
.imotive-onboarding-button.is-secondary:hover { background: #f8fafc; }
.imotive-onboarding-button.is-quiet { background: transparent; color: #475569; border-color: transparent; }
.imotive-form-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 20px; }
.imotive-form-message {
    display: none;
    margin: 16px 0 0;
    padding: 12px 14px;
    border-radius: 12px;
    background: #eff6ff;
    color: #075985;
    font-size: 13px;
    line-height: 1.5;
}
.imotive-form-message.is-visible { display: block; }
.imotive-form-message.is-error { background: #fef2f2; color: #991b1b; }
.imotive-onboarding-note {
    padding: 18px;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    background: #eff6ff;
    color: #0c4a6e;
    font-size: 14px;
    line-height: 1.6;
}
.imotive-quickstart-shell {
    min-height: calc(100vh - 130px);
    padding: 44px 0 72px;
}
.imotive-quickstart-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}
.imotive-quickstart-sidebar {
    position: sticky;
    top: 128px;
    padding: 22px;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    background: #fff;
}
.imotive-quickstart-sidebar h1 { margin: 0 0 6px; font-size: 21px; letter-spacing: -.025em; }
.imotive-quickstart-sidebar > p { margin: 0 0 20px; color: #64748b; font-size: 13px; line-height: 1.55; }
.imotive-quickstart-steps { display: grid; gap: 8px; }
.imotive-quickstart-step {
    display: flex;
    align-items: center;
    gap: 11px;
    width: 100%;
    padding: 11px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #64748b;
    text-align: left;
    font: inherit;
    cursor: pointer;
}
.imotive-quickstart-step span:first-child {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 750;
}
.imotive-quickstart-step.is-active { background: #eff6ff; color: #075985; font-weight: 700; }
.imotive-quickstart-step.is-active span:first-child { background: #0ea5e9; color: #fff; }
.imotive-quickstart-step.is-complete span:first-child { background: #dcfce7; color: #166534; }
.imotive-quickstart-panel { display: none; }
.imotive-quickstart-panel.is-active { display: block; }
.imotive-wallet-balance {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 18px 0;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #f8fafc;
}
.imotive-wallet-balance strong { font-size: 34px; letter-spacing: -.04em; }
.imotive-wallet-balance span { color: #64748b; }
.imotive-wallet-options { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 10px; }
.imotive-wallet-option {
    min-height: 52px;
    border: 1px solid #cbd5e1;
    border-radius: 13px;
    background: #fff;
    color: #0f172a;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}
.imotive-wallet-option:hover { border-color: #0ea5e9; color: #0369a1; }
.imotive-module-options { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.imotive-module-option {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
}
.imotive-complete-panel { text-align: center; padding: 22px 0 4px; }
.imotive-complete-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #dcfce7;
    color: #166534;
    font-size: 28px;
    font-weight: 800;
}
.imotive-signin-note { margin-top: 16px; text-align: center; color: #64748b; font-size: 13px; }
.imotive-signin-note a { color: #0369a1; font-weight: 700; }
@media (max-width: 900px) {
    .imotive-onboarding-grid,
    .imotive-quickstart-layout { grid-template-columns: 1fr; }
    .imotive-quickstart-sidebar { position: static; }
    .imotive-quickstart-steps { grid-template-columns: repeat(5,minmax(0,1fr)); overflow-x: auto; }
    .imotive-quickstart-step { justify-content: center; padding: 9px 6px; }
    .imotive-quickstart-step span:last-child { display: none; }
}
@media (max-width: 680px) {
    .imotive-onboarding-hero { padding: 46px 0 44px; }
    .imotive-onboarding-title { font-size: 44px; }
    .imotive-onboarding-points,
    .imotive-form-grid,
    .imotive-module-options { grid-template-columns: 1fr; }
    .imotive-wallet-options { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .imotive-signup-card,
    .imotive-quickstart-card { padding: 20px; border-radius: 20px; }
    .imotive-form-actions { align-items: stretch; flex-direction: column-reverse; }
    .imotive-onboarding-button { width: 100%; }
}

.imotive-wallet-split{display:flex;gap:12px;flex-wrap:wrap;margin:12px 0 18px}.imotive-wallet-split span{padding:9px 12px;border:1px solid #dbe5ef;border-radius:10px;background:#fff;color:#64748b;font-size:13px}.imotive-wallet-split strong{color:#0f172a;margin-left:4px}


/* 5.13.0 DMS subscription plan selector */
.imotive-plan-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin:18px 0 22px}
.imotive-plan-card{position:relative;display:flex;flex-direction:column;gap:7px;min-width:0;padding:16px;border:1px solid #dbe5ef;border-radius:16px;background:#fff;cursor:pointer;transition:border-color .18s ease,box-shadow .18s ease,transform .18s ease}
.imotive-plan-card:hover{transform:translateY(-1px);border-color:#94a3b8;box-shadow:0 12px 24px rgba(15,23,42,.08)}
.imotive-plan-card.is-featured{border-color:#0ea5e9;background:linear-gradient(180deg,#f0f9ff 0%,#fff 100%)}
.imotive-plan-card:has(input:checked){border-color:#0284c7;box-shadow:0 0 0 3px rgba(14,165,233,.14)}
.imotive-plan-card input{position:absolute;top:14px;right:14px;width:18px;height:18px;accent-color:#0284c7}
.imotive-plan-name{padding-right:24px;font-size:12px;font-weight:800;letter-spacing:.04em;text-transform:uppercase;color:#0369a1}
.imotive-plan-card strong{font-size:25px;letter-spacing:-.04em;color:#0f172a}
.imotive-plan-card strong small{font-size:12px;font-weight:600;letter-spacing:0;color:#64748b}
.imotive-plan-card>span:last-child{font-size:12px;line-height:1.45;color:#475569}
@media(max-width:760px){.imotive-plan-grid{grid-template-columns:1fr}.imotive-plan-card{padding:15px 16px}}
