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

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --page-bg-1: #071523;
  --page-bg-2: #0e2740;
  --page-bg-3: #13395b;
  --white: #ffffff;
  --text: #17314b;
  --muted: #5f7287;
  --line: rgba(17, 54, 87, 0.12);
  --gold: #f0b429;
  --gold-soft: #ffe4a1;
  --sky: #77c0ff;
  --sky-soft: rgba(119, 192, 255, 0.18);
  --panel-dark: #0d2337;
  --panel-dark-2: #133454;
  --success: #167d57;
  --danger: #b84040;
  --dark: #0d2137;
  --btn-bg: linear-gradient(135deg, #0f4c81 0%, #1d6bb2 52%, #66bfff 100%);
  --btn-border: rgba(15, 76, 129, 0.34);
}

body {
  min-height: 100vh;
  padding: 18px;
  overflow-x: hidden;
  overflow-y: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(240, 180, 41, 0.15), transparent 24%),
    radial-gradient(circle at bottom right, rgba(119, 192, 255, 0.16), transparent 28%),
    linear-gradient(135deg, var(--page-bg-1) 0%, var(--page-bg-2) 48%, var(--page-bg-3) 100%);
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.05), transparent 20%),
    linear-gradient(120deg, rgba(255,255,255,0.02), transparent 32%);
  animation: gradientShift 16s ease-in-out infinite alternate;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.92), transparent);
}

.bg-circle {
  position: fixed;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  animation: floatOrb 14s ease-in-out infinite;
}

.bg-circle-1 {
  top: -140px;
  right: -120px;
  width: 420px;
  height: 420px;
}

.bg-circle-2 {
  bottom: -120px;
  left: -100px;
  width: 310px;
  height: 310px;
  animation-duration: 18s;
}

.bg-circle-3 {
  top: 22%;
  right: 42%;
  width: 160px;
  height: 160px;
  border-style: dashed;
  animation-duration: 20s;
}

.bg-glow {
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(18px);
  opacity: 0.75;
}

.bg-glow-1 {
  top: 8%;
  left: 6%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.34), transparent 68%);
  animation: pulseGlow 9s ease-in-out infinite;
}

.bg-glow-2 {
  right: 7%;
  bottom: 10%;
  width: 290px;
  height: 290px;
  background: radial-gradient(circle, rgba(119, 192, 255, 0.22), transparent 68%);
  animation: pulseGlow 11s ease-in-out infinite reverse;
}

.graduation-shell {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: calc(100vh - 36px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  animation: shellRise 0.85s cubic-bezier(.2,.8,.2,1);
}

.graduation-brand-panel {
  position: relative;
  overflow: hidden;
  padding: 34px 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: flex-start;
  background:
    radial-gradient(circle at 18% 18%, rgba(240, 180, 41, 0.18), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(119, 192, 255, 0.12), transparent 22%),
    linear-gradient(155deg, #0a1b2f 0%, #12314e 54%, #173d60 100%);
  color: var(--white);
}

.graduation-brand-panel::before {
  content: '';
  position: absolute;
  inset: auto -16% -28% auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 64%);
  animation: pulseGlow 10s ease-in-out infinite;
}

.graduation-brand-panel::after {
  content: '';
  position: absolute;
  inset: 14% auto auto 59%;
  width: 220px;
  height: 220px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.07);
  transform: rotate(16deg);
  pointer-events: none;
}

.graduation-brand-badge,
.graduation-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.graduation-brand-badge {
  background: rgba(240, 180, 41, 0.14);
  border: 1px solid rgba(240, 180, 41, 0.18);
  color: var(--gold-soft);
}

.graduation-brand-main {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.graduation-brand-visual {
  position: relative;
  width: 176px;
  height: 176px;
  display: grid;
  place-items: center;
}

.graduation-brand-logo-wrap {
  width: 146px;
  height: 146px;
  padding: 14px;
  border-radius: 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.2), transparent 56%),
    linear-gradient(160deg, rgba(17, 41, 65, 0.98), rgba(8, 22, 36, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 26px 46px rgba(0, 0, 0, 0.26);
  isolation: isolate;
}

.graduation-brand-logo-wrap::before {
  content: '';
  position: absolute;
  top: -34%;
  left: 50%;
  width: 72%;
  height: 160%;
  transform: translateX(-50%) translateY(-115%) skewY(-10deg);
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.78) 50%, rgba(255,255,255,0) 100%);
  filter: blur(7px);
  opacity: 0;
  z-index: 0;
  animation: logoSweep 3s cubic-bezier(.22,.68,.2,1) infinite;
}

.graduation-brand-logo-wrap::after {
  content: '';
  position: absolute;
  width: 82%;
  height: 22px;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.96) 0%, rgba(255,255,255,.56) 36%, rgba(255,255,255,.16) 58%, rgba(255,255,255,0) 80%);
  filter: blur(8px);
  opacity: .58;
  animation: logoShadow 3s cubic-bezier(.22,.68,.2,1) infinite;
}

.graduation-brand-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.22));
  transform-origin: center;
  animation: logoPulse 3s cubic-bezier(.22,.68,.2,1) infinite;
}

.graduation-brand-orbit,
.graduation-brand-shine {
  position: absolute;
  pointer-events: none;
}

.graduation-brand-orbit {
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.graduation-brand-orbit.orbit-one {
  width: 146px;
  height: 146px;
  animation: orbitSpin 18s linear infinite;
}

.graduation-brand-orbit.orbit-two {
  width: 176px;
  height: 176px;
  border-color: rgba(240, 180, 41, 0.18);
  animation: orbitSpinReverse 22s linear infinite;
}

.graduation-brand-shine {
  inset: -28% auto auto -18%;
  width: 42%;
  height: 156%;
  background: linear-gradient(120deg, transparent 18%, rgba(255,255,255,.08) 38%, rgba(255,255,255,.44) 50%, transparent 72%);
  transform: rotate(14deg) translateX(-180%);
  animation: brandShineSweep 5.8s ease-in-out infinite 1s;
}

.graduation-brand-kicker {
  margin-bottom: 8px;
  color: rgba(255, 233, 178, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.graduation-brand-copy h1,
.graduation-form-header h2 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
}

.graduation-brand-copy h1 {
  margin-bottom: 8px;
  font-size: clamp(2.35rem, 3.4vw, 3.25rem);
  color: #fff;
  line-height: 1.04;
}

.graduation-brand-copy p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  font-size: 1.02rem;
}

.graduation-highlight-row,
.graduation-brand-points {
  position: relative;
  z-index: 1;
}

.graduation-highlight-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.brand-stat-card,
.brand-point,
.footer-tip-card {
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}

.brand-stat-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
}

.brand-stat-card span,
.brand-point span,
.footer-tip-card > i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1rem;
  color: #ffdb7d;
  background: rgba(240, 180, 41, 0.16);
}

.brand-stat-card strong,
.brand-point strong,
.footer-tip-card strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.9rem;
}

.brand-stat-card p,
.brand-point p {
  color: rgba(255,255,255,0.74);
  font-size: 0.84rem;
  line-height: 1.45;
}

.graduation-brand-points {
  display: grid;
  gap: 12px;
}

.brand-point {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 15px 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.06));
  backdrop-filter: blur(10px);
}

.brand-stat-card:hover,
.brand-point:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 224, 138, 0.26);
  background: linear-gradient(135deg, rgba(13, 39, 64, 0.94), rgba(22, 71, 114, 0.86));
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.18);
}

.footer-tip-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 180, 41, 0.22);
  background: linear-gradient(135deg, rgba(242, 247, 255, 0.98), rgba(228, 238, 251, 0.98));
  box-shadow: 0 20px 34px rgba(15, 76, 129, 0.14);
}

.footer-tip-card:hover strong,
.footer-tip-card:hover p {
  color: #17314b;
}

.footer-tip-card:hover > i {
  color: #b98208;
  background: rgba(240, 180, 41, 0.18);
}

.graduation-brand-footer-note {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  margin-top: auto;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  color: rgba(255,255,255,0.76);
  font-size: 0.82rem;
  line-height: 1.5;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.graduation-brand-footer-note i {
  margin-top: 2px;
  color: #ffd978;
}

.graduation-floating-card {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 225px;
  padding: 10px 12px;
  border-radius: 16px;
  color: rgba(255,255,255,0.88);
  font-size: 0.75rem;
  line-height: 1.4;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  animation: floatCard 8s ease-in-out infinite;
}

.graduation-floating-card i {
  color: var(--gold-soft);
}

.card-left {
  left: 22px;
  bottom: 22px;
}

.card-right {
  right: 22px;
  top: 72px;
  animation-delay: -3s;
}

.graduation-card {
  position: relative;
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background:
    radial-gradient(circle at top right, rgba(240, 180, 41, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,251,255,0.98));
}

.graduation-card::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 110px;
  height: 110px;
  border-radius: 28px;
  border: 1px solid rgba(19, 57, 91, 0.08);
  transform: rotate(24deg);
  inset: 18px 18px auto auto;
  pointer-events: none;
}

.graduation-form-header {
  margin-bottom: 16px;
}

.graduation-form-badge {
  margin-bottom: 12px;
  color: #875a08;
  background: rgba(240, 180, 41, 0.16);
  border: 1px solid rgba(240, 180, 41, 0.22);
}

.graduation-form-header h2 {
  margin-bottom: 6px;
  font-size: clamp(1.62rem, 2.1vw, 2.1rem);
  color: #132942;
}

.graduation-form-header p {
  color: var(--muted);
  line-height: 1.58;
  font-size: 0.93rem;
}

.alert-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 18px;
  font-size: 0.83rem;
  line-height: 1.5;
}

.alert-box.danger {
  color: var(--danger);
  background: rgba(184, 64, 64, 0.1);
  border: 1px solid rgba(184, 64, 64, 0.16);
}

.alert-box.success {
  color: var(--success);
  background: rgba(22, 125, 87, 0.1);
  border: 1px solid rgba(22, 125, 87, 0.16);
}

.graduation-form {
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

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

.form-group label {
  display: inline-block;
  margin-bottom: 5px;
  color: #16314c;
  font-size: 0.86rem;
  font-weight: 700;
}

.input-wrap {
  position: relative;
  isolation: isolate;
}

.native-select {
  display: none;
}

.custom-select {
  position: relative;
  z-index: 5;
}

.custom-select.is-open {
  z-index: 30;
}

.custom-select-toggle {
  width: 100%;
  min-height: 50px;
  padding: 0 50px 0 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: none;
  background: rgba(246, 249, 253, 0.96);
  color: #122c44;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: border-color .24s ease, box-shadow .24s ease, background .24s ease, transform .24s ease;
}

.custom-select-toggle:hover {
  background: #fff;
  transform: translateY(-1px);
}

.custom-select.is-open .custom-select-toggle,
.custom-select-toggle:focus-visible {
  border-color: rgba(15, 76, 129, 0.34);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.09);
}

.custom-select-toggle::before {
  content: '';
  position: absolute;
  top: 8px;
  right: 10px;
  width: 34px;
  height: calc(100% - 16px);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.08), rgba(95, 180, 255, 0.16));
  pointer-events: none;
}

.custom-select-toggle > .fa-chevron-down {
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  color: #0f4c81;
  font-size: 0.82rem;
  transition: transform .24s ease;
  pointer-events: none;
}

.custom-select.is-open .custom-select-toggle > .fa-chevron-down {
  transform: translateY(-50%) rotate(180deg);
}

.custom-select-leading {
  width: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7e90a3;
  flex-shrink: 0;
}

.custom-select.is-open .custom-select-leading,
.custom-select-toggle:focus-visible .custom-select-leading {
  color: #0f4c81;
}

.custom-select-label {
  display: block;
  min-width: 0;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: none;
  padding: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 76, 129, 0.12);
  box-shadow: 0 24px 44px rgba(10, 37, 64, 0.16);
  backdrop-filter: blur(14px);
  max-height: 240px;
  overflow-y: auto;
  animation: selectMenuIn .18s ease;
}

.custom-select.is-open .custom-select-menu {
  display: grid;
  gap: 6px;
}

.custom-select-option {
  width: 100%;
  border: none;
  border-radius: 14px;
  background: transparent;
  padding: 12px 14px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #17314b;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.custom-select-option:hover {
  background: rgba(95, 180, 255, 0.12);
  color: #0d2137;
  transform: translateX(2px);
}

.custom-select-option.is-selected {
  background: linear-gradient(135deg, rgba(240, 180, 41, 0.18), rgba(255, 209, 102, 0.18));
  color: #8c5c00;
}

.custom-select-option-check {
  opacity: 0;
  color: #8c5c00;
  transition: opacity .2s ease;
}

.custom-select-option.is-selected .custom-select-option-check {
  opacity: 1;
}

.input-wrap > i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #7e90a3;
  pointer-events: none;
  z-index: 2;
  transition: color .24s ease;
}

.input-wrap input,
.input-wrap select {
  width: 100%;
  min-height: 50px;
  padding: 0 48px 0 46px;
  border-radius: 16px;
  border: 1px solid var(--line);
  outline: none;
  background: rgba(246, 249, 253, 0.96);
  color: #122c44;
  font-family: inherit;
  font-size: 0.94rem;
  transition: border-color .24s ease, box-shadow .24s ease, transform .24s ease, background .24s ease;
  appearance: none;
}

.input-wrap input:focus,
.input-wrap select:focus {
  border-color: rgba(15, 76, 129, 0.34);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.09);
  transform: translateY(-1px);
}

.input-wrap:focus-within > i {
  color: #0f4c81;
}

.toggle-pass {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  color: #54708a;
  background: transparent;
  transition: background .24s ease, color .24s ease;
}

.toggle-pass:hover {
  color: #123252;
  background: rgba(15, 76, 129, 0.08);
}

.graduation-form-note {
  display: grid;
  gap: 8px;
  padding: 13px 15px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(245, 249, 255, 0.98), rgba(234, 242, 251, 0.98));
  border: 1px solid rgba(17, 54, 87, 0.08);
}

.graduation-form-note div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.5;
}

.graduation-form-note i {
  margin-top: 2px;
  color: #0f4c81;
}

.captcha-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 10px;
}

.captcha-code {
  flex: 1;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px dashed rgba(15, 76, 129, 0.32);
  background: linear-gradient(135deg, rgba(240, 180, 41, 0.14), rgba(95, 180, 255, 0.14));
  color: #123252;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Courier New", monospace;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  user-select: none;
  overflow: hidden;
}

.captcha-refresh {
  min-height: 50px;
  min-width: 122px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(17, 54, 87, 0.12);
  background: rgba(247, 250, 254, 0.98);
  color: #123252;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.captcha-refresh:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 76, 129, 0.22);
  background: linear-gradient(135deg, #f0b429 0%, #ffd166 100%);
  color: #123252;
  box-shadow: 0 18px 28px rgba(216, 157, 16, 0.18);
}

.captcha-refresh:hover i {
  transform: rotate(180deg);
}

.captcha-refresh i {
  transition: transform .35s ease;
}

.btn-check {
  min-height: 52px;
  border: 1px solid var(--btn-border);
  border-radius: 18px;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--white);
  background: var(--btn-bg);
  box-shadow: 0 18px 34px rgba(28, 107, 178, 0.24);
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, color .28s ease, border-color .28s ease;
}

.btn-check:hover {
  transform: translateY(-2px);
  background: var(--gold);
  color: var(--dark);
  border-color: rgba(240, 180, 41, 0.5);
  box-shadow: 0 22px 36px rgba(216, 157, 16, 0.28);
}

.graduation-form-footer {
  margin-top: 14px;
  display: grid;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.footer-tip-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(248, 250, 255, 0.98), rgba(236, 243, 252, 0.98));
  border-color: rgba(17, 54, 87, 0.08);
}

.footer-tip-card p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.graduation-back-link {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  color: inherit;
  text-decoration: none;
  background: rgba(247, 250, 254, 0.98);
  border: 1px solid rgba(17, 54, 87, 0.08);
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease, background .26s ease;
}

.graduation-back-link:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 76, 129, 0.18);
  background: #fff;
  box-shadow: 0 18px 30px rgba(15, 76, 129, 0.1);
}

.graduation-back-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #0f4c81;
  background: rgba(15, 76, 129, 0.08);
}

.graduation-back-link strong {
  display: block;
  margin-bottom: 2px;
  color: #16314c;
  font-size: 0.92rem;
}

.graduation-back-link small {
  display: block;
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.5;
}

@keyframes shellRise {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes gradientShift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-1.2%, 1.2%, 0) scale(1.03); }
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.72; }
  50% { transform: scale(1.12); opacity: 0.95; }
}

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, 14px, 0); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  32% { transform: scale(1.05); }
  48% { transform: scale(0.98); }
  70% { transform: scale(1.03); }
}

@keyframes logoSweep {
  0%, 20% {
    opacity: 0;
    transform: translateX(-50%) translateY(-115%) skewY(-10deg);
  }
  36%, 60% {
    opacity: 0.88;
    transform: translateX(-50%) translateY(24%) skewY(-10deg);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(124%) skewY(-10deg);
  }
}

@keyframes logoShadow {
  0%, 100% { opacity: .5; transform: translateX(-50%) scale(.94); }
  35% { opacity: .78; transform: translateX(-50%) scale(1.02); }
  55% { opacity: .58; transform: translateX(-50%) scale(.98); }
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orbitSpinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes brandShineSweep {
  0%, 12% { transform: rotate(14deg) translateX(-180%); opacity: 0; }
  26%, 56% { opacity: 1; }
  72%, 100% { transform: rotate(14deg) translateX(300%); opacity: 0; }
}

@keyframes selectMenuIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1080px) {
  body {
    padding: 18px;
    overflow-y: auto;
  }

  .graduation-shell {
    height: auto;
    max-height: none;
    grid-template-columns: 1fr;
  }

  .graduation-brand-panel,
  .graduation-card {
    padding: 24px 20px;
  }

  .graduation-brand-main {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 16px;
  }

  .graduation-brand-visual {
    width: 110px;
    height: 110px;
  }

  .graduation-brand-logo-wrap {
    width: 96px;
    height: 96px;
    border-radius: 22px;
  }

  .graduation-brand-copy h1 {
    font-size: clamp(2rem, 4vw, 2.45rem);
  }

  .graduation-brand-copy p {
    font-size: 0.88rem;
    line-height: 1.58;
  }
}

@media (max-height: 930px) and (min-width: 1081px) {
  body {
    padding: 12px;
  }

  .graduation-shell {
    width: min(1100px, 100%);
    height: calc(100vh - 24px);
    min-height: calc(100vh - 24px);
    grid-template-columns: minmax(0, 0.98fr) minmax(340px, 1.02fr);
  }

  .graduation-brand-panel,
  .graduation-card {
    padding: 16px;
  }

  .graduation-brand-badge {
    top: 18px;
    left: 18px;
    padding: 7px 12px;
    font-size: 0.68rem;
  }

  .graduation-brand-main {
    gap: 10px;
    margin-top: 10px;
    width: min(480px, 100%);
  }

  .graduation-brand-visual {
    width: 150px;
    height: 150px;
  }

  .graduation-brand-logo-wrap {
    width: 132px;
    height: 132px;
    padding: 11px;
  }

  .graduation-brand-kicker {
    margin-bottom: 4px;
    font-size: 0.68rem;
  }

  .graduation-brand-copy h1 {
    font-size: clamp(1.34rem, 1.75vw, 1.84rem);
    max-width: 16ch;
    margin-bottom: 5px;
  }

  .graduation-brand-copy p {
    font-size: 0.72rem;
    line-height: 1.36;
    max-width: 44ch;
  }

  .graduation-brand-points {
    gap: 8px;
  }

  .brand-point {
    padding: 10px 11px;
    border-radius: 18px;
    gap: 10px;
  }

  .brand-point span {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 0.9rem;
  }

  .brand-point strong {
    font-size: 0.82rem;
  }

  .brand-point p {
    font-size: 0.72rem;
    line-height: 1.34;
  }

  .graduation-form-header {
    margin-bottom: 8px;
  }

  .graduation-form-badge {
    margin-bottom: 8px;
    padding: 7px 12px;
    font-size: 0.68rem;
  }

  .graduation-form-header h2 {
    margin-bottom: 4px;
    font-size: clamp(1.2rem, 1.45vw, 1.6rem);
  }

  .graduation-form-header p {
    font-size: 0.74rem;
    line-height: 1.42;
  }

  .alert-box {
    margin-bottom: 8px;
    padding: 8px 10px;
    font-size: 0.68rem;
    line-height: 1.32;
  }

  .graduation-form {
    gap: 10px;
  }

  .form-grid {
    gap: 10px;
  }

  .form-group label {
    margin-bottom: 4px;
    font-size: 0.74rem;
  }

  .custom-select-toggle,
  .input-wrap input,
  .input-wrap select {
    min-height: 42px;
    font-size: 0.8rem;
  }

  .custom-select-toggle {
    padding-left: 12px;
    padding-right: 42px;
  }

  .input-wrap input,
  .input-wrap select {
    padding-left: 39px;
    padding-right: 39px;
  }

  .input-wrap > i {
    left: 13px;
    font-size: 0.86rem;
  }

  .toggle-pass {
    right: 8px;
    width: 30px;
    height: 30px;
  }

  .captcha-panel {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .captcha-code,
  .captcha-refresh {
    min-height: 42px;
    border-radius: 14px;
  }

  .graduation-form-note {
    gap: 5px;
    padding: 9px 10px;
    border-radius: 14px;
  }

  .graduation-form-note div {
    font-size: 0.66rem;
    line-height: 1.26;
  }

  .btn-check {
    min-height: 44px;
    font-size: 0.78rem;
    border-radius: 15px;
  }

  .graduation-form-footer {
    margin-top: 8px;
  }

  .footer-tip-card {
    padding: 12px;
    gap: 10px;
    border-radius: 18px;
  }

  .footer-tip-card > i {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 0.9rem;
  }

  .footer-tip-card strong {
    font-size: 0.8rem;
  }

  .footer-tip-card p {
    font-size: 0.7rem;
    line-height: 1.34;
  }

  .graduation-back-link {
    padding: 9px 10px;
    gap: 9px;
  }

  .graduation-back-link strong {
    font-size: 0.76rem;
  }

  .graduation-back-link small {
    font-size: 0.66rem;
    line-height: 1.32;
  }
}

@media (max-width: 720px) {
  body {
    padding: 14px;
    overflow-y: auto;
  }

  .graduation-shell {
    height: auto;
    border-radius: 22px;
  }

  .graduation-brand-main,
  .form-grid,
  .graduation-highlight-row {
    grid-template-columns: 1fr;
  }

  .graduation-brand-main {
    text-align: center;
    justify-items: center;
    gap: 14px;
  }

  .graduation-brand-visual {
    width: 132px;
    height: 132px;
  }

  .graduation-brand-badge,
  .graduation-form-badge {
    font-size: 0.7rem;
    padding: 8px 13px;
  }

  .graduation-brand-logo-wrap {
    width: 104px;
    height: 104px;
    border-radius: 22px;
  }

  .graduation-brand-copy h1 {
    font-size: clamp(2rem, 7.5vw, 2.45rem);
    line-height: 1.08;
  }

  .graduation-brand-copy p {
    font-size: 0.84rem;
    line-height: 1.52;
  }

  .graduation-brand-panel,
  .graduation-card {
    padding: 20px 16px;
  }

  .graduation-form-header {
    margin-bottom: 16px;
  }

  .graduation-form-header h2 {
    font-size: 1.7rem;
    line-height: 1.08;
  }

  .graduation-form-header p {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .form-group label {
    font-size: 0.8rem;
    margin-bottom: 5px;
  }

  .input-wrap input,
  .input-wrap select,
  .btn-check {
    min-height: 54px;
  }

  .input-wrap input,
  .input-wrap select {
    padding-left: 44px;
    padding-right: 42px;
    font-size: 0.88rem;
  }

  .custom-select-toggle {
    min-height: 54px;
    padding-left: 12px;
    padding-right: 46px;
    font-size: 0.88rem;
  }

  .custom-select-toggle::before {
    right: 8px;
    width: 32px;
  }

  .custom-select-toggle > .fa-chevron-down {
    right: 18px;
  }

  .custom-select-option {
    padding: 11px 12px;
    font-size: 0.8rem;
  }

  .input-wrap > i {
    left: 14px;
    font-size: 0.95rem;
  }

  .alert-box {
    padding: 11px 12px;
    margin-bottom: 12px;
    border-radius: 16px;
    font-size: 0.79rem;
  }

  .graduation-form {
    gap: 12px;
  }

  .captcha-panel {
    grid-template-columns: 1fr;
  }

  .form-grid {
    gap: 12px;
  }

  .graduation-form-note {
    padding: 12px 13px;
    border-radius: 16px;
  }

  .graduation-form-note div {
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .btn-check {
    border-radius: 16px;
    font-size: 0.88rem;
  }

  .graduation-form-footer {
    margin-top: 14px;
  }

  .graduation-back-link {
    gap: 12px;
    padding: 11px 12px;
    border-radius: 16px;
  }

  .graduation-back-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .graduation-back-link strong {
    font-size: 0.84rem;
  }

  .graduation-back-link small {
    font-size: 0.71rem;
    line-height: 1.4;
  }

  .graduation-card::before,
  .graduation-brand-panel::after,
  .bg-circle-3 {
    display: none;
  }

  .card-right {
    animation-delay: 0s;
  }
}
