/* ─── RESET ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

:root {
  --green:     var(--success);
  --green-bg:  var(--success-bg);
  --green-bdr: var(--success-bdr);
  --dp-chip: var(--border-2);
  --dp-text2: var(--muted);
  --dp-text3: var(--hint);
  --dp-text4: var(--hint);
}

body {
  font-family: 'Be Vietnam Pro', 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

button, input, select, textarea { font-family: inherit; }

/* ─── LOADING OVERLAY ────────────────────────────────────────────────── */
/* #loading-overlay, .loading-card, .spinner, .loader: unificados en ../css/estilos.css.
   A diferencia del app principal, acá el logo se muestra siempre (nunca se oculta
   en desktop) — override intencional para preservar el look actual de esta página. */
.loading-logo { display: block; }
@media (prefers-color-scheme: dark) {
  #gsignin-skeleton, #gsignin-skeleton-main { background: linear-gradient(90deg,var(--dk-skeleton-base) 25%,var(--dk-skeleton-shine) 50%,var(--dk-skeleton-base) 75%) !important; background-size: 200% 100% !important; }
}

/* ─── LAYOUT ─────────────────────────────────────────────────────────── */
.page-wrap {
  max-width: 480px; margin: 0 auto; padding: 0 16px 40px;
}

.header {
  text-align: center; padding: 12px 16px; display: flex; align-items: center; gap: 12px;
position: sticky; top: 0; z-index: 100; min-height: 48px;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.header-logo {
  width: 82px; height: 82px; border-radius: 50%; object-fit: cover;
  object-position: center top; margin: 0 auto 14px; display: block;
  filter: drop-shadow(0 4px 12px var(--brand-glow));
}
.header-title {
  font-size: 0.72rem; font-weight: 700; color: var(--brand);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  pointer-events: none;
}
.header-sub {
  font-size: 0.82rem; color: var(--muted); line-height: 1.5;
  padding: 0 8px 20px;
}
@media (max-width: 600px) {
  .header-logo { display: none; }
}

/* ─── PROGRESS BAR ───────────────────────────────────────────────────── */
.progress-wrap {
  display: flex; gap: 6px; padding: 10px 0 20px;
  justify-content: center;
}
.prog-dot {
  height: 6px; border-radius: 4px; transition: all 0.4s var(--ease-sheet);
  background: var(--border);
  width: 28px;
}
.prog-dot.done  { background: var(--green); }
.prog-dot.active { background: var(--brand); width: 48px; }

/* ─── PANTALLAS ──────────────────────────────────────────────────────── */
.pantalla { display: none; }
.pantalla.activa {
  display: block;
  animation: smoothSlideUp 0.6s var(--ease-sheet) both;
}
/* @keyframes smoothSlideUp unificado en ../css/estilos.css (reemplaza al slideUp local, mismo rol) */

/* ─── CARD ───────────────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border-2);
}

@media (max-width: 600px) {
  .card { background: transparent; border: none; box-shadow: none; padding: 16px 4px; }
}

.sec-label {
  font-size: 0.7rem; font-weight: 700; color: var(--brand);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px;
}
.card h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; line-height: 1.3; }
.card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ─── GOOGLE SIGN-IN WRAPPER ─────────────────────────────────────────── */
.gsignin-wrap {
  display: flex; justify-content: center; margin: 20px 0;
}
.gsignin-info {
  background: var(--info-bg); border: 1px solid var(--info-bdr); border-radius: var(--radius-sm);
  padding: 12px 14px; font-size: 0.82rem; color: var(--info);
  margin-bottom: 16px; line-height: 1.5;
}
@media (prefers-color-scheme: dark) {
  .gsignin-info { background: var(--dk-info-bg); border-color: var(--dk-info-border); color: var(--dk-info-text); }
}

/* ─── PERMISOS GOOGLE ────────────────────────────────────────────────── */
.perm-box {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
  margin-bottom: 6px;
}
.perm-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; gap: 12px;
}
.perm-row + .perm-row { border-top: 1px solid var(--border); }
.perm-label { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.perm-sub   { font-size: 0.78rem; color: var(--muted); margin-top: 2px; line-height: 1.4; }

.toggle-switch { position: relative; display: inline-block; width: 48px; height: 26px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; cursor: pointer; inset: 0;
  background: var(--brand-glow); border-radius: 26px; transition: 0.3s;
}
.toggle-slider::before {
  content: ''; position: absolute; height: 20px; width: 20px;
  left: 3px; bottom: 3px; background: var(--white); border-radius: 50%; transition: 0.3s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--brand); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(22px); }

.sub-permisos {
  overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height 0.4s var(--ease-sheet), opacity 0.3s ease;
  background: var(--brand-subtle);
}
.sub-permisos.visible { max-height: 500px; opacity: 1; }
.sub-perm-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px 12px 32px; gap: 12px; border-top: 1px solid var(--border);
}
.sub-perm-row label { font-size: 0.82rem; font-weight: 600; color: var(--muted); }

/* ─── CAMPOS ──────────────────────────────────────────────────────────── */
.campo { margin-bottom: 18px; }
.campo label {
  display: block; font-size: 0.74rem; font-weight: 700;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.campo label span.req { color: var(--error); }

input[type="text"], input[type="email"], input[type="tel"],
input[type="date"], input[type="password"], textarea, select {
  width: 100%; padding: 13px 16px;
  border: 0px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.88rem; color: var(--text);
  background: var(--surface);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  appearance: none; -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-mid);
  background: var(--surface);
}
input:disabled { opacity: 0.6; cursor: not-allowed; }
::placeholder { color: var(--hint); font-style: italic; font-size: 0.88rem; }

.select-wrap { position: relative; }
.select-wrap::after {
  font-family: 'Material Symbols Outlined'; content: 'expand_more';
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  color: var(--brand); pointer-events: none; font-size: 1.2rem;
}

.dato-hint { font-size: 0.78rem; color: var(--hint); margin-top: 6px; line-height: 1.4; }

/* ─── PREFIJO CON DATALIST ───────────────────────────────────────────── */
.prefijo-wrap { display: flex; gap: 8px; }
.prefijo-wrap input[type="text"] { width: 100%; }
.prefijo-flag {
  min-width: 48px; height: 48px; border: 0px solid var(--border);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; background: var(--surface);
  flex-shrink: 0; transition: border-color 0.25s;
}

.fecha-nac-grid { display:flex; gap:8px; }
.fecha-nac-grid .select-wrap { flex:1; min-width:0; }
.fecha-nac-grid select { padding-right:30px; }

/* ─── OPCIONES RADIO / CHECKBOXES ────────────────────────────────────── */
.opciones { display: flex; flex-direction: column; gap: 8px; margin-bottom: 4px; }
.opcion {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 16px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer;
  font-size: 0.92rem; background: var(--surface);
  transition: all 0.25s ease;
}
.opcion:hover { border-color: var(--brand-secondary); background: var(--brand-subtle); transform: translateX(3px); }
.opcion.sel   { border-color: var(--brand); background: var(--brand-lighter); }
.opcion input[type="radio"], .opcion input[type="checkbox"] {
  accent-color: var(--brand); width: 18px; height: 18px;
  flex-shrink: 0; cursor: pointer;
}

.chk-opcion {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer;
  font-size: 0.9rem; margin-bottom: 6px;
  background: var(--surface); transition: all 0.25s ease;
}
.chk-opcion:hover { border-color: var(--brand-secondary); background: var(--brand-subtle); transform: translateX(3px); }
.chk-opcion input { accent-color: var(--brand); width: 18px; height: 18px; flex-shrink: 0; }

.campo-cond {
  overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height 0.45s var(--ease-sheet), opacity 0.3s ease, padding 0.3s;
  padding: 0;
}
.campo-cond.visible { max-height: 600px; opacity: 1; padding-top: 10px; }

/* ─── BOTONES ─────────────────────────────────────────────────────────── */
.btn {
  width: 100%; padding: 15px; border: none; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 700; cursor: pointer;
  text-transform: none; letter-spacing: 0.2px;
  transition: all 0.3s var(--ease-sheet);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none;
}
.btn-primary {
  background: var(--brand); color: var(--white);
  box-shadow: 0 4px 14px var(--brand-30);
}
.btn-primary:hover { background: var(--brand-dk); transform: translateY(-2px); box-shadow: 0 6px 20px var(--brand-40); }
.btn-primary:active { transform: scale(0.98); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-green {
  background: var(--success-dark); color: var(--success-dark);
  border: 0px solid var(--purple-border);
  margin-bottom: 10px;
}
.btn-green:hover { background: var(--brand-hover); border-color: var(--success-dark); transform: translateY(-2px); }

.btn-purple {
  background: var(--purple-light); color: var(--purple);
  border: 0px solid var(--purple-border);
  margin-bottom: 10px;
}
.btn-purple:hover { background: var(--purple-hover); border-color: var(--purple); transform: translateY(-2px); }

.btn-secondary { background: var(--brand-soft); color: var(--brand); border: 0px solid var(--brand-30); margin-top: 4px; }
.btn-secondary:hover { background: var(--brand-hover); transform: translateY(-2px); }

/* @keyframes pulseBtn unificado en ../css/estilos.css */
.btn-pulse {
  animation: pulseBtn 2.4s ease-in-out infinite;
  background: var(--brand-soft) !important;
  color: var(--brand) !important;
  border: 0px solid var(--brand-pulse) !important;
}
.btn-pulse:hover { background: var(--brand-hover) !important; transform: translateY(-2px); }
/* .btn-spinner unificado en ../css/estilos.css */

/* ─── MENSAJES ────────────────────────────────────────────────────────── */
.error-msg {
  background: var(--danger-bg); color: var(--danger);
  border: 1px solid var(--danger-bdr); border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: 0.88rem; font-weight: 500;
  display: none; margin-bottom: 14px; margin-top: 14px;
  animation: fadeIn 0.35s ease;
}
.aviso {
  background: var(--info-bg); border: 1px solid var(--info-bdr);
  border-radius: var(--radius-sm); padding: 12px 14px;
  font-size: 0.82rem; color: var(--info); margin-bottom: 14px;
  line-height: 1.5;
}
/* @keyframes fadeIn unificado en ../css/estilos.css */

@media (prefers-color-scheme: dark) {
  .error-msg { background: var(--dk-error-bg); border-color: var(--dk-error-border); color: var(--dk-error-text); }
  .aviso { background: var(--dk-info-bg); border-color: var(--dk-info-border); color: var(--dk-info-text); }
}

/* ─── ÉXITO ───────────────────────────────────────────────────────────── */
/* @keyframes popBounce unificado en ../css/estilos.css */
.exito-icon  { font-size: 4rem; text-align: center; margin-bottom: 16px; animation: popBounce 0.7s var(--ease-sheet); display: block; }
.exito-title { font-size: 1.5rem; font-weight: 800; text-align: center; margin-bottom: 8px; }
.exito-sub   { color: var(--muted); text-align: center; font-size: 0.92rem; line-height: 1.6; margin-bottom: 24px; }
.exito-nombre{ color: var(--brand); font-weight: 800; }

/* ─── NOMBRE PERFIL PREVIEW ──────────────────────────────────────────── */
.profile-preview {
  display: flex; align-items: center; gap: 12px;
  background: var(--brand-06); border: 1px solid var(--brand-glow);
  border-radius: var(--radius-sm); padding: 12px 14px; margin-bottom: 16px;
}
.profile-avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 0px solid var(--brand); flex-shrink: 0;
}
.profile-avatar-placeholder {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; flex-shrink: 0;
}
.profile-info-text { flex: 1; }
.profile-name { font-weight: 800; font-size: 0.92rem; }
.profile-email { font-size: 0.78rem; color: var(--muted); }

/* ─── SEPARADOR ───────────────────────────────────────────────────────── */
.divider {
  border: none; border-top: 1px solid var(--border);
  margin: 24px 0;
}

/* ─── DARK MODE FIXES ─────────────────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
  input, select, textarea { background: var(--surface); border-color: var(--border); color: var(--text); }
  input:focus, select:focus, textarea:focus { background: var(--bg-2); }
  .opcion, .chk-opcion { background: var(--surface); border-color: var(--border); color: var(--text); }
  .opcion:hover, .chk-opcion:hover { background: var(--bg-2); }
  .opcion.sel { background: var(--brand-lighter); border-color: var(--brand); }
  .perm-box { background: var(--surface-3); }
  .sub-permisos { background: var(--surface-2); }
  .prefijo-flag { background: var(--surface); border-color: var(--border); }
  .btn-secondary { background: var(--btn-secondary-bg); }
  ::placeholder { color: var(--hint) !important; }
}

/* ─── FORM LOCK STATE ────────────────────────────────────────────────── */
.form-locked {
  opacity: 0.32;
  pointer-events: none;
  user-select: none;
  filter: blur(0.4px);
  transition: opacity 0.5s var(--ease-sheet), filter 0.5s ease;
  will-change: opacity, filter;
}
.form-unlocked {
  opacity: 1; pointer-events: auto; user-select: auto; filter: none;
  animation: unlockForm 0.55s var(--ease-sheet) both;
}
/* @keyframes fadeInBtn unificado en ../css/estilos.css */
@keyframes unlockForm {
  from { opacity: 0.32; transform: translateY(8px); filter: blur(0.4px); }
  to   { opacity: 1;    transform: translateY(0);   filter: none; }
}

/* ─── MODAL CONTACTO ─────────────────────────────────────────────────── */
#modal-contacto {
  display: none; position: fixed; inset: 0; z-index: 9500;
  background: var(--overlay); align-items: center; justify-content: center;
}
#modal-contacto.visible { display: flex; animation: fadeIn 0.25s ease; }
#modal-ct-inner {
  background: var(--surface); border-radius: 20px;
  padding: 28px 20px; width: 85%; max-width: 320px; text-align: center;
}
@media (prefers-color-scheme: dark) {
  #modal-ct-inner { background: var(--dk-modal-overlay); }
  #modal-ct-inner a { background: var(--dk-modal-item-bg) !important; color: var(--dk-modal-text) !important; }
  #modal-ct-inner button { background: var(--dk-modal-btn-bg) !important; color: var(--dk-modal-btn-text) !important; }
}
.modal-ct-title {
  font-weight: 800; font-size: 0.88rem; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 20px; color: var(--text);
}
.modal-ct-link {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg); border-radius: var(--radius-sm);
  padding: 14px 16px; margin-bottom: 10px; text-decoration: none;
  color: var(--text); font-weight: 700; font-size: 0.88rem;
  transition: background 0.2s;
}
.modal-ct-link:hover { filter: brightness(0.96); }
.modal-ct-close {
  width: 100%; padding: 12px; background: var(--border); border: none;
  border-radius: var(--radius-sm); font-weight: 700; cursor: pointer;
  font-family: inherit; color: var(--muted); transition: background 0.2s;
}
.modal-ct-close:hover { background: var(--bg-2); }

/* ─── FNAC TRIGGER ──────────────────────────────────────────────────── */
.fnac-trigger-btn {
  width:100%; display:flex; align-items:center; justify-content:space-between;
  padding:13px 16px; border: 0px solid var(--border); border-radius:var(--radius-sm);
  background:var(--surface); color:var(--text); font-size:0.95rem; font-weight:500;
  cursor:pointer; transition:border-color 0.25s, box-shadow 0.25s; font-family:inherit;
}
.fnac-trigger-btn:focus { outline:none; border-color:var(--brand); box-shadow:0 0 0 4px var(--brand-mid); }
.fnac-placeholder { color:var(--hint); font-style:italic; font-size:0.88rem; }

/* ─── DATE PICKER MODAL ─────────────────────────────────────────────── */
#date-picker-modal {
  position:fixed; inset:0; z-index:2000; display:flex; align-items:center;
  justify-content:center; background:var(--overlay-light); backdrop-filter:blur(4px);
  padding:24px; opacity:0; pointer-events:none; transition:opacity 0.25s ease;
}
#date-picker-modal.active { opacity:1; pointer-events:all; }
.dp-card {
  background:var(--surface); border-radius:28px; width:100%; max-width:340px;
  overflow:hidden; transform:scale(0.92) translateY(12px); opacity:0;
  transition:transform 0.28s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s ease;
}
#date-picker-modal.active .dp-card { transform:scale(1) translateY(0); opacity:1; }
.dp-header { padding:24px 24px 8px; }
.dp-header-label { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:0.6px; color:var(--dp-text3); margin-bottom:4px; }
.dp-selected-date { font-size:28px; font-weight:400; color:var(--text); line-height:1.2; }
.dp-nav { display:flex; align-items:center; justify-content:space-between; padding:8px 12px 4px; }
#dp-nav-arrows { display:none !important; }
.dp-nav-chips { display:flex; gap:2px; align-items:center; }
.dp-nav-label {
  display:inline-flex; align-items:center; gap:4px; padding:8px 14px;
  border-radius:99px; background:transparent; border:none; font-size:15px;
  font-weight:700; color:var(--text); cursor:pointer; font-family:inherit;
  transition:background 0.15s; -webkit-tap-highlight-color:transparent;
}
.dp-nav-label:active { background:var(--dp-chip); }
.dp-nav-btn { width:40px; height:40px; border-radius:50%; border:none; background:transparent; cursor:pointer; display:flex; align-items:center; justify-content:center; -webkit-tap-highlight-color:transparent; }
.dp-nav-btn:active { background:var(--dp-chip); }
.dp-nav-btn .material-symbols-outlined { font-size:20px; color:var(--dp-text2); }
.dp-grid { display:grid; grid-template-columns:repeat(7,1fr); gap:2px; padding:4px 12px 8px; }
.dp-day-label { text-align:center; font-size:11px; font-weight:700; color:var(--dp-text3); padding:6px 0; }
.dp-day {
  aspect-ratio:1; border-radius:50%; border:none; background:transparent;
  font-size:14px; font-weight:400; color:var(--text); cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  -webkit-tap-highlight-color:transparent; transition:background 0.15s;
}
.dp-day:hover { background:var(--dp-chip); }
.dp-day.dp-selected { background:var(--brand); color:var(--white); font-weight:700; }
.dp-day.dp-other-month { color:var(--dp-text4); }
.dp-day.dp-today:not(.dp-selected) { border:1.5px solid var(--brand); color:var(--brand); }
.dp-error {
  margin:10px 12px 14px; padding:10px 14px; border-radius:10px;
  background:var(--error-light); border:1px solid var(--error-border);
  font-size:13px; font-weight:600; color:var(--error); text-align:center;
}
.dp-footer { display:flex; justify-content:flex-end; gap:12px; padding:16px 20px 28px; }
.dp-btn { padding:13px 24px; border-radius:9999px; border:none; font-size:14px; font-weight:700; cursor:pointer; -webkit-tap-highlight-color:transparent; text-transform:uppercase; letter-spacing:0.05em; font-family:inherit; }
.dp-btn-cancel { background:transparent; color:var(--dp-text2); }
.dp-btn-cancel:active { background:var(--dp-chip); }
.dp-btn-ok { background:var(--brand); color:var(--white); }
.dp-btn-ok:active { filter:brightness(0.9); }
.dp-year-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; padding:16px 20px; max-height:220px; overflow-y:scroll; }
.dp-year-btn { padding:14px 4px; border-radius:14px; border:none; font-size:15px; font-weight:500; color:var(--text); background:transparent; cursor:pointer; text-align:center; -webkit-tap-highlight-color:transparent; font-family:inherit; }
.dp-year-btn.dp-year-selected { background:var(--brand); color:var(--white); font-weight:700; }
.dp-year-btn:active { background:var(--dp-chip); }
.dp-month-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:6px; padding:8px 16px 16px; }
.dp-month-btn { padding:14px 6px; border:none; border-radius:12px; background:transparent; color:var(--text); font-size:14px; font-weight:500; cursor:pointer; text-align:center; -webkit-tap-highlight-color:transparent; transition:background 0.15s; font-family:inherit; }
.dp-month-btn:active { background:var(--dp-chip); }
.dp-month-selected { background:var(--brand); color:var(--white); font-weight:700; }
@keyframes dpFadeIn { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }
#dp-days { display:contents; animation:dpFadeIn 0.18s ease; }
#dp-year-grid, #dp-month-grid { animation:dpFadeIn 0.18s ease; }
@media (prefers-color-scheme: dark) {
  .dp-card { background:var(--dk-datepicker-bg); }
  .dp-day { color:var(--dk-modal-text); }
  .dp-nav-label { color:var(--dk-modal-text); }
  .dp-year-btn { color:var(--dk-modal-text); }
  .dp-month-btn { color:var(--dk-modal-text) !important; }
}

/* ── Flujo por pasos ─────────────────────────── */
.insc-prog { display:flex; align-items:center; justify-content:center; gap:5px; padding:10px 0 4px; flex-shrink:0; }
.insc-prog-dot { width:7px; height:7px; border-radius:50%; background:var(--border); transition:all 0.3s; }
.insc-prog-dot.done { background:var(--brand); opacity:0.7; }
.insc-prog-dot.active { background:var(--brand); width:20px; border-radius:4px; }
.insc-step { display:none; }
.insc-step.activo { display:block; animation:smoothSlideUp 0.35s var(--ease-sheet); }
.insc-scroll { padding:16px 0 32px; }
.insc-scroll h2 { font-size:1.3rem; font-weight:800; margin-bottom:16px; line-height:1.3; }
.insc-scroll h2 + p { margin-bottom:16px; }
.insc-profile-preview { display:flex; align-items:center; gap:12px; padding:12px 14px; background:var(--surface-2); border-radius:14px; margin-bottom:14px; border:1px solid var(--border-light); }
.insc-avatar { width:48px; height:48px; border-radius:50%; background:var(--brand); display:flex; align-items:center; justify-content:center; font-weight:800; font-size:17px; color:var(--white); flex-shrink:0; overflow:hidden; border:1.5px solid var(--border-light); transition:all 0.3s; }
.insc-avatar img { width:100%; height:100%; object-fit:cover; }
.insc-profile-name { font-size:0.9rem; font-weight:800; color:var(--text); }
.insc-profile-email { font-size:0.72rem; color:var(--muted); margin-top:2px; }
.insc-tog-row { display:flex; align-items:center; justify-content:space-between; padding:11px 14px; background:var(--surface-2); border-radius:12px; margin-bottom:8px; border:1px solid var(--border-light); }
.insc-tog-label { font-size:0.82rem; font-weight:700; color:var(--text); }
.insc-tog-hint { font-size:0.68rem; color:var(--muted); margin-top:1px; }
