* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #000;
}

body {
  color: #f5f5f7;
  font-family: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

/* nav */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 5vw, 48px);
  background: rgba(140, 22, 44, .92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.nav__brand {
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
}

.nav__logo {
  height: 48px;
  width: auto;
  display: block;
}

.nav__tag {
  font-size: clamp(10px, 2.6vw, 12px);
  color: rgba(255, 255, 255, .75);
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* hero */

.hero {
  padding: clamp(72px, 12vw, 130px) clamp(20px, 5vw, 56px) clamp(48px, 7vw, 70px);
  text-align: center;
  background: radial-gradient(120% 90% at 50% 0%, #0a2a4a 0%, #06121f 42%, #000 78%);
}

.hero__years {
  font-size: clamp(11px, 2.8vw, 13px);
  font-weight: 600;
  letter-spacing: .24em;
  background: linear-gradient(90deg, #5ac8fa, #0a84ff, #bf5af2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}

.hero__title {
  margin: 0;
  font-size: clamp(34px, 8vw, 66px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.02em;
}

.hero__lede {
  margin: clamp(22px, 4vw, 30px) auto 0;
  max-width: 680px;
  font-size: clamp(16px, 3.4vw, 21px);
  line-height: 1.6;
  color: #c7c7cc;
  font-weight: 400;
}

/* hero image */

.hero-image {
  padding: 0 clamp(12px, 3vw, 32px);
  margin-top: clamp(-20px, -2vw, -14px);
}

.hero-image__frame {
  max-width: 1280px;
  margin: 0 auto;
}

.hero-image__frame img {
  display: block;
  width: 100%;
  height: auto;
}

/* intro */

.intro {
  padding: clamp(56px, 9vw, 84px) clamp(20px, 5vw, 56px);
  text-align: center;
}

.intro p {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(15px, 3vw, 17px);
  line-height: 1.95;
  color: #c7c7cc;
}

/* section headers */

.section-head {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 44px);
}

.section-head__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .22em;
  color: #636366;
}

.section-head__title {
  margin: 12px 0 0;
  font-size: clamp(28px, 5.5vw, 38px);
  font-weight: 800;
  letter-spacing: -.01em;
}

.section-head__desc {
  margin: 14px auto 0;
  max-width: 560px;
  font-size: clamp(14px, 3vw, 15px);
  color: #8e8e93;
  line-height: 1.7;
}

/* winners */

.winners {
  padding: 0 clamp(20px, 5vw, 56px) clamp(64px, 10vw, 96px);
}

.winners__inner {
  max-width: 1040px;
  margin: 0 auto;
}

.winners__head {
  position: relative;
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 44px);
}

.winners__nav-group {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 8px;
}

.winners__nav {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #f5f5f7;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s;
}

.winners__nav:hover {
  border-color: rgba(90, 200, 250, .5);
  color: #5ac8fa;
}

@media (max-width: 480px) {
  .winners__nav {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

.winners__grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 2px 2px 10px;
}

.winners__grid::-webkit-scrollbar {
  display: none;
}

.winner-card {
  flex: 0 0 auto;
  width: clamp(260px, 78vw, 300px);
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  background: #0e0e10;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 20px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s;
}

.winner-card:hover {
  border-color: rgba(90, 200, 250, .5);
}

.winner-card--feature {
  background: linear-gradient(160deg, #0d2136, #0e0e10);
  border: 1px solid rgba(90, 200, 250, .28);
}

.winner-card--feature:hover {
  border-color: rgba(90, 200, 250, .6);
}

.winner-card__year {
  font-size: 12px;
  color: #5ac8fa;
  font-weight: 600;
  letter-spacing: .1em;
}

.winner-card__name {
  font-size: 23px;
  font-weight: 700;
  margin-top: 14px;
}

.winner-card__name span {
  font-size: 14px;
  font-weight: 500;
  color: #8e8e93;
}

.winner-card__role {
  font-size: 13px;
  color: #8e8e93;
  margin-top: 4px;
}

.winner-card__work {
  display: inline-block;
  align-self: flex-start;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  color: #f5f5f7;
  background: rgba(90, 200, 250, .14);
  border: 1px solid rgba(90, 200, 250, .3);
  border-radius: 20px;
  padding: 5px 12px;
}

.winner-card__desc {
  margin: 16px 0 0;
  font-size: 13.5px;
  line-height: 1.75;
  color: #c7c7cc;
}

.winner-card__more {
  margin-top: auto;
  padding-top: 18px;
  font-size: 13px;
  font-weight: 600;
  color: #5ac8fa;
}

/* iOS Club */

.club {
  padding: clamp(64px, 10vw, 84px) clamp(20px, 5vw, 56px);
  background: linear-gradient(180deg, #000, #0a0a0c);
}

.club__inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.club__title {
  margin: 14px 0 0;
  font-size: clamp(30px, 6vw, 40px);
  font-weight: 800;
  letter-spacing: -.01em;
}

.club__desc {
  margin: 24px 0 0;
  font-size: clamp(15px, 3vw, 17px);
  line-height: 1.85;
  color: #c7c7cc;
}

/* senior's voice */

.senior__quote-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 3vw, 24px);
  max-width: 900px;
  margin: clamp(40px, 6vw, 56px) auto 22px;
  padding: 0 clamp(16px, 4vw, 40px);
}

.senior__quote-mark {
  flex: 0 0 auto;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(32px, 7vw, 64px);
  font-weight: 700;
  line-height: 1;
  color: #48484a;
}

.senior__quote {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  text-align: center;
  font-size: clamp(18px, 3.2vw, 24px);
  line-height: 1.6;
  font-weight: 600;
  color: #f5f5f7;
}

.senior__byline {
  margin: 18px auto 34px;
  max-width: 640px;
  text-align: center;
  font-size: clamp(13px, 2.6vw, 15px);
  line-height: 1.8;
  color: #8e8e93;
}

.senior__more {
  max-width: 1120px;
  margin: clamp(40px, 6vw, 56px) auto 0;
}

.senior__more-viewport {
  display: flex;
  align-items: center;
  gap: 10px;
}

.senior__more-grid {
  display: flex;
  gap: 22px;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 2px 2px 10px;
}

.senior__more-grid::-webkit-scrollbar {
  display: none;
}

.senior__more-card {
  flex: 0 0 auto;
  width: clamp(300px, 82vw, 430px);
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  background: #0e0e10;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 22px;
  padding: 26px 26px 30px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s;
}

.senior__more-card:hover {
  border-color: rgba(90, 200, 250, .5);
}

.senior__more-thumb {
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  margin-bottom: 22px;
}

.senior__more-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.senior__more-title {
  font-size: clamp(18px, 2.4vw, 21px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -.01em;
  color: #f5f5f7;
}

.senior__more-byline {
  font-size: 14px;
  color: #8e8e93;
  margin-top: 14px;
}

.senior__more-cta {
  margin-top: auto;
  padding-top: 22px;
  font-size: 13px;
  font-weight: 600;
  color: #5ac8fa;
}

.senior__more-nav {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0e0e10;
  border: 1px solid rgba(255, 255, 255, .14);
  color: #f5f5f7;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s;
}

.senior__more-nav:hover {
  border-color: rgba(90, 200, 250, .5);
  color: #5ac8fa;
}

@media (max-width: 680px) {
  .senior__more-nav {
    display: none;
  }
}

/* ecosystem */

.ecosystem {
  padding: clamp(64px, 10vw, 84px) clamp(20px, 5vw, 56px);
  background: linear-gradient(180deg, #0a0a0c, #000);
}

.ecosystem__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.ecosystem__desc {
  margin: 18px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: clamp(15px, 3vw, 17px);
  line-height: 1.85;
  color: #c7c7cc;
}

.ecosystem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-top: clamp(36px, 5vw, 48px);
}

@media (min-width: 640px) {
  .ecosystem__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ecosystem__item {
  display: flex;
  flex-direction: column;
  background: #0e0e10;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 22px;
  padding: 22px;
  color: inherit;
  text-decoration: none;
  transition: border-color .2s;
}

.ecosystem__item:hover {
  border-color: rgba(90, 200, 250, .5);
}

.ecosystem__thumb {
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1c;
}

.ecosystem__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ecosystem__name {
  margin-top: 20px;
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 700;
  text-align: center;
}

/* Apple RTC */

.rtc {
  padding: clamp(64px, 10vw, 84px) clamp(20px, 5vw, 56px);
}

.rtc__inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.rtc__title {
  margin: 14px 0 0;
  font-size: clamp(26px, 5vw, 34px);
  font-weight: 800;
}

.rtc__desc {
  margin: 22px 0 0;
  font-size: clamp(15px, 3vw, 17px);
  line-height: 1.85;
  color: #c7c7cc;
}

.rtc__photo {
  margin: clamp(28px, 5vw, 40px) auto 0;
  max-width: 640px;
  border-radius: clamp(14px, 3vw, 20px);
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, .08);
}

.rtc__photo img {
  display: block;
  width: 100%;
  height: auto;
}

/* contest */

.contest {
  padding: clamp(64px, 10vw, 84px) clamp(20px, 5vw, 56px);
  background: linear-gradient(180deg, #000, #0a0a0c);
}

.contest__inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.contest__title {
  margin: 14px 0 0;
  font-size: clamp(26px, 5vw, 34px);
  font-weight: 800;
}

.contest__desc {
  margin: 22px 0 0;
  font-size: clamp(15px, 3vw, 17px);
  line-height: 1.85;
  color: #c7c7cc;
}

.timeline {
  margin: clamp(36px, 5vw, 48px) auto 0;
  max-width: 480px;
  text-align: left;
}

.timeline__item {
  position: relative;
  padding: 0 0 20px 26px;
  border-left: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 8px;
}

.timeline__item:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #5ac8fa;
  box-shadow: 0 0 0 4px rgba(90, 200, 250, .16);
}

.timeline__year {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 700;
  color: #5ac8fa;
  letter-spacing: .06em;
  min-width: 38px;
}

.timeline__work {
  font-size: 15.5px;
  font-weight: 600;
  color: #f5f5f7;
}

.timeline__result {
  font-size: 13.5px;
  color: #8e8e93;
}

.btn-outline {
  display: inline-block;
  margin-top: 30px;
  border: 1px solid rgba(90, 200, 250, .6);
  color: #5ac8fa;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: 24px;
}

/* awards */

.awards {
  padding: clamp(64px, 10vw, 84px) clamp(20px, 5vw, 56px);
}

.awards__statement {
  margin: 18px auto 0;
  max-width: 880px;
  font-size: clamp(24px, 5.2vw, 44px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -.01em;
  background: linear-gradient(90deg, #fff, #c7c7cc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.awards__statement-em {
  background: linear-gradient(90deg, #5ac8fa, #0a84ff, #bf5af2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.awards__attribution {
  margin: 18px auto 0;
  font-size: clamp(13px, 2.6vw, 15px);
  color: #8e8e93;
}

.awards__viewport {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.awards__grid {
  display: flex;
  gap: 22px;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 2px 2px 10px;
}

.awards__grid::-webkit-scrollbar {
  display: none;
}

.awards__card {
  flex: 0 0 auto;
  width: clamp(300px, 82vw, 430px);
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  background: #0e0e10;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 22px;
  padding: 26px 26px 30px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s;
}

.awards__card:hover {
  border-color: rgba(90, 200, 250, .5);
}

.awards__thumb {
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  margin-bottom: 22px;
}

.awards__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.awards__year {
  font-size: 13px;
  color: #5ac8fa;
  font-weight: 700;
  letter-spacing: .12em;
}

.awards__title {
  font-size: clamp(18px, 2.4vw, 21px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -.01em;
  color: #f5f5f7;
  margin-top: 12px;
}

.awards__desc {
  margin: 14px 0 0;
  font-size: 14.5px;
  line-height: 1.8;
  color: #8e8e93;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.awards__cta {
  margin-top: auto;
  padding-top: 22px;
  font-size: 13px;
  font-weight: 600;
  color: #5ac8fa;
}

.awards__nav {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0e0e10;
  border: 1px solid rgba(255, 255, 255, .14);
  color: #f5f5f7;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s;
}

.awards__nav:hover {
  border-color: rgba(90, 200, 250, .5);
  color: #5ac8fa;
}

@media (max-width: 680px) {
  .awards__nav {
    display: none;
  }
}

/* CTA */

.cta {
  padding: clamp(80px, 12vw, 110px) clamp(20px, 5vw, 56px);
  text-align: center;
  background: radial-gradient(120% 100% at 50% 100%, #0a2a4a 0%, #06121f 45%, #000 82%);
}

.cta__title {
  margin: 0;
  font-size: clamp(32px, 7vw, 46px);
  font-weight: 900;
  letter-spacing: -.01em;
  background: linear-gradient(90deg, #fff, #c7c7cc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta__desc {
  margin: 20px auto 0;
  max-width: 580px;
  font-size: clamp(15px, 3.4vw, 18px);
  line-height: 1.7;
  color: #a1a1a6;
}

.cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn-cta {
  background: #0a84ff;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 30px;
  border-radius: 26px;
}

/* footer */

.footer {
  padding: 26px clamp(20px, 5vw, 56px);
  text-align: center;
  font-size: 12px;
  color: #636366;
  background: #000;
}
