/* ═══════════════════════════════════════════════════════════
   ACERTAÊ — CSS Global
   Identidade visual unificada pra todas as telas do app.
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Cores principais */
  --coral:        #FF5C3A;
  --coral-light:  #FF7A5C;
  --coral-dark:   #E04020;
  --coral-muted:  #FFF0EC;
  --coral-mid:    #FFD0C4;

  --purple:       #8B2BE2;
  --purple-neon:  #A855F7;
  --purple-light: #F3E8FF;
  --purple-mid:   #D8B4FE;

  --ink:          #0F0F12;
  --ink-80:       #1C1C22;
  --ink-60:       #2E2E38;
  --ink-40:       #4A4A55;

  --gray-muted:   #8A8A99;
  --gray-border:  #E4E4EE;
  --gray-bg:      #F8F8FC;
  --white:        #FFFFFF;

  /* Estados */
  --green:        #16A34A;
  --green-light:  #DCFCE7;
  --green-dark:   #15803D;
  --amber:        #D97706;
  --amber-light:  #FEF3C7;
  --red:          #DC2626;
  --red-light:    #FEE2E2;
  --blue:         #2563EB;
  --blue-light:   #DBEAFE;

  /* Espaçamentos */
  --radius-sm: 8px;
  --radius-md: 11px;
  --radius-lg: 14px;
  --radius-xl: 18px;

  /* Sombras */
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.08);
  --shadow-coral: 0 6px 20px rgba(255,92,58,0.28);
  --shadow-coral-hover: 0 8px 24px rgba(255,92,58,0.36);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--gray-bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
  min-height: 100vh;
}

a {
  color: var(--coral);
  text-decoration: none;
  transition: color 0.15s;
}
a:hover { color: var(--coral-dark); }

/* ═══════════════════════════════════════════════════════════
   TIPOGRAFIA
═══════════════════════════════════════════════════════════ */
h1, h2, h3, h4 {
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--ink);
}
h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; }
h2 { font-size: clamp(22px, 3vw, 28px); font-weight: 800; }
h3 { font-size: 18px; font-weight: 700; }

/* ═══════════════════════════════════════════════════════════
   LOGO
═══════════════════════════════════════════════════════════ */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--coral);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.logo-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
}
.logo-icon svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
}
.logo-name {
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.4px;
}
.logo-name span { color: var(--coral); }

/* Logo branca (em fundos escuros) */
.logo.light .logo-name { color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   BOTÕES
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: 12px 22px;
  cursor: pointer;
  border: none;
  transition: all 0.18s ease;
  text-decoration: none;
  font-size: 14.5px;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: var(--shadow-coral);
}
.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-coral-hover);
  color: var(--white);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled {
  background: var(--gray-muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--gray-border);
}
.btn-ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-large {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: var(--radius-lg);
}

.btn-block {
  width: 100%;
  padding: 14px 22px;
}

/* ═══════════════════════════════════════════════════════════
   FORMULÁRIOS
═══════════════════════════════════════════════════════════ */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.1px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 15px;
  background: var(--white);
  color: var(--ink);
  transition: all 0.15s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,92,58,0.1);
}

.form-input.error,
.form-select.error {
  border-color: var(--red);
  background: var(--red-light);
}

.form-helper {
  font-size: 12px;
  color: var(--gray-muted);
  margin-top: 5px;
}

.form-error {
  font-size: 12.5px;
  color: var(--red);
  margin-top: 5px;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   ALERTAS / FLASH
═══════════════════════════════════════════════════════════ */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  margin-bottom: 18px;
  border-left: 3px solid;
  line-height: 1.5;
}
.alert-success {
  background: var(--green-light);
  color: var(--green-dark);
  border-color: var(--green);
}
.alert-error {
  background: var(--red-light);
  color: var(--red);
  border-color: var(--red);
}
.alert-warning {
  background: var(--amber-light);
  color: var(--amber);
  border-color: var(--amber);
}
.alert-info {
  background: var(--blue-light);
  color: var(--blue);
  border-color: var(--blue);
}

/* ═══════════════════════════════════════════════════════════
   AUTH PAGES (cadastro, login, recuperar senha)
═══════════════════════════════════════════════════════════ */
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.auth-side {
  background: var(--ink);
  color: var(--white);
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.auth-side::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,92,58,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.auth-side::after {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168,85,247,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.auth-side-content {
  position: relative;
  z-index: 1;
}

.auth-side h2 {
  color: var(--white);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-top: 60px;
  margin-bottom: 18px;
}

.auth-side h2 span {
  color: var(--coral);
}

.auth-side p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 1.6;
  max-width: 400px;
}

.auth-side-features {
  list-style: none;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.auth-side-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.auth-side-features li::before {
  content: '✓';
  color: var(--coral);
  font-weight: 800;
}

.auth-side-footer {
  position: relative;
  z-index: 1;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.auth-main {
  background: var(--white);
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-form-wrap {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}

.auth-form-wrap h1 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.6px;
  margin-bottom: 8px;
}

.auth-form-wrap > p {
  color: var(--ink-40);
  font-size: 14.5px;
  margin-bottom: 28px;
  line-height: 1.55;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
  color: var(--gray-muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-border);
}

.auth-bottom-link {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--ink-40);
}
.auth-bottom-link a {
  font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
  .auth-page { grid-template-columns: 1fr; }
  .auth-side { display: none; }
  .auth-main { padding: 40px 24px; min-height: 100vh; }
}

/* ═══════════════════════════════════════════════════════════
   APP LAYOUT (telas internas pós-login)
═══════════════════════════════════════════════════════════ */
.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 240px 1fr;
}

.app-sidebar {
  background: var(--ink);
  color: var(--white);
  padding: 24px 16px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.app-sidebar .logo {
  padding: 4px 8px 22px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--ink-60);
}

.app-sidebar .logo-name { color: var(--white); font-size: 18px; }

.app-nav-section {
  margin-bottom: 18px;
}

.app-nav-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--gray-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 12px;
  margin-bottom: 4px;
}

.app-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.65);
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 2px;
  text-decoration: none;
  transition: all 0.15s;
}

.app-nav-item:hover {
  background: var(--ink-60);
  color: var(--white);
}

.app-nav-item.active {
  background: var(--coral);
  color: var(--white);
}

.app-nav-item-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.app-sidebar-user {
  margin-top: auto;
  padding: 12px;
  background: var(--ink-80);
  border-radius: var(--radius-md);
  position: sticky;
  bottom: 0;
}

.app-sidebar-user-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.app-sidebar-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
}

.app-sidebar-user-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.app-sidebar-user-target {
  font-size: 10.5px;
  color: var(--coral);
  margin-top: 1px;
}

.app-main {
  padding: 32px 40px;
  background: var(--gray-bg);
  min-height: 100vh;
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.app-topbar h1 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.app-topbar p {
  font-size: 13.5px;
  color: var(--ink-40);
  margin-top: 2px;
}

.app-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 16px;
}

.app-card-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.1px;
  color: var(--ink);
}

@media (max-width: 900px) {
  .app-shell {
    grid-template-columns: 1fr;
  }
  .app-sidebar {
    position: static;
    height: auto;
    padding: 16px;
  }
  .app-main {
    padding: 20px 16px;
  }
}

/* ═══════════════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-muted { color: var(--gray-muted); }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }

/* ═══════════════════════════════════════════════════════════
   ONBOARDING
═══════════════════════════════════════════════════════════ */
.onb-page {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 30px 16px 60px;
  background: linear-gradient(180deg, var(--gray-bg) 0%, var(--white) 100%);
}

.onb-frame {
  max-width: 760px;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--gray-border);
}

.onb-header {
  background: var(--ink);
  color: var(--white);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.onb-header .logo-name { color: var(--white); font-size: 16px; }
.onb-header .logo-icon { width: 28px; height: 28px; border-radius: 8px; }
.onb-header .logo-icon svg { width: 16px; height: 16px; }

.onb-step-pill {
  background: var(--coral);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 12px;
  letter-spacing: 0.04em;
}

.onb-progress-track {
  height: 4px;
  background: var(--ink-60);
}
.onb-progress-fill {
  height: 100%;
  background: var(--coral);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.onb-body {
  padding: 38px 44px;
}

.onb-eyebrow {
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.onb-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.onb-sub {
  color: var(--ink-40);
  font-size: 14.5px;
  margin-bottom: 28px;
  line-height: 1.55;
}

.onb-footer {
  padding: 22px 44px;
  background: var(--gray-bg);
  border-top: 1px solid var(--gray-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

@media (max-width: 720px) {
  .onb-body { padding: 28px 22px; }
  .onb-footer { padding: 18px 22px; }
  .onb-title { font-size: 22px; }
}

/* ═══ Cards de curso (etapa 1) ═══ */
.onb-courses {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
}
@media (max-width: 600px) {
  .onb-courses { grid-template-columns: 1fr; }
}

.onb-course {
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.15s;
  background: var(--white);
  position: relative;
}
.onb-course:hover {
  border-color: var(--ink);
  background: var(--gray-bg);
}
.onb-course.selected {
  border-color: var(--coral);
  background: var(--coral-muted);
  box-shadow: 0 0 0 1px var(--coral);
}
.onb-course.selected::after {
  content: '✓';
  position: absolute;
  top: 12px;
  right: 14px;
  width: 22px;
  height: 22px;
  background: var(--coral);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.onb-course-name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 3px;
  color: var(--ink);
}
.onb-course-detail {
  font-size: 11.5px;
  color: var(--gray-muted);
}
.onb-course-pesos {
  display: flex;
  gap: 5px;
  margin-top: 9px;
  flex-wrap: wrap;
}
.onb-peso {
  font-size: 9.5px;
  padding: 2px 7px;
  border-radius: 6px;
  background: var(--coral-muted);
  color: var(--coral-dark);
  font-weight: 700;
}
.onb-course.selected .onb-peso {
  background: var(--white);
}

/* Hidden radio input */
.onb-courses input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* ═══ Etapa 2 — data da prova ═══ */
.onb-data-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.onb-data-option {
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 14px;
}
.onb-data-option:hover {
  border-color: var(--ink);
}
.onb-data-option.selected {
  border-color: var(--coral);
  background: var(--coral-muted);
}
.onb-data-option-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-border);
  flex-shrink: 0;
  position: relative;
}
.onb-data-option.selected .onb-data-option-radio {
  border-color: var(--coral);
  background: var(--coral);
}
.onb-data-option.selected .onb-data-option-radio::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: var(--white);
  border-radius: 50%;
}
.onb-data-option-info {
  flex: 1;
}
.onb-data-option-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
}
.onb-data-option-desc {
  font-size: 12px;
  color: var(--gray-muted);
}
.onb-data-option-countdown {
  font-size: 12px;
  font-weight: 700;
  color: var(--coral);
}

.onb-custom-date {
  display: none;
  margin-top: 12px;
}
.onb-custom-date.show {
  display: block;
}

/* ═══ Etapa 3 — horas ═══ */
.onb-hours-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}
@media (max-width: 600px) {
  .onb-hours-grid { grid-template-columns: repeat(3, 1fr); }
}

.onb-hours-day {
  background: var(--gray-bg);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 12px 10px;
  text-align: center;
  transition: all 0.15s;
}
.onb-hours-day.has-hours {
  border-color: var(--coral);
  background: var(--coral-muted);
}
.onb-hours-day-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--gray-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.onb-hours-day.has-hours .onb-hours-day-label {
  color: var(--coral-dark);
}

.onb-hours-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}
.onb-hours-btn {
  width: 22px;
  height: 22px;
  border: 1px solid var(--gray-border);
  background: var(--white);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-40);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  padding: 0;
  line-height: 1;
}
.onb-hours-btn:hover {
  border-color: var(--coral);
  color: var(--coral);
}
.onb-hours-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.onb-hours-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  min-width: 18px;
  text-align: center;
}
.onb-hours-day.has-hours .onb-hours-value {
  color: var(--coral-dark);
}

.onb-hours-summary {
  text-align: center;
  padding: 14px;
  background: var(--gray-bg);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--ink-40);
  margin-bottom: 6px;
}
.onb-hours-summary strong {
  color: var(--coral);
  font-weight: 800;
  font-size: 17px;
}

/* ═══ Etapa 4 — diagnóstico (questões) ═══ */
.onb-diag-question {
  background: var(--gray-bg);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 18px;
}
.onb-diag-area-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 9px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.onb-diag-area-pill.linguagens { background: var(--coral-muted); color: var(--coral-dark); }
.onb-diag-area-pill.humanas { background: var(--purple-light); color: var(--purple); }
.onb-diag-area-pill.natureza { background: var(--green-light); color: var(--green-dark); }
.onb-diag-area-pill.matematica { background: var(--amber-light); color: var(--amber); }
.onb-diag-area-pill.redacao { background: var(--blue-light); color: var(--blue); }

.onb-diag-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 14px;
}

.onb-diag-alternatives {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.onb-diag-alt {
  display: flex;
  gap: 12px;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  background: var(--white);
  align-items: flex-start;
  transition: all 0.15s;
}
.onb-diag-alt:hover {
  border-color: var(--ink);
}
.onb-diag-alt.selected {
  border-color: var(--coral);
  background: var(--coral-muted);
}
.onb-diag-alt-letter {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-bg);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}
.onb-diag-alt.selected .onb-diag-alt-letter {
  background: var(--coral);
  color: var(--white);
}
.onb-diag-alt-text {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink);
  flex: 1;
}

/* Hidden radio for diag alternatives */
.onb-diag-alternatives input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* ═══ Tela de conclusão ═══ */
.onb-success {
  text-align: center;
  padding: 16px 0;
}
.onb-success-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 32px;
  box-shadow: 0 8px 24px rgba(255,92,58,0.32);
}

.onb-success h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.onb-success-summary {
  background: var(--gray-bg);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 22px 0;
  text-align: left;
}
.onb-success-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13.5px;
}
.onb-success-summary-row .label { color: var(--ink-40); }
.onb-success-summary-row .value { color: var(--ink); font-weight: 700; }
