:root {
  --ink: #07172e;
  --navy: #112d66;
  --blue: #294fa7;
  --electric: #158de0;
  --cyan: #4ed8ec;
  --ice: #dff4fa;
  --paper: #f7fcfd;
  --white: #ffffff;
  --orange: #ff700e;
  --red: #ed3544;
  --violet: #8f4cea;
  --yellow: #ffd84f;
  --line: 3px solid var(--navy);
  --shadow: 8px 8px 0 rgba(17, 45, 102, 0.13);
  --page: min(1240px, calc(100% - 48px));
  --display: Impact, Haettenschweiler, "DIN Condensed", "PingFang SC",
    "Microsoft YaHei", sans-serif;
  --body: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  background-color: #edf9fc;
  background-image:
    radial-gradient(circle at 13% 14%, rgba(76, 203, 225, 0.14) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 8%, rgba(41, 79, 167, 0.1) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 70%, rgba(98, 213, 218, 0.14) 0 2px, transparent 3px),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.24) 0 1px, transparent 1px 6px),
    linear-gradient(180deg, #f5fcfd 0%, #eaf8fc 42%, #f8fcfd 100%);
  background-size: 90px 90px, 130px 130px, 110px 110px, auto, auto;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.3;
  background:
    repeating-radial-gradient(circle at 0 0, transparent 0 3px, rgba(17, 45, 102, 0.05) 4px 5px),
    linear-gradient(90deg, transparent 49.8%, rgba(29, 105, 181, 0.04) 50%, transparent 50.2%);
  background-size: 13px 13px, 78px 100%;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 14px 0;
  transition: padding 180ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-bottom: 1px solid transparent;
  background: rgba(245, 252, 253, 0);
  backdrop-filter: blur(0);
  transition: 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 8px;
}

.site-header.is-scrolled::before {
  border-bottom-color: rgba(17, 45, 102, 0.18);
  background: rgba(245, 252, 253, 0.9);
  box-shadow: 0 8px 28px rgba(17, 45, 102, 0.08);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: var(--page);
  height: 66px;
  margin: 0 auto;
  padding: 7px 9px 7px 14px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 2px solid var(--navy);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 5px 5px 0 rgba(17, 45, 102, 0.14);
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 13px 100%, 0 calc(100% - 13px));
}

.brand {
  width: 128px;
  height: 48px;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav a {
  position: relative;
  padding: 12px 12px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.desktop-nav a span {
  margin-right: 5px;
  color: var(--electric);
  font-size: 9px;
  vertical-align: top;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 11px;
  bottom: 6px;
  left: 11px;
  height: 3px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

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

.nav-cta {
  min-width: 132px;
  height: 46px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--white);
  background: var(--navy);
  border: 2px solid var(--navy);
  font-size: 13px;
  font-weight: 900;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: 160ms ease;
}

.nav-cta i,
.join-kicker i,
.eyebrow i,
.record-mark i,
.track-camera > span i {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #ff4658;
  box-shadow: 0 0 0 4px rgba(255, 70, 88, 0.15);
  animation: blink 1.35s infinite;
}

.nav-cta:hover {
  color: var(--navy);
  background: var(--cyan);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--navy);
}

.menu-button {
  width: 46px;
  height: 46px;
  padding: 10px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 2px solid var(--navy);
  color: var(--navy);
  background: var(--white);
}

.menu-button span {
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

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

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: min(520px, calc(100% - 24px));
  max-height: calc(100vh - 100px);
  margin: 0;
  padding: 18px;
  border: 3px solid var(--navy);
  background: rgba(247, 252, 253, 0.98);
  box-shadow: 8px 8px 0 rgba(17, 45, 102, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -12px);
  transition: 180ms ease;
  overflow: auto;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mobile-menu-head {
  padding-bottom: 12px;
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid var(--navy);
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.mobile-menu-head small {
  color: var(--electric);
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  min-height: 58px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(17, 45, 102, 0.18);
  font-size: 16px;
  font-weight: 900;
}

.mobile-menu nav a span {
  color: var(--electric);
  font: 20px var(--display);
}

.mobile-menu nav a em {
  color: rgba(17, 45, 102, 0.48);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  min-height: 890px;
  padding-top: 128px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  width: 440px;
  height: 440px;
  top: 130px;
  right: -130px;
  border: 1px solid rgba(41, 79, 167, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 56px rgba(78, 216, 236, 0.05),
    0 0 0 112px rgba(41, 79, 167, 0.035);
}

.hero::after {
  left: 0;
  right: 0;
  bottom: 66px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.paper-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.paper-stars i {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--blue);
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
  opacity: 0.4;
}

.paper-stars i:nth-child(1) { top: 18%; left: 4%; transform: scale(1.5); }
.paper-stars i:nth-child(2) { top: 30%; left: 48%; background: var(--cyan); }
.paper-stars i:nth-child(3) { top: 14%; right: 6%; transform: scale(0.7); }
.paper-stars i:nth-child(4) { top: 64%; left: 2%; background: #78d9d0; }
.paper-stars i:nth-child(5) { top: 72%; right: 4%; transform: scale(1.8); }
.paper-stars i:nth-child(6) { top: 84%; left: 38%; background: var(--violet); transform: scale(0.75); }
.paper-stars i:nth-child(7) { top: 46%; right: 46%; transform: scale(0.55); }
.paper-stars i:nth-child(8) { top: 9%; left: 36%; background: #89c4ff; transform: scale(0.55); }

.hero-shell {
  position: relative;
  z-index: 2;
  width: var(--page);
  min-height: 690px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(34px, 5vw, 80px);
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.eyebrow {
  width: fit-content;
  padding: 9px 13px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  border: 2px solid var(--navy);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 4px 4px 0 rgba(17, 45, 102, 0.12);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow small {
  padding-left: 14px;
  border-left: 1px solid rgba(17, 45, 102, 0.3);
  font-size: inherit;
}

.hero-brand {
  width: 250px;
  margin: 34px 0 14px;
  transform: rotate(-1.2deg);
}

.hero-brand img {
  width: 100%;
  height: 122px;
  object-fit: contain;
}

.hero-brand p {
  margin: -6px 0 0;
  color: var(--blue);
  font: 12px var(--display);
  letter-spacing: 0.16em;
  text-align: center;
}

.hero-title {
  margin: 0;
  display: grid;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(50px, 5.6vw, 82px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-title span {
  white-space: nowrap;
}

.hero-title em {
  width: fit-content;
  margin-top: 10px;
  padding: 2px 10px 7px;
  color: var(--white);
  background: linear-gradient(90deg, var(--blue) 0 62%, var(--navy) 62%);
  font-style: normal;
  transform: rotate(-1deg);
  clip-path: polygon(0 8px, 100% 0, calc(100% - 12px) 100%, 8px calc(100% - 4px));
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.15);
}

.hero-lead {
  max-width: 560px;
  margin: 27px 0 0;
  color: #26446b;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.9;
}

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

.action-button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 3px solid var(--navy);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.03em;
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.action-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 6px 6px 0 var(--navy);
}

.action-primary b {
  font-size: 22px;
}

.action-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.85);
}

.action-button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--navy);
}

.action-secondary:hover {
  background: var(--cyan);
}

.hero-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
}

.hero-stats div {
  min-height: 72px;
  padding: 12px 12px;
  display: grid;
  align-content: center;
  border-right: 1px solid rgba(17, 45, 102, 0.25);
}

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

.hero-stats strong {
  color: var(--blue);
  font: 26px/1 var(--display);
}

.hero-stats span {
  margin-top: 6px;
  color: #39577c;
  font-size: 11px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 28px 18px 42px;
}

.camera-frame {
  position: relative;
  border: 9px solid var(--ink);
  background: var(--white);
  box-shadow: 14px 14px 0 rgba(17, 45, 102, 0.14);
  transform: rotate(1.1deg);
}

.camera-frame::before,
.camera-frame::after {
  content: "";
  position: absolute;
  z-index: 3;
  width: 62px;
  height: 62px;
  pointer-events: none;
}

.camera-frame::before {
  top: 18px;
  left: 18px;
  border-top: 5px solid var(--ink);
  border-left: 5px solid var(--ink);
  border-radius: 14px 0 0;
}

.camera-frame::after {
  top: 18px;
  right: 18px;
  border-top: 5px solid var(--ink);
  border-right: 5px solid var(--ink);
  border-radius: 0 14px 0 0;
}

.camera-top,
.camera-bottom {
  height: 52px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--white);
  background: var(--ink);
  font: 14px var(--display);
  letter-spacing: 0.08em;
}

.camera-top span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.camera-top i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff3d4d;
  animation: blink 1.1s infinite;
}

.camera-top small {
  font: inherit;
}

.camera-bottom b {
  font-size: 20px;
  font-weight: 500;
}

.poster-character-crop {
  height: 570px;
  background-color: #e8f7fa;
  background-image: url("./assets/hero-recruitment.webp");
  background-image: image-set(
    url("./assets/hero-recruitment.avif") type("image/avif"),
    url("./assets/hero-recruitment.webp") type("image/webp")
  );
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.welcome-sticker {
  position: absolute;
  right: -4px;
  bottom: 4px;
  z-index: 4;
  padding: 12px 18px;
  display: grid;
  color: var(--white);
  background: var(--blue);
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(-3deg);
}

.welcome-sticker span {
  font: 24px var(--display);
}

.welcome-sticker small {
  margin-top: 3px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.float-tag {
  position: absolute;
  z-index: 5;
  padding: 8px 12px;
  border: 2px solid var(--navy);
  color: var(--navy);
  background: var(--white);
  box-shadow: 4px 4px 0 rgba(17, 45, 102, 0.18);
  font-size: 12px;
  font-weight: 900;
}

.float-tag-a {
  top: 2px;
  right: -24px;
  color: var(--white);
  background: var(--electric);
  transform: rotate(4deg);
}

.float-tag-b {
  bottom: 70px;
  left: -20px;
  transform: rotate(-3deg);
}

.ticker {
  position: absolute;
  inset: auto 0 0;
  height: 66px;
  border-top: 3px solid var(--navy);
  border-bottom: 3px solid var(--navy);
  background: var(--blue);
  color: var(--white);
  overflow: hidden;
  transform: rotate(-0.35deg) scale(1.01);
}

.ticker div {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-left: 28px;
  font: 23px var(--display);
  letter-spacing: 0.06em;
  animation: ticker 30s linear infinite;
}

.ticker i {
  color: var(--cyan);
  font-style: normal;
}

.section {
  position: relative;
  padding: 116px 0;
}

.section-shell {
  position: relative;
  z-index: 2;
  width: var(--page);
  margin: 0 auto;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 62px;
  text-align: center;
}

.section-heading > p {
  margin: 0 0 12px;
  color: var(--blue);
  font: 14px var(--display);
  letter-spacing: 0.18em;
}

.section-heading > p span {
  margin-right: 10px;
  color: var(--white);
  background: var(--blue);
  padding: 3px 7px;
}

.section-heading > small {
  display: block;
  margin-top: 13px;
  color: #48678a;
  font-size: 14px;
  font-weight: 700;
}

.mecha-title {
  min-height: 104px;
  padding: 18px clamp(22px, 5vw, 68px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  border: 3px solid var(--blue);
  background:
    linear-gradient(90deg, rgba(41, 79, 167, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(41, 79, 167, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.72);
  background-size: 22px 22px;
  box-shadow:
    inset 0 0 26px rgba(21, 141, 224, 0.18),
    7px 7px 0 rgba(17, 45, 102, 0.12);
  clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px), 0 20px);
}

.mecha-title h2 {
  margin: 0;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0.03em;
  text-shadow: 3px 3px 0 rgba(21, 141, 224, 0.16);
}

.mecha-title i {
  height: 3px;
  position: relative;
  background: linear-gradient(90deg, transparent, var(--electric));
}

.mecha-title i:last-child {
  background: linear-gradient(90deg, var(--electric), transparent);
}

.mecha-title i::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 11px;
  height: 11px;
  background: var(--cyan);
  transform: rotate(45deg);
}

.mecha-title i:last-child::after {
  right: auto;
  left: 0;
}

.about {
  padding-top: 135px;
}

.about::before,
.growth::before,
.tracks::before,
.moments::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 7%, rgba(41, 79, 167, 0.055) 7.1% 7.2%, transparent 7.3% 92.7%, rgba(41, 79, 167, 0.055) 92.8% 92.9%, transparent 93%),
    radial-gradient(circle at 10% 20%, rgba(78, 216, 236, 0.18), transparent 24%),
    radial-gradient(circle at 90% 80%, rgba(41, 79, 167, 0.08), transparent 24%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 44px;
  align-items: stretch;
}

.about-story {
  padding: 10px 6px 10px 0;
}

.story-kicker {
  width: fit-content;
  padding: 7px 12px;
  color: var(--white);
  background: var(--blue);
  font: 15px var(--display);
  letter-spacing: 0.08em;
  transform: rotate(-1.5deg);
}

.about-story h3 {
  margin: 28px 0 22px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.about-story p {
  margin: 0 0 16px;
  color: #334f70;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.95;
}

.about-story blockquote {
  margin: 28px 0 0;
  padding: 18px 22px;
  display: grid;
  gap: 8px;
  border-left: 7px solid var(--cyan);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 2px rgba(17, 45, 102, 0.16);
}

.about-story blockquote b {
  font-size: 20px;
}

.about-story blockquote span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.brand-board {
  position: relative;
  padding: 54px 26px 24px;
  border: var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}

.board-label {
  position: absolute;
  inset: 0 0 auto;
  height: 36px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--navy);
  font: 12px var(--display);
  letter-spacing: 0.09em;
}

.brand-logos {
  height: calc(100% - 18px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.brand-logos figure {
  min-width: 0;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  border: 2px solid var(--navy);
  background: var(--white);
  overflow: hidden;
}

.brand-logos img {
  width: 100%;
  height: 240px;
  padding: 12px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.2);
}

.brand-logos figcaption {
  padding: 12px;
  display: grid;
  gap: 2px;
  border-top: 2px solid var(--navy);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.brand-logos figcaption span {
  color: var(--electric);
  font: 12px var(--display);
  letter-spacing: 0.08em;
}

.board-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.board-meta span {
  padding: 5px 8px;
  color: var(--navy);
  border: 1px solid var(--blue);
  background: var(--ice);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.belief-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.paper-card {
  position: relative;
  min-height: 250px;
  padding: 52px 25px 24px;
  border: var(--line);
  background:
    linear-gradient(135deg, rgba(78, 216, 236, 0.1), transparent 50%),
    rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  transition: 180ms ease;
}

.paper-card::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 16px;
  height: 16px;
  border: 3px solid var(--cyan);
  transform: rotate(45deg);
}

.paper-card:hover {
  transform: translate(-4px, -4px) rotate(-0.5deg);
  box-shadow: 12px 12px 0 rgba(17, 45, 102, 0.16);
}

.card-index {
  position: absolute;
  top: 12px;
  left: 16px;
  color: var(--blue);
  font: 13px var(--display);
}

.sticker-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 3px solid var(--ink);
  border-radius: 48% 52% 46% 54%;
  background: var(--blue);
  box-shadow: 4px 4px 0 var(--ink);
  font: 32px var(--display);
  transform: rotate(-5deg);
}

.paper-card:nth-child(2) .sticker-icon {
  color: var(--navy);
  background: var(--cyan);
  transform: rotate(4deg);
}

.paper-card:nth-child(3) .sticker-icon {
  background: var(--navy);
  transform: rotate(-2deg);
}

.paper-card h3 {
  margin: 22px 0 8px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 950;
}

.paper-card p {
  margin: 0;
  color: #48617f;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.75;
}

.growth {
  background: rgba(209, 239, 248, 0.46);
  border-top: 1px solid rgba(17, 45, 102, 0.1);
  border-bottom: 1px solid rgba(17, 45, 102, 0.1);
}

.support-visual {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 46px;
}

.support-camera {
  position: relative;
  padding: 12px;
  border: 7px solid var(--ink);
  background: var(--white);
  box-shadow: 12px 12px 0 rgba(17, 45, 102, 0.14);
}

.support-camera picture,
.track-camera picture {
  width: 100%;
  display: block;
}

.poster-preview picture,
.work-tile picture {
  width: 100%;
  height: 100%;
  display: block;
}

.support-camera::before,
.support-camera::after,
.track-camera::before,
.track-camera::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 42px;
  height: 42px;
}

.support-camera::before,
.track-camera::before {
  top: 28px;
  left: 28px;
  border-top: 4px solid var(--navy);
  border-left: 4px solid var(--navy);
}

.support-camera::after,
.track-camera::after {
  right: 28px;
  bottom: 28px;
  border-right: 4px solid var(--navy);
  border-bottom: 4px solid var(--navy);
}

.support-camera img {
  width: 100%;
  aspect-ratio: 16 / 8.1;
  object-fit: cover;
}

.record-mark {
  position: absolute;
  top: 28px;
  left: 34px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font: 12px var(--display);
  letter-spacing: 0.08em;
}

.support-note {
  position: absolute;
  right: -18px;
  bottom: -25px;
  z-index: 4;
  max-width: 400px;
  padding: 16px 20px;
  display: grid;
  gap: 4px;
  border: 3px solid var(--navy);
  color: var(--navy);
  background: var(--white);
  box-shadow: 6px 6px 0 var(--navy);
  transform: rotate(-1.2deg);
}

.support-note b {
  font-size: 20px;
}

.support-note span {
  font-size: 12px;
  font-weight: 700;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.support-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border: var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 6px 6px 0 rgba(17, 45, 102, 0.12);
  overflow: hidden;
}

.support-card::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -70px;
  top: -70px;
  border: 15px solid rgba(78, 216, 236, 0.15);
  border-radius: 50%;
}

.support-card > span {
  color: var(--electric);
  font: 12px var(--display);
  letter-spacing: 0.12em;
}

.support-card h3 {
  margin: 13px 0 10px;
  color: var(--navy);
  font-size: 26px;
  font-weight: 950;
}

.support-card h3 b {
  color: var(--white);
  background: var(--blue);
  padding: 2px 7px;
  font: inherit;
}

.support-card p {
  max-width: 520px;
  margin: 0;
  color: #49627e;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}

.support-card ul {
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.support-card li {
  padding: 6px 10px;
  color: var(--navy);
  border: 1px solid var(--blue);
  background: var(--ice);
  font-size: 11px;
  font-weight: 800;
}

.recruit {
  background:
    linear-gradient(90deg, rgba(41, 79, 167, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(41, 79, 167, 0.055) 1px, transparent 1px),
    rgba(247, 252, 253, 0.74);
  background-size: 30px 30px;
}

.recruit-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.85fr);
  grid-auto-rows: 480px;
  gap: 24px;
  align-items: stretch;
}

.recruit-types {
  position: relative;
  min-height: 0;
  height: 100%;
  padding: 44px 48px;
  display: grid;
  align-content: center;
  border: var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.recruit-types::before {
  content: "JOIN US";
  position: absolute;
  right: -18px;
  bottom: -22px;
  color: rgba(41, 79, 167, 0.06);
  font: 120px var(--display);
  line-height: 1;
}

.recruit-types > span {
  width: fit-content;
  padding: 6px 10px;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.recruit-types h3 {
  position: relative;
  z-index: 2;
  margin: 22px 0 18px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.type-orange { color: var(--orange); }
.type-blue { color: #258ee8; }
.type-red { color: var(--red); }
.type-purple { color: var(--violet); }

.recruit-types p {
  position: relative;
  z-index: 2;
  max-width: 570px;
  margin: 0;
  color: #405c7d;
  font-size: 15px;
  font-weight: 700;
}

.recruit-points {
  position: relative;
  z-index: 2;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}

.recruit-points li {
  min-height: 68px;
  padding: 11px 12px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(41, 79, 167, 0.35);
  background: rgba(223, 244, 250, 0.72);
}

.recruit-points b {
  color: var(--blue);
  font: 25px/1 var(--display);
}

.recruit-points span {
  margin-top: 6px;
  color: #405c7d;
  font-size: 10px;
  font-weight: 900;
}

.recruit-stamp {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border: 4px double var(--blue);
  border-radius: 50%;
  font: 15px/1.05 var(--display);
  text-align: center;
  transform: rotate(12deg);
  opacity: 0.72;
}

.poster-preview {
  position: relative;
  min-height: 0;
  height: 100%;
  border: var(--line);
  background: var(--ice);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.poster-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 260ms ease;
}

.poster-preview span {
  position: absolute;
  inset: auto 14px 14px;
  min-height: 60px;
  padding: 10px 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  color: var(--white);
  background: rgba(7, 23, 46, 0.94);
  border: 2px solid var(--white);
  backdrop-filter: blur(8px);
}

.poster-preview span b {
  font-size: 14px;
  font-weight: 900;
}

.poster-preview span small {
  color: #bcd7e5;
  font-size: 9px;
  font-weight: 700;
}

.poster-preview span i {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--cyan);
  font-size: 24px;
  font-style: normal;
}

.poster-preview:hover img {
  transform: scale(1.025);
}

.recruit-block {
  margin-top: 42px;
}

.subheading {
  min-height: 74px;
  margin-bottom: 20px;
  padding: 12px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 3px solid var(--blue);
  color: var(--blue);
  background:
    linear-gradient(90deg, rgba(41, 79, 167, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(41, 79, 167, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.75);
  background-size: 20px 20px;
  clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
}

.subheading span {
  font: 12px var(--display);
  letter-spacing: 0.15em;
}

.subheading h3 {
  margin: 0;
  font: 38px var(--display);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.treatment-grid > div {
  min-height: 164px;
  padding: 22px;
  display: grid;
  align-content: center;
  border: var(--line);
  background: var(--white);
  box-shadow: 5px 5px 0 rgba(17, 45, 102, 0.12);
}

.treatment-grid strong {
  color: var(--blue);
  font: 46px/1 var(--display);
}

.treatment-grid span {
  margin-top: 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
}

.treatment-grid small {
  color: #52708f;
  font-size: 11px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.resource-grid article {
  min-height: 260px;
  padding: 25px;
  border: var(--line);
  background: var(--white);
  box-shadow: 6px 6px 0 rgba(17, 45, 102, 0.12);
}

.resource-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font: 28px var(--display);
  transform: rotate(-3deg);
}

.resource-grid article:nth-child(2) .resource-icon {
  color: var(--navy);
  background: var(--cyan);
  transform: rotate(3deg);
}

.resource-grid article:nth-child(3) .resource-icon {
  background: var(--navy);
}

.resource-grid article > span {
  display: block;
  margin-top: 21px;
  color: var(--electric);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.resource-grid h4 {
  margin: 7px 0 9px;
  color: var(--navy);
  font-size: 23px;
}

.resource-grid p {
  margin: 0;
  color: #48617d;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.75;
}

.reward-block {
  padding: 26px;
  border: 3px dashed var(--blue);
  background: rgba(214, 242, 249, 0.58);
}

.reward-note {
  margin: -4px 0 20px;
  padding: 11px 14px;
  color: #385778;
  border-left: 5px solid var(--cyan);
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.reward-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.reward-grid article {
  min-height: 210px;
  padding: 22px;
  border: 2px solid var(--navy);
  background: var(--white);
}

.reward-grid article > span {
  width: fit-content;
  padding: 4px 8px;
  color: var(--white);
  background: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.reward-grid strong {
  margin: 18px 0 13px;
  display: block;
  color: var(--blue);
  font: 42px/1 var(--display);
}

.reward-grid strong small {
  margin-left: 5px;
  color: var(--ink);
  font: 13px var(--body);
  font-weight: 900;
}

.reward-grid p {
  margin: 0;
  color: #415b78;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}

.reward-new {
  background: linear-gradient(145deg, #fff, #e4f9fb) !important;
}

.recruit-two-column {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
}

.info-panel {
  padding: 22px;
  border: var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.info-panel .subheading {
  margin-bottom: 18px;
}

.info-panel > p {
  margin: 0;
  color: #385575;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.9;
}

.info-flow {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.info-flow span {
  padding: 9px 10px;
  color: var(--navy);
  border: 1px solid var(--blue);
  background: var(--ice);
  font-size: 11px;
  font-weight: 900;
}

.info-flow i {
  color: var(--electric);
  font-style: normal;
  font-weight: 900;
}

.requirements ol {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
  counter-reset: requirement;
}

.requirements li {
  position: relative;
  min-height: 36px;
  padding: 7px 9px 7px 47px;
  color: #2f4c6d;
  border-bottom: 1px dashed rgba(17, 45, 102, 0.25);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
  counter-increment: requirement;
}

.requirements li::before {
  content: counter(requirement, decimal-leading-zero);
  position: absolute;
  left: 6px;
  top: 5px;
  color: var(--blue);
  font: 20px var(--display);
}

.policy-note {
  margin: 24px 0 0;
  padding: 15px 18px;
  color: #47617f;
  border: 1px solid rgba(17, 45, 102, 0.22);
  background: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  line-height: 1.7;
}

.tracks {
  background: rgba(218, 242, 249, 0.5);
}

.track-visual {
  margin-bottom: 38px;
}

.track-camera {
  position: relative;
  padding: 12px;
  border: 7px solid var(--ink);
  background: var(--white);
  box-shadow: 12px 12px 0 rgba(17, 45, 102, 0.14);
}

.track-camera img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.track-camera > span {
  position: absolute;
  top: 27px;
  left: 34px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font: 12px var(--display);
  letter-spacing: 0.08em;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.track-card {
  position: relative;
  min-height: 270px;
  padding: 28px 23px 22px;
  border: var(--line);
  background: var(--white);
  box-shadow: 6px 6px 0 rgba(17, 45, 102, 0.12);
  overflow: hidden;
  transition: 180ms ease;
}

.track-card::before {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 80px;
  height: 80px;
  border: 13px solid currentColor;
  border-radius: 50%;
  opacity: 0.09;
}

.track-card:hover {
  transform: translateY(-6px);
}

.track-card > span {
  color: var(--electric);
  font: 12px var(--display);
  letter-spacing: 0.12em;
}

.track-card h3 {
  width: fit-content;
  margin: 22px 0 14px;
  padding: 5px 10px;
  color: var(--white);
  background: var(--blue);
  font: 31px var(--display);
  transform: rotate(-1deg);
}

.track-card p {
  margin: 0;
  color: #3f5b7b;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.75;
}

.track-card b {
  position: absolute;
  inset: auto 22px 20px;
  padding-top: 12px;
  border-top: 1px dashed rgba(17, 45, 102, 0.25);
  color: var(--navy);
  font-size: 10px;
}

.track-game h3 { background: #258ee8; }
.track-talent h3 { background: var(--red); }
.track-radio h3 { background: var(--violet); }

.moments {
  padding-bottom: 130px;
  background:
    linear-gradient(90deg, rgba(41, 79, 167, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(41, 79, 167, 0.055) 1px, transparent 1px),
    rgba(247, 252, 253, 0.58);
  background-size: 34px 34px;
}

.showcase-lead {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(330px, 0.64fr);
  gap: 24px;
  align-items: stretch;
}

.showreel {
  position: relative;
  min-width: 0;
  padding: 12px;
  border: 7px solid var(--ink);
  background: var(--ink);
  box-shadow: 12px 12px 0 rgba(17, 45, 102, 0.16);
  overflow: hidden;
}

.showreel video {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
  background: #aab4c4;
}

.showreel-frame {
  position: absolute;
  inset: 24px 24px auto;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--white);
  pointer-events: none;
}

.showreel-frame span,
.showreel-frame b {
  padding: 7px 9px;
  background: rgba(7, 23, 46, 0.78);
  backdrop-filter: blur(8px);
  font: 10px var(--display);
  letter-spacing: 0.1em;
}

.showreel-frame span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.showreel-frame i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(237, 53, 68, 0.2);
  animation: blink 1.4s steps(2, end) infinite;
}

.showcase-manifest {
  position: relative;
  padding: clamp(30px, 4vw, 54px);
  color: var(--white);
  border: 3px solid var(--cyan);
  background:
    radial-gradient(circle at 87% 13%, rgba(78, 216, 236, 0.2), transparent 23%),
    linear-gradient(145deg, #07172e, #153b78);
  box-shadow: 9px 9px 0 var(--ink);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  overflow: hidden;
}

.showcase-manifest::after {
  content: "WORKS";
  position: absolute;
  right: -16px;
  bottom: -21px;
  color: rgba(255, 255, 255, 0.055);
  font: 95px/1 var(--display);
  pointer-events: none;
}

.showcase-kicker {
  color: var(--cyan);
  font: 11px var(--display);
  letter-spacing: 0.14em;
}

.showcase-manifest h3 {
  position: relative;
  z-index: 1;
  margin: 22px 0 18px;
  font-family: var(--display);
  font-size: clamp(34px, 3.2vw, 51px);
  line-height: 1.1;
}

.showcase-manifest > p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #cbe3ee;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.85;
}

.showcase-manifest ul {
  position: relative;
  z-index: 1;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  list-style: none;
}

.showcase-manifest li {
  min-height: 54px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(78, 216, 236, 0.48);
  background: rgba(78, 216, 236, 0.07);
}

.showcase-manifest li b {
  color: var(--cyan);
  font: 22px var(--display);
}

.showcase-manifest li span {
  font-size: 11px;
  font-weight: 900;
}

.showcase-manifest > small {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  display: block;
  color: #86adbf;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.6;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
  gap: 18px;
}

.work-tile {
  position: relative;
  min-width: 0;
  margin: 0;
  grid-column: span 4;
  border: var(--line);
  background: var(--white);
  box-shadow: 7px 7px 0 rgba(17, 45, 102, 0.13);
  overflow: hidden;
}

.work-tile-wide {
  grid-column: span 8;
}

.work-tile-tall,
.work-tile-dark {
  grid-row: span 2;
}

.work-tile > a {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

.work-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), filter 250ms ease;
}

.work-tile-tall img,
.work-tile-dark img {
  object-position: center top;
}

.work-tile-dark {
  background: var(--ink);
}

.work-tile-dark img {
  object-fit: contain;
}

.work-tile:hover img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.02);
}

.work-tile a:focus-visible {
  outline: 4px solid var(--cyan);
  outline-offset: -7px;
}

.work-index {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 9px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(7, 23, 46, 0.82);
  backdrop-filter: blur(8px);
  font: 10px var(--display);
  letter-spacing: 0.11em;
}

.work-tile figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 48px 18px 16px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(7, 23, 46, 0.9));
  pointer-events: none;
}

.work-tile figcaption b,
.work-tile figcaption span {
  display: block;
}

.work-tile figcaption b {
  font-size: 17px;
  font-weight: 950;
}

.work-tile figcaption span {
  margin-top: 4px;
  color: #b8eaf0;
  font: 9px var(--display);
  letter-spacing: 0.12em;
}

.bilibili-strip {
  position: relative;
  min-height: 154px;
  margin-top: 28px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  color: var(--white);
  border: 3px solid var(--ink);
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.2) 0 3px, transparent 4px),
    radial-gradient(circle at 15% 78%, rgba(255, 255, 255, 0.16) 0 2px, transparent 3px),
    linear-gradient(135deg, #fb7299, #e94c82);
  background-size: 34px 34px, 28px 28px, auto;
  box-shadow: 8px 8px 0 rgba(7, 23, 46, 0.17);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.bilibili-strip:hover {
  transform: translateY(-5px);
  box-shadow: 12px 12px 0 rgba(7, 23, 46, 0.2);
}

.bilibili-strip:focus-visible {
  outline: 4px solid var(--cyan);
  outline-offset: 4px;
}

.bilibili-strip::after {
  content: "BILIBILI";
  position: absolute;
  right: 150px;
  bottom: -24px;
  color: rgba(255, 255, 255, 0.1);
  font: 86px/1 var(--display);
  pointer-events: none;
}

.bilibili-strip-mark {
  position: relative;
  z-index: 1;
  width: 102px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 14px;
  box-shadow: 6px 6px 0 rgba(103, 31, 56, 0.18);
}

.bilibili-strip-mark::before,
.bilibili-strip-mark::after {
  content: "";
  position: absolute;
  top: -15px;
  width: 24px;
  height: 4px;
  border-radius: 3px;
  background: var(--white);
}

.bilibili-strip-mark::before {
  left: 20px;
  transform: rotate(34deg);
}

.bilibili-strip-mark::after {
  right: 20px;
  transform: rotate(-34deg);
}

.bilibili-strip-mark b {
  font-size: 26px;
  transform: translateX(2px);
}

.bilibili-strip > div:nth-child(2) {
  position: relative;
  z-index: 1;
}

.bilibili-strip small {
  font: 10px var(--display);
  letter-spacing: 0.13em;
}

.bilibili-strip h3 {
  margin: 6px 0 4px;
  font-size: 24px;
}

.bilibili-strip p {
  margin: 0;
  color: #fff2f7;
  font-size: 12px;
  font-weight: 650;
}

.bilibili-strip > span {
  position: relative;
  z-index: 1;
  min-width: 126px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #d74475;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 rgba(7, 23, 46, 0.18);
  font-size: 12px;
  font-weight: 950;
}

.bilibili-strip > span i {
  font-size: 20px;
  font-style: normal;
}

.join {
  padding: 90px 0;
  color: var(--white);
  background: var(--navy);
  border-top: 9px solid var(--ink);
}

.join::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 36%, rgba(78, 216, 236, 0.21), transparent 25%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}

.join-board {
  padding: clamp(28px, 5vw, 66px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
  align-items: center;
  border: 3px solid var(--cyan);
  box-shadow:
    inset 0 0 0 9px rgba(255, 255, 255, 0.045),
    11px 11px 0 var(--ink);
  clip-path: polygon(22px 0, calc(100% - 22px) 0, 100% 22px, 100% calc(100% - 22px), calc(100% - 22px) 100%, 22px 100%, 0 calc(100% - 22px), 0 22px);
}

.join-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font: 12px var(--display);
  letter-spacing: 0.14em;
}

.join-copy h2 {
  margin: 20px 0;
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.join-copy h2 em {
  color: var(--cyan);
  font-style: normal;
}

.join-copy p {
  max-width: 610px;
  margin: 0;
  color: #cde5f0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
}

.join-tags {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.join-tags span {
  padding: 7px 11px;
  color: var(--white);
  border: 1px solid var(--cyan);
  background: rgba(78, 216, 236, 0.08);
  font-size: 11px;
  font-weight: 800;
}

.contact-card {
  padding: 16px;
  border: 3px solid var(--white);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--cyan);
  color: var(--navy);
}

.contact-qr {
  padding: 24px 20px 20px;
  display: grid;
  justify-items: center;
  text-align: center;
  border: 2px dashed var(--blue);
  background:
    linear-gradient(90deg, rgba(41, 79, 167, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(41, 79, 167, 0.07) 1px, transparent 1px);
  background-size: 20px 20px;
  overflow: hidden;
}

.contact-qr img {
  width: min(230px, 72vw);
  height: auto;
  padding: 6px;
  background: var(--white);
  border: 2px solid var(--navy);
  box-shadow: 5px 5px 0 rgba(17, 45, 102, 0.15);
}

.contact-qr > div {
  padding-top: 18px;
}

.contact-qr span {
  color: var(--electric);
  font: 12px var(--display);
  letter-spacing: 0.15em;
}

.contact-qr strong {
  margin: 9px 0 5px;
  display: block;
  font-size: 22px;
  font-weight: 950;
}

.contact-qr p {
  margin: 0;
  color: #52708f;
  font-size: 12px;
  font-weight: 700;
}

.contact-qr small {
  margin-top: 7px;
  display: block;
  color: #7690a8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.contact-action {
  min-height: 52px;
  margin-top: 14px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.contact-action b {
  color: var(--cyan);
  font-size: 20px;
}

.site-footer {
  padding: 38px 0;
  color: #b8d0e0;
  background: var(--ink);
}

.footer-shell {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 114px;
  height: 58px;
  padding: 5px;
  object-fit: contain;
  background: var(--white);
}

.footer-brand p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-size: 11px;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-legal {
  grid-column: 1 / -1;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  margin: 0;
  color: #7590a7;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.filing-link {
  color: #91adbf;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: color 160ms ease;
}

.filing-link:hover {
  color: var(--cyan);
}

.hero-reveal {
  opacity: 0;
  animation: hero-in 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay, 0s);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes blink {
  50% { opacity: 0.35; }
}

@media (min-width: 2200px) {
  :root {
    --page: min(1760px, calc(100% - 160px));
  }

  html {
    scroll-padding-top: 106px;
  }

  .site-header {
    padding-top: 20px;
  }

  .nav-shell {
    height: 76px;
    padding: 8px 10px 8px 18px;
    gap: 32px;
  }

  .brand {
    width: 154px;
    height: 58px;
  }

  .desktop-nav {
    gap: 8px;
  }

  .desktop-nav a {
    padding: 14px;
    font-size: 15px;
  }

  .desktop-nav a span {
    font-size: 10px;
  }

  .nav-cta {
    min-width: 150px;
    height: 52px;
    font-size: 14px;
  }

  .hero {
    min-height: 980px;
    padding-top: 148px;
  }

  .hero-shell {
    min-height: 800px;
    grid-template-columns: minmax(0, 0.88fr) minmax(760px, 1.12fr);
    gap: 88px;
  }

  .eyebrow {
    padding: 11px 15px;
    font-size: 12px;
  }

  .hero-brand {
    width: 290px;
    margin-top: 38px;
  }

  .hero-brand img {
    height: 140px;
  }

  .hero-brand p {
    font-size: 13px;
  }

  .hero-title {
    font-size: 88px;
  }

  .hero-lead {
    max-width: 680px;
    font-size: 18px;
  }

  .action-button {
    min-height: 60px;
    padding-inline: 28px;
    font-size: 16px;
  }

  .hero-stats div {
    min-height: 82px;
    padding-inline: 16px;
  }

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

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

  .hero-visual {
    padding: 32px 22px 48px;
  }

  .camera-top,
  .camera-bottom {
    height: 58px;
    padding-inline: 24px;
    font-size: 16px;
  }

  .camera-bottom b {
    font-size: 22px;
  }

  .poster-character-crop {
    height: 680px;
  }

  .welcome-sticker span {
    font-size: 28px;
  }

  .float-tag {
    padding: 10px 14px;
    font-size: 13px;
  }

  .ticker {
    height: 72px;
  }

  .ticker div {
    gap: 34px;
    padding-left: 34px;
    font-size: 26px;
  }

  .section {
    padding-block: 132px;
  }

  .about {
    padding-top: 150px;
  }

  .section-heading {
    max-width: 980px;
    margin-bottom: 72px;
  }

  .section-heading > p {
    font-size: 16px;
  }

  .section-heading > small {
    font-size: 16px;
  }

  .mecha-title {
    min-height: 118px;
  }

  .mecha-title h2 {
    font-size: 64px;
  }

  .about-grid {
    gap: 64px;
  }

  .about-story h3 {
    font-size: 64px;
  }

  .about-story p {
    font-size: 17px;
  }

  .brand-logos img {
    height: 300px;
  }

  .support-visual {
    max-width: 1400px;
  }

  .recruit-intro {
    grid-auto-rows: 560px;
  }

  .showcase-lead {
    grid-template-columns: minmax(0, 1.45fr) minmax(470px, 0.55fr);
    gap: 34px;
  }

  .showreel video {
    min-height: 590px;
  }

  .showcase-manifest > p {
    font-size: 16px;
  }

  .showcase-manifest li span {
    font-size: 13px;
  }

  .works-grid {
    grid-auto-rows: 330px;
    gap: 24px;
  }

  .work-tile figcaption b {
    font-size: 21px;
  }

  .join-board {
    gap: 80px;
  }
}

@media (min-width: 3200px) {
  :root {
    --page: min(2200px, calc(100% - 240px));
  }

  .hero {
    min-height: 1140px;
    padding-top: 170px;
  }

  .hero-shell {
    min-height: 940px;
    grid-template-columns: minmax(0, 0.9fr) minmax(980px, 1.1fr);
    gap: 112px;
  }

  .hero-title {
    font-size: 108px;
  }

  .hero-lead {
    max-width: 820px;
    font-size: 21px;
  }

  .poster-character-crop {
    height: 800px;
  }

  .section-heading {
    max-width: 1120px;
  }

  .support-visual {
    max-width: 1680px;
  }

  .showreel video {
    min-height: 720px;
  }

  .works-grid {
    grid-auto-rows: 400px;
    gap: 30px;
  }
}

@media (max-width: 1120px) {
  :root {
    --page: min(100% - 36px, 1040px);
  }

  .desktop-nav a {
    padding-inline: 8px;
    font-size: 12px;
  }

  .desktop-nav a span {
    display: none;
  }

  .hero {
    min-height: 835px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    gap: 28px;
  }

  .hero-title {
    font-size: clamp(46px, 5.7vw, 64px);
  }

  .poster-character-crop {
    height: 510px;
  }

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

  .showcase-lead {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  }

  .showreel video {
    min-height: 390px;
  }
}

@media (max-width: 900px) {
  :root {
    --page: min(100% - 30px, 760px);
  }

  .site-header {
    padding-top: 9px;
  }

  .nav-shell {
    height: 60px;
    gap: 12px;
  }

  .brand {
    width: 116px;
    height: 43px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    margin-left: auto;
    display: flex;
  }

  .hero {
    min-height: 0;
    padding-top: 104px;
    padding-bottom: 98px;
  }

  .hero-shell {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 44px;
  }

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

  .hero-title {
    font-size: clamp(54px, 10vw, 80px);
  }

  .hero-visual {
    width: min(100%, 700px);
    align-self: center;
  }

  .poster-character-crop {
    height: 600px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .belief-grid,
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .belief-grid > :last-child {
    grid-column: 1 / -1;
  }

  .recruit-intro {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .recruit-types {
    min-height: 400px;
    height: auto;
  }

  .poster-preview {
    height: 520px;
  }

  .support-camera img,
  .track-camera img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }

  .treatment-grid,
  .reward-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .recruit-two-column {
    grid-template-columns: 1fr;
  }

  .showcase-lead {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .showreel video {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 270px;
  }

  .work-tile,
  .work-tile-wide {
    grid-column: span 1;
  }

  .work-tile-wide {
    grid-column: span 2;
  }

  .bilibili-strip {
    grid-template-columns: auto 1fr;
  }

  .bilibili-strip > span {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .join-board {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 640px) {
  :root {
    --page: calc(100% - 24px);
    --line: 2px solid var(--navy);
    --shadow: 5px 5px 0 rgba(17, 45, 102, 0.13);
  }

  html {
    scroll-padding-top: 78px;
  }

  .site-header {
    padding-top: 7px;
  }

  .site-header.is-scrolled {
    padding-block: 5px;
  }

  .nav-shell {
    width: calc(100% - 16px);
    height: 56px;
    padding: 5px 6px 5px 10px;
    clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
  }

  .brand {
    width: 102px;
    height: 40px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .mobile-menu {
    top: calc(100% + 5px);
    width: calc(100% - 16px);
    margin: 0;
    padding: 13px;
  }

  .mobile-menu-head {
    font-size: 11px;
  }

  .hero {
    padding-top: 88px;
    padding-bottom: 86px;
  }

  .hero-shell {
    gap: 30px;
  }

  .eyebrow {
    padding: 7px 9px;
    gap: 9px;
    font-size: 9px;
  }

  .eyebrow small {
    padding-left: 9px;
  }

  .hero-brand {
    width: 180px;
    margin-top: 22px;
  }

  .hero-brand img {
    height: 90px;
  }

  .hero-title {
    font-size: clamp(42px, 13.6vw, 60px);
    line-height: 1.04;
  }

  .hero-title span {
    white-space: normal;
  }

  .hero-title em {
    margin-top: 7px;
    padding-inline: 7px;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.8;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .action-button {
    min-height: 50px;
    padding: 0 12px;
    gap: 8px;
    border-width: 2px;
    font-size: 12px;
  }

  .hero-stats {
    margin-top: 26px;
  }

  .hero-stats div {
    min-height: 68px;
    padding: 10px 6px;
  }

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

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

  .hero-visual {
    padding: 14px 0 38px;
  }

  .camera-frame {
    border-width: 6px;
    box-shadow: 8px 8px 0 rgba(17, 45, 102, 0.14);
  }

  .camera-top,
  .camera-bottom {
    height: 40px;
    padding-inline: 12px;
    font-size: 9px;
  }

  .camera-bottom b {
    font-size: 12px;
  }

  .camera-frame::before,
  .camera-frame::after {
    width: 38px;
    height: 38px;
    top: 11px;
    border-width: 3px;
  }

  .camera-frame::before { left: 11px; }
  .camera-frame::after { right: 11px; }

  .poster-character-crop {
    height: min(445px, 113vw);
    background-position: center 7.8%;
  }

  .welcome-sticker {
    right: 5px;
    bottom: 4px;
    padding: 8px 11px;
    border-width: 2px;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .welcome-sticker span {
    font-size: 18px;
  }

  .float-tag {
    padding: 6px 8px;
    font-size: 9px;
  }

  .float-tag-a {
    top: 0;
    right: -2px;
  }

  .float-tag-b {
    bottom: 55px;
    left: -4px;
  }

  .ticker {
    height: 52px;
  }

  .ticker div {
    gap: 20px;
    padding-left: 20px;
    font-size: 17px;
  }

  .section {
    padding: 78px 0;
  }

  .about {
    padding-top: 92px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading > p {
    font-size: 10px;
  }

  .section-heading > small {
    font-size: 11px;
    line-height: 1.6;
  }

  .mecha-title {
    min-height: 78px;
    padding: 14px 13px;
    gap: 8px;
    border-width: 2px;
    clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
  }

  .mecha-title h2 {
    font-size: clamp(29px, 9vw, 40px);
    white-space: nowrap;
  }

  .mecha-title i::after {
    width: 8px;
    height: 8px;
    top: -3px;
  }

  .story-kicker {
    font-size: 11px;
  }

  .about-story h3 {
    margin-top: 21px;
    font-size: 35px;
  }

  .about-story p {
    font-size: 14px;
    line-height: 1.85;
  }

  .about-story blockquote b {
    font-size: 17px;
  }

  .brand-board {
    padding: 50px 14px 16px;
  }

  .brand-logos {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .brand-logos img {
    height: 150px;
    padding: 8px;
  }

  .brand-logos figcaption {
    padding: 8px;
    font-size: 10px;
  }

  .brand-logos figcaption span {
    font-size: 9px;
  }

  .board-meta {
    gap: 5px;
  }

  .board-meta span {
    font-size: 7px;
  }

  .belief-grid,
  .support-grid,
  .resource-grid,
  .track-grid {
    grid-template-columns: 1fr;
  }

  .belief-grid > :last-child {
    grid-column: auto;
  }

  .paper-card {
    min-height: 220px;
    padding: 45px 21px 20px;
  }

  .support-camera,
  .track-camera {
    padding: 6px;
    border-width: 4px;
    box-shadow: 7px 7px 0 rgba(17, 45, 102, 0.14);
  }

  .support-camera::before,
  .track-camera::before {
    top: 16px;
    left: 16px;
  }

  .support-camera::after,
  .track-camera::after {
    right: 16px;
    bottom: 16px;
  }

  .record-mark,
  .track-camera > span {
    top: 16px;
    left: 20px;
    font-size: 8px;
  }

  .support-note {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: calc(100% - 20px);
    margin: -18px auto 0;
    padding: 12px 14px;
  }

  .support-note b {
    font-size: 16px;
  }

  .support-card {
    min-height: 230px;
    padding: 22px;
  }

  .support-card h3 {
    font-size: 22px;
  }

  .recruit-types {
    min-height: 330px;
    height: auto;
    padding: 28px 20px;
  }

  .recruit-types h3 {
    font-size: clamp(31px, 9.5vw, 42px);
  }

  .recruit-stamp {
    width: 68px;
    height: 68px;
    top: 12px;
    right: 12px;
    border-width: 3px;
    font-size: 11px;
  }

  .poster-preview {
    min-height: 420px;
    height: 420px;
  }

  .recruit-points {
    margin-top: 22px;
    gap: 6px;
  }

  .recruit-points li {
    min-height: 61px;
    padding: 9px;
  }

  .recruit-points b {
    font-size: 21px;
  }

  .recruit-block {
    margin-top: 30px;
  }

  .subheading {
    min-height: 62px;
    padding: 10px 16px;
    gap: 12px;
    border-width: 2px;
  }

  .subheading span {
    font-size: 8px;
  }

  .subheading h3 {
    font-size: 30px;
  }

  .treatment-grid,
  .reward-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .treatment-grid > div {
    min-height: 145px;
    padding: 16px;
  }

  .treatment-grid strong {
    font-size: 36px;
  }

  .treatment-grid span {
    font-size: 12px;
  }

  .resource-grid article {
    min-height: 230px;
    padding: 22px;
  }

  .reward-block {
    padding: 14px;
    border-width: 2px;
  }

  .reward-grid article {
    min-height: 206px;
    padding: 15px;
  }

  .reward-grid strong {
    font-size: 31px;
  }

  .reward-grid p {
    font-size: 11px;
  }

  .info-panel {
    padding: 14px;
  }

  .info-flow {
    gap: 4px;
  }

  .info-flow span {
    padding: 7px 6px;
    font-size: 9px;
  }

  .track-card {
    min-height: 245px;
  }

  .showreel {
    padding: 6px;
    border-width: 4px;
    box-shadow: 7px 7px 0 rgba(17, 45, 102, 0.16);
  }

  .showreel-frame {
    inset: 14px 14px auto;
  }

  .showreel-frame b {
    display: none;
  }

  .showcase-manifest {
    padding: 28px 22px;
  }

  .showcase-manifest h3 {
    font-size: 36px;
  }

  .works-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .work-tile,
  .work-tile-wide,
  .work-tile-tall,
  .work-tile-dark {
    min-height: 310px;
    grid-column: auto;
    grid-row: auto;
  }

  .work-tile-tall,
  .work-tile-dark {
    min-height: 430px;
  }

  .bilibili-strip {
    padding: 22px 18px;
    grid-template-columns: 72px 1fr;
    gap: 16px;
  }

  .bilibili-strip-mark {
    width: 72px;
    height: 52px;
    border-width: 3px;
  }

  .bilibili-strip-mark::before,
  .bilibili-strip-mark::after {
    top: -11px;
    width: 17px;
    height: 3px;
  }

  .bilibili-strip-mark::before {
    left: 14px;
  }

  .bilibili-strip-mark::after {
    right: 14px;
  }

  .bilibili-strip h3 {
    font-size: 18px;
  }

  .bilibili-strip p {
    display: none;
  }

  .join {
    padding: 66px 0;
  }

  .join-board {
    padding: 27px 18px;
    gap: 28px;
    border-width: 2px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .join-copy h2 {
    font-size: 41px;
  }

  .join-copy p {
    font-size: 13px;
  }

  .contact-card {
    padding: 10px;
    box-shadow: 5px 5px 0 var(--cyan);
  }

  .contact-qr > div {
    padding-top: 16px;
  }

  .contact-qr strong {
    font-size: 19px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
