:root {
  --navy: #062d5d;
  --blue: #087bbb;
  --blue-soft: #eaf7fd;
  --orange: #ff6500;
  --orange-soft: #fff1e7;
  --ink: #17243d;
  --muted: #63718a;
  --line: #dde6ee;
  --paper: #f5f8fb;
  --white: #fff;
  --green: #14724f;
  --green-soft: #eaf8f1;
  --shadow: 0 18px 42px rgba(9, 36, 79, .10);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--paper); }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
button:focus-visible, a:focus-visible, input:focus-visible { outline: 3px solid #4bb2ea; outline-offset: 3px; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 50; background: var(--white); padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { top: 12px; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.brand { display: inline-flex; align-items: baseline; text-decoration: none; letter-spacing: -1.2px; font-size: 23px; line-height: 1; font-weight: 800; white-space: nowrap; }
.brand span { color: var(--navy); }
.brand b { color: var(--blue); }
.brand--light span, .brand--light b { color: #fff; }
.brand--light b { color: #9edaf6; }
.eyebrow { color: var(--blue); font-weight: 800; font-size: 11px; letter-spacing: 1.25px; margin: 0 0 11px; }
.eyebrow--light { color: #9edaf6; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.045em; }
h1 { font-size: clamp(39px, 4.2vw, 61px); line-height: 1.03; margin-bottom: 20px; }
h2 { font-size: 31px; line-height: 1.1; margin: 0; }
h3 { font-size: 21px; line-height: 1.18; margin: 0; }
svg { display: block; width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.loading-page { min-height: 100vh; display: grid; place-content: center; gap: 28px; }
.loading-mark { display: flex; justify-content: center; gap: 6px; }
.loading-mark i { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: bounce .6s infinite alternate; }
.loading-mark i:nth-child(2) { animation-delay: .18s; }.loading-mark i:nth-child(3) { animation-delay: .36s; }
@keyframes bounce { to { transform: translateY(-9px); opacity: .35; } }

.login-page { min-height: 100vh; display: grid; grid-template-columns: minmax(360px, .9fr) minmax(460px, 1.1fr); background: var(--white); }
.login-intro { position: relative; overflow: hidden; color: #fff; padding: clamp(40px, 7vw, 92px); background: radial-gradient(circle at 100% 11%, rgba(40, 174, 225, .65), transparent 35%), linear-gradient(145deg, #083368, #076da8); display: flex; flex-direction: column; }
.login-intro::before, .login-intro::after { content: ""; position: absolute; pointer-events: none; border: 34px solid rgba(255,255,255,.07); border-radius: 50%; }
.login-intro::before { width: 540px; height: 540px; right: -278px; top: 48px; }.login-intro::after { width: 380px; height: 380px; left: -205px; bottom: -205px; }
.login-intro > * { position: relative; z-index: 1; }.login-intro .brand { margin-bottom: auto; }
.intro-copy { max-width: 510px; margin: 95px 0 42px; }.intro-copy h1 { max-width: 500px; }.intro-copy p:last-child { color: #d5effb; font-size: 18px; line-height: 1.65; max-width: 475px; }
.intro-list { list-style: none; display: grid; gap: 17px; padding: 0; margin: 0; }.intro-list li { display: flex; gap: 13px; align-items: center; color: #f2fbff; font-weight: 650; }.intro-list svg { color: #ff8538; font-size: 23px; }
.intro-help { margin: 72px 0 0; color: #cceafb; font-size: 14px; }.intro-help a { color: #fff; font-weight: 700; }
.login-panel { display: grid; place-items: center; padding: 40px; background: #f8fafc; }.login-card { width: min(100%, 440px); }.brand--mobile { display: none; }.login-card h2 { font-size: 34px; margin-bottom: 12px; }.login-explainer { color: var(--muted); font-size: 15px; line-height: 1.6; margin-bottom: 31px; }
.login-form { display: grid; gap: 20px; }.login-form label { display: grid; gap: 8px; color: #344258; font-size: 14px; font-weight: 700; }.login-form input { width: 100%; border: 1.5px solid #cbd8e4; border-radius: 10px; padding: 13px 14px; color: var(--ink); background: #fff; transition: border .15s, box-shadow .15s; }.login-form input:focus { border-color: var(--blue); outline: 0; box-shadow: 0 0 0 4px rgba(8,123,187,.12); }.student-code-input { text-transform: uppercase; letter-spacing: .18em; font-weight: 750; }
.button { border: 0; border-radius: 10px; min-height: 48px; padding: 11px 17px; display: inline-flex; justify-content: center; align-items: center; gap: 12px; text-decoration: none; cursor: pointer; font-weight: 800; transition: transform .15s, box-shadow .15s, opacity .15s; }.button svg { font-size: 19px; }.button:hover { transform: translateY(-1px); }.button:disabled { cursor: not-allowed; transform: none; opacity: .65; }.button--primary { color: #fff; background: var(--navy); box-shadow: 0 7px 14px rgba(6,45,93,.18); }.button--orange { color: #fff; background: var(--orange); box-shadow: 0 9px 16px rgba(255,101,0,.19); }.button--wide { margin-top: 4px; width: 100%; min-height: 53px; }.form-notice { padding: 11px 13px; border-radius: 9px; font-size: 14px; line-height: 1.4; }.form-notice--error { color: #9c2609; background: #fff0ec; border: 1px solid #ffc7b6; }
.login-support { display: flex; gap: 13px; align-items: center; margin-top: 32px; padding-top: 25px; border-top: 1px solid #dce5ee; }.login-support p { color: var(--muted); font-size: 13px; line-height: 1.5; margin: 0; }.login-support strong { color: var(--ink); }.login-support a { color: var(--blue); font-weight: 700; }.icon-circle { display: grid; place-items: center; flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px; background: var(--blue-soft); color: var(--blue); }.icon-circle svg { font-size: 20px; }.icon-circle--soft { width: 36px; height: 36px; }.icon-circle--orange { background: var(--orange-soft); color: var(--orange); }.icon-circle--blue { background: var(--blue-soft); color: var(--blue); }.icon-circle--green { background: var(--green-soft); color: var(--green); }.login-secure { display: flex; align-items: center; gap: 7px; margin: 28px 0 0; color: #8492a5; font-size: 12px; }.login-secure svg { font-size: 14px; }

.site-header { height: 76px; background: #fff; border-bottom: 1px solid #e6edf3; }.header-inner { height: 100%; display: flex; align-items: center; gap: 36px; }.main-nav { display: flex; align-items: stretch; align-self: stretch; gap: 25px; }.main-nav a { position: relative; display: grid; place-items: center; text-decoration: none; color: #64718a; font-size: 14px; font-weight: 700; }.main-nav a::after { position: absolute; content: ""; left: 0; right: 0; bottom: 0; height: 3px; background: transparent; }.main-nav a.is-active, .main-nav a:hover { color: var(--navy); }.main-nav a.is-active::after { background: var(--orange); }.profile-menu { margin-left: auto; display: flex; align-items: center; gap: 9px; }.profile-initial { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--orange-soft); color: var(--orange); font-weight: 800; }.profile-name { display: grid; gap: 1px; font-size: 12px; }.profile-name strong { font-size: 13px; }.profile-name span { color: var(--muted); }.icon-button { display: grid; place-items: center; width: 35px; height: 35px; margin-left: 5px; border: 0; border-radius: 8px; color: #60708a; background: transparent; cursor: pointer; }.icon-button:hover { color: var(--navy); background: var(--blue-soft); }.icon-button svg { font-size: 19px; }
.hero-section { color: #fff; overflow: hidden; background: radial-gradient(circle at 88% 5%, rgba(19,157,218,.65), transparent 25%), linear-gradient(110deg, #052d5c 0%, #073e78 50%, #0874a9 100%); }.hero-section .container { position: relative; }.hero-section .container::after { position: absolute; content: "T"; right: -43px; bottom: -102px; font-size: 550px; font-weight: 900; line-height: .75; color: rgba(255,255,255,.055); pointer-events: none; }.breadcrumb { display: flex; align-items: center; gap: 6px; padding-top: 21px; color: #c6e9fa; font-size: 12px; }.breadcrumb svg { font-size: 14px; }.breadcrumb strong { color: #fff; }.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 390px; gap: 60px; padding: 57px 0 68px; }.hero-grid > div:first-child { max-width: 650px; }.hero-copy { max-width: 600px; color: #d0eaf8; font-size: 18px; line-height: 1.6; margin-bottom: 29px; }.hero-progress { align-self: end; padding: 26px 25px 23px; background: rgba(1,20,51,.28); border: 1px solid rgba(255,255,255,.15); border-radius: 18px; backdrop-filter: blur(8px); }.hero-progress > p { margin: 0 0 22px; color: #bcdef1; font-size: 13px; font-weight: 700; }.hero-progress ol { display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; margin: 0; padding: 0; }.hero-progress li { position: relative; display: grid; gap: 9px; color: #aec8dc; font-size: 11px; text-align: center; }.hero-progress li:not(:last-child)::after { content: ""; position: absolute; height: 2px; top: 15px; left: calc(50% + 16px); right: calc(-50% + 16px); background: rgba(255,255,255,.22); }.hero-progress li > span { position: relative; z-index: 1; display: grid; place-items: center; width: 32px; height: 32px; margin: auto; border-radius: 50%; color: #d5eaf6; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); font-size: 12px; font-weight: 800; }.hero-progress li.is-done { color: #fff; }.hero-progress li.is-done > span { background: var(--orange); border-color: var(--orange); }.hero-progress li.is-done > span svg { font-size: 16px; }.hero-progress li.is-current { color: #fff; }.hero-progress li.is-current > span { color: var(--navy); background: #fff; border-color: #fff; }
.content-section { padding-top: 61px; }.section-title-row { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 24px; }.updated-label { margin: 0 0 4px; color: #8794a6; font-size: 12px; }.status-strip { display: flex; align-items: center; gap: 12px; margin-bottom: 23px; padding: 14px 17px; border-radius: 11px; font-size: 14px; }.status-strip svg { flex: 0 0 auto; font-size: 20px; }.status-strip p { margin: 0; }.status-strip--green { color: #146b4b; background: var(--green-soft); }.status-strip--blue { color: #145a87; background: var(--blue-soft); }.overview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }.overview-card { min-height: 321px; display: flex; flex-direction: column; padding: 23px; background: #fff; border: 1px solid #e1e9f0; border-radius: 16px; box-shadow: 0 4px 9px rgba(9,36,79,.025); }.overview-card--ready { border-top: 3px solid var(--orange); padding-top: 21px; }.overview-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 29px; }.state-pill { padding: 5px 9px; border-radius: 50px; font-size: 11px; font-weight: 800; }.state-pill--green { color: #10714d; background: #e7f8ef; }.state-pill--gray { color: #708096; background: #f0f4f7; }.state-pill--orange { color: #bd4700; background: var(--orange-soft); }.overview-card .eyebrow { margin-bottom: 8px; }.overview-card h3 { margin-bottom: 9px; }.card-lede { color: var(--muted); font-size: 13px; line-height: 1.58; }.location-row { display: flex; gap: 8px; padding-top: 12px; color: #5c6d83; font-size: 12px; line-height: 1.45; }.location-row svg { flex: 0 0 auto; color: var(--blue); font-size: 16px; }.card-spacer { flex: 1; min-height: 14px; }.card-notice { margin: auto 0 0; padding-top: 12px; color: #7e5612; font-size: 12px; line-height: 1.4; }.card-success, .card-warning, .payment-footnote { display: flex; align-items: center; gap: 6px; margin: auto 0 0; padding-top: 16px; font-size: 12px; line-height: 1.4; }.card-success { color: var(--green); }.card-warning { color: #a74911; }.card-success svg, .card-warning svg { font-size: 16px; }.payment-footnote { color: #7b899b; }.text-link { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 16px; color: var(--blue); font-size: 13px; font-weight: 800; text-decoration: none; }.text-link svg { font-size: 16px; }
.personal-section { display: grid; grid-template-columns: 1.35fr .65fr; gap: 18px; padding: 48px 0 71px; }.personal-card, .support-card { padding: 30px; border-radius: 16px; }.personal-card { background: #fff; border: 1px solid #e1e9f0; }.card-title { display: flex; align-items: center; gap: 13px; }.card-title .eyebrow { margin-bottom: 5px; }.card-title h2 { font-size: 22px; }.details-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px 25px; margin: 30px 0 21px; }.details-list div { display: grid; gap: 4px; }.details-list dt { color: #8090a5; font-size: 11px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase; }.details-list dd { margin: 0; color: #273750; font-size: 14px; font-weight: 650; }.small-note { margin: 0; padding-top: 18px; color: #76859a; border-top: 1px solid #e4ebf1; font-size: 12px; line-height: 1.5; }.support-card { position: relative; overflow: hidden; color: #fff; background: var(--navy); }.support-card::after { content: "?"; position: absolute; right: -11px; bottom: -70px; color: rgba(255,255,255,.06); font-size: 260px; font-weight: 900; line-height: 1; }.support-card > * { position: relative; z-index: 1; }.support-card-icon { width: 41px; height: 41px; display: grid; place-items: center; margin-bottom: 26px; color: var(--navy); background: var(--orange); border-radius: 12px; }.support-card-icon svg { font-size: 22px; }.support-card h2 { font-size: 26px; margin-bottom: 12px; }.support-card > p:not(.eyebrow) { color: #c6dbea; font-size: 13px; line-height: 1.55; }.support-actions { display: grid; gap: 10px; margin-top: 24px; }.support-actions a { display: flex; align-items: center; gap: 9px; color: #fff; font-size: 13px; font-weight: 700; text-decoration: none; }.support-actions svg { color: #72c9ee; font-size: 18px; }
.information-section { padding: 68px 0 76px; background: #fff; }.section-title-row > p { max-width: 360px; margin: 0 0 4px; color: var(--muted); font-size: 14px; line-height: 1.5; }.information-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }.info-card { padding: 25px; border: 1px solid #e1e9f0; border-radius: 16px; }.info-card .icon-circle { margin-bottom: 25px; }.info-card h3 { font-size: 20px; margin-bottom: 10px; }.info-card p { min-height: 88px; margin-bottom: 21px; color: var(--muted); font-size: 13px; line-height: 1.62; }.info-card a { display: inline-flex; align-items: center; gap: 5px; color: var(--blue); font-size: 13px; font-weight: 800; text-decoration: none; }.info-card a svg { font-size: 16px; }
.flix-section { padding: 73px 0; }.flix-card { position: relative; overflow: hidden; min-height: 367px; display: grid; grid-template-columns: minmax(0, 1fr) 360px; align-items: center; gap: 32px; padding: 51px 62px; color: #fff; border-radius: 22px; background: radial-gradient(circle at 92% 4%, rgba(26,160,218,.76), transparent 35%), linear-gradient(120deg, #062d5d, #07508b); }.flix-card::after { content: ""; position: absolute; width: 500px; height: 500px; left: 45%; top: -275px; border: 53px solid rgba(255,255,255,.06); border-radius: 50%; }.flix-content, .flix-list { position: relative; z-index: 2; }.flix-content { max-width: 610px; }.flix-label { margin-bottom: 38px; color: #fff; font-size: 18px; font-weight: 800; letter-spacing: -.8px; }.flix-label b { color: #90daf7; }.flix-content h2 { max-width: 490px; margin-bottom: 13px; font-size: 38px; }.flix-content > p:not(.eyebrow):not(.flix-message) { max-width: 570px; color: #cce9f8; font-size: 15px; line-height: 1.62; }.flix-content .button { margin-top: 12px; }.flix-message { color: #fff0d9; font-size: 12px; min-height: 18px; margin: 10px 0 0; }.flix-list { display: grid; gap: 18px; align-self: center; list-style: none; padding: 25px 0 25px 30px; margin: 0; border-left: 1px solid rgba(255,255,255,.2); }.flix-list li { display: flex; align-items: center; gap: 10px; color: #e4f5fd; font-size: 14px; font-weight: 650; }.flix-list svg { display: grid; place-items: center; padding: 4px; color: #fff; background: var(--orange); border-radius: 50%; font-size: 18px; }.flix-motif { position: absolute; z-index: 1; right: 39px; bottom: -30px; color: rgba(255,255,255,.04); font-size: 180px; font-weight: 900; line-height: 1; letter-spacing: -13px; }.flix-card--locked { filter: saturate(.75); }.flix-card--locked .flix-content .button { background: #60839b; box-shadow: none; }
.site-footer { color: #aec5d7; background: #041e40; }.footer-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }.footer-inner p { margin: 0; font-size: 12px; }.footer-inner a { color: #fff; text-decoration: none; }.footer-inner p a { color: #c7e6f5; }

@media (max-width: 900px) {
  .login-page { grid-template-columns: 1fr; }.login-intro { min-height: 340px; padding: 35px 8vw; }.intro-copy { margin: 58px 0 22px; }.intro-copy h1 { font-size: 43px; }.intro-list, .intro-help { display: none; }.login-panel { min-height: calc(100vh - 340px); padding: 50px 24px; }.hero-grid { grid-template-columns: 1fr; gap: 36px; }.hero-progress { max-width: 500px; }.overview-grid, .information-grid { grid-template-columns: 1fr; }.overview-card { min-height: 260px; }.personal-section { grid-template-columns: 1fr; }.flix-card { grid-template-columns: 1fr; padding: 45px 38px; }.flix-list { padding: 24px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.2); }.flix-motif { font-size: 130px; }
}
@media (max-width: 650px) {
  .container { width: min(100% - 32px, 1180px); }.site-header { height: 64px; }.header-inner { gap: 14px; }.brand { font-size: 20px; }.main-nav { display: none; }.profile-name { display: none; }.profile-menu { gap: 7px; }.hero-section .container::after { right: -21px; bottom: -35px; font-size: 370px; }.breadcrumb { padding-top: 16px; }.hero-grid { padding: 42px 0 50px; }.hero-copy { font-size: 16px; }.hero-progress { padding: 21px 14px 19px; }.hero-progress li { font-size: 10px; }.hero-progress li:not(:last-child)::after { left: calc(50% + 15px); right: calc(-50% + 15px); }.content-section { padding-top: 43px; }.section-title-row { align-items: start; flex-direction: column; gap: 9px; }.updated-label { margin: 0; }.status-strip { align-items: flex-start; font-size: 13px; }.overview-grid { gap: 13px; }.overview-card { padding: 21px; min-height: 245px; }.overview-card--ready { padding-top: 19px; }.personal-section { gap: 13px; padding: 33px 0 48px; }.personal-card, .support-card { padding: 23px; }.details-list { grid-template-columns: 1fr; gap: 15px; margin: 25px 0 19px; }.information-section { padding: 51px 0; }.section-title-row--stack-mobile > p { font-size: 13px; }.information-grid { gap: 13px; }.info-card { padding: 22px; }.info-card p { min-height: auto; }.flix-section { padding: 51px 0; }.flix-card { min-height: 0; gap: 26px; padding: 34px 23px; border-radius: 16px; }.flix-label { margin-bottom: 27px; }.flix-content h2 { font-size: 31px; }.flix-list { gap: 13px; }.footer-inner { min-height: 110px; flex-direction: column; align-items: flex-start; justify-content: center; }.footer-inner p { line-height: 1.55; }.login-panel { padding: 39px 24px; }.login-intro { min-height: 292px; }.login-intro::before { top: -90px; }.intro-copy { margin: 48px 0 0; }.intro-copy p:last-child { font-size: 15px; }.login-card h2 { font-size: 29px; }.brand--mobile { display: inline-flex; margin-bottom: 53px; }.login-secure { justify-content: center; }.login-support { align-items: flex-start; }
}
