@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Outfit:wght@600;700;800&display=swap');

:root{
  --bg:#f3f7ff;
  --bg-deep:#e8f0ff;
  --panel:#ffffff;
  --panel-soft:#f7faff;
  --ink:#10203d;
  --muted:#60718e;
  --line:#d7e4ff;
  --line-strong:#bfd1f6;
  --primary:#103a88;
  --primary-2:#2659cc;
  --primary-3:#6ea3ff;
  --accent:#f4b63d;
  --green:#14804a;
  --green-soft:#e8fbf1;
  --danger:#b42318;
  --danger-soft:#fff0ef;
  --shadow:0 20px 50px rgba(16,32,61,.10);
  --shadow-strong:0 26px 60px rgba(16,58,136,.18);
  --radius:24px;
  --radius-sm:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Manrope','Trebuchet MS',Verdana,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(38,89,204,.12), transparent 22%),
    radial-gradient(circle at 88% 10%, rgba(244,182,61,.14), transparent 20%),
    linear-gradient(180deg,#f8fbff 0%,var(--bg) 52%,var(--bg-deep) 100%);
  min-height:100vh;
  overflow-x:hidden;
}
body::before,
body::after{
  content:"";
  position:fixed;
  z-index:-1;
  border-radius:999px;
  filter:blur(12px);
  opacity:.45;
}
body::before{
  width:260px;
  height:260px;
  top:92px;
  right:-100px;
  background:radial-gradient(circle, rgba(38,89,204,.26), transparent 68%);
}
body::after{
  width:220px;
  height:220px;
  bottom:30px;
  left:-80px;
  background:radial-gradient(circle, rgba(244,182,61,.22), transparent 70%);
}
a{color:inherit;text-decoration:none}
img{max-width:100%}

.lms-shell{max-width:1280px;margin:0 auto;padding:0 20px;width:100%}
.lms-topbar{
  position:sticky;
  top:0;
  z-index:70;
  backdrop-filter:blur(16px);
  background:rgba(255,255,255,.84);
  border-bottom:1px solid rgba(215,228,255,.9);
  box-shadow:0 12px 34px rgba(16,32,61,.06);
}
.lms-topbar::after{
  content:"";
  display:block;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(38,89,204,.24), transparent);
}
.lms-topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  min-height:84px;
}
.lms-brand{display:flex;align-items:center;gap:16px}
.lms-brand-badge{
  width:58px;
  height:58px;
  border-radius:22px;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.3), transparent 34%),
    linear-gradient(135deg,#ffffff,#eef4ff 58%,#dbe8ff 100%);
  border:1px solid rgba(191,209,246,.96);
  box-shadow:0 16px 32px rgba(16,58,136,.16);
  padding:5px;
}
.lms-brand-logo{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:18px;
  background:#fff;
}
.lms-brand h1{
  margin:0;
  font-family:'Outfit','Manrope',sans-serif;
  font-size:22px;
  letter-spacing:-.02em;
}
.lms-brand p{
  margin:4px 0 0;
  color:var(--muted);
  font-size:13px;
}
.lms-topbar-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  position:relative;
}
.lms-nav{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
}
.lms-menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(16,32,61,.08);
}
.lms-menu-toggle span{
  width:7px;
  height:7px;
  border-radius:999px;
  background:#17325f;
  display:block;
  transition:transform .2s ease, opacity .2s ease, background .2s ease;
}
.lms-menu-toggle.is-open{
  background:linear-gradient(135deg,#103a88,#2659cc);
  border-color:transparent;
  box-shadow:0 16px 28px rgba(16,58,136,.2);
}
.lms-menu-toggle.is-open span{
  background:#fff;
}
.lms-nav-mobile-head{
  display:none;
}
.lms-nav-backdrop{
  display:none;
}
.lms-nav a{
  padding:11px 16px;
  border-radius:999px;
  color:#17325f;
  font-weight:700;
  border:1px solid transparent;
  transition:all .2s ease;
}
.lms-nav a:hover{
  color:var(--primary);
  background:rgba(38,89,204,.08);
  border-color:rgba(38,89,204,.08);
}
.lms-nav a.is-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  box-shadow:0 14px 30px rgba(16,58,136,.22);
}
.lms-nav a.is-primary:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 36px rgba(16,58,136,.28);
}

.lms-section{padding:24px 0 34px}
.lms-hero{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:26px;
  align-items:stretch;
  padding:34px 0 26px;
}
.lms-panel{
  position:relative;
  background:linear-gradient(180deg,#fff 0%,#fbfdff 100%);
  border:1px solid rgba(215,228,255,.95);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
  min-width:0;
}
.lms-panel::before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:1px;
  background:linear-gradient(90deg, rgba(38,89,204,.22), rgba(244,182,61,.12), transparent 70%);
}
.lms-hero-copy{
  position:relative;
  padding:36px;
  background:
    radial-gradient(circle at 88% 15%, rgba(255,255,255,.16), transparent 21%),
    radial-gradient(circle at 14% 100%, rgba(244,182,61,.22), transparent 20%),
    linear-gradient(135deg,#0f2f71,#214ea7 58%, #1b5ec7 100%);
  color:#fff;
  min-height:100%;
}
.lms-hero-copy::after{
  content:"";
  position:absolute;
  right:-54px;
  bottom:-54px;
  width:180px;
  height:180px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.16);
}
.lms-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.12);
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.lms-hero-copy h2,
.lms-auth-panel h3,
.lms-panel-head h3,
.lms-row-card h4,
.lms-course-card h4,
.lms-stat-card strong,
.lms-footer h3{
  font-family:'Outfit','Manrope',sans-serif;
  letter-spacing:-.03em;
}
.lms-hero-copy h2{
  font-size:54px;
  line-height:1.02;
  margin:18px 0 16px;
  max-width:12ch;
}
.lms-hero-copy p{
  font-size:17px;
  line-height:1.9;
  color:#dbe6ff;
  max-width:60ch;
}
.lms-card-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-top:28px;
}
.lms-mini-card{
  padding:18px;
  border-radius:20px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}
.lms-mini-card strong{
  display:block;
  font-size:15px;
  margin-bottom:6px;
}
.lms-mini-card span{
  font-size:13px;
  color:#d8e4ff;
  line-height:1.75;
}

.lms-auth-panel{
  padding:32px;
  background:
    radial-gradient(circle at top right, rgba(38,89,204,.10), transparent 24%),
    linear-gradient(180deg,#ffffff 0%,#f9fbff 100%);
}
.lms-auth-panel h3{
  font-size:36px;
  margin:0 0 8px;
  color:#163266;
}
.lms-auth-panel p{
  margin:0 0 24px;
  color:var(--muted);
  line-height:1.8;
}

.lms-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.lms-field{display:flex;flex-direction:column;gap:8px;margin-bottom:16px}
.lms-field label{
  font-size:13px;
  font-weight:800;
  color:#274272;
  letter-spacing:.01em;
}
.lms-field small{
  color:#60718e;
  line-height:1.6;
}
.lms-field input,
.lms-field select,
.lms-field textarea,
.lms-compact-form select,
.lms-compact-form input{
  width:100%;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fbfdff;
  color:#122444;
  font-size:15px;
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.lms-field input[type="file"]{
  padding:12px 14px;
  background:linear-gradient(180deg,#ffffff,#f5f9ff);
  cursor:pointer;
}
.lms-field textarea{min-height:110px;resize:vertical}
.lms-field input:focus,
.lms-field select:focus,
.lms-field textarea:focus,
.lms-compact-form select:focus,
.lms-compact-form input:focus{
  border-color:#7ea7f3;
  box-shadow:0 0 0 4px rgba(38,89,204,.10);
  background:#fff;
}
.lms-inline-field{display:grid;grid-template-columns:1fr auto;gap:10px;align-items:center}
.lms-divider{
  display:flex;
  align-items:center;
  gap:12px;
  margin:24px 0;
  color:var(--muted);
  font-size:13px;
  font-weight:800;
}
.lms-divider::before,
.lms-divider::after{
  content:"";
  height:1px;
  background:linear-gradient(90deg, transparent, var(--line), transparent);
  flex:1;
}

.lms-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:0 22px;
  border:0;
  border-radius:16px;
  cursor:pointer;
  font-size:15px;
  font-weight:800;
  color:#fff;
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  box-shadow:0 14px 30px rgba(16,58,136,.22);
  transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.lms-btn:hover{transform:translateY(-1px);box-shadow:0 18px 34px rgba(16,58,136,.26)}
.lms-btn:active{transform:translateY(0)}
.lms-btn-outline{
  background:#fff;
  color:var(--primary);
  border:1px solid var(--line);
  box-shadow:none;
}
.lms-btn-outline:hover{box-shadow:0 12px 22px rgba(16,32,61,.08)}
.lms-btn-green{background:linear-gradient(135deg,#11713f,#18a357)}
.lms-btn-small{min-height:38px;padding:0 14px;font-size:13px;border-radius:12px}

.lms-alert{
  padding:16px 18px;
  border-radius:18px;
  margin-bottom:18px;
  line-height:1.75;
  font-weight:600;
}
.lms-alert-success{background:var(--green-soft);border:1px solid #b8ecd0;color:#166534}
.lms-alert-error{background:var(--danger-soft);border:1px solid #f7c1bb;color:var(--danger)}

.lms-courses{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.lms-course-card{
  padding:22px;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.lms-course-card:hover{
  transform:translateY(-3px);
  border-color:#c8d9fb;
  box-shadow:var(--shadow-strong);
}
.lms-course-card h4{margin:12px 0 10px;font-size:22px;color:#19386d}
.lms-course-card p{margin:0 0 16px;color:var(--muted);line-height:1.75;min-height:92px}
.lms-price{display:flex;align-items:center;gap:10px;flex-wrap:wrap;font-weight:800}
.lms-price-old{text-decoration:line-through;color:#7b8daa}
.lms-course-row-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.lms-course-status{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  border:1px solid transparent;
  box-shadow:0 10px 24px rgba(16,32,61,.08);
}
.lms-course-status.is-free{
  background:#e8fbf1;
  color:#11713f;
  border-color:#bfe8cf;
}
.lms-course-status.is-approved{
  background:#eaf3ff;
  color:#1b57d1;
  border-color:#c6d9fb;
}
.lms-course-status.is-pending{
  background:#fff6df;
  color:#9a6700;
  border-color:#f2d58a;
}
.lms-course-status.is-rejected{
  background:#fff0ef;
  color:#b42318;
  border-color:#f4c0bc;
}
.lms-course-status.is-required{
  background:#eef2f9;
  color:#4f6280;
  border-color:#dbe5f4;
}
.lms-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
  background:#edf4ff;
  color:#214fb6;
  border:1px solid rgba(33,79,182,.08);
}

.lms-dashboard{display:grid;grid-template-columns:310px 1fr;gap:22px;padding:30px 0 46px}
.lms-sidebar{
  padding:24px;
  position:relative;
  top:auto;
  align-self:start;
  background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
}
.lms-profile{
  text-align:center;
  padding:10px 10px 22px;
  border-bottom:1px solid var(--line);
  margin-bottom:20px;
}
.lms-avatar{
  width:98px;
  height:98px;
  border-radius:30px;
  object-fit:cover;
  background:#dbe6ff;
  display:block;
  margin:0 auto 14px;
  border:4px solid rgba(255,255,255,.95);
  box-shadow:0 16px 36px rgba(16,58,136,.18);
}
.lms-sidebar-nav{display:flex;flex-direction:column;gap:10px}
.lms-sidebar-nav a{
  padding:13px 16px;
  border-radius:16px;
  color:#28457a;
  font-weight:800;
  background:#f6f9ff;
  border:1px solid var(--line);
  transition:all .18s ease;
}
.lms-sidebar-nav a:hover{
  transform:translateX(2px);
  color:var(--primary);
  background:#eef4ff;
  border-color:#cddcfa;
}
.lms-main{display:flex;flex-direction:column;gap:22px}
.lms-stat-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
.lms-stat-card{
  padding:22px;
  background:
    radial-gradient(circle at top right, rgba(38,89,204,.08), transparent 24%),
    linear-gradient(180deg,#ffffff,#f7fbff);
}
.lms-stat-card h4{margin:0 0 8px;font-size:13px;color:var(--muted);font-weight:800;text-transform:uppercase;letter-spacing:.08em}
.lms-stat-card strong{display:block;font-size:34px;color:#15346a}
.lms-panel-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:20px 22px;
  border-bottom:1px solid var(--line);
  background:linear-gradient(180deg,#ffffff,#fbfdff);
}
.lms-panel-head h3{font-size:24px}
.lms-panel-body{padding:22px}
.lms-enrollment-list,
.lms-notification-list,
.lms-payment-list,
.lms-admin-list{display:grid;gap:14px}
.lms-course-request-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:16px;
  align-items:start;
}
.lms-course-request-form{
  background:
    radial-gradient(circle at top right, rgba(38,89,204,.08), transparent 26%),
    linear-gradient(180deg,#ffffff,#f7fbff);
}
.lms-course-quick-grid{
  grid-template-columns:1fr;
  margin-top:16px;
}
.lms-course-request-tile{
  padding:16px;
  border-radius:18px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,#fff,#f6faff);
  box-shadow:0 10px 26px rgba(16,32,61,.05);
  display:grid;
  gap:8px;
}
.lms-course-request-tile strong{
  font-size:16px;
  color:#17335f;
}
.lms-course-request-tile span{
  color:#60718e;
  font-size:13px;
}
.lms-course-request-tile em{
  font-style:normal;
  font-weight:800;
  color:#1d4ed8;
}
.lms-support-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.lms-stack-form{display:grid;gap:12px}
.lms-inline-form{display:grid;gap:12px;margin-top:16px}
.lms-performance-grid,
.lms-result-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.lms-performance-card,
.lms-row-card{
  padding:18px;
  border-radius:20px;
  background:linear-gradient(180deg,#fbfdff,#f5f9ff);
  border:1px solid var(--line);
  min-width:0;
}
.lms-row-card h4{margin:0 0 8px;font-size:18px;color:#17335f}
.lms-row-card p{margin:0;color:var(--muted);line-height:1.75}
.lms-divider{
  display:flex;
  align-items:center;
  gap:14px;
  margin:24px 0 20px;
  color:#37507f;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}
.lms-divider::before,
.lms-divider::after{
  content:"";
  flex:1;
  height:1px;
  background:linear-gradient(90deg, rgba(38,89,204,.10), rgba(38,89,204,.32), rgba(244,182,61,.10));
}
.lms-divider span{
  padding:8px 14px;
  border-radius:999px;
  background:#f4f8ff;
  border:1px solid var(--line);
}
.lms-link-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:12px;
  background:#eef4ff;
  color:#1d4ed8;
  font-weight:800;
}
.lms-compact-form{display:grid;gap:8px}
.lms-compact-form select,
.lms-compact-form input{padding:10px 12px;border-radius:12px}
.lms-fee-adjust-form{
  min-width:260px;
}
.lms-fee-adjust-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
}
.lms-fee-meta{
  display:grid;
  gap:8px;
  color:#4b6281;
}
.lms-fee-meta span{
  display:block;
  padding:9px 12px;
  border-radius:12px;
  background:#f7faff;
  border:1px solid var(--line);
}
.lms-check-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#49627f;
  font-size:14px;
}
.lms-check-row input{accent-color:var(--green);margin-top:3px}
.lms-payment-account-card{background:linear-gradient(180deg,#f8fbff,#eef5ff)}
.lms-payment-account-list{display:grid;gap:12px}
.lms-payment-account-item{
  padding:14px 16px;
  border-radius:14px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 8px 20px rgba(16,32,61,.04);
}
.lms-payment-account-item p{margin:0 0 8px;color:#45607f}
.lms-payment-account-item p:last-child{margin-bottom:0}
.lms-class-highlight{
  background:
    radial-gradient(circle at top right, rgba(110,163,255,.14), transparent 24%),
    linear-gradient(180deg,#f8fbff,#edf5ff);
  border-color:#cdddfa;
}
.lms-admin-shortcuts-wrap{
  padding:10px 0 18px;
}
.lms-admin-shortcuts{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  padding:16px 18px;
  border-radius:26px;
  background:
    radial-gradient(circle at 0% 50%, rgba(244,182,61,.16), transparent 18%),
    radial-gradient(circle at top right, rgba(38,89,204,.16), transparent 24%),
    linear-gradient(135deg,#f7fbff,#eef4ff 54%, #fdfefe 100%);
  border:1px solid rgba(191,209,246,.92);
  box-shadow:0 18px 38px rgba(16,32,61,.08);
}
.lms-admin-shortcut{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:999px;
  background:rgba(255,255,255,.82);
  border:1px solid #d2def7;
  color:#15377f;
  font-weight:800;
  line-height:1;
  letter-spacing:.01em;
  text-decoration:none !important;
  box-shadow:0 8px 18px rgba(16,32,61,.06);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.lms-admin-shortcut:hover{
  transform:translateY(-2px);
  background:#103a88;
  color:#fff;
  box-shadow:0 18px 30px rgba(16,58,136,.22);
}
.lms-admin-shortcut-strong{
  background:linear-gradient(135deg,#11713f,#16a34a);
  color:#fff;
  border-color:transparent;
}
.lms-admin-shortcuts-top{
  padding-top:14px;
}
.lms-admin-control-grid{
  display:grid;
  gap:10px;
}
.lms-admin-inline-select,
.lms-admin-inline-input{
  width:100%;
  min-width:0;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,#fff,#f7fbff);
  color:#17335f;
  font-weight:700;
  box-shadow:0 10px 24px rgba(16,32,61,.05);
}
.lms-admin-inline-input{
  outline:none;
}
.lms-admin-select-group{
  display:grid;
  gap:6px;
}
.lms-admin-select-label{
  display:block;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#6780a6;
}
.lms-public-record-card{
  background:
    radial-gradient(circle at top right, rgba(38,89,204,.10), transparent 24%),
    linear-gradient(180deg,#ffffff,#f7fbff);
  border-color:#c9d9fb;
}
.lms-public-record-head{
  display:flex;
  align-items:center;
  gap:22px;
  margin-bottom:22px;
}
.lms-public-record-avatar{
  width:118px;
  height:118px;
  margin:0;
}
.lms-public-record-list{
  display:grid;
  gap:14px;
}
.lms-public-record-list p{
  margin:0;
}
.lms-public-record-summary{
  background:
    radial-gradient(circle at top right, rgba(244,182,61,.14), transparent 24%),
    linear-gradient(180deg,#ffffff,#fbfdff);
  border-color:#d4e2ff;
}
.lms-public-record-panel-head{
  align-items:flex-start;
}
.lms-public-record-brand-wrap{
  width:72px;
  height:72px;
  flex:0 0 72px;
  display:grid;
  place-items:center;
  padding:5px;
  border-radius:24px;
  background:linear-gradient(135deg,#ffffff,#eef4ff);
  border:1px solid rgba(191,209,246,.96);
  box-shadow:0 18px 34px rgba(16,58,136,.14);
}
.lms-public-record-brand-logo{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:19px;
  background:#fff;
}
.lms-public-record-layout{
  grid-template-columns:minmax(0,1.14fr) minmax(320px,.86fr);
  align-items:stretch;
}
.lms-public-record-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:#eef4ff;
  color:#1d4ed8;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.lms-public-record-photo-wrap{
  width:132px;
  height:132px;
  padding:7px;
  border-radius:32px;
  background:linear-gradient(135deg, rgba(16,58,136,.14), rgba(244,182,61,.18));
  box-shadow:0 20px 40px rgba(16,58,136,.12);
}
.lms-public-record-identity{
  display:grid;
  gap:10px;
}
.lms-public-record-name{
  margin:0;
  font-size:34px;
  line-height:1;
}
.lms-public-record-note{
  margin:0;
  max-width:50ch;
  color:#60718e;
  line-height:1.75;
}
.lms-public-record-meta-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.lms-public-record-meta-item{
  display:grid;
  gap:6px;
  padding:16px 18px;
  border-radius:18px;
  background:linear-gradient(180deg,#ffffff,#f5f9ff);
  border:1px solid rgba(199,216,250,.9);
}
.lms-public-record-meta-item span{
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#6c82a5;
}
.lms-public-record-meta-item strong{
  font-size:16px;
  line-height:1.5;
  color:#132c5a;
}
.lms-public-summary-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.lms-public-record-divider{
  margin:18px 0;
  border:none;
  border-top:1px solid #d7e2f4;
}
.lms-public-course-list{
  display:grid;
  gap:12px;
}
.lms-public-course-item{
  padding:16px 18px;
  border-radius:18px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,#fff,#f7fbff);
  display:grid;
  gap:6px;
  box-shadow:0 10px 24px rgba(16,32,61,.05);
}
.lms-public-course-item strong{
  display:block;
  font-size:18px;
}
.lms-public-course-item span{
  color:#60718e;
  font-size:13px;
  line-height:1.65;
}
.lms-public-summary-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.lms-public-summary-item{
  padding:16px 18px;
  border-radius:18px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,#fff,#f7fbff);
  display:grid;
  gap:8px;
  box-shadow:0 10px 22px rgba(16,32,61,.05);
}
.lms-public-summary-item strong{
  color:#17335f;
}
.lms-public-summary-item span{
  font-size:21px;
  font-weight:800;
  line-height:1.2;
  color:#163266;
}
.lms-badge-live{
  background:linear-gradient(135deg,#11713f,#16a34a);
  color:#fff;
  border-color:transparent;
}
.lms-progress{
  width:100%;
  height:12px;
  border-radius:999px;
  background:#e5ecff;
  overflow:hidden;
  margin-top:14px;
}
.lms-progress>span{
  display:block;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,#18a357,#0f74c8);
}

.lms-admin-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;padding:28px 0 18px}
.lms-table-wrap{
  overflow:auto;
  max-width:100%;
  -webkit-overflow-scrolling:touch;
  border-radius:20px;
  border:1px solid rgba(215,228,255,.88);
}
table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
}
th,td{
  padding:14px 16px;
  border-bottom:1px solid #eef3ff;
  text-align:left;
  font-size:14px;
  vertical-align:top;
}
th{
  background:linear-gradient(180deg,#f6f9ff,#edf4ff);
  color:#22406e;
  font-weight:800;
}
tbody tr:nth-child(even){background:#fbfdff}
tbody tr:hover{background:#f5f9ff}
.lms-admin-student-table{min-width:1180px}
.lms-admin-student-table td{
  vertical-align:middle;
  padding-top:18px;
  padding-bottom:18px;
}
.lms-admin-student-table tbody tr{
  background:linear-gradient(180deg,#ffffff,#fbfdff);
}

.lms-split{display:grid;grid-template-columns:1.18fr .82fr;gap:22px}
.lms-empty{
  padding:26px;
  text-align:center;
  color:var(--muted);
  border:1px dashed var(--line-strong);
  border-radius:18px;
  background:#fbfdff;
}
.lms-quiz-form{display:grid;gap:18px}
.lms-quiz-step{display:none}
.lms-quiz-step.is-active{display:block}
.lms-option-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  background:#fff;
  border:1px solid var(--line);
  margin:10px 0;
  color:#25406b;
  transition:border-color .18s ease, background .18s ease;
}
.lms-option-row:hover{background:#f8fbff;border-color:#bcd0fa}
.lms-option-row input{accent-color:var(--primary);margin-top:3px}
.lms-quiz-actions{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap}
.lms-quiz-timer{
  padding:12px 16px;
  border-radius:14px;
  background:#f3f7ff;
  border:1px solid var(--line);
  font-weight:800;
  color:#1b3f7b;
}

.lms-footer{
  margin-top:10px;
  background:
    radial-gradient(circle at 100% 0%, rgba(110,163,255,.15), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(244,182,61,.16), transparent 26%),
    linear-gradient(135deg,#0d2f6d,#163f8e 56%,#103572);
  color:#e7efff;
  border-top:1px solid rgba(255,255,255,.08);
  position:relative;
  overflow:hidden;
}
.lms-footer::before,
.lms-footer::after{
  content:"";
  position:absolute;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  pointer-events:none;
}
.lms-footer::before{
  width:240px;
  height:240px;
  right:-100px;
  top:-110px;
}
.lms-footer::after{
  width:180px;
  height:180px;
  left:-70px;
  bottom:-90px;
}
.lms-footer-grid{
  display:grid;
  grid-template-columns:1.3fr .8fr 1fr;
  gap:22px;
  padding:28px 20px;
}
.lms-footer-hero{
  position:relative;
  padding:24px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
}
.lms-footer-brand{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:14px;
}
.lms-footer-logo-wrap{
  width:68px;
  height:68px;
  flex:0 0 68px;
  display:grid;
  place-items:center;
  padding:5px;
  border-radius:22px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 16px 28px rgba(0,0,0,.12);
}
.lms-footer-logo{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:18px;
  background:#fff;
}
.lms-footer-highlights{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.lms-footer-highlight{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.10);
  color:#eef4ff;
  font-weight:800;
  letter-spacing:.03em;
}
.lms-footer-col h3,
.lms-footer-col h4{margin:0 0 12px}
.lms-footer-col h4{
  font-family:'Outfit','Manrope',sans-serif;
  font-size:18px;
  letter-spacing:-.02em;
}
.lms-footer-col p{
  margin:0;
  color:#ccdafb;
  line-height:1.8;
}
.lms-footer-links,
.lms-footer-stack{display:grid;gap:10px}
.lms-footer-links a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
  font-weight:700;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}
.lms-footer-links a:hover,
.lms-footer-chip:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.16);
}
.lms-footer-chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
  color:#eef4ff;
  font-weight:700;
}
.lms-footer-copy{
  padding:0 20px 24px;
  color:#bfd0f6;
  font-size:13px;
}

#course-request-section,
#payment-form,
#batch-section,
#live-class-section,
#quiz-section,
#assignment-section,
#results-section,
#student-card-section,
#profile-form,
[id^="admin-"]{
  scroll-margin-top:110px;
}

.lms-auth-panel-strong{
  border:1px solid rgba(191,209,246,.9);
  box-shadow:0 28px 60px rgba(16,58,136,.12);
}
.lms-form-intro{
  margin-bottom:22px;
  padding:18px 20px;
  border-radius:22px;
  background:linear-gradient(180deg,#f7faff 0%,#eef4ff 100%);
  border:1px solid var(--line);
}
.lms-form-intro p{
  margin:10px 0 0;
  color:#567196;
}
.lms-register-form{
  display:grid;
  gap:2px;
}
.lms-register-form small{
  color:#5e7392;
  line-height:1.7;
}
.lms-btn.is-loading{
  position:relative;
  opacity:.92;
}
.lms-btn.is-loading::after{
  content:"";
  width:14px;
  height:14px;
  border-radius:999px;
  border:2px solid rgba(255,255,255,.45);
  border-top-color:#fff;
  display:inline-block;
  animation:lmsSpin .7s linear infinite;
}
@keyframes lmsSpin{
  to{transform:rotate(360deg)}
}
.lms-terms-card{
  margin:8px 0 16px;
  padding:20px;
  border-radius:24px;
  background:linear-gradient(180deg,#fdfefe 0%,#f7fbff 100%);
  border:1px solid var(--line);
}
.lms-terms-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  margin-bottom:16px;
}
.lms-terms-header h4{
  margin:0 0 8px;
}
.lms-terms-header p{
  margin:0;
  color:#60718e;
  line-height:1.7;
}
.lms-terms-accept-list{
  display:grid;
  gap:12px;
}
.lms-check-row{
  display:flex;
  align-items:flex-start;
  gap:12px;
}
.lms-check-card{
  padding:14px 16px;
  border-radius:18px;
  border:1px solid #d9e5fb;
  background:#fff;
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.lms-check-card:hover{
  border-color:#9ebef8;
  box-shadow:0 14px 28px rgba(16,58,136,.08);
  transform:translateY(-1px);
}
.lms-check-card input[type="checkbox"]{
  flex:0 0 auto;
  width:18px;
  height:18px;
  margin-top:2px;
  accent-color:var(--primary-2);
  cursor:pointer;
}
.lms-check-card span{
  color:#24406f;
  font-size:14px;
  line-height:1.7;
}
.lms-terms-hero-card{
  margin-bottom:18px;
  padding:24px;
  background:
    radial-gradient(circle at top right, rgba(244,182,61,.16), transparent 24%),
    linear-gradient(135deg,#ffffff,#f6faff);
}
.lms-terms-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.lms-terms-section-card{
  min-height:100%;
}
.lms-terms-section-card h4{
  margin:0 0 14px;
}
.lms-terms-list{
  display:grid;
  gap:12px;
}
.lms-terms-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  color:#2a456f;
  line-height:1.75;
}
.lms-check-icon{
  display:inline-grid;
  place-items:center;
  width:24px;
  height:24px;
  flex:0 0 24px;
  border-radius:999px;
  background:var(--green-soft);
  color:var(--green);
  font-weight:800;
  box-shadow:inset 0 0 0 1px rgba(20,128,74,.12);
}
.lms-student-head{
  display:grid;
  grid-template-columns:64px minmax(0,1fr);
  align-items:center;
  gap:12px;
  min-width:220px;
}
.lms-student-head > div{
  min-width:0;
}
.lms-student-admin-photo-frame{
  width:64px;
  height:64px;
  display:block;
  overflow:hidden;
  border-radius:20px;
  border:2px solid rgba(38,89,204,.14);
  background:linear-gradient(180deg,#f7fbff,#e8f0ff);
  box-shadow:0 10px 22px rgba(16,58,136,.10);
  background-size:cover;
  background-position:center top;
  background-repeat:no-repeat;
}
.lms-student-admin-photo-frame-tall{
  width:72px;
  height:92px;
  border-radius:18px;
}
.lms-student-admin-photo{
  width:100%;
  height:100%;
  max-width:none !important;
  display:block;
  object-fit:cover;
  object-position:center top;
  background:#fff;
}
.lms-reset-form{
  margin-top:10px;
  display:grid;
  gap:8px;
}
.lms-reset-form input{
  min-width:240px;
}
.lms-admin-student-contact{
  display:grid;
  gap:10px;
  min-width:0;
}
.lms-admin-student-contact-line{
  display:grid;
  gap:4px;
}
.lms-admin-student-contact-line strong,
.lms-admin-student-contact-line span:last-child{
  word-break:break-word;
}
.lms-admin-student-label{
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#7086a8;
}
.lms-admin-action-stack{
  display:grid;
  gap:10px;
  min-width:200px;
}
.lms-admin-inline-form{
  margin:0;
}
.lms-admin-card-link{
  justify-content:center;
  width:100%;
  min-height:42px;
  border-radius:14px;
  border:1px solid #d5e1fb;
}
.lms-student-card-shell{
  display:grid;
  grid-template-columns:minmax(0,1.4fr) minmax(280px,.6fr);
  gap:22px;
  align-items:stretch;
}
.lms-student-card-front{
  position:relative;
  overflow:hidden;
  padding:28px;
  border-radius:28px;
  color:#fff;
  background:
    radial-gradient(circle at 88% 14%, rgba(255,255,255,.16), transparent 20%),
    radial-gradient(circle at 12% 90%, rgba(244,182,61,.18), transparent 18%),
    linear-gradient(135deg,#102b6a 0%,#214ea7 58%,#163d8f 100%);
  box-shadow:0 28px 60px rgba(16,58,136,.24);
}
.lms-student-card-front::before{
  content:"";
  position:absolute;
  inset:14px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.16);
  pointer-events:none;
}
.lms-student-card-brand{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:26px;
}
.lms-student-card-brand-copy{
  display:grid;
  gap:12px;
}
.lms-student-card-brand strong{
  font-size:26px;
  font-family:'Outfit','Manrope',sans-serif;
  letter-spacing:-.03em;
}
.lms-student-card-logo-wrap{
  width:84px;
  height:84px;
  flex:0 0 84px;
  display:grid;
  place-items:center;
  padding:6px;
  border-radius:26px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 20px 36px rgba(0,0,0,.14);
}
.lms-student-card-logo{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:22px;
  background:#fff;
}
.lms-student-card-main{
  display:grid;
  grid-template-columns:132px minmax(0,1fr);
  gap:20px;
  align-items:center;
}
.lms-card-avatar{
  width:132px;
  height:132px;
  border-radius:28px;
  object-fit:cover;
  border:4px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.16);
  box-shadow:0 18px 34px rgba(0,0,0,.16);
}
.lms-student-card-copy h3{
  margin:0;
  font-size:34px;
  color:#fff;
}
.lms-student-card-copy p{
  margin:8px 0 0;
  color:#dbe6ff;
}
.lms-student-card-meta{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin-top:18px;
}
.lms-student-card-meta span{
  display:block;
  padding:11px 13px;
  border-radius:16px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.10);
  color:#f4f7ff;
  font-size:13px;
  line-height:1.55;
}
.lms-student-card-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-top:24px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.16);
  color:#eaf0ff;
  font-weight:700;
}
.lms-card-qr-panel{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:linear-gradient(180deg,#ffffff 0%,#f7fbff 100%);
}
.lms-card-qr-panel p{
  margin:0 0 16px;
  color:#60718e;
  line-height:1.75;
}
.lms-card-qr-image{
  width:220px;
  max-width:100%;
  margin-bottom:18px;
  padding:14px;
  border-radius:24px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 14px 30px rgba(16,58,136,.08);
}
.lms-quiz-builder-form{gap:18px}
.lms-quiz-builder-intro{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding:18px 20px;
  border-radius:22px;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(38,89,204,.08), transparent 22%),
    linear-gradient(180deg,#fbfdff,#f5f9ff);
}
.lms-quiz-builder-intro h4{
  margin:0 0 6px;
  font-size:20px;
  color:#17335f;
}
.lms-quiz-builder-intro p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}
.lms-quiz-builder{
  display:grid;
  gap:16px;
}
.lms-quiz-question-card{
  padding:20px;
  border-radius:22px;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(244,182,61,.10), transparent 20%),
    linear-gradient(180deg,#ffffff,#f7fbff);
  box-shadow:0 14px 32px rgba(16,32,61,.06);
}
.lms-quiz-question-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.lms-quiz-question-head strong{
  font-size:18px;
  color:#17335f;
}
.lms-quiz-answer-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

@media (max-width:1280px){
  .lms-dashboard,
  .lms-hero,
  .lms-split,
  .lms-course-request-grid{
    grid-template-columns:1fr;
  }
  .lms-sidebar{
    position:static;
  }
}
@media (max-width:1200px){
  .lms-courses{grid-template-columns:repeat(3,minmax(0,1fr))}
  .lms-admin-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:1024px){
  .lms-footer-grid{grid-template-columns:1fr}
  .lms-courses{grid-template-columns:repeat(2,minmax(0,1fr))}
  .lms-stat-grid,
  .lms-support-grid,
  .lms-terms-grid,
  .lms-quiz-answer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .lms-student-card-shell{grid-template-columns:1fr}
  .lms-form-grid,
  .lms-result-grid,
  .lms-performance-grid,
  .lms-inline-field,
  .lms-card-grid{grid-template-columns:1fr}
  .lms-panel-body{padding:20px}
}
@media (max-width:900px){
  .lms-support-grid,
  .lms-terms-grid,
  .lms-quiz-answer-grid,
  .lms-course-quick-grid,
  .lms-admin-grid,
  .lms-stat-grid{grid-template-columns:1fr}
  .lms-admin-shortcuts{
    overflow:auto;
    flex-wrap:nowrap;
    padding-bottom:10px;
  }
  .lms-admin-shortcut{
    flex:0 0 auto;
  }
  .lms-public-record-layout{
    grid-template-columns:1fr;
  }
  .lms-public-summary-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width:720px){
  body.lms-nav-open{
    overflow:hidden;
  }
  .lms-topbar-inner{
    justify-content:space-between;
    padding:12px 0;
    align-items:center;
    min-height:74px;
  }
  .lms-topbar-actions{
    margin-left:auto;
  }
  .lms-menu-toggle{
    display:flex;
    width:52px;
    height:52px;
    border-radius:20px;
    position:relative;
    z-index:95;
    background:
      radial-gradient(circle at 30% 30%, rgba(255,255,255,.2), transparent 26%),
      linear-gradient(135deg,#103a88,#2b67e4);
    border-color:rgba(255,255,255,.24);
    box-shadow:0 18px 32px rgba(16,58,136,.24);
  }
  .lms-menu-toggle span{background:#fff}
  .lms-nav{
    position:fixed;
    top:78px;
    right:12px;
    width:min(310px, calc(100vw - 24px));
    max-height:calc(100vh - 96px);
    overflow:auto;
    display:grid;
    gap:12px;
    padding:16px;
    border-radius:30px;
    background:
      radial-gradient(circle at top right, rgba(38,89,204,.16), transparent 20%),
      radial-gradient(circle at bottom left, rgba(244,182,61,.12), transparent 18%),
      linear-gradient(180deg,rgba(255,255,255,.98),rgba(247,251,255,.96));
    border:1px solid rgba(215,228,255,.95);
    box-shadow:0 28px 52px rgba(16,32,61,.22);
    backdrop-filter:blur(18px);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(-12px) scale(.98);
    transition:opacity .22s ease, transform .22s ease, visibility .22s ease;
    z-index:92;
  }
  .lms-nav::before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:74px;
    border-radius:30px 30px 24px 24px;
    background:
      radial-gradient(circle at top right, rgba(38,89,204,.18), transparent 34%),
      linear-gradient(135deg, rgba(16,58,136,.08), rgba(255,255,255,0));
    pointer-events:none;
  }
  .lms-nav.is-open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0) scale(1);
  }
  .lms-nav-mobile-head{
    display:grid;
    gap:5px;
    padding:4px 6px 14px;
    border-bottom:1px solid #dbe6fb;
    margin-bottom:2px;
    position:relative;
    z-index:1;
  }
  .lms-nav-mobile-head strong{
    font-size:20px;
    color:#163266;
    font-family:'Outfit','Manrope',sans-serif;
    letter-spacing:-.03em;
  }
  .lms-nav-mobile-head span{
    color:#60718e;
    font-size:12px;
    line-height:1.55;
  }
  .lms-nav a{
    width:100%;
    text-align:left;
    min-height:52px;
    display:flex;
    align-items:center;
    border-radius:18px;
    padding:14px 18px;
    background:linear-gradient(180deg,#ffffff,#fbfdff);
    border:1px solid rgba(215,228,255,.92);
    box-shadow:0 12px 22px rgba(16,32,61,.06);
    font-size:15px;
    font-weight:800;
    position:relative;
    z-index:1;
  }
  .lms-nav a.is-primary{
    background:linear-gradient(135deg,var(--primary),var(--primary-2));
    box-shadow:0 18px 30px rgba(16,58,136,.22);
  }
  .lms-nav-backdrop{
    position:fixed;
    inset:0;
    border:none;
    padding:0;
    margin:0;
    background:rgba(10,24,53,.22);
    backdrop-filter:blur(3px);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .22s ease, visibility .22s ease;
    z-index:90;
  }
  body.lms-nav-open .lms-nav-backdrop{
    display:block;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }
  .lms-hero-copy h2{font-size:40px}
  .lms-form-grid,
  .lms-courses,
  .lms-stat-grid,
  .lms-admin-grid,
  .lms-course-quick-grid,
  .lms-performance-grid,
  .lms-result-grid,
  .lms-inline-field,
  .lms-card-grid{grid-template-columns:1fr}
  .lms-auth-panel,
  .lms-hero-copy,
  .lms-sidebar,
  .lms-panel-body{padding:20px}
  .lms-panel-head{padding:18px 20px}
  .lms-quiz-actions{flex-direction:column}
  .lms-footer-grid{padding:24px 20px}
  .lms-support-grid{grid-template-columns:1fr}
  .lms-fee-adjust-grid{grid-template-columns:1fr}
  .lms-admin-shortcuts{padding:16px}
  .lms-terms-header,
  .lms-student-card-brand,
  .lms-student-card-footer{flex-direction:column;align-items:flex-start}
  .lms-student-card-main,
  .lms-terms-grid,
  .lms-student-card-meta,
  .lms-quiz-answer-grid{grid-template-columns:1fr}
  .lms-card-avatar{width:112px;height:112px}
  .lms-reset-form input{min-width:0}
  .lms-quiz-builder-intro{flex-direction:column}
  .lms-student-head{
    grid-template-columns:72px minmax(0,1fr);
    align-items:start;
  }
  .lms-public-record-meta-grid{
    grid-template-columns:1fr;
  }
  .lms-public-record-head{
    flex-direction:column;
    align-items:flex-start;
  }
  .lms-public-record-brand-wrap{
    width:64px;
    height:64px;
  }
  .lms-public-summary-top{
    flex-direction:column;
    align-items:flex-start;
  }
  .lms-brand{
    align-items:center;
    gap:12px;
    min-width:0;
    flex:1 1 auto;
  }
  .lms-brand > div{
    min-width:0;
  }
  .lms-brand h1{
    font-size:20px;
  }
  .lms-brand p{
    font-size:12px;
    line-height:1.45;
    max-width:220px;
  }
}
@media (max-width:480px){
  .lms-shell{padding:0 14px}
  .lms-brand-badge{width:52px;height:52px}
  .lms-footer-brand{
    align-items:flex-start;
  }
  .lms-footer-logo-wrap{
    width:60px;
    height:60px;
    flex-basis:60px;
  }
  .lms-brand h1{font-size:20px}
  .lms-brand p{font-size:12px;line-height:1.45}
  .lms-nav{
    top:76px;
    right:10px;
    width:min(320px, calc(100vw - 20px));
    max-height:calc(100vh - 88px);
  }
  .lms-nav-mobile-head strong{font-size:19px}
  .lms-nav a{
    min-height:50px;
    padding:13px 16px;
  }
  .lms-student-card-logo-wrap{
    width:72px;
    height:72px;
    flex-basis:72px;
  }
  .lms-hero-copy h2{font-size:34px}
  .lms-stat-card strong{font-size:30px}
}
