/* ═══════════════════════════════════════════════════════════════════════════
   RESET & BASE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

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

:root {
  --brand-blue: #0E1D44;
  --brand-white: #E1D3C3;
  --brand-gray: #BCBDBF;
  --highlight-blue: #2C9ADE;
  --brand-font: "itc-avant-garde-gothic-pro", sans-serif;
  --section-nav-safety-space: clamp(24px, 4vh, 44px);
  --section-nav-safety-space-mobile: 24px;
  --layer-home-ui: 900;
  --layer-floating-buttons: 930;
  --layer-auth-modal: 10000;
  --layer-profile-modal: 10030;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
  background: linear-gradient(135deg, var(--brand-blue) 0%, #07122d 100%);
  font-family: var(--brand-font);
  font-weight: 300;
  color: var(--brand-white);
  cursor: default;
}

:lang(mn),
[data-lang="mn"],
.mongolian-text {
  font-family: "Times New Roman", Times, serif;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CANVAS & UI CONTAINER
   ═══════════════════════════════════════════════════════════════════════════ */

#c {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: grab;
  touch-action: none;
}

#c.is-dragging {
  cursor: grabbing;
}

.globe-school-logo-layer {
  position: fixed;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.globe-school-logo-pin {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(22px, 2.5vw, 34px);
  height: clamp(22px, 2.5vw, 34px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 0 0 3px var(--logo-anchor-ring, rgba(44, 154, 222, 0.12)),
    0 8px 22px var(--logo-anchor-glow, rgba(44, 154, 222, 0.32)),
    0 0 2px rgba(255, 255, 255, 0.98);
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
  transition: opacity 0.16s linear, visibility 0.16s linear;
}

.globe-school-logo-pin.is-top50 {
  --logo-anchor-ring: rgba(248, 200, 78, 0.26);
  --logo-anchor-glow: rgba(248, 200, 78, 0.46);
  border-color: rgba(255, 229, 138, 0.9);
}

.globe-school-logo-pin.is-standard {
  --logo-anchor-ring: rgba(99, 160, 255, 0.18);
  --logo-anchor-glow: rgba(99, 160, 255, 0.34);
  border-color: rgba(147, 197, 253, 0.78);
}

.globe-school-logo-pin.has-white-logo {
  background: rgba(3, 8, 19, 0.94);
  border-color: rgba(255, 255, 255, 0.68);
}

.globe-school-logo-pin.is-brand {
  --logo-anchor-ring: rgba(225, 211, 195, 0.3);
  --logo-anchor-glow: rgba(225, 211, 195, 0.42);
  width: clamp(30px, 3.3vw, 48px);
  height: clamp(30px, 3.3vw, 48px);
  border-color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.94);
  z-index: 4;
}

.globe-school-logo-pin.is-brand img {
  width: 68%;
  height: 68%;
  filter: saturate(1.05) contrast(1.08) drop-shadow(0 0 5px rgba(3, 8, 19, 0.18));
}

.globe-school-logo-pin img {
  width: 74%;
  height: 74%;
  object-fit: contain;
  animation: globeLogoFloat 2.8s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
  filter: saturate(1.02) contrast(1.02);
  user-select: none;
  -webkit-user-drag: none;
}

@keyframes globeLogoFloat {
  0%, 100% { transform: translateY(-1px); }
  50% { transform: translateY(2px); }
}

.ui {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--layer-home-ui);
  pointer-events: none;
}

body.auth-modal-open .ui,
body.auth-modal-open .globe-school-logo-layer,
body.modal-backdrop-open .ui,
body.modal-backdrop-open .globe-school-logo-layer {
  pointer-events: none;
  filter: blur(8px);
  opacity: 0.58;
  transition: filter 0.24s ease, opacity 0.24s ease;
}

body.auth-modal-open .home-auth-gooey,
body.auth-modal-open .alumni-program-menu,
body.auth-modal-open .personal-program-menu,
body.auth-modal-open .float-btn,
body.modal-backdrop-open .home-auth-gooey,
body.modal-backdrop-open .home-profile-gooey,
body.modal-backdrop-open .alumni-program-menu,
body.modal-backdrop-open .personal-program-menu,
body.modal-backdrop-open .float-btn,
body.modal-backdrop-open .logo-carousel {
  pointer-events: none;
}

.home-brand-logo {
  position: absolute;
  top: 24px;
  left: 40px;
  display: block;
  width: 72px;
  height: auto;
  pointer-events: auto;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.45s forwards;
}

.home-brand-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.header {
  position: absolute;
  top: 24px;
  right: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 40px;
  pointer-events: auto;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LOGIN BUTTON
   ═══════════════════════════════════════════════════════════════════════════ */

.login-btn {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-white);
  background: rgba(44, 154, 222, 0.16);
  border: 1.5px solid rgba(44, 154, 222, 0.42);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.login-btn:hover {
  background: rgba(44, 154, 222, 0.28);
  border-color: rgba(44, 154, 222, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 154, 222, 0.22);
}

.login-btn:active {
  transform: translateY(0);
}

.login-btn .icon {
  font-size: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FLOATING ACTION BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */

.float-btn {
  position: absolute;
  z-index: var(--layer-floating-buttons);
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px 14px 18px;
  min-width: 170px;
  max-width: 280px;
  overflow: hidden;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 250, 244, 0.94);
  background: transparent;
  border: 0;
  border-radius: 999px;
  isolation: isolate;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--brand-font);
  opacity: 0;
  translate: -50% -50%;
  text-shadow: 0 1px 2px rgba(3, 8, 24, 0.34);
  transition: color 0.28s ease, transform 0.3s ease;
}

.float-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(225, 211, 195, 0.055);
  backdrop-filter: blur(9px) url("#container-glass") saturate(150%);
  -webkit-backdrop-filter: blur(9px) saturate(150%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 1.8px 3px 0 -2px rgba(255, 255, 255, 0.9),
    inset -2px -2px 0 -2px rgba(255, 255, 255, 0.8),
    inset -3px -8px 1px -6px rgba(255, 255, 255, 0.6),
    inset -0.3px -1px 4px 0 rgba(0, 0, 0, 0.12),
    inset -1.5px 2.5px 0 -2px rgba(0, 0, 0, 0.2),
    inset 0 3px 4px -2px rgba(0, 0, 0, 0.2),
    inset 2px -6.5px 1px -4px rgba(0, 0, 0, 0.1),
    0 1px 5px rgba(0, 0, 0, 0.1),
    0 6px 16px rgba(0, 0, 0, 0.08),
    0 18px 38px rgba(4, 10, 24, 0.2);
  transition: background-color 0.4s cubic-bezier(1, 0, 0.4, 1), box-shadow 0.4s cubic-bezier(1, 0, 0.4, 1), opacity 0.28s ease;
}

.float-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.2), transparent 23%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 44%, rgba(225, 211, 195, 0.04));
  opacity: 0.58;
  pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity 0.28s ease;
}

.float-btn > * {
  position: relative;
  z-index: 2;
}

.float-btn .icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 14px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  background: rgba(255, 250, 244, 0.12);
  color: rgba(255, 250, 244, 0.96);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 244, 0.16);
}

.float-btn .label-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.float-btn .label-wrap > span:first-child {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.25;
}

.float-btn .sub {
  font-size: 9px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
  text-transform: none;
  transition: color 0.25s;
}

.float-btn:hover {
  color: #fff;
  transform: scale(1.03);
}

.float-btn:hover::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.028)),
    rgba(225, 211, 195, 0.082);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    inset 1.8px 3px 0 -2px rgba(255, 255, 255, 0.95),
    inset -2px -2px 0 -2px rgba(255, 255, 255, 0.86),
    inset -3px -8px 1px -6px rgba(255, 255, 255, 0.68),
    inset -0.3px -1px 4px 0 rgba(0, 0, 0, 0.14),
    inset -1.5px 2.5px 0 -2px rgba(0, 0, 0, 0.22),
    inset 0 3px 4px -2px rgba(0, 0, 0, 0.22),
    inset 2px -6.5px 1px -4px rgba(0, 0, 0, 0.12),
    0 1px 5px rgba(0, 0, 0, 0.12),
    0 8px 22px rgba(0, 0, 0, 0.1),
    0 22px 44px rgba(4, 10, 24, 0.24);
}

.float-btn:hover::after {
  opacity: 0.78;
}

.float-btn:active {
  transform: scale(0.96);
}

.float-btn:hover .sub {
  color: rgba(255, 255, 255, 0.5);
}

/* Dreams Button */
.alumni-program-menu {
  position: absolute;
  top: calc(50% + clamp(8px, 3vh, 34px));
  left: calc(50% - clamp(210px, 31vw, 420px));
  z-index: var(--layer-floating-buttons);
  opacity: 0;
  translate: -50% -50%;
  pointer-events: auto;
  animation: fadeIn 0.9s ease 1.2s forwards;
}

#btn-dreams {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  opacity: 1 !important;
  translate: none !important;
  animation: none !important;
}

#btn-dreams .icon {
  background: rgba(255, 250, 244, 0.12);
  color: rgba(255, 250, 244, 0.96);
}

#btn-dreams:hover .icon {
  background: rgba(255, 250, 244, 0.18);
  box-shadow: 0 0 0 2px rgba(255, 250, 244, 0.08);
}

/* Reach Button */
#btn-reach {
  top: calc(50% + clamp(130px, 24vh, 250px));
  left: calc(50% + clamp(160px, 25vw, 360px));
  animation: fadeIn 0.9s ease 1.45s forwards;
}

#btn-reach .icon {
  background: rgba(255, 250, 244, 0.12);
  color: rgba(255, 250, 244, 0.96);
}

#btn-reach:hover .icon {
  background: rgba(255, 250, 244, 0.18);
  box-shadow: 0 0 0 2px rgba(255, 250, 244, 0.08);
}

/* Study Button */
.personal-program-menu {
  position: absolute;
  top: calc(50% - clamp(128px, 23vh, 240px));
  left: calc(50% + clamp(205px, 30vw, 410px));
  z-index: var(--layer-floating-buttons);
  opacity: 0;
  translate: -50% -50%;
  pointer-events: auto;
  animation: fadeIn 0.9s ease 1.7s forwards;
}

#btn-study {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  opacity: 1 !important;
  translate: none !important;
  animation: none !important;
}

#btn-study .icon {
  background: rgba(255, 250, 244, 0.12);
  color: rgba(255, 250, 244, 0.96);
}

#btn-study:hover .icon {
  background: rgba(255, 250, 244, 0.18);
  box-shadow: 0 0 0 2px rgba(255, 250, 244, 0.08);
}

#btn-study:hover {
  transform: scale(1.05);
}

.personal-program-options {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  gap: 8px;
  min-width: 218px;
  padding: 8px;
  border: 1px solid rgba(225, 211, 195, 0.18);
  border-radius: 18px;
  background: rgba(7, 12, 26, 0.54);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.personal-program-menu.is-open .personal-program-options,
.personal-program-menu:focus-within .personal-program-options,
.alumni-program-menu.is-open .personal-program-options,
.alumni-program-menu:focus-within .personal-program-options {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.alumni-program-menu .personal-program-options {
  right: auto;
  left: 0;
  transform-origin: top left;
}

.personal-program-options button {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 12px 14px;
  background: rgba(225, 211, 195, 0.055);
  color: rgba(255, 250, 244, 0.78);
  font-family: var(--brand-font);
  font-size: 12px;
  font-weight: 300;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.personal-program-options button:hover,
.personal-program-options button:focus-visible {
  border-color: rgba(225, 211, 195, 0.22);
  background: rgba(225, 211, 195, 0.11);
  color: #fff;
  transform: translateX(2px);
  outline: none;
}

.alumni-registration-page .alumni-registration-layout {
  grid-template-columns: 1fr;
  width: 100%;
  max-width: none;
  margin: 0;
}

.alumni-registration-page :is(.application-main, .application-hero),
.alumni-registration-form {
  width: 100%;
  max-width: none;
}

.alumni-registration-form {
  grid-template-columns: 1fr;
  align-items: start;
}

.alumni-registration-form .application-panel {
  min-width: 0;
  border-color: rgba(225, 211, 195, 0.09);
  background: rgba(8, 16, 34, 0.88);
  box-shadow: none;
}

.alumni-registration-form .application-panel-heading span {
  background: rgba(232, 118, 95, 0.14);
  color: #ffb09f;
}

.alumni-registration-form .application-panel:focus-within {
  border-color: rgba(232, 118, 95, 0.34);
  box-shadow: 0 0 0 1px rgba(232, 118, 95, 0.12);
}

.application-panel.is-complete,
.alumni-registration-form .application-panel.is-complete,
.alumni-registration-form .application-panel.is-complete:focus-within {
  border-color: rgba(125, 186, 233, 0.72);
  box-shadow: 0 0 0 1px rgba(125, 186, 233, 0.2), 0 18px 48px rgba(44, 154, 222, 0.1);
}

.alumni-registration-form .application-panel :is(input, select, textarea):focus {
  border-color: rgba(232, 118, 95, 0.5);
  box-shadow: 0 0 0 4px rgba(232, 118, 95, 0.09);
}

.alumni-registration-form .application-panel :is(input:not([type="checkbox"]), select, textarea):valid {
  border-color: rgba(225, 211, 195, 0.13);
}

.alumni-registration-form .application-panel :is(input:not([type="checkbox"]), select, textarea):valid:focus {
  border-color: rgba(232, 118, 95, 0.5);
  box-shadow: 0 0 0 4px rgba(232, 118, 95, 0.09);
}

.alumni-registration-form .application-panel:nth-child(2) {
  grid-column: 1;
}

.alumni-registration-form .application-panel:nth-child(3) {
  grid-column: 1;
  grid-row: auto;
}

.alumni-registration-form .application-panel:nth-child(4) {
  grid-column: 1;
}

.alumni-registration-photo-field {
  margin-top: 18px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BOTTOM BAR & CENTER LABEL
   ═══════════════════════════════════════════════════════════════════════════ */

.bottom-bar {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 9px;
  letter-spacing: 0.24em;
  color: rgba(225, 211, 195, 0.28);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.9s ease 2.1s forwards;
}

.bottom-bar span {
  cursor: pointer;
  pointer-events: auto;
  transition: color 0.35s;
}

.bottom-bar span:hover {
  color: rgba(255, 255, 255, 0.55);
}

.sep {
  width: 1px;
  height: 9px;
  background: rgba(255, 255, 255, 0.1);
}

.center-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
  opacity: 0;
  animation: fadeUp 1s ease 2.3s forwards;
}

.center-label p {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(225, 211, 195, 0.18);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RIPPLE EFFECT
   ═══════════════════════════════════════════════════════════════════════════ */

.ripple {
  position: fixed;
  border-radius: 50%;
  border: 1px solid rgba(44, 154, 222, 0.45);
  pointer-events: none;
  z-index: 200;
  animation: ripOut 0.65s ease forwards;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MODAL & AUTHENTICATION
   ═══════════════════════════════════════════════════════════════════════════ */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(3, 8, 24, 0.82);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 500;
  isolation: isolate;
  animation: fadeIn 0.4s ease;
}

#auth-modal {
  z-index: var(--layer-auth-modal);
}

.profile-modal {
  z-index: var(--layer-profile-modal);
}

#auth-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(3, 8, 24, 0.5);
  backdrop-filter: blur(18px) saturate(132%);
  -webkit-backdrop-filter: blur(18px) saturate(132%);
}

.modal.active {
  display: flex;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  z-index: 1;
  background: linear-gradient(165deg, rgba(6, 13, 33, 0.96), rgba(3, 8, 24, 0.94));
  border: 1px solid rgba(225, 211, 195, 0.14);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 42px);
  width: min(100%, 390px);
  max-width: 390px;
  max-height: calc(100dvh - clamp(36px, 8vw, 96px));
  overflow-y: auto;
  backdrop-filter: blur(26px) saturate(155%);
  -webkit-backdrop-filter: blur(26px) saturate(155%);
  animation: slideUp 0.4s ease;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42), 0 0 48px rgba(14, 29, 68, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: clamp(22px, 3vw, 32px);
}

.modal-header h2 {
  font-size: 26px;
  font-weight: 300;
  color: var(--brand-white);
  letter-spacing: 0;
  line-height: 1.1;
}

.modal-close {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #fff;
}

#auth-modal .modal-content {
  position: relative;
}

#auth-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 50;
  border: 1px solid rgba(225, 211, 195, 0.16);
  border-radius: 50%;
  background: rgba(5, 10, 24, 0.92);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}

#auth-modal .modal-close:hover {
  border-color: rgba(225, 211, 195, 0.42);
  background: rgba(15, 25, 52, 0.96);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FORM STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(225, 211, 195, 0.78);
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  min-height: 44px;
  padding: 12px 14px;
  background: rgba(225, 211, 195, 0.055);
  border: 1px solid rgba(225, 211, 195, 0.16);
  border-radius: 10px;
  color: var(--brand-white);
  font-size: 14px;
  font-family: var(--brand-font);
  font-weight: 300;
  transition: all 0.3s;
}

.form-group input:focus {
  outline: none;
  background: rgba(225, 211, 195, 0.14);
  border-color: rgba(44, 154, 222, 0.45);
  box-shadow: 0 0 12px rgba(44, 154, 222, 0.15);
}

.confirm-password-group.passwords-match input {
  border-color: rgba(16, 185, 129, 0.72);
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.14);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.password-match-assist {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 7px 12px;
  min-height: 26px;
  margin-top: 8px;
  padding: 7px 9px;
  border: 1px solid rgba(225, 211, 195, 0.12);
  border-radius: 9px;
  background: rgba(225, 211, 195, 0.045);
  transition: border-color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.password-match-assist[aria-hidden="true"] {
  display: none;
}

.password-match-assist.passwords-match {
  border-color: rgba(16, 185, 129, 0.42);
  background: rgba(16, 185, 129, 0.08);
  animation: passwordMatchPulse 0.32s ease;
}

.password-match-assist.is-shaking {
  animation: passwordAssistShake 0.5s ease;
}

.password-match-preview {
  display: flex;
  align-items: center;
  flex: 1 1 150px;
  gap: 2px;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.password-match-preview::-webkit-scrollbar {
  display: none;
}

.password-match-dot {
  flex: 0 0 12px;
  width: 12px;
  height: 16px;
  border-radius: 4px;
  background: rgba(225, 211, 195, 0.08);
  box-shadow: inset 0 -2px 0 rgba(225, 211, 195, 0.06);
  transition: background 0.2s ease, transform 0.2s ease;
}

.password-match-dot + .password-match-dot {
  margin-left: 0;
}

.password-match-dot::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  margin: 6px auto 0;
  border-radius: 50%;
  background: rgba(225, 211, 195, 0.5);
}

.password-match-dot.is-match {
  background: rgba(16, 185, 129, 0.22);
  transform: scaleY(1.04);
}

.password-match-dot.is-mismatch {
  background: rgba(239, 68, 68, 0.22);
}

.password-match-status {
  flex: 0 1 max-content;
  min-width: fit-content;
  color: rgba(225, 211, 195, 0.62);
  font-size: 11px;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}

.password-match-assist.passwords-match .password-match-status {
  color: rgba(110, 231, 183, 0.92);
}

.email-code-group {
  display: none;
}

.email-code-group.visible {
  display: block;
}

.email-code-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: stretch;
}

.email-code-row .auth-input-wrap {
  min-width: 0;
}

.email-code-row input {
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.email-code-btn {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(225, 211, 195, 0.24);
  border-radius: 10px;
  background: rgba(225, 211, 195, 0.12);
  color: rgba(225, 211, 195, 0.9);
  cursor: pointer;
  font-family: var(--brand-font);
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.email-code-btn:hover,
.email-code-btn:focus-visible {
  background: rgba(225, 211, 195, 0.2);
  border-color: rgba(225, 211, 195, 0.42);
  color: #fff;
  outline: none;
}

.email-code-btn:disabled {
  cursor: wait;
  opacity: 0.62;
}

.email-code-hint {
  margin-top: 7px;
  color: rgba(225, 211, 195, 0.52);
  font-size: 11px;
  line-height: 1.35;
}

.email-code-hint.success {
  color: rgba(110, 231, 183, 0.86);
}

.email-code-resend {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  margin-top: 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(214, 236, 255, 0.9);
  cursor: pointer;
  font-family: var(--brand-font);
  font-size: 11px;
  font-weight: 350;
  line-height: 1.2;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.email-code-resend:hover,
.email-code-resend:focus-visible {
  color: #fff;
  outline: none;
}

.email-code-resend:disabled {
  color: rgba(225, 211, 195, 0.44);
  cursor: not-allowed;
}

.email-code-resend[hidden] {
  display: none;
}

@keyframes passwordAssistShake {
  0%, 100% { transform: translateX(0); }
  18% { transform: translateX(-8px); }
  36% { transform: translateX(8px); }
  54% { transform: translateX(-6px); }
  72% { transform: translateX(6px); }
}

@keyframes passwordMatchPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}

.submit-btn {
  width: 100%;
  min-height: 44px;
  padding: 12px 16px;
  background: #E1D3C3;
  border: 1px solid rgba(225, 211, 195, 0.78);
  border-radius: 10px;
  color: #101522;
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  font-family: var(--brand-font);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.submit-btn:hover {
  background: #eadccc;
  border-color: rgba(225, 211, 195, 0.92);
  box-shadow: 0 18px 34px rgba(35, 27, 20, 0.28);
}

.submit-btn:active {
  transform: scale(0.98);
}

.toggle-auth {
  text-align: center;
  margin-top: 18px;
  font-size: 12px;
  color: rgba(225, 211, 195, 0.62);
}

.toggle-auth button {
  background: none;
  border: none;
  color: rgba(225, 211, 195, 0.94);
  cursor: pointer;
  text-decoration: none;
  font-family: var(--brand-font);
  font-size: 12px;
  margin-left: 4px;
  transition: color 0.3s;
}

.toggle-auth button:hover {
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */

@keyframes ripOut {
  from {
    transform: scale(0);
    opacity: 1;
  }
  to {
    transform: scale(3.5);
    opacity: 0;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes authModalTextIn {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px var(--highlight-blue);
  }
  50% {
    box-shadow: 0 0 12px var(--highlight-blue), 0 0 24px rgba(44, 154, 222, 0.4);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   LOGO CAROUSEL
   ═══════════════════════════════════════════════════════════════════════════ */

.success-label {
  position: absolute;
  left: 50%;
  bottom: 140px;
  transform: translateX(-50%);
  color: rgba(225, 211, 195, 0.68);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
}

.logo-carousel {
  position: absolute;
  bottom: 48px;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.9s ease 1s forwards;
  pointer-events: auto;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 48px;
  height: 100%;
  animation: logoMarquee var(--carousel-duration, 45s) linear infinite;
  padding: 0 40px;
  will-change: transform;
}

.carousel-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  gap: 10px;
  opacity: var(--carousel-opacity, 0.78);
  filter: blur(var(--carousel-blur, 3.5px));
  transition: opacity 0.16s linear, filter 0.16s linear;
  will-change: opacity, filter;
}

.carousel-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: brightness(0.94);
}

.carousel-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(225, 211, 195, 0.72);
  text-align: center;
  text-transform: uppercase;
}

@keyframes logoMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(var(--carousel-shift, 1200px) * -1));
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN - EXTRA SMALL DEVICES (max 480px)
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
  html, body {
    font-size: 13px;
  }

  .header {
    top: 16px;
    padding: 0 12px;
    gap: 8px;
  }

  .home-brand-logo {
    top: 18px;
    left: 16px;
    width: 58px;
  }

  .header-right {
    gap: 8px;
  }

  .login-btn {
    padding: 6px 12px;
    font-size: 7px;
    letter-spacing: 0.08em;
  }

  .login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(44, 154, 222, 0.15);
  }

  #btn-dreams {
    top: calc(50% - 108px);
    left: 50%;
  }

  .alumni-program-menu {
    top: calc(50% - 108px);
    left: 50%;
  }

  #btn-reach {
    top: calc(50% + 112px);
    left: 50%;
  }

  #btn-study {
    top: calc(50% + 112px);
    left: 50%;
  }

  .personal-program-menu {
    top: calc(50% + 2px);
    left: 50%;
  }

  .float-btn {
    padding: 10px 20px 10px 14px;
    font-size: 8.5px;
    min-width: auto;
    width: min(78vw, 300px);
    justify-content: center;
  }

  .float-btn .icon {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .bottom-bar {
    padding: 10px 0;
    font-size: 10px;
  }

  .bottom-bar span {
    padding: 6px 8px;
  }

  .logo-carousel {
    height: 60px;
    bottom: 28px;
  }

  .success-label {
    bottom: 98px;
    font-size: 9px;
  }

  .carousel-track {
    gap: 24px;
    padding: 0 16px;
  }

  .carousel-item {
    min-width: 90px;
  }

  .carousel-logo {
    width: 60px;
    height: 60px;
  }

  .carousel-text {
    font-size: 9px;
  }
  .modal-content {
    width: 100%;
    padding: 24px 18px;
    border-radius: 16px;
  }

  .profile-content {
    padding: 24px 18px;
  }

  .modal-content h2 {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .form-group {
    margin-bottom: 12px;
  }

  .form-group input {
    padding: 8px 12px;
    font-size: 13px;
  }

  .form-group button {
    padding: 8px 16px;
    font-size: 11px;
  }

  .mode-toggle {
    font-size: 11px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN - SMALL DEVICES (481px - 768px)
   ═══════════════════════════════════════════════════════════════════════════ */

@media (min-width: 481px) and (max-width: 768px) {
  .header {
    padding: 0 20px;
    top: 20px;
  }

  .home-brand-logo {
    top: 20px;
    left: 20px;
    width: 64px;
  }

  .login-btn {
    padding: 8px 16px;
    font-size: 8px;
  }

  #btn-dreams {
    top: calc(50% - 118px);
    left: calc(50% - 96px);
  }

  .alumni-program-menu {
    top: calc(50% - 118px);
    left: calc(50% - 96px);
  }

  #btn-reach {
    left: 50%;
    top: calc(50% + 140px);
  }

  #btn-study {
    left: 50%;
    top: calc(50% + 140px);
  }

  .personal-program-menu {
    top: calc(50% - 118px);
    left: calc(50% + 96px);
  }

  .float-btn {
    padding: 8px 18px 8px 12px;
    font-size: 8px;
    min-width: 154px;
    max-width: 210px;
  }

  .float-btn .icon {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .logo-carousel {
    height: 70px;
    bottom: 40px;
  }

  .success-label {
    bottom: 122px;
  }

  .carousel-track {
    gap: 32px;
    padding: 0 24px;
  }

  .carousel-item {
    min-width: 100px;
  }

  .carousel-logo {
    width: 70px;
    height: 70px;
  }

  .carousel-text {
    font-size: 10px;
  }

  .modal-content {
    width: 100%;
    padding: 30px 24px;
  }

  .form-group input {
    font-size: 14px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN - MEDIUM DEVICES (769px - 1024px)
   ═══════════════════════════════════════════════════════════════════════════ */

@media (min-width: 769px) and (max-width: 1024px) {
  .header {
    padding: 0 30px;
  }

  .home-brand-logo {
    left: 30px;
  }

  .login-btn {
    padding: 9px 18px;
    font-size: 9px;
  }

  #btn-dreams {
    top: calc(50% - 18px);
    left: calc(50% - clamp(210px, 30vw, 300px));
  }

  .alumni-program-menu {
    top: calc(50% - 18px);
    left: calc(50% - clamp(210px, 30vw, 300px));
  }

  #btn-reach {
    top: calc(50% + clamp(128px, 22vh, 205px));
    left: calc(50% + clamp(145px, 23vw, 260px));
  }

  #btn-study {
    top: calc(50% + clamp(128px, 22vh, 205px));
    left: calc(50% + clamp(145px, 23vw, 260px));
  }

  .personal-program-menu {
    top: calc(50% - clamp(132px, 20vh, 190px));
    left: calc(50% + clamp(190px, 28vw, 300px));
  }

  .float-btn {
    padding: 8px 19px 8px 13px;
    font-size: 8px;
  }

  .logo-carousel {
    height: 72px;
    bottom: 42px;
  }

  .success-label {
    bottom: 126px;
  }

  .carousel-track {
    gap: 40px;
    padding: 0 28px;
  }

  .carousel-item {
    min-width: 110px;
  }

  .carousel-logo {
    width: 75px;
    height: 75px;
  }

  .carousel-text {
    font-size: 11px;
  }

  .modal-content {
    max-width: 480px;
    padding: 40px 34px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN - LARGE DEVICES (1025px - 1440px)
   ═══════════════════════════════════════════════════════════════════════════ */

@media (min-width: 1025px) and (max-width: 1440px) {
  .header {
    padding: 0 50px;
  }

  .modal-content {
    width: 85%;
    max-width: 520px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN - EXTRA LARGE DEVICES (1441px+)
   ═══════════════════════════════════════════════════════════════════════════ */

@media (min-width: 1441px) {
  .header {
    padding: 0 60px;
  }

  .home-brand-logo {
    left: 60px;
  }

  #btn-dreams {
    top: calc(50% + clamp(8px, 3vh, 34px));
    left: calc(50% - clamp(260px, 31vw, 480px));
  }

  .alumni-program-menu {
    top: calc(50% + clamp(8px, 3vh, 34px));
    left: calc(50% - clamp(260px, 31vw, 480px));
  }

  #btn-reach {
    top: calc(50% + clamp(150px, 24vh, 290px));
    left: calc(50% + clamp(210px, 25vw, 420px));
  }

  #btn-study {
    top: calc(50% + clamp(150px, 24vh, 290px));
    left: calc(50% + clamp(210px, 25vw, 420px));
  }

  .personal-program-menu {
    top: calc(50% - clamp(150px, 23vh, 280px));
    left: calc(50% + clamp(250px, 30vw, 470px));
  }

  .bottom-bar {
    padding: 24px 0;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN - LANDSCAPE ORIENTATION ADJUSTMENTS
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-height: 600px) and (orientation: landscape) {
  .header {
    top: 12px;
    padding: 0 16px;
  }

  .home-brand-logo {
    top: 14px;
    left: 16px;
    width: 56px;
  }

  .login-btn {
    padding: 6px 12px;
    font-size: 8px;
  }

  #btn-dreams {
    top: 50%;
    left: calc(50% - 220px);
  }

  .alumni-program-menu {
    top: 50%;
    left: calc(50% - 220px);
  }

  #btn-reach {
    top: 50%;
    left: calc(50% + 220px);
  }

  #btn-study {
    top: 50%;
    left: calc(50% + 220px);
  }

  .personal-program-menu {
    top: 50%;
    left: 50%;
  }

  .float-btn {
    padding: 6px 16px 6px 10px;
    font-size: 7px;
  }

  .float-btn .icon {
    width: 16px;
    height: 16px;
  }

  .bottom-bar {
    padding: 8px 0;
    font-size: 9px;
  }

  .logo-carousel {
    height: 50px;
    bottom: 20px;
    opacity: 0.7;
  }

  .success-label {
    bottom: 78px;
    font-size: 8px;
  }

  .carousel-track {
    gap: 20px;
    padding: 0 12px;
  }

  .carousel-item {
    min-width: 70px;
  }

  .carousel-logo {
    width: 50px;
    height: 50px;
  }

  .carousel-text {
    font-size: 8px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN - TOUCH DEVICES (Tablets & Phones)
   ═══════════════════════════════════════════════════════════════════════════ */

@media (hover: none) and (pointer: coarse) {
  .login-btn,
  .float-btn,
  .bottom-bar span {
    min-height: 44px;
    min-width: 44px;
  }

  .login-btn:active,
  .float-btn:active,
  .bottom-bar span:active {
    transform: scale(0.95);
  }
}

@media (prefers-reduced-motion: reduce) {
  .alumni-reveal-text,
  .application-reveal-text,
  .alumni-page.is-revealed .alumni-reveal-text,
  .application-page.is-revealed .application-reveal-text,
  .coaching-info-page.is-revealed .application-reveal-text {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }
}

/* Restored: auth/home sign-in styles */
.home-auth-gooey {
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  height: 32px;
  overflow: visible;
  pointer-events: auto;
  isolation: isolate;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}

.home-auth-gooey-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  filter: url("#gooey-filter");
}

.home-auth-blob {
  position: absolute;
  top: 0;
  height: 32px;
  border-radius: 999px;
  background: #e1d3c3;
  transition: background 0.24s ease, transform 0.3s ease;
}

.home-auth-blob-label {
  inset-inline: 0;
}

.home-auth-blob-arrow {
  right: 100%;
  width: 32px;
  opacity: 0;
  transform: translateX(100%) scale(0.82);
}

.home-auth-gooey[hidden],
.home-profile-gooey[hidden],
.home-profile-btn[hidden],
.home-alumni-logout-btn[hidden] {
  display: none !important;
}

.home-auth-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: max-content;
  height: 32px;
  margin-left: auto;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #05080f;
  cursor: pointer;
  font-family: var(--brand-font);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  padding: 0 18px;
  white-space: nowrap;
  transition: background 0.24s ease, transform 0.24s ease;
}

.home-auth-arrow {
  position: absolute;
  top: 0;
  right: 100%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #05080f;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%) scale(0.82);
  transition: background 0.24s ease, opacity 0.2s ease, transform 0.3s ease;
}

.home-auth-arrow-icon {
  width: 13px;
  height: 13px;
}

.home-auth-gooey:hover .home-auth-arrow,
.home-auth-gooey:focus-within .home-auth-arrow {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-3px) scale(1);
}

.home-auth-gooey:hover .home-auth-blob-arrow,
.home-auth-gooey:focus-within .home-auth-blob-arrow {
  opacity: 1;
  transform: translateX(-3px) scale(1);
}

.home-auth-gooey:hover .home-auth-btn,
.home-auth-gooey:hover .home-auth-arrow,
.home-auth-gooey:hover .home-auth-blob,
.home-auth-gooey:focus-within .home-auth-btn,
.home-auth-gooey:focus-within .home-auth-arrow,
.home-auth-gooey:focus-within .home-auth-blob {
  background: rgba(225, 211, 195, 0.92);
}

.home-profile-gooey {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  height: 32px;
  overflow: visible;
  pointer-events: auto;
  filter: none;
}

.home-profile-btn,
.home-alumni-logout-btn {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: 0;
  height: 32px;
  margin-left: auto;
  border: 0;
  border-radius: 999px;
  background: #e1d3c3;
  color: #05080f;
  padding: 0 24px;
  font-family: var(--brand-font);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.24s ease, transform 0.24s ease;
}

.home-alumni-logout-btn {
  border: 1px solid rgba(225, 211, 195, 0.52);
  background: rgba(5, 8, 15, 0.68);
  color: #f6eee5;
  padding: 0 16px;
}

.home-profile-icon-btn {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: #e1d3c3;
  color: #05080f;
  cursor: pointer;
  transform: translateX(-40px);
  transition: background 0.24s ease, transform 0.3s ease;
}

.home-profile-icon {
  width: 14px;
  height: 14px;
}

.home-profile-gooey.is-alumni-control .home-profile-icon-btn {
  display: none;
}

.home-profile-gooey:hover .home-profile-icon-btn,
.home-profile-gooey:focus-within .home-profile-icon-btn {
  transform: translateX(-84px);
}

.home-profile-gooey.is-alumni-control:hover .home-profile-btn,
.home-profile-gooey.is-alumni-control:focus-within .home-profile-btn {
  background: #e1d3c3;
}

.home-profile-gooey:hover .home-profile-btn,
.home-profile-gooey:hover .home-alumni-logout-btn,
.home-profile-gooey:hover .home-profile-icon-btn,
.home-profile-gooey:focus-within .home-profile-btn,
.home-profile-gooey:focus-within .home-alumni-logout-btn,
.home-profile-gooey:focus-within .home-profile-icon-btn {
  background: rgba(225, 211, 195, 0.92);
}

.home-profile-gooey:hover .home-alumni-logout-btn,
.home-profile-gooey:focus-within .home-alumni-logout-btn {
  background: rgba(5, 8, 15, 0.82);
}

.home-profile-gooey.is-alumni-control:hover .home-profile-btn,
.home-profile-gooey.is-alumni-control:focus-within .home-profile-btn {
  background: #e1d3c3;
}

.modal-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 10px;
  min-width: 0;
  padding: 0 clamp(10px, 2.5vw, 24px);
  text-align: center;
}

.modal-copy p {
  margin: 0;
  color: rgba(225, 211, 195, 0.62);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
}

#auth-modal .modal-eyebrow-logo,
#auth-modal .modal-copy h2,
#auth-modal .modal-copy p {
  opacity: 0;
  transform: translateY(10px);
}

#auth-modal.active .modal-eyebrow-logo,
#auth-modal.active .modal-copy h2,
#auth-modal.active .modal-copy p {
  animation: authModalTextIn 0.62s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

#auth-modal.active .modal-copy h2 {
  animation-delay: 70ms;
}

#auth-modal.active .modal-copy p {
  animation-delay: 140ms;
}

.modal-eyebrow-logo {
  display: block;
  width: 62px;
  height: auto;
  object-fit: contain;
  opacity: 0.95;
}

.auth-input-wrap,
.password-input-wrap {
  position: relative;
}

.auth-input-icon {
  position: absolute;
  top: 50%;
  left: 13px;
  z-index: 1;
  display: flex;
  width: 18px;
  height: 18px;
  color: rgba(225, 211, 195, 0.48);
  transform: translateY(-50%);
  pointer-events: none;
}

.auth-input-icon svg {
  width: 100%;
  height: 100%;
}

.auth-input-wrap input,
.password-input-wrap input {
  padding-left: 42px;
}

.auth-general-error {
  display: none;
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 119, 119, 0.28);
  background: rgba(255, 80, 80, 0.08);
  color: #ffd5d5;
  font-size: 12px;
  line-height: 1.4;
}

.auth-general-error.active {
  display: block;
}

.auth-general-error.success {
  border-color: rgba(125, 186, 233, 0.34);
  background: rgba(44, 154, 222, 0.1);
  color: #d6ecff;
}

.profile-content {
  width: min(100%, 620px);
  max-width: 620px;
  padding: clamp(30px, 4vw, 46px);
}

.profile-section {
  border-top: 1px solid rgba(225, 211, 195, 0.1);
  padding-top: clamp(18px, 3vw, 24px);
  margin-top: clamp(18px, 3vw, 24px);
}

.profile-section-title {
  margin-bottom: 12px;
  color: rgba(125, 186, 233, 0.92);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile-info-grid,
.profile-application-card,
.profile-bookings-list {
  display: grid;
  gap: 10px;
}

.profile-info-grid,
.profile-application-row {
  grid-template-columns: minmax(120px, 0.5fr) 1fr;
}

.profile-application-row {
  display: grid;
  gap: 10px;
}

.profile-info-grid span,
.profile-application-row span {
  color: rgba(225, 211, 195, 0.58);
  font-size: 13px;
}

.profile-info-grid strong,
.profile-application-row strong {
  min-width: 0;
  color: rgba(255, 250, 244, 0.92);
  font-size: 13px;
  font-weight: 300;
  overflow-wrap: anywhere;
}

.profile-application-card,
.profile-bookings-list {
  color: rgba(225, 211, 195, 0.68);
  font-size: 13px;
}

.profile-application-status {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  border: 1px solid rgba(125, 186, 233, 0.24);
  border-radius: 12px;
  background: rgba(125, 186, 233, 0.09);
  padding: 14px;
}

.profile-status-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
}

.profile-status-copy strong {
  color: #d6ecff;
  font-size: 15px;
  font-weight: 400;
}

.profile-status-copy span {
  color: rgba(225, 211, 195, 0.72);
  font-size: 12px;
  line-height: 1.45;
}

.profile-application-timeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-application-timeline::before {
  content: "";
  position: absolute;
  top: 11px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 2px;
  border-radius: 999px;
  background: rgba(225, 211, 195, 0.16);
}

.profile-timeline-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 5px;
  min-width: 0;
  color: rgba(225, 211, 195, 0.52);
  text-align: center;
}

.profile-timeline-marker {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(225, 211, 195, 0.22);
  border-radius: 50%;
  background: #071225;
  box-shadow: 0 0 0 4px rgba(7, 18, 37, 0.94);
}

.profile-timeline-step.is-complete .profile-timeline-marker {
  border-color: rgba(126, 218, 170, 0.58);
  background: #baf5d2;
  box-shadow: 0 0 0 4px rgba(126, 218, 170, 0.1);
}

.profile-timeline-step.is-current .profile-timeline-marker {
  border-color: rgba(125, 186, 233, 0.9);
  background: #7dbae9;
  animation: statusPump 1.35s ease-in-out infinite;
}

.profile-application-status--accepted .profile-timeline-step.is-current .profile-timeline-marker {
  border-color: rgba(186, 245, 210, 0.95);
  background: #baf5d2;
}

.profile-application-status--rejected .profile-timeline-step.is-current .profile-timeline-marker {
  border-color: rgba(255, 213, 213, 0.95);
  background: #ffd5d5;
}

.profile-timeline-label {
  max-width: 100%;
  color: rgba(255, 250, 244, 0.86);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.profile-timeline-step small {
  max-width: 100%;
  color: rgba(225, 211, 195, 0.5);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.profile-timeline-step.is-current .profile-timeline-label,
.profile-timeline-step.is-complete .profile-timeline-label {
  color: #fffaf4;
}

@keyframes statusPump {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 4px rgba(125, 186, 233, 0.12), 0 0 0 0 rgba(125, 186, 233, 0.34);
  }

  50% {
    transform: scale(1.14);
    box-shadow: 0 0 0 4px rgba(125, 186, 233, 0.16), 0 0 0 9px rgba(125, 186, 233, 0);
  }
}

@media (max-width: 480px) {
  .profile-application-timeline {
    gap: 4px;
  }

  .profile-timeline-marker {
    width: 20px;
    height: 20px;
  }

  .profile-application-timeline::before {
    top: 9px;
    left: calc(12.5% + 8px);
    right: calc(12.5% + 8px);
  }

  .profile-timeline-label {
    font-size: 10px;
  }

  .profile-timeline-step small {
    font-size: 9px;
  }
}

.profile-application-status--accepted {
  border-color: rgba(126, 218, 170, 0.34);
  background: rgba(126, 218, 170, 0.1);
}

.profile-application-status--accepted strong {
  color: #baf5d2;
}

.profile-accepted-animation {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.profile-accepted-animation span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #baf5d2;
  opacity: 0;
  animation: acceptedSpark 2.4s ease-in-out infinite;
}

.profile-accepted-animation span:nth-child(1) {
  top: 18%;
  left: 18%;
}

.profile-accepted-animation span:nth-child(2) {
  top: 24%;
  right: 20%;
  animation-delay: 0.35s;
}

.profile-accepted-animation span:nth-child(3) {
  right: 28%;
  bottom: 20%;
  animation-delay: 0.7s;
}

.profile-accepted-animation span:nth-child(4) {
  bottom: 24%;
  left: 28%;
  animation-delay: 1.05s;
}

@keyframes acceptedSpark {
  0%, 100% {
    opacity: 0;
    transform: scale(0.35) translateY(6px);
  }

  35% {
    opacity: 0.85;
    transform: scale(1) translateY(0);
  }

  70% {
    opacity: 0;
    transform: scale(1.35) translateY(-8px);
  }
}

.profile-application-status--rejected {
  border-color: rgba(255, 119, 119, 0.3);
  background: rgba(255, 119, 119, 0.08);
}

.profile-application-status--rejected strong {
  color: #ffd5d5;
}

.application-success-modal {
  z-index: var(--layer-auth-modal);
}

.application-success-content {
  width: min(92vw, 440px);
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.application-success-mark {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(126, 218, 170, 0.34);
  border-radius: 50%;
  background: rgba(126, 218, 170, 0.1);
  animation: successPop 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

.application-success-mark span {
  width: 28px;
  height: 15px;
  border-bottom: 3px solid #baf5d2;
  border-left: 3px solid #baf5d2;
  transform: rotate(-45deg) translate(2px, -2px);
}

.application-success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

@keyframes successPop {
  from {
    opacity: 0;
    transform: scale(0.72);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.profile-booking-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(225, 211, 195, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  padding: 12px;
}

.profile-booking-card strong {
  color: rgba(255, 250, 244, 0.94);
  font-size: 14px;
  font-weight: 300;
}

.profile-booking-card span,
.profile-booking-card em {
  color: rgba(225, 211, 195, 0.64);
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.profile-booking-card a {
  width: fit-content;
  border: 1px solid rgba(125, 186, 233, 0.32);
  border-radius: 999px;
  color: #fff;
  padding: 7px 11px;
  text-decoration: none;
}

.profile-booking-countdown {
  color: #f8d48f !important;
}

.profile-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.profile-secondary-btn,
.profile-manage-btn,
.profile-logout-btn {
  min-height: 40px;
  border-radius: 999px;
  padding: 10px 15px;
  font-family: var(--brand-font);
  font-size: 12px;
  font-weight: 300;
  cursor: pointer;
}

.profile-secondary-btn {
  border: 1px solid rgba(225, 211, 195, 0.18);
  background: rgba(225, 211, 195, 0.08);
  color: rgba(225, 211, 195, 0.86);
}

.profile-manage-btn {
  border: 1px solid rgba(125, 186, 233, 0.32);
  background: linear-gradient(135deg, rgba(125, 186, 233, 0.2), rgba(225, 211, 195, 0.08));
  color: #d6ecff;
}

.profile-manage-btn[hidden] {
  display: none;
}

.profile-logout-btn {
  border: 1px solid rgba(255, 119, 119, 0.26);
  background: rgba(255, 80, 80, 0.08);
  color: #ffd5d5;
}

.admin-modal {
  z-index: calc(var(--layer-auth-modal) - 10);
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  background: rgba(3, 8, 24, 0.92);
}

.admin-content {
  width: min(94vw, 980px);
  max-width: 980px;
  max-height: 88vh;
  overflow: hidden;
}

.admin-modal .admin-content {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  width: 100%;
  max-width: none;
  height: 100dvh;
  max-height: none;
  border: 0;
  border-radius: 0;
  padding: clamp(20px, 3vw, 40px);
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(125, 186, 233, 0.14), transparent 34vw),
    linear-gradient(165deg, rgba(6, 13, 33, 0.98), rgba(3, 8, 24, 0.98));
}

.admin-modal .modal-header {
  align-items: center;
  gap: 24px;
  margin-bottom: 0;
  padding-bottom: clamp(18px, 2.5vw, 28px);
  border-bottom: 1px solid rgba(225, 211, 195, 0.12);
}

.admin-modal .modal-copy h2 {
  font-size: clamp(28px, 4vw, 46px);
}

.admin-modal .modal-copy p {
  max-width: 660px;
}

.admin-modal .modal-close {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(225, 211, 195, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.admin-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 8px;
  border: 1px solid rgba(225, 211, 195, 0.1);
  border-radius: 999px;
  background: rgba(5, 12, 28, 0.52);
}

.admin-tab,
.admin-refresh-btn {
  min-height: 38px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 9px 14px;
  font-family: var(--brand-font);
  font-size: 12px;
  font-weight: 300;
  cursor: pointer;
}

.admin-tab {
  background: transparent;
  color: rgba(225, 211, 195, 0.68);
}

.admin-tab.is-active {
  border-color: rgba(225, 211, 195, 0.18);
  background: rgba(225, 211, 195, 0.1);
  color: #fffaf4;
}

.admin-refresh-btn {
  margin-left: auto;
  border-color: rgba(125, 186, 233, 0.26);
  background: rgba(125, 186, 233, 0.12);
  color: #d6ecff;
}

.admin-modal .admin-toolbar {
  align-self: start;
  width: min(100%, 760px);
  margin: clamp(18px, 2vw, 26px) 0;
}

.admin-panel {
  display: none;
  margin-top: 18px;
}

.admin-panel.is-active {
  display: block;
}

.admin-modal .admin-panel {
  min-height: 0;
  margin-top: 0;
  overflow: hidden;
}

.admin-modal .admin-panel.is-active {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.admin-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  color: rgba(225, 211, 195, 0.72);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-panel-header strong {
  display: inline-grid;
  min-width: 34px;
  min-height: 28px;
  place-items: center;
  border-radius: 999px;
  background: rgba(225, 211, 195, 0.1);
  color: #fffaf4;
  font-weight: 400;
}

.admin-list {
  display: grid;
  gap: 12px;
  max-height: 52vh;
  overflow: auto;
  padding-right: 4px;
  color: rgba(225, 211, 195, 0.7);
  font-size: 13px;
}

.admin-modal .admin-list {
  align-content: start;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  max-height: none;
  min-height: 0;
  padding: 4px 8px 12px 0;
}

#admin-applications-list {
  grid-template-columns: minmax(0, 1fr);
}

#admin-applications-list .admin-card {
  width: 100%;
}

.admin-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(225, 211, 195, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(125, 186, 233, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.035);
  padding: 14px;
}

.admin-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.admin-card h3 {
  margin: 0;
  color: #fffaf4;
  font-size: 16px;
  font-weight: 350;
}

.admin-card p {
  margin: 4px 0 0;
  color: rgba(225, 211, 195, 0.66);
  font-size: 12px;
  line-height: 1.45;
}

.admin-badge {
  flex: 0 0 auto;
  border: 1px solid rgba(125, 186, 233, 0.22);
  border-radius: 999px;
  background: rgba(125, 186, 233, 0.1);
  color: #d6ecff;
  padding: 5px 9px;
  font-size: 11px;
  white-space: nowrap;
}

.admin-badge--accepted {
  border-color: rgba(126, 218, 170, 0.3);
  background: rgba(126, 218, 170, 0.1);
  color: #baf5d2;
}

.admin-badge--rejected {
  border-color: rgba(255, 119, 119, 0.28);
  background: rgba(255, 119, 119, 0.08);
  color: #ffd5d5;
}

.admin-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.admin-card-field {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 11px;
  background: rgba(5, 10, 24, 0.22);
  padding: 9px 10px;
}

.admin-card-field span {
  display: block;
  margin-bottom: 4px;
  color: rgba(225, 211, 195, 0.52);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-card-field strong {
  display: block;
  min-width: 0;
  color: rgba(255, 250, 244, 0.9);
  font-size: 12px;
  font-weight: 350;
  overflow-wrap: anywhere;
}

.admin-application-review {
  gap: 14px;
}

.admin-application-sheet {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(225, 211, 195, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.035);
  padding: 16px;
}

.admin-application-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.admin-application-field {
  min-width: 0;
  border-bottom: 1px solid rgba(225, 211, 195, 0.1);
  padding-bottom: 7px;
}

.admin-application-field span,
.admin-application-answer h4 {
  display: block;
  margin: 0 0 4px;
  color: rgba(125, 186, 233, 0.82);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-application-field strong,
.admin-application-answer p {
  display: block;
  margin: 0;
  color: rgba(255, 250, 244, 0.9);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.55;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.admin-application-answer {
  border-top: 1px solid rgba(225, 211, 195, 0.08);
  padding-top: 10px;
}

.admin-review-actions {
  flex-wrap: wrap;
}

.admin-accept-btn {
  border-color: rgba(126, 218, 170, 0.32);
  background: rgba(126, 218, 170, 0.12);
  color: #baf5d2;
}

.admin-reject-btn {
  border-color: rgba(255, 119, 119, 0.28);
  background: rgba(255, 119, 119, 0.08);
  color: #ffd5d5;
}

.admin-save-btn:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.admin-availability {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-availability-chip {
  border: 1px solid rgba(225, 211, 195, 0.12);
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(225, 211, 195, 0.06);
  color: rgba(225, 211, 195, 0.74);
  font-size: 11px;
}

.admin-availability-editor {
  display: grid;
  gap: 8px;
}

.admin-availability-editor span {
  color: rgba(125, 186, 233, 0.86);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-availability-editor textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid rgba(225, 211, 195, 0.14);
  border-radius: 12px;
  background: rgba(5, 10, 24, 0.36);
  color: rgba(255, 250, 244, 0.9);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  line-height: 1.5;
  padding: 11px;
}

.admin-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-save-btn {
  min-height: 34px;
  border: 1px solid rgba(125, 186, 233, 0.28);
  border-radius: 999px;
  background: rgba(125, 186, 233, 0.12);
  color: #d6ecff;
  padding: 8px 12px;
  font-family: var(--brand-font);
  font-size: 11px;
  font-weight: 300;
  cursor: pointer;
}

.admin-card-actions small {
  color: rgba(225, 211, 195, 0.58);
  font-size: 11px;
}

.admin-empty {
  border: 1px dashed rgba(225, 211, 195, 0.16);
  border-radius: 14px;
  padding: 18px;
  color: rgba(225, 211, 195, 0.58);
  text-align: center;
}

.alumni-manage-modal {
  align-items: stretch;
  justify-content: stretch;
  background:
    radial-gradient(circle at 15% 0%, rgba(125, 186, 233, 0.16), transparent 34%),
    rgba(3, 8, 24, 0.92);
}

.alumni-manage-content {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(8, 15, 34, 0.98), rgba(3, 8, 24, 0.98)),
    #050a18;
  padding: 0;
  overflow: hidden;
}

.alumni-manage-content .modal-header {
  align-items: center;
  margin: 0;
  border-bottom: 1px solid rgba(225, 211, 195, 0.1);
  background: rgba(5, 10, 24, 0.72);
  padding: 22px clamp(18px, 4vw, 48px);
}

.alumni-manage-content .modal-copy {
  align-items: flex-start;
}

.alumni-manage-content .modal-header h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 320;
}

.alumni-manage-content .modal-close {
  position: static;
  width: auto;
  min-width: 74px;
  height: 38px;
  border: 1px solid rgba(225, 211, 195, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(225, 211, 195, 0.86);
  padding: 0 18px;
  font-family: var(--brand-font);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
  transform: none;
}

.alumni-manage-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: start;
  gap: clamp(14px, 2vw, 24px);
  height: 100%;
  max-height: none;
  overflow: auto;
  padding: 28px clamp(16px, 3vw, 48px) 34px;
}

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

.alumni-manage-form label,
.alumni-slot-controls label {
  display: grid;
  gap: 7px;
}

.alumni-manage-form label span,
.alumni-slot-controls label span {
  color: rgba(125, 186, 233, 0.86);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.alumni-manage-form input,
.alumni-manage-form textarea,
.alumni-slot-controls input {
  width: 100%;
  border: 1px solid rgba(225, 211, 195, 0.14);
  border-radius: 12px;
  background: rgba(5, 10, 24, 0.36);
  color: rgba(255, 250, 244, 0.9);
  font-family: var(--brand-font);
  font-size: 13px;
  font-weight: 300;
  padding: 11px;
  color-scheme: dark;
}

.alumni-photo-upload-field {
  align-content: start;
}

.alumni-photo-upload {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(225, 211, 195, 0.14);
  border-radius: 14px;
  background: rgba(5, 10, 24, 0.28);
  padding: 10px;
}

.alumni-photo-upload-control {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 8px 10px;
  align-items: center;
  min-width: 0;
}

.alumni-photo-preview {
  width: 72px;
  aspect-ratio: 1;
  border: 1px solid rgba(225, 211, 195, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(125, 186, 233, 0.16), rgba(225, 211, 195, 0.08)),
    rgba(255, 255, 255, 0.04);
  background-position: center;
  background-size: cover;
}

.alumni-photo-preview:not(.has-image)::before {
  content: "IMG";
  display: grid;
  height: 100%;
  place-items: center;
  color: rgba(225, 211, 195, 0.54);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.alumni-photo-upload input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.alumni-photo-upload-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(125, 186, 233, 0.42);
  border-radius: 10px;
  background: rgba(125, 186, 233, 0.12);
  color: #edf7ff;
  padding: 9px 14px;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.alumni-photo-upload-field:focus-within .alumni-photo-upload-button,
.alumni-photo-upload-button:hover {
  border-color: rgba(125, 186, 233, 0.76);
  background: rgba(125, 186, 233, 0.2);
}

.alumni-photo-upload-button:hover {
  transform: translateY(-1px);
}

.alumni-photo-upload-control strong {
  min-width: 0;
  overflow: hidden;
  color: rgba(225, 211, 195, 0.78);
  font-size: 12px;
  font-weight: 300;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.alumni-photo-upload small {
  display: block;
  grid-column: 1 / -1;
  margin-top: 6px;
  color: rgba(225, 211, 195, 0.56);
  font-size: 11px;
  font-weight: 300;
}

.alumni-manage-form input:focus,
.alumni-manage-form textarea:focus,
.alumni-slot-controls input:focus {
  border-color: rgba(125, 186, 233, 0.46);
  outline: none;
  box-shadow: 0 0 0 3px rgba(125, 186, 233, 0.11);
}

.alumni-manage-form input[type="date"],
.alumni-slot-controls input[type="date"] {
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 3v3M17 3v3M4 9h16M6.5 5h11A2.5 2.5 0 0 1 20 7.5v10A2.5 2.5 0 0 1 17.5 20h-11A2.5 2.5 0 0 1 4 17.5v-10A2.5 2.5 0 0 1 6.5 5Z' stroke='%23fffaf4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right 13px center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
}

.alumni-manage-form input[type="date"]::-webkit-calendar-picker-indicator,
.alumni-manage-form input[type="time"]::-webkit-calendar-picker-indicator,
.alumni-slot-controls input[type="date"]::-webkit-calendar-picker-indicator,
.alumni-slot-controls input[type="time"]::-webkit-calendar-picker-indicator,
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0;
}

.alumni-manage-form textarea {
  resize: vertical;
}

.alumni-manage-wide {
  grid-column: 1;
}

.alumni-fixed-detail textarea {
  min-height: 92px;
}

.alumni-profile-editor {
  display: grid;
  grid-column: 1;
  gap: 12px;
  border: 1px solid rgba(225, 211, 195, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(125, 186, 233, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.028);
  padding: 16px;
}

.alumni-inline-add {
  border: 1px solid rgba(125, 186, 233, 0.24);
  border-radius: 999px;
  background: rgba(125, 186, 233, 0.1);
  color: #d6ecff;
  padding: 7px 11px;
  font-family: var(--brand-font);
  font-size: 11px;
  font-weight: 300;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}

.alumni-kv-list {
  display: grid;
  gap: 9px;
}

.alumni-kv-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.34fr) minmax(0, 1fr) auto;
  gap: 8px;
}

.alumni-kv-row button {
  width: 38px;
  border: 1px solid rgba(225, 211, 195, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 250, 244, 0.78);
  cursor: pointer;
}

.alumni-slot-builder {
  position: sticky;
  top: 0;
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 4;
  gap: 12px;
  border: 1px solid rgba(225, 211, 195, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(125, 186, 233, 0.12), rgba(255, 255, 255, 0.025)),
    rgba(5, 10, 24, 0.58);
  padding: 18px;
  max-height: calc(100dvh - 150px);
  overflow: auto;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.alumni-slot-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 10px;
}

.alumni-slot-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}

.alumni-time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 9px;
  max-height: 0;
  overflow: hidden;
  border: 1px solid rgba(225, 211, 195, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(5, 10, 24, 0.84), rgba(5, 10, 24, 0.34)),
    rgba(5, 10, 24, 0.22);
  padding: 0 10px;
  opacity: 0;
  scroll-snap-type: y mandatory;
  transition: max-height 0.32s ease, opacity 0.22s ease, padding 0.22s ease;
}

.alumni-time-grid.is-visible {
  max-height: 250px;
  overflow-y: auto;
  padding: 12px 10px;
  opacity: 1;
}

.alumni-time-grid button {
  min-height: 42px;
  border: 1px solid rgba(125, 186, 233, 0.2);
  border-radius: 12px;
  background: rgba(125, 186, 233, 0.08);
  color: rgba(255, 250, 244, 0.86);
  font-family: var(--brand-font);
  font-size: 12px;
  font-weight: 300;
  cursor: pointer;
  scroll-snap-align: center;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.alumni-time-grid button:hover,
.alumni-time-grid button:focus-visible {
  border-color: rgba(125, 186, 233, 0.44);
  background: rgba(125, 186, 233, 0.16);
  transform: translateY(-1px);
}

.alumni-slot-day {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(225, 211, 195, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(125, 186, 233, 0.085), transparent),
    rgba(255, 255, 255, 0.036);
  padding: 12px;
}

.alumni-slot-day > div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.alumni-slot-day strong {
  color: #fffaf4;
  font-size: 14px;
  font-weight: 420;
}

.alumni-slot-day span {
  color: rgba(225, 211, 195, 0.62);
  font-size: 12px;
  font-weight: 300;
}

.alumni-slot-times {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.alumni-slot-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  min-height: 38px;
  border: 1px solid rgba(125, 186, 233, 0.24);
  border-radius: 999px;
  background: rgba(125, 186, 233, 0.1);
  color: rgba(255, 250, 244, 0.88);
  padding: 8px 9px 8px 12px;
  font-family: var(--brand-font);
  font-size: 12px;
  font-weight: 300;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.alumni-slot-pill:hover {
  border-color: rgba(125, 186, 233, 0.46);
  background: rgba(125, 186, 233, 0.16);
  transform: translateY(-1px);
}

.alumni-slot-pill b {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 300;
  line-height: 1;
}

.alumni-submitted-list {
  display: none;
  gap: 10px;
  max-height: 260px;
  overflow: auto;
}

.alumni-submitted-card {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(225, 211, 195, 0.1);
  border-radius: 14px;
  background: rgba(5, 10, 24, 0.24);
  padding: 12px;
}

.alumni-submitted-card > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.alumni-submitted-card strong {
  color: #fffaf4;
  font-size: 14px;
  font-weight: 380;
}

.alumni-submitted-card span,
.alumni-submitted-card p,
.alumni-submitted-card small {
  margin: 0;
  color: rgba(225, 211, 195, 0.66);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.45;
}

.alumni-autosave-note {
  color: rgba(225, 211, 195, 0.62);
  font-size: 12px;
  font-weight: 300;
}

.alumni-manage-form > .admin-card-actions {
  position: sticky;
  bottom: 0;
  z-index: 3;
  align-self: end;
  grid-column: 1 / -1;
  justify-content: space-between;
  flex-wrap: wrap;
  border: 1px solid rgba(225, 211, 195, 0.1);
  border-radius: 16px;
  background: rgba(5, 10, 24, 0.78);
  padding: 12px 14px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.alumni-manage-form > .admin-card-actions small {
  min-width: 0;
  overflow-wrap: anywhere;
}

.password-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.auth-inline-link {
  border: 0;
  background: transparent;
  color: rgba(125, 186, 233, 0.92);
  font-family: var(--brand-font);
  font-size: 11px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 0.2s ease;
}

.auth-inline-link:hover {
  color: #d6ecff;
}

.password-input-wrap input {
  padding-right: 84px;
}

.password-visibility-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(225, 211, 195, 0.82);
  font-family: var(--brand-font);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  cursor: pointer;
}

.remember-row {
  margin-top: 2px;
  margin-bottom: 18px;
}

.remember-control {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(225, 211, 195, 0.72);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0.02em;
}

.remember-control input {
  width: 16px;
  height: 16px;
  accent-color: #E1D3C3;
}

.field-error {
  min-height: 15px;
  margin-top: 7px;
  margin-bottom: 0;
  font-size: 11px;
  color: #ffc0c0;
  letter-spacing: 0.01em;
}

.form-group.has-error input {
  border-color: rgba(255, 96, 96, 0.46);
  box-shadow: 0 0 0 3px rgba(255, 96, 96, 0.08);
}

.confirm-password-group {
  display: none;
}

.confirm-password-group.visible {
  display: block;
}

.submit-btn {
  background: #E1D3C3;
  border: 1px solid rgba(225, 211, 195, 0.72);
  color: #131722;
}

.submit-btn:hover {
  box-shadow: 0 18px 34px rgba(35, 27, 20, 0.3);
  filter: brightness(1.03);
}

.submit-btn:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

/* Restored: Alumni section and booking modal */
.ui.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.alumni-page {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 260;
  background: radial-gradient(circle at 20% 10%, rgba(44, 154, 222, 0.12), transparent 35%), #050a18;
  overflow: hidden;
}

.alumni-page.active {
  display: block;
}

.alumni-page-shell {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  overflow: auto;
  overscroll-behavior: contain;
  scroll-padding-top: calc(76px + var(--section-nav-safety-space));
  padding: 0 clamp(20px, 4vw, 64px) 48px;
  color: var(--brand-white);
}

.alumni-page-topbar {
  position: sticky;
  top: 0;
  z-index: 120;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: var(--section-nav-safety-space);
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(225, 211, 195, 0.08);
  background: rgba(5, 10, 24, 0.9);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.alumni-page-topbar::before,
.coaching-info-topbar::before,
.application-topbar::before {
  content: "";
  position: absolute;
  inset: -140px 0 auto;
  height: 140px;
  background: inherit;
  pointer-events: none;
}

.alumni-navbar {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.alumni-navbar.is-open {
  border-radius: 0;
}

.alumni-navbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.alumni-navbar-logo {
  display: block;
  width: 72px;
  height: 28px;
  flex: 0 0 auto;
  object-fit: contain;
  opacity: 0.88;
}

.alumni-navbar-links,
.alumni-navbar-actions {
  display: flex;
  align-items: center;
}

.alumni-navbar-links {
  min-width: 0;
  gap: clamp(10px, 2vw, 22px);
  padding: 10px 18px;
  border: 1px solid rgba(225, 211, 195, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.alumni-navbar-actions {
  flex: 0 0 auto;
  gap: 10px;
}

.alumni-nav-link {
  position: relative;
  height: 20px;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: transparent;
  cursor: pointer;
  font-family: var(--brand-font);
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
  padding: 0;
}

.alumni-nav-link::before,
.alumni-nav-link::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  color: rgba(225, 211, 195, 0.72);
  transition: transform 0.4s ease, color 0.2s ease;
}

.alumni-nav-link::after {
  color: #fff;
  transform: translateY(100%);
}

.alumni-nav-link:hover::before,
.alumni-nav-link:focus-visible::before,
.alumni-nav-link.is-active::before {
  transform: translateY(-100%);
}

.alumni-nav-link:hover::after,
.alumni-nav-link:focus-visible::after,
.alumni-nav-link.is-active::after {
  transform: translateY(0);
}

.alumni-nav-login,
.alumni-nav-profile,
.alumni-mobile-menu button {
  font-family: var(--brand-font);
  font-weight: 300;
  cursor: pointer;
}

.alumni-nav-login {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(31, 31, 31, 0.38);
  color: rgba(225, 211, 195, 0.76);
  padding: 8px 13px;
  font-size: 12px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.alumni-nav-login:hover,
.alumni-nav-login:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.alumni-nav-profile {
  width: max-content;
  border: 1px solid rgba(125, 186, 233, 0.32);
  border-radius: 999px;
  background: rgba(125, 186, 233, 0.12);
  color: rgba(239, 248, 255, 0.9);
  padding: 8px 14px;
  font-size: 12px;
  white-space: nowrap;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.alumni-nav-profile:hover,
.alumni-nav-profile:focus-visible {
  border-color: rgba(125, 186, 233, 0.52);
  background: rgba(125, 186, 233, 0.18);
  color: #fff;
  transform: translateY(-1px);
  outline: none;
}

.alumni-menu-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: rgba(225, 211, 195, 0.82);
  cursor: pointer;
  position: relative;
}

.alumni-menu-toggle span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease, top 0.25s ease;
}

.alumni-menu-toggle span:first-child {
  top: 13px;
}

.alumni-menu-toggle span:last-child {
  top: 20px;
}

.alumni-navbar.is-open .alumni-menu-toggle span:first-child {
  top: 17px;
  transform: rotate(45deg);
}

.alumni-navbar.is-open .alumni-menu-toggle span:last-child {
  top: 17px;
  transform: rotate(-45deg);
}

.alumni-mobile-menu {
  display: none;
}

@media (max-width: 760px) {
  .alumni-navbar-row {
    grid-template-columns: auto 1fr auto;
  }

  .alumni-navbar-links,
  .alumni-navbar-actions {
    display: none;
  }

  .alumni-menu-toggle {
    display: block;
  }

  .alumni-mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-top: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding-top 0.3s ease;
    pointer-events: none;
  }

  .alumni-navbar.is-open .alumni-mobile-menu {
    max-height: 520px;
    opacity: 1;
    padding-top: 18px;
    pointer-events: auto;
  }

  .alumni-mobile-menu button {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(225, 211, 195, 0.76);
    padding: 10px 12px;
    font-size: 14px;
    text-align: center;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  }

  .alumni-mobile-menu button:hover,
  .alumni-mobile-menu button:focus-visible,
  .alumni-mobile-menu button[aria-current="page"] {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
  }
}

.alumni-page-hero {
  margin-bottom: 22px;
}

.alumni-reveal-text,
.application-reveal-text {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(12px);
}

.alumni-page.is-revealed .alumni-reveal-text,
.application-page.is-revealed .application-reveal-text,
.coaching-info-page.is-revealed .application-reveal-text {
  animation: alumniRevealText 1.15s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms) forwards;
}

.alumni-page-copy h2.alumni-reveal-text,
.application-hero p.application-reveal-text,
.coaching-info-hero p.application-reveal-text {
  --reveal-delay: 40ms;
}

.alumni-page-copy p.alumni-reveal-text,
.application-hero h1.application-reveal-text,
.coaching-info-hero h1.application-reveal-text {
  --reveal-delay: 115ms;
}

.alumni-expansion-note.alumni-reveal-text {
  --reveal-delay: 175ms;
}

.alumni-country-filter.alumni-reveal-text {
  --reveal-delay: 205ms;
}

.alumni-list-header.alumni-reveal-text {
  --reveal-delay: 250ms;
}

.coaching-feature-carousel.application-reveal-text {
  --reveal-delay: 220ms;
}

@keyframes alumniRevealText {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(12px);
  }
  62% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-1px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.alumni-page-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.08;
}

.alumni-page-copy p {
  margin: 0;
  max-width: 760px;
  color: rgba(225, 211, 195, 0.74);
  font-size: 14px;
  line-height: 1.65;
}

.alumni-expansion-note {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 760px;
  margin: 0 0 14px;
  padding: 9px 13px;
  border: 1px solid rgba(246, 201, 93, 0.32);
  border-radius: 999px;
  background: rgba(246, 201, 93, 0.1);
  color: rgba(255, 238, 184, 0.9);
  font-size: 12px;
  line-height: 1.45;
}

.alumni-expansion-note span {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #f6c95d;
  box-shadow: 0 0 0 0 rgba(246, 201, 93, 0.46);
  animation: alumniNotePulse 1.8s ease-out infinite;
}

@keyframes alumniNotePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(246, 201, 93, 0.46);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(246, 201, 93, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(246, 201, 93, 0);
  }
}

.alumni-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 16px 0 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(225, 211, 195, 0.64);
}

.alumni-list-header > span {
  flex: 0 0 auto;
}

.alumni-country-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.alumni-sort-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  letter-spacing: 0;
  text-transform: none;
}

.alumni-country-chip,
.alumni-sort-btn {
  border: 1px solid rgba(225, 211, 195, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(225, 211, 195, 0.68);
  padding: 8px 13px;
  font-family: var(--brand-font);
  font-size: 12px;
  font-weight: 300;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.alumni-country-chip:hover,
.alumni-country-chip:focus-visible,
.alumni-country-chip.is-active,
.alumni-sort-btn:hover,
.alumni-sort-btn:focus-visible,
.alumni-sort-btn.is-active {
  border-color: rgba(125, 186, 233, 0.42);
  background: rgba(125, 186, 233, 0.12);
  color: #fff;
  transform: translateY(-1px);
  outline: none;
}

.alumni-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.alumni-person-card {
  position: relative;
  display: flex;
  min-height: 312px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: linear-gradient(165deg, rgba(21, 37, 77, 0.94), rgba(9, 18, 40, 0.96));
  color: inherit;
  cursor: pointer;
  font-family: var(--brand-font);
  text-align: left;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.alumni-person-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(165deg, #2c9ade, #1f6fb7);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.alumni-person-card:hover,
.alumni-person-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(125, 186, 233, 0.58);
  box-shadow: 0 16px 28px rgba(4, 10, 24, 0.36);
}

.alumni-person-card:hover::before,
.alumni-person-card:focus-visible::before {
  opacity: 1;
}

.alumni-person-card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 4px;
}

.alumni-school-watermark {
  position: absolute;
  z-index: 1;
  right: -18px;
  bottom: -18px;
  width: auto;
  height: min(52%, 170px);
  max-width: none;
  object-fit: contain;
  object-position: center;
  opacity: 0.25;
  pointer-events: none;
}

.alumni-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  min-height: 100%;
  padding: 28px;
  color: #f8f3eb;
}

.alumni-person-photo {
  position: relative;
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 30%, rgba(255, 255, 255, 0.42), rgba(125, 186, 233, 0.2) 46%, rgba(225, 211, 195, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.alumni-person-photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.alumni-person-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(25px, 2.4vw, 32px);
  font-weight: 300;
  line-height: 1.1;
}

.alumni-person-copy p {
  margin: 0;
  color: rgba(225, 211, 195, 0.74);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.35;
}

.alumni-person-copy p strong {
  color: rgba(255, 250, 244, 0.94);
  font-weight: 500;
}

.alumni-person-card:hover .alumni-person-copy p,
.alumni-person-card:focus-visible .alumni-person-copy p {
  color: rgba(255, 255, 255, 0.8);
}

.alumni-person-quote {
  position: relative;
  margin: 26px 0 0;
  padding: 20px 0 0 18px;
  border-top: 1px solid rgba(225, 211, 195, 0.16);
}

.alumni-person-quote::before {
  content: "\201C";
  position: absolute;
  top: 7px;
  left: 0;
  color: rgba(125, 186, 233, 0.75);
  font-family: Georgia, serif;
  font-size: 38px;
  line-height: 1;
}

.alumni-person-quote blockquote {
  margin: 0;
  color: rgba(248, 243, 235, 0.82);
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.58;
}

.alumni-person-card:hover .alumni-person-quote,
.alumni-person-card:focus-visible .alumni-person-quote {
  border-top-color: rgba(255, 255, 255, 0.24);
}

.alumni-person-card:hover .alumni-person-quote blockquote,
.alumni-person-card:focus-visible .alumni-person-quote blockquote {
  color: rgba(255, 255, 255, 0.9);
}

.alumni-person-cta {
  margin-top: auto;
  padding-top: 22px;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(125, 186, 233, 0.95);
}

.alumni-person-card:hover .alumni-person-cta,
.alumni-person-card:focus-visible .alumni-person-cta {
  color: #fff;
}

.alumni-calendar-modal {
  z-index: 520;
}

/* Personal coaching info page */
.coaching-info-page {
  position: fixed;
  inset: 0;
  z-index: 265;
  display: none;
  overflow: hidden;
  color: var(--brand-white);
  background:
    radial-gradient(circle at 86% 12%, rgba(125, 186, 233, 0.16), transparent 30%),
    radial-gradient(circle at 12% 82%, rgba(225, 211, 195, 0.1), transparent 28%),
    #050a18;
}

.coaching-info-page.active {
  display: block;
}

.coaching-info-shell {
  height: 100%;
  overflow: auto;
  overscroll-behavior: contain;
  scroll-padding-top: calc(76px + var(--section-nav-safety-space));
  padding: 0 clamp(18px, 4vw, 56px) 54px;
}

.coaching-info-topbar {
  position: sticky;
  top: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(225, 211, 195, 0.08);
  background: rgba(5, 10, 24, 0.9);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.section-nav-host {
  min-width: 0;
  width: 100%;
}

.coaching-info-hero {
  max-width: 930px;
  margin: clamp(58px, 10vh, 104px) auto clamp(28px, 5vw, 48px);
  text-align: center;
}

.coaching-info-hero p {
  margin: 0 0 16px;
  color: rgba(125, 186, 233, 0.9);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.coaching-info-hero h1 {
  margin: 0;
  color: #fffaf4;
  font-size: clamp(36px, 6vw, 78px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
}

.coaching-feature-carousel {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 0.58fr);
  max-width: 1180px;
  min-height: clamp(520px, 62vh, 680px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(225, 211, 195, 0.1);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.coaching-feature-list {
  position: relative;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(28px, 5vw, 58px);
  background: linear-gradient(180deg, rgba(125, 186, 233, 0.96), rgba(74, 142, 199, 0.92));
  overflow: hidden;
}

.coaching-feature-list::before,
.coaching-feature-list::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  height: 84px;
  z-index: 1;
  pointer-events: none;
}

.coaching-feature-list::before {
  top: 0;
  background: linear-gradient(180deg, rgba(125, 186, 233, 1), transparent);
}

.coaching-feature-list::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(74, 142, 199, 1), transparent);
}

.coaching-feature-chip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.64);
  padding: 15px 22px;
  font-family: var(--brand-font);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.45s ease, color 0.45s ease, border-color 0.45s ease, transform 0.45s ease;
}

.coaching-feature-chip span {
  color: currentColor;
  font-size: 11px;
  opacity: 0.72;
}

.coaching-feature-chip:hover,
.coaching-feature-chip:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  outline: none;
}

.coaching-feature-chip.is-active {
  transform: translateX(8px);
  border-color: rgba(255, 255, 255, 0.92);
  background: #fffaf4;
  color: #346f9c;
  box-shadow: 0 20px 44px rgba(18, 72, 115, 0.22);
}

.coaching-feature-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: clamp(28px, 5vw, 66px);
  overflow: hidden;
  border-left: 1px solid rgba(225, 211, 195, 0.08);
  background:
    radial-gradient(circle at 22% 18%, rgba(225, 211, 195, 0.1), transparent 34%),
    rgba(3, 8, 19, 0.42);
}

.coaching-feature-card {
  position: absolute;
  width: min(410px, calc(100% - 52px));
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: clamp(26px, 4vw, 38px);
  border: 7px solid rgba(255, 250, 244, 0.88);
  border-radius: 38px;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.08) 36%, rgba(0, 0, 0, 0.74) 100%),
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.54), transparent 20%),
    linear-gradient(135deg, rgba(125, 186, 233, 0.94), rgba(225, 211, 195, 0.74));
  box-shadow: 0 30px 74px rgba(0, 0, 0, 0.36);
  opacity: 0;
  transform: translateX(0) scale(0.72) rotate(0deg);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.55s ease;
}

.coaching-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.16) 36%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 42%),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 18px);
  opacity: 0.78;
  pointer-events: none;
}

.coaching-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--coaching-card-image, none);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.45s ease, transform 0.55s ease;
  pointer-events: none;
}

.coaching-feature-card.has-card-image::after {
  opacity: 0.78;
  transform: scale(1);
}

.coaching-feature-card-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  padding: 0;
  background-color: transparent;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.86;
  transform: scale(1.01);
  pointer-events: none;
}

.coaching-feature-card > :not(.coaching-feature-card-image) {
  position: relative;
  z-index: 2;
}

.coaching-feature-card > span:not(.coaching-feature-card-image) {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(5, 10, 24, 0.42);
  color: rgba(255, 255, 255, 0.86);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.coaching-feature-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  line-height: 1;
}

.coaching-feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
}

.coaching-feature-card.is-active {
  z-index: 20;
  opacity: 1;
  transform: translateX(0) scale(1) rotate(0deg);
  pointer-events: auto;
  filter: blur(0);
}

.coaching-feature-card.is-prev {
  z-index: 10;
  opacity: 0.36;
  transform: translateX(-88px) scale(0.86) rotate(-3deg);
  filter: grayscale(0.45) blur(1px) brightness(0.78);
}

.coaching-feature-card.is-next {
  z-index: 10;
  opacity: 0.36;
  transform: translateX(88px) scale(0.86) rotate(3deg);
  filter: grayscale(0.45) blur(1px) brightness(0.78);
}

.coaching-testimonials {
  width: min(940px, 100%);
  margin: clamp(34px, 6vw, 72px) auto 0;
  padding: 0 clamp(2px, 2vw, 18px) clamp(18px, 4vw, 34px);
  background: transparent;
}

.coaching-testimonials-header {
  margin-bottom: clamp(20px, 4vw, 34px);
  text-align: center;
}

.coaching-testimonials-header p {
  margin: 0 0 10px;
  color: rgba(125, 186, 233, 0.88);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.coaching-testimonials-header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 300;
  line-height: 1.05;
}

.coaching-testimonial-carousel {
  position: relative;
  margin: 0 auto;
}

.coaching-testimonial-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.coaching-testimonial-track {
  display: flex;
  transition: transform 0.56s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.coaching-testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 22px;
  min-height: clamp(360px, 48vh, 520px);
  padding: clamp(20px, 5vw, 42px) clamp(18px, 6vw, 64px);
  border: 0;
  background: transparent;
  text-align: center;
}

.coaching-testimonial-quote {
  width: 34px;
  height: 34px;
  color: rgba(225, 211, 195, 0.38);
}

.coaching-testimonial-slide blockquote {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 250, 244, 0.9);
  font-size: clamp(19px, 2.5vw, 30px);
  font-weight: 300;
  line-height: 1.34;
}

.coaching-testimonial-slide blockquote:lang(mn) {
  font-family: "Times New Roman", Times, serif !important;
  font-size: clamp(18px, 2.1vw, 26px);
  line-height: 1.5;
}

.coaching-testimonial-person {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 0;
}

.coaching-testimonial-person img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  padding: 8px;
}

.coaching-testimonial-person img.is-mostly-white-logo {
  background: rgba(3, 8, 19, 0.96);
}

.coaching-testimonial-person div {
  display: grid;
  gap: 4px;
  min-width: 0;
  text-align: left;
}

.coaching-testimonial-person strong {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}

.coaching-testimonial-person span {
  color: rgba(225, 211, 195, 0.62);
  font-size: 12px;
  font-weight: 300;
}

.coaching-testimonial-fade {
  display: none;
}

.coaching-testimonial-fade-left {
  left: 0;
  background: transparent;
}

.coaching-testimonial-fade-right {
  right: 0;
  background: transparent;
}

.coaching-testimonial-controls {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
  padding: 8px 0;
}

.coaching-testimonial-arrow {
  pointer-events: auto;
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(225, 211, 195, 0.16);
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 250, 244, 0.86);
  cursor: pointer;
  touch-action: manipulation;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.coaching-testimonial-arrow::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
}

.coaching-testimonial-arrow:hover,
.coaching-testimonial-arrow:focus-visible {
  border-color: rgba(125, 186, 233, 0.54);
  background: rgba(125, 186, 233, 0.1);
  box-shadow: 0 0 0 5px rgba(44, 154, 222, 0.08);
  color: #fff;
  outline: none;
}

.coaching-testimonial-arrow:active {
  border-color: rgba(125, 186, 233, 0.72);
  background: rgba(125, 186, 233, 0.16);
}

.coaching-testimonial-arrow svg {
  position: relative;
  z-index: 1;
  pointer-events: none;
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.coaching-testimonial-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.coaching-testimonial-dot {
  pointer-events: auto;
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(225, 211, 195, 0.28);
  cursor: pointer;
  transition: width 0.24s ease, background 0.24s ease;
}

.coaching-testimonial-dot.is-active {
  width: 24px;
  background: rgba(225, 211, 195, 0.88);
}

/* Personal coaching application page */
.application-page {
  position: fixed;
  inset: 0;
  z-index: 270;
  display: none;
  background:
    radial-gradient(circle at 85% 10%, rgba(44, 154, 222, 0.12), transparent 30%),
    radial-gradient(circle at 12% 82%, rgba(225, 211, 195, 0.08), transparent 28%),
    #050a18;
  color: var(--brand-white);
  overflow: hidden;
}

.application-page.active {
  display: block;
}

.application-shell {
  height: 100%;
  overflow: auto;
  overscroll-behavior: contain;
  scroll-padding-top: calc(76px + var(--section-nav-safety-space));
  padding: 0 clamp(18px, 4vw, 56px) 118px;
}

.application-topbar {
  position: sticky;
  top: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(5, 10, 24, 0.92);
  border-bottom: 1px solid rgba(225, 211, 195, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.alumni-registration-page .application-topbar {
  grid-template-columns: minmax(0, 1fr);
}

.application-brand,
.application-draft-btn,
.application-close,
.application-step,
.application-submit-btn {
  font-family: var(--brand-font);
  font-weight: 300;
  cursor: pointer;
}

.application-brand {
  width: 74px;
  border: 0;
  background: transparent;
  padding: 0;
}

.application-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.application-draft-btn,
.application-close {
  justify-self: end;
  border: 1px solid rgba(225, 211, 195, 0.18);
  border-radius: 999px;
  background: rgba(225, 211, 195, 0.055);
  color: rgba(225, 211, 195, 0.82);
  padding: 9px 16px;
  font-size: 12px;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.application-draft-btn {
  background: rgba(225, 211, 195, 0.11);
}

.application-draft-btn:disabled {
  cursor: wait;
  opacity: 0.62;
}

.application-draft-btn:hover,
.application-draft-btn:focus-visible,
.application-close:hover,
.application-close:focus-visible {
  border-color: rgba(225, 211, 195, 0.36);
  background: rgba(225, 211, 195, 0.09);
  color: #fff;
}

.application-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding-top: var(--section-nav-safety-space);
}

.application-step {
  position: relative;
  z-index: 2;
  isolation: isolate;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  min-height: 52px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: rgba(225, 211, 195, 0.58);
  padding: 0 10px;
  text-align: left;
  cursor: pointer;
  appearance: none;
  overflow: visible;
  pointer-events: auto;
  touch-action: manipulation;
  transition: color 0.2s ease;
}

.application-step::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: transparent;
  transition: background 0.2s ease;
}

.application-step span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(225, 211, 195, 0.07);
  color: rgba(225, 211, 195, 0.62);
  font-size: 11px;
}

.application-step strong {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 300;
  pointer-events: none;
}

.application-step:hover,
.application-step:focus-visible,
.application-step.is-active {
  color: #fff;
}

.application-step:hover::before,
.application-step:focus-visible::before,
.application-step.is-active::before {
  background: rgba(225, 211, 195, 0.09);
}

.application-step.is-active span {
  background: #E1D3C3;
  color: #061023;
}

.application-island-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.application-island-backdrop[hidden] {
  display: none;
}

.application-dynamic-island {
  position: fixed;
  left: 50%;
  bottom: 32px;
  z-index: 999;
  width: 260px;
  height: 56px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background: #02040b;
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  transform: translateX(-50%);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1), height 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-radius 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s ease;
}

.application-dynamic-island[data-expanded="true"] {
  width: min(360px, calc(100vw - 32px));
  height: min(460px, calc(100dvh - 72px));
  border-radius: 28px;
}

.application-island-collapsed {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0 20px;
  font-family: var(--brand-font);
  cursor: pointer;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.application-dynamic-island:not([data-expanded="true"]):hover {
  background: #0b0e17;
}

.application-dynamic-island[data-expanded="true"] .application-island-collapsed {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(10px) scale(0.94);
}

.application-island-status,
.application-island-progress {
  display: flex;
  align-items: center;
  min-width: 0;
}

.application-island-status {
  gap: 12px;
}

.application-island-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.1);
  color: #34d399;
}

.application-island-icon svg {
  width: 15px;
  height: 15px;
  animation: applicationIslandPulse 1.6s ease-in-out infinite;
}

.application-island-status span:last-child {
  overflow: hidden;
  color: rgba(225, 231, 240, 0.86);
  font-size: 13px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.application-island-progress {
  flex: 0 0 auto;
  gap: 10px;
}

.application-island-progress span {
  color: rgba(161, 169, 182, 0.82);
  font-size: 10px;
  font-weight: 600;
}

.application-progress-ring {
  width: 24px;
  height: 24px;
  color: #34d399;
  transform: rotate(-90deg);
}

.application-progress-ring circle {
  fill: none;
  stroke-width: 2.5;
}

.application-progress-ring circle:first-child {
  stroke: rgba(255, 255, 255, 0.14);
}

.application-progress-ring circle:last-child {
  stroke: currentColor;
  stroke-linecap: round;
  stroke-dasharray: 62.83;
  stroke-dashoffset: var(--application-progress-offset, 62.83);
  transition: stroke-dashoffset 0.3s ease;
}

.application-island-panel {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.35s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.application-dynamic-island[data-expanded="true"] .application-island-panel {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}

.application-island-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
}

.application-island-panel-header div {
  display: grid;
  gap: 5px;
}

.application-island-panel-header span {
  color: rgba(161, 169, 182, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.application-island-panel-header strong {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.application-island-close {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(212, 218, 228, 0.82);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.application-island-close:hover,
.application-island-close:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: none;
}

.application-island-close svg {
  width: 16px;
  height: 16px;
}

.application-island-steps {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 8px;
  margin-top: 16px;
  overflow-y: auto;
  padding-right: 2px;
}

@keyframes applicationIslandPulse {
  0%, 100% {
    opacity: 0.72;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.application-main {
  min-width: 0;
}

.application-hero {
  max-width: 830px;
  margin: 10px 0 24px;
}

.application-hero p {
  margin: 0 0 12px;
  color: rgba(125, 186, 233, 0.92);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.application-hero h1 {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 58px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: 0;
}

.coaching-form {
  display: grid;
  gap: 14px;
}

.application-panel {
  scroll-margin-top: 112px;
  position: relative;
  z-index: 1;
  overflow: visible;
  border: 1px solid rgba(225, 211, 195, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(125, 186, 233, 0.07), transparent 120px),
    linear-gradient(165deg, rgba(12, 24, 52, 0.88), rgba(7, 14, 31, 0.94));
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.application-panel:focus-within {
  z-index: 20;
}

.application-panel-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.application-panel-heading span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(225, 211, 195, 0.08);
  color: rgba(225, 211, 195, 0.68);
  font-size: 12px;
}

.application-panel-heading h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 300;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
}

.application-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.application-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.application-gpa-row {
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(180px, 1fr);
  align-items: start;
  gap: 14px;
}

.application-language-row {
  display: grid;
  grid-template-columns: minmax(220px, 32%);
  align-items: start;
  gap: 14px;
}

.application-grid-followup {
  margin-top: 14px;
}

.sat-score-grid.is-hidden,
.language-score-grid.is-hidden {
  display: none;
}

.application-stack {
  display: grid;
  gap: 18px;
}

.application-panel label {
  display: grid;
  gap: 8px;
  color: rgba(225, 211, 195, 0.78);
  font-size: 13px;
}

.application-panel label > span:first-child {
  color: #fffaf4;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42;
}

.field-help {
  color: rgba(225, 211, 195, 0.5);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.45;
}

.field-word-count {
  justify-self: end;
  color: rgba(125, 186, 233, 0.78);
}

.field-help-spacer {
  visibility: hidden;
}

.application-panel :is(input, select, textarea) {
  width: 100%;
  border: 1px solid rgba(225, 211, 195, 0.13);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.045);
  color: #f8f3eb;
  font-family: var(--brand-font);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.application-panel :is(input, select) {
  height: 46px;
  min-height: 46px;
  padding: 12px 13px;
}

.application-panel input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.application-panel input[type="number"]::-webkit-outer-spin-button,
.application-panel input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.number-control {
  position: relative;
  display: block;
}

.number-control input {
  padding-right: 50px;
}

.number-stepper {
  position: absolute;
  top: 6px;
  right: 7px;
  bottom: 6px;
  display: grid;
  width: 32px;
  overflow: hidden;
  border: 1px solid rgba(225, 211, 195, 0.13);
  border-radius: 9px;
  background: rgba(225, 211, 195, 0.055);
}

.number-stepper button {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 0;
  border: 0;
  background: transparent;
  color: rgba(225, 211, 195, 0.74);
  font-family: var(--brand-font);
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease;
}

.number-stepper button + button {
  border-top: 1px solid rgba(225, 211, 195, 0.1);
}

.number-stepper button:hover {
  background: rgba(225, 211, 195, 0.1);
  color: #fff;
}

.number-control.is-text-mode input {
  padding-right: 13px;
}

.number-control.is-text-mode .number-stepper {
  display: none;
}

.institution-combobox {
  position: relative;
}

.alumni-lookup-combobox {
  width: 100%;
}

.institution-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 40;
  display: none;
  max-height: 260px;
  overflow-y: auto;
  border: 1px solid rgba(225, 211, 195, 0.14);
  border-radius: 14px;
  background: rgba(7, 14, 31, 0.98);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 6px;
}

.institution-results.is-open {
  display: grid;
  gap: 4px;
}

.institution-option,
.institution-empty {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(225, 211, 195, 0.78);
  font-family: var(--brand-font);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.35;
  padding: 10px 11px;
  text-align: left;
}

.institution-option {
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.institution-option span {
  float: right;
  color: rgba(125, 186, 233, 0.72);
  font-size: 11px;
}

.institution-option strong,
.institution-option small {
  display: block;
  min-width: 0;
  font-weight: 300;
}

.institution-option strong {
  color: rgba(255, 250, 244, 0.9);
  overflow-wrap: anywhere;
}

.institution-option small {
  margin-top: 3px;
  color: rgba(125, 186, 233, 0.72);
  font-size: 11px;
}

.alumni-add-school-option {
  color: #d6ecff;
}

.institution-option:hover,
.institution-option:focus-visible,
.institution-option.is-active {
  background: rgba(225, 211, 195, 0.09);
  color: #fff;
}

.institution-empty {
  color: rgba(225, 211, 195, 0.48);
}

.application-panel select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(225, 211, 195, 0.78) 50%),
    linear-gradient(135deg, rgba(225, 211, 195, 0.78) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

.application-panel textarea {
  min-height: 110px;
  padding: 13px;
  resize: vertical;
  line-height: 1.55;
}

.application-panel :is(input, select, textarea):focus {
  border-color: rgba(125, 186, 233, 0.55);
  background-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 4px rgba(44, 154, 222, 0.1);
}

.application-panel :is(input, textarea)::placeholder {
  color: rgba(225, 211, 195, 0.34);
}

.application-panel select {
  color-scheme: dark;
}

.application-panel select:required:invalid {
  color: rgba(188, 189, 191, 0.58);
}

.application-panel select option {
  color: #f8f3eb;
  background: #071126;
}

.application-panel select option[value=""] {
  color: rgba(188, 189, 191, 0.68);
}

.alumni-topic-fieldset {
  display: grid;
  gap: 12px;
  min-width: 0;
  border: 1px solid rgba(225, 211, 195, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  padding: 14px;
}

.alumni-topic-fieldset legend {
  padding: 0 6px;
  color: rgba(225, 211, 195, 0.76);
  font-size: 13px;
  line-height: 1.35;
}

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

.application-panel .alumni-topic-option {
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  border: 1px solid rgba(225, 211, 195, 0.11);
  border-radius: 12px;
  background: rgba(5, 10, 24, 0.24);
  color: rgba(248, 243, 235, 0.78);
  padding: 10px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.application-panel .alumni-topic-option:has(input:checked) {
  border-color: rgba(125, 186, 233, 0.5);
  background: rgba(125, 186, 233, 0.13);
  color: #fff;
}

.application-panel .alumni-topic-option input {
  width: 16px;
  height: 16px;
  min-height: 16px;
  padding: 0;
  accent-color: #7dbae9;
}

.application-panel .alumni-topic-option span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.alumni-custom-topic-list {
  display: grid;
  gap: 10px;
}

.alumni-add-topic-btn {
  justify-self: start;
  border: 1px solid rgba(125, 186, 233, 0.34);
  border-radius: 999px;
  background: rgba(125, 186, 233, 0.1);
  color: rgba(239, 248, 255, 0.9);
  padding: 9px 13px;
  font-family: var(--brand-font);
  font-size: 12px;
  font-weight: 300;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.alumni-add-topic-btn:hover,
.alumni-add-topic-btn:focus-visible {
  border-color: rgba(125, 186, 233, 0.62);
  background: rgba(125, 186, 233, 0.18);
  transform: translateY(-1px);
  outline: none;
}

.application-wide-field {
  max-width: 460px;
}

.application-agreement {
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 14px;
  max-width: 860px;
  min-height: 54px;
  border: 1px solid rgba(225, 211, 195, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(125, 186, 233, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(5, 10, 24, 0.2);
  padding: 13px 14px;
  line-height: 1.55;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.alumni-registration-form .application-agreement + .application-agreement {
  margin-top: 14px;
}

.application-agreement:has(input:checked) {
  border-color: rgba(125, 186, 233, 0.46);
  background:
    linear-gradient(135deg, rgba(125, 186, 233, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(5, 10, 24, 0.24);
  box-shadow: 0 0 0 4px rgba(44, 154, 222, 0.075);
}

.application-agreement input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  margin: 0;
  accent-color: #7dbae9;
}

.application-agreement span {
  color: rgba(248, 243, 235, 0.78);
}

.application-agreement:has(input:checked) span {
  color: #fff;
}

.application-social-limits {
  max-width: 760px;
  margin: 6px 0 16px 32px;
}

.application-social-limits.is-hidden {
  display: none;
}

.application-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
}

.application-submit-row p {
  margin: 0;
  min-height: 20px;
  color: rgba(125, 186, 233, 0.92);
  font-size: 13px;
}

.application-submit-btn {
  flex: 0 0 auto;
  min-height: 46px;
  border: 1px solid rgba(225, 211, 195, 0.76);
  border-radius: 999px;
  background: #E1D3C3;
  color: #071126;
  padding: 12px 22px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.application-submit-btn:not(:disabled):hover,
.application-submit-btn:not(:disabled):focus-visible {
  filter: brightness(1.05);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.application-submit-btn:not(:disabled):active {
  transform: translateY(1px);
}

.application-submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

@media (max-width: 1180px) {
  .alumni-registration-form {
    grid-template-columns: 1fr;
  }

  .alumni-registration-form .application-panel:nth-child(2),
  .alumni-registration-form .application-panel:nth-child(3),
  .alumni-registration-form .application-panel:nth-child(4) {
    grid-column: 1;
    grid-row: auto;
  }

  .alumni-manage-form {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.62fr);
    padding-bottom: 112px;
  }

  .alumni-manage-form > .admin-card-actions {
    position: fixed;
    right: clamp(18px, 4vw, 48px);
    bottom: 16px;
    left: clamp(18px, 4vw, 48px);
  }

  .alumni-manage-grid {
    grid-template-columns: 1fr;
  }

  .alumni-photo-upload {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .alumni-photo-preview {
    width: 64px;
  }
}

@media (max-width: 980px) {
  .alumni-manage-form {
    grid-template-columns: 1fr;
  }

  .alumni-manage-grid,
  .alumni-manage-wide,
  .alumni-profile-editor,
  .alumni-slot-builder,
  .alumni-manage-form > .admin-card-actions {
    grid-column: 1;
  }

  .alumni-slot-builder {
    position: static;
    grid-row: auto;
    max-height: none;
  }
}

@media (max-width: 860px) {
  .alumni-manage-form {
    grid-template-columns: 1fr;
  }

  .alumni-manage-grid,
  .alumni-manage-wide,
  .alumni-profile-editor,
  .alumni-slot-builder {
    grid-column: 1;
  }

  .alumni-slot-builder {
    position: static;
    grid-row: auto;
    max-height: none;
  }

  .alumni-list-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .alumni-sort-controls {
    justify-content: flex-start;
  }

  .coaching-feature-carousel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .coaching-feature-list {
    display: flex;
    align-content: initial;
    overflow-x: auto;
    padding: 24px;
    scrollbar-width: none;
  }

  .coaching-feature-list::-webkit-scrollbar {
    display: none;
  }

  .coaching-feature-list::before,
  .coaching-feature-list::after {
    display: none;
  }

  .coaching-feature-chip {
    flex: 0 0 auto;
  }

  .coaching-feature-chip.is-active {
    transform: translateY(-2px);
  }

  .coaching-feature-stage {
    min-height: 520px;
    border-top: 1px solid rgba(225, 211, 195, 0.08);
    border-left: 0;
  }

  .coaching-testimonials {
    margin-top: 44px;
    padding-inline: 0;
  }

  .coaching-info-topbar {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .application-topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .application-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .coaching-testimonials-header {
    text-align: left;
  }

  .coaching-testimonial-slide {
    justify-items: start;
    padding: 26px 20px;
    text-align: left;
  }

  .coaching-testimonial-slide blockquote {
    font-size: 20px;
  }

  .coaching-testimonial-slide blockquote:lang(mn) {
    font-family: "Times New Roman", Times, serif !important;
    font-size: 19px;
  }

  .coaching-testimonial-person {
    justify-content: flex-start;
  }

  .coaching-testimonial-fade {
    display: none;
  }

  .alumni-manage-content .modal-header {
    padding: 16px;
  }

  .alumni-manage-form {
    padding: 18px 14px 26px;
    padding-bottom: 118px;
  }

  .alumni-manage-form > .admin-card-actions {
    right: 14px;
    bottom: 12px;
    left: 14px;
  }

  .alumni-manage-form > .admin-card-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .alumni-photo-upload {
    grid-template-columns: 1fr;
  }

  .alumni-photo-upload-control {
    grid-template-columns: 1fr;
  }

  .alumni-photo-preview {
    width: min(100%, 120px);
  }

  .admin-toolbar,
  .profile-actions {
    flex-wrap: wrap;
  }

  .admin-refresh-btn {
    margin-left: 0;
  }

  .admin-card-top,
  .admin-card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-card-grid {
    grid-template-columns: 1fr;
  }

  .admin-application-fields {
    grid-template-columns: 1fr;
  }

  .alumni-manage-grid,
  .alumni-slot-controls,
  .alumni-kv-row {
    grid-template-columns: 1fr;
  }

  .alumni-kv-row button {
    width: 100%;
    min-height: 36px;
  }

  .booking-alumni-insights {
    grid-template-columns: 1fr;
  }

  .booking-main-view {
    max-height: 88dvh;
  }

  .booking-schedule {
    max-height: min(30dvh, 240px);
  }

  .password-match-assist {
    align-items: stretch;
  }

  .password-match-preview,
  .password-match-status {
    flex-basis: 100%;
  }

  .password-match-status {
    text-align: left;
    white-space: normal;
  }

  .personal-program-options {
    right: 50%;
    min-width: min(78vw, 300px);
    transform-origin: top center;
    translate: 50% 0;
  }

  .personal-program-menu.is-open .personal-program-options,
  .personal-program-menu:focus-within .personal-program-options,
  .alumni-program-menu.is-open .personal-program-options,
  .alumni-program-menu:focus-within .personal-program-options {
    transform: translateY(0) scale(1);
  }

  .coaching-info-shell {
    padding: 0 14px 34px;
    scroll-padding-top: calc(68px + var(--section-nav-safety-space-mobile));
  }

  .coaching-info-topbar {
    grid-template-columns: 1fr;
    padding: 12px 14px;
  }

  .coaching-info-hero {
    margin-top: var(--section-nav-safety-space-mobile);
    text-align: left;
  }

  .coaching-info-hero h1 {
    font-size: 34px;
  }

  .coaching-feature-carousel {
    border-radius: 24px;
  }

  .coaching-feature-list {
    padding: 18px;
  }

  .coaching-feature-chip {
    padding: 12px 16px;
    font-size: 11px;
  }

  .coaching-feature-stage {
    min-height: 450px;
    padding: 22px;
  }

  .coaching-feature-card {
    width: min(330px, calc(100% - 28px));
    border-width: 5px;
    border-radius: 28px;
  }

  .coaching-feature-card.is-prev {
    transform: translateX(-48px) scale(0.86) rotate(-3deg);
  }

  .coaching-feature-card.is-next {
    transform: translateX(48px) scale(0.86) rotate(3deg);
  }

  .application-shell {
    padding: 18px 14px 34px;
    scroll-padding-top: calc(96px + var(--section-nav-safety-space-mobile));
  }

  .application-topbar {
    grid-template-columns: 1fr auto auto;
    padding: 12px 14px;
  }

  .application-layout {
    padding-top: var(--section-nav-safety-space-mobile);
  }

  .application-brand {
    width: 64px;
  }

  .application-hero h1 {
    font-size: 32px;
  }

  .application-grid,
  .application-grid-two,
  .application-grid-three,
  .alumni-topic-grid,
  .application-gpa-row,
  .application-language-row {
    grid-template-columns: 1fr;
  }

  .application-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .application-submit-btn {
    width: 100%;
  }
}

.alumni-calendar-content {
  width: min(94vw, 720px);
  max-width: 720px;
  max-height: 90vh;
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
}

.booking-card {
  display: flex;
  flex-direction: column;
  max-height: 88vh;
  background: rgba(8, 15, 32, 0.96);
  border: 1px solid rgba(225, 211, 195, 0.1);
}

.booking-main-view {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 88vh;
  min-height: 0;
}

.booking-profile,
.booking-alumni-insights,
.booking-week-nav,
.booking-schedule,
.booking-actions,
.booking-confirm-view {
  padding-left: 26px;
  padding-right: 26px;
}

.booking-profile {
  display: flex;
  gap: 22px;
  align-items: center;
  padding-top: 26px;
  padding-bottom: 24px;
}

.booking-profile-copy {
  min-width: 0;
  flex: 1;
}

.booking-avatar {
  position: relative;
  overflow: hidden;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: radial-gradient(circle at 38% 30%, rgba(255, 255, 255, 0.42), rgba(125, 186, 233, 0.24) 48%, rgba(225, 211, 195, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.booking-avatar img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.booking-profile-copy h2,
.booking-profile-copy p {
  margin: 0;
}

.booking-profile-copy h2 {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.15;
}

.booking-profile-copy p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  font-weight: 300;
  color: rgba(225, 211, 195, 0.74);
}

.booking-profile-copy p strong,
.booking-confirm-profile p strong {
  color: rgba(255, 250, 244, 0.94);
  font-weight: 500;
}

.booking-stat-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border: 1px solid rgba(125, 186, 233, 0.24);
  border-radius: 999px;
  background: rgba(125, 186, 233, 0.1);
  color: rgba(214, 236, 255, 0.92);
  padding: 4px 9px;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}

.booking-school-logo {
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  display: grid;
  place-items: center;
  margin-left: auto;
  border: 1px solid rgba(225, 211, 195, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.booking-school-logo:empty {
  display: none;
}

.booking-school-logo img {
  display: block;
  max-width: 78%;
  max-height: 78%;
  object-fit: contain;
}

.booking-alumni-insights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 0;
  padding-bottom: 22px;
}

.booking-alumni-insights:empty {
  display: none;
}

.booking-insight-group {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(225, 211, 195, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(125, 186, 233, 0.085), rgba(255, 255, 255, 0.026)),
    rgba(255, 255, 255, 0.03);
  padding: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.booking-insight-group::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(125, 186, 233, 0.95), rgba(225, 211, 195, 0.42));
  opacity: 0.78;
}

.booking-insight-group h4 {
  position: relative;
  margin: 0 0 12px;
  color: rgba(214, 236, 255, 0.9);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-insight-list {
  position: relative;
  display: grid;
  gap: 8px;
}

.booking-insight-item {
  display: grid;
  grid-template-columns: minmax(62px, 0.45fr) minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  background: rgba(5, 10, 24, 0.24);
  padding: 8px 10px;
}

.booking-insight-item-solo {
  grid-template-columns: minmax(0, 1fr);
}

.booking-insight-item strong {
  color: rgba(225, 211, 195, 0.62);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-insight-item em {
  min-width: 0;
  color: rgba(255, 250, 244, 0.94);
  font-size: 13px;
  font-style: normal;
  font-weight: 350;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.booking-separator {
  height: 1px;
  margin: 0 26px;
  background: rgba(255, 255, 255, 0.08);
}

.booking-week-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 16px;
}

.booking-week-nav h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
}

.booking-week-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.booking-week-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.04);
}

.booking-schedule {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 1 auto;
  max-height: min(34vh, 320px);
  overflow-y: auto;
  padding-bottom: 22px;
  overscroll-behavior: contain;
}

.booking-day {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.booking-empty-state {
  display: grid;
  gap: 6px;
  border: 1px dashed rgba(225, 211, 195, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.026);
  padding: 22px;
  text-align: center;
}

.booking-empty-state strong {
  color: rgba(255, 250, 244, 0.92);
  font-size: 15px;
  font-weight: 350;
}

.booking-empty-state span {
  color: rgba(225, 211, 195, 0.62);
  font-size: 13px;
  font-weight: 300;
}

.booking-day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.booking-day-header h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  color: #f8f3eb;
}

.booking-day-header span {
  font-size: 13px;
  font-weight: 300;
  color: rgba(225, 211, 195, 0.7);
}

.booking-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.calendar-slot {
  min-width: 86px;
  border: 1px solid rgba(225, 211, 195, 0.16);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.035);
  color: #f8f3eb;
  font-family: var(--brand-font);
  font-size: 13px;
  font-weight: 300;
  padding: 8px 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.calendar-slot:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(225, 211, 195, 0.34);
  background: rgba(225, 211, 195, 0.08);
}

.calendar-slot.active {
  background: rgba(44, 154, 222, 0.2);
  border-color: rgba(44, 154, 222, 0.62);
  color: #d6ecff;
}

.calendar-slot.is-disabled,
.calendar-slot:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.booking-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
  padding-top: 18px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.alumni-btn {
  flex: 1;
  border-radius: 9px;
  padding: 11px 14px;
  font-family: var(--brand-font);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.alumni-btn:hover {
  transform: scale(1.02);
}

.alumni-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.alumni-btn-primary {
  border: 1px solid rgba(44, 154, 222, 0.44);
  background: rgba(44, 154, 222, 0.22);
  color: #f8f3eb;
}

.booking-confirm-view {
  display: none;
  flex-direction: column;
  gap: 18px;
  min-height: 520px;
  padding-top: 26px;
  padding-bottom: 26px;
  background: rgba(8, 15, 32, 0.98);
}

.booking-card.is-confirming .booking-main-view {
  display: none;
}

.booking-card.is-confirming .booking-confirm-view {
  display: flex;
}

.booking-confirm-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.booking-back-btn {
  border: 0;
  background: transparent;
  color: rgba(225, 211, 195, 0.74);
  font-family: var(--brand-font);
  font-size: 13px;
  font-weight: 300;
  cursor: pointer;
}

.booking-confirm-top h3 {
  margin: 0;
  text-align: center;
  font-size: 19px;
  font-weight: 300;
}

.booking-confirm-profile {
  display: flex;
  gap: 14px;
  align-items: center;
  border-radius: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.booking-confirm-profile h4,
.booking-confirm-profile p {
  margin: 0;
}

.booking-confirm-profile h4 {
  font-size: 15px;
  font-weight: 300;
}

.booking-confirm-profile p {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(225, 211, 195, 0.7);
}

.booking-avatar-small {
  width: 48px;
  height: 48px;
}

.booking-school-logo-small {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  border-radius: 10px;
}

.booking-summary,
.booking-duration {
  border: 1px solid rgba(44, 154, 222, 0.22);
  border-radius: 10px;
  padding: 16px;
  display: grid;
  gap: 6px;
  background: rgba(44, 154, 222, 0.08);
}

.booking-summary span,
.booking-duration span {
  font-size: 12px;
  font-weight: 300;
  color: rgba(225, 211, 195, 0.72);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-summary strong,
.booking-summary b,
.booking-duration strong {
  font-size: 18px;
  font-weight: 300;
  color: #f8f3eb;
}

.booking-summary b {
  color: #7dbae9;
}

.booking-policy-warnings {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(225, 211, 195, 0.42);
  border-radius: 10px;
  padding: 15px 16px;
  background:
    linear-gradient(135deg, rgba(225, 211, 195, 0.16), rgba(44, 154, 222, 0.08)),
    rgba(6, 16, 34, 0.72);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.booking-policy-warnings strong {
  color: #fff7ed;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-policy-warnings p {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 247, 237, 0.9);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.booking-policy-warnings p::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f8d48f;
  box-shadow: 0 0 12px rgba(248, 212, 143, 0.72);
}

.booking-policy-agree {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 11px;
  align-items: center;
  margin-top: 2px;
  border: 1px solid rgba(248, 212, 143, 0.38);
  border-radius: 9px;
  padding: 11px 12px;
  background: rgba(248, 212, 143, 0.09);
  color: #fff7ed;
  cursor: pointer;
}

.booking-policy-agree::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 12px;
  border: 1px solid rgba(248, 212, 143, 0.28);
  opacity: 0;
  animation: bookingAgreePulse 1.8s ease-in-out infinite;
  pointer-events: none;
}

.booking-policy-agree input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-policy-agree span {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 247, 237, 0.55);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.14);
}

.booking-policy-agree span::after {
  content: "";
  display: block;
  width: 9px;
  height: 5px;
  margin: 5px auto 0;
  border-left: 2px solid #061022;
  border-bottom: 2px solid #061022;
  opacity: 0;
  transform: rotate(-45deg) scale(0.8);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.booking-policy-agree input:checked + span {
  border-color: #f8d48f;
  background: #f8d48f;
}

.booking-policy-agree input:checked + span::after {
  opacity: 1;
  transform: rotate(-45deg) scale(1);
}

.booking-policy-agree input:checked ~ b {
  color: #fff;
}

.booking-policy-agree:has(input:checked)::before {
  animation: none;
}

.booking-policy-agree b {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}

.booking-meeting-result {
  display: none;
  gap: 10px;
  border: 1px solid rgba(125, 186, 233, 0.26);
  border-radius: 10px;
  background: rgba(125, 186, 233, 0.09);
  padding: 13px 14px;
  color: rgba(239, 248, 255, 0.9);
  font-size: 12px;
  line-height: 1.5;
}

.booking-meeting-result.is-visible {
  display: grid;
}

.booking-meeting-result.is-error {
  border-color: rgba(255, 130, 130, 0.38);
  background: rgba(255, 96, 96, 0.1);
  color: #ffe0e0;
}

.booking-meeting-result a {
  width: fit-content;
  border: 1px solid rgba(125, 186, 233, 0.38);
  border-radius: 999px;
  color: #fff;
  padding: 7px 11px;
  text-decoration: none;
}

@keyframes bookingAgreePulse {
  0%,
  100% {
    opacity: 0;
    transform: scale(1);
  }

  45% {
    opacity: 1;
    transform: scale(1.025);
  }
}

.booking-confirm-btn {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: auto;
  border: 1px solid rgba(44, 154, 222, 0.42);
  border-radius: 10px;
  padding: 13px 16px;
  background: rgba(44, 154, 222, 0.24);
  color: #f8f3eb;
  font-family: var(--brand-font);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.booking-confirm-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}

.booking-confirm-btn:hover::before {
  transform: translateX(100%);
}

.alumni-btn:disabled,
.booking-confirm-btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.booking-confirm-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
