@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
		--bg: #ffffff; --surface: #ffffff; --text: #1d1d1f; --muted: #6e6e73; --line: rgba(0, 0, 0, 0.08); --blue: #063970; --blue-light: #0066cc; --blue-dark: #004f9e; --soft-blue: rgba(6, 57, 112, 0.08); --glass: rgba(255, 255, 255, 0.74); --shadow-soft: 0 20px 55px rgba(0, 0, 0, 0.08); --shadow-premium: 0 35px 90px rgba(0, 0, 0, 0.14); --radius-xl: 28px; --max-width: 1180px; --wide-width: 1560px;
	}
	
	* {
		box-sizing: border-box;
	}
	
	html,
	body {
		margin: 0; padding: 0; width: 100%; min-height: 100%; scroll-behavior: smooth; background: var(--bg); color: var(--text); font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
	}
	
	a {
		color: inherit; text-decoration: none;
	}
	
	button {
		font-family: inherit;
	}
	
	img {
		display: block; max-width: 100%;
	}
	
	.page {
		width: 100vw; min-height: 100vh; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); position: relative; isolation: isolate; overflow: hidden; background: #ffffff;
	}
	
	.page::before {
		display: none;
	}
	
	.page > * {
		position: relative; z-index: 1;
	}
	
	.container {
		width: min(92%, var(--max-width)); margin: 0 auto;
	}
	
	.wide-container {
		width: min(94%, var(--wide-width)); margin: 0 auto;
	}
	
	.shortcut-hub .wide-container {
		width: min(94%, var(--wide-width)); margin: 0 auto;
	}
	
	.hero {
		min-height: 88svh; display: flex; align-items: center; justify-content: center; padding: 64px 0 50px; position: relative; overflow: hidden; background: #ffffff;
	}
	
	.hero::before {
		display: none;
	}
	
	.hero-card {
		width: 100%; min-height: 560px; display: grid; grid-template-columns: minmax(0, 0.94fr) minmax(390px, 1.06fr); gap: clamp(26px, 4vw, 56px); align-items: center; padding: clamp(30px, 4.6vw, 62px); border-radius: 42px; position: relative; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.72); background: linear-gradient(120deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74)), radial-gradient(circle at 12% 18%, rgba(0, 102, 204, 0.15), transparent 30%), radial-gradient(circle at 84% 84%, rgba(6, 57, 112, 0.14), transparent 34%); backdrop-filter: blur(26px); -webkit-backdrop-filter: blur(26px); box-shadow: var(--shadow-premium);
	}
	
	.hero-card::before {
		content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6, 57, 112, 0.055) 0 1px, transparent 1px 24px), linear-gradient(120deg, rgba(255, 255, 255, 0.45), transparent 34%); pointer-events: none;
	}
	
	.hero-card::after {
		content: ""; position: absolute; inset: 18px; border-radius: 30px; border: 1px solid rgba(6, 57, 112, 0.10); pointer-events: none;
	}
	
	.hero-left,
	.hero-right {
		position: relative; z-index: 2;
	}
	
	.kicker {
		display: inline-flex; align-items: center; margin-bottom: 18px; padding: 8px 13px; border-radius: 999px; background: var(--soft-blue); color: var(--blue); font-size: 12px; line-height: 1; font-weight: 800; letter-spacing: 0.4px; text-transform: uppercase;
	}
	
	.hero h1 {
		margin: 0; color: var(--text); font-size: clamp(33px, 4.1vw, 58px); line-height: 1; letter-spacing: -2.8px; font-weight: 900;
	}
	
	.hero h1 span {
		color: var(--blue);
	}
	
	.hero-description {
		display: block; max-width: 760px; margin-top: 24px; color: #2b2b2f; font-size: clamp(14px, 1.08vw, 16px); line-height: 1.7; font-weight: 450; letter-spacing: -0.1px;
	}
	
	.hero-actions {
		display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px;
	}
	
	.btn {
		display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 18px; border-radius: 999px; background: var(--blue); color: #ffffff; font-size: 13px; font-weight: 750; box-shadow: 0 16px 36px rgba(6, 57, 112, 0.18); border: 1px solid transparent; cursor: pointer; transition: background 0.22s ease, transform 0.22s ease;
	}
	
	.btn:hover {
		transform: translateY(-2px); background: var(--blue-dark);
	}
	
	.btn.secondary {
		background: rgba(255, 255, 255, 0.78); color: var(--blue); border: 1px solid rgba(6, 57, 112, 0.13); box-shadow: 0 12px 26px rgba(0, 0, 0, 0.055);
	}
	
	.btn.secondary:hover {
		background: #ffffff;
	}
	
	.btn.disabled {
		opacity: 0.45; pointer-events: none; cursor: not-allowed;
	}
	
	.hero-panel {
		padding: 28px; border-radius: 30px; background: rgba(255, 255, 255, 0.74); border: 1px solid rgba(255, 255, 255, 0.86); box-shadow: 0 28px 75px rgba(0, 0, 0, 0.10); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
	}
	
	.hero-panel h2 {
		margin: 0 0 10px; font-size: 21px; line-height: 1.15; letter-spacing: -0.6px;
	}
	
	.hero-panel p {
		margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.65;
	}
	
	.hero-stats {
		display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 22px;
	}
	
	.stat {
		padding: 16px; border-radius: 20px; background: rgba(255, 255, 255, 0.9); border: 1px solid var(--line); color: var(--muted); font-size: 11.5px; line-height: 1.35; font-weight: 650;
	}
	
	.stat strong {
		display: block; color: var(--blue); font-size: 23px; line-height: 1; margin-bottom: 8px;
	}
	
	.flag-carousel {
		position: relative; min-height: 475px; padding: clamp(20px, 3vw, 28px); border-radius: 34px; overflow: hidden; background: linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.50)), radial-gradient(circle at 18% 10%, rgba(0, 102, 204, 0.18), transparent 32%), radial-gradient(circle at 82% 86%, rgba(6, 57, 112, 0.16), transparent 34%); border: 1px solid rgba(255, 255, 255, 0.86); box-shadow: 0 30px 78px rgba(0, 0, 0, 0.12); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
	}
	
	.flag-carousel::before {
		content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6, 57, 112, 0.055) 0 1px, transparent 1px 22px); pointer-events: none; opacity: 0.65;
	}
	
	.flag-carousel-top {
		position: relative; z-index: 5; display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px;
	}
	
	.flag-carousel-label {
		display: inline-flex; align-items: center; width: fit-content; padding: 8px 12px; border-radius: 999px; background: rgba(6, 57, 112, 0.10); color: var(--blue); font-size: 11.5px; line-height: 1; font-weight: 850; letter-spacing: 0.45px; text-transform: uppercase;
	}
	
	.flag-carousel-note {
		max-width: 235px; margin: 0; color: rgba(29, 29, 31, 0.68); font-size: 12px; line-height: 1.45; text-align: right; font-weight: 550;
	}
	
	.flag-stage {
		position: relative; z-index: 2; min-height: 345px; border-radius: 28px; overflow: hidden;
	}
	
	.flag-slide {
		position: absolute; inset: 0; display: grid; grid-template-rows: 1fr auto; gap: 16px; opacity: 0; pointer-events: none; transform: translateX(18px) scale(0.985); transition: opacity 0.32s ease, transform 0.32s ease;
	}
	
	.flag-slide.is-active {
		opacity: 1; pointer-events: auto; transform: translateX(0) scale(1);
	}
	
	.flag-frame {
		position: relative; min-height: 248px; display: flex; align-items: center; justify-content: center; padding: 0; border-radius: 28px; background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(246, 249, 255, 0.74)); border: 1px solid rgba(255, 255, 255, 0.88); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 20px 45px rgba(6, 57, 112, 0.08); overflow: hidden;
	}
	
	.flag-frame::before {
		content: ""; position: absolute; z-index: 0; width: 180px; height: 180px; border-radius: 50%; background: rgba(0, 102, 204, 0.075); filter: blur(18px); transform: translate(74%, -35%); pointer-events: none;
	}
	
	.flag-frame img {
		position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: none;
	}
	
	.flag-frame img.flag-zoom-out {
		object-fit: contain; padding: 12px; background: rgba(255, 255, 255, 0.88);
	}
	
	.flag-frame img.flag-upright {
		object-fit: contain; padding: 18px; background: rgba(255, 255, 255, 0.88); transform: rotate(90deg) scale(0.92);
	}
	
	.department-logo-card {
		display: flex; align-items: center; justify-content: center; min-height: 320px; padding: 24px;
	}
	
	.department-logo {
		width: min(100%, 420px); max-height: 280px; height: auto; object-fit: contain; border-radius: 18px; background: #ffffff; padding: 14px; box-shadow: 0 16px 36px rgba(6, 57, 112, 0.08);
	}
	
	.flag-placeholder {
		position: relative; z-index: 2; width: min(100%, 380px); height: 215px; display: none; align-items: center; justify-content: center; border-radius: 22px; background: linear-gradient(135deg, rgba(6, 57, 112, 0.92), rgba(0, 102, 204, 0.72)); color: rgba(255, 255, 255, 0.94); text-align: center; font-size: 13px; font-weight: 850; letter-spacing: 0.8px; text-transform: uppercase; box-shadow: 0 20px 42px rgba(6, 57, 112, 0.20);
	}
	
	.flag-placeholder small {
		display: block; margin-top: 7px; color: rgba(255, 255, 255, 0.74); font-size: 10.5px; font-weight: 700; letter-spacing: 0.35px;
	}
	
	.flag-name-box {
		position: relative; z-index: 4; display: flex; align-items: center; gap: 13px; padding: 16px 18px; border-radius: 24px; background: rgba(255, 255, 255, 0.72); border: 1px solid rgba(255, 255, 255, 0.86); box-shadow: 0 18px 42px rgba(0, 0, 0, 0.09); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
	}
	
	.flag-number {
		flex: 0 0 auto; width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 16px; background: var(--blue); color: #ffffff; font-size: 12px; font-weight: 900; box-shadow: 0 13px 26px rgba(6, 57, 112, 0.18);
	}
	
	.flag-name-box h2 {
		margin: 0; color: var(--text); font-size: clamp(17px, 1.65vw, 24px); line-height: 1.16; letter-spacing: -0.65px; font-weight: 850;
	}
	
	.flag-name-box p {
		margin: 3px 0 0; color: var(--blue); font-size: 11.5px; line-height: 1.2; font-weight: 800; letter-spacing: 0.35px; text-transform: uppercase;
	}
	
	.flag-name-link {
		display: block; transition: transform 0.22s ease;
	}
	
	.flag-name-link:hover {
		transform: translateY(-1px);
	}
	
	.flag-name-link:hover h2 {
		color: var(--blue);
	}
	
	.flag-control {
		position: absolute; top: 52%; transform: translateY(-50%); z-index: 8; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.55); background: rgba(6, 57, 112, 0.74); color: #ffffff; font-size: 22px; line-height: 1; cursor: pointer; box-shadow: 0 16px 34px rgba(6, 57, 112, 0.20); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); transition: transform 0.22s ease, background 0.22s ease;
	}
	
	.flag-control:hover {
		transform: translateY(-50%) scale(1.06); background: var(--blue);
	}
	
	.flag-control.prev {
		left: 18px;
	}
	
	.flag-control.next {
		right: 18px;
	}
	
	.flag-dots {
		position: relative; z-index: 7; display: flex; justify-content: center; gap: 8px; margin-top: 18px;
	}
	
	.flag-dot {
		width: 8px; height: 8px; border-radius: 999px; border: 0; padding: 0; background: rgba(6, 57, 112, 0.22); cursor: pointer; transition: width 0.22s ease, background 0.22s ease;
	}
	
	.flag-dot.is-active {
		width: 24px; background: var(--blue);
	}
	
	.section {
		padding: 78px 0;
	}
	
	.section-heading {
		max-width: 780px; margin: 0 auto 34px; text-align: center;
	}
	
	.section-kicker {
		margin-bottom: 8px; color: var(--blue-light); font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px;
	}
	
	.section-heading h2 {
		margin: 0; font-size: clamp(25px, 2.8vw, 38px); line-height: 1.1; letter-spacing: -1.3px; font-weight: 800;
	}
	
	.section-heading p {
		margin: 12px 0 0; color: var(--muted); font-size: 14px; line-height: 1.6;
	}
	
	.glass-card {
		border-radius: var(--radius-xl); border: 1px solid rgba(255, 255, 255, 0.76); background: rgba(255, 255, 255, 0.78); box-shadow: var(--shadow-soft); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); overflow: hidden;
	}
	
	.bulletin-layout {
		position: relative;
	}
	
	.glass-card.bulletin-carousel-wrap {
		position: relative; overflow: visible; padding: 0; border-radius: 36px; background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%); border: 1px solid rgba(0, 0, 0, 0.055); box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06); backdrop-filter: none; -webkit-backdrop-filter: none;
	}
	
	.bulletin-track {
		display: flex; gap: 22px; overflow-x: auto; overflow-y: visible; scroll-snap-type: x mandatory; scroll-behavior: smooth; scroll-padding-left: clamp(18px, 3vw, 30px); padding: clamp(18px, 3vw, 30px); scrollbar-width: none;
	}
	
	.bulletin-track::-webkit-scrollbar {
		display: none;
	}
	
	.notice-card {
		flex: 0 0 min(92%, 780px); min-height: 520px; display: grid; grid-template-columns: minmax(260px, 0.9fr) minmax(250px, 0.72fr); align-items: stretch; scroll-snap-align: start; padding: 14px; border-radius: 34px; background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.055); box-shadow: 0 8px 22px rgba(0, 0, 0, 0.055), 0 28px 66px rgba(0, 0, 0, 0.075); overflow: hidden; transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
	}
	
	.notice-card:hover {
		transform: translateY(-6px); border-color: rgba(0, 102, 204, 0.18); box-shadow: 0 14px 32px rgba(0, 0, 0, 0.075), 0 38px 86px rgba(0, 0, 0, 0.11);
	}

	/* Phase 2 notice only: keep the poster width unchanged and give the text side about 50% more room. */
	@media (min-width: 641px) {
		.notice-card.phase2-notice-card {
			flex-basis: min(96%, 950px);
			grid-template-columns: minmax(260px, 418px) minmax(375px, 1fr);
		}

		.notice-card.phase2-notice-card h3,
		.notice-card.phase2-notice-card p {
			max-width: 100%;
		}
	}
	
	.notice-images {
		width: 100%; min-height: 492px; display: flex; align-items: center; justify-content: center; overflow: hidden; border-radius: 28px; background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%); border: 1px solid rgba(0, 0, 0, 0.045); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
	}
	
	.notice-images.notice-dual {
		display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px;
	}
	
	.notice-images img {
		width: 100%; height: 100%; min-height: 492px; object-fit: contain; object-position: center; background: #ffffff; border-radius: 24px;
	}
	
	.notice-copy {
		display: flex; flex-direction: column; justify-content: space-between; gap: 18px; padding: clamp(26px, 3.4vw, 42px); color: var(--text);
	}
	
	.notice-label {
		display: inline-flex; width: fit-content; margin-bottom: 14px; color: var(--blue-light); font-size: 13px; line-height: 1; font-weight: 700; letter-spacing: -0.01em;
	}
	
	.notice-card h3 {
		max-width: 420px; margin: 0; color: var(--text); font-size: clamp(21px, 1.82vw, 29px); line-height: 1.12; letter-spacing: -0.042em; font-weight: 720;
	}
	
	.notice-card p {
		max-width: 390px; margin: 14px 0 0; color: var(--muted); font-size: 15px; line-height: 1.5; letter-spacing: -0.018em; font-weight: 500;
	}
	
	.notice-link {
		display: inline-flex; align-items: center; justify-content: center; width: fit-content; min-height: 42px; padding: 0 17px; border-radius: 999px; background: var(--blue-light); color: #ffffff; font-size: 13px; line-height: 1; font-weight: 700; letter-spacing: -0.01em; box-shadow: 0 14px 30px rgba(0, 102, 204, 0.18); transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
	}
	
	.notice-link:hover {
		transform: translateY(-2px); background: var(--blue-dark); box-shadow: 0 18px 38px rgba(0, 102, 204, 0.22);
	}
	
	.notice-actions {
		display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
	}
	
	.notice-link.notice-link-secondary {
		background: #ffffff; color: var(--blue-light); border: 1px solid rgba(0, 102, 204, 0.22); box-shadow: 0 12px 26px rgba(0, 102, 204, 0.08); cursor: pointer;
	}
	
	.notice-link.notice-link-secondary:hover {
		background: #ffffff; color: var(--blue-dark); border-color: rgba(0, 102, 204, 0.34); box-shadow: 0 16px 34px rgba(0, 102, 204, 0.12);
	}
	
	body.checkout-actions-lock {
		overflow: hidden;
	}
	
	.checkout-actions-modal {
		position: fixed; inset: 0; z-index: 2147483647; display: flex; align-items: center; justify-content: center; width: 100vw; height: 100vh; padding: clamp(16px, 3vw, 34px); background: rgba(10, 20, 38, 0.48); backdrop-filter: blur(22px) saturate(150%); -webkit-backdrop-filter: blur(22px) saturate(150%); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.24s ease, visibility 0.24s ease;
	}
	
	.checkout-actions-modal.is-active {
		opacity: 1; visibility: visible; pointer-events: auto;
	}
	
	.checkout-actions-panel {
		position: relative; width: min(760px, 100%); max-height: min(84vh, 760px); overflow-y: auto; padding: clamp(24px, 4vw, 36px); border-radius: 30px; background: rgba(255, 255, 255, 0.96); border: 1px solid rgba(255, 255, 255, 0.86); box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22); color: var(--text);
	}
	
	.checkout-actions-close {
		position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid rgba(6, 57, 112, 0.12); background: rgba(255, 255, 255, 0.82); color: var(--text); font-size: 22px; line-height: 1; cursor: pointer; box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
	}
	
	.checkout-actions-eyebrow {
		display: inline-flex; width: fit-content; margin-bottom: 12px; padding: 7px 11px; border-radius: 999px; background: var(--soft-blue); color: var(--blue); font-size: 11.5px; line-height: 1; font-weight: 850; letter-spacing: 0.35px; text-transform: uppercase;
	}
	
	.checkout-actions-panel h2 {
		max-width: 640px; margin: 0 48px 18px 0; color: var(--text); font-size: clamp(24px, 3vw, 34px); line-height: 1.08; letter-spacing: -0.045em; font-weight: 800;
	}
	
	.checkout-actions-panel p {
		margin: 13px 0 0; color: var(--muted); font-size: 14.5px; line-height: 1.62; letter-spacing: -0.01em; font-weight: 500;
	}
	
	.checkout-actions-panel a {
		color: var(--blue-light); font-weight: 750; overflow-wrap: anywhere;
	}
	
	.checkout-actions-list {
		display: grid; gap: 9px; margin: 0 0 18px; padding: 0; list-style: none;
	}
	
	.checkout-actions-list li {
		padding: 12px 14px; border-radius: 16px; background: rgba(6, 57, 112, 0.055); border: 1px solid rgba(6, 57, 112, 0.08); color: rgba(29, 29, 31, 0.82); font-size: 14.2px; line-height: 1.45; font-weight: 600;
	}
	
	.checkout-actions-signoff {
		padding-top: 8px; color: var(--text) !important; font-weight: 650 !important;
	}
	
	@media (max-width: 640px) {
		.notice-actions {
			flex-direction: column; align-items: stretch;
		}
		.notice-actions .notice-link {
			width: 100%;
		}
		.checkout-actions-modal {
			padding: 12px;
		}
		.checkout-actions-panel {
			max-height: 88vh; padding: 24px 18px; border-radius: 24px;
		}
		.checkout-actions-close {
			top: 12px; right: 12px; width: 36px; height: 36px;
		}
		.checkout-actions-panel h2 {
			margin-right: 40px; font-size: 24px;
		}
	}
	
	.bulletin-control {
		position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.78); background: rgba(232, 232, 237, 0.9); color: #1d1d1f; font-size: 28px; line-height: 1; cursor: pointer; box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); transition: transform 0.22s ease, background 0.22s ease;
	}
	
	.bulletin-control:hover {
		transform: translateY(-50%) scale(1.06); background: rgba(210, 210, 215, 0.96);
	}
	
	.bulletin-control.prev {
		left: -12px;
	}
	
	.bulletin-control.next {
		right: -12px;
	}
	
	.fees-grid {
		display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
	}
	
	.fees-section-heading {
		max-width: 860px;
	}
	
	.fees-note {
		max-width: 760px; margin: 18px auto 0; border-radius: 22px; background: rgba(255, 255, 255, 0.86); border: 1px solid rgba(6, 57, 112, 0.12); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.052); text-align: left; overflow: hidden; backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
	}
	
	.fees-note-header {
		display: grid; gap: 6px; padding: 15px 18px 10px; color: var(--text);
	}
	
	.fees-note-label {
		display: inline-flex; align-items: center; width: fit-content; padding: 6px 10px; border-radius: 999px; background: var(--soft-blue); color: var(--blue); font-size: 11px; line-height: 1; font-weight: 850; letter-spacing: 0.32px; text-transform: uppercase;
	}
	
	.fees-note-title {
		color: var(--text); font-size: 14px; line-height: 1.35; letter-spacing: -0.2px; font-weight: 750;
	}
	
	.fees-note-body {
		padding: 0 18px 18px;
	}
	
	.fees-note-list {
		display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 0; padding: 14px; border-radius: 18px; background: linear-gradient(180deg, rgba(246, 249, 255, 0.82), rgba(255, 255, 255, 0.72)); border: 1px solid rgba(6, 57, 112, 0.08);
	}
	
	.fees-note-item {
		list-style: none; min-height: 78px; padding: 13px 14px; border-radius: 16px; background: rgba(255, 255, 255, 0.78); border: 1px solid rgba(6, 57, 112, 0.07);
	}
	
	.fees-note-item strong {
		display: block; margin-bottom: 5px; color: var(--blue); font-size: 11.5px; line-height: 1.2; font-weight: 850; letter-spacing: 0.28px; text-transform: uppercase;
	}
	
	.fees-note-item span {
		display: block; color: rgba(29, 29, 31, 0.72); font-size: 12.5px; line-height: 1.45; font-weight: 600; letter-spacing: -0.01em;
	}
	
	.offcampus-grid {
		display: grid; grid-template-columns: repeat(3, minmax(240px, 320px)); gap: 16px; justify-content: center;
	}
	
	.fee-card,
	.offcampus-card {
		display: flex; flex-direction: column; justify-content: space-between; min-height: 190px; padding: 24px; border-radius: 26px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.86); box-shadow: 0 16px 42px rgba(0, 0, 0, 0.045); transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
	}
	
	.fee-card:hover,
	.offcampus-card:hover {
		transform: translateY(-5px); box-shadow: 0 24px 62px rgba(0, 0, 0, 0.085); border-color: rgba(0, 102, 204, 0.22);
	}
	
	.fee-card span,
	.offcampus-card span {
		display: inline-flex; width: fit-content; padding: 7px 10px; border-radius: 999px; background: var(--soft-blue); color: var(--blue); font-size: 11.5px; font-weight: 800; margin-bottom: 14px;
	}
	
	.fee-card h3,
	.offcampus-card h3 {
		margin: 0 0 10px; font-size: 17px; line-height: 1.25; letter-spacing: -0.4px;
	}
	
	.fee-card p,
	.offcampus-card p {
		margin: 0 0 18px; color: var(--muted); font-size: 13px; line-height: 1.55;
	}
	
	.offcampus-card {
		min-height: 150px; text-align: center; align-items: center; justify-content: center;
	}
	
	.offcampus-card h3 {
		margin-bottom: 18px;
	}
	
	.disclaimer {
		margin-top: 18px; padding: 18px 20px; border-radius: 22px; background: rgba(255, 255, 255, 0.78); border: 1px solid var(--line); color: var(--muted); font-size: 12.5px; line-height: 1.6;
	}
	
	.disclaimer strong {
		color: var(--text);
	}
	
	.masters-grid {
		display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px;
	}
	
	.master-card {
		min-height: 520px; display: flex; flex-direction: column; justify-content: space-between; border-radius: 30px; overflow: hidden; position: relative; border: 1px solid rgba(255, 255, 255, 0.78); background: rgba(255, 255, 255, 0.78); box-shadow: 0 18px 50px rgba(0, 0, 0, 0.07); transition: transform 0.22s ease, box-shadow 0.22s ease;
	}
	
	.master-card:hover {
		transform: translateY(-5px); box-shadow: 0 28px 72px rgba(0, 0, 0, 0.12);
	}
	
	.master-photo {
		height: 280px; position: relative; overflow: hidden; background: #eaf3ff;
	}
	
	.replace-master-photo,
	.master-photo img {
		position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
	}
	
	.master-photo img.master-photo-center-center {
		object-position: center center;
	}
	
	.master-photo::after {
		content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.24));
	}
	
	.master-number {
		position: absolute; top: 16px; left: 16px; z-index: 3; display: inline-flex; padding: 7px 11px; border-radius: 999px; background: rgba(255, 255, 255, 0.2); border: 1px solid rgba(255, 255, 255, 0.28); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); color: #ffffff; font-size: 11.5px; font-weight: 800;
	}
	
	.master-info {
		margin: -50px 16px 16px; padding: 20px; position: relative; z-index: 4; border-radius: 24px; background: rgba(255, 255, 255, 0.82); border: 1px solid rgba(255, 255, 255, 0.86); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.09); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
	}
	
	.college-name {
		margin: 0 0 4px; color: var(--blue); font-size: 12px; font-weight: 850; line-height: 1.35; text-transform: uppercase; letter-spacing: 0.45px;
	}
	
	.master-info h3 {
		margin: 0 0 8px; color: var(--text); font-size: 17px; line-height: 1.25; letter-spacing: -0.4px;
	}
	
	.master-title {
		margin: 0 0 12px; color: var(--muted); font-size: 12.5px; line-height: 1.45; min-height: 35px;
	}
	
	.master-meta {
		display: grid; gap: 8px; margin-bottom: 15px;
	}
	
	.meta-line {
		color: var(--muted); font-size: 12.4px; line-height: 1.35; overflow-wrap: anywhere;
	}
	
	.meta-line strong {
		color: var(--text); font-weight: 750;
	}
	
	.master-actions {
		display: flex; flex-wrap: wrap; gap: 9px;
	}
	
	.small-btn {
		display: inline-flex; align-items: center; justify-content: center; min-height: 36px; padding: 0 13px; border-radius: 999px; background: var(--blue); color: #ffffff; font-size: 12px; font-weight: 750; border: 1px solid transparent;
	}
	
	.small-btn.secondary {
		background: rgba(255, 255, 255, 0.8); color: var(--blue); border-color: rgba(6, 57, 112, 0.12);
	}
	
	.small-btn.disabled {
		opacity: 0.45; pointer-events: none; cursor: not-allowed;
	}
	
	.contact-grid {
		display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 18px;
	}
	
	.contact-card {
		padding: 32px;
	}
	
	.contact-card h3,
	.mini-card h3 {
		margin: 0 0 12px; font-size: 19px; letter-spacing: -0.5px;
	}
	
	.contact-card p {
		margin: 0 0 13px; color: var(--muted); font-size: 13.5px; line-height: 1.65;
	}
	
	.contact-list {
		display: grid; gap: 10px; margin-top: 18px;
	}
	
	.contact-item {
		padding: 14px 16px; border-radius: 18px; background: rgba(255, 255, 255, 0.8); border: 1px solid var(--line); color: var(--text); font-size: 13px; line-height: 1.45;
	}
	
	.contact-item strong {
		display: block; color: var(--blue); font-size: 12px; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px;
	}
	
	.quick-cards {
		display: grid; gap: 18px;
	}
	
	.mini-card {
		padding: 26px;
	}
	
	.mini-card p {
		margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.6;
	}
	
	.footer {
		padding: 70px 0;
	}
	
	.footer-card {
		padding-top: 28px; border-top: 1px solid var(--line);
	}
	
	.footer-grid {
		display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 24px;
	}
	
	.footer h3 {
		margin: 0 0 10px; font-size: 16.5px; color: var(--text);
	}
	
	.footer h4 {
		margin: 0 0 11px; font-size: 13px; color: var(--text);
	}
	
	.footer p,
	.footer a {
		display: block; margin: 0 0 7px; color: var(--muted); font-size: 13px; line-height: 1.65;
	}
	
	.footer a:hover {
		color: var(--blue-light);
	}
	
	.footer-bottom {
		margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12.5px;
	}
	
	.language-switch {
		position: fixed !important; top: 96px !important; right: clamp(14px, 3vw, 34px) !important; z-index: 2147483647 !important; display: inline-flex !important; align-items: center !important; gap: 8px !important; padding: 7px !important; border-radius: 999px !important; background: rgba(255, 255, 255, 0.94) !important; border: 1px solid rgba(6, 57, 112, 0.14) !important; box-shadow: 0 16px 42px rgba(0, 0, 0, 0.14) !important; backdrop-filter: blur(18px) !important; -webkit-backdrop-filter: blur(18px) !important; pointer-events: auto !important; transform: translateZ(0) !important; isolation: isolate !important;
	}
	
	.language-current {
		padding-left: 10px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: 0.2px;
	}
	
	.lang-toggle {
		min-width: 48px; height: 34px; padding: 0 13px; border-radius: 999px; border: 1px solid transparent; background: var(--blue); color: #ffffff; font-size: 12px; font-weight: 850; cursor: pointer; box-shadow: 0 10px 24px rgba(6, 57, 112, 0.16); transition: transform 0.2s ease, background 0.2s ease;
	}
	
	.lang-toggle:hover {
		transform: translateY(-1px); background: var(--blue-dark);
	}
	
	@media (max-width: 640px) {
		.language-switch {
			top: 86px !important; right: 14px !important;
		}
		.language-current {
			display: none;
		}
	}
	
	@media (max-width: 1180px) {
		.masters-grid {
			grid-template-columns: repeat(3, minmax(0, 1fr));
		}
	}
	
	@media (max-width: 1120px) {
		.hero-card {
			grid-template-columns: 1fr;
		}
		.fees-grid {
			grid-template-columns: repeat(2, 1fr);
		}
		.offcampus-grid {
			grid-template-columns: repeat(2, minmax(240px, 320px));
		}
	}
	
	@media (max-width: 980px) {
		.hero {
			min-height: auto; padding: 54px 0 42px;
		}
		.hero-card {
			min-height: auto; border-radius: 34px; padding: 42px 32px;
		}
		.bulletin-layout,
		.contact-grid {
			grid-template-columns: 1fr;
		}
		.masters-grid {
			grid-template-columns: repeat(2, minmax(0, 1fr));
		}
		.footer-grid {
			grid-template-columns: repeat(2, 1fr);
		}
	}
	
	@media (max-width: 640px) {
		.wide-container,
		.container {
			width: min(91%, var(--max-width));
		}
		.hero {
			padding: 34px 0 30px;
		}
		.hero-card {
			padding: 34px 22px;
		}
		.hero-card::after {
			inset: 10px; border-radius: 24px;
		}
		.hero h1 {
			font-size: 31px; letter-spacing: -1.8px;
		}
		.hero-description {
			font-size: 14px;
		}
		.hero-actions .btn {
			width: 100%;
		}
		.hero-stats,
		.fees-grid,
		.offcampus-grid,
		.masters-grid,
		.footer-grid {
			grid-template-columns: 1fr;
		}
		.fees-note {
			border-radius: 20px;
		}
		.fees-note-header {
			padding: 14px 14px 10px;
		}
		.fees-note-body {
			padding: 0 14px 14px;
		}
		.fees-note-list {
			grid-template-columns: 1fr; padding: 12px; gap: 8px;
		}
		.section {
			padding: 56px 0;
		}
		.section-heading h2 {
			font-size: 26px; letter-spacing: -1px;
		}
		.glass-card.bulletin-carousel-wrap {
			border-radius: 28px;
		}
		.bulletin-track {
			gap: 16px; padding: 16px; scroll-padding-left: 16px;
		}
		.notice-card {
			flex-basis: 88%; min-height: auto; display: flex; flex-direction: column; padding: 12px; border-radius: 28px;
		}
		.notice-images,
		.notice-images img {
			min-height: 310px;
		}
		.notice-images {
			border-radius: 22px;
		}
		.notice-images img {
			border-radius: 20px;
		}
		.notice-images.notice-dual {
			grid-template-columns: 1fr;
		}
		.notice-images.notice-dual img {
			min-height: 280px;
		}
		.notice-copy {
			padding: 22px 10px 10px;
		}
		.notice-card h3 {
			font-size: 22px; line-height: 1.14; letter-spacing: -0.035em;
		}
		.notice-card p {
			font-size: 14px;
		}
		.bulletin-control {
			width: 40px; height: 40px; font-size: 24px;
		}
		.bulletin-control.prev {
			left: -2px;
		}
		.bulletin-control.next {
			right: -2px;
		}
		.flag-carousel {
			min-height: 438px; padding: 20px; border-radius: 28px;
		}
		.flag-carousel-top {
			align-items: flex-start; flex-direction: column; gap: 9px;
		}
		.flag-carousel-note {
			max-width: none; text-align: left;
		}
		.flag-stage {
			min-height: 318px;
		}
		.flag-frame {
			min-height: 215px; padding: 0;
		}
		.flag-placeholder {
			height: 185px;
		}
		.flag-control {
			width: 38px; height: 38px; top: 50%;
		}
		.flag-control.prev {
			left: 12px;
		}
		.flag-control.next {
			right: 12px;
		}
	}
	
	.language-options {
		display: inline-flex !important; align-items: center !important; gap: 4px !important;
	}
	
	.lang-option {
		min-width: 42px; height: 34px; padding: 0 11px; border-radius: 999px; border: 1px solid rgba(6, 57, 112, 0.12); background: rgba(255, 255, 255, 0.78); color: var(--blue); font-size: 12px; font-weight: 850; cursor: pointer; box-shadow: 0 8px 18px rgba(6, 57, 112, 0.08); transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
	}
	
	.lang-option:hover {
		transform: translateY(-1px); background: rgba(6, 57, 112, 0.08);
	}
	
	.lang-option.is-active {
		background: var(--blue); color: #ffffff; border-color: transparent; box-shadow: 0 10px 24px rgba(6, 57, 112, 0.16);
	}
	
	.shortcut-hub {
		min-height: auto; display: block; padding: clamp(40px, 5vw, 64px) 0 72px; background: #ffffff;
	}
	
	.shortcut-heading {
		max-width: 980px; margin: 0 0 32px; padding-top: 0;
	}
	
	.shortcut-heading h1 {
		max-width: none; margin: 0; color: #1d1d1f; font-size: clamp(34px, 5.2vw, 78px); line-height: 0.97; letter-spacing: -0.055em; font-weight: 700; white-space: nowrap;
	}
	
	.shortcut-heading p {
		max-width: 760px; margin: 18px 0 0; color: #6e6e73; font-size: clamp(17px, 1.45vw, 22px); line-height: 1.36; font-weight: 500; letter-spacing: -0.025em;
	}
	
	.shortcut-grid {
		display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; width: 100%; overflow: visible; padding: 6px 0 24px;
	}
	
	.shortcut-grid::-webkit-scrollbar {
		display: none;
	}
	
	.shortcut-card {
		--card-bg: #ffffff; --card-accent: #0066cc; --card-accent-rgb: 0, 102, 204; --card-muted: rgba(29, 29, 31, 0.66); min-height: 292px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 14px; padding: 28px; border-radius: 30px; border: 1px solid rgba(0, 0, 0, 0.045); background: var(--card-bg); color: #1d1d1f; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05), 0 22px 48px rgba(0, 0, 0, 0.055); text-align: left; cursor: pointer; position: relative; overflow: hidden; transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
	}
	
	.shortcut-card::before {
		content: ""; position: absolute; width: 220px; height: 220px; right: -70px; bottom: -78px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--card-accent-rgb), 0.22), rgba(var(--card-accent-rgb), 0.02) 66%, transparent 70%); pointer-events: none; transition: transform 0.28s ease, opacity 0.28s ease;
	}
	
	.shortcut-card::after {
		content: ""; position: absolute; width: 84px; height: 84px; right: 34px; bottom: 36px; border-radius: 24px; background: rgba(255, 255, 255, 0.46); border: 1px solid rgba(255, 255, 255, 0.46); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62); transform: rotate(10deg); pointer-events: none;
	}
	
	.shortcut-card > * {
		position: relative; z-index: 1;
	}
	
	.shortcut-card:hover,
	.shortcut-card:focus-visible,
	.shortcut-card.is-active {
		transform: translateY(-8px); border-color: rgba(var(--card-accent-rgb), 0.24); box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08), 0 34px 78px rgba(0, 0, 0, 0.10); outline: none;
	}
	
	.shortcut-card:hover::before,
	.shortcut-card.is-active::before {
		transform: scale(1.08) translate(-4px, -4px); opacity: 0.95;
	}
	
	.shortcut-number {
		width: auto; height: 28px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 2px; padding: 0 11px; border-radius: 999px; background: rgba(var(--card-accent-rgb), 0.10); color: var(--card-accent); font-size: 11px; line-height: 1; font-weight: 700; letter-spacing: 0.02em; box-shadow: none;
	}
	
	.shortcut-eyebrow {
		display: inline-flex; width: fit-content; padding: 0; border-radius: 0; background: transparent; color: var(--card-accent); font-size: 13px; line-height: 1.18; font-weight: 700; letter-spacing: -0.01em; text-transform: none;
	}
	
	.shortcut-card h2 {
		max-width: 95%; margin: 2px 0 0; color: #1d1d1f; font-size: clamp(25px, 2.25vw, 34px); line-height: 1.02; letter-spacing: -0.052em; font-weight: 700;
	}
	
	.shortcut-card p {
		max-width: 92%; margin: 0; color: var(--card-muted); font-size: 14.5px; line-height: 1.43; letter-spacing: -0.018em; font-weight: 500;
	}
	
	.shortcut-action {
		margin-top: auto; display: inline-flex; align-items: center; gap: 7px; color: var(--card-accent); font-size: 14px; line-height: 1; font-weight: 600; letter-spacing: -0.018em;
	}
	
	.shortcut-action::after {
		content: "›"; font-size: 22px; line-height: 0; transform: translateY(-1px); transition: transform 0.22s ease;
	}
	
	.shortcut-card:hover .shortcut-action::after,
	.shortcut-card.is-active .shortcut-action::after {
		transform: translate(4px, -1px);
	}
	
	.shortcut-tone-sky {
		--card-bg: linear-gradient(180deg, #ffffff 0%, #edf7ff 100%); --card-accent: #0071e3; --card-accent-rgb: 0, 113, 227;
	}
	
	.shortcut-tone-amber {
		--card-bg: linear-gradient(180deg, #ffffff 0%, #fff5df 100%); --card-accent: #b45f00; --card-accent-rgb: 180, 95, 0;
	}
	
	.shortcut-tone-lavender {
		--card-bg: linear-gradient(180deg, #ffffff 0%, #f4efff 100%); --card-accent: #7355d6; --card-accent-rgb: 115, 85, 214;
	}
	
	.shortcut-tone-mint {
		--card-bg: linear-gradient(180deg, #ffffff 0%, #ecf9f2 100%); --card-accent: #177245; --card-accent-rgb: 23, 114, 69;
	}
	
	.shortcut-master-card {
		--card-bg: linear-gradient(180deg, #ffffff 0%, #eef7ff 100%); --card-accent: #0f5fa8; --card-accent-rgb: 15, 95, 168; --card-muted: rgba(29, 29, 31, 0.66); color: #1d1d1f; border-color: rgba(15, 95, 168, 0.12); box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05), 0 22px 48px rgba(0, 0, 0, 0.055);
	}
	
	.shortcut-master-card::before {
		background: radial-gradient(circle, rgba(15, 95, 168, 0.18), rgba(15, 95, 168, 0.03) 64%, transparent 72%);
	}
	
	.shortcut-master-card::after {
		background: rgba(255, 255, 255, 0.46); border-color: rgba(255, 255, 255, 0.46);
	}
	
	.shortcut-master-card .shortcut-number {
		background: rgba(15, 95, 168, 0.10); color: #0f5fa8; border: 1px solid rgba(15, 95, 168, 0.12);
	}
	
	.shortcut-master-card .shortcut-eyebrow,
	.shortcut-master-card .shortcut-action {
		color: #0f5fa8;
	}
	
	.shortcut-master-card h2 {
		color: #1d1d1f;
	}
	
	.shortcut-master-card p {
		color: rgba(29, 29, 31, 0.66);
	}
	
	.shortcut-note {
		max-width: 720px; margin: 0; color: #86868b; font-size: 13px; line-height: 1.45; font-weight: 500; letter-spacing: -0.01em;
	}
	
	.content-panel {
		scroll-margin-top: 34px;
	}
	
	.content-panel.is-hidden {
		display: none;
	}
	
	.content-panel.is-revealed {
		animation: panelReveal 0.32s ease both;
	}
	
	@keyframes panelReveal {
		from {
			opacity: 0; transform: translateY(18px);
		}
		to {
			opacity: 1; transform: translateY(0);
		}
	}
	
	@media (max-width: 1180px) {
		.shortcut-hub .wide-container {
			width: min(92%, var(--wide-width));
		}
		.shortcut-grid {
			grid-template-columns: repeat(2, minmax(0, 1fr));
		}
	}
	
	@media (max-width: 760px) {
		.shortcut-hub {
			min-height: auto; padding: 36px 0 46px;
		}
		.shortcut-heading {
			margin-bottom: 22px;
		}
		.shortcut-heading h1 {
			font-size: clamp(29px, 8.4vw, 42px); line-height: 1; letter-spacing: -0.052em; white-space: nowrap;
		}
		.shortcut-heading p {
			font-size: 17px; line-height: 1.42;
		}
		.shortcut-grid {
			grid-template-columns: 1fr; gap: 14px; padding-bottom: 18px;
		}
		.shortcut-card {
			min-height: 218px; border-radius: 28px; padding: 24px;
		}
		.shortcut-card h2 {
			font-size: 29px;
		}
	}
	
	.shortcut-tone-indigo {
		--card-bg: linear-gradient(180deg, #ffffff 0%, #eef2ff 100%); --card-accent: #1c317b; --card-accent-rgb: 28, 49, 123;
	}
	
	.shortcut-tone-rose {
		--card-bg: linear-gradient(180deg, #ffffff 0%, #fff0f4 100%); --card-accent: #c23b5a; --card-accent-rgb: 194, 59, 90;
	}
	
	.checkin-gateway-card {
		position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr); gap: clamp(24px, 4vw, 54px); align-items: stretch; padding: clamp(28px, 5vw, 58px); border-radius: clamp(28px, 3vw, 38px); background: radial-gradient(720px 260px at 8% 0%, rgba(28, 49, 123, 0.10), transparent 64%), linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 252, 0.94)); border: 1px solid rgba(0, 0, 0, 0.06); box-shadow: 0 24px 68px rgba(0, 0, 0, 0.08);
	}
	
	.checkin-gateway-card::before {
		content: ""; position: absolute; width: 340px; height: 340px; right: -110px; bottom: -130px; border-radius: 50%; background: radial-gradient(circle, rgba(28, 49, 123, 0.16), rgba(28, 49, 123, 0.02) 67%, transparent 72%); pointer-events: none;
	}
	
	.checkin-gateway-content,
	.checkin-gateway-aside {
		position: relative; z-index: 1;
	}
	
	.checkin-eyebrow {
		display: inline-flex; align-items: center; width: fit-content; margin-bottom: 16px; padding: 8px 12px; border-radius: 999px; background: rgba(28, 49, 123, 0.09); color: #1c317b; border: 1px solid rgba(28, 49, 123, 0.11); font-size: 12px; line-height: 1; font-weight: 750; letter-spacing: -0.01em;
	}
	
	.checkin-gateway-content h2 {
		max-width: 720px; margin: 0; color: #1d1d1f; font-size: clamp(34px, 4.4vw, 64px); line-height: 0.98; letter-spacing: -0.058em; font-weight: 700; text-wrap: balance;
	}
	
	.checkin-copy {
		max-width: 640px; margin: 18px 0 0; color: #6e6e73; font-size: clamp(16px, 1.35vw, 20px); line-height: 1.46; letter-spacing: -0.025em; font-weight: 500;
	}
	
	.checkin-actions {
		display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 30px;
	}
	
	.checkin-button {
		display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; padding: 0 19px; border-radius: 999px; background: #1c317b; color: #ffffff; font-size: 14px; line-height: 1; font-weight: 700; letter-spacing: -0.018em; box-shadow: 0 16px 34px rgba(28, 49, 123, 0.20); transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
	}
	
	.checkin-button:hover {
		transform: translateY(-2px); background: #10235f; box-shadow: 0 20px 44px rgba(28, 49, 123, 0.26);
	}
	
	.checkin-note {
		max-width: 540px; margin: 18px 0 0; color: rgba(29, 29, 31, 0.56); font-size: 13.2px; line-height: 1.55; letter-spacing: -0.01em; font-weight: 500;
	}
	
	.checkin-gateway-aside {
		display: grid; gap: 14px; align-content: center;
	}
	
	.checkin-mini-card {
		padding: 20px; border-radius: 26px; background: rgba(255, 255, 255, 0.78); border: 1px solid rgba(0, 0, 0, 0.055); box-shadow: 0 16px 38px rgba(0, 0, 0, 0.055); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
	}
	
	.checkin-mini-card span {
		display: inline-flex; margin-bottom: 10px; color: #1c317b; font-size: 12px; line-height: 1; font-weight: 750; letter-spacing: -0.01em;
	}
	
	.checkin-mini-card h3 {
		margin: 0; color: #1d1d1f; font-size: 22px; line-height: 1.08; letter-spacing: -0.048em; font-weight: 750;
	}
	
	.checkin-mini-card p {
		margin: 8px 0 0; color: #6e6e73; font-size: 13.5px; line-height: 1.48; letter-spacing: -0.01em; font-weight: 500;
	}
	
	.checkin-eligibility {
		display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
	}
	
	.checkin-eligibility span {
		display: inline-flex; align-items: center; min-height: 30px; padding: 0 11px; border-radius: 999px; background: rgba(28, 49, 123, 0.08); color: #1c317b; font-size: 12px; line-height: 1; font-weight: 700; letter-spacing: -0.01em;
	}
	
	@media (max-width: 860px) {
		.checkin-gateway-card {
			grid-template-columns: 1fr; padding: 30px 22px;
		}
		.checkin-button {
			width: 100%;
		}
	}
	
	.magazine-carousel-wrap {
		position: relative; padding: 22px; border-radius: 32px;
	}
	
	.magazine-track {
		display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; overflow: visible; scroll-snap-type: none; scroll-behavior: auto; padding: 4px; scrollbar-width: none;
	}
	
	.magazine-track::-webkit-scrollbar {
		display: none;
	}
	
	.magazine-card {
		min-height: 550px; display: flex; flex-direction: column; justify-content: space-between; scroll-snap-align: unset; padding: 18px; border-radius: 30px; background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.055); box-shadow: 0 18px 48px rgba(0, 0, 0, 0.075); overflow: hidden; transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
	}
	
	.magazine-card:hover {
		transform: translateY(-6px); border-color: rgba(0, 102, 204, 0.18); box-shadow: 0 28px 68px rgba(0, 0, 0, 0.11);
	}
	
	.magazine-cover {
		aspect-ratio: 3 / 4; width: 100%; overflow: hidden; border-radius: 24px; background: #f5f5f7; display: flex; align-items: center; justify-content: center;
	}
	
	.magazine-cover img {
		width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 24px;
	}
	
	.magazine-cover.magazine-cover-kk7 img {
		object-fit: contain; padding: 10px; background: #ffffff;
	}
	
	.magazine-info {
		padding: 18px 4px 0;
	}
	
	.magazine-info span {
		display: inline-flex; margin-bottom: 8px; color: #c23b5a; font-size: 12px; line-height: 1; font-weight: 750; letter-spacing: -0.01em;
	}
	
	.magazine-info h3 {
		margin: 0; color: #1d1d1f; font-size: 21px; line-height: 1.14; letter-spacing: -0.045em; font-weight: 750;
	}
	
	.magazine-info p {
		margin: 9px 0 16px; color: #6e6e73; font-size: 13.5px; line-height: 1.48; letter-spacing: -0.01em;
	}
	
	@media (max-width: 1180px) {
		.magazine-track {
			grid-template-columns: repeat(3, minmax(0, 1fr));
		}
	}
	
	@media (max-width: 900px) {
		.magazine-track {
			grid-template-columns: repeat(2, minmax(0, 1fr));
		}
	}
	
	@media (max-width: 760px) {
		.magazine-carousel-wrap {
			padding: 16px;
		}
		.magazine-track {
			grid-template-columns: 1fr;
		}
		.magazine-card {
			min-height: 500px;
		}
	}
	
	#senior-application .bulletin-track {
		justify-content: flex-start; overflow-x: auto; overflow-y: visible; scroll-snap-type: x mandatory; scroll-behavior: smooth;
	}
	
	#senior-application .notice-card {
		flex: 0 0 min(92%, 960px); min-height: 540px; scroll-snap-align: start;
	}
	
	@media (max-width: 640px) {
		#senior-application .notice-card {
			flex-basis: 88%; min-height: auto;
		}
	}
	
	#senior-application .senior-application-actions {
		display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
	}
	
	#senior-application .senior-announcement-link {
		background: #ffffff; color: var(--blue-light); border: 1px solid rgba(0, 102, 204, 0.22); box-shadow: 0 12px 26px rgba(0, 102, 204, 0.08);
	}
	
	#senior-application .senior-announcement-link:hover {
		background: #ffffff; color: var(--blue-dark); border-color: rgba(0, 102, 204, 0.34); box-shadow: 0 16px 34px rgba(0, 102, 204, 0.12);
	}
	
	@media (max-width: 640px) {
		#senior-application .senior-application-actions {
			flex-direction: column; align-items: stretch;
		}
		#senior-application .senior-application-actions .notice-link {
			width: 100%;
		}
	}
	
	.coming-soon-card {
		position: relative; overflow: hidden; padding: clamp(30px, 5vw, 58px); border-radius: clamp(28px, 3vw, 38px); background: radial-gradient(720px 260px at 8% 0%, rgba(6, 57, 112, 0.10), transparent 64%), linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 252, 0.94)); border: 1px solid rgba(0, 0, 0, 0.06); box-shadow: 0 24px 68px rgba(0, 0, 0, 0.08);
	}
	
	.coming-soon-card::before {
		content: ""; position: absolute; width: 340px; height: 340px; right: -110px; bottom: -130px; border-radius: 50%; background: radial-gradient(circle, rgba(6, 57, 112, 0.16), rgba(6, 57, 112, 0.02) 67%, transparent 72%); pointer-events: none;
	}
	
	.coming-soon-content {
		position: relative; z-index: 1; max-width: 760px;
	}
	
	.coming-soon-content h2 {
		margin: 0; color: #1d1d1f; font-size: clamp(32px, 4vw, 58px); line-height: 1; letter-spacing: -0.055em; font-weight: 700;
	}
	
	.coming-soon-content p {
		margin: 18px 0 0; color: #6e6e73; font-size: clamp(16px, 1.35vw, 20px); line-height: 1.46; letter-spacing: -0.025em; font-weight: 500;
	}
	
	.accommodation-team-section {
		padding-top: 78px;
	}
	
	.accommodation-team-grid .master-card {
		min-height: 500px;
	}
	
	.team-card .master-title {
		min-height: auto; margin-bottom: 12px;
	}
	
	.team-card .master-meta {
		gap: 9px; margin-bottom: 0;
	}
	
	.team-card .meta-line {
		font-size: 12.8px;
	}
	
	.team-photo-placeholder-wrap {
		background: linear-gradient(135deg, rgba(6, 57, 112, 0.12), rgba(0, 102, 204, 0.10));
	}
	
	.team-photo-placeholder {
		position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 24px; color: rgba(6, 57, 112, 0.72); font-size: 13px; line-height: 1; font-weight: 850; letter-spacing: 0.42px; text-transform: uppercase; background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(232, 242, 255, 0.78));
	}
	
	.accommodation-team-grid .team-card {
		min-height: 560px; justify-content: flex-end; isolation: isolate; background: #eaf3ff;
	}
	
	.team-card .master-photo {
		position: absolute; inset: 0; height: 100%; width: 100%; z-index: 1; border-radius: inherit;
	}
	
	.team-card .replace-master-photo,
	.team-card .master-photo img {
		position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top;
	}
	
	.team-card .master-photo::after {
		content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 22%, rgba(0, 0, 0, 0.30) 64%, rgba(0, 0, 0, 0.58) 100%);
	}
	
	.team-card .master-number {
		z-index: 4;
	}
	
	.team-card .master-info {
		width: calc(100% - 32px); margin: auto 16px 16px; position: relative; z-index: 5; background: rgba(255, 255, 255, 0.84); border: 1px solid rgba(255, 255, 255, 0.88); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
	}
	
	.team-card .team-photo-placeholder {
		z-index: 1;
	}
	
	@media (max-width: 640px) {
		.accommodation-team-grid .team-card {
			min-height: 500px;
		}
	}
	
	@media (max-width: 420px) {
		.shortcut-heading h1 {
			font-size: 27px;
		}
	}
	/* UM-WOW Accommodation Intake Widget */
	
	.umwow-widget,
	.umwow-widget *,
	.umwow-modal,
	.umwow-modal * {
		box-sizing: border-box;
	}
	
	.umwow-widget,
	.umwow-modal {
		--umwow-ink: #1d1d1f; --umwow-muted: #6f7278; --umwow-blue: #0b63ce; --umwow-blue-dark: #074b9d; --umwow-line: rgba(20, 24, 32, .10); --umwow-card-bg: rgba(255, 255, 255, .70); --umwow-card-bg-soft: rgba(255, 255, 255, .56); --umwow-radius: 24px; font-family: Montserrat, Arial, sans-serif;
	}
	
	.umwow-widget {
		position: relative; z-index: 1; display: block; clear: both; width: 100%; max-width: 1120px; margin: 0 auto 20px auto; padding: 28px 16px 46px 16px; color: var(--umwow-ink); font-size: 14px; line-height: 1.55; overflow: visible;
	}
	/* Decorative blur removed for cleaner embedding */
	
	.umwow-widget:before,
	.umwow-widget:after {
		display: none;
	}
	
	.umwow-hero {
		width: min(100%, 760px); margin: 0 auto 26px auto; text-align: center;
	}
	
	.umwow-eyebrow {
		margin: 0 0 8px 0; color: var(--umwow-blue); font-size: 12px; font-weight: 700; letter-spacing: .01em;
	}
	
	.umwow-title {
		margin: 0; color: var(--umwow-ink); font-size: 30px; line-height: 1.16; font-weight: 700; letter-spacing: -.035em;
	}
	
	.umwow-lead {
		max-width: 650px; margin: 14px auto 0 auto; color: var(--umwow-muted); font-size: 15px; font-weight: 500;
	}
	
	.umwow-grid {
		display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; width: min(100%, 1120px); margin: 28px auto 0 auto;
	}
	
	.umwow-card,
	.umwow-panel,
	.umwow-modal-box {
		position: relative; overflow: hidden; border: 1px solid var(--umwow-line); background: linear-gradient(145deg, var(--umwow-card-bg), var(--umwow-card-bg-soft)); box-shadow: none; backdrop-filter: blur(18px) saturate(150%); -webkit-backdrop-filter: blur(18px) saturate(150%);
	}
	/* White shine/shadow overlay removed */
	
	.umwow-card:before,
	.umwow-panel:before,
	.umwow-modal-box:before {
		display: none;
	}
	
	.umwow-card {
		min-height: 220px; padding: 24px; border-radius: var(--umwow-radius); display: flex; flex-direction: column; justify-content: space-between;
	}
	
	.umwow-tag {
		margin-bottom: 8px; color: var(--umwow-blue); font-size: 12px; font-weight: 700;
	}
	
	.umwow-card-title {
		max-width: 360px; margin: 0; color: var(--umwow-ink); font-size: 20px; line-height: 1.22; font-weight: 700; letter-spacing: -.025em;
	}
	
	.umwow-card-text {
		max-width: 470px; margin: 12px 0 0 0; color: var(--umwow-muted); font-size: 14px; font-weight: 500;
	}
	
	.umwow-actions {
		position: relative; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px;
	}
	
	.umwow-btn {
		display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 10px 16px; border: 0; border-radius: 999px; background: #1d1d1f; color: #fff !important; box-shadow: none; cursor: pointer; font-family: Montserrat, Arial, sans-serif; font-size: 13px; font-weight: 700; text-decoration: none; transition: transform .16s ease, opacity .16s ease;
	}
	
	.umwow-btn:hover {
		transform: translateY(-1px); text-decoration: none;
	}
	
	.umwow-btn:active {
		transform: translateY(0); opacity: .92;
	}
	
	.umwow-btn.umwow-blue {
		background: linear-gradient(180deg, var(--umwow-blue), var(--umwow-blue-dark));
	}
	
	.umwow-btn.umwow-light {
		background: rgba(255, 255, 255, .70); color: var(--umwow-ink) !important; border: 1px solid var(--umwow-line); box-shadow: none;
	}
	
	.umwow-btn[disabled],
	.umwow-disabled {
		opacity: .58; cursor: not-allowed; transform: none !important; pointer-events: none;
	}
	
	.umwow-panel {
		width: min(100%, 820px); margin: 28px auto 0 auto; padding: 24px; border-radius: var(--umwow-radius);
	}
	
	.umwow-small {
		position: relative; margin: 0; color: var(--umwow-muted); font-size: 13px; font-weight: 500;
	}
	
	.umwow-note {
		width: min(100%, 820px); margin: 18px auto 0 auto; color: var(--umwow-muted); text-align: center; font-size: 12px; font-weight: 500;
	}
	
	.umwow-modal {
		position: fixed; inset: 0; z-index: 9999; display: none; place-items: center; padding: 18px; background: rgba(245, 247, 251, .42); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
	}
	
	.umwow-modal.umwow-open {
		display: grid;
	}
	
	.umwow-modal-box {
		width: min(760px, 100%); padding: 24px; border-radius: 26px;
	}
	
	.umwow-modal-head {
		position: relative; display: flex; align-items: flex-start; justify-content: space-between; gap: 14px;
	}
	
	.umwow-modal-title {
		margin: 0; color: var(--umwow-ink); font-size: 20px; line-height: 1.22; font-weight: 700; letter-spacing: -.025em;
	}
	
	.umwow-close {
		width: 36px; height: 36px; border: 1px solid var(--umwow-line); border-radius: 999px; background: rgba(255, 255, 255, .72); color: var(--umwow-ink); cursor: pointer; font-family: Arial, sans-serif; font-size: 20px; line-height: 1;
	}
	
	.umwow-course-grid {
		position: relative; display: grid; grid-template-columns: repeat(2, minmax(220px, 1fr)); gap: 12px; margin-top: 20px; align-items: stretch;
	}
	
	.umwow-course {
		display: flex; flex-direction: column; justify-content: center; min-height: 92px; padding: 16px; border: 1px solid var(--umwow-line); border-radius: 18px; background: rgba(255, 255, 255, .66); color: var(--umwow-ink); font-size: 13px; font-weight: 700; text-decoration: none; transition: transform .16s ease, background .16s ease, border-color .16s ease;
	}
	
	.umwow-course span {
		display: block; margin-top: 5px; color: var(--umwow-muted); font-size: 11.5px; font-weight: 600; line-height: 1.35;
	}
	
	.umwow-course:hover {
		transform: translateY(-2px); background: rgba(255, 255, 255, .90); border-color: rgba(11, 99, 206, .22); text-decoration: none;
	}
	
	@media (max-width: 980px) {
		.umwow-grid {
			grid-template-columns: repeat(2, minmax(0, 1fr));
		}
	}
	
	@media (max-width: 760px) {
		.umwow-widget {
			margin-bottom: 10px; padding: 22px 12px 40px 12px;
		}
		.umwow-hero {
			text-align: left;
		}
		.umwow-title {
			font-size: 25px;
		}
		.umwow-lead {
			margin-left: 0; font-size: 14px;
		}
		.umwow-grid,
		.umwow-course-grid {
			grid-template-columns: 1fr;
		}
		.umwow-card,
		.umwow-panel {
			padding: 20px;
		}
	}
	
	@supports not (backdrop-filter: blur(10px)) {
		.umwow-card,
		.umwow-panel,
		.umwow-modal-box {
			background: rgba(255, 255, 255, .96);
		}
	}
	/* Accommodation Information announcement popup */
	
	body.residential-checkin-lock {
		overflow: hidden;
	}
	
	.residential-checkin-modal {
		--um-blue: #002f6c; --um-blue-light: #0071e3; --text-main: #1d1d1f; --text-muted: #6e6e73; position: fixed; inset: 0; z-index: 2147483647; display: flex; align-items: center; justify-content: center; width: 100vw; height: 100vh; padding: clamp(16px, 3vw, 36px); background: radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.46) 28%, rgba(10, 20, 38, 0.54) 100%); backdrop-filter: blur(24px) saturate(160%); -webkit-backdrop-filter: blur(24px) saturate(160%); opacity: 0; visibility: hidden; pointer-events: none; isolation: isolate;
	}
	
	.residential-checkin-modal.is-hidden {
		display: none !important;
	}
	
	.residential-checkin-modal.is-active {
		visibility: visible; pointer-events: auto; animation: residentialCheckinFadeIn .34s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	}
	
	.residential-checkin-modal.is-closing {
		visibility: visible; pointer-events: none; animation: residentialCheckinFadeOut .26s ease forwards;
	}
	
	.residential-checkin-panel {
		position: relative; z-index: 2; display: block; width: min(760px, calc(100vw - 32px)); max-height: calc(100vh - 32px); overflow: auto; padding: clamp(22px, 3vw, 38px); border-radius: clamp(28px, 3vw, 42px); background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62)); border: 1px solid rgba(255, 255, 255, 0.72); box-shadow: 0 38px 110px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.76); backdrop-filter: blur(30px) saturate(180%); -webkit-backdrop-filter: blur(30px) saturate(180%); opacity: 0; transform: translateY(18px) scale(0.975);
	}
	
	.residential-checkin-modal.is-active .residential-checkin-panel {
		animation: residentialCheckinPanelIn .48s cubic-bezier(0.16, 1, 0.3, 1) .04s forwards;
	}
	
	.residential-checkin-modal.is-closing .residential-checkin-panel {
		animation: residentialCheckinPanelOut .24s ease forwards;
	}
	
	.residential-checkin-image-wrap {
		display: flex; align-items: center; justify-content: center; min-height: 430px; border-radius: clamp(20px, 2.2vw, 30px); overflow: hidden; background: rgba(255, 255, 255, 0.70); border: 1px solid rgba(0, 47, 108, 0.08); box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
	}
	
	.residential-checkin-image-wrap img {
		display: block; width: 100%; height: 100%; max-height: min(66vh, 620px); object-fit: contain; object-position: center; background: #ffffff;
	}
	
	.residential-checkin-info-card {
		position: relative; display: flex; flex-direction: column; justify-content: space-between; width: 100%; min-height: 430px; padding: clamp(24px, 3vw, 42px); border-radius: inherit; overflow: hidden; background: linear-gradient(145deg, var(--um-blue) 0%, #0056a6 54%, #0071e3 100%); color: #ffffff; isolation: isolate;
	}
	
	.residential-checkin-info-card::before {
		content: ""; position: absolute; inset: -32% -18% auto auto; width: 280px; height: 280px; border-radius: 50%; background: rgba(246, 195, 67, 0.28); filter: blur(2px); z-index: -1;
	}
	
	.residential-checkin-info-card::after {
		content: ""; position: absolute; inset: auto auto -42% -28%; width: 360px; height: 360px; border-radius: 50%; background: rgba(255, 255, 255, 0.14); z-index: -1;
	}
	
	.residential-checkin-info-icon {
		display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 72px; border-radius: 24px; background: rgba(255, 255, 255, 0.18); border: 1px solid rgba(255, 255, 255, 0.28); font-size: 38px; box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
	}
	
	.residential-checkin-info-card h3 {
		max-width: 420px; margin-top: 28px; font-size: clamp(28px, 3vw, 46px); line-height: 1.02; letter-spacing: -0.032em; font-weight: 820;
	}
	
	.residential-checkin-info-card p {
		max-width: 360px; margin-top: 14px; color: rgba(255, 255, 255, 0.82); font-size: clamp(14px, 1vw, 16px); line-height: 1.48; font-weight: 540;
	}
	
	.residential-checkin-portal-link {
		display: inline-flex; align-items: center; width: fit-content; max-width: 100%; margin-top: 24px; padding: 12px 16px; border-radius: 999px; background: rgba(255, 255, 255, 0.18); border: 1px solid rgba(255, 255, 255, 0.30); color: #ffffff; font-size: 14px; line-height: 1.1; font-weight: 720; overflow-wrap: anywhere; box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
	}
	
	.residential-checkin-message {
		max-width: 520px; margin-top: 16px; color: var(--text-muted); font-size: clamp(14px, 1vw, 16px); line-height: 1.56; letter-spacing: -0.004em;
	}
	
	.residential-checkin-message p + p {
		margin-top: 14px;
	}
	
	.residential-checkin-message a {
		display: inline-flex; width: fit-content; max-width: 100%; color: var(--um-blue-light); font-weight: 760; overflow-wrap: anywhere;
	}
	
	.residential-checkin-message a:hover {
		text-decoration: underline;
	}
	
	.residential-checkin-copy {
		display: flex; flex-direction: column; justify-content: center; align-items: flex-start; width: 100%; min-width: 0; padding: clamp(10px, 1vw, 14px);
	}
	
	.residential-checkin-eyebrow {
		display: inline-flex; align-items: center; margin-bottom: 14px; padding: 7px 12px; border-radius: 999px; background: rgba(0, 113, 227, 0.10); color: var(--um-blue-light); font-size: 11px; line-height: 1.1; font-weight: 780; letter-spacing: 0.08em; text-transform: uppercase;
	}
	
	.residential-checkin-copy h2 {
		max-width: 540px; color: var(--text-main); font-size: clamp(26px, 2.75vw, 42px); line-height: 1.08; letter-spacing: -0.028em; font-weight: 820;
	}
	
	.residential-checkin-subtitle {
		margin-top: 12px; color: var(--um-blue); font-size: clamp(16px, 1.25vw, 20px); line-height: 1.32; font-weight: 720; letter-spacing: -0.01em;
	}
	
	.residential-checkin-description {
		max-width: 520px; margin-top: 16px; color: var(--text-muted); font-size: clamp(14px, 1vw, 16px); line-height: 1.52; letter-spacing: -0.004em;
	}
	
	.residential-checkin-button {
		display: inline-flex; align-items: center; justify-content: center; min-height: 40px; margin-top: 24px; padding: 10px 18px; border-radius: 999px; background: rgba(0, 113, 227, 0.92); color: #ffffff; font-size: 14px; line-height: 1.1; font-weight: 680; box-shadow: 0 12px 26px rgba(0, 113, 227, 0.24); transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
	}
	
	.residential-checkin-button:hover {
		background: #0077ed; transform: translateY(-1px); box-shadow: 0 16px 34px rgba(0, 113, 227, 0.30);
	}
	
	.residential-checkin-button:focus-visible,
	.residential-checkin-close:focus-visible {
		outline: 3px solid rgba(0, 113, 227, 0.34); outline-offset: 3px;
	}
	
	.residential-checkin-close {
		position: absolute; top: clamp(14px, 1.5vw, 20px); right: clamp(14px, 1.5vw, 20px); z-index: 4; display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 0; border-radius: 999px; background: rgba(255, 255, 255, 0.78); color: rgba(29, 29, 31, 0.82); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease;
	}
	
	.residential-checkin-close:hover {
		background: rgba(255, 255, 255, 0.96); color: var(--text-main); transform: scale(1.04);
	}
	
	.residential-checkin-close span {
		display: block; font-size: 24px; line-height: 1; font-weight: 300; transform: translateY(-1px);
	}
	
	@keyframes residentialCheckinFadeIn {
		to {
			opacity: 1;
		}
	}
	
	@keyframes residentialCheckinFadeOut {
		to {
			opacity: 0;
		}
	}
	
	@keyframes residentialCheckinPanelIn {
		to {
			opacity: 1; transform: translateY(0) scale(1);
		}
	}
	
	@keyframes residentialCheckinPanelOut {
		to {
			opacity: 0; transform: translateY(10px) scale(0.985);
		}
	}
	
	@media (max-width: 860px) {
		.residential-checkin-modal {
			align-items: flex-start; padding: 18px; overflow-y: auto;
		}
		.residential-checkin-panel {
			width: min(620px, calc(100vw - 28px)); max-height: none; padding: 22px; border-radius: 30px;
		}
		.residential-checkin-image-wrap {
			min-height: auto;
		}
		.residential-checkin-image-wrap img {
			height: auto; max-height: 52vh;
		}
		.residential-checkin-info-card {
			min-height: 280px;
		}
		.residential-checkin-copy {
			padding: 4px;
		}
	}
	
	@media (max-width: 480px) {
		.residential-checkin-modal {
			padding: 12px;
		}
		.residential-checkin-panel {
			width: calc(100vw - 24px); padding: 18px; border-radius: 24px;
		}
		.residential-checkin-image-wrap {
			border-radius: 18px;
		}
		.residential-checkin-image-wrap img {
			max-height: 46vh;
		}
		.residential-checkin-info-card {
			min-height: 240px; padding: 22px;
		}
		.residential-checkin-info-icon {
			width: 58px; height: 58px; border-radius: 18px; font-size: 30px;
		}
		.residential-checkin-info-card h3 {
			font-size: clamp(24px, 7.5vw, 34px);
		}
		.residential-checkin-portal-link {
			font-size: 13px; padding: 10px 13px;
		}
		.residential-checkin-copy h2 {
			font-size: clamp(26px, 8vw, 34px);
		}
		.residential-checkin-subtitle {
			font-size: 15px;
		}
		.residential-checkin-description {
			font-size: 13.5px;
		}
		.residential-checkin-button {
			min-height: 38px; margin-top: 20px; padding: 9px 16px; font-size: 13.5px;
		}
		.residential-checkin-close {
			width: 36px; height: 36px; top: 12px; right: 12px;
		}
	}
	/* Phase 2 UG Senior Residential College Accommodation Application popup */
	
	.residential-checkin-panel {
		display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(270px, 0.82fr); gap: 16px; align-items: stretch; width: min(1240px, calc(100vw - 32px)); padding: 18px;
	}
	
	.residential-checkin-image-wrap {
		min-width: 0; min-height: 0; border-radius: 24px;
	}
	
	.residential-checkin-image-wrap img {
		width: 100%; height: 100%; max-height: min(72vh, 680px); object-fit: contain; object-position: center; background: #ffffff;
	}
	
	.residential-checkin-copy {
		justify-content: center; padding: clamp(20px, 2.4vw, 34px);
	}
	
	.residential-checkin-copy h2 {
		max-width: 420px; font-size: clamp(23px, 2.05vw, 32px); line-height: 1.16; letter-spacing: -0.022em;
	}
	
	.residential-checkin-description {
		max-width: 420px; margin-top: 16px; font-size: clamp(13.5px, 1vw, 15px); line-height: 1.62;
	}
	/* Case 5: two separate rows, with normal wrapping inside the card. */
	
	.senior-countdown-line {
		display: block; white-space: normal; overflow-wrap: anywhere;
	}
	
	.senior-countdown-value {
		margin-top: 6px; color: var(--card-accent); font-weight: 700;
	}
	
	@media (max-width: 980px) {
		.residential-checkin-panel {
			grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); width: min(760px, calc(100vw - 28px)); padding: 16px;
		}
		.residential-checkin-image-wrap img {
			height: auto; max-height: 54vh;
		}
		.residential-checkin-copy {
			grid-column: 1 / -1; padding: 18px 8px 8px;
		}
	}
	
	@media (max-width: 480px) {
		.residential-checkin-panel {
			grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; width: calc(100vw - 24px); padding: 12px;
		}
		.residential-checkin-image-wrap {
			border-radius: 16px;
		}
		.residential-checkin-image-wrap img {
			max-height: 42vh;
		}
		.residential-checkin-copy h2 {
			font-size: 23px;
		}
		.residential-checkin-description {
			font-size: 13.5px;
		}
	}
	/* KK6 application results and Phase 2 announcement popup */
	
	.residential-notice-panel {
		grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr); width: min(1000px, calc(100vw - 32px));
	}
	
	.residential-notice-copy .residential-checkin-description + .residential-checkin-description {
		margin-top: 10px;
	}
	
	.residential-notice-copy .residential-checkin-description strong {
		color: var(--text-main); font-weight: 760;
	}
	
	.residential-notice-copy .residential-checkin-description a {
		color: var(--um-blue-light); font-weight: 760;
	}
	
	.residential-notice-copy .residential-checkin-description a:hover {
		text-decoration: underline;
	}
	
	.residential-notice-copy h2 {
		font-size: clamp(19px, 1.65vw, 26px); line-height: 1.18;
	}
	
	.residential-notice-section-title {
		max-width: 420px; margin-top: 22px; color: var(--um-blue); font-size: clamp(17px, 1.35vw, 21px); line-height: 1.3; letter-spacing: -0.012em; font-weight: 780;
	}
	
	@media (max-width: 980px) {
		.residential-notice-panel {
			grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); width: min(760px, calc(100vw - 28px));
		}
		.residential-notice-copy {
			grid-column: auto;
		}
	}
	
	@media (max-width: 640px) {
		.residential-notice-panel {
			grid-template-columns: 1fr;
		}
		.residential-notice-copy {
			grid-column: 1;
		}
	}
