:root {
  --primary: #2563eb;
  --primary-dark: #0f2a5f;
  --primary-soft: #eaf3ff;
  --success: #16a085;
  --warning: #f59e0b;
  --danger: #ef4444;
  --purple: #7c3aed;
  --bg: #f6faff;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-soft: 0 14px 34px rgba(15, 42, 95, 0.12);
  --shadow-card: 0 8px 24px rgba(15, 42, 95, 0.1);
  --nav-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #07336d;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(59, 130, 246, 0.38), transparent 30%),
    linear-gradient(140deg, #062a5f 0%, #0b4a9b 54%, #07336d 100%);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.st-device-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 10px;
}

.st-phone {
  width: min(100%, 430px);
  min-height: calc(100vh - 20px);
  max-height: 960px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 20, 60, 0.42);
}

.st-app-main {
  min-height: calc(100vh - var(--nav-height));
  padding: 18px 18px calc(var(--nav-height) + env(safe-area-inset-bottom) + 18px);
  overflow: hidden;
}

.home .st-app-main {
  min-height: 100vh;
  padding: 0;
}

.st-content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-card);
}

.st-app-header {
  height: 62px;
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 8px;
  padding: env(safe-area-inset-top) 16px 0;
  background: rgba(246, 250, 255, 0.92);
  backdrop-filter: blur(14px);
}

.st-app-header strong {
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
}

.st-icon-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  border-radius: 50%;
}

.st-icon-btn svg {
  width: 24px;
  height: 24px;
}

.st-bottom-nav {
  height: calc(var(--nav-height) + env(safe-area-inset-bottom));
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  padding: 10px 10px env(safe-area-inset-bottom);
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 -10px 26px rgba(15, 42, 95, 0.08);
  backdrop-filter: blur(16px);
}

.st-bottom-nav a {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 4px;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
}

.st-bottom-nav svg {
  width: 24px;
  height: 24px;
  padding: 2px;
}

.st-bottom-nav a.is-active {
  color: var(--primary);
}

.st-splash {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 44px 26px 18px;
  background: linear-gradient(180deg, #ffffff 0%, #eef7ff 58%, #d8edff 100%);
  text-align: center;
  overflow: hidden;
}

.st-splash::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -70px;
  left: -45px;
  height: 170px;
  background: #bfdbfe;
  border-radius: 50% 50% 0 0;
  opacity: 0.8;
}

.st-splash-top,
.st-school-scene,
.st-benefits,
.st-splash-actions {
  position: relative;
  z-index: 1;
}

.st-logo-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #60a5fa);
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.28);
}

.st-logo-mark--large {
  width: 82px;
  height: 82px;
  border-radius: 28px;
}

.st-logo-mark svg {
  width: 70%;
  height: 70%;
}

.st-splash h1 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 45px;
  line-height: 0.96;
  font-weight: 900;
}

.st-splash h1 span {
  display: block;
}

.st-splash h1 span:last-child {
  color: var(--primary);
}

.st-splash p {
  max-width: 300px;
  margin: 20px auto 0;
  color: var(--primary-dark);
  font-size: 17px;
  line-height: 1.42;
}

.st-school-scene {
  width: 112%;
  max-width: 410px;
  margin: 20px -26px 0;
}

.st-school-scene svg {
  width: 100%;
  height: auto;
}

.st-benefits {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-top: auto;
  padding-top: 2px;
}

.st-benefits div {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 800;
}

.st-benefits span {
  width: 51px;
  height: 51px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(15, 42, 95, 0.08);
}

.st-benefits svg {
  width: 25px;
  height: 25px;
}

.st-splash-actions {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.st-dashboard {
  margin: -18px -18px 0;
}

.st-dashboard-hero {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 28px 20px 86px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 5%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(135deg, #2563eb 0%, #3b82f6 60%, #60a5fa 100%);
}

.st-dashboard-hero h1 {
  margin: 4px 0 8px;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 850;
}

.st-dashboard-hero p,
.st-eyebrow {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
}

.st-header-actions {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.st-bell,
.st-avatar {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(15, 42, 95, 0.12);
}

.st-bell svg {
  width: 24px;
  height: 24px;
}

.st-bell b {
  position: absolute;
  top: -4px;
  right: -2px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--danger);
  border: 2px solid #fff;
  border-radius: 999px;
  font-size: 11px;
}

.st-avatar {
  color: var(--primary-dark);
  font-weight: 900;
  background: #ffe0bd;
}

.st-avatar--large {
  width: 84px;
  height: 84px;
  font-size: 32px;
}

.st-hero-card {
  min-height: 124px;
  display: grid;
  grid-template-columns: 1fr 142px;
  align-items: center;
  gap: 6px;
  margin: -62px 18px 18px;
  padding: 18px 12px 14px 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 17px;
  box-shadow: var(--shadow-soft);
}

.st-hero-card h2 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 17px;
  line-height: 1.3;
  font-weight: 900;
}

.st-dots {
  display: flex;
  gap: 5px;
  margin-top: 22px;
}

.st-dots span {
  width: 6px;
  height: 6px;
  background: #cbd5e1;
  border-radius: 50%;
}

.st-dots span:first-child {
  width: 8px;
  background: var(--primary);
}

.st-illustration {
  width: 100%;
  min-width: 0;
}

.st-illustration svg {
  width: 100%;
  height: auto;
}

.st-section-title,
.st-section-head {
  margin: 18px 0 12px;
  padding: 0 0;
}

.st-dashboard .st-section-title,
.st-dashboard .st-section-head,
.st-dashboard .st-card,
.st-dashboard .st-service-grid {
  margin-right: 18px;
  margin-left: 18px;
}

.st-section-title,
.st-section-head h2 {
  color: var(--text);
  font-size: 17px;
  font-weight: 850;
}

.st-section-title a,
.st-section-head a,
.st-card-head a {
  margin-left: auto;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

.st-section-head,
.st-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.st-card-head h2,
.st-section-head h2 {
  margin: 0;
}

.st-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.st-service-card {
  min-height: 104px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  padding: 12px 8px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 17px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.st-service-card span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: var(--service-color, var(--primary));
  background: color-mix(in srgb, var(--service-color, var(--primary)) 13%, #fff);
  border-radius: 14px;
}

.st-service-card svg {
  width: 25px;
  height: 25px;
}

.st-service-card strong {
  color: #0f172a;
  font-size: 11px;
  line-height: 1.25;
  text-align: center;
}

.st-card,
.st-list-card,
.st-mini-card,
.st-counselor-card,
.st-profile-card,
.st-login-card,
.st-form-card,
.st-empty {
  background: var(--surface);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.st-card {
  padding: 16px;
}

.st-announcement-card {
  margin-top: 18px;
}

.st-list-row,
.st-list-card {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
}

.st-list-row {
  margin-top: 14px;
}

.st-list-card {
  min-height: 74px;
  padding: 13px 14px;
}

.st-list-row strong,
.st-list-card strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  line-height: 1.25;
}

.st-list-row p,
.st-list-card p,
.st-mini-card small,
.st-counselor-card p,
.st-profile-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.st-list-stack {
  display: grid;
  gap: 11px;
}

.st-list-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 50%;
}

.st-list-icon--blue {
  color: var(--primary);
  background: #dbeafe;
}

.st-list-icon--teal {
  color: #0f9da5;
  background: #dcfdfa;
}

.st-list-icon svg {
  width: 24px;
  height: 24px;
}

.st-dot-blue {
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 50%;
}

.st-chevron {
  color: #64748b;
  font-size: 28px;
  line-height: 1;
}

.st-feature-card {
  min-height: 184px;
  display: grid;
  grid-template-columns: 1fr 150px;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 20px 0 0 20px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.st-feature-card--blue {
  background: linear-gradient(135deg, #e9f1ff, #dce8ff);
}

.st-feature-card--green {
  background: linear-gradient(135deg, #e5fbf6, #dff5ec);
}

.st-feature-card h2 {
  margin: 0 0 8px;
  color: var(--primary-dark);
  font-size: 20px;
  font-weight: 900;
}

.st-feature-card p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 12px;
  line-height: 1.45;
}

.st-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.st-pill-btn--green {
  background: linear-gradient(135deg, var(--success), #0d9488);
}

.st-banner {
  min-height: 126px;
  display: grid;
  grid-template-columns: 1fr 128px;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 18px 8px 12px 18px;
  overflow: hidden;
  color: #fff;
  border-radius: 13px;
  box-shadow: var(--shadow-card);
}

.st-banner p {
  margin: 0;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.st-banner--blue {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.st-banner--purple {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.st-banner--orange {
  background: linear-gradient(135deg, #f59e0b, #fb923c);
}

.st-banner--green,
.st-banner--teal {
  background: linear-gradient(135deg, #14b8a6, #0f766e);
}

.st-btn {
  width: 100%;
  min-height: 46px;
  display: inline-grid;
  place-items: center;
  padding: 12px 16px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.st-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  box-shadow: 0 12px 22px rgba(37, 99, 235, 0.22);
}

.st-btn--success {
  color: #fff;
  background: linear-gradient(135deg, var(--success), #0f766e);
}

.st-btn--warning {
  color: #fff;
  background: linear-gradient(135deg, var(--warning), #ea580c);
}

.st-btn--purple {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), #6d28d9);
}

.st-btn--outline {
  color: var(--primary);
  background: #fff;
  border: 1px solid #bfdbfe;
}

.st-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.st-mini-card {
  min-height: 102px;
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  cursor: pointer;
  text-align: left;
}

.st-mini-card span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--purple);
  background: #ede9fe;
  border-radius: 12px;
}

.st-mini-card strong {
  font-size: 13px;
}

.st-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 16px;
}

.st-chip-row span {
  padding: 8px 13px;
  color: #334155;
  background: #eaf0f7;
  border-radius: 999px;
  font-size: 12px;
}

.st-counselor-card {
  display: grid;
  grid-template-columns: 58px 1fr 70px;
  align-items: center;
  gap: 12px;
  padding: 14px;
}

.st-photo {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  background: #fee2e2;
  border-radius: 50%;
  font-weight: 900;
}

.st-counselor-card .st-btn {
  min-height: 36px;
  padding: 8px 10px;
  font-size: 12px;
}

.st-form-card {
  display: none;
  margin: 14px 0 18px;
  padding: 15px;
}

.st-form-card.is-open {
  display: block;
}

.st-form {
  display: grid;
  gap: 13px;
}

.st-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.st-form input,
.st-form select,
.st-form textarea,
.st-chat-input input,
#st-login-form input[type="text"],
#st-login-form input[type="password"],
.st-auth-panel input[type="email"],
.st-auth-panel input[type="password"],
.st-auth-panel select {
  width: 100%;
  min-height: 45px;
  padding: 11px 13px;
  color: var(--text);
  background: #f8fbff;
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: none;
}

.st-form textarea {
  resize: vertical;
}

.st-form input:focus,
.st-form select:focus,
.st-form textarea:focus,
.st-chat-input input:focus,
#st-login-form input:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.st-status {
  display: inline-grid;
  place-items: center;
  min-height: 26px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.st-status--baru,
.st-status--diajukan {
  color: #1d4ed8;
  background: #dbeafe;
}

.st-status--diproses {
  color: #c2410c;
  background: #ffedd5;
}

.st-status--selesai {
  color: #047857;
  background: #d1fae5;
}

.st-status--ditolak {
  color: #b91c1c;
  background: #fee2e2;
}

.st-notice {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 750;
}

.st-notice--success {
  color: #047857;
  background: #d1fae5;
}

.st-notice--error {
  color: #b91c1c;
  background: #fee2e2;
}

.st-empty {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 28px 18px;
  text-align: center;
}

.st-empty h3,
.st-profile-card h2,
.st-login-card h1 {
  margin: 0;
  color: var(--primary-dark);
}

.st-empty p,
.st-login-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.st-empty__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 20px;
}

.st-empty__icon svg {
  width: 30px;
  height: 30px;
}

.st-chat-box {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.st-chat-message {
  max-width: 82%;
  justify-self: start;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px 16px 16px 4px;
  box-shadow: var(--shadow-card);
}

.st-chat-message.is-me {
  justify-self: end;
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  border-radius: 16px 16px 4px 16px;
}

.st-chat-message p {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.4;
}

.st-chat-input {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 10px;
}

.st-chat-input button {
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--primary);
  border: 0;
  border-radius: 14px;
}

.st-profile-card,
.st-login-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 24px 18px;
  text-align: center;
}

.st-profile-card .st-list-stack,
.st-login-card form {
  width: 100%;
}

.st-auth-tabs {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 5px;
  background: #eef5ff;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.st-auth-tab {
  min-height: 38px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
}

.st-auth-tab.is-active {
  color: var(--primary);
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 42, 95, 0.08);
}

.st-auth-panel {
  width: 100%;
  display: none;
}

.st-auth-panel.is-active {
  display: block;
}

.st-auth-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

#st-login-form {
  display: grid;
  gap: 12px;
  text-align: left;
}

#st-login-form label {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

#st-login-form .login-remember label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 650;
}

#st-login-form input[type="submit"] {
  width: 100%;
  min-height: 46px;
  color: #fff;
  background: var(--primary);
  border: 0;
  border-radius: 12px;
  font-weight: 850;
}

.is-pressed {
  transform: scale(0.98);
}

@media (hover: hover) {
  .st-service-card:hover,
  .st-list-card:hover,
  .st-btn:hover,
  .st-mini-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(15, 42, 95, 0.14);
  }
}

@media (min-width: 900px) {
  .st-device-shell {
    align-items: center;
    padding: 24px;
  }

  .st-phone {
    width: min(1180px, calc(100vw - 48px));
    min-height: calc(100vh - 48px);
    max-height: none;
    border-radius: 32px;
  }

  .st-app-header {
    height: 72px;
    margin-left: 92px;
    padding: 0 34px;
    background: rgba(246, 250, 255, 0.88);
  }

  .st-app-header strong {
    font-size: 19px;
  }

  .st-app-main {
    min-height: calc(100vh - 120px);
    margin-left: 92px;
    padding: 28px 34px 34px;
  }

  .home .st-app-main {
    min-height: calc(100vh - 48px);
    margin-left: 0;
    padding: 0;
  }

  .page-template-page-login .st-app-header,
  .page-template-page-login .st-app-main {
    margin-left: 0;
  }

  .st-bottom-nav {
    width: 92px;
    height: 100%;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 76px);
    align-content: center;
    gap: 4px;
    padding: 28px 10px;
    border-top: 0;
    border-right: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 12px 0 28px rgba(15, 42, 95, 0.07);
  }

  .st-bottom-nav a {
    align-content: center;
    min-height: 68px;
    border-radius: 18px;
  }

  .st-bottom-nav a.is-active {
    background: var(--primary-soft);
  }

  .st-bottom-nav svg {
    width: 26px;
    height: 26px;
  }

  .st-splash {
    min-height: calc(100vh - 48px);
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
    grid-template-rows: 1fr auto auto;
    column-gap: 34px;
    align-items: center;
    padding: 54px 64px 38px;
    text-align: left;
  }

  .st-splash::after {
    height: 210px;
  }

  .st-splash-top {
    align-self: center;
  }

  .st-logo-mark {
    margin-left: 0;
  }

  .st-splash h1 {
    font-size: clamp(56px, 6vw, 82px);
  }

  .st-splash p {
    max-width: 390px;
    margin-left: 0;
    font-size: 19px;
  }

  .st-school-scene {
    width: 100%;
    max-width: 620px;
    justify-self: end;
    margin: 0;
  }

  .st-benefits {
    grid-column: 1 / -1;
    max-width: 720px;
    justify-self: center;
    margin-top: 14px;
  }

  .st-splash-actions {
    width: 420px;
    grid-column: 1 / -1;
    justify-self: center;
  }

  .st-dashboard {
    margin: -28px -34px 0;
  }

  .st-dashboard-hero {
    padding: 40px 42px 122px;
  }

  .st-dashboard-hero h1 {
    font-size: 30px;
  }

  .st-dashboard-hero p,
  .st-eyebrow {
    font-size: 15px;
  }

  .st-hero-card {
    min-height: 176px;
    grid-template-columns: 1fr minmax(240px, 340px);
    margin: -86px 34px 24px;
    padding: 24px 24px 18px 28px;
  }

  .st-hero-card h2 {
    font-size: 27px;
  }

  .st-dashboard .st-section-title,
  .st-dashboard .st-section-head,
  .st-dashboard .st-card,
  .st-dashboard .st-service-grid {
    margin-right: 34px;
    margin-left: 34px;
  }

  .st-section-title,
  .st-section-head h2 {
    font-size: 20px;
  }

  .st-service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .st-service-card {
    min-height: 132px;
    border-radius: 20px;
  }

  .st-service-card strong {
    font-size: 13px;
  }

  .st-service-card span {
    width: 48px;
    height: 48px;
  }

  .st-service-card svg {
    width: 29px;
    height: 29px;
  }

  .st-feature-card {
    min-height: 220px;
    grid-template-columns: 1fr minmax(250px, 360px);
    padding: 28px 10px 0 28px;
  }

  .st-feature-card h2 {
    font-size: 25px;
  }

  .st-feature-card p,
  .st-banner p {
    font-size: 15px;
  }

  .st-banner {
    min-height: 168px;
    grid-template-columns: 1fr minmax(240px, 320px);
    padding: 24px 18px 18px 24px;
  }

  .st-action-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }

  .st-list-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .st-announcement-card .st-list-stack,
  .st-profile-card .st-list-stack,
  .st-chat-box,
  .st-login-card .st-list-stack {
    grid-template-columns: 1fr;
  }

  .st-form-card,
  .st-card,
  .st-profile-card,
  .st-login-card,
  .st-empty {
    border-radius: 22px;
  }

  .st-form-card,
  .st-login-card,
  .st-profile-card {
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
  }

  .st-chat-box,
  .st-chat-input {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
  }

  .st-counselor-card {
    max-width: 720px;
  }
}

@media (min-width: 1180px) {
  .st-service-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .st-dashboard .st-service-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .st-device-shell {
    padding: 0;
  }

  .st-phone {
    width: 100%;
    min-height: 100vh;
    border-radius: 0;
    box-shadow: none;
  }
}

@media (max-width: 360px) {
  .st-app-main {
    padding-right: 14px;
    padding-left: 14px;
  }

  .st-dashboard {
    margin-right: -14px;
    margin-left: -14px;
  }

  .st-hero-card,
  .st-banner,
  .st-feature-card {
    grid-template-columns: 1fr 112px;
  }

  .st-service-grid {
    gap: 9px;
  }

  .st-service-card {
    min-height: 96px;
  }
}
