:root {
  --teal: #18a6a6;
  --teal-dark: #07575b;
  --teal-deep: #063f43;
  --mint: #70f5c2;
  --orange: #f28c28;
  --ink: #183637;
  --muted: #6d8586;
  --paper: #f5fbfa;
  --line: rgba(7, 87, 91, 0.14);
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }

html { min-width: 320px; background: var(--paper); }

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(242, 140, 40, 0.13), transparent 25%),
    radial-gradient(circle at 5% 78%, rgba(24, 166, 166, 0.14), transparent 28%),
    linear-gradient(135deg, #fff 0%, #f3fcfa 58%, #fff8f1 100%);
}

a { color: inherit; }
button, input, select { font: inherit; }

.account-grid {
  position: fixed;
  z-index: -1;
  inset: 0;
  opacity: 0.33;
  background-image:
    linear-gradient(rgba(7, 87, 91, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 87, 91, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.account-nav {
  position: sticky;
  z-index: 20;
  top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 16px auto 0;
  padding: 10px 14px 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 55px rgba(7, 87, 91, 0.1);
  backdrop-filter: blur(22px) saturate(145%);
}

.account-brand {
  display: grid;
  gap: 1px;
  width: 222px;
  text-decoration: none;
}

.account-brand img { display: block; width: 100%; height: auto; }
.account-brand small { margin-left: 38px; color: #617a7b; letter-spacing: 1.25px; text-transform: uppercase; font-size: 7px; font-weight: 900; }

.account-nav nav { display: flex; align-items: center; gap: 18px; }
.account-nav nav > a { text-decoration: none; text-transform: uppercase; letter-spacing: 0.8px; font-size: 9px; font-weight: 900; }
.account-nav nav > a:not(.account-chip):hover { color: var(--orange); }

.account-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 43px;
  padding: 6px 13px 6px 7px;
  border: 1px solid rgba(24, 166, 166, 0.2);
  border-radius: 12px;
  background: linear-gradient(135deg, #e9fffa, #fff);
  box-shadow: 4px 4px 0 rgba(242, 140, 40, 0.13);
}

.account-chip span {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 9px;
  color: #fff;
  background: var(--teal);
  font: 900 12px/1 Arial, sans-serif;
}

.account-main { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 76px 0 90px; }

.auth-stage, .register-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.75fr);
  align-items: center;
  gap: clamp(44px, 7vw, 105px);
  min-height: calc(100vh - 250px);
}

.register-stage { align-items: start; grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1fr); }
.register-intro { position: sticky; top: 145px; padding-top: 62px; }

.account-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--teal-dark);
  letter-spacing: 2px;
  font-size: 8px;
  font-weight: 900;
}

.account-eyebrow span { width: 27px; height: 2px; background: var(--orange); }

.auth-story h1, .register-intro h1, .dashboard-hero h1, .security-heading h1 {
  margin: 0;
  letter-spacing: -3.5px;
  font: 500 clamp(56px, 6.4vw, 92px)/0.92 Georgia, "Times New Roman", serif;
}

.auth-story h1 em, .register-intro h1 em, .dashboard-hero h1 em, .security-heading h1 em { color: var(--teal); font-weight: 500; }
.auth-story > p, .register-intro > p, .dashboard-hero > div > p:last-child, .security-heading > div > p:last-child {
  max-width: 620px;
  margin: 30px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.auth-vitals { display: grid; gap: 10px; max-width: 610px; margin-top: 42px; }
.auth-vitals article {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(10px);
}
.auth-vitals b { color: var(--orange); font: 700 11px/1 Georgia, serif; }
.auth-vitals span { font-size: 11px; font-weight: 900; }
.auth-vitals small { color: var(--muted); font-size: 9px; }

.auth-card, .dashboard-card, .identity-card {
  border: 1px solid rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 28px 90px rgba(7,87,91,0.13);
  backdrop-filter: blur(24px) saturate(140%);
}

.auth-card { padding: clamp(28px, 4vw, 48px); border-radius: 28px; }
.auth-card-head { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; color: var(--teal-dark); letter-spacing: 1.5px; font-size: 7px; font-weight: 900; }
.auth-card-head i { height: 1px; background: rgba(7,87,91,0.16); }
.auth-card-head b { color: var(--orange); }
.auth-card h2 { margin: 36px 0 10px; font: 500 44px/1 Georgia, serif; }
.auth-card > p { margin: 0 0 26px; color: var(--muted); font-size: 11px; line-height: 1.65; }

.account-alert { margin: 0 0 18px; padding: 13px 15px; border-radius: 11px; font-size: 10px; font-weight: 800; line-height: 1.5; }
.account-alert.error { color: #8a271e; background: #fff0ed; border: 1px solid #ffd2ca; }
.account-alert.success { color: #075d4e; background: #e8fff7; border: 1px solid #b9f1dc; }
.account-alert.notice { color: #6a4a09; background: #fff7dc; border: 1px solid #f4dfa1; }

.account-form { display: grid; gap: 15px; }
.account-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.account-form label:not(.account-check) { display: grid; gap: 7px; }
.account-form label > span { color: var(--teal-dark); letter-spacing: 0.7px; text-transform: uppercase; font-size: 8px; font-weight: 900; }
.account-form label > span small { color: var(--muted); font-size: 7px; }
.account-form input, .account-form select {
  width: 100%;
  min-height: 49px;
  padding: 0 14px;
  border: 1px solid rgba(7,87,91,0.16);
  border-radius: 11px;
  outline: none;
  background: rgba(248,253,252,0.86);
  color: var(--ink);
  font-size: 12px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.account-form input:focus, .account-form select:focus { border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(24,166,166,0.1); }
.account-form button, .account-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(100deg, var(--teal-dark), var(--teal));
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 9px;
  font-weight: 900;
}
.account-form button:hover, .account-button:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(7,87,91,0.18); }
.account-form button:disabled { cursor: not-allowed; opacity: 0.55; }
.account-form button b { color: var(--mint); font-size: 17px; }
.account-honeypot { position: absolute !important; left: -9999px !important; }

.auth-switch { display: flex; justify-content: space-between; gap: 16px; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; }
.auth-switch a, .support-link { color: var(--teal-dark); font-weight: 900; }
.support-link { display: block; margin-top: 18px; text-align: center; font-size: 9px; }

.account-check { display: grid !important; grid-template-columns: 17px 1fr; align-items: start; gap: 10px; color: #536e6f; font-size: 9px; line-height: 1.5; }
.account-check input { width: 16px; min-height: 16px; margin: 1px 0 0; accent-color: var(--teal); }
.account-check span { letter-spacing: 0 !important; text-transform: none !important; font-size: 9px !important; font-weight: 600 !important; }
.account-check a { color: var(--teal-dark); font-weight: 900; }
.account-check.optional { opacity: 0.82; }
.password-rule { display: grid; align-content: center; gap: 5px; min-height: 49px; padding: 8px 13px; border-radius: 11px; background: #fff5e9; }
.password-rule b { color: var(--orange); letter-spacing: 1px; font-size: 7px; }
.password-rule span { color: #75634e; font-size: 8px; line-height: 1.4; }

.identity-route { display: flex; align-items: center; gap: 10px; margin-top: 42px; color: var(--teal-dark); letter-spacing: 1px; font-size: 7px; font-weight: 900; }
.identity-route i { flex: 1; height: 1px; background: linear-gradient(90deg, var(--teal), var(--orange)); }

.dashboard-hero, .security-heading { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 45px; padding: 20px 0 55px; }
.dashboard-hero h1, .security-heading h1 { font-size: clamp(52px, 6vw, 82px); }
.identity-card { min-width: 280px; padding: 25px; border-radius: 22px; }
.identity-card small { display: block; color: var(--muted); letter-spacing: 1.5px; font-size: 7px; font-weight: 900; }
.identity-card strong { display: block; margin: 15px 0 17px; color: var(--teal-dark); font: 700 17px/1 Georgia, serif; }
.identity-card span { display: flex; align-items: center; gap: 8px; color: #0a7f68; font-size: 9px; font-weight: 900; }
.identity-card i { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(112,245,194,0.18); }
.dashboard-alert { max-width: 760px; margin: 0 0 24px; }

.vital-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 24px; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: rgba(255,255,255,0.68); }
.vital-strip article { min-height: 145px; padding: 24px; border-right: 1px solid var(--line); }
.vital-strip article:last-child { border-right: 0; }
.vital-strip small { color: var(--muted); letter-spacing: 1.3px; font-size: 7px; font-weight: 900; }
.vital-strip strong { display: block; margin: 17px 0 8px; color: var(--teal-dark); font: 500 43px/0.9 Georgia, serif; }
.vital-strip span { color: var(--muted); font-size: 8px; }

.dashboard-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.55fr); gap: 24px; }
.dashboard-card { padding: 30px; border-radius: 24px; }
.card-heading { display: flex; align-items: start; justify-content: space-between; gap: 24px; }
.dashboard-card h2 { margin: 0; color: var(--teal-dark); font: 500 34px/1 Georgia, serif; }
.privacy-pill { padding: 7px 9px; border-radius: 8px; color: #087764; background: #e6fff6; letter-spacing: 1px; font-size: 6px; font-weight: 900; }
.journey-list { display: grid; margin-top: 24px; }
.journey-list > article { display: grid; grid-template-columns: 18px minmax(0, 1fr) auto; gap: 15px; padding: 18px 0; border-top: 1px solid var(--line); }
.journey-mark { width: 9px; height: 9px; margin-top: 7px; border: 2px solid var(--teal); border-radius: 50%; box-shadow: 0 0 0 5px rgba(24,166,166,0.08); }
.journey-list small { color: var(--muted); letter-spacing: 0.8px; font-size: 7px; font-weight: 800; }
.journey-list h3 { margin: 5px 0; font-size: 12px; }
.journey-list p { margin: 0; color: var(--muted); font-size: 8px; }
.journey-status { display: grid; justify-items: end; align-content: center; gap: 5px; }
.journey-status b { color: var(--teal-dark); font-size: 9px; }
.journey-status span { color: var(--muted); font-size: 8px; }
.mono { font-family: "Courier New", monospace; }
.empty-state { margin-top: 25px; padding: 32px; border: 1px dashed rgba(7,87,91,0.22); border-radius: 17px; text-align: center; }
.empty-state b { color: var(--teal-dark); }
.empty-state p { color: var(--muted); font-size: 10px; line-height: 1.6; }
.empty-state a { color: var(--orange); font-size: 9px; font-weight: 900; }

.dashboard-side { display: grid; align-content: start; gap: 24px; }
.profile-card dl { display: grid; gap: 0; margin: 22px 0; }
.profile-card dl div { display: grid; grid-template-columns: 90px 1fr; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); }
.profile-card dt { color: var(--muted); text-transform: uppercase; letter-spacing: 0.7px; font-size: 7px; font-weight: 900; }
.profile-card dd { margin: 0; overflow-wrap: anywhere; font-size: 9px; font-weight: 800; }
.account-button { width: 100%; }
.account-button.secondary { width: auto; min-height: 44px; color: var(--teal-dark); background: #fff; border: 1px solid var(--line); box-shadow: none; }
.account-button.danger { width: 100%; color: #8a271e; background: #fff0ed; border: 1px solid #ffd2ca; }
.help-card { color: #fff; background: linear-gradient(145deg, var(--teal-dark), var(--teal-deep)); }
.help-card > span { color: var(--mint); letter-spacing: 1.5px; font-size: 7px; font-weight: 900; }
.help-card h2 { margin: 15px 0 24px; color: #fff; }
.help-card a { color: var(--mint); font-size: 9px; font-weight: 900; }
.logout-form { display: flex; justify-content: flex-end; margin-top: 24px; }
.logout-form button { border: 0; background: transparent; color: #758c8c; cursor: pointer; text-decoration: underline; font-size: 9px; font-weight: 800; }

.security-heading { align-items: center; }
.security-heading .account-button { align-self: end; }
.security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.card-copy { margin: 14px 0 24px; color: var(--muted); font-size: 10px; line-height: 1.6; }
.account-form.compact { margin-top: 24px; }
.session-list { display: grid; margin: 23px 0; }
.session-list article { display: grid; grid-template-columns: 34px 1fr 8px; align-items: center; gap: 12px; padding: 14px 0; border-top: 1px solid var(--line); }
.device-icon { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 9px; color: var(--teal-dark); background: #e8f8f6; }
.session-list b, .session-list small { display: block; }
.session-list b { font-size: 9px; }
.session-list small { margin-top: 4px; color: var(--muted); font-size: 7px; }
.session-list i { width: 7px; height: 7px; border-radius: 50%; background: #c7d2d2; }
.session-list article.current i { background: var(--mint); box-shadow: 0 0 0 4px rgba(112,245,194,0.15); }
.security-note { margin: 16px 0 0; color: var(--muted); font-size: 8px; line-height: 1.55; }

.account-footer { display: flex; justify-content: space-between; gap: 20px; width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 26px 0 34px; border-top: 1px solid var(--line); color: var(--muted); font-size: 8px; }
.account-footer nav { display: flex; gap: 18px; }

@media (max-width: 900px) {
  .auth-stage, .register-stage, .dashboard-grid, .security-grid { grid-template-columns: 1fr; }
  .register-intro { position: static; padding-top: 0; }
  .auth-stage { min-height: auto; }
  .dashboard-side { grid-template-columns: 1fr 1fr; }
  .vital-strip { grid-template-columns: repeat(2, 1fr); }
  .vital-strip article:nth-child(2) { border-right: 0; }
  .vital-strip article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 650px) {
  .account-nav { top: 8px; width: calc(100% - 16px); min-height: 66px; margin-top: 8px; padding: 8px 10px; border-radius: 15px; }
  .account-brand { width: 148px; }
  .account-brand small { margin-left: 25px; font-size: 5px; }
  .account-nav nav { gap: 6px; }
  .account-nav nav > a:not(.account-chip) { display: none; }
  .account-chip { min-height: 38px; padding-right: 9px; font-size: 7px !important; }
  .account-chip span { width: 25px; height: 25px; }
  .account-main { width: calc(100% - 24px); padding: 52px 0 60px; }
  .auth-stage, .register-stage { gap: 32px; }
  .auth-story h1, .register-intro h1, .dashboard-hero h1, .security-heading h1 { letter-spacing: -2px; font-size: clamp(46px, 14vw, 64px); }
  .auth-story > p, .register-intro > p { margin: 22px 0; font-size: 12px; }
  .auth-vitals { margin-top: 28px; }
  .auth-vitals article { grid-template-columns: 30px 1fr; padding: 12px; }
  .auth-vitals small { display: none; }
  .auth-card { padding: 25px 20px; border-radius: 22px; }
  .auth-card h2 { margin-top: 28px; font-size: 36px; }
  .account-form-grid { grid-template-columns: 1fr; }
  .dashboard-hero, .security-heading { grid-template-columns: 1fr; gap: 22px; padding-bottom: 36px; }
  .identity-card { min-width: 0; }
  .vital-strip { grid-template-columns: 1fr 1fr; }
  .vital-strip article { min-height: 118px; padding: 17px; }
  .vital-strip strong { font-size: 34px; }
  .dashboard-card { padding: 22px 18px; border-radius: 20px; }
  .dashboard-side { grid-template-columns: 1fr; }
  .journey-list > article { grid-template-columns: 13px 1fr; }
  .journey-status { grid-column: 2; justify-items: start; }
  .account-footer { display: grid; width: calc(100% - 24px); }
  .account-footer nav { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* Shared homepage visual system for the complete student area */
:root {
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background:
    radial-gradient(circle at 8% 14%, rgba(24, 166, 166, 0.16), transparent 26%),
    radial-gradient(circle at 92% 36%, rgba(242, 140, 40, 0.14), transparent 24%),
    radial-gradient(circle at 38% 82%, rgba(24, 166, 166, 0.11), transparent 29%),
    linear-gradient(145deg, #f7fffe 0%, #fffaf5 48%, #f4fbfa 100%);
  background-attachment: fixed;
}

.account-grid {
  opacity: 0.25;
  background-size: 72px 72px;
}

.account-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  min-height: 106px;
  margin: 0;
  padding: 0 4.5vw;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.82), rgba(243, 255, 253, 0.66), rgba(255, 248, 240, 0.72));
  box-shadow:
    0 12px 38px rgba(8, 79, 83, 0.1),
    inset 0 -1px 0 rgba(24, 166, 166, 0.1);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  backdrop-filter: blur(24px) saturate(145%);
}

.account-brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(270px, 29vw);
  min-width: 200px;
}

.account-brand {
  display: inline-flex;
  width: 100%;
  text-decoration: none;
}

.account-brand img {
  width: 100%;
  background: transparent;
  object-fit: contain;
}

.account-brand-byline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: -2px;
  padding-left: 72px;
  color: #617273;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.35px;
  font-size: 7px;
  font-weight: 800;
  line-height: 1;
}

.account-brand-byline::before {
  content: "";
  width: 15px;
  height: 2px;
  background: var(--orange);
}

.account-brand-byline:hover {
  color: var(--teal-dark);
}

.account-nav-links {
  justify-content: flex-end;
  gap: 22px !important;
}

.account-nav-links > a {
  transition: color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.account-section-link {
  color: #294849;
}

.account-home-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 46px;
  padding: 0 17px;
  color: #fff;
  border-radius: 2px;
  background: var(--orange);
  box-shadow: 6px 6px 0 rgba(7, 87, 91, 0.12);
}

.account-home-cta:hover {
  color: #fff !important;
  background: #dd7413;
  transform: translateY(-1px);
}

.account-home-cta span {
  font-size: 13px;
}

.account-main {
  width: min(1240px, calc(100% - 12vw));
  margin: 0 auto;
  padding: 176px 0 96px;
}

.auth-stage,
.register-stage {
  min-height: calc(100vh - 280px);
}

.auth-card,
.dashboard-card,
.identity-card,
.auth-vitals article,
.vital-strip {
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    0 24px 72px rgba(8, 79, 83, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
  backdrop-filter: blur(20px) saturate(135%);
}

.auth-card {
  border-radius: 30px;
}

.account-form button:not(:disabled) {
  background: linear-gradient(100deg, var(--orange), #e47710);
  box-shadow: 7px 7px 0 rgba(7, 87, 91, 0.1);
}

.account-form button b {
  color: #fff;
}

.student-contact-dock {
  position: fixed;
  right: 18px;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.student-contact-action {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(5, 48, 51, 0.24);
  text-decoration: none;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.student-contact-action.is-call {
  background: linear-gradient(135deg, rgba(6, 63, 67, 0.97), rgba(13, 114, 115, 0.96));
}

.student-contact-action.is-whatsapp {
  background: linear-gradient(135deg, #0b8f69, #25d366);
}

.student-contact-action:hover,
.student-contact-action:focus-visible {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(5, 48, 51, 0.32);
}

.student-contact-action:focus-visible {
  outline: 3px solid #ffd09c;
  outline-offset: 3px;
}

.student-contact-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  font-size: 19px;
  line-height: 1;
}

.student-whatsapp-icon {
  position: relative;
  width: 28px;
  height: 28px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.student-whatsapp-icon::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 1px;
  width: 7px;
  height: 7px;
  border-left: 2px solid #fff;
  transform: rotate(-25deg);
}

.student-whatsapp-icon i {
  color: #fff;
  font-size: 13px;
  font-style: normal;
  transform: rotate(-18deg);
}

@media (max-width: 980px) {
  .account-nav-links {
    gap: 9px !important;
  }

  .account-section-link:nth-child(-n + 2) {
    display: none;
  }
}

@media (max-width: 650px) {
  .account-nav {
    top: 0;
    width: 100%;
    min-height: 82px;
    margin: 0;
    padding: 0 14px;
    border-radius: 0;
  }

  .account-brand-lockup {
    width: 148px;
    min-width: 0;
  }

  .account-brand-byline {
    gap: 4px;
    margin-top: 0;
    padding-left: 39px;
    letter-spacing: 0.55px;
    font-size: 5.7px;
  }

  .account-brand-byline::before {
    width: 8px;
    height: 1px;
  }

  .account-nav-links {
    gap: 6px !important;
  }

  .account-section-link {
    display: none !important;
  }

  .account-chip {
    width: 38px;
    min-height: 38px;
    padding: 5px;
    overflow: hidden;
    font-size: 0 !important;
  }

  .account-chip span {
    flex: 0 0 27px;
    width: 27px;
    height: 27px;
    font-size: 7px;
  }

  .account-home-cta {
    display: inline-flex !important;
    gap: 7px;
    min-height: 39px;
    padding: 0 10px;
    font-size: 7px !important;
  }

  .account-home-cta span {
    font-size: 10px;
  }

  .account-main {
    width: calc(100% - 24px);
    padding: 126px 0 70px;
  }

  .student-contact-dock {
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    flex-direction: row;
    gap: 7px;
  }

  .student-contact-action {
    width: 48px;
    height: 48px;
  }

  .account-footer {
    padding-bottom: 78px;
  }
}
