:root {
  --ink: #0f1f33;
  --ink-deep: #081a2f;
  --muted: #647184;
  --paper: #ffffff;
  --canvas: #f4f7fa;
  --line: #dbe3eb;
  --accent: #087c72;
  --accent-dark: #05655d;
  --red: #c8102e;
  --shadow-sm: 0 12px 30px rgba(8, 26, 47, 0.08);
  --shadow-lg: 0 28px 70px rgba(8, 26, 47, 0.16);
  --radius: 6px;
  --font: "Segoe UI", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

.page-shell {
  width: min(1320px, calc(100% - 96px));
  margin: 0 auto;
}

.section,
.section-band,
.roles-section,
.future-section,
.activity-section {
  scroll-margin-top: 84px;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: #fff;
  transition: color 240ms ease, background-color 240ms ease, box-shadow 240ms ease;
}

.topbar-inner {
  width: min(1320px, calc(100% - 96px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.topbar.is-scrolled,
.apply-page .topbar {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(15, 31, 51, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  width: 44px;
  height: 44px;
  flex: none;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
  box-shadow: 0 4px 18px rgba(8, 26, 47, 0.14);
}

.topbar.is-scrolled .brand img,
.apply-page .brand img {
  border-color: #e5ebf0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 30px 0 27px;
  opacity: 0.82;
  transition: opacity 180ms ease, color 180ms ease;
}

.nav a:not(.nav-apply)::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav a:hover,
.nav a.is-active {
  opacity: 1;
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav .nav-apply {
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  opacity: 1;
}

.topbar.is-scrolled .nav-apply,
.apply-page .nav-apply {
  border-color: var(--accent);
  color: var(--accent);
}

.nav-apply:hover {
  background: rgba(255, 255, 255, 0.12);
}

.topbar.is-scrolled .nav-apply:hover,
.apply-page .nav-apply:hover {
  color: #fff;
  background: var(--accent);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  border: 0;
  padding: 10px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.scroll-progress {
  height: 2px;
  overflow: hidden;
}

.scroll-progress span {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}

.hero {
  --hero-shift: 0px;
  position: relative;
  min-height: min(900px, 100svh);
  overflow: hidden;
  color: #fff;
  background: var(--ink-deep);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  transform: translateY(var(--hero-shift)) scale(1.06);
  transform-origin: center;
  transition: transform 60ms linear;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 18, 34, 0.94) 0%, rgba(4, 18, 34, 0.76) 40%, rgba(4, 18, 34, 0.16) 78%),
    linear-gradient(0deg, rgba(4, 18, 34, 0.78) 0%, transparent 50%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: min(900px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 420px);
  align-items: end;
  gap: 72px;
  padding-top: 160px;
  padding-bottom: 92px;
}

.hero-copy {
  max-width: 780px;
}

.hero-kicker,
.section-index,
.role-modal-kicker {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-kicker {
  color: #79d2c8;
}

.hero h1 {
  margin-bottom: 12px;
  font-size: clamp(58px, 7.4vw, 112px);
  font-weight: 900;
  line-height: 1;
}

.hero-slogan {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(24px, 2.3vw, 38px);
  font-weight: 800;
  line-height: 1.25;
}

.hero .lead {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.btn b {
  font-size: 19px;
  line-height: 1;
  transition: transform 200ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover b {
  transform: translateX(4px);
}

.btn.primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(8, 124, 114, 0.25);
}

.btn.primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 18px 36px rgba(8, 124, 114, 0.32);
}

.btn.light {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.btn.light:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-stats {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-stats div {
  display: grid;
  grid-template-columns: minmax(100px, auto) 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 4px;
}

.hero-stats div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stats strong {
  color: #fff;
  font-size: 30px;
  line-height: 1.15;
}

.hero-stats div:last-child strong {
  font-size: 18px;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.hero-scroll {
  position: absolute;
  right: 32px;
  bottom: 0;
  z-index: 2;
  width: 1px;
  height: 78px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.hero-scroll::after {
  width: 1px;
  height: 28px;
  display: block;
  background: #fff;
  content: "";
  animation: scrollCue 2s ease-in-out infinite;
}

@keyframes scrollCue {
  0% { transform: translateY(-30px); }
  70%, 100% { transform: translateY(80px); }
}

.section-band {
  background: var(--canvas);
}

.future-section {
  padding: 128px 0;
}

.future-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.future-title {
  position: sticky;
  top: 132px;
  padding-top: 8px;
}

.future-title h2,
.section-head h2,
.roles-head h2,
.activity-head h2,
.apply-hero h1 {
  margin-bottom: 0;
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 900;
  line-height: 1.16;
}

.future-title h2 {
  font-size: clamp(36px, 3.4vw, 50px);
  white-space: nowrap;
}

.future-title > p:last-child,
.section-head > p:last-child,
.roles-head > p:last-child,
.activity-head > p:last-child {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.section-line {
  width: 64px;
  height: 3px;
  display: block;
  margin-top: 24px;
  background: var(--red);
  transform-origin: left;
}

.future-cards {
  min-width: 0;
  height: 590px;
  display: flex;
  gap: 12px;
  overflow: hidden;
}

.future-card {
  position: relative;
  min-width: 0;
  flex: 1 1 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink-deep);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
  transition: flex-grow 520ms cubic-bezier(0.22, 1, 0.36, 1), transform 360ms ease, box-shadow 360ms ease;
}

.future-card::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(0deg, rgba(4, 18, 34, 0.9) 0%, rgba(4, 18, 34, 0.08) 62%);
  content: "";
}

.future-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.02);
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1), filter 360ms ease;
}

.future-card:nth-child(1) img,
.future-card:nth-child(2) img {
  object-position: center;
}

.future-card:nth-child(3) img {
  object-position: 48% center;
}

.future-cards:has(.future-card:hover) .future-card:not(:hover),
.future-cards:has(.future-card:focus-visible) .future-card:not(:focus-visible) {
  flex-grow: 0.78;
}

.future-card:hover,
.future-card:focus-visible {
  flex-grow: 2.25;
  outline: 0;
  box-shadow: var(--shadow-lg);
}

.future-card:hover img,
.future-card:focus-visible img {
  filter: saturate(1) contrast(1.05);
  transform: scale(1.035);
}

.future-card-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 32px 28px;
  color: #fff;
}

.future-card-copy b {
  display: block;
  margin-bottom: 12px;
  color: #7ad4cb;
  font-size: 12px;
}

.future-card-copy span {
  display: block;
  max-width: 360px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.3;
}

.future-card-copy p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 280ms ease 90ms, transform 280ms ease 90ms;
}

.future-card:hover .future-card-copy p,
.future-card:focus-visible .future-card-copy p {
  opacity: 1;
  transform: translateY(0);
}

.section {
  padding: 124px 0;
}

.awards-section {
  background: #fff;
}

.section-head,
.roles-head {
  max-width: 840px;
  margin-bottom: 54px;
}

.awards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.awards article {
  position: relative;
  min-width: 0;
  min-height: 238px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px;
  overflow: hidden;
  background: #fff;
  transition: color 280ms ease, background-color 280ms ease, transform 280ms ease, box-shadow 280ms ease;
}

.award-card-button {
  cursor: pointer;
}

.award-card-button:focus-visible {
  z-index: 1;
  outline: 3px solid rgba(0, 138, 128, 0.28);
  outline-offset: -3px;
}

.awards article::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--accent);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 280ms ease;
}

.awards article:hover {
  z-index: 1;
  color: #fff;
  background: var(--ink-deep);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.awards article:hover::before {
  transform: scaleY(1);
}

.award-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 40px;
}

.award-top span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid #b9c7d4;
  border-radius: 999px;
  padding: 3px 11px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.award-top b {
  color: #c5ced7;
  font-size: 12px;
}

.awards h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.35;
}

.awards p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  transition: color 280ms ease;
}

.awards p + h3 {
  margin-top: 22px;
}

.awards article:hover p,
.awards article:hover .award-top b {
  color: rgba(255, 255, 255, 0.68);
}

.awards article:hover .award-top span {
  border-color: rgba(255, 255, 255, 0.4);
  color: #82d9d0;
}

.roles-section {
  padding: 128px 0;
  background: var(--canvas);
}

.roles-head {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.roles-head .section-line {
  margin-right: auto;
  margin-left: auto;
}

.roles-head > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.activity-section {
  overflow: hidden;
  background: #fff;
}

.activity-head {
  max-width: 880px;
  margin: 0 auto 54px;
  text-align: center;
}

.activity-head .section-line {
  margin-right: auto;
  margin-left: auto;
}

.activity-head > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.activity-carousel {
  position: relative;
  padding-bottom: 74px;
}

.activity-track {
  width: min(1580px, calc(100% + 280px));
  height: 370px;
  display: flex;
  align-items: stretch;
  gap: 24px;
  margin: 0 auto;
  transform: translateX(var(--activity-shift, 0px));
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.activity-card {
  position: relative;
  min-width: 0;
  flex: 0 0 clamp(280px, 22vw, 360px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink-deep);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
  opacity: 0.78;
  transform: scale(0.94);
  transition: flex-basis 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 320ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease;
}

.activity-card.is-active {
  flex-basis: min(620px, 42vw);
  opacity: 1;
  transform: scale(1);
  box-shadow: var(--shadow-lg);
}

.activity-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(4, 18, 34, 0.72) 0%, rgba(4, 18, 34, 0.04) 62%);
  content: "";
}

.activity-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
  transform: scale(1.02);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 320ms ease;
}

.activity-card.is-active img,
.activity-card:hover img {
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.06);
}

.activity-card:nth-child(1) img {
  object-position: center 54%;
}

.activity-card:nth-child(2) img {
  object-position: center 48%;
}

.activity-card:nth-child(3) img {
  object-position: center 50%;
}

.activity-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 30px;
  color: #fff;
}

.activity-copy span {
  display: block;
  margin-bottom: 7px;
  color: #7ad4cb;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.activity-copy h3 {
  margin-bottom: 8px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
}

.activity-copy p {
  max-width: 430px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.activity-card.is-active .activity-copy p {
  opacity: 1;
  transform: translateY(0);
}

.activity-arrow {
  position: absolute;
  top: 152px;
  z-index: 3;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 16px 40px rgba(8, 26, 47, 0.18);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, color 200ms ease;
}

.activity-arrow:hover {
  color: var(--accent);
  box-shadow: 0 20px 48px rgba(8, 26, 47, 0.22);
  transform: translateY(-2px);
}

.activity-arrow.prev {
  left: max(28px, calc((100% - 1320px) / 2 + 12px));
}

.activity-arrow.next {
  right: max(28px, calc((100% - 1320px) / 2 + 12px));
}

.activity-dots {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 11px;
}

.activity-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: #c8d2dc;
  cursor: pointer;
  transition: width 220ms ease, background-color 220ms ease;
}

.activity-dots button.is-active {
  width: 34px;
  background: var(--red);
}

.activity-more {
  position: absolute;
  right: 50%;
  bottom: -30px;
  z-index: 2;
  min-width: 110px;
  border: 1px solid #9cabb8;
  border-radius: var(--radius);
  padding: 10px 22px;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  transform: translateX(50%);
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.activity-more:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateX(50%) translateY(-2px);
}

.youth-section {
  overflow: hidden;
  background: #fff;
}

.youth-head {
  max-width: 900px;
  margin-bottom: 42px;
}

.youth-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) repeat(3, minmax(0, 0.82fr));
  gap: 14px;
}

.youth-card {
  position: relative;
  min-height: 276px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.youth-card-featured {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  background:
    linear-gradient(90deg, rgba(200, 16, 46, 0.08), transparent 42%),
    #fff;
}

.youth-photo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(244, 247, 250, 0.12), rgba(244, 247, 250, 0.9)),
    linear-gradient(180deg, #fff, #f7f9fb);
}

.youth-photo::after {
  position: absolute;
  right: -34px;
  bottom: 0;
  left: 0;
  height: 88px;
  background: linear-gradient(135deg, transparent 0 22%, var(--red) 22.4% 70%, transparent 70.4%);
  content: "";
}

.youth-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.96) contrast(1.02);
}

.youth-quote {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 32px;
  background: rgba(255, 255, 255, 0.9);
}

.quote-mark {
  height: 27px;
  color: var(--red);
  font-size: 52px;
  font-weight: 900;
  line-height: 0.8;
}

.youth-quote h3 {
  max-width: 540px;
  margin-bottom: 12px;
  font-size: clamp(21px, 1.65vw, 28px);
  font-weight: 900;
  line-height: 1.35;
}

.youth-quote p {
  max-width: 560px;
  margin-bottom: 22px;
  color: #5d6876;
  font-size: 13px;
  line-height: 1.75;
}

.youth-person {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.youth-person strong,
.youth-person span {
  display: block;
}

.youth-person strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.youth-person span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.youth-card-empty {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--ink);
  background:
    linear-gradient(135deg, transparent 0 40%, rgba(200, 16, 46, 0.08) 40.2% 62%, transparent 62.2%),
    linear-gradient(180deg, #fff, #f5f8fb);
}

.youth-card-empty::before {
  position: absolute;
  top: 22px;
  left: 24px;
  width: 54px;
  height: 54px;
  border: 1px dashed #b9c7d4;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 47%, #b9c7d4 47% 53%, transparent 53%),
    linear-gradient(0deg, transparent 47%, #b9c7d4 47% 53%, transparent 53%);
  content: "";
}

.youth-card-empty span {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.youth-card-empty strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  line-height: 1.25;
}

.youth-card-empty p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.roles-stage {
  position: relative;
  min-height: 610px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: var(--radius);
  background: #071c31;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.roles-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 16% 20%, rgba(67, 203, 190, 0.22), transparent 30%),
    radial-gradient(circle at 78% 68%, rgba(95, 137, 184, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(6, 32, 55, 0.98) 0%, rgba(4, 18, 34, 0.98) 52%, rgba(5, 43, 61, 0.96) 100%);
}

.roles-bg::before,
.roles-bg::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.roles-bg::before {
  opacity: 0.72;
  background:
    linear-gradient(115deg, transparent 0 13%, rgba(117, 226, 215, 0.18) 13.15%, transparent 13.4% 34%, rgba(255, 255, 255, 0.11) 34.15%, transparent 34.35%),
    linear-gradient(115deg, transparent 0 58%, rgba(117, 226, 215, 0.16) 58.15%, transparent 58.38%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 25% 100%, 100% 25%;
}

.roles-bg::after {
  background:
    radial-gradient(circle at 20% 28%, rgba(255, 255, 255, 0.08), transparent 9%),
    radial-gradient(circle at 70% 58%, rgba(255, 255, 255, 0.07), transparent 10%),
    linear-gradient(180deg, rgba(4, 18, 34, 0.04), rgba(4, 18, 34, 0.38));
}

.role-item {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  padding: 40px 30px;
  color: #fff;
  outline: 0;
  transition: background-color 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.role-item:last-child {
  border-right: 0;
}

.role-item:hover,
.role-item:focus-within,
.role-item:focus-visible {
  background: rgba(8, 124, 114, 0.92);
}

.role-no {
  position: absolute;
  top: 30px;
  left: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
}

.role-copy {
  display: block;
  transform: translateY(24px);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.role-item:hover .role-copy,
.role-item:focus-within .role-copy,
.role-item:focus-visible .role-copy {
  transform: translateY(-24px);
}

.role-item strong {
  display: block;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 900;
  line-height: 1.1;
}

.role-item em {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-style: normal;
}

.role-actions {
  position: absolute;
  right: 30px;
  bottom: 38px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 260ms ease 70ms, transform 260ms ease 70ms;
}

.role-item:hover .role-actions,
.role-item:focus-within .role-actions,
.role-item:focus-visible .role-actions {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.role-actions a,
.role-actions button {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  padding: 8px 0;
  color: #fff;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.role-actions a::after,
.role-actions button::after {
  content: "→";
  transition: transform 180ms ease;
}

.role-actions a:hover::after,
.role-actions button:hover::after {
  transform: translateX(4px);
}

.apply-cta {
  padding: 92px 0;
  color: #fff;
  background: var(--ink-deep);
}

.apply-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 54px;
}

.apply-cta .section-head {
  margin: 0;
}

.apply-cta .section-head h2 {
  font-size: clamp(38px, 4.6vw, 64px);
}

.apply-cta .section-head > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.footer {
  position: relative;
  overflow: hidden;
  color: #d8e0e8;
  background: #05111f;
}

.footer::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(36, 156, 147, 0.09);
  filter: blur(70px);
  pointer-events: none;
}

.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(520px, 1.28fr);
  align-items: start;
  gap: clamp(48px, 7vw, 104px);
  padding-top: 48px;
  padding-bottom: 42px;
}

.footer-intro p {
  max-width: 320px;
  margin: 16px 0 0;
  color: rgba(216, 224, 232, 0.62);
  font-size: 13px;
  line-height: 1.75;
}

.footer-links > p {
  margin: 1px 0 15px;
  color: rgba(216, 224, 232, 0.48);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

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

.footer-links a {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 13px 16px;
  color: #d8e0e8;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
  background: rgba(255, 255, 255, 0.025);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  border-color: rgba(126, 214, 205, 0.5);
  color: #7ed6cd;
  background: rgba(126, 214, 205, 0.06);
  transform: translateY(-2px);
}

.footer-links a span {
  flex: 0 0 auto;
  color: #7ed6cd;
}

.footer-bottom {
  position: relative;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(216, 224, 232, 0.5);
  font-size: 12px;
}

.footer-bottom a {
  color: #7ed6cd;
  font-weight: 800;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.role-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.role-modal[aria-hidden="false"] {
  display: flex;
}

.role-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 13, 25, 0.74);
  backdrop-filter: blur(8px);
  animation: modalFade 200ms ease both;
}

.role-modal-panel {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: calc(100vh - 48px);
  border-radius: var(--radius);
  padding: 44px;
  overflow-y: auto;
  background: #fff;
  box-shadow: var(--shadow-lg);
  animation: modalRise 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes modalFade {
  from { opacity: 0; }
}

@keyframes modalRise {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
}

.role-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  padding: 0;
  color: var(--ink);
  background: #fff;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.role-modal-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
  font-size: 16px;
  font-weight: 900;
}

.role-modal-kicker {
  margin-bottom: 8px;
}

.role-modal-panel h2 {
  margin-bottom: 6px;
  font-size: 38px;
  line-height: 1.2;
}

.role-modal-subtitle {
  margin-bottom: 24px;
  color: var(--accent);
  font-weight: 800;
}

.role-modal-body p {
  margin-bottom: 13px;
  color: #4f5d6e;
  font-size: 15px;
}

.role-modal-fit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  margin: 24px 0;
  border-left: 3px solid var(--accent);
  padding: 16px 18px;
  background: #f0f7f6;
  color: #3e4c5d;
  font-size: 14px;
}

.role-modal-fit strong {
  color: var(--accent);
}

.award-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.award-modal[aria-hidden="false"] {
  display: flex;
}

.award-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 13, 25, 0.74);
  backdrop-filter: blur(8px);
  animation: modalFade 200ms ease both;
}

.award-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
  gap: 38px;
  width: min(1180px, 100%);
  max-height: calc(100vh - 48px);
  border-radius: var(--radius);
  padding: 44px;
  overflow-y: auto;
  background: #fff;
  box-shadow: var(--shadow-lg);
  animation: modalRise 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.award-modal-copy h2 {
  margin-bottom: 22px;
  font-size: 36px;
  line-height: 1.2;
}

.award-modal-copy p {
  margin-bottom: 14px;
  color: #4f5d6e;
  font-size: 15px;
  line-height: 1.9;
}

.award-modal-copy strong {
  color: var(--ink);
  font-weight: 900;
}

.award-modal-media {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  border-radius: var(--radius);
  min-height: 520px;
}

.award-modal-frame {
  position: relative;
  min-height: 352px;
}

.award-modal-frame img,
.award-modal-thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius) - 4px);
  object-fit: cover;
  background: #edf3f7;
}

.award-modal-main-image {
  aspect-ratio: 4 / 3;
  object-position: center;
}

.award-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  padding: 0;
  color: #fff;
  background: rgba(3, 13, 25, 0.5);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.award-gallery-arrow.prev {
  left: 14px;
}

.award-gallery-arrow.next {
  right: 14px;
}

.award-modal-thumbs {
  display: grid;
  grid-auto-columns: 74px;
  grid-auto-flow: column;
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 2px 8px;
  scrollbar-width: thin;
}

.award-modal-thumbs button {
  border: 2px solid transparent;
  border-radius: calc(var(--radius) - 2px);
  padding: 0;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.award-modal-thumbs button.is-active {
  border-color: var(--accent);
}

.award-modal-thumbs button:focus-visible {
  outline: 3px solid rgba(0, 138, 128, 0.26);
  outline-offset: 2px;
}

.award-modal-thumbs button:nth-child(5) img,
.award-modal-thumbs button:nth-child(6) img {
  object-position: center 38%;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready [data-reveal][data-delay="1"] {
  transition-delay: 90ms;
}

.motion-ready [data-reveal][data-delay="2"] {
  transition-delay: 160ms;
}

.motion-ready [data-reveal][data-delay="3"] {
  transition-delay: 230ms;
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Application page */
.apply-page {
  background: var(--canvas);
}

.apply-main {
  width: min(1080px, calc(100% - 96px));
  margin: 0 auto;
  padding: 150px 0 100px;
}

.apply-hero {
  max-width: 760px;
  margin-bottom: 48px;
}

.apply-hero .lead {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.apply-section {
  padding: 0;
}

.apply-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.form-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.form-group + .form-group {
  margin-top: 18px;
}

label {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px;
  color: #364456;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid #cbd5df;
  border-radius: 0;
  outline: 0;
  padding: 7px 0 9px;
  color: var(--ink);
  background: transparent;
  font-weight: 500;
  transition: border-color 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
}

textarea {
  min-height: 126px;
  resize: vertical;
}

.apply-form .btn {
  width: 100%;
  margin-top: 22px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.form-status.success {
  color: var(--accent);
  font-weight: 800;
}

.form-status.error {
  color: #b42318;
  font-weight: 800;
}

.apply-success-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.apply-success-modal[aria-hidden="false"] {
  display: flex;
}

.apply-success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 13, 25, 0.74);
  backdrop-filter: blur(8px);
  animation: modalFade 200ms ease both;
}

.apply-success-panel {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  border-radius: var(--radius);
  padding: 40px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: modalRise 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.apply-success-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  padding: 0;
  color: var(--ink);
  background: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.apply-success-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
  font-size: 30px;
  font-weight: 900;
}

.apply-success-panel .role-modal-kicker {
  margin-bottom: 8px;
}

.apply-success-panel h2 {
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1.2;
}

.apply-success-panel p:not(.role-modal-kicker) {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.apply-success-panel .btn {
  width: 100%;
}

@media (max-width: 1080px) {
  .page-shell,
  .topbar-inner {
    width: min(100% - 56px, 1120px);
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 42px;
  }

  .future-layout {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 36px;
  }

  .future-cards {
    height: 520px;
  }

  .future-card-copy {
    padding: 25px 20px;
  }

  .future-card-copy span {
    font-size: 20px;
  }

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

  .youth-card-featured {
    grid-column: 1 / -1;
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .youth-quote {
    padding: 30px 34px;
  }

  .role-item {
    padding: 34px 22px;
  }

  .role-no,
  .role-actions {
    right: 22px;
    left: 22px;
  }
}

@media (max-width: 820px) {
  .topbar-inner {
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 28px 24px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 30px rgba(8, 26, 47, 0.12);
    opacity: 0;
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .nav a,
  .nav .nav-apply {
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: 14px 0;
  }

  .nav a::after {
    display: none;
  }

  .award-modal-panel {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .award-modal-media {
    min-height: 260px;
  }

  .award-modal-thumbs {
    grid-auto-columns: 70px;
  }

  .topbar:not(.is-scrolled):not(.apply-page .topbar) .nav-toggle[aria-expanded="true"] {
    color: #fff;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 42px;
  }

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

  .hero-stats div {
    display: block;
    border-top: 0 !important;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    padding: 16px 18px;
  }

  .hero-stats div:last-child {
    border-right: 0;
  }

  .hero-stats span {
    display: block;
    margin-top: 4px;
  }

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

  .future-title {
    position: static;
    max-width: 620px;
  }

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

  .youth-card {
    min-height: 250px;
  }

  .youth-card-featured {
    grid-column: 1 / -1;
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .youth-quote {
    padding: 28px 30px;
  }

  .activity-track {
    width: min(1120px, calc(100% + 160px));
    height: 340px;
    gap: 18px;
  }

  .activity-card {
    flex-basis: 250px;
  }

  .activity-card.is-active {
    flex-basis: min(520px, 48vw);
  }

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

  .roles-stage {
    min-height: 660px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .role-item:nth-child(2) {
    border-right: 0;
  }

  .role-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .role-item:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.28);
  }

  .footer-main {
    grid-template-columns: minmax(210px, 0.65fr) minmax(0, 1.35fr);
    gap: 42px;
  }

  .footer-links > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-links a {
    min-height: 48px;
  }
}

@media (max-width: 640px) {
  .page-shell,
  .topbar-inner,
  .apply-main {
    width: calc(100% - 32px);
  }

  .topbar-inner {
    min-height: 66px;
  }

  .brand {
    font-size: 15px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .nav {
    top: 66px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero,
  .hero-inner {
    min-height: 760px;
  }

  .hero-inner {
    gap: 34px;
    padding-top: 122px;
    padding-bottom: 52px;
  }

  .hero-media {
    transform: translateY(var(--hero-shift)) scale(1.04);
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(4, 18, 34, 0.56) 0%, rgba(4, 18, 34, 0.28) 32%, rgba(4, 18, 34, 0.92) 82%),
      linear-gradient(90deg, rgba(4, 18, 34, 0.72), rgba(4, 18, 34, 0.12));
  }

  .hero-kicker {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .hero-slogan {
    margin-bottom: 16px;
    font-size: 23px;
  }

  .hero .lead {
    font-size: 14px;
    line-height: 1.75;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 24px;
  }

  .hero-actions .btn {
    min-width: 0;
    flex: 1 1 0;
    gap: 10px;
    padding: 11px 12px;
    font-size: 13px;
  }

  .hero-stats {
    margin: 0 -16px;
  }

  .hero-stats div {
    min-width: 0;
    padding: 13px 8px;
  }

  .hero-stats strong {
    font-size: 23px;
  }

  .hero-stats div:last-child strong {
    font-size: 12px;
    line-height: 1.35;
  }

  .hero-stats span {
    font-size: 10px;
  }

  .hero-scroll {
    display: none;
  }

  .future-section,
  .section,
  .roles-section,
  .activity-section,
  .youth-section {
    padding: 76px 0;
  }

  .future-layout {
    gap: 34px;
  }

  .future-title h2,
  .section-head h2,
  .roles-head h2,
  .activity-head h2,
  .apply-hero h1 {
    font-size: 34px;
  }

  .future-title > p:last-child,
  .section-head > p:last-child,
  .roles-head > p:last-child,
  .activity-head > p:last-child {
    margin-top: 16px;
    font-size: 14px;
  }

  .youth-head {
    margin-bottom: 32px;
  }

  .youth-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .youth-card {
    min-height: 188px;
  }

  .youth-card-featured {
    grid-template-columns: 128px minmax(0, 1fr);
    min-height: 230px;
  }

  .youth-photo::after {
    right: -22px;
    height: 70px;
  }

  .youth-quote {
    padding: 22px 18px;
  }

  .quote-mark {
    height: 22px;
    font-size: 44px;
  }

  .youth-quote h3 {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .youth-quote p {
    margin-bottom: 16px;
    font-size: 12px;
    line-height: 1.65;
  }

  .youth-person {
    padding-top: 12px;
  }

  .youth-card-empty {
    min-height: 156px;
    padding: 20px;
  }

  .youth-card-empty::before {
    top: 18px;
    left: 20px;
    width: 42px;
    height: 42px;
  }

  .section-line {
    width: 52px;
    margin-top: 18px;
  }

  .future-cards {
    width: calc(100% + 16px);
    height: auto;
    gap: 12px;
    padding-right: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .future-cards::-webkit-scrollbar {
    display: none;
  }

  .future-card,
  .future-card:hover,
  .future-card:focus-visible,
  .future-cards:has(.future-card:hover) .future-card:not(:hover),
  .future-cards:has(.future-card:focus-visible) .future-card:not(:focus-visible) {
    height: 440px;
    min-width: 82vw;
    flex: 0 0 82vw;
    scroll-snap-align: start;
    transform: none;
  }

  .future-card img,
  .future-card:hover img,
  .future-card:focus-visible img {
    transform: none;
  }

  .future-card-copy {
    padding: 24px 20px;
  }

  .future-card-copy span {
    font-size: 22px;
  }

  .future-card-copy p {
    opacity: 1;
    transform: none;
  }

  .section-head,
  .roles-head,
  .activity-head {
    margin-bottom: 34px;
  }

  .activity-section {
    overflow: hidden;
  }

  .activity-head {
    text-align: left;
  }

  .activity-head .section-line {
    margin-left: 0;
  }

  .activity-head > p:last-child {
    margin-left: 0;
  }

  .activity-carousel {
    padding: 0 0 58px 16px;
  }

  .activity-track {
    width: 100%;
    height: auto;
    gap: 12px;
    margin: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    transform: none !important;
  }

  .activity-track::-webkit-scrollbar {
    display: none;
  }

  .activity-card,
  .activity-card.is-active {
    height: 380px;
    min-width: min(82vw, 340px);
    flex: 0 0 min(82vw, 340px);
    opacity: 1;
    transform: none;
    scroll-snap-align: start;
  }

  .activity-card img,
  .activity-card.is-active img,
  .activity-card:hover img {
    transform: none;
  }

  .activity-copy {
    padding: 22px 18px;
  }

  .activity-copy h3 {
    font-size: 24px;
  }

  .activity-copy p,
  .activity-card.is-active .activity-copy p {
    font-size: 13px;
    opacity: 1;
    transform: none;
  }

  .activity-arrow {
    display: none;
  }

  .activity-dots {
    bottom: 20px;
    padding-right: 16px;
  }

  .activity-more {
    right: 16px;
    bottom: 14px;
    left: auto;
    min-width: 96px;
    padding: 8px 16px;
    font-size: 12px;
    transform: none;
  }

  .activity-more:hover {
    transform: translateY(-2px);
  }

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

  .awards article {
    min-height: 178px;
    padding: 18px 14px;
  }

  .awards article:hover {
    color: var(--ink);
    background: #fff;
    box-shadow: none;
    transform: none;
  }

  .awards article:hover::before {
    transform: scaleY(0);
  }

  .award-top {
    margin-bottom: 24px;
  }

  .award-top span {
    min-height: 24px;
    padding: 2px 8px;
    font-size: 10px;
  }

  .award-top b {
    font-size: 10px;
  }

  .awards h3 {
    font-size: 14px;
  }

  .awards p,
  .awards article:hover p,
  .awards article:hover .award-top b {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
  }

  .awards article:hover .award-top span {
    border-color: #b9c7d4;
    color: var(--accent);
  }

  .awards p + h3 {
    margin-top: 14px;
  }

  .roles-stage {
    min-height: 560px;
  }

  .roles-bg::after {
    background:
      radial-gradient(circle at 20% 28%, rgba(255, 255, 255, 0.05), transparent 11%),
      linear-gradient(180deg, rgba(4, 18, 34, 0.16), rgba(4, 18, 34, 0.7));
  }

  .role-item {
    min-height: 280px;
    justify-content: flex-start;
    padding: 48px 15px 16px;
    background: rgba(5, 25, 43, 0.14);
  }

  .role-item:hover,
  .role-item:focus-within,
  .role-item:focus-visible {
    background: rgba(5, 25, 43, 0.14);
  }

  .role-no {
    top: 14px;
    left: 15px;
    font-size: 10px;
  }

  .role-copy,
  .role-item:hover .role-copy,
  .role-item:focus-within .role-copy,
  .role-item:focus-visible .role-copy {
    transform: none;
  }

  .role-item strong {
    font-size: 27px;
  }

  .role-item em {
    margin-top: 5px;
    font-size: 10px;
    line-height: 1.35;
  }

  .role-actions,
  .role-item:hover .role-actions,
  .role-item:focus-within .role-actions,
  .role-item:focus-visible .role-actions {
    position: static;
    width: 100%;
    margin-top: auto;
    gap: 2px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .role-actions a,
  .role-actions button {
    min-height: 34px;
    padding: 5px 0;
    font-size: 11px;
  }

  .apply-cta {
    padding: 66px 0;
  }

  .apply-cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .apply-cta .section-head h2 {
    font-size: 36px;
  }

  .apply-cta .btn {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 40px;
    padding-bottom: 32px;
  }

  .footer-links > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-links a {
    min-height: 48px;
    padding: 11px 14px;
  }

  .footer-bottom {
    min-height: 72px;
    gap: 16px;
    font-size: 11px;
  }

  .role-modal {
    align-items: flex-end;
    padding: 8px;
  }

  .award-modal {
    align-items: flex-end;
    padding: 8px;
  }

  .role-modal-panel {
    max-height: calc(100svh - 16px);
    padding: 28px 20px 22px;
  }

  .award-modal-panel {
    max-height: calc(100svh - 16px);
    padding: 28px 20px 22px;
  }

  .role-modal-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    font-size: 14px;
  }

  .role-modal-panel h2 {
    font-size: 30px;
  }

  .award-modal-copy h2 {
    font-size: 30px;
  }

  .role-modal-body p {
    font-size: 13px;
  }

  .award-modal-copy p {
    font-size: 13px;
    line-height: 1.75;
  }

  .role-modal-fit {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 13px;
    font-size: 13px;
  }

  .apply-main {
    padding: 116px 0 70px;
  }

  .apply-hero {
    margin-bottom: 32px;
  }

  .apply-hero .lead {
    margin-top: 16px;
    font-size: 14px;
  }

  .apply-form {
    padding: 14px;
  }

  .form-group {
    grid-template-columns: 1fr;
  }

  label {
    padding: 14px;
  }

  textarea {
    min-height: 108px;
  }
}

@media (max-width: 380px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats div:nth-child(2) {
    border-right: 0;
  }

  .hero-stats div:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.22) !important;
  }

  .awards article {
    min-height: 166px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
