:root {
  --ink: #08172e;
  --ink-soft: #42536a;
  --navy: #061a38;
  --navy-light: #083b72;
  --blue: #0876c9;
  --cyan: #0bbbd0;
  --green: #04a978;
  --mint: #85f0cc;
  --surface: #ffffff;
  --surface-soft: #f3f7fa;
  --surface-blue: #eaf5fb;
  --line: #dbe5ed;
  --max-width: 1400px;
  --prose-max-width: 1280px;
  --header-height: 104px;
  --shadow: 0 24px 60px rgba(5, 45, 117, 0.16);
  --font-sans: "Noto Sans TC", "Microsoft JhengHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-sans);
  line-height: 1.8;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

.home-page {
  font-size: 1.1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: break-word;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(8, 23, 46, 0.08);
  background: rgba(255, 255, 255, 0.96);
  transition: box-shadow 180ms ease, background 180ms ease;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 30px rgba(8, 23, 46, 0.09);
}

.site-header__inner {
  width: min(calc(100% - 40px), 1640px);
  height: var(--header-height);
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-brand {
  min-width: 280px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.site-brand__mark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(8, 103, 201, 0.18);
}

.site-brand__copy {
  display: grid;
  line-height: 1.15;
}

.site-brand__copy strong {
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.site-brand__copy small {
  margin-top: 8px;
  color: #6a7889;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.site-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
}

.site-nav__item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.site-nav__link,
.site-nav__trigger {
  position: relative;
  min-height: 58px;
  padding: 14px 3px;
  display: inline-flex;
  align-items: center;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.site-nav__trigger--accent {
  color: var(--blue);
}

.site-nav__link::after,
.site-nav__trigger::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.site-nav__trigger:hover::after,
.site-nav__trigger:focus-visible::after,
.site-nav__item:hover > .site-nav__trigger::after,
.site-nav__item:focus-within > .site-nav__trigger::after,
.site-nav__item.is-open > .site-nav__trigger::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% - 12px);
  left: 0;
  right: auto;
  z-index: 120;
  min-width: 250px;
  padding: 14px;
  border: 1px solid rgba(8, 23, 46, 0.11);
  border-radius: 12px;
  background: rgba(247, 249, 251, 0.97);
  box-shadow: 0 18px 44px rgba(8, 23, 46, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 150ms ease, transform 150ms ease;
  backdrop-filter: blur(16px);
}

.site-nav__item.is-open > .site-nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav__dropdown--years {
  min-width: 176px;
}

.site-nav__dropdown-label {
  display: block;
  margin: 3px 10px 12px;
  color: #718096;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: left;
}

.site-nav__dropdown-grid {
  display: grid;
  gap: 4px;
}

.site-nav__dropdown a {
  min-height: 46px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #283a51;
  border-radius: 8px;
  font-size: 0.94rem;
  line-height: 1.5;
  text-align: left;
  transition: color 140ms ease, background 140ms ease, transform 140ms ease;
}

.site-nav__dropdown a:hover,
.site-nav__dropdown a:focus-visible {
  color: #075fa7;
  background: rgba(8, 118, 201, 0.09);
  transform: translateX(2px);
}

.site-nav__cta {
  min-width: 116px;
  min-height: 36px;
  padding: 5px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(4, 114, 160, 0.14);
  border-radius: 14px 0 14px 0;
  background: linear-gradient(120deg, #087dcc, #0aa9bf);
  box-shadow: 0 5px 14px rgba(8, 103, 201, 0.16);
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.site-nav__cta:hover,
.site-nav__cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(8, 103, 201, 0.23);
}

.site-menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--surface-soft);
  cursor: pointer;
}

.site-menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-menu-button.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-menu-button.is-active span:nth-child(2) { opacity: 0; }
.site-menu-button.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}

.hero img {
  width: 100%;
  height: auto;
}

.content-section {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: 104px 0;
}

.section-header {
  margin-bottom: 52px;
}

.section-header--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.section-header--about {
  min-height: 32px;
  margin-bottom: 18px;
  display: flex;
  align-items: end;
  justify-content: flex-end;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-header h2,
.apply-section h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.6vw, 4.35rem);
  line-height: 1.14;
  letter-spacing: -0.045em;
}

.section-header__mark {
  padding-bottom: 8px;
  color: #d3e4ef;
  font-size: clamp(1.2rem, 2.4vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 0.11em;
}

.section-header--light,
.section-header--light .section-kicker {
  color: #fff;
}

.section-header--light .section-kicker {
  color: var(--mint);
}

.section-header--light .section-header__mark {
  color: rgba(255, 255, 255, 0.17);
}

.overview-section {
  padding-top: 66px;
  background: #fff;
}

.overview-copy,
.overview-purpose > p:last-child,
.participation-block__lead,
.participation-section .selection-intro p {
  max-width: var(--prose-max-width);
}

.overview-copy {
  color: var(--ink-soft);
  font-size: 1.18rem;
  line-height: 1.95;
}

.overview-copy p {
  margin: 0;
}

.overview-copy p + p {
  margin-top: 28px;
}

.overview-purpose {
  margin-top: 88px;
}

.overview-purpose h3 {
  margin: 0 0 22px;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.overview-purpose > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.18rem;
  line-height: 1.95;
}

.overview-organizers {
  margin: 78px 0 0;
  padding: 0;
  display: grid;
  gap: 34px;
}

.overview-organizers > div {
  margin: 0;
}

.overview-organizers dt {
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.overview-organizers dd {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1.85;
}

.news-section {
  color: #fff;
  background:
    radial-gradient(circle at 12% 0%, rgba(11, 187, 208, 0.24), transparent 32%),
    linear-gradient(140deg, #05152d, #07396e 64%, #075d70);
}

.news-section__eyebrow {
  font-size: 0.84rem;
}

.data-table {
  --data-table-date-width: 170px;

  color: rgba(255, 255, 255, 0.88);
}

.data-table__row {
  position: relative;
  min-height: 78px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--data-table-date-width);
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.data-table__row:not(.data-table__row--head) {
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, padding 160ms ease;
}

.data-table__row:not(.data-table__row--head)::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--mint);
  content: "";
  opacity: 0;
  transform: scaleY(0.45);
  transition: opacity 160ms ease, transform 160ms ease;
}

.data-table__row:not(.data-table__row--head):hover,
.data-table__row:not(.data-table__row--head):focus-visible {
  padding-left: 24px;
  color: #fff;
  background: linear-gradient(90deg, rgba(11, 187, 208, 0.17), rgba(255, 255, 255, 0.025) 72%);
}

.data-table__row:not(.data-table__row--head):hover::before,
.data-table__row:not(.data-table__row--head):focus-visible::before {
  opacity: 1;
  transform: scaleY(1);
}

.data-table__row--head {
  min-height: 50px;
  padding-top: 8px;
  padding-bottom: 12px;
  color: rgba(201, 226, 240, 0.7);
  border-bottom-color: rgba(255, 255, 255, 0.25);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.data-table__row--head > :last-child {
  text-align: right;
}

.data-table__row time {
  color: rgba(255, 255, 255, 0.66);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.96rem;
  letter-spacing: 0.04em;
  text-align: right;
}

.data-table__row small {
  margin-left: 12px;
  padding: 3px 7px;
  display: inline-flex;
  color: var(--mint);
  border: 1px solid rgba(133, 240, 204, 0.38);
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.participation-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 3%, rgba(11, 187, 208, 0.1), transparent 25%),
    radial-gradient(circle at 4% 68%, rgba(8, 118, 201, 0.055), transparent 24%),
    linear-gradient(180deg, #f6fafc, #edf5f8);
}

.participation-section .section-header__mark {
  color: rgba(8, 118, 201, 0.15);
}

.participation-block {
  margin: 0;
  padding: 0;
  color: var(--ink);
}

.participation-block + .participation-block {
  margin-top: 82px;
}

.participation-block__title {
  margin-bottom: 30px;
}

.participation-block__title h3 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.3;
}

.participation-block__title h3::before {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 0 6px rgba(8, 118, 201, 0.07);
  content: "";
  transform: rotate(45deg);
}

.participation-block__lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.16rem;
  line-height: 1.95;
}

.participation-section .application-layout {
  display: grid;
  gap: 36px;
}

.participation-section .application-steps {
  padding: 28px 30px;
  color: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 38px rgba(5, 45, 117, 0.055);
  line-height: 1.9;
}

.participation-section .application-steps p {
  margin: 0 0 14px;
}

.participation-section .application-steps ol,
.participation-section .selection-intro ol {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
  counter-reset: participation-step;
}

.participation-section .application-steps li,
.participation-section .selection-intro li {
  position: relative;
  padding-left: 38px;
}

.participation-section .application-steps li::before,
.participation-section .selection-intro li::before {
  position: absolute;
  top: 0.26em;
  left: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #0871bd;
  border-radius: 50%;
  background: #e1f2f5;
  content: counter(participation-step);
  counter-increment: participation-step;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.participation-section .responsive-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 46px rgba(5, 45, 117, 0.07);
}

.participation-section .theme-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
  font-size: 0.96rem;
}

.participation-section .theme-table th,
.participation-section .theme-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #e0e9ef;
  text-align: left;
  vertical-align: top;
  line-height: 1.75;
}

.participation-section .theme-table tr:last-child > * {
  border-bottom: 0;
}

.participation-section .theme-table thead {
  background: linear-gradient(112deg, #0a416a, #08717b);
}

.participation-section .theme-table thead th {
  color: #eafafa;
  border-bottom-color: rgba(222, 248, 246, 0.3);
  background: transparent;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.participation-section .theme-table thead th + th {
  border-left: 1px solid rgba(224, 249, 246, 0.34);
}

.participation-section .theme-table tbody th {
  color: #163a5c;
  background: rgba(230, 241, 246, 0.54);
  font-weight: 800;
}

.participation-section .theme-table tbody td {
  background: rgba(255, 255, 255, 0.7);
}

.participation-section .theme-table tbody tr > * {
  transition: background 150ms ease;
}

.participation-section .theme-table tbody tr:hover > th {
  background: rgba(214, 237, 242, 0.8);
}

.participation-section .theme-table tbody tr:hover > td {
  background: rgba(244, 251, 251, 0.94);
}

.participation-section .theme-table td:first-child,
.participation-section .theme-table th:first-child {
  width: 82px;
  text-align: center;
}

.participation-section .theme-table--documents {
  min-width: 680px;
}

.participation-section .theme-table--documents th:first-child {
  width: 34%;
  min-width: 250px;
  text-align: left;
}

.participation-section .theme-table strong {
  color: #0871bd;
}

.participation-section .theme-table--schedule th:first-child {
  width: 130px;
}

.participation-section .theme-table--schedule {
  min-width: 850px;
}

.participation-section .theme-table--schedule td:nth-child(2) {
  width: 170px;
  color: #075fa7;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.participation-section .theme-table--criteria {
  min-width: 940px;
}

.participation-section .theme-table--criteria th:first-child {
  width: 255px;
  text-align: left;
}

.participation-section .theme-table--criteria th:last-child,
.participation-section .theme-table--criteria td:last-child {
  width: 90px;
  text-align: center;
  vertical-align: middle;
}

.participation-section .theme-table ul {
  margin: 0;
  padding-left: 1.15rem;
}

.participation-section .theme-table__weight {
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 900;
}

.participation-section .table-note {
  margin: 18px 0 0;
  color: #527089;
  font-size: 0.92rem;
}

.participation-section .award-list {
  width: min(calc(100% - 24px), 500px);
  margin: 0 0 0 24px;
  padding: 0;
  list-style: none;
}

.participation-section .award-list li {
  min-height: 60px;
  padding: 14px 0;
  display: grid;
  grid-template-columns: minmax(112px, 132px) auto;
  align-items: center;
  justify-content: start;
  gap: 28px;
  border-bottom: 1px solid rgba(66, 83, 106, 0.15);
  transition: border-color 160ms ease;
}

.participation-section .award-list li:last-child {
  border-bottom: 0;
}

.participation-section .award-list li:hover {
  border-bottom-color: rgba(8, 118, 201, 0.34);
}

.participation-section .award-list strong {
  color: #2d4962;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 160ms ease;
}

.participation-section .award-list span {
  color: #078b91;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: color 160ms ease;
}

.participation-section .award-list li:hover strong {
  color: var(--blue);
}

.participation-section .award-list li:hover span {
  color: var(--green);
}

.participation-section .selection-intro {
  margin-bottom: 36px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.9;
}

.participation-section .selection-intro p {
  margin: 0 0 10px;
}

.participation-section .selection-intro ol {
  margin-top: 18px;
}

.benefits-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfc 100%);
}

.benefits-section::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(78%, 1180px);
  height: 660px;
  background:
    linear-gradient(rgba(20, 92, 122, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 92, 122, 0.038) 1px, transparent 1px),
    radial-gradient(circle at 88% 7%, rgba(11, 187, 208, 0.11), transparent 52%);
  background-size: 32px 32px, 32px 32px, auto;
  content: "";
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at 100% 0%, #000 0%, rgba(0, 0, 0, 0.88) 40%, transparent 84%);
  mask-image: radial-gradient(ellipse at 100% 0%, #000 0%, rgba(0, 0, 0, 0.88) 40%, transparent 84%);
}

.benefits-section .content-section {
  position: relative;
  z-index: 1;
}

.benefits-section .section-header {
  margin-bottom: 46px;
}

.benefits-section .section-header__mark {
  color: rgba(7, 113, 139, 0.2);
}

.benefits-intro {
  max-width: none;
  margin: 0 0 58px;
  padding: 18px 24px 18px 26px;
  color: #39536a;
  border-left: 3px solid var(--cyan);
  background: linear-gradient(90deg, rgba(235, 247, 248, 0.86), rgba(247, 251, 251, 0.3));
  font-size: 1.08rem;
  line-height: 1.9;
}

.benefits-intro strong {
  color: #057a99;
}

.benefits-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(24, 94, 112, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 46px rgba(8, 72, 84, 0.07);
}

.benefits-table {
  width: 100%;
  min-width: 680px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.98rem;
}

.benefits-table th,
.benefits-table td {
  padding: 21px 24px;
  border-bottom: 1px solid rgba(24, 94, 112, 0.13);
  text-align: left;
  vertical-align: middle;
  line-height: 1.75;
}

.benefits-table thead th {
  color: #edfafa;
  background: transparent;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.benefits-table thead {
  background: linear-gradient(112deg, #0a416a, #08717b);
}

.benefits-table thead th + th {
  border-left: 1px solid rgba(224, 249, 246, 0.3);
}

.benefits-table tbody tr:last-child > * {
  border-bottom: 0;
}

.benefits-table tbody th {
  width: 34%;
  color: #26455f;
  background: rgba(226, 241, 241, 0.5);
  font-weight: 800;
}

.benefits-table tbody td {
  color: #52677b;
  background: rgba(255, 255, 255, 0.54);
}

.benefits-table tbody tr > * {
  transition: background 150ms ease;
}

.benefits-table tbody tr:hover > * {
  background: rgba(211, 238, 237, 0.68);
}

.benefits-notes {
  margin-top: 76px;
  color: var(--ink-soft);
}

.benefits-notes h3 {
  margin: 0 0 30px;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.2vw, 1.8rem);
  line-height: 1.35;
}

.benefits-notes ol {
  margin: 0;
  padding-left: 1.35rem;
  line-height: 2;
}

.benefits-notes li + li {
  margin-top: 10px;
}

.bank-details {
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid rgba(24, 94, 112, 0.18);
}

.bank-details h4 {
  margin: 0 0 22px;
  color: #26455f;
  font-size: 1.12rem;
}

.bank-details dl {
  margin: 0;
  display: grid;
  max-width: 860px;
}

.bank-details dl > div {
  min-height: 58px;
  padding: 14px 0;
  display: grid;
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
  align-items: baseline;
  gap: 28px;
  border-bottom: 1px solid rgba(24, 94, 112, 0.12);
}

.bank-details dl > div:last-child {
  border-bottom: 0;
}

.bank-details dt {
  color: #087b8e;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.bank-details dd {
  margin: 0;
  color: #38546a;
  line-height: 1.7;
}

.bank-details__account {
  color: #087b8e;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.bank-details .bank-details__notes {
  margin: 0;
  padding-left: 1.3rem;
  line-height: 1.75;
}

.bank-details__notes li + li {
  margin-top: 2px;
}

.downloads-section {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 12%, rgba(11, 187, 208, 0.13), transparent 31rem),
    radial-gradient(circle at 8% 90%, rgba(8, 118, 201, 0.08), transparent 26rem),
    linear-gradient(180deg, #f1f8fb 0%, #fbfdfd 100%);
}

.downloads-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(20, 92, 122, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 92, 122, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 38%, #000 100%);
  mask-image: linear-gradient(90deg, transparent, #000 38%, #000 100%);
}

.downloads-section .content-section {
  position: relative;
  z-index: 1;
}

.downloads-section .section-header__mark {
  color: rgba(7, 113, 139, 0.16);
}

.download-list {
  overflow: hidden;
  border: 1px solid rgba(8, 118, 201, 0.16);
  border-top: 3px solid #0a9fbd;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 54px rgba(5, 45, 117, 0.09);
}

.download-list > a {
  position: relative;
  min-height: 88px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #173b5b;
  border-bottom: 1px solid rgba(20, 83, 116, 0.13);
  transition: color 160ms ease, background 160ms ease, padding 160ms ease;
}

.download-list > a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--green));
  content: "";
  opacity: 0;
  transform: scaleY(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.download-list > a:hover,
.download-list > a:focus-visible {
  padding-left: 24px;
  color: #075f9f;
  background: linear-gradient(90deg, rgba(11, 187, 208, 0.1), rgba(8, 118, 201, 0.035) 72%);
}

.download-list > a:hover::before,
.download-list > a:focus-visible::before {
  opacity: 1;
  transform: scaleY(1);
}

.download-list > a > span:first-child {
  display: flex;
  align-items: center;
  gap: 20px;
}

.download-list strong {
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

.download-list small {
  min-width: 58px;
  padding: 6px 8px;
  color: #0871a6;
  border: 1px solid rgba(8, 118, 201, 0.25);
  border-radius: 2px;
  background: #edf8fb;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
}

.download-list__action {
  color: #48718c;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.download-list__action span {
  margin-left: 10px;
  display: inline-block;
  color: #079eb5;
  font-size: 1.3rem;
  transition: transform 160ms ease;
}

.download-list > a:hover .download-list__action span,
.download-list > a:focus-visible .download-list__action span {
  transform: translateY(3px);
}

.winners-section {
  background: #fff;
}

.year-tabs {
  padding: 6px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  border-radius: 999px;
  background: #e8f0f5;
}

.year-tabs__button {
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  color: #52657c;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.year-tabs__button:hover,
.year-tabs__button:focus-visible {
  color: var(--blue);
}

.year-tabs__button.is-active {
  color: #fff;
  background: linear-gradient(115deg, #315e9c, #0b9db4);
  box-shadow: 0 9px 22px rgba(5, 45, 117, 0.2);
}

.winner-panel {
  margin-top: 28px;
}

.winner-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.winner-groups article {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fafc;
}

.winner-groups h3 {
  margin: 0;
  padding-bottom: 18px;
  color: var(--blue);
  border-bottom: 1px solid var(--line);
  font-size: 1.25rem;
}

.winner-groups h3 small {
  display: block;
  margin-top: 3px;
  color: #7a8898;
  font-size: 0.65rem;
}

.winner-groups ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.winner-groups li {
  padding: 10px 0;
  font-weight: 700;
  border-bottom: 1px solid #e4ebf0;
}

.winner-groups li:last-child {
  border-bottom: 0;
}

.winner-pending {
  min-height: 300px;
  padding: 42px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 20%, rgba(11, 187, 208, 0.12), transparent 36%),
    var(--surface-soft);
}

.winner-pending span {
  color: transparent;
  font-size: clamp(4.5rem, 11vw, 8rem);
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 2px #b9d9ed;
}

.winner-pending p {
  margin: 26px 0 0;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 800;
}

.apply-section {
  position: relative;
  overflow: hidden;
  padding: 110px 24px;
  color: #fff;
  text-align: center;
  background: linear-gradient(115deg, var(--blue), #057f9f 56%, var(--green));
}

.apply-section::before,
.apply-section::after {
  position: absolute;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.apply-section::before { top: -260px; left: -100px; }
.apply-section::after { right: -170px; bottom: -330px; }

.apply-section__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 850px);
  margin: 0 auto;
}

.apply-section .section-kicker {
  color: #b9ffe5;
}

.apply-section p:not(.section-kicker) {
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.8);
}

.button {
  min-height: 48px;
  padding: 11px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--light {
  color: var(--blue);
  background: #fff;
  box-shadow: 0 12px 28px rgba(5, 45, 117, 0.18);
}

.floating-apply {
  position: fixed;
  right: 24px;
  bottom: calc(26px + var(--floating-footer-offset, 0px));
  z-index: 80;
  width: clamp(96px, calc(48px + 3.5vw), 120px);
  height: clamp(96px, calc(48px + 3.5vw), 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: #ff6c4a;
  box-shadow: 0 16px 38px rgba(194, 57, 31, 0.32);
  font-size: clamp(1.04rem, calc(0.72rem + 0.4vw), 1.2rem);
  font-weight: 700;
  line-height: 1.18;
  transition: bottom 110ms linear, transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.floating-apply:hover,
.floating-apply:focus-visible {
  background: #e95638;
  box-shadow: 0 19px 42px rgba(194, 57, 31, 0.4);
  transform: translateY(-4px) scale(1.03);
}

.floating-apply:focus-visible {
  outline: 3px solid rgba(255, 108, 74, 0.34);
  outline-offset: 4px;
}

.floating-apply strong {
  font-size: inherit;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #061326;
}

.site-footer__inner {
  width: 100%;
  margin: 0;
  padding: 64px clamp(32px, 5vw, 96px) 28px;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.65fr);
  gap: 52px clamp(72px, 8vw, 160px);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  align-self: start;
  gap: 16px;
}

.site-footer__brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.site-footer__brand strong {
  color: #fff;
  font-size: 1.08rem;
  letter-spacing: 0.07em;
}

.site-footer__brand p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer__organizers {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 72px);
}

.site-footer__organizers span {
  display: block;
  margin-bottom: 7px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.site-footer__organizers p {
  margin: 3px 0;
  font-size: 0.88rem;
}

.site-footer__organizers a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration-color: rgba(133, 240, 204, 0.38);
  text-underline-offset: 3px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.site-footer__organizers a:hover,
.site-footer__organizers a:focus-visible {
  color: var(--mint);
  text-decoration-color: var(--mint);
}

.site-footer__contact p:first-of-type {
  color: #fff;
  font-weight: 700;
}

.site-footer__copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 1181px) {
  .overview-copy,
  .overview-purpose > p:last-child,
  .participation-block__lead,
  .participation-section .selection-intro p {
    width: calc(100% - 120px);
  }

  .site-nav__item:hover > .site-nav__dropdown,
  .site-nav__item:focus-within > .site-nav__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

}

@media (min-width: 1181px) and (max-width: 1500px) {
  :root {
    --header-height: 96px;
  }

  .site-header__inner {
    gap: 24px;
  }

  .site-brand {
    min-width: 238px;
    gap: 13px;
  }

  .site-brand__mark {
    width: 64px;
    height: 64px;
  }

  .site-brand__copy strong {
    font-size: 1.16rem;
  }

  .site-brand__copy small {
    margin-top: 6px;
    font-size: 0.61rem;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.93rem;
  }

  .site-nav__link,
  .site-nav__trigger {
    min-height: 54px;
    padding-block: 12px;
  }

  .site-nav__cta {
    min-width: 116px;
    min-height: 36px;
    padding: 5px 18px;
    border-radius: 14px 0 14px 0;
  }

}

@media (max-width: 1180px) {
  :root {
    --header-height: 84px;
  }

  .site-header__inner {
    width: min(calc(100% - 36px), 1120px);
  }

  .site-menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    height: calc(100dvh - var(--header-height));
    padding: 28px 24px 44px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.99);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav__item {
    height: auto;
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  .site-nav__link,
  .site-nav__trigger {
    height: auto;
    width: 100%;
    min-height: 0;
    padding: 16px 4px;
    justify-content: space-between;
    font-size: 1.02rem;
  }

  .site-nav__link {
    border-bottom: 1px solid var(--line);
  }

  .site-nav__link::after,
  .site-nav__trigger::after {
    display: none;
  }

  .site-nav__dropdown,
  .site-nav__item--align-right .site-nav__dropdown {
    position: static;
    width: 100%;
    min-width: 0;
    max-height: 0;
    margin: 0;
    padding: 0 10px;
    overflow: hidden;
    border: 0;
    border-radius: 10px;
    background: rgba(8, 118, 201, 0.06);
    box-shadow: none;
    opacity: 0;
    transform: none;
    transition: max-height 220ms ease, opacity 180ms ease, padding 220ms ease, margin 220ms ease;
    backdrop-filter: none;
  }

  .site-nav__item.is-open > .site-nav__dropdown,
  .site-nav__item--align-right.is-open > .site-nav__dropdown {
    max-height: 520px;
    margin: 0 0 12px;
    padding: 10px;
    opacity: 1;
    transform: none;
  }

  .site-nav__dropdown a {
    min-height: 42px;
    justify-content: flex-start;
    font-size: 0.9rem;
    text-align: left;
  }

  .site-nav__dropdown-label {
    text-align: left;
  }

  .site-nav__cta {
    margin-top: 24px;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .content-section {
    width: min(calc(100% - 36px), var(--max-width));
    padding: 78px 0;
  }

  .overview-section {
    padding-top: 56px;
  }

  .section-header--split {
    display: block;
  }

  .section-header__mark {
    display: none;
  }

  .section-header--about .section-header__mark {
    display: block;
  }

  .overview-purpose {
    margin-top: 72px;
  }

  .overview-organizers {
    margin-top: 64px;
  }

  .winner-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .site-footer__organizers {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.7fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 56px);
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 70px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 1px);
  }

  .site-header__inner {
    width: calc(100% - 28px);
  }

  .site-brand {
    min-width: 0;
  }

  .site-brand__mark {
    width: 44px;
    height: 44px;
  }

  .site-brand__copy strong {
    font-size: 0.95rem;
  }

  .site-brand__copy small {
    font-size: 0.52rem;
  }

  .content-section {
    width: calc(100% - 30px);
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-header--about {
    min-height: 28px;
    margin-bottom: 16px;
  }

  .overview-section {
    padding-top: 48px;
  }

  .section-header h2,
  .apply-section h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .overview-copy {
    font-size: 1.08rem;
  }

  .overview-purpose {
    margin-top: 56px;
  }

  .overview-purpose h3 {
    margin-bottom: 20px;
  }

  .overview-purpose > p:last-child {
    font-size: 1.08rem;
  }

  .overview-organizers {
    margin-top: 52px;
    gap: 26px;
  }

  .overview-organizers dt {
    font-size: 1.05rem;
  }

  .overview-organizers dd {
    font-size: 1.08rem;
  }

  .data-table__row {
    min-height: 68px;
    padding: 14px 16px;
    grid-template-columns: minmax(0, 1fr) 94px;
    gap: 12px;
  }

  .data-table__row small {
    display: inline-flex;
    margin: 3px 0 0;
  }

  .participation-block__title {
    margin-bottom: 22px;
  }

  .participation-section .application-steps {
    padding: 22px 20px;
  }

  .benefits-intro {
    margin-bottom: 46px;
    padding: 17px 18px;
  }

  .benefits-notes {
    margin-top: 56px;
  }

  .bank-details {
    margin-top: 44px;
  }

  .bank-details dl > div {
    padding: 15px 0;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .participation-block + .participation-block {
    margin-top: 64px;
  }

  .winner-groups {
    grid-template-columns: 1fr;
  }

  .winner-groups article {
    min-height: auto;
  }

  .download-list > a {
    padding: 15px 17px;
  }

  .download-list > a > span:first-child {
    gap: 10px;
  }

  .download-list__action {
    font-size: 0;
  }

  .download-list__action span {
    margin-left: 0;
    font-size: 1.4rem;
  }

  .year-tabs {
    border-radius: 16px;
  }

  .year-tabs__button {
    min-height: 50px;
    border-radius: 12px;
    font-size: 0.88rem;
  }

  .winner-pending {
    min-height: 240px;
    padding: 28px 20px;
  }

  .apply-section {
    padding: 82px 20px;
  }

  .floating-apply {
    right: calc(14px + env(safe-area-inset-right, 0px));
    bottom: calc(16px + env(safe-area-inset-bottom, 0px) + var(--floating-footer-offset, 0px));
    width: 130px;
    height: 130px;
    font-size: 1.22rem;
  }

  .floating-apply strong {
    font-size: inherit;
  }

  .site-footer__inner {
    width: 100%;
    padding: 44px 18px 24px;
    gap: 34px;
  }

  .site-footer__organizers {
    grid-template-columns: 1fr;
  }

  .site-footer__copyright {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
