/* ============================================================
   Área do Sócio — colored cards, Apple-pure shell
   Cards vibrantes (referência) + tipografia/espaços do site
   ============================================================ */

:root {
  --as-shell-bg: #fbfbfd;
  --as-sidebar-bg: #ffffff;
  --as-sidebar-w: 280px;
  --as-content-pad: 32px;

  /* card palette (vibrant, mas tonal) */
  --as-card-neutral: #f0f0f2;
  --as-card-neutral-ink: #1d1d1f;

  --as-card-belt-bg: #1d1d1f;
  --as-card-belt-ink: #ffffff;
  --as-card-belt-accent: #e6a800;

  --as-card-classes-bg: #2da06a;
  --as-card-classes-ink: #ffffff;

  --as-card-fee-paid-bg: #0071e3;
  --as-card-fee-due-bg: #c63b3b;
  --as-card-fee-ink: #ffffff;

  --as-card-warn-bg: #e6a800;
  --as-card-warn-ink: #1d1d1f;

  --as-card-next-bg: #1aa3a3;
  --as-card-next-ink: #ffffff;

  --as-card-exam-bg: #5e3aa1;
  --as-card-exam-ink: #ffffff;
}

/* full-screen shell */
.as-shell {
  position: fixed;
  inset: 0;
  background: var(--as-shell-bg);
  color: var(--k-ink);
  font-family: var(--k-font-text);
  display: flex;
  z-index: 50;
  overflow: hidden;
}

/* ========== sidebar ========== */
.as-sidebar {
  width: var(--as-sidebar-w);
  background: var(--as-sidebar-bg);
  border-right: 1px solid var(--k-line-soft);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.as-side-header {
  background: #1d1d1f;
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.as-side-header .as-logo-mark {
  width: 36px; height: 36px;
  background: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--k-font-jp);
  font-size: 16px;
  color: #1d1d1f;
  flex-shrink: 0;
}
.as-side-header .as-brand {
  font-family: var(--k-font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.as-side-header .as-brand-sub {
  font-size: 10px;
  color: #a1a1a6;
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.as-side-close {
  position: absolute;
  top: 12px; right: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 4px;
  cursor: pointer;
}
.as-side-close:hover { color: #fff; background: rgba(255,255,255,0.1); }

.as-side-profile {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--k-line-soft);
}
.as-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--k-bg-soft);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 1px solid var(--k-line);
  display: grid; place-items: center;
  font-family: var(--k-font-display);
  font-weight: 600;
  color: var(--k-ink-3);
  font-size: 18px;
}
.as-avatar-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--k-ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.as-avatar-code {
  font-size: 12px;
  color: var(--k-ink-3);
  margin-top: 2px;
}
.as-avatar-status {
  display: flex; align-items: center;
  gap: 5px;
  margin-top: 4px;
  font-size: 11px;
  color: #2da06a;
}
.as-avatar-status::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2da06a;
}

.as-side-search {
  padding: 14px 20px;
  border-bottom: 1px solid var(--k-line-soft);
}
.as-side-search input {
  width: 100%;
  border: none;
  background: var(--k-bg-soft);
  padding: 8px 12px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  color: var(--k-ink);
  outline: none;
}
.as-side-search input::placeholder { color: var(--k-ink-3); }

.as-side-nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}
.as-side-section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--k-ink-3);
  font-weight: 500;
  padding: 12px 20px 6px;
}
.as-side-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 20px;
  font-size: 13px;
  color: var(--k-ink-2);
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: background 0.15s, color 0.15s;
}
.as-side-link:hover { background: var(--k-bg-soft); color: var(--k-ink); }
.as-side-link.is-active {
  background: rgba(0,113,227,0.08);
  color: var(--k-blue);
  border-left-color: var(--k-blue);
  font-weight: 500;
}
.as-side-link svg { width: 16px; height: 16px; flex-shrink: 0; }

.as-side-footer {
  border-top: 1px solid var(--k-line-soft);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.as-side-icon-btn {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: var(--k-ink-3);
  border-radius: 6px;
  cursor: pointer;
}
.as-side-icon-btn:hover { background: var(--k-bg-soft); color: var(--k-ink); }
.as-side-icon-btn svg { width: 16px; height: 16px; }

/* ========== main ========== */
.as-main {
  flex: 1;
  overflow-y: auto;
  padding: 28px var(--as-content-pad) 60px;
}

.as-topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.as-search-bar {
  flex: 1;
  max-width: 520px;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--k-line-soft);
  border-radius: var(--k-radius-pill);
  padding: 8px 16px;
  gap: 10px;
}
.as-search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  background: transparent;
  color: var(--k-ink);
}
.as-search-bar svg { width: 16px; height: 16px; color: var(--k-ink-3); }

.as-topbar-spacer { flex: 1; }

.as-page-title {
  font-family: var(--k-font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.as-page-sub {
  color: var(--k-ink-3);
  font-size: 15px;
  margin-bottom: 24px;
}

/* ========== status cards (vibrant) ========== */
.as-status-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 1100px) {
  .as-status-grid { grid-template-columns: repeat(2, 1fr); }
}

.as-stat {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 144px;
  transition: transform 0.18s var(--k-ease), box-shadow 0.18s var(--k-ease);
  cursor: pointer;
}
.as-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.as-stat-body {
  flex: 1;
  padding: 18px 20px;
  position: relative;
}
.as-stat-decoration {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  opacity: 0.18;
  pointer-events: none;
}
.as-stat-decoration svg { width: 88px; height: 88px; }

.as-stat-value {
  font-family: var(--k-font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 6px;
}
.as-stat-value.tight { font-size: 28px; line-height: 1.1; }
.as-stat-label {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.92;
  letter-spacing: -0.01em;
}
.as-stat-foot {
  background: rgba(0,0,0,0.18);
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: -0.01em;
}
.as-stat-foot::after { content: '›'; font-size: 16px; opacity: 0.85; }

/* color variants */
.as-stat--neutral { background: var(--as-card-neutral); color: var(--as-card-neutral-ink); }
.as-stat--neutral .as-stat-foot { background: rgba(0,0,0,0.06); color: var(--k-ink-2); }
.as-stat--neutral .as-stat-decoration { color: var(--k-ink-3); opacity: 0.25; }

.as-stat--belt { background: var(--as-card-belt-bg); color: var(--as-card-belt-ink); }
.as-stat--belt .as-stat-value { color: var(--as-card-belt-accent); }
.as-stat--belt .as-stat-foot { color: var(--as-card-belt-accent); }

.as-stat--classes { background: var(--as-card-classes-bg); color: var(--as-card-classes-ink); }
.as-stat--fee-due { background: var(--as-card-fee-due-bg); color: var(--as-card-fee-ink); }
.as-stat--fee-paid { background: var(--as-card-fee-paid-bg); color: var(--as-card-fee-ink); }
.as-stat--warn { background: var(--as-card-warn-bg); color: var(--as-card-warn-ink); }
.as-stat--warn .as-stat-foot { background: rgba(0,0,0,0.12); }
.as-stat--next { background: var(--as-card-next-bg); color: var(--as-card-next-ink); }
.as-stat--exam { background: var(--as-card-exam-bg); color: var(--as-card-exam-ink); }

/* ========== two-col layout ========== */
.as-two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-top: 16px;
}
@media (max-width: 1100px) { .as-two-col { grid-template-columns: 1fr; } }

.as-panel {
  background: #fff;
  border: 1px solid var(--k-line-soft);
  border-radius: 16px;
  padding: 20px 22px;
}
.as-panel-h {
  font-family: var(--k-font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.as-panel-h .as-link-mini {
  font-size: 13px;
  font-weight: 400;
  color: var(--k-blue);
}

/* schedule mini */
.as-sched-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--k-line-soft);
  gap: 12px;
}
.as-sched-row:last-child { border-bottom: none; }
.as-sched-day {
  width: 50px;
  text-align: center;
  background: var(--k-bg-soft);
  border-radius: 8px;
  padding: 6px 0;
  flex-shrink: 0;
}
.as-sched-day .d {
  font-family: var(--k-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--k-ink);
  line-height: 1;
}
.as-sched-day .m {
  font-size: 10px;
  color: var(--k-ink-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 3px;
}
.as-sched-info {
  flex: 1;
}
.as-sched-info .t {
  font-size: 14px;
  font-weight: 500;
  color: var(--k-ink);
  letter-spacing: -0.01em;
}
.as-sched-info .s {
  font-size: 12px;
  color: var(--k-ink-3);
  margin-top: 2px;
}
.as-sched-cta {
  font-size: 13px;
  color: var(--k-blue);
  font-weight: 500;
  cursor: pointer;
}

/* belt strip */
.as-belt-strip {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.as-belt-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.as-belt-bar {
  flex: 1;
  height: 16px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.as-belt-bar-end {
  position: absolute;
  right: 0; top: 0;
  width: 28px; height: 100%;
  background: rgba(0,0,0,0.18);
}
.as-belt-name {
  width: 90px;
  font-size: 13px;
  font-weight: 500;
}
.as-belt-status {
  font-size: 12px;
  color: var(--k-ink-3);
  width: 80px;
  text-align: right;
}
.as-belt-status.is-current { color: var(--k-blue); font-weight: 500; }
.as-belt-status.is-done    { color: var(--k-ink-3); }
.as-belt-status.is-future  { color: var(--k-ink-4); }

/* ========== sub-pages ========== */
.as-table {
  width: 100%;
  border-collapse: collapse;
}
.as-table th, .as-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--k-line-soft);
  font-size: 14px;
}
.as-table th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--k-ink-3);
  font-weight: 500;
}
.as-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}
.as-pill--paid { background: rgba(45, 160, 106, 0.12); color: #1f7a4d; }
.as-pill--due  { background: rgba(198, 59, 59, 0.12); color: #a02e2e; }
.as-pill--open { background: rgba(230, 168, 0, 0.18);  color: #8a6300; }

/* form */
.as-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
}
.as-field { display: flex; flex-direction: column; gap: 6px; }
.as-field.full { grid-column: 1 / -1; }
.as-field label {
  font-size: 12px;
  color: var(--k-ink-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.as-field input, .as-field select, .as-field textarea {
  border: 1px solid var(--k-line);
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
  color: var(--k-ink);
  outline: none;
  transition: border 0.15s;
}
.as-field input:focus, .as-field select:focus, .as-field textarea:focus { border-color: var(--k-blue); }

.as-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

/* credential card */
.as-credencial {
  width: 360px;
  background: #1d1d1f;
  color: #fff;
  border-radius: 18px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.as-credencial::after {
  content: '空手';
  position: absolute;
  right: -10px; bottom: -40px;
  font-family: var(--k-font-jp);
  font-size: 180px;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}
.as-credencial-h {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin-bottom: 18px;
}
.as-credencial-name {
  font-family: var(--k-font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.as-credencial-code {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.as-credencial-belt {
  margin-top: 24px;
  font-family: var(--k-font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.as-credencial-belt-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.as-credencial-foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}

/* modal */
.as-modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 1;
}
@keyframes as-fade { from { opacity: 0; } to { opacity: 1; } }
.as-modal {
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  opacity: 1;
}
@keyframes as-pop { from { opacity: 0; transform: translateY(12px) scale(0.97); } to { opacity: 1; transform: none; } }
.as-modal-h {
  padding: 22px 26px 14px;
  border-bottom: 1px solid var(--k-line-soft);
}
.as-modal-h h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.as-modal-h p {
  font-size: 13px;
  color: var(--k-ink-3);
  margin-top: 4px;
}
.as-modal-body { padding: 22px 26px; }
.as-modal-foot {
  padding: 14px 26px 22px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.as-modal-x {
  position: absolute;
  top: 16px; right: 16px;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--k-bg-soft);
  cursor: pointer;
  font-size: 14px;
  color: var(--k-ink-3);
}
.as-modal-x:hover { background: var(--k-line-soft); color: var(--k-ink); }

/* slot picker */
.as-slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.as-slot {
  border: 1px solid var(--k-line);
  background: #fff;
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.12s;
}
.as-slot:hover { border-color: var(--k-blue); }
.as-slot.is-on {
  background: var(--k-blue);
  color: #fff;
  border-color: var(--k-blue);
}
.as-slot.is-off { opacity: 0.45; cursor: not-allowed; }
.as-slot .d {
  font-family: var(--k-font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.as-slot .h { font-size: 12px; opacity: 0.85; margin-top: 2px; }
.as-slot .l { font-size: 10px; opacity: 0.6; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.04em; }

/* questionnaire */
.as-q-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--k-line-soft);
}
.as-q-row:last-child { border-bottom: none; }
.as-q-row p { flex: 1; font-size: 14px; line-height: 1.5; }
.as-q-toggle {
  display: flex;
  gap: 6px;
}
.as-q-toggle button {
  border: 1px solid var(--k-line);
  background: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  font-family: inherit;
}
.as-q-toggle button.is-on {
  background: var(--k-ink);
  color: #fff;
  border-color: var(--k-ink);
}

/* event row */
.as-event {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--k-line-soft);
}
.as-event:last-child { border-bottom: none; }
.as-event-date {
  background: var(--k-ink);
  color: #fff;
  border-radius: 10px;
  padding: 10px 0;
  text-align: center;
}
.as-event-date .d {
  font-family: var(--k-font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.as-event-date .m {
  font-size: 10px;
  text-transform: uppercase;
  margin-top: 4px;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

/* generic file row */
.as-file-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--k-line-soft);
  border-radius: 12px;
  background: #fff;
  transition: border 0.15s;
}
.as-file-row:hover { border-color: var(--k-line); }
.as-file-icon {
  width: 36px; height: 36px;
  background: var(--k-bg-soft);
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--k-ink-2);
}
.as-file-meta {
  flex: 1;
  font-size: 13px;
}
.as-file-meta .t { font-weight: 500; color: var(--k-ink); }
.as-file-meta .s { font-size: 11px; color: var(--k-ink-3); margin-top: 2px; }

/* alert banner */
.as-alert {
  background: var(--as-card-warn-bg);
  color: var(--as-card-warn-ink);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.as-alert h4 { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
.as-alert p { font-size: 12px; opacity: 0.78; margin-top: 2px; }
.as-alert .as-alert-cta { font-size: 13px; font-weight: 500; }

/* belt preview swatches */
.as-belt-swatch {
  display: inline-block;
  width: 30px; height: 12px;
  border-radius: 3px;
  margin-right: 8px;
  vertical-align: middle;
  border: 1px solid rgba(0,0,0,0.08);
}

/* ============================================================
   LOGIN
   ============================================================ */
.as-login {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,113,227,0.06), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(230, 168, 0, 0.05), transparent 50%),
    var(--as-shell-bg);
  display: grid;
  place-items: start center;
  z-index: 50;
  padding: 20px;
  overflow-y: auto;
}
.as-login::before {
  content: '空手';
  position: absolute;
  font-family: var(--k-font-jp);
  font-size: 50vmin;
  color: rgba(0,0,0,0.025);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.as-login-card {
  background: #fff;
  border: 1px solid var(--k-line-soft);
  border-radius: 22px;
  padding: 40px 44px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.06);
  position: relative;
  z-index: 1;
  margin: auto;
}
.as-login-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.as-login-brand .mark {
  width: 44px; height: 44px;
  background: #1d1d1f;
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--k-font-jp);
  font-size: 20px;
}
.as-login-h {
  font-family: var(--k-font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.as-login-sub {
  font-size: 14px;
  color: var(--k-ink-3);
  margin-bottom: 24px;
}
.as-login-form { display: flex; flex-direction: column; gap: 14px; }
.as-login-foot {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--k-line-soft);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--k-ink-3);
}
.as-login-foot a { color: var(--k-blue); }

.as-login-quick {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.as-login-quick-label {
  font-size: 11px;
  color: var(--k-ink-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 4px;
}
.as-login-quick button {
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--k-line-soft);
  background: var(--k-bg-soft);
  border-radius: 10px;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: border 0.15s;
}
.as-login-quick button:hover { border-color: var(--k-line); }
.as-login-quick .qa-name {
  font-size: 13px;
  color: var(--k-ink);
  font-weight: 500;
}
.as-login-quick .qa-meta {
  font-size: 11px;
  color: var(--k-ink-3);
}

/* ============================================================
   VARIANT — "minimalist" alternativa
   ============================================================ */
.as-shell.is-minimal {
  --as-shell-bg: #ffffff;
}
.as-shell.is-minimal .as-stat {
  background: #fff;
  color: var(--k-ink);
  border: 1px solid var(--k-line-soft);
  box-shadow: none;
}
.as-shell.is-minimal .as-stat .as-stat-value { color: var(--k-ink); }
.as-shell.is-minimal .as-stat-foot {
  background: transparent;
  border-top: 1px solid var(--k-line-soft);
  color: var(--k-blue);
}
.as-shell.is-minimal .as-stat--belt .as-stat-value { color: #b88600; }
.as-shell.is-minimal .as-stat--classes .as-stat-value { color: #1f7a4d; }
.as-shell.is-minimal .as-stat--fee-due .as-stat-value { color: #a02e2e; }
.as-shell.is-minimal .as-stat--warn .as-stat-value { color: #8a6300; }
.as-shell.is-minimal .as-stat--exam .as-stat-value { color: #5e3aa1; }
.as-shell.is-minimal .as-stat--next .as-stat-value { color: #14787a; }
.as-shell.is-minimal .as-stat-decoration { opacity: 0.12; color: var(--k-ink); }
.as-shell.is-minimal .as-sidebar { background: var(--k-bg-soft); }

/* utilities */
.as-mt-6 { margin-top: 6px; }
.as-mt-12 { margin-top: 12px; }
.as-mt-20 { margin-top: 20px; }
.as-row-gap-8 { display: flex; gap: 8px; align-items: center; }
