:root {
  --blue: #041d55;
  --blue-mid: #0d3f8f;
  --blue-bright: #0783c9;
  --ink: #171a21;
  --muted: #596273;
  --panel: #ffffff;
  --soft: #f2f3f5;
  --line: #d9dee7;
  --gold: #f4a51c;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  margin: 0;
}

a {
  color: inherit;
}

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

.mync-topbar,
.dashboard-topbar {
  align-items: center;
  background: var(--blue);
  color: #fff;
  display: flex;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 19.5%;
}

.mync-brand,
.dashboard-brand {
  align-items: center;
  display: flex;
  gap: 10px;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
}

.mync-brand img,
.dashboard-brand img {
  background: #fff;
  border-radius: 999px;
  height: 36px;
  object-fit: contain;
  padding: 3px;
  width: 36px;
}

.search-pill {
  background: var(--blue-bright);
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  min-width: 124px;
  padding: 14px 24px;
  text-align: center;
  text-decoration: none;
}

.mync-hero {
  background:
    linear-gradient(rgba(4, 15, 33, .42), rgba(4, 15, 33, .42)),
    url("Ai_e vcc.jpg") center / cover no-repeat;
  min-height: 465px;
}

.mync-hero-inner {
  align-items: center;
  display: flex;
  min-height: 465px;
  padding: 0 19.5%;
}

.mync-hero h1 {
  color: #fff;
  font-size: clamp(64px, 8vw, 92px);
  line-height: 1;
  margin: 0;
  text-shadow: 0 4px 10px rgba(0, 0, 0, .38);
}

.mync-nav {
  align-items: center;
  background: #123c82;
  color: #fff;
  display: flex;
  justify-content: center;
  min-height: 66px;
}

.mync-nav a,
.mync-nav button {
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  min-height: 66px;
  padding: 0 18px;
  text-decoration: none;
}

.mync-nav .active,
.mync-nav a:hover,
.mync-nav button:hover {
  background: var(--blue-bright);
}

.landing-content {
  margin: 0 auto;
  max-width: 1180px;
  padding: 84px 24px;
}

.login-callout {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: 380px minmax(0, 1fr);
}

.login-button {
  background: var(--blue);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  min-height: 84px;
  width: 100%;
}

.password-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 26px;
}

.password-links a {
  color: #005eb8;
}

.login-callout h2 {
  color: var(--blue);
  font-size: clamp(28px, 4vw, 34px);
  line-height: 1.3;
  margin: 0 0 14px;
}

.login-callout p {
  color: var(--muted);
  font-size: 18px;
}

.public-info-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
}

.public-info-grid article {
  border-top: 5px solid var(--blue-bright);
  box-shadow: 0 12px 30px rgba(4, 29, 85, .1);
  padding: 24px;
}

.public-info-grid h3 {
  color: var(--blue);
  font-size: 24px;
  margin-top: 0;
}

.dashboard-topbar {
  background: #3d3d3d;
  min-height: 62px;
  padding: 0 16px;
}

.dashboard-brand img {
  height: 44px;
  width: 44px;
}

.dashboard-brand span {
  font-size: 24px;
}

.dashboard-topbar nav {
  align-items: center;
  display: flex;
  gap: 28px;
}

.dashboard-topbar nav a,
.dashboard-topbar nav button {
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
}

.dashboard-content {
  background: #f0f0f0;
  min-height: calc(100vh - 62px);
  padding: 14px 22px 28px;
}

.welcome {
  font-size: 16px;
  margin-bottom: 44px;
}

.app-tile-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.app-tile-row a {
  align-items: center;
  background: #e7e7e7;
  border-radius: 6px;
  color: #0059a8;
  display: grid;
  font-weight: 900;
  height: 160px;
  justify-items: center;
  padding: 14px;
  text-align: center;
  width: 160px;
}

.tile-icon {
  align-items: center;
  background: var(--blue-bright);
  border-radius: 12px;
  color: #fff;
  display: flex;
  font-size: 42px;
  font-weight: 900;
  height: 62px;
  justify-content: center;
  width: 62px;
}

.tile-icon.plus {
  background: transparent;
  border: 5px solid #000;
  border-radius: 999px;
  color: #000;
}

.student-summary {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 28px;
}

.student-summary article {
  background: #fff;
  border-left: 5px solid var(--blue-bright);
  padding: 20px;
}

.student-summary span {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.student-summary strong {
  color: var(--blue);
  display: block;
  font-size: 28px;
  margin: 6px 0;
}

.dashboard-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 1fr 1fr;
}

.dashboard-panel {
  background: #fff;
  border-top: 4px solid var(--blue-bright);
  padding: 20px;
}

.dashboard-panel h2 {
  background: var(--blue-bright);
  color: #fff;
  display: inline-block;
  font-size: 20px;
  margin: -44px 0 22px -20px;
  padding: 14px 18px;
}

.dashboard-panel article + article {
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 18px;
}

.dashboard-panel h3 {
  color: #1269b0;
  font-size: 24px;
  margin: 0 0 8px;
  text-decoration: underline;
}

.dashboard-panel time {
  color: #333;
  display: block;
  font-size: 13px;
  font-style: italic;
  margin-bottom: 14px;
}

.quick-panel ul {
  margin-top: 0;
}

.quick-panel a {
  color: #1269b0;
}

.records-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.record-card {
  background: #fff;
  border-top: 4px solid var(--blue-bright);
  padding: 20px;
}

.record-card h2 {
  color: var(--blue);
  margin-top: 0;
}

.record-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.record-card div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.record-card dt {
  color: var(--muted);
  font-weight: 900;
}

.record-card dd {
  margin: 3px 0 0;
}

@media (max-width: 980px) {
  .mync-topbar,
  .mync-hero-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .mync-nav,
  .dashboard-topbar,
  .dashboard-topbar nav {
    align-items: stretch;
    flex-wrap: wrap;
    gap: 0;
  }

  .login-callout,
  .public-info-grid,
  .student-summary,
  .dashboard-grid,
  .records-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .mync-brand span,
  .dashboard-brand span {
    font-size: 18px;
  }

  .mync-hero,
  .mync-hero-inner {
    min-height: 320px;
  }

  .landing-content {
    padding: 48px 18px;
  }

  .login-callout {
    gap: 28px;
  }

  .app-tile-row a {
    width: calc(50% - 7px);
  }
}
