@font-face {
  font-family: "Chill Jinshu Song Pro Soft";
  src: url("assets/ChillJinshuSongPro_Soft.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Chill Jinshu Song Pro Regular";
  src: url("assets/ChillJinshuSongPro_Regular.woff") format("woff");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --ink: #29292c;
  --paper: #ffffff;
  --aqua: #9beaf2;
  --aqua-pale: #e5fafc;
  --aqua-footer: #c5f4f8;
  --pink: #ff9fc8;
  --card-radius: 13px;
  --content: 1536px;
  --desktop-nav-height: clamp(70px, 5.2vw, 100px);
  --first-screen-about-height: clamp(220px, 26vh, 340px);
  --soft: "Chill Jinshu Song Pro Soft", "Noto Serif SC", "Source Han Serif SC", "Songti SC", SimSun, serif;
  --regular: "Chill Jinshu Song Pro Regular", "Noto Serif SC", "Source Han Serif SC", "Songti SC", SimSun, serif;
  --serif: var(--soft);
  --sans: var(--soft);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #fff;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  background: #fff;
  text-rendering: optimizeLegibility;
}

b,
strong {
  font-weight: 400;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #42dbe8;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: -60px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #fff;
  font-family: var(--sans);
}

.skip-link:focus {
  top: 16px;
}

.scroll-progress {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #79e1eb, #ff9fc8);
  box-shadow: 0 0 12px rgba(87, 217, 229, 0.75);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
}

.page-shell {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.member-page {
  padding-top: clamp(112px, 7.2vw, 138px);
  background: #a3f0f7;
}

.mobile-menu a.is-active {
  color: #57d9e5;
}

.content-width {
  width: min(76.77%, var(--content));
  margin-inline: auto;
}

.hero {
  position: relative;
  margin-top: var(--desktop-nav-height);
  height: calc(100vh - var(--desktop-nav-height) - var(--first-screen-about-height));
  background: url("assets/BG.png") center calc(50% + var(--hero-shift, 0px)) / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(108deg, transparent 20%, rgba(255,255,255,0.16) 42%, transparent 62%);
  background-size: 220% 100%;
  animation: heroShimmer 11s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(65, 53, 58, 0.25);
  pointer-events: none;
}

.desktop-nav {
  position: fixed;
  z-index: 100;
  top: clamp(16px, 1.95vw, 37px);
  left: 50%;
  display: flex;
  align-items: stretch;
  width: min(76.8vw, 1474px);
  height: var(--desktop-nav-height);
  padding: 0.35% 1.3% 0.35% 0.55%;
  border-radius: clamp(5px, 0.55vw, 11px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 18px rgba(80, 65, 70, 0.18);
  backdrop-filter: blur(12px);
  animation: navFixedArrive 900ms var(--ease-out) both;
}

.hero > .desktop-nav {
  top: 0;
  width: 100%;
  padding-inline: max(1.5%, calc((100vw - min(76.8vw, 1474px)) / 2));
  border-radius: 0;
  background: #fff;
  box-shadow: 0 4px 16px rgba(80, 65, 70, 0.14);
}

.desktop-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  flex-direction: column;
  color: #382c2d;
  font-family: var(--serif);
  font-size: clamp(16px, 1.18vw, 22px);
  line-height: 1.1;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.desktop-nav .nav-disabled {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  flex-direction: column;
  color: #a9adb0;
  font-family: var(--serif);
  font-size: clamp(16px, 1.18vw, 22px);
  line-height: 1.1;
  cursor: not-allowed;
  user-select: none;
}

.desktop-nav .nav-disabled small {
  margin-top: 0.34em;
  color: #bec1c3;
  font-family: var(--regular);
  font-size: 0.6em;
  letter-spacing: 0.03em;
}

.desktop-nav.is-switching-active a,
.desktop-nav.is-switching-active a::after,
.mobile-nav.is-switching-active a,
.mobile-nav.is-switching-active a::after {
  transition: none;
}

.desktop-nav a:not(.desktop-brand):hover {
  color: #57d9e5;
  background: rgba(155, 234, 242, 0.1);
}

.desktop-nav a:not(.desktop-brand) {
  position: relative;
}

.desktop-nav a:not(.desktop-brand)::after {
  content: "";
  position: absolute;
  right: 24%;
  bottom: 10%;
  left: 24%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 220ms var(--ease-out);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.desktop-nav a.is-active {
  color: #57d9e5;
}

.desktop-nav a small {
  margin-top: 0.34em;
  font-family: var(--regular);
  font-size: 0.6em;
  letter-spacing: 0.03em;
}

.desktop-nav .desktop-brand {
  flex: 1 1 0;
  justify-content: center;
}

.desktop-brand img {
  width: 78%;
  height: 92%;
  object-fit: contain;
}

.desktop-hero-copy {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 76.9%;
  color: #fff;
  font-size: clamp(21px, 2.05vw, 39px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.02em;
  text-align: left;
  text-shadow: 0 2px 11px rgba(73, 27, 32, 0.2);
  transform: translateX(-50%);
}

.desktop-hero-copy p {
  margin: 0;
  animation: heroCopyIn 900ms var(--ease-out) 260ms both;
}

.desktop-hero-copy p + p {
  margin-top: clamp(78px, 8.8vw, 169px);
  animation-delay: 430ms;
}

.mobile-nav,
.mobile-hero-copy {
  display: none;
}

.subpage-site-header {
  height: var(--desktop-nav-height);
}

.subpage-site-header .desktop-nav {
  top: 0;
  width: 100%;
  padding-inline: max(1.5%, calc((100vw - min(76.8vw, 1474px)) / 2));
  border-radius: 0;
  background: #fff;
  box-shadow: 0 4px 16px rgba(80, 65, 70, 0.14);
}

.section-rails {
  position: relative;
}

.about,
.qa,
.news,
.site-footer {
  scroll-margin-top: var(--desktop-nav-height);
}

.section-paper {
  --particle-grey: rgba(184, 192, 194, 0.28);
  --particle-cyan: rgba(74, 190, 202, 0.22);
  background-color: #fff;
  background-image:
    linear-gradient(var(--particle-grey) 0 0),
    linear-gradient(var(--particle-cyan) 0 0),
    linear-gradient(var(--particle-grey) 0 0),
    linear-gradient(var(--particle-cyan) 0 0);
  background-repeat: no-repeat;
  background-position: 22% 16%, 81% 25%, 18% 72%, 84% 68%;
  background-size:
    clamp(8px, 0.55vw, 11px) clamp(8px, 0.55vw, 11px),
    clamp(17px, 1.25vw, 24px) clamp(17px, 1.25vw, 24px),
    clamp(5px, 0.38vw, 7px) clamp(5px, 0.38vw, 7px),
    clamp(12px, 0.9vw, 17px) clamp(12px, 0.9vw, 17px);
}

.section-paper::before,
.section-paper::after {
  content: "";
  position: absolute;
  background: rgba(86, 181, 193, 0.26);
  pointer-events: none;
  animation: squareParticleFloat 11s ease-in-out infinite;
}

.section-paper::before {
  left: 7.3%;
  top: 20%;
  width: clamp(13px, 1.1vw, 21px);
  height: clamp(13px, 1.1vw, 21px);
}

.section-paper::after {
  right: 7.3%;
  bottom: 18%;
  width: clamp(7px, 0.65vw, 12px);
  height: clamp(7px, 0.65vw, 12px);
  animation-delay: -3.5s;
}

.about {
  height: var(--first-screen-about-height);
}

.about-inner {
  display: grid;
  width: min(76.77%, var(--content));
  grid-template-columns: clamp(105px, 7vw, 134px) minmax(0, 1fr);
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: clamp(38px, 3vw, 58px);
}

.section-heading {
  margin: 0;
  line-height: 1;
  font-weight: 400;
}

.horizontal-heading span,
.horizontal-heading small {
  display: block;
}

.horizontal-heading span {
  font-size: clamp(34px, 3.35vw, 64px);
  letter-spacing: 0.04em;
}

.horizontal-heading small {
  margin-top: 0.18em;
  color: var(--aqua);
  font-size: clamp(18px, 1.72vw, 33px);
  font-family: var(--regular);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.about-copy {
  font-size: clamp(13px, 1.05vw, 20px);
  font-weight: 400;
  line-height: 1.55;
  text-align: left;
}

.about-copy p {
  margin: 0 0 0.7em;
}

.showcase {
  position: relative;
  display: grid;
  align-items: center;
  aspect-ratio: 1920 / 1000;
  background: linear-gradient(110deg, #a3f0f7 0%, #dff8fa 67%, #f5fbfb 100%);
}

.showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background: linear-gradient(112deg, transparent 0 28%, rgba(255,255,255,0.48) 49%, transparent 72%);
  pointer-events: none;
}

.showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255,255,255,0.5), transparent 28%);
  opacity: 0.7;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.vertical-heading {
  position: absolute;
  z-index: 1;
  left: 6.7%;
  top: 13%;
  margin: 0;
  color: #fff;
  font-family: var(--regular);
  font-size: clamp(48px, 5vw, 96px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.card-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.5%;
  padding-inline: 11.1%;
}

.portrait-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(8px, 0.55vw, 11px);
  color: var(--aqua);
  text-decoration: none;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--lift, 0px));
  transform-style: preserve-3d;
  transition: transform 320ms var(--ease-out), filter 320ms ease;
  will-change: transform;
}

.portrait-card:hover,
.portrait-card:focus {
  --lift: -9px;
  filter: drop-shadow(0 18px 20px rgba(67, 161, 173, 0.18));
}

.portrait-card:focus-visible {
  outline: 3px solid rgba(255,255,255,0.96);
  outline-offset: 7px;
  border-radius: var(--card-radius);
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 363 / 666;
  border-radius: var(--card-radius);
  background: #b0f5fb;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.4);
  transition: box-shadow 320ms ease;
}

.portrait-card:hover .portrait-frame,
.portrait-card:focus .portrait-frame {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.82), 0 18px 35px rgba(84, 180, 191, 0.18);
}

.member-section .portrait-frame::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(37, 54, 67, 0.48);
  opacity: 0;
  transition: opacity 280ms ease;
}

.member-section .portrait-card:hover .portrait-frame::after,
.member-section .portrait-card:focus .portrait-frame::after {
  opacity: 1;
}

.portrait-card--blank .portrait-frame {
  background: linear-gradient(180deg, #99edf5 0%, #b8f3f7 48%, #eefbfc 100%);
}

.member-section .portrait-card.is-xwu .portrait-frame {
  background: #8ea7c1;
}

.member-section .portrait-card.is-difufan .portrait-frame {
  background: #f9d9ec;
}

.talent-section .portrait-card.is-talent-lead .portrait-frame {
  background: #f7a8cf;
}

.talent-section .portrait-card.is-coming .portrait-frame {
  background: #96e8f1;
}

.talent-section .portrait-card.is-coming img {
  opacity: 0.98;
  filter: brightness(0) invert(1);
}

.portrait-role {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 48%;
  color: #74dfe8;
  font-size: clamp(30px, 3.1vw, 60px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 2px rgba(42, 73, 85, 0.22);
  transform: translate(-50%, -50%);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 260ms ease;
}

.portrait-role--wide {
  font-size: clamp(24px, 2.55vw, 49px);
}

.member-section .portrait-card:hover .portrait-role,
.member-section .portrait-card:focus .portrait-role {
  opacity: 1;
}

.portrait-frame img {
  --portrait-scale: 1;
  --portrait-hover-scale: 1.025;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: scale(var(--portrait-scale));
  transform-origin: center bottom;
  transition: transform 520ms var(--ease-out);
}

.member-section .portrait-frame img {
  object-position: center top;
  transform-origin: center top;
}

.member-section .is-xwu .portrait-frame img {
  --portrait-scale: 1.5;
  --portrait-hover-scale: 1.53;
}

.member-section .is-difufan .portrait-frame img {
  --portrait-scale: 1.25;
  --portrait-hover-scale: 1.275;
}

.portrait-card:hover .portrait-frame img,
.portrait-card:focus .portrait-frame img {
  transform: scale(var(--portrait-hover-scale));
}

.portrait-card > span {
  display: block;
  min-height: clamp(26px, 2.25vw, 43px);
  padding: 0.18em 0.7em 0.28em;
  border: 2px solid rgba(255,255,255,0.96);
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  font-size: clamp(13px, 1.18vw, 23px);
  line-height: 1.15;
  text-align: center;
  transition: color 240ms ease, border-color 240ms ease, background 240ms ease;
}

.portrait-card.is-featured > span {
  color: #fff;
  background: var(--aqua);
}

.member-section .portrait-card:hover > span,
.member-section .portrait-card:focus > span {
  color: #fff;
  border-color: var(--aqua);
  background: var(--aqua);
}

.portrait-card.is-pink > span {
  color: #fff;
  background: #ff91c7;
}

.round-arrow {
  position: absolute;
  z-index: 3;
  top: 47%;
  display: grid;
  place-items: center;
  width: clamp(36px, 4.6vw, 88px);
  aspect-ratio: 1;
  padding: 0;
  border: clamp(4px, 0.36vw, 7px) solid #fff;
  border-radius: 50%;
  color: #56ddea;
  background: #fff;
  box-shadow: 0 0 0 clamp(3px, 0.26vw, 5px) #65e2ed inset;
  font-family: Arial, sans-serif;
  font-size: clamp(30px, 3.1vw, 60px);
  line-height: 1;
  appearance: none;
  cursor: pointer;
  transition: transform 220ms var(--ease-out), color 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.round-arrow__icon {
  display: block;
  width: 27%;
  aspect-ratio: 1;
  border-top: clamp(2px, 0.19vw, 4px) solid currentColor;
  border-right: clamp(2px, 0.19vw, 4px) solid currentColor;
  transform: rotate(45deg);
}

.round-arrow--left .round-arrow__icon {
  transform: rotate(-135deg);
}

.round-arrow:hover,
.round-arrow:focus-visible {
  color: #fff;
  border-color: #65e2ed;
  background: #65e2ed;
  box-shadow: 0 0 0 clamp(3px, 0.26vw, 5px) #fff inset, 0 10px 28px rgba(70, 208, 221, 0.32);
  transform: scale(1.08);
}

.round-arrow:active {
  transform: scale(0.94);
}

.round-arrow--left {
  left: 15.4%;
}

.round-arrow--right {
  right: 15.4%;
}

.carousel-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 821px) {
  .member-section .card-grid > .portrait-card:nth-child(n + 4) {
    display: none;
  }
}

.qa {
  min-height: 0;
  padding-block: clamp(84px, 7vw, 136px);
}

.qa::before {
  top: 20%;
}

.qa::after {
  bottom: 21%;
}

.qa-inner {
  padding-top: 0;
}

.qa-list {
  margin: clamp(38px, 3.2vw, 62px) 3.9% 0;
}

.qa-list details {
  margin-bottom: clamp(18px, 2vw, 34px);
}

.qa-list details:last-child {
  margin-bottom: 0;
}

.qa-list details[open] > .qa-answer {
  animation: answerIn 300ms var(--ease-out) both;
}

.qa-list summary {
  display: grid;
  grid-template-columns: 7.5% 1fr auto;
  align-items: center;
  min-height: clamp(55px, 6.35vw, 122px);
  padding: 0.4em 2.7%;
  border-radius: 8px;
  background: linear-gradient(90deg, #9eeef6, #e3f8fa);
  font-size: clamp(15px, 1.42vw, 27px);
  font-weight: 400;
  list-style: none;
  cursor: pointer;
  transition: transform 240ms var(--ease-out), box-shadow 240ms ease, filter 240ms ease;
}

.qa-list summary::after {
  content: "+";
  color: #fff;
  font-size: 1.35em;
  font-weight: 400;
  line-height: 1;
  transition: transform 240ms var(--ease-out);
}

.qa-list details[open] summary::after {
  transform: rotate(45deg);
}

.qa-list summary:hover {
  filter: saturate(1.08);
  box-shadow: 0 10px 24px rgba(101, 212, 223, 0.18);
  transform: translateX(6px);
}

.qa-list summary::-webkit-details-marker {
  display: none;
}

.qa-list b {
  color: #fff;
  font-family: var(--regular);
  font-size: 1.5em;
  font-weight: 400;
}

.qa-answer {
  display: grid;
  grid-template-columns: 7.5% 1fr;
  align-items: start;
  margin: 0;
  padding: 1.05em 2.7% 0.15em;
  font-size: clamp(13px, 1.25vw, 24px);
  font-weight: 400;
  line-height: 1.65;
}

.qa-answer > b {
  color: var(--aqua);
}

.qa-answer-copy p {
  margin: 0;
}

.qa-answer-copy p + p {
  margin-top: 0.72em;
}

.qa-answer-copy a {
  display: inline-block;
  margin-top: 0.85em;
  color: #087b88;
  font-weight: 600;
  text-underline-offset: 0.22em;
}

.qa-answer-copy a:hover,
.qa-answer-copy a:focus-visible {
  color: #035d68;
}

.qa-list details:not([open]) > .qa-answer {
  display: none;
}

.qa-empty,
.qa-noscript {
  margin: 2em 0 0;
  color: #45747a;
  text-align: center;
}

.talent-section {
  background: linear-gradient(110deg, #a4eff7 0%, #def8fa 65%, #f7fbfb 100%);
}

.news {
  min-height: 0;
  padding-block: clamp(84px, 7vw, 136px);
}

.news-inner {
  position: relative;
  height: auto;
  padding-top: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.2%;
  margin: 4.8% 1.5% 0;
}

.news-card {
  min-width: 0;
  transition: transform 300ms var(--ease-out), opacity 300ms ease;
}

.news-card:hover {
  transform: translateY(-8px);
}

.news-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

a.news-card-link:focus-visible {
  outline: 3px solid #49ceda;
  outline-offset: 7px;
}

.news-thumb {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 3 / 1.7;
  margin-bottom: 6.5%;
  background: linear-gradient(140deg, #a3edf4, #98e8f1);
}

.news-thumb.is-default {
  border: 2px solid #74dce6;
  background: #fff;
}

.news-thumb img {
  display: block;
}

.news-thumb.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.news-thumb.is-default img {
  width: min(43%, 160px);
  height: min(76%, 160px);
  object-fit: contain;
}

.news-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.6) 45%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 700ms var(--ease-out);
}

.news-card:hover .news-thumb::after {
  transform: translateX(110%);
}

.news-card time {
  font-size: clamp(11px, 0.9vw, 17px);
}

.news-card h3 {
  margin: 1em 0 0;
  font-size: clamp(12px, 0.95vw, 18px);
  font-weight: 400;
  line-height: 1.5;
}

.news-card-cta {
  display: inline-block;
  margin-top: 0.8em;
  color: #148f9c;
  font-size: clamp(11px, 0.78vw, 15px);
}

.news-empty,
.news-noscript {
  grid-column: 1 / -1;
  margin: 1.5em 0;
  color: #45747a;
  text-align: center;
}

.expand-button {
  position: static;
  display: flex;
  align-items: center;
  gap: 0.6em;
  min-width: clamp(135px, 17.9vw, 343px);
  justify-content: center;
  margin: clamp(50px, 6vw, 92px) auto 0;
  padding: 0.72em 1.2em 0.8em;
  transform: none;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--aqua);
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 38px);
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(89, 209, 220, 0.18);
  transition: transform 240ms var(--ease-out), box-shadow 240ms ease, background-color 240ms ease;
}

.expand-button:hover {
  background: #84e3ec;
  box-shadow: 0 14px 32px rgba(69, 195, 207, 0.3);
  transform: translateY(-4px);
}

.expand-button:active {
  transform: scale(0.97);
}

.expand-button b {
  font-family: Arial, sans-serif;
  font-size: 1.15em;
  font-weight: 700;
  line-height: 1;
  transition: transform 200ms ease;
}

.expand-button[aria-expanded="true"] b {
  transform: rotate(-90deg);
}

.site-footer {
  display: flex;
  flex-direction: column;
  min-height: clamp(480px, 34vw, 650px);
  padding: clamp(40px, 3.2vw, 62px) 0 clamp(22px, 2vw, 38px);
  color: #fff;
  font-family: var(--regular);
  background: linear-gradient(to bottom, #84e3ec, #00bbcc);
  text-align: left;
}

.footer-inner {
  display: flex;
  width: min(76.77%, var(--content));
  min-height: 0;
  margin-inline: auto;
  flex: 1;
  flex-direction: column;
}

.footer-logo {
  display: grid;
  place-items: center;
  align-self: center;
  width: clamp(130px, 9vw, 173px);
  height: clamp(130px, 9vw, 173px);
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  transition: transform 220ms var(--ease-out);
}

.footer-logo img {
  width: 84%;
  height: 84%;
  object-fit: contain;
  transition: transform 220ms var(--ease-out), filter 220ms ease;
}

.footer-logo:hover {
  background: transparent;
  box-shadow: none;
  transform: translateY(-6px);
}

.footer-logo:hover img {
  filter: drop-shadow(0 8px 14px rgba(71, 182, 195, 0.2));
  transform: scale(1.04);
}

.footer-logo:active {
  transform: translateY(-1px) scale(0.96);
}

.footer-links-panel {
  width: 100%;
  margin-top: clamp(18px, 2vw, 38px);
}

.footer-social-group {
  padding-bottom: clamp(18px, 1.7vw, 32px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 1.8vw, 34px);
  margin-top: clamp(10px, 0.9vw, 17px);
}

.social-links a,
.footer-page-links a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28em;
  color: #fff;
  font-size: clamp(15px, 1.05vw, 20px);
  font-weight: 400;
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms var(--ease-out);
}

.social-links a span,
.footer-page-links a span {
  font-family: Arial, sans-serif;
  font-size: 0.78em;
  font-weight: 700;
}

.social-links a:hover,
.footer-page-links a:hover {
  opacity: 0.68;
  transform: translateY(-2px);
}

.footer-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(13px, 1.35vw, 26px) clamp(18px, 2vw, 38px);
  padding-top: clamp(20px, 1.8vw, 34px);
}

.footer-meta {
  margin-top: auto;
  text-align: center;
}

.site-footer .registration {
  margin: clamp(8px, 0.7vw, 13px) 0 0;
  font-size: clamp(11px, 0.9vw, 17px);
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
}

.site-footer .icp-record {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92em;
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.site-footer .icp-record:hover,
.site-footer .icp-record:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.site-footer .copyright {
  margin: 0;
  font-size: clamp(12px, 0.95vw, 18px);
  font-weight: 400;
  text-align: center;
}

.has-js [data-reveal] {
  opacity: 0;
  translate: 0 34px;
}

.has-js [data-reveal="left"] {
  translate: -42px 0;
}

.has-js [data-reveal="right"] {
  translate: 42px 0;
}

.has-js [data-reveal].is-visible {
  animation: revealIn 760ms var(--ease-out) var(--reveal-delay, 0ms) both;
}

@keyframes navArrive {
  from { opacity: 0; transform: translateY(-28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes navFixedArrive {
  from { opacity: 0; transform: translate(-50%, -28px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes heroCopyIn {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroShimmer {
  0%, 26% { background-position: 150% 0; opacity: 0; }
  44% { opacity: 1; }
  68%, 100% { background-position: -60% 0; opacity: 0; }
}

@keyframes squareParticleFloat {
  0%, 100% { opacity: 0.46; transform: translate3d(-1px, 1px, 0) rotate(-1deg); }
  50% { opacity: 0.34; transform: translate3d(1px, -4px, 0) rotate(1deg); }
}

@keyframes guidelinesAmbientFloat {
  0% { opacity: 0.42; transform: translate3d(-1px, 2px, 0) rotate(-1deg); }
  45% { opacity: 0.56; transform: translate3d(2px, -5px, 0) rotate(1deg); }
  100% { opacity: 0.44; transform: translate3d(-1px, 2px, 0) rotate(-1deg); }
}

@keyframes newsSquareFloat {
  0%, 100% { opacity: 0.4; transform: translate3d(-1px, 2px, 0) rotate(-1deg); }
  50% { opacity: 0.54; transform: translate3d(2px, -5px, 0) rotate(1deg); }
}

@keyframes answerIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes revealIn {
  to { opacity: 1; translate: 0 0; }
}

.guidelines-page {
  --guidelines-rail-position: max(12px, calc((100% - min(88%, 1180px)) / 2 - 18px));
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  color: #15383e;
  background-color: #fff;
  background-image:
    linear-gradient(90deg,
      transparent 0 var(--guidelines-rail-position),
      rgba(32, 185, 200, 0.24) var(--guidelines-rail-position) calc(var(--guidelines-rail-position) + 1px),
      transparent calc(var(--guidelines-rail-position) + 1px) calc(100% - var(--guidelines-rail-position) - 1px),
      rgba(32, 185, 200, 0.24) calc(100% - var(--guidelines-rail-position) - 1px) calc(100% - var(--guidelines-rail-position)),
      transparent calc(100% - var(--guidelines-rail-position))),
    radial-gradient(circle at 8% 4%, rgba(116, 226, 237, 0.24), transparent 24rem),
    radial-gradient(circle at 94% 12%, rgba(255, 178, 213, 0.13), transparent 23rem),
    radial-gradient(circle at 12% 66%, rgba(186, 244, 248, 0.2), transparent 27rem),
    radial-gradient(circle at 91% 82%, rgba(111, 220, 232, 0.14), transparent 25rem),
    repeating-linear-gradient(135deg, rgba(0, 112, 128, 0.014) 0 1px, transparent 1px 18px),
    linear-gradient(145deg, #fff 0%, #fff 62%, #f7fcfd 100%);
  background-attachment: fixed;
}

.guidelines-page::before,
.guidelines-page::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  rotate: 8deg;
}

.guidelines-page::before {
  top: 17vh;
  left: 3.5vw;
  width: clamp(28px, 3vw, 58px);
  aspect-ratio: 1;
  background: rgba(203, 211, 213, 0.22);
  animation: guidelinesAmbientFloat 14s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

.guidelines-page::after {
  right: 5vw;
  bottom: 9vh;
  width: clamp(16px, 1.6vw, 30px);
  aspect-ratio: 1;
  background: rgba(32, 185, 200, 0.2);
  animation: guidelinesAmbientFloat 17s ease-in-out -3s infinite alternate-reverse;
  will-change: transform, opacity;
}

.guidelines-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: clamp(88px, 8vw, 126px);
  padding: clamp(16px, 2vw, 28px) max(6%, calc((100% - 1180px) / 2));
  border-bottom: 1px solid rgba(0, 120, 135, 0.14);
  background: #fff;
  box-shadow: 0 8px 28px rgba(22, 125, 137, 0.06);
}

.guidelines-header a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 160ms ease;
}

.guidelines-header img {
  width: clamp(92px, 8vw, 150px);
  height: auto;
}

.guidelines-header a:hover,
.guidelines-header a:focus-visible {
  opacity: 0.72;
}

.guidelines-main {
  width: min(88%, 960px);
  margin-inline: auto;
  padding: clamp(28px, 4vw, 72px) 0 clamp(70px, 8vw, 140px);
}

.guidelines-kicker,
.guidelines-intro {
  margin: 0;
}

.guidelines-kicker {
  font-family: Arial, sans-serif;
  font-size: clamp(13px, 1vw, 17px);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.guidelines-main > h1 {
  margin: 0.2em 0 0;
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 400;
}

.guidelines-intro {
  margin-top: clamp(18px, 2vw, 30px);
  font-size: clamp(15px, 1.15vw, 20px);
  line-height: 1.75;
}

.guidelines-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 10px clamp(24px, 3vw, 44px);
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 120, 135, 0.2);
}

.guidelines-dates p {
  display: grid;
  gap: 3px;
  margin: 0;
  line-height: 1.5;
}

.guidelines-dates span {
  color: #008997;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.guidelines-dates time {
  font-size: clamp(15px, 1vw, 17px);
}

.guidelines-notice {
  position: relative;
  margin-top: clamp(28px, 3vw, 46px);
  padding: clamp(22px, 2.7vw, 36px);
  border-left: 6px solid #20b9c8;
  background-color: rgba(255, 255, 255, 0.84);
  background-image:
    linear-gradient(rgba(32, 185, 200, 0.1) 0 0),
    linear-gradient(rgba(184, 192, 194, 0.18) 0 0),
    linear-gradient(120deg, rgba(209, 246, 250, 0.42), transparent 48%);
  background-repeat: no-repeat;
  background-position: 96% 16%, 7% 88%, 0 0;
  background-size: 18px 18px, 8px 8px, 100% 100%;
  box-shadow: 0 16px 42px rgba(22, 125, 137, 0.08);
  backdrop-filter: blur(12px);
}

.guidelines-notice > strong {
  color: #007987;
  font-size: clamp(19px, 1.45vw, 25px);
}

.guidelines-notice p {
  margin: 0.8em 0 0;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.8;
}

.guidelines-main section {
  position: relative;
  overflow: hidden;
  margin-top: clamp(24px, 2.4vw, 42px);
  padding: clamp(24px, 3vw, 48px);
  border: 1px solid rgba(0, 120, 135, 0.18);
  border-top: 5px solid rgba(31, 183, 199, 0.72);
  border-radius: 0 0 10px 10px;
  background-color: rgba(255, 255, 255, 0.86);
  background-image:
    linear-gradient(rgba(158, 166, 169, 0.12) 0 0),
    linear-gradient(rgba(32, 185, 200, 0.09) 0 0),
    linear-gradient(135deg, rgba(209, 246, 250, 0.24), transparent 34% 72%, rgba(255, 238, 246, 0.2));
  background-repeat: no-repeat;
  background-position: 96% 28px, 5% 88%, 0 0;
  background-size: 13px 13px, 7px 7px, 100% 100%;
  box-shadow: 0 18px 48px rgba(22, 125, 137, 0.08);
  backdrop-filter: blur(12px);
  scroll-margin-top: 24px;
}

.guidelines-toc {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: clamp(32px, 4vw, 56px);
  background: transparent;
}

.guidelines-toc a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid rgba(0, 120, 135, 0.2);
  border-radius: 6px;
  color: #075d68;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.88), rgba(224, 248, 250, 0.76) 72%, rgba(255, 239, 246, 0.66));
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.guidelines-toc a::after {
  content: "↓";
  margin-left: auto;
  color: #1aaaba;
}

.guidelines-toc a:hover,
.guidelines-toc a:focus-visible {
  border-color: #1aaaba;
  background: #fff;
  transform: translateY(-1px);
}

.guidelines-main section h2,
.guidelines-main section p {
  margin: 0;
  font-weight: 400;
}

.guidelines-main section h2 {
  font-size: clamp(24px, 2.2vw, 38px);
  line-height: 1.3;
}

.guidelines-main section p {
  margin-top: 1em;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.85;
}

.guidelines-main section h3 {
  margin: 1.6em 0 0;
  color: #075d68;
  font-size: clamp(18px, 1.4vw, 23px);
  font-weight: 400;
}

.guidelines-main section ul,
.guidelines-main section ol {
  margin: 1em 0 0;
  padding-left: 1.25em;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.9;
}

.guidelines-main section li + li {
  margin-top: 0.7em;
}

.guidelines-main section a {
  color: #006d7a;
  font-weight: 600;
  text-underline-offset: 4px;
}

.guidelines-section-label {
  color: #008997;
  font-family: var(--regular);
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em;
}

.guidelines-main .guidelines-section-label + h2 {
  margin-top: 0.2em;
}

.guidelines-note {
  padding: 15px 18px;
  border-left: 4px solid #2cbac8;
  background: rgba(209, 246, 250, 0.66);
}

.guidelines-main section .guidelines-credit-template {
  padding: 18px 20px;
  border: 1px dashed rgba(0, 120, 135, 0.32);
  border-radius: 6px;
  background: rgba(240, 252, 253, 0.82);
  font-family: var(--regular);
  line-height: 1.9;
}

.guidelines-legal-links {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  padding-left: 0 !important;
  list-style: none;
}

.guidelines-main section .guidelines-legal-links li,
.guidelines-main section .guidelines-legal-links li + li {
  margin-top: 0;
}

.guidelines-legal-links a {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 42px;
  padding: 11px 14px;
  border: 1px solid rgba(0, 120, 135, 0.24);
  border-radius: 4px;
  background: linear-gradient(100deg, #fff, rgba(227, 249, 251, 0.74));
}

.guidelines-legal-links a::after {
  content: "↗";
  margin-left: auto;
  padding-left: 18px;
  color: #1aaaba;
  font-family: Arial, sans-serif;
}

.guidelines-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  padding: 22px 6%;
  border-top: 1px solid rgba(0, 120, 135, 0.18);
  color: #245158;
  font-size: 14px;
  text-align: center;
}

.guidelines-footer a {
  color: #075d68;
  font-weight: 600;
  text-underline-offset: 4px;
}

.guidelines-footer .icp-record {
  color: #356d75;
  font-size: 0.92em;
  font-weight: 400;
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.guidelines-footer .icp-record:hover,
.guidelines-footer .icp-record:focus-visible {
  color: #075d68;
  text-decoration: underline;
}

.news-detail-page {
  min-height: 100vh;
  color: #15383e;
  background:
    radial-gradient(circle at 92% 6%, rgba(90, 210, 224, 0.28), transparent 28%),
    linear-gradient(145deg, #f2fdff 0%, #d9f7fa 52%, #c4f0f5 100%);
}

.news-list-page {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  color: #15383e;
  background-color: #fff;
  background-image:
    linear-gradient(rgba(184, 192, 194, 0.24) 0 0),
    linear-gradient(rgba(66, 193, 207, 0.18) 0 0),
    linear-gradient(rgba(199, 206, 208, 0.21) 0 0),
    linear-gradient(rgba(41, 174, 188, 0.16) 0 0);
  background-repeat: no-repeat;
  background-position: 20% 16%, 84% 23%, 14% 72%, 87% 68%;
  background-size: 14px 14px, 24px 24px, 9px 9px, 17px 17px;
  background-attachment: fixed;
}

.news-list-page::before,
.news-list-page::after {
  content: "";
  position: fixed;
  z-index: -1;
  aspect-ratio: 1;
  pointer-events: none;
  will-change: transform, opacity;
  animation: newsSquareFloat 13s ease-in-out infinite;
}

.news-list-page::before {
  top: 31vh;
  left: 4vw;
  width: clamp(24px, 2.8vw, 52px);
  background: rgba(203, 211, 213, 0.22);
}

.news-list-page::after {
  right: 5vw;
  bottom: 12vh;
  width: clamp(16px, 1.8vw, 34px);
  background: rgba(43, 184, 198, 0.2);
  animation-duration: 16s;
  animation-delay: -3.5s;
  animation-direction: reverse;
}

.news-list-page > .subpage-site-header,
.news-list-page > .news-list-main,
.news-list-page > .guidelines-footer {
  position: relative;
  z-index: 1;
}

.news-list-main {
  width: min(88%, 1180px);
  min-height: 68vh;
  margin-inline: auto;
  padding: clamp(54px, 6vw, 92px) 0 clamp(80px, 9vw, 150px);
}

.news-list-main > h1 {
  margin: 0.2em 0 0;
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 400;
  line-height: 1.1;
}

.news-list-grid {
  gap: clamp(44px, 5vw, 72px) clamp(28px, 4vw, 50px);
  margin: clamp(48px, 6vw, 84px) 0 0;
}

.news-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(54px, 7vw, 92px);
}

.news-pagination[hidden] {
  display: none;
}

.news-pagination button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(20, 143, 156, 0.5);
  color: #096f7b;
  background: rgba(255, 255, 255, 0.94);
  font: 700 16px/1 Arial, sans-serif;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms var(--ease-out), box-shadow 180ms ease;
}

.news-pagination button:hover,
.news-pagination button:focus-visible {
  border-color: #23b7c6;
  color: #fff;
  background: #4fd0dc;
  box-shadow: 0 8px 20px rgba(43, 184, 198, 0.24);
  transform: translateY(-3px);
}

.news-pagination button[aria-current="page"] {
  border-color: #159dab;
  color: #fff;
  background: #159dab;
  box-shadow: 0 8px 20px rgba(21, 157, 171, 0.24);
  cursor: default;
}

.news-detail-main {
  width: min(88%, 960px);
  min-height: 68vh;
  margin-inline: auto;
  padding: clamp(28px, 4vw, 72px) 0 clamp(70px, 8vw, 140px);
}

.news-article,
.news-not-found {
  padding: clamp(26px, 4.5vw, 58px);
  border: 1px solid rgba(0, 120, 135, 0.2);
  border-top: 5px solid rgba(31, 183, 199, 0.72);
  border-radius: 0 0 10px 10px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 70px rgba(16, 110, 121, 0.1);
}

.news-back-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-bottom: clamp(28px, 4vw, 50px);
  padding: 0.5em 1em;
  border: 1px solid #52ccd8;
  border-radius: 999px;
  color: #087b88;
  background: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.news-back-link:hover,
.news-back-link:focus-visible {
  border-color: #35bdca;
  color: #fff;
  background: #35bdca;
}

.news-detail-kicker {
  margin: 0;
  color: #0793a3;
  font-family: var(--regular);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.news-article > time {
  display: block;
  margin-top: 1.2em;
  color: #3b6870;
  font-size: clamp(14px, 1vw, 17px);
}

.news-article > h1,
.news-not-found h1 {
  margin: clamp(20px, 2.6vw, 34px) 0 0;
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 400;
  line-height: 1.35;
}

.news-not-found h1 {
  margin-top: 0.4em;
}

.news-detail-cover {
  margin-top: clamp(28px, 4vw, 52px);
}

.news-detail-cover[hidden] {
  display: none;
}

.news-cover-frame {
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.news-cover-frame.has-image {
  background: #e7f9fb;
}

.news-cover-frame.has-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.news-cover-frame.is-default {
  border: 3px solid #74dce6;
  background: #fff;
}

.news-cover-frame.is-default img {
  width: min(34%, 230px);
  height: min(72%, 230px);
  object-fit: contain;
}

.news-detail-body {
  margin-top: clamp(32px, 4vw, 54px);
}

.news-detail-body p,
.news-not-found > p:not(.news-detail-kicker) {
  margin: 1em 0 0;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.9;
}

.news-detail-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: clamp(30px, 4vw, 48px);
}

.news-detail-links a,
.news-not-found > a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0.68em 1.25em;
  border: 1px solid #52ccd8;
  border-radius: 999px;
  color: #075d68;
  background: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.news-detail-links a:hover,
.news-detail-links a:focus-visible {
  color: #fff;
  background: #35bdca;
}

.news-not-found > a:hover,
.news-not-found > a:focus-visible {
  color: #fff;
  background: #35bdca;
  transform: translateY(-2px);
}

.news-not-found > a {
  margin-top: 28px;
}

.contact-main {
  position: relative;
  min-height: 100vh;
  padding: clamp(150px, 10vw, 190px) 0 clamp(90px, 8vw, 150px);
  background-color: #fff;
}

.contact-shell {
  position: relative;
  z-index: 1;
  width: min(76.77%, var(--content));
  margin-inline: auto;
}

.contact-heading {
  display: grid;
  grid-template-columns: clamp(105px, 7vw, 134px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(38px, 3vw, 58px);
  padding-bottom: clamp(34px, 3.2vw, 52px);
  border-bottom: 1px solid #dfdfe1;
}

.contact-heading h1 {
  margin: 0;
  font-weight: 400;
  line-height: 1;
}

.contact-intro {
  color: var(--ink);
  font-size: clamp(14px, 1.05vw, 20px);
  line-height: 1.65;
}

.contact-intro p {
  margin: 0;
}

.contact-success {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-top: clamp(34px, 3.5vw, 54px);
  padding: 18px 22px;
  border: 1px solid #8be3eb;
  border-radius: 8px;
  background: #edfcfd;
  font-size: 16px;
}

.contact-success[hidden] {
  display: none;
}

.contact-success strong {
  color: #008fa0;
}

.contact-form {
  margin-top: clamp(40px, 4.2vw, 66px);
  padding: clamp(38px, 3.6vw, 58px) 3.9% clamp(44px, 4vw, 66px);
  border: 0;
  border-top: clamp(5px, 0.42vw, 8px) solid var(--aqua);
  border-radius: 0 0 var(--card-radius) var(--card-radius);
  background: #fafeff;
  box-shadow: 0 16px 44px rgba(72, 184, 194, 0.08);
}

.contact-honey {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 3.4vw, 54px) clamp(30px, 4.2vw, 66px);
}

.contact-field {
  display: block;
  min-width: 0;
}

.contact-field--wide {
  grid-column: 1 / -1;
}

.contact-field > span {
  display: block;
  margin-bottom: 11px;
  color: #586367;
  font-family: var(--regular);
  font-size: 14px;
  letter-spacing: 0.16em;
}

.contact-field > span b {
  color: #ee7ead;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #b9c0c8;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.contact-field input,
.contact-field select {
  min-height: 52px;
  padding: 10px 4px;
}

.contact-field select {
  cursor: pointer;
}

.contact-field textarea {
  min-height: 210px;
  padding: 18px;
  border: 1px solid #c6ccd3;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #a6acb3;
  opacity: 1;
}

.contact-field input:hover,
.contact-field select:hover,
.contact-field textarea:hover,
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #57d9e5;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline-color: #57d9e5;
  background: #fff;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: clamp(32px, 3vw, 46px);
  color: #67717c;
  font-size: 14px;
  line-height: 1.75;
}

.contact-consent + .contact-consent {
  margin-top: 12px;
}

.contact-consent input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: #57d9e5;
}

.contact-consent a,
.contact-actions a {
  color: #00aebe;
  text-underline-offset: 0.2em;
}

.contact-actions {
  display: grid;
  grid-template-columns: minmax(190px, 270px) 1fr;
  align-items: center;
  gap: clamp(24px, 3vw, 50px);
  margin-top: clamp(28px, 3vw, 46px);
  padding-top: clamp(28px, 3vw, 42px);
  border-top: 1px solid #e2e3e5;
}

.contact-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  min-height: 62px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--aqua);
  font-family: var(--serif);
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms var(--ease-out), box-shadow 180ms ease;
}

.contact-submit span {
  font-size: 20px;
  line-height: 1;
}

.contact-submit small {
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  line-height: 1;
}

.contact-submit b {
  position: absolute;
  top: 50%;
  right: 22px;
  font-family: Arial, sans-serif;
  font-size: 22px;
  transform: translateY(-50%);
}

.contact-submit:hover {
  background: #65e2ed;
  box-shadow: 0 12px 30px rgba(70, 208, 221, 0.28);
  transform: translateY(-3px);
}

.contact-submit:active {
  transform: translateY(0) scale(0.98);
}

.contact-submit[aria-busy="true"] {
  pointer-events: none;
  opacity: 0.72;
}

.contact-actions p {
  margin: 0;
  color: #7c838c;
  font-size: 14px;
  line-height: 1.8;
}

.placeholder-anchors {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 820px) {
  .page-shell {
    overflow: clip;
  }

  .content-width {
    width: min(88%, 680px);
  }

  .member-page {
    padding-top: 96px;
  }

  .hero {
    margin-top: 64px;
    height: auto;
    min-height: 640px;
    aspect-ratio: auto;
    background-size: auto 640px;
    background-position: center top;
  }

  .desktop-nav,
  .desktop-hero-copy {
    display: none;
  }

  .mobile-nav {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 64px;
    padding: 8px 14px;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 10px 24px rgba(78, 31, 36, 0.18);
    backdrop-filter: blur(8px);
    animation: navArrive 700ms var(--ease-out) both;
  }

  .mobile-brand {
    display: block;
    width: 56px;
    height: 48px;
  }

  .mobile-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 44px;
    padding: 9px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    height: 2px;
    background: #6f4348;
    transform-origin: center;
    transition: transform 220ms var(--ease-out), opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 1px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 244, 245, 0.97);
    box-shadow: 0 10px 24px rgba(78, 31, 36, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top right;
    visibility: hidden;
    transition: opacity 220ms ease, transform 220ms var(--ease-out), visibility 220ms;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
  }

  .mobile-menu a {
    padding: 11px;
    text-decoration: none;
  }

  .mobile-menu .nav-disabled {
    display: block;
    padding: 11px;
    color: #a9adb0;
    cursor: not-allowed;
    user-select: none;
  }

  .mobile-menu small {
    display: block;
    color: #53d9e5;
    font-family: var(--regular);
  }

  .mobile-menu .nav-disabled small {
    color: #bdc0c2;
  }

  .subpage-site-header {
    position: relative;
    z-index: 2;
    height: 96px;
  }

  .news-list-page > .subpage-site-header {
    z-index: 2;
  }

  .mobile-hero-copy {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 84%;
    color: #fff;
    font-size: clamp(22px, 6.2vw, 34px);
    font-weight: 400;
    line-height: 1.7;
    text-align: left;
    text-shadow: 0 2px 12px rgba(73, 28, 33, 0.35);
    transform: translateX(-50%);
  }

  .mobile-hero-copy p {
    margin: 0 0 1.1em;
    animation: heroCopyIn 760ms var(--ease-out) 220ms both;
  }

  .mobile-hero-copy p + p {
    animation-delay: 360ms;
  }

  .section-paper {
    background-color: #fff;
  }

  .about,
  .qa,
  .news,
  .showcase,
  .site-footer {
    height: auto;
    aspect-ratio: auto;
  }

  .about,
  .qa,
  .news,
  .site-footer {
    scroll-margin-top: 64px;
  }

  .about-inner {
    display: block;
    padding-block: 72px;
  }

  .about-copy {
    margin-top: 34px;
    font-size: 15px;
    line-height: 1.9;
  }

  .showcase {
    min-height: 720px;
    padding: 88px 0 72px;
    background: linear-gradient(120deg, #acf2f9, #e8fafb);
  }

  .vertical-heading {
    position: static;
    margin: 0 auto 30px;
    color: #fff;
    font-size: 56px;
    writing-mode: horizontal-tb;
  }

  .card-grid {
    width: min(88%, 680px);
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 72vw);
    gap: 22px;
    padding: 8px 0 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .portrait-card {
    scroll-snap-align: center;
  }

  .round-arrow {
    display: none;
  }

  .member-section .round-arrow {
    display: grid;
    top: 54%;
    width: 42px;
    border-width: 3px;
    font-size: 34px;
  }

  .member-section .round-arrow--left {
    left: 2.5%;
  }

  .member-section .round-arrow--right {
    right: 2.5%;
  }

  .portrait-role--wide {
    font-size: 34px;
  }

  .qa-inner,
  .news-inner {
    height: auto;
    padding-block: 72px 88px;
  }

  .qa-list {
    margin: 40px 0 0;
  }

  .qa-list details {
    margin-bottom: 22px;
  }

  .qa-list summary {
    grid-template-columns: 40px 1fr auto;
    font-size: 15px;
  }

  .qa-answer {
    grid-template-columns: 40px 1fr;
    font-size: 15px;
  }

  .qa-list summary {
    min-height: 70px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    margin: 42px 0 0;
  }

  .news-card time,
  .news-card h3 {
    font-size: 14px;
  }

  .expand-button {
    position: static;
    margin: 48px auto 0;
    transform: none;
  }

  .expand-button:hover,
  .expand-button:active {
    transform: translateY(-3px);
  }

  .site-footer {
    min-height: 560px;
    padding: 34px 0 24px;
  }

  .footer-inner {
    width: min(88%, 680px);
  }

  .footer-logo {
    width: 150px;
    height: 150px;
    margin: 0;
  }

  .footer-links-panel {
    margin-top: 22px;
  }

  .social-links {
    gap: 12px 24px;
  }

  .social-links a,
  .footer-page-links a {
    font-size: 15px;
  }

  .footer-page-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 24px;
  }

  .site-footer .registration {
    margin-top: 10px;
    font-size: 12px;
  }

  .site-footer .copyright {
    margin: 0;
    font-size: 13px;
  }

  .guidelines-header {
    min-height: 88px;
    padding-block: 16px;
  }

  .guidelines-main {
    padding-top: 36px;
  }

  .guidelines-toc {
    grid-template-columns: 1fr 1fr;
  }

  .contact-main {
    padding: 116px 0 84px;
  }

  .contact-shell {
    width: min(88%, 680px);
  }

  .contact-heading {
    display: block;
  }

  .contact-heading h1 {
    display: block;
  }

  .contact-intro {
    margin-top: 30px;
    font-size: 16px;
  }

  .contact-success {
    display: block;
  }

  .contact-success span {
    display: block;
    margin-top: 5px;
  }

  .contact-form {
    padding: 28px 20px 32px;
    border-radius: 0 0 10px 10px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-field--wide {
    grid-column: auto;
  }

  .contact-field > span {
    font-size: 13px;
  }

  .contact-field textarea {
    min-height: 190px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .contact-submit {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .has-js [data-reveal] {
    opacity: 1;
    translate: 0 0;
  }

  .hero {
    --hero-shift: 0px !important;
  }
}

/* Login / Bilibili account connection */
.login-main {
  min-height: 100vh;
  padding: clamp(158px, 12vw, 230px) 0 clamp(92px, 9vw, 170px);
  background:
    linear-gradient(90deg, transparent 0 7.2%, rgba(155, 234, 242, 0.25) 7.2% calc(7.2% + 1px), transparent calc(7.2% + 1px) 92.8%, rgba(155, 234, 242, 0.25) 92.8% calc(92.8% + 1px), transparent calc(92.8% + 1px)),
    #fff;
}

.login-shell {
  width: min(76.8%, 1280px);
  margin-inline: auto;
}

.login-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: clamp(30px, 3vw, 48px);
  border-bottom: 1px solid rgba(41, 41, 44, 0.2);
}

.login-heading .section-heading {
  margin: 0;
}

.login-kicker {
  margin: 0 0 4px;
  font-family: var(--regular);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.login-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  gap: clamp(70px, 8vw, 150px);
  align-items: center;
  padding-top: clamp(52px, 6vw, 96px);
}

.login-copy {
  position: relative;
  padding-left: clamp(26px, 3vw, 54px);
}

.login-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--aqua);
}

.login-step,
.login-card-label {
  margin: 0;
  font-family: var(--regular);
  font-size: 13px;
  letter-spacing: 0.16em;
}

.login-copy h2 {
  margin: 16px 0 0;
  font-size: clamp(42px, 4.1vw, 72px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.015em;
}

.login-lead {
  max-width: 520px;
  margin: 28px 0 0;
  font-size: 18px;
  line-height: 2;
}

.login-notes {
  max-width: 520px;
  margin: 44px 0 0;
  border-top: 1px solid rgba(41, 41, 44, 0.18);
}

.login-notes > div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(41, 41, 44, 0.18);
  font-size: 15px;
}

.login-notes dt,
.login-notes dd {
  margin: 0;
}

.login-notes dt {
  color: #747478;
}

.login-card-wrap {
  position: relative;
}

.login-card-wrap::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 18px -18px -18px 18px;
  background: var(--aqua-pale);
}

.login-card {
  position: relative;
  z-index: 1;
  padding: clamp(34px, 3.5vw, 54px);
  border: 1px solid rgba(41, 41, 44, 0.26);
  background: #fff;
  box-shadow: 0 18px 45px rgba(41, 41, 44, 0.08);
}

.login-card::before,
.login-card::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  pointer-events: none;
}

.login-card::before {
  top: -1px;
  left: -1px;
  border-top: 5px solid var(--aqua);
  border-left: 5px solid var(--aqua);
}

.login-card::after {
  right: -1px;
  bottom: -1px;
  border-right: 5px solid var(--aqua);
  border-bottom: 5px solid var(--aqua);
}

.bilibili-mark {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #fff;
  background: #29292c;
}

.bilibili-mark svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.login-card h2 {
  margin: 12px 0 0;
  font-size: clamp(27px, 2vw, 35px);
  font-weight: 400;
  line-height: 1.35;
}

.login-card > p:not(.login-card-label, .login-status, .login-consent) {
  margin: 20px 0 0;
  color: #5f5f64;
  font-size: 15px;
  line-height: 1.9;
}

.login-status {
  margin: 24px 0 -8px;
  padding: 13px 15px;
  border-left: 4px solid var(--aqua);
  background: var(--aqua-pale);
  font-size: 14px;
  line-height: 1.65;
}

.login-status.is-error {
  border-left-color: #ff9fc8;
  background: #fff0f6;
}

.login-status.is-review {
  border-left-color: #e6bd55;
  background: #fff9e9;
}

.bilibili-auth-button {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 70px;
  margin-top: 34px;
  padding: 0 22px;
  color: #fff;
  background: #29292c;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms var(--ease-out);
}

.bilibili-auth-button:hover {
  color: #29292c;
  background: var(--aqua);
  transform: translateY(-3px);
}

.bilibili-auth-button[aria-busy="true"] {
  pointer-events: none;
}

.bilibili-auth-button[aria-disabled="true"] {
  color: #77777c;
  background: #e8e8e9;
  cursor: not-allowed;
  pointer-events: none;
}

.bilibili-auth-button[aria-disabled="true"]:hover {
  color: #77777c;
  background: #e8e8e9;
  transform: none;
}

.bilibili-auth-button span {
  font-size: 18px;
}

.bilibili-auth-button small {
  font-family: var(--regular);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.bilibili-auth-button b {
  font-size: 28px;
  line-height: 1;
}

.login-consent {
  margin: 18px 0 0;
  color: #7b7b80;
  font-size: 12px;
  line-height: 1.7;
}

.login-consent a,
.login-help a {
  text-underline-offset: 4px;
}

.login-help {
  position: relative;
  z-index: 1;
  margin: 38px 0 0;
  font-size: 14px;
  text-align: right;
}

@media (max-width: 1024px) {
  .login-main {
    padding-top: 148px;
  }

  .login-layout {
    grid-template-columns: 1fr 1fr;
    gap: 52px;
  }
}

@media (max-width: 820px) {
  .login-main {
    min-height: auto;
    padding: 118px 0 96px;
    background:
      linear-gradient(90deg, transparent 0 5.8%, rgba(155, 234, 242, 0.3) 5.8% calc(5.8% + 1px), transparent calc(5.8% + 1px) 94.2%, rgba(155, 234, 242, 0.3) 94.2% calc(94.2% + 1px), transparent calc(94.2% + 1px)),
      #fff;
  }

  .login-shell {
    width: min(88%, 680px);
  }

  .login-heading {
    display: block;
  }

  .login-kicker {
    margin-bottom: 18px;
  }

  .login-layout {
    grid-template-columns: 1fr;
    gap: 54px;
    padding-top: 48px;
  }

  .login-copy {
    padding-left: 22px;
  }

  .login-copy::before {
    width: 5px;
  }

  .login-copy h2 {
    font-size: clamp(39px, 11vw, 58px);
  }

  .login-lead {
    margin-top: 22px;
    font-size: 16px;
  }

  .login-notes {
    margin-top: 34px;
  }

  .login-card-wrap::before {
    inset: 12px -12px -12px 12px;
  }

  .login-card {
    padding: 36px 26px 32px;
  }

  .login-card h2 {
    font-size: 27px;
  }

  .login-demo-entry {
    grid-template-columns: 1fr;
  }

  .login-demo-entry > a {
    width: 100%;
  }

  .bilibili-auth-button {
    min-height: 66px;
    padding-inline: 18px;
  }
}

@media (max-width: 430px) {
  .login-notes > div {
    grid-template-columns: 94px 1fr;
    gap: 12px;
  }

  .bilibili-auth-button {
    grid-template-columns: 1fr auto;
  }

  .bilibili-auth-button small {
    display: none;
  }
}

.login-local-preview {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(41, 41, 44, 0.18);
  font-size: 14px;
}

.login-local-preview[hidden] {
  display: none;
}

.login-local-preview > span {
  color: #747478;
  font-family: var(--regular);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.login-local-preview a {
  text-underline-offset: 4px;
}

.login-extras {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: stretch;
  margin-top: clamp(54px, 6vw, 88px);
}

.login-demo-entry,
.login-purpose {
  position: relative;
  z-index: 1;
  margin: 0;
}

.login-demo-entry[hidden] {
  display: none;
}

.login-demo-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(41, 41, 44, 0.2);
  background: var(--aqua-pale);
}

.login-demo-entry span,
.login-purpose > strong {
  font-family: var(--regular);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.login-demo-entry strong {
  display: block;
  margin-top: 5px;
  font-size: 18px;
}

.login-demo-entry p,
.login-purpose p {
  margin: 7px 0 0;
  color: #65656a;
  font-size: 13px;
  line-height: 1.75;
}

.login-demo-entry > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-width: 190px;
  padding: 13px 16px;
  border: 1px solid #29292c;
  text-decoration: none;
}

.login-demo-entry > a span {
  display: inline-flex;
  align-items: center;
  align-self: center;
  line-height: 1;
}

.login-demo-entry > a:hover {
  background: #fff;
}

.login-purpose {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 20px;
  border-left: 4px solid var(--pink);
  background: #fff7fa;
}

@media (max-width: 1024px) {
  .login-extras {
    grid-template-columns: 1fr;
  }
}

/* Signed-in account surface */
.account-main {
  --account-rail-position: max(12px, calc((100% - min(90%, 1440px)) / 2 - 20px));
  min-height: 100vh;
  padding: clamp(150px, 11vw, 210px) 0 clamp(100px, 9vw, 160px);
  background-color: #fff;
  background-image:
    linear-gradient(rgba(155, 234, 242, 0.24) 0 0),
    linear-gradient(rgba(155, 234, 242, 0.24) 0 0);
  background-position:
    var(--account-rail-position) 0,
    calc(100% - var(--account-rail-position)) 0;
  background-repeat: no-repeat;
  background-size: 1px 100%, 1px 100%;
}

.account-shell {
  width: min(90%, 1440px);
  margin-inline: auto;
}

.account-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: clamp(34px, 3.2vw, 52px);
  border-bottom: 1px solid rgba(41, 41, 44, 0.2);
}

.account-heading-row .section-heading {
  margin: 0;
}

.account-kicker {
  margin: 0 0 16px;
  font-family: var(--regular);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.account-preview-badge {
  margin: 0 0 5px;
  padding: 9px 14px;
  border: 1px solid #29292c;
  background: #fff3f8;
  font-size: 13px;
}

.account-loading {
  min-height: 300px;
  padding-top: 80px;
  color: #727277;
  font-size: 16px;
  text-align: center;
}

.account-locked {
  max-width: 620px;
  margin: clamp(64px, 8vw, 120px) auto 0;
  padding: clamp(34px, 5vw, 60px);
  border: 1px solid rgba(41, 41, 44, 0.25);
  text-align: center;
}

.account-locked > p {
  margin: 0;
  font-family: var(--regular);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.account-locked h2 {
  margin: 16px 0 10px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
}

.account-locked > span {
  display: block;
  color: #65656a;
  font-size: 16px;
  line-height: 1.8;
}

.account-locked a {
  display: inline-flex;
  align-items: center;
  gap: 50px;
  margin-top: 30px;
  padding: 16px 22px;
  color: #fff;
  background: #29292c;
  text-decoration: none;
}

.account-state-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.account-state-actions a[hidden] {
  display: none;
}

.account-state-actions a + a {
  color: #29292c;
  background: var(--aqua-pale);
}

.account-dashboard {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(38px, 4vw, 64px);
  align-items: start;
  padding-top: clamp(52px, 5.5vw, 86px);
}

.account-dashboard[hidden] {
  display: none;
}

.account-mode-notice {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px 22px;
  border: 1px solid #e8a6c3;
  background: #fff3f8;
}

.account-mode-notice[hidden] {
  display: none;
}

.account-mode-notice strong {
  font-size: 16px;
}

.account-mode-notice p {
  margin: 0;
  color: #675d61;
  font-size: 13px;
  line-height: 1.75;
}

.account-sidebar {
  position: sticky;
  top: 150px;
  padding: 30px;
  border: 1px solid rgba(41, 41, 44, 0.24);
  background: #fff;
  box-shadow: 14px 14px 0 var(--aqua-pale);
}

.account-avatar {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  color: #29292c;
  background: var(--aqua);
  font-size: 32px;
}

.account-avatar.is-brand {
  overflow: hidden;
  background: #fff;
}

.account-avatar.is-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.18);
}

.account-connected {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 22px 0 0;
  color: #65656a;
  font-size: 13px;
}

.account-connected span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #55c994;
  box-shadow: 0 0 0 4px rgba(85, 201, 148, 0.14);
}

.account-sidebar h2 {
  margin: 8px 0 0;
  font-size: 28px;
  font-weight: 400;
}

.account-sidebar dl {
  margin: 26px 0 0;
  padding: 18px 0;
  border-top: 1px solid rgba(41, 41, 44, 0.15);
  border-bottom: 1px solid rgba(41, 41, 44, 0.15);
}

.account-sidebar dl > div + div {
  margin-top: 13px;
}

.account-sidebar dt {
  color: #85858a;
  font-family: var(--regular);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.account-sidebar dd {
  overflow: hidden;
  margin: 5px 0 0;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-section-nav {
  display: grid;
  margin-top: 20px;
}

.account-section-nav a {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(41, 41, 44, 0.12);
  font-size: 14px;
  text-decoration: none;
}

.account-section-nav a:hover {
  color: #40c8d4;
}

.account-section-nav span {
  color: #a0a0a4;
  font-family: var(--regular);
  font-size: 11px;
}

.account-logout {
  display: inline-block;
  margin-top: 26px;
  color: #68686d;
  font-size: 13px;
  text-underline-offset: 4px;
}

.account-content {
  min-width: 0;
}

.account-panel {
  border: 1px solid rgba(41, 41, 44, 0.25);
  background: #fff;
}

.account-panel-heading {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 28px clamp(26px, 3vw, 42px);
  border-bottom: 1px solid rgba(41, 41, 44, 0.16);
  background: linear-gradient(90deg, var(--aqua-pale), #fff 72%);
}

.account-panel-heading > div,
.account-panel-title {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.account-panel-heading .account-panel-title > span,
.account-section-title > span {
  color: #65d9e3;
  font-family: var(--regular);
  font-size: 12px;
}

.account-panel-heading h2,
.account-panel-title > strong,
.account-section-title h2 {
  margin: 0;
  font-size: clamp(26px, 2.3vw, 35px);
  font-weight: 400;
}

.account-panel-heading p,
.account-panel-note {
  margin: 0;
  color: #727277;
  font-size: 13px;
}

.account-profile-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 34px;
  padding: clamp(30px, 4vw, 52px);
}

.account-profile-form label {
  display: grid;
  gap: 10px;
}

.account-profile-form label > span {
  color: #67676c;
  font-family: var(--regular);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.account-profile-form input,
.account-profile-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bfc0c2;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 16px;
}

.account-profile-form input {
  height: 48px;
}

.account-profile-form textarea {
  min-height: 78px;
  padding: 12px 0;
  resize: vertical;
}

.account-profile-form input:focus,
.account-profile-form textarea:focus {
  border-bottom-color: #44d4e0;
  outline: 0;
  box-shadow: 0 2px 0 #44d4e0;
}

.account-profile-address,
.account-profile-actions {
  grid-column: 1 / -1;
}

.account-profile-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-top: 6px;
}

.account-profile-actions button {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px;
  min-width: 220px;
  min-height: 60px;
  padding: 0 20px;
  border: 0;
  color: #fff;
  background: #29292c;
  font: inherit;
  cursor: pointer;
}

.account-profile-actions button:hover {
  color: #29292c;
  background: var(--aqua);
}

.account-profile-actions button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.account-profile-actions button small {
  font-family: var(--regular);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.account-profile-actions button b {
  font-size: 24px;
}

.account-profile-actions p {
  order: -1;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  color: #5f5f64;
  font-size: 13px;
}

.account-services,
.account-shipments {
  margin-top: clamp(64px, 7vw, 100px);
}

.account-data-status {
  margin: 16px 0 0;
  color: #68686d;
  font-size: 13px;
  line-height: 1.7;
}

.account-api-record {
  margin-top: 28px;
  padding: 26px;
  border: 1px solid rgba(41, 41, 44, 0.28);
  background: #fff;
}

.account-api-record h3,
.account-api-record p,
.account-api-record dl {
  margin: 0;
}

.account-api-record h3 {
  font-size: 21px;
  font-weight: 400;
}

.account-api-record p {
  margin-top: 8px;
  color: #66666b;
}

.account-api-record dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin-top: 18px;
}

.account-api-record dl > div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 8px;
  font-size: 13px;
}

.account-api-record dt {
  color: #85858a;
}

.account-api-record dd {
  margin: 0;
}

.account-api-record > a {
  display: inline-block;
  margin-top: 20px;
  text-underline-offset: 4px;
}

.account-section-title {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(41, 41, 44, 0.2);
}

.account-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 28px;
}

.account-service-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 3px 18px;
  min-height: 150px;
  padding: 28px;
  border: 1px solid rgba(41, 41, 44, 0.22);
  color: #29292c;
  background: var(--aqua-pale);
  text-decoration: none;
  transition: transform 180ms var(--ease-out), box-shadow 180ms ease;
}

.account-service-card--after {
  background: #fff3f8;
}

.account-service-card:hover {
  z-index: 1;
  transform: translateY(-5px);
  box-shadow: 0 18px 30px rgba(41, 41, 44, 0.1);
}

.account-service-icon {
  grid-row: 1 / -1;
  font-family: Georgia, serif;
  font-size: 46px;
}

.account-service-card strong {
  align-self: end;
  font-size: 19px;
}

.account-service-card small {
  align-self: start;
  color: #77777c;
  font-family: var(--regular);
  font-size: 10px;
  letter-spacing: 0.13em;
}

.account-service-card > b {
  grid-column: 3;
  grid-row: 1 / -1;
  font-size: 28px;
}

.shipment-list {
  display: grid;
  gap: 26px;
  margin-top: 28px;
}

.shipment-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  border: 1px solid rgba(41, 41, 44, 0.3);
  background: #fff;
}

.shipment-card[hidden] {
  display: none;
}

.shipment-thumb {
  display: grid;
  place-content: center;
  min-height: 220px;
  border-right: 1px solid rgba(41, 41, 44, 0.2);
  background:
    linear-gradient(145deg, transparent 45%, rgba(255,255,255,0.6) 45% 55%, transparent 55%),
    var(--aqua-pale);
  text-align: center;
}

.shipment-thumb--sent {
  background:
    linear-gradient(145deg, transparent 45%, rgba(255,255,255,0.6) 45% 55%, transparent 55%),
    #fff3f8;
}

.shipment-thumb span {
  font-family: var(--regular);
  font-size: 13px;
  letter-spacing: 0.14em;
}

.shipment-thumb small {
  margin-top: 5px;
  font-family: var(--regular);
  font-size: 10px;
  letter-spacing: 0.22em;
}

.shipment-body {
  position: relative;
  min-width: 0;
  padding: 24px 28px;
}

.shipment-body header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(41, 41, 44, 0.13);
}

.shipment-body h3 {
  overflow: hidden;
  margin: 0;
  font-size: 17px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shipment-state {
  flex: none;
  padding: 6px 10px;
  font-size: 12px;
}

.shipment-state.is-pending {
  background: var(--aqua-pale);
}

.shipment-state.is-sent {
  background: #e9f8ef;
}

.shipment-body dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
  margin: 18px 0 0;
}

.shipment-body dl > div {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 8px;
  font-size: 13px;
}

.shipment-body dt {
  color: #85858a;
}

.shipment-body dd {
  overflow: hidden;
  margin: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shipment-body > button[data-edit-profile] {
  display: block;
  width: max-content;
  margin: 20px 0 0 auto;
  padding: 8px 14px;
  border: 0;
  color: #fff;
  background: #29292c;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.shipment-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.shipment-pagination[hidden] {
  display: none;
}

.shipment-pagination-pages {
  display: flex;
  gap: 8px;
}

.shipment-pagination button {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(41, 41, 44, 0.3);
  color: #29292c;
  background: #fff;
  font: inherit;
  cursor: pointer;
}

.shipment-pagination-pages button[aria-current="page"] {
  border-color: #29292c;
  color: #fff;
  background: #29292c;
}

.shipment-pagination button:not(:disabled):hover {
  border-color: #44d4e0;
  background: var(--aqua-pale);
}

.shipment-pagination button:disabled {
  cursor: default;
  opacity: 0.35;
}

.shipment-empty {
  display: grid;
  min-height: 180px;
  place-content: center;
  border: 1px dashed rgba(41, 41, 44, 0.25);
  color: #7d7d82;
  text-align: center;
}

.shipment-empty[hidden] {
  display: none;
}

.shipment-empty span {
  font-size: 17px;
}

.shipment-empty small {
  margin-top: 7px;
  font-family: var(--regular);
  font-size: 10px;
  letter-spacing: 0.15em;
}

@media (max-width: 1080px) {
  .account-dashboard {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 42px;
  }

  .account-sidebar {
    padding: 24px;
  }

  .shipment-body dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .login-local-preview {
    align-items: flex-start;
    flex-direction: column;
  }

  .login-demo-entry {
    grid-template-columns: 1fr;
  }

  .login-demo-entry > a {
    width: 100%;
  }

  .account-main {
    --account-rail-position: max(12px, calc((100% - min(88%, 680px)) / 2 - 12px));
    padding: 118px 0 96px;
    background-image:
      linear-gradient(rgba(155, 234, 242, 0.28) 0 0),
      linear-gradient(rgba(155, 234, 242, 0.28) 0 0);
  }

  .account-shell {
    width: min(88%, 680px);
  }

  .account-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-dashboard {
    grid-template-columns: 1fr;
  }

  .account-mode-notice {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .account-sidebar {
    position: static;
  }

  .account-section-nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .account-section-nav a {
    display: grid;
    gap: 5px;
  }

  .account-panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-profile-form,
  .account-service-grid {
    grid-template-columns: 1fr;
  }

  .account-profile-address,
  .account-profile-actions {
    grid-column: auto;
  }

  .shipment-card {
    grid-template-columns: 1fr;
  }

  .shipment-thumb {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid rgba(41, 41, 44, 0.2);
  }
}

@media (max-width: 520px) {
  .guidelines-toc {
    grid-template-columns: 1fr;
  }

  .account-state-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .account-state-actions a {
    width: 100%;
  }

  .account-api-record dl {
    grid-template-columns: 1fr;
  }

  .account-section-nav {
    grid-template-columns: 1fr;
  }

  .account-profile-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .account-profile-actions button {
    width: 100%;
  }

  .account-profile-actions p {
    order: 0;
    margin-right: 0;
  }

  .account-service-card {
    min-height: 132px;
    padding: 22px;
  }

  .shipment-body {
    padding: 22px;
  }

  .shipment-body header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .shipment-body h3,
  .shipment-body dd {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  .shipment-body > button[data-edit-profile] {
    margin-left: auto;
  }
}

/* Expanded account profile, recharge and delivery states */
.account-sidebar abbr {
  margin-left: 4px;
  border: 0;
  text-decoration: none;
  cursor: help;
}

.account-personal-form,
.account-shipping-profile {
  position: relative;
}

.account-shipping-profile {
  margin-top: clamp(64px, 7vw, 100px);
}

.account-profile-form label > small {
  color: #88888d;
  font-size: 12px;
  line-height: 1.6;
}

.account-profile-form input[readonly] {
  color: #707075;
  background: rgba(41, 41, 44, 0.035);
}

.account-profile-form input.is-locked {
  pointer-events: none;
}

.account-birthday-field {
  align-self: start;
}

.account-birthday-rule {
  align-self: start;
  margin-top: 28px;
  min-height: 0;
  padding: 13px 18px;
  border-left: 4px solid #ff9fc8;
  background: #fff3f8;
}

.account-birthday-rule strong,
.account-birthday-rule span {
  display: block;
}

.account-birthday-rule strong {
  font-size: 14px;
}

.account-birthday-rule span {
  margin-top: 6px;
  color: #6d6d72;
  font-size: 12px;
  line-height: 1.6;
}

.account-birthday-greeting {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border: 1px solid #76dfe8;
  background: linear-gradient(100deg, var(--aqua-pale), #fff3f8);
}

.account-birthday-greeting[hidden] {
  display: none;
}

.account-birthday-greeting > span {
  color: #54d4df;
  font-size: 32px;
}

.account-birthday-greeting strong,
.account-birthday-greeting small {
  display: block;
}

.account-birthday-greeting strong {
  font-size: 19px;
}

.account-birthday-greeting small {
  margin-top: 4px;
  color: #6c6c71;
  font-size: 13px;
}

.account-shipping-warning {
  margin: 0;
  padding: 16px clamp(26px, 3vw, 42px);
  border-bottom: 1px solid rgba(41, 41, 44, 0.14);
  color: #5c4a51;
  background: #fff3f8;
  font-size: 14px;
  line-height: 1.75;
}

.account-shipping-warning strong {
  margin-right: 6px;
  color: #29292c;
}

.account-section-intro {
  max-width: 720px;
  margin: 18px 0 0;
  color: #6d6d72;
  font-size: 15px;
  line-height: 1.8;
}

.account-recharge {
  margin-top: clamp(64px, 7vw, 100px);
}

#electronic-gift-list {
  container-type: inline-size;
}

.recharge-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr) minmax(260px, 1.25fr);
  gap: 20px;
  align-items: center;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(41, 41, 44, 0.28);
  background: #fff;
}

.recharge-card[hidden] {
  display: none;
}

.recharge-member {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 18px;
}

.recharge-member > div:last-child,
.recharge-summary {
  min-width: 0;
}

.recharge-member-avatar {
  display: block;
  flex: none;
  width: 86px;
  height: 86px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--aqua-pale);
}

.recharge-member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.recharge-member h3 a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.recharge-member h3 a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.recharge-member span {
  color: #79797e;
  font-family: var(--regular);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.recharge-member h3 {
  overflow-wrap: normal;
  margin: 6px 0 0;
  font-size: 24px;
  font-weight: 400;
}

.recharge-member p {
  margin: 7px 0 0;
  color: #707075;
  font-size: 13px;
  line-height: 1.4;
  text-wrap: balance;
}

.recharge-summary {
  margin: 0;
  padding: 0 14px;
  border-right: 1px solid rgba(41, 41, 44, 0.15);
  border-left: 1px solid rgba(41, 41, 44, 0.15);
}

.recharge-summary > div {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 10px;
  padding: 6px 0;
  font-size: 13px;
}

.recharge-summary > div:nth-child(2) dd {
  font-size: 12px;
  line-height: 1.65;
}

.recharge-summary dt {
  color: #85858a;
}

.recharge-summary dd {
  margin: 0;
}

.recharge-summary a {
  text-underline-offset: 4px;
}

.recharge-wallpaper {
  min-width: 0;
  margin: 0;
}

.recharge-wallpaper > div {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--aqua-pale);
}

.recharge-wallpaper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recharge-wallpaper figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 10px;
  font-size: 12px;
}

.recharge-wallpaper figcaption a {
  flex: none;
  text-underline-offset: 4px;
}

.recharge-empty {
  display: grid;
  min-height: 180px;
  place-content: center;
  margin-top: 28px;
  border: 1px dashed rgba(41, 41, 44, 0.25);
  color: #7d7d82;
  text-align: center;
}

.recharge-empty[hidden] {
  display: none;
}

.recharge-empty span {
  font-size: 17px;
}

.recharge-empty small {
  margin-top: 7px;
  font-family: var(--regular);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.shipment-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 22px;
  color: #69696e;
  font-size: 12px;
}

.shipment-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.shipment-legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.shipment-legend .is-collecting,
.shipment-state.is-collecting {
  background: var(--aqua-pale);
}

.shipment-legend .is-collecting {
  background: #67dce6;
}

.shipment-legend .is-waiting {
  background: #e6bd55;
}

.shipment-legend .is-sent {
  background: #65bf8d;
}

.shipment-state.is-waiting {
  background: #fff3d6;
}

.shipment-card {
  grid-template-columns: minmax(220px, 32%) minmax(0, 1fr);
  align-items: start;
}

.shipment-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background: var(--aqua-pale);
}

.shipment-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shipment-copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.shipment-copy span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.shipment-copy small {
  flex: none;
  padding: 3px 7px;
  border: 1px solid rgba(41, 41, 44, 0.24);
  font-size: 10px;
}

.shipment-copy:hover small {
  border-color: var(--aqua);
  background: var(--aqua-pale);
}

.shipment-question {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  padding: 8px 13px;
  border: 1px solid rgba(41, 41, 44, 0.28);
  font-size: 12px;
  text-decoration: none;
}

.shipment-question:hover {
  background: var(--aqua-pale);
}

/* Delivery FAQ */
.shipping-faq-page {
  background: #fff;
}

.shipping-faq-header {
  position: sticky;
  z-index: 10;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.shipping-faq-main {
  width: min(82%, 1120px);
  margin-inline: auto;
  padding: clamp(70px, 8vw, 120px) 0 clamp(90px, 9vw, 150px);
}

.shipping-faq-kicker {
  margin: 0;
  font-family: var(--regular);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.shipping-faq-main > h1 {
  display: inline-block;
  margin: 14px 0 0;
  padding-bottom: 8px;
  border-bottom: 7px solid var(--aqua);
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 400;
  line-height: 1;
}

.shipping-faq-intro {
  max-width: 720px;
  margin: 28px 0 0;
  color: #65656a;
  font-size: 16px;
  line-height: 1.9;
}

.shipping-status-guide {
  margin-top: clamp(60px, 7vw, 96px);
}

.shipping-status-guide > h2 {
  margin: 0 0 22px;
  font-size: 28px;
  font-weight: 400;
}

.shipping-status-guide > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(41, 41, 44, 0.25);
}

.shipping-status-guide article {
  min-height: 190px;
  padding: 26px;
}

.shipping-status-guide article + article {
  border-left: 1px solid rgba(41, 41, 44, 0.18);
}

.shipping-status-guide article:nth-child(1) {
  background: var(--aqua-pale);
}

.shipping-status-guide article:nth-child(2) {
  background: #fff9e9;
}

.shipping-status-guide article:nth-child(3) {
  background: #edf9f2;
}

.shipping-status-guide article > span {
  font-family: var(--regular);
  font-size: 11px;
}

.shipping-status-guide h3 {
  margin: 18px 0 0;
  font-size: 25px;
  font-weight: 400;
}

.shipping-status-guide p {
  margin: 12px 0 0;
  color: #65656a;
  font-size: 14px;
  line-height: 1.75;
}

.shipping-faq-list {
  margin-top: clamp(58px, 7vw, 92px);
  border-top: 1px solid #29292c;
}

.shipping-faq-list details {
  border-bottom: 1px solid rgba(41, 41, 44, 0.2);
}

.shipping-faq-list summary {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 14px 4px;
  cursor: pointer;
  list-style: none;
}

.shipping-faq-list summary::-webkit-details-marker {
  display: none;
}

.shipping-faq-list summary > span {
  color: #5ed8e3;
  font-family: var(--regular);
  font-size: 12px;
}

.shipping-faq-list summary strong {
  font-size: 18px;
}

.shipping-faq-list summary b {
  font-size: 25px;
  transition: transform 180ms ease;
}

.shipping-faq-list details[open] summary b {
  transform: rotate(45deg);
}

.shipping-faq-list details > p {
  margin: 0;
  padding: 0 48px 28px 66px;
  color: #616166;
  font-size: 15px;
  line-height: 1.9;
}

.shipping-faq-actions {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
}

.shipping-faq-actions a {
  display: inline-flex;
  gap: 18px;
  padding: 15px 20px;
  border: 1px solid #29292c;
  text-decoration: none;
}

.shipping-faq-actions a:last-child {
  color: #fff;
  background: #29292c;
}

@container (max-width: 920px) {
  .recharge-card {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr) minmax(260px, 1.35fr);
    gap: clamp(12px, 1.7cqi, 18px);
    padding: clamp(16px, 2.4cqi, 22px);
  }

  .recharge-member {
    gap: clamp(10px, 1.5cqi, 14px);
  }

  .recharge-member-avatar {
    width: clamp(64px, 8.5cqi, 76px);
    height: clamp(64px, 8.5cqi, 76px);
  }

  .recharge-member span {
    font-size: clamp(9px, 1.15cqi, 10px);
    letter-spacing: 0.08em;
  }

  .recharge-member h3 {
    font-size: clamp(18px, 2.5cqi, 22px);
    line-height: 1.1;
  }

  .recharge-member p,
  .recharge-wallpaper figcaption {
    font-size: clamp(10px, 1.45cqi, 12px);
  }

  .recharge-summary {
    padding: 0 clamp(7px, 1.15cqi, 11px);
  }

  .recharge-summary > div {
    grid-template-columns: clamp(54px, 7.5cqi, 64px) minmax(0, 1fr);
    gap: clamp(6px, 1cqi, 9px);
    font-size: clamp(11px, 1.5cqi, 13px);
  }

  .recharge-summary > div:nth-child(2) dd {
    font-size: clamp(10px, 1.35cqi, 12px);
    line-height: 1.55;
  }
}

@container (max-width: 700px) {
  .recharge-card {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.2fr) minmax(190px, 1.25fr);
    gap: 10px;
    padding: 16px;
  }

  .recharge-member {
    gap: 10px;
  }

  .recharge-member-avatar {
    width: 58px;
    height: 58px;
  }

  .recharge-member h3 {
    font-size: 17px;
  }

  .recharge-member p,
  .recharge-wallpaper figcaption {
    font-size: 10px;
  }

  .recharge-summary {
    padding: 0 6px;
  }

  .recharge-summary > div {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 6px;
    font-size: 11px;
  }
}

@media (max-width: 820px) {
  .account-birthday-greeting {
    grid-column: auto;
  }

  .shipment-card {
    grid-template-columns: 1fr;
  }

  .shipment-thumb {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .shipping-status-guide > div {
    grid-template-columns: 1fr;
  }

  .shipping-status-guide article {
    min-height: 0;
  }

  .shipping-status-guide article + article {
    border-top: 1px solid rgba(41, 41, 44, 0.18);
    border-left: 0;
  }
}

@media (max-width: 520px) {
  .recharge-member {
    align-items: flex-start;
  }

  .recharge-member-avatar {
    width: 72px;
    height: 72px;
  }

  .recharge-wallpaper figcaption,
  .shipping-faq-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .shipping-faq-main {
    width: 88%;
  }

  .shipping-faq-list summary {
    grid-template-columns: 30px 1fr auto;
    gap: 10px;
  }

  .shipping-faq-list summary strong {
    font-size: 16px;
  }

  .shipping-faq-list details > p {
    padding: 0 34px 24px 40px;
  }

  .shipping-faq-actions a {
    width: 100%;
    justify-content: space-between;
  }
}

/* Standalone account, login and contact navigation matches the full-width home navigation. */
.account-page .desktop-nav,
.login-page .desktop-nav,
.contact-page .desktop-nav {
  top: 0;
  width: 100%;
  padding-inline: max(1.5%, calc((100vw - min(76.8vw, 1474px)) / 2));
  border-radius: 0;
  background: #fff;
  box-shadow: 0 4px 16px rgba(80, 65, 70, 0.14);
}

.account-collapsible {
  scroll-margin-top: calc(var(--desktop-nav-height) + 24px);
}

.account-collapsible > summary {
  cursor: pointer;
  list-style: none;
}

.account-collapsible > summary::-webkit-details-marker {
  display: none;
}

.account-collapse-mark {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(41, 41, 44, 0.26);
}

.account-collapse-mark::before {
  content: "+";
  font-family: var(--regular);
  font-size: 24px;
  line-height: 1;
}

.account-collapsible[open] .account-collapse-mark::before {
  content: "−";
}

.account-collapsible:not([open]) > summary {
  border-bottom: 0;
}

@media (max-width: 1100px) {
  .account-dashboard {
    grid-template-columns: minmax(0, 1fr);
    gap: 56px;
  }

  .account-sidebar {
    position: static;
  }

  .account-section-nav {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }

  .account-section-nav a {
    display: grid;
    gap: 5px;
  }
}

@media (max-width: 820px) {
  .account-panel-heading {
    grid-template-columns: 1fr auto;
    gap: 12px 18px;
  }

  .account-panel-note {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .account-collapse-mark {
    grid-column: 2;
    grid-row: 1;
  }

  .account-section-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .account-birthday-rule {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .account-shell {
    width: 88%;
  }

  .recharge-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .recharge-summary {
    padding: 18px 0;
    border: 0;
    border-top: 1px solid rgba(41, 41, 44, 0.15);
    border-bottom: 1px solid rgba(41, 41, 44, 0.15);
  }

  .recharge-wallpaper {
    grid-column: auto;
  }

  .account-section-nav {
    grid-template-columns: 1fr;
  }

  .account-panel-title {
    gap: 11px;
  }

  .account-panel-title > strong {
    font-size: 26px;
  }
}
