:root {
	--navy: #102f4d;
	--navy-deep: #082238;
	--coral: #ff725e;
	--yellow: #ffd84a;
	--mint: #81dfbd;
	--warm-white: #fff8ec;
	--paper: #f4efe5;
	--ink: #11263a;
	--white: #ffffff;
	--line: rgba(16, 47, 77, 0.22);
	--container: 1440px;
	--page-pad: clamp(24px, 4vw, 72px);
	--section-gap: clamp(88px, 10vw, 152px);
	--font-main: "Noto Sans TC", sans-serif;
	--radius-small: 8px;
	--nav-height: 78px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body { margin: 0; overflow-x: hidden; background: var(--warm-white); color: var(--ink); font-family: var(--font-main); font-size: 17px; line-height: 1.8; }
body.is-menu-open { overflow: hidden; }

img { display: block; width: 100%; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { color: inherit; font: inherit; }

figure { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }

button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

.skip-link { position: fixed; top: 12px; left: 12px; z-index: 1000; padding: 10px 16px; background: var(--white); color: var(--navy); transform: translateY(-140%); transition: transform 0.2s ease; }
.skip-link:focus { transform: translateY(0); }

main { display: block; }
main .section-shell { width: min(100%, var(--container)); margin: 0 auto; padding-inline: var(--page-pad); }
main .section-kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; color: currentColor; font-size: 14px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
main .section-kicker::before { width: 34px; height: 6px; background: currentColor; content: ""; }
main .section-heading { max-width: 900px; margin-bottom: 24px; font-size: clamp(30px, 3.6vw, 50px); line-height: 1.24; letter-spacing: -0.025em; }
main .section-intro { max-width: 690px; margin-bottom: 48px; font-size: 18px; line-height: 1.85; }
main .text-link { display: inline-flex; align-items: center; gap: 12px; min-height: 48px; border-bottom: 3px solid currentColor; font-weight: 800; }
main .text-link::after { content: "→"; transition: transform 0.25s ease; }
main .text-link:hover::after { transform: translateX(6px); }

[data-reveal] { opacity: 0.5; clip-path: inset(0 9% 0 0); transition: opacity 0.7s ease, clip-path 0.8s cubic-bezier(0.2, 0.75, 0.25, 1); }
[data-reveal].is-visible { opacity: 1; clip-path: inset(0 0 0 0); }

/* header */
header { position: relative; overflow: hidden; background: var(--yellow); color: var(--navy-deep); }
header .site-nav { position: fixed; top: 0; left: 0; z-index: 100; display: grid; grid-template-columns: auto 1fr auto; align-items: center; width: 100%; min-height: var(--nav-height); padding: 12px var(--page-pad); border-bottom: 1px solid rgba(255, 255, 255, 0.18); background: var(--navy); color: var(--white); transition: min-height 0.25s ease, background-color 0.25s ease; }
header .site-nav.is-scrolled { min-height: 64px; background: rgba(8, 34, 56, 0.96); }
header .brand-lockup { display: flex; align-items: center; gap: 12px; font-weight: 900; line-height: 1.2; }
header .brand-mark { display: grid; place-items: center; width: 46px; height: 46px; transform: rotate(-5deg); }
header .brand-name { display: flex; flex-direction: column; font-size: 15px; letter-spacing: 0.04em; }
header .brand-name span { color: var(--mint); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; }
header .site-nav-list { display: flex; justify-content: center; gap: clamp(18px, 2.6vw, 42px); }
header .site-nav-list a { position: relative; padding: 10px 0; font-size: 14px; font-weight: 700; }
header .site-nav-list a::after { position: absolute; right: 0; bottom: 3px; left: 0; height: 3px; background: var(--coral); content: ""; transform: scaleX(0); transform-origin: left; transition: transform 0.22s ease; }
header .site-nav-list a:hover::after, header .site-nav-list a:focus-visible::after { transform: scaleX(1); }
header .nav-tools { display: flex; align-items: center; gap: 12px; }
header .language-list { display: flex; border: 1px solid rgba(255, 255, 255, 0.35); }
header .language-button { min-width: 40px; min-height: 38px; padding: 6px 8px; border: 0; border-right: 1px solid rgba(255, 255, 255, 0.25); background: transparent; color: var(--white); cursor: pointer; font-size: 12px; font-weight: 800; }
header .language-button:last-child { border-right: 0; }
header .language-button.is-active { background: var(--yellow); color: var(--navy); }
header .menu-toggle { display: none; width: 46px; height: 42px; border: 2px solid var(--white); background: transparent; color: var(--white); cursor: pointer; font-size: 14px; font-weight: 800; }
header .hero-stage { position: relative; min-height: 920px; padding-top: var(--nav-height); }
header .hero-wall { display: grid; grid-template-columns: 1.15fr 0.85fr 1.1fr 0.9fr 1fr; height: 700px; border-bottom: 8px solid var(--navy); background: var(--navy); gap: 5px; }
header .hero-frame { position: relative; overflow: hidden; background: var(--paper); }
header .hero-frame::after { position: absolute; inset: 0; border: 1px solid rgba(255, 255, 255, 0.55); content: ""; pointer-events: none; }
header .hero-frame img { height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.4s ease; }
header .hero-frame:hover img { transform: scale(1.035); }
header .hero-frame-a img { object-position: 52% 50%; }
header .hero-frame-b img { object-position: 50% 52%; }
header .hero-frame-c img { object-position: 50% 48%; }
header .hero-frame-d img { object-position: 58% 50%; }
header .hero-frame-e img { object-position: 50% 50%; }
header .hero-copy { position: absolute; bottom: 92px; left: var(--page-pad); z-index: 4; display: grid; grid-template-columns: minmax(0, 1fr) minmax(210px, 300px); width: min(920px, calc(100% - var(--page-pad) * 2)); border: 6px solid var(--navy); background: var(--warm-white); }
header .hero-message { padding: clamp(28px, 4vw, 58px); background: var(--navy); color: var(--white); }
header .hero-kicker { margin-bottom: 13px; color: var(--mint); font-size: 14px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
header .hero-message h1 { margin-bottom: 14px; font-size: clamp(36px, 5vw, 64px); line-height: 1.13; letter-spacing: -0.035em; }
header .hero-statement { max-width: 630px; margin-bottom: 26px; color: var(--yellow); font-size: clamp(22px, 2.5vw, 35px); font-weight: 900; line-height: 1.35; }
header .hero-summary { max-width: 610px; margin-bottom: 32px; color: rgba(255, 255, 255, 0.84); font-size: 17px; line-height: 1.85; }
header .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
header .hero-action { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 10px 21px; border: 3px solid var(--white); font-weight: 800; transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease; }
header .hero-action-primary { border-color: var(--coral); background: var(--coral); color: var(--navy-deep); }
header .hero-action:hover { transform: translateY(-2px); }
header .hero-action-secondary:hover { background: var(--white); color: var(--navy); }
header .hero-note { display: flex; flex-direction: column; justify-content: space-between; padding: 30px 26px; background: var(--coral); color: var(--navy-deep); }
header .hero-note-label { font-size: 13px; font-weight: 900; letter-spacing: 0.13em; }
header .hero-note-copy { margin: 22px 0; font-size: 22px; font-weight: 900; line-height: 1.45; }
header .hero-tag-list { display: flex; flex-wrap: wrap; gap: 7px; }
header .hero-tag-list li { padding: 7px 9px; border: 2px solid var(--navy); background: var(--yellow); font-size: 13px; font-weight: 800; line-height: 1.3; }
header .hero-ribbon { position: absolute; right: 0; bottom: 0; left: 0; display: flex; overflow: hidden; min-height: 48px; border-top: 4px solid var(--navy); background: var(--mint); color: var(--navy); }
header .hero-ribbon span { display: flex; flex: 1 0 auto; align-items: center; justify-content: center; min-width: 230px; padding: 9px 20px; border-right: 3px solid var(--navy); font-size: 14px; font-weight: 900; letter-spacing: 0.06em; }

/* worlds */
#worlds { padding: var(--section-gap) 0; background: var(--navy-deep); color: var(--white); }
#worlds .world-layout { display: grid; grid-template-columns: minmax(210px, 0.38fr) minmax(0, 1fr); gap: clamp(36px, 5vw, 80px); align-items: end; }
#worlds .world-heading-group { align-self: start; }
#worlds .section-intro { color: rgba(255, 255, 255, 0.72); }
#worlds .world-tab-list { margin-top: 50px; border-top: 2px solid rgba(255, 255, 255, 0.32); }
#worlds .world-tab { display: grid; grid-template-columns: 16px 1fr auto; align-items: center; gap: 14px; width: 100%; min-height: 68px; padding: 12px 4px; border: 0; border-bottom: 2px solid rgba(255, 255, 255, 0.25); background: transparent; color: var(--white); cursor: pointer; text-align: left; }
#worlds .world-tab-dot { width: 12px; height: 12px; border: 2px solid var(--white); background: transparent; border-radius: 50%; }
#worlds .world-tab-name { font-size: 18px; font-weight: 800; }
#worlds .world-tab-state { color: var(--mint); font-size: 13px; font-weight: 800; }
#worlds .world-tab.is-active { color: var(--yellow); }
#worlds .world-tab.is-active .world-tab-dot { border-color: var(--yellow); background: var(--yellow); }
#worlds .world-stage { position: relative; }
#worlds .world-media { position: relative; overflow: hidden; border: 5px solid var(--white); aspect-ratio: 16/9; background: var(--navy); }
#worlds .world-media::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(8, 34, 56, 0.74)); content: ""; pointer-events: none; }
#worlds .world-media img { height: 100%; object-fit: cover; object-position: center; transition: opacity 0.25s ease, transform 0.55s ease; }
#worlds .world-media.is-switching img { opacity: 0.25; transform: scale(1.025); }
#worlds .world-caption { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: end; margin-top: -54px; margin-left: clamp(18px, 4vw, 56px); position: relative; z-index: 2; padding: 22px 24px; border: 4px solid var(--navy-deep); background: var(--yellow); color: var(--navy-deep); }
#worlds .world-caption h3 { margin-bottom: 6px; font-size: clamp(22px, 2.5vw, 32px); line-height: 1.3; }
#worlds .world-caption p { max-width: 620px; margin-bottom: 0; line-height: 1.7; }
#worlds .world-status { align-self: center; padding: 7px 10px; border: 2px solid var(--navy); font-size: 13px; font-weight: 900; }

/* missions */
#missions { padding: var(--section-gap) 0; background: var(--warm-white); color: var(--navy); }
#missions .mission-header { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr); gap: clamp(30px, 7vw, 100px); align-items: end; margin-bottom: 64px; }
#missions .mission-header .section-intro { margin-bottom: 4px; }
#missions .mission-list { border-top: 5px solid var(--navy); }
#missions .mission-row { display: grid; grid-template-columns: 100px minmax(180px, 0.55fr) minmax( 280px, 1.25fr ) auto; align-items: center; gap: clamp(18px, 4vw, 64px); min-height: 138px; padding: 26px 0; border-bottom: 2px solid var(--navy); transition: padding-left 0.28s ease, background-color 0.28s ease; }
#missions .mission-row:hover { padding-left: 18px; background: rgba(255, 216, 74, 0.24); }
#missions .mission-symbol { display: grid; place-items: center; width: 76px; height: 76px; border: 4px solid var(--navy); background: var(--mission-color); font-size: 28px; font-weight: 900; border-radius: 50%; }
#missions .mission-row h3 { margin-bottom: 4px; font-size: clamp(22px, 2vw, 29px); line-height: 1.35; }
#missions .mission-short { margin-bottom: 0; color: rgba(16, 47, 77, 0.7); font-size: 14px; font-weight: 700; }
#missions .mission-detail { max-width: 650px; margin-bottom: 0; line-height: 1.75; }
#missions .mission-callout { display: inline-flex; align-items: center; min-height: 44px; padding: 7px 13px; border: 3px solid var(--navy); background: var(--mission-color); font-size: 14px; font-weight: 900; white-space: nowrap; }
#missions .mission-row-carry { --mission-color: var(--coral); }
#missions .mission-row-build { --mission-color: var(--yellow); }
#missions .mission-row-rescue { --mission-color: var(--mint); }
#missions .mission-row-escape { --mission-color: var(--white); }

/* crew */
#crew { padding: var(--section-gap) 0; background: var(--coral); color: var(--navy-deep); }
#crew .crew-heading-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 30px; align-items: end; margin-bottom: 50px; }
#crew .crew-heading-row .section-intro { margin-bottom: 0; }
#crew .crew-grid { display: grid; grid-template-columns: 1.05fr 0.9fr 1.05fr 0.9fr; gap: 12px; align-items: start; }
#crew .crew-member:nth-child(even) { margin-top: 72px; }
#crew .crew-portrait { position: relative; overflow: hidden; aspect-ratio: 4/5; border: 5px solid var(--navy); background: var(--yellow); }
#crew .crew-portrait img { height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.2, 0.75, 0.25, 1), filter 0.3s ease; }
#crew .crew-member:hover img { transform: scale(1.04); }
#crew .crew-member:nth-child(1) img { object-position: 50% 38%; }
#crew .crew-member:nth-child(2) img { object-position: 50% 30%; }
#crew .crew-member:nth-child(3) img { object-position: 50% 38%; }
#crew .crew-member:nth-child(4) img { object-position: 50% 45%; }
#crew .crew-caption { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: start; padding: 16px 3px 0; }
#crew .crew-caption h3 { margin-bottom: 3px; font-size: 20px; line-height: 1.4; }
#crew .crew-caption p { margin-bottom: 0; font-size: 14px; font-weight: 600; line-height: 1.65; }
#crew .crew-color { width: 26px; height: 26px; border: 3px solid var(--navy); background: var(--crew-color); border-radius: 50%; }
#crew .crew-member-blue { --crew-color: #4f85ff; }
#crew .crew-member-yellow { --crew-color: var(--yellow); }
#crew .crew-member-mint { --crew-color: var(--mint); }
#crew .crew-member-coral { --crew-color: #ff9fab; }

/* modes */
#modes { padding: var(--section-gap) 0; overflow: hidden; background: var(--yellow); color: var(--navy-deep); }
#modes .mode-layout { display: grid; grid-template-columns: minmax(260px, 0.58fr) minmax(500px, 1fr); gap: clamp(30px, 6vw, 90px); align-items: center; }
#modes .mode-arena { position: relative; min-height: 680px; }
#modes .mode-core { position: absolute; top: 50%; left: 50%; z-index: 2; display: flex; flex-direction: column; justify-content: center; width: 360px; height: 360px; padding: 56px; border: 7px solid var(--navy); background: var(--navy); color: var(--white); border-radius: 50%; transform: translate(-50%, -50%); }
#modes .mode-core::before { position: absolute; inset: 18px; border: 2px dashed var(--mint); border-radius: 50%; content: ""; }
#modes .mode-core-label { position: relative; margin-bottom: 10px; color: var(--mint); font-size: 13px; font-weight: 900; letter-spacing: 0.14em; }
#modes .mode-core h3 { position: relative; margin-bottom: 16px; color: var(--yellow); font-size: clamp(28px, 3vw, 40px); line-height: 1.25; }
#modes .mode-core p { position: relative; margin-bottom: 0; line-height: 1.75; }
#modes .mode-orbit-list li { position: absolute; width: 220px; padding: 18px 20px; border: 4px solid var(--navy); background: var(--warm-white); }
#modes .mode-orbit-list h3 { margin-bottom: 6px; font-size: 20px; line-height: 1.35; }
#modes .mode-orbit-list p { margin-bottom: 0; font-size: 14px; line-height: 1.65; }
#modes .mode-orbit-list li:nth-child(1) { top: 4%; left: 5%; background: var(--coral); transform: rotate(-3deg); }
#modes .mode-orbit-list li:nth-child(2) { top: 10%; right: 0; background: var(--mint); transform: rotate(3deg); }
#modes .mode-orbit-list li:nth-child(3) { bottom: 8%; left: 0; background: var(--white); transform: rotate(2deg); }
#modes .mode-orbit-list li:nth-child(4) { right: 4%; bottom: 2%; background: var(--coral); transform: rotate(-2deg); }
#modes .mode-path { position: absolute; top: 50%; left: 50%; width: 570px; height: 570px; border: 4px solid var(--navy); border-radius: 50%; transform: translate(-50%, -50%); }
#modes .mode-path::before { position: absolute; inset: 34px; border: 2px solid rgba(16, 47, 77, 0.5); border-radius: 50%; content: ""; }

/* watch */
#watch { padding: var(--section-gap) 0; background: var(--mint); color: var(--navy-deep); }
#watch .watch-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr); gap: 0; border: 6px solid var(--navy); background: var(--navy); }
#watch .watch-stage { position: relative; overflow: hidden; min-height: 580px; background: var(--navy-deep); }
#watch .watch-stage img { height: 100%; object-fit: cover; object-position: center; transition: opacity 0.25s ease, transform 0.55s ease; }
#watch .watch-stage.is-switching img { opacity: 0.25; transform: scale(1.025); }
#watch .watch-overlay { position: absolute; right: 0; bottom: 0; left: 0; padding: 90px 34px 30px; background: linear-gradient(180deg, transparent, rgba(8, 34, 56, 0.92)); color: var(--white); }
#watch .watch-overlay h3 { margin-bottom: 8px; font-size: clamp(25px, 3vw, 38px); line-height: 1.3; }
#watch .watch-overlay p { max-width: 650px; margin-bottom: 0; color: rgba(255, 255, 255, 0.78); }
#watch .watch-play { position: absolute; top: 28px; left: 28px; z-index: 3; display: grid; place-items: center; width: 86px; height: 86px; border: 4px solid var(--navy); background: var(--yellow); color: var(--navy); cursor: pointer; border-radius: 50%; font-size: 25px; font-weight: 900; transition: transform 0.2s ease; }
#watch .watch-play:hover { transform: scale(1.06); }
#watch .watch-menu { display: flex; flex-direction: column; background: var(--warm-white); }
#watch .watch-menu-header { padding: 28px 24px 22px; border-bottom: 4px solid var(--navy); background: var(--coral); }
#watch .watch-menu-header p { margin-bottom: 0; font-size: 14px; font-weight: 900; letter-spacing: 0.1em; }
#watch .watch-tab { flex: 1; display: grid; grid-template-columns: 18px 1fr; gap: 14px; align-content: center; min-height: 128px; padding: 22px 24px; border: 0; border-bottom: 3px solid var(--navy); background: var(--warm-white); color: var(--navy); cursor: pointer; text-align: left; }
#watch .watch-tab:last-child { border-bottom: 0; }
#watch .watch-tab-marker { width: 14px; height: 14px; margin-top: 7px; border: 3px solid var(--navy); background: transparent; border-radius: 50%; }
#watch .watch-tab h3 { margin-bottom: 5px; font-size: 18px; line-height: 1.4; }
#watch .watch-tab p { margin-bottom: 0; color: rgba(16, 47, 77, 0.7); font-size: 14px; line-height: 1.6; }
#watch .watch-tab.is-active { background: var(--yellow); }
#watch .watch-tab.is-active .watch-tab-marker { background: var(--coral); }

/* events */
#events { padding: var(--section-gap) 0; background: var(--warm-white); color: var(--navy); }
#events .event-heading-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr); gap: clamp(30px, 7vw, 100px); align-items: end; margin-bottom: 54px; }
#events .event-heading-row .section-intro { margin-bottom: 0; }
#events .event-list { border: 5px solid var(--navy); }
#events .event-row { display: grid; grid-template-columns: minmax(170px, 0.35fr) minmax(0, 1fr) auto; gap: clamp(20px, 4vw, 58px); align-items: center; min-height: 160px; padding: 28px clamp(22px, 4vw, 54px); border-bottom: 4px solid var(--navy); background: var(--event-color); }
#events .event-row:last-child { border-bottom: 0; }
#events .event-type { display: inline-flex; align-items: center; width: max-content; min-height: 39px; padding: 5px 11px; border: 3px solid var(--navy); background: var(--warm-white); font-size: 13px; font-weight: 900; }
#events .event-row h3 { margin-bottom: 7px; font-size: clamp(22px, 2.4vw, 32px); line-height: 1.35; }
#events .event-row p { max-width: 720px; margin-bottom: 0; line-height: 1.75; }
#events .event-arrow { display: grid; place-items: center; width: 54px; height: 54px; border: 4px solid var(--navy); background: var(--warm-white); font-size: 25px; font-weight: 900; }
#events .event-row-festival { --event-color: var(--yellow); }
#events .event-row-stream { --event-color: var(--mint); }
#events .event-row-challenge { --event-color: var(--coral); }
#events .challenge-banner { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.4fr); gap: 28px; align-items: end; margin-top: 48px; padding: clamp(28px, 5vw, 66px); background: var(--navy); color: var(--white); }
#events .challenge-banner h3 { max-width: 820px; margin-bottom: 15px; color: var(--yellow); font-size: clamp(27px, 3.2vw, 44px); line-height: 1.3; }
#events .challenge-banner p { max-width: 730px; margin-bottom: 0; color: rgba(255, 255, 255, 0.76); }
#events .challenge-banner .text-link { justify-self: end; color: var(--mint); }

/* footer */
footer { padding: 78px var(--page-pad) 30px; background: var(--navy-deep); color: var(--white); }
footer .footer-shell { width: min(100%, var(--container)); margin: 0 auto; }
footer .footer-statement { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(250px, 0.45fr); gap: clamp(34px, 7vw, 110px); align-items: end; padding-bottom: 62px; border-bottom: 2px solid rgba(255, 255, 255, 0.28); }
footer .footer-statement h2 { max-width: 900px; margin-bottom: 0; color: var(--yellow); font-size: clamp(34px, 5.4vw, 70px); line-height: 1.18; letter-spacing: -0.04em; }
footer .footer-statement p { margin-bottom: 0; color: rgba(255, 255, 255, 0.72); font-size: 17px; line-height: 1.85; }
footer .footer-navigation { display: grid; grid-template-columns: auto 1fr auto; gap: 36px; align-items: start; padding: 36px 0 52px; }
footer .footer-brand { font-size: 20px; font-weight: 900; line-height: 1.35; }
footer .footer-brand span { display: block; color: var(--mint); font-size: 12px; letter-spacing: 0.12em; }
footer .footer-link-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px 30px; }
footer .footer-link-list a { border-bottom: 2px solid transparent; font-size: 14px; font-weight: 700; }
footer .footer-link-list a:hover { border-color: var(--coral); }
footer .footer-language { color: rgba(255, 255, 255, 0.65); font-size: 13px; font-weight: 700; text-align: right; }
footer .footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.16); color: rgba(255, 255, 255, 0.58); font-size: 13px; }
footer .footer-bottom p { margin-bottom: 0; }

@media (max-width: 1280px) {
	:root { --page-pad: clamp(24px, 3vw, 46px); }
	header .hero-wall { height: 640px; }
	header .hero-stage { min-height: 870px; }
	header .hero-copy { bottom: 86px; width: min(850px, calc(100% - var(--page-pad) * 2)); }
	header .hero-message { padding: 38px; }
	#modes .mode-arena { min-height: 630px; }
	#modes .mode-path { width: 520px; height: 520px; }
	#modes .mode-core { width: 330px; height: 330px; padding: 48px; }
	#modes .mode-orbit-list li { width: 200px; }
	#watch .watch-stage { min-height: 520px; }
}
@media (max-width: 960px) {
	:root { --nav-height: 68px; }
	header .site-nav { grid-template-columns: 1fr auto; }
	header .site-nav-list { position: fixed; top: var(--nav-height); right: 0; bottom: 0; left: 0; z-index: 98; display: flex; flex-direction: column; justify-content: flex-start; gap: 0; padding: 32px var(--page-pad); background: var(--navy-deep); visibility: hidden; opacity: 0; transform: translateX(100%); transition: opacity 0.25s ease, transform 0.3s ease, visibility 0.3s ease; }
	header .site-nav-list.is-open { visibility: visible; opacity: 1; transform: translateX(0); }
	header .site-nav-list li { border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
	header .site-nav-list a { display: block; padding: 19px 0; font-size: 20px; }
	header .nav-tools { justify-self: end; }
	header .menu-toggle { display: block; }
	header .language-list { position: absolute; top: calc(100% + 8px); right: var(--page-pad); display: none; background: var(--navy); }
	header .site-nav.is-language-open .language-list { display: flex; }
	header .hero-stage { min-height: auto; padding-bottom: 92px; }
	header .hero-wall { grid-template-columns: 1fr 1fr 1fr 1fr; height: 570px; }
	header .hero-frame-e { display: none; }
	header .hero-copy { position: relative; bottom: auto; left: auto; grid-template-columns: 1fr 240px; width: calc(100% - var(--page-pad) * 2); margin: -86px auto 0; }
	header .hero-ribbon { position: absolute; }
	#worlds .world-layout { grid-template-columns: 1fr; }
	#worlds .world-heading-group { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: end; }
	#worlds .world-tab-list { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 0; border-top: 0; }
	#worlds .world-tab { grid-template-columns: 14px 1fr; min-height: 72px; border-top: 2px solid rgba(255, 255, 255, 0.25); border-right: 2px solid rgba(255, 255, 255, 0.25); }
	#worlds .world-tab:last-child { border-right: 0; }
	#worlds .world-tab-state { display: none; }
	#missions .mission-row { grid-template-columns: 82px minmax(160px, 0.5fr) minmax(240px, 1fr); }
	#missions .mission-callout { grid-column: 2/4; justify-self: start; }
	#crew .crew-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 14px; }
	#crew .crew-member:nth-child(even) { margin-top: 0; }
	#crew .crew-member:nth-child(2), #crew .crew-member:nth-child(4) { margin-top: 56px; }
	#modes .mode-layout { grid-template-columns: 1fr; }
	#modes .mode-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: end; }
	#modes .mode-copy .section-intro { margin-bottom: 0; }
	#modes .mode-arena { width: min(100%, 760px); margin: 0 auto; }
	#watch .watch-layout { grid-template-columns: 1fr; }
	#watch .watch-menu { display: grid; grid-template-columns: repeat(3, 1fr); }
	#watch .watch-menu-header { grid-column: 1/4; }
	#watch .watch-tab { min-height: 150px; border-right: 3px solid var(--navy); border-bottom: 0; }
	#watch .watch-tab:last-child { border-right: 0; }
	#events .event-row { grid-template-columns: 150px 1fr auto; }
	footer .footer-navigation { grid-template-columns: 1fr; }
	footer .footer-link-list { justify-content: flex-start; }
	footer .footer-language { text-align: left; }
}
@media (max-width: 768px) {
	body { font-size: 16px; }
	main .section-intro { font-size: 17px; }
	header .brand-name { font-size: 13px; }
	header .hero-wall { grid-template-columns: 1fr 1fr; height: auto; }
	header .hero-frame { aspect-ratio: 4/5; }
	header .hero-frame-a { grid-row: span 2; }
	header .hero-frame-b { aspect-ratio: 1/1; }
	header .hero-frame-c { aspect-ratio: 1/1; }
	header .hero-frame-d { grid-column: 1/3; aspect-ratio: 16/7; }
	header .hero-copy { grid-template-columns: 1fr; margin-top: -56px; }
	header .hero-message { padding: 30px 26px; }
	header .hero-message h1 { font-size: clamp(36px, 9vw, 48px); }
	header .hero-note { flex-direction: row; align-items: center; gap: 20px; padding: 22px 24px; }
	header .hero-note-copy { margin: 0; font-size: 18px; }
	header .hero-tag-list { justify-content: flex-end; }
	header .hero-ribbon span { min-width: 200px; }
	#worlds .world-heading-group { grid-template-columns: 1fr; }
	#worlds .world-tab-list { grid-template-columns: 1fr 1fr; }
	#worlds .world-tab { border-right: 2px solid rgba(255, 255, 255, 0.25); }
	#worlds .world-tab:nth-child(even) { border-right: 0; }
	#worlds .world-caption { grid-template-columns: 1fr; margin-top: 0; margin-left: 0; border-top: 0; }
	#worlds .world-status { justify-self: start; }
	#missions .mission-header { grid-template-columns: 1fr; margin-bottom: 38px; }
	#missions .mission-row { grid-template-columns: 70px 1fr; gap: 16px 22px; min-height: 0; }
	#missions .mission-symbol { grid-row: 1/3; width: 62px; height: 62px; }
	#missions .mission-detail { grid-column: 2; }
	#missions .mission-callout { grid-column: 2; }
	#crew .crew-heading-row { grid-template-columns: 1fr; }
	#crew .crew-heading-row .text-link { justify-self: start; }
	#modes .mode-copy { grid-template-columns: 1fr; }
	#modes .mode-arena { min-height: auto; padding-top: 30px; }
	#modes .mode-path { display: none; }
	#modes .mode-core { position: relative; top: auto; left: auto; width: min(100%, 380px); height: auto; min-height: 310px; margin: 0 auto 24px; transform: none; }
	#modes .mode-orbit-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
	#modes .mode-orbit-list li { position: relative; top: auto; right: auto; bottom: auto; left: auto; width: auto; min-height: 160px; transform: none !important; }
	#watch .watch-stage { min-height: 440px; }
	#watch .watch-menu { grid-template-columns: 1fr; }
	#watch .watch-menu-header { grid-column: auto; }
	#watch .watch-tab { min-height: 116px; border-right: 0; border-bottom: 3px solid var(--navy); }
	#watch .watch-tab:last-child { border-bottom: 0; }
	#events .event-heading-row { grid-template-columns: 1fr; }
	#events .event-row { grid-template-columns: 1fr auto; gap: 18px; }
	#events .event-type { grid-column: 1; }
	#events .event-copy { grid-column: 1; }
	#events .event-arrow { grid-column: 2; grid-row: 1/3; }
	#events .challenge-banner { grid-template-columns: 1fr; }
	#events .challenge-banner .text-link { justify-self: start; }
	footer .footer-statement { grid-template-columns: 1fr; }
	footer .footer-bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 500px) {
	:root { --page-pad: 18px; --section-gap: 78px; }
	body { font-size: 16px; }
	main .section-heading { font-size: clamp(29px, 9vw, 37px); }
	main .section-intro { margin-bottom: 34px; }
	header .site-nav { padding-inline: 16px; }
	header .brand-mark { width: 41px; height: 41px; }
	header .brand-name span { display: none; }
	header .nav-tools { gap: 7px; }
	header .menu-toggle { width: 43px; font-size: 13px; }
	header .language-list { right: 16px; }
	header .hero-frame-a { grid-row: span 1; }
	header .hero-frame-a, header .hero-frame-b, header .hero-frame-c { aspect-ratio: 1/1; }
	header .hero-frame-d { grid-column: auto; aspect-ratio: 1/1; }
	header .hero-copy { width: calc(100% - 24px); margin-top: -28px; border-width: 4px; }
	header .hero-message { padding: 26px 21px; }
	header .hero-message h1 { font-size: clamp(34px, 10.5vw, 40px); }
	header .hero-statement { font-size: 23px; }
	header .hero-summary { font-size: 16px; }
	header .hero-actions { flex-direction: column; }
	header .hero-action { width: 100%; }
	header .hero-note { display: block; }
	header .hero-note-copy { margin: 8px 0 16px; }
	header .hero-tag-list { justify-content: flex-start; }
	header .hero-ribbon span { min-width: 180px; font-size: 13px; }
	#worlds .world-tab-list { grid-template-columns: 1fr; }
	#worlds .world-tab { border-right: 0; }
	#worlds .world-media { aspect-ratio: 4/3; }
	#worlds .world-caption { padding: 20px 18px; }
	#missions .mission-row { grid-template-columns: 54px 1fr; padding: 24px 0; }
	#missions .mission-symbol { width: 50px; height: 50px; border-width: 3px; font-size: 21px; }
	#missions .mission-callout { white-space: normal; }
	#crew .crew-grid { grid-template-columns: 1fr 1fr; gap: 28px 9px; }
	#crew .crew-member:nth-child(2), #crew .crew-member:nth-child(4) { margin-top: 30px; }
	#crew .crew-portrait { border-width: 3px; }
	#crew .crew-caption { display: block; }
	#crew .crew-caption h3 { font-size: 17px; }
	#crew .crew-color { width: 20px; height: 20px; margin-top: 8px; }
	#modes .mode-core { min-height: 280px; padding: 46px 34px; }
	#modes .mode-orbit-list { grid-template-columns: 1fr; }
	#modes .mode-orbit-list li { min-height: 0; }
	#watch .watch-layout { border-width: 4px; }
	#watch .watch-stage { min-height: 390px; }
	#watch .watch-play { top: 18px; left: 18px; width: 68px; height: 68px; }
	#watch .watch-overlay { padding: 82px 20px 22px; }
	#events .event-list { border-width: 4px; }
	#events .event-row { padding: 24px 18px; }
	#events .event-arrow { width: 44px; height: 44px; }
	#events .challenge-banner { padding: 28px 22px; }
	footer { padding-top: 62px; }
	footer .footer-statement h2 { font-size: clamp(34px, 10vw, 44px); }
	footer .footer-link-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
}
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.01ms; animation-iteration-count: 1; transition-duration: 0.01ms; }
	[data-reveal] { opacity: 1; clip-path: none; }
}