:root {
  --ink: #111;
  --muted: #747474;
  --panel: rgba(255, 255, 255, 0.7);
  --dark: #4d4d4d;
  --soft: #f4f4f6;
  --bili: #1296db;
  --afd: #8f66df;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
  max-width: 100%;
  overflow-x: hidden;
}

body.page-transition-ready main,
body.page-transition-ready .site-footer {
  animation: pageEnter 420ms ease both;
}

body.page-transition-leave main,
body.page-transition-leave .site-footer {
  pointer-events: none;
  animation: pageLeave 260ms ease both;
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageLeave {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-transition-ready main,
  body.page-transition-ready .site-footer,
  body.page-transition-leave main,
  body.page-transition-leave .site-footer {
    animation: none;
  }
}

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

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

.site-nav {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
  font-size: 22px;
  font-weight: 500;
  white-space: nowrap;
}

.nav-link {
  position: relative;
  color: var(--muted);
}

.nav-link.active {
  color: #000;
}

.nav-link.active::after {
  position: absolute;
  left: 50%;
  bottom: -25px;
  width: 120px;
  height: 8px;
  content: "";
  transform: translateX(-50%);
  border-radius: 3px;
  background: var(--dark);
}

.home-fixed-bg {
  position: fixed;
  z-index: -1;
  inset: 0;
  background: url("../assets/home.jpg") center top / cover no-repeat;
  pointer-events: none;
}

.home-hero {
  position: relative;
  min-height: 960px;
  padding-top: 760px;
  background: transparent;
}

.home-content {
  position: relative;
  background: var(--panel);
}

.container {
  width: min(1600px, calc(100% - 64px));
  margin: 0 auto;
}

.intro-card {
  min-height: 420px;
  border: 4px solid #000;
  text-align: center;
  color: var(--dark);
}

.home-intro {
  transform: translateY(24px);
}

.intro-title {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 34px;
  padding-top: 28px;
}

.intro-title strong {
  font-family: Impact, Anton, "Arial Black", sans-serif;
  font-size: 112px;
  line-height: 1.1;
}

.intro-title span {
  font-size: 56px;
  font-weight: 900;
}

.intro-copy {
  margin: 34px auto 0;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.4;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 640px;
  height: 140px;
  margin: 0 auto;
  font-size: 44px;
  font-weight: 500;
}

.section-title.filled {
  color: #fff;
  background: rgba(77, 77, 77, 0.8);
}

.section-title.outlined {
  border: 4px solid var(--dark);
}

.news-section {
  padding-top: 220px;
}

.carousel-shell {
  position: relative;
  width: min(1800px, calc(100% - 32px));
  height: 720px;
  margin: 48px auto 0;
}

.carousel-track {
  position: relative;
  width: 1500px;
  max-width: calc(100% - 200px);
  height: 720px;
  margin: 0 auto;
}

.slide-preview,
.slide-main {
  position: absolute;
  aspect-ratio: 1280 / 720;
  overflow: hidden;
  background: #ddd;
  transition: opacity 360ms ease, transform 360ms ease, filter 360ms ease;
  will-change: opacity, transform;
}

.slide-preview img,
.slide-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-preview {
  top: 42px;
  width: 1100px;
  max-width: 77%;
  opacity: 0.5;
}

.carousel-shell.is-switching .slide-main {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
}

.carousel-shell.is-switching .slide-preview {
  opacity: 0.16;
  filter: blur(1px);
}

.carousel-shell.is-entering .slide-main {
  animation: carousel-main-in 520ms ease both;
}

.carousel-shell.is-entering .slide-preview {
  animation: carousel-preview-in 520ms ease both;
}

@keyframes carousel-main-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes carousel-preview-in {
  from {
    opacity: 0.16;
    transform: scale(0.99);
    filter: blur(1px);
  }

  to {
    opacity: 0.5;
    transform: scale(1);
    filter: blur(0);
  }
}

.slide-preview.prev {
  left: 0;
}

.slide-preview.next {
  right: 0;
}

.slide-main {
  z-index: 2;
  top: 0;
  left: 110px;
  width: 1280px;
  max-width: calc(100% - 220px);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.slide-title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 24px 32px;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.52));
}

.carousel-btn {
  position: absolute;
  top: 318px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  padding: 0;
  border: 0;
  color: #1c2630;
  background: transparent;
  cursor: pointer;
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

.carousel-btn::before {
  width: 44px;
  height: 44px;
  content: "";
  border-top: 7px solid currentColor;
  border-left: 7px solid currentColor;
}

.carousel-btn.prev::before {
  transform: rotate(-45deg);
}

.carousel-btn.next::before {
  transform: rotate(135deg);
}

.account-section {
  width: min(960px, calc(100% - 64px));
  margin: 150px auto 0;
}

.account-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  column-gap: 70px;
  width: 960px;
  max-width: 100%;
  margin-top: 120px;
}

.account-avatar {
  width: 380px;
  height: 380px;
  overflow: hidden;
}

.account-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-name {
  margin: 10px 0 46px;
  color: var(--dark);
  font-family: Impact, Anton, "Arial Black", sans-serif;
  font-size: 88px;
  line-height: 1.2;
}

.bili-button,
.afd-button {
  display: flex;
  align-items: center;
  color: #fff;
}

.bili-button {
  gap: 44px;
  width: 500px;
  height: 180px;
  padding: 28px 36px;
  background: var(--bili);
  font-family: Impact, Anton, "Arial Black", sans-serif;
  font-size: 44px;
}

.bili-mark {
  width: 124px;
  height: 124px;
  flex: 0 0 auto;
  object-fit: contain;
}

.links-section {
  width: 640px;
  max-width: calc(100% - 64px);
  margin: 170px auto 0;
  padding-bottom: 120px;
}

.afd-button {
  gap: 70px;
  width: 540px;
  height: 190px;
  margin: 72px auto 0;
  padding: 18px 34px;
  background: var(--afd);
  font-size: 44px;
  font-weight: 500;
}

.afd-mark {
  width: 150px;
  height: 150px;
}

.site-footer {
  display: flex;
  min-height: 96px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #cdcdcd;
  background: var(--dark);
  font-size: 18px;
}

.footer-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.copyright {
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}

.subpage {
  padding-top: 92px;
}

.about-page {
  background: #fff;
}

.about-hero {
  position: relative;
  min-height: auto;
  padding-top: 0;
}

.about-hero-img {
  width: 100%;
  margin: 0 auto;
}

.about-hero-img img {
  width: 100%;
  height: min(760px, 50vw);
  object-fit: cover;
}

.about-side-text {
  display: none;
}

.ffcr-logo {
  display: none;
}

.about-summary {
  width: min(1200px, calc(100% - 64px));
  margin: 180px auto 0;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.55;
  text-align: center;
}

.dream-section {
  display: grid;
  grid-template-columns: 760px 1fr;
  gap: 150px;
  align-items: center;
  width: min(1700px, calc(100% - 64px));
  margin: 240px auto 180px;
}

.dream-section img {
  width: 760px;
}

.dream-text h1 {
  margin: 0 0 120px;
  font-size: 64px;
  line-height: 1.1;
}

.dream-text p {
  margin: 0 0 34px;
  color: var(--dark);
  font-size: 38px;
  line-height: 1.55;
}

.about-intro {
  margin-bottom: 180px;
}

.members-page {
  background: #f4f4f6;
}

.members-title {
  margin: 120px 0 120px;
  font-size: 76px;
  font-weight: 500;
  text-align: center;
}

.member-list {
  display: grid;
  gap: 150px;
  width: min(1700px, calc(100% - 64px));
  margin: 0 auto;
}

.member-card {
  display: grid;
  grid-template-columns: 500px 1fr;
  align-items: center;
  min-height: 360px;
  background: #fff;
}

.member-card img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  align-self: end;
}

.member-copy {
  padding: 56px 80px;
}

.member-copy h2 {
  margin: 0 0 24px;
  font-size: 44px;
}

.member-copy h3 {
  margin: 0 0 36px;
  font-size: 30px;
}

.member-copy p {
  margin: 0;
  max-width: 900px;
  font-size: 28px;
  line-height: 1.65;
}

.imagination {
  margin-top: 120px;
  padding: 88px 0 180px;
  background: #fff;
}

.imagination-inner {
  width: min(1700px, calc(100% - 64px));
  margin: 0 auto;
}

.imagination-title {
  margin: 0;
  font-family: Impact, Anton, "Arial Black", sans-serif;
  font-size: 78px;
}

.imagination-subtitle {
  margin: 0 0 86px;
  font-size: 46px;
  font-weight: 700;
}

.outfit-list {
  display: grid;
  gap: 78px;
}

.outfit-item {
  display: grid;
  grid-template-columns: 860px 1fr;
  gap: 200px;
  align-items: start;
}

.outfit-item img {
  width: 860px;
  height: 480px;
  object-fit: cover;
}

.outfit-item h2 {
  margin: 0 0 48px;
  font-size: 42px;
  font-weight: 500;
}

.outfit-item p {
  margin: 0;
  font-size: 28px;
}

.simple-page {
  min-height: calc(100vh - 68px);
  padding: 150px 24px 96px;
  text-align: center;
  background: #fff;
}

.simple-page h1 {
  margin: 0 0 24px;
  font-size: 42px;
}

.simple-page p {
  width: min(760px, 100%);
  margin: 0 auto 16px;
  color: var(--dark);
  font-size: 20px;
  line-height: 1.7;
}

.faq-page {
  background: #f4f4f4 url("../assets/faq_background.jpg") center top / cover fixed no-repeat;
}

.faq-panel {
  width: min(1800px, calc(100% - 96px));
  margin: 0 auto;
  padding: 95px 0 120px;
  background: transparent;
}

.faq-heading {
  margin: 0 0 90px;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 76px;
}

.faq-item {
  text-align: left;
}

.faq-item h2,
.faq-item p {
  margin: 0;
  line-height: 1.55;
}

.faq-item h2 {
  font-size: 36px;
  font-weight: 400;
}

.faq-item p {
  width: min(1680px, 100%);
  margin-top: 22px;
  padding-left: 58px;
  font-size: 32px;
  font-weight: 300;
}

.admin-page {
  min-height: 100vh;
  padding: 96px 24px;
  background: #f4f4f6;
}

.admin-shell {
  width: min(960px, 100%);
  margin: 0 auto;
}

.login-shell {
  width: min(560px, 100%);
  margin: 0 auto;
  padding: 44px;
  background: #fff;
  border: 1px solid #ddd;
}

.login-shell h1 {
  margin: 0 0 8px;
  font-size: 38px;
}

.login-shell > p {
  margin: 0 0 28px;
  color: var(--dark);
}

.login-form {
  display: grid;
  gap: 18px;
}

.login-form label {
  display: grid;
  gap: 8px;
  color: var(--dark);
}

.login-form input {
  height: 46px;
  padding: 0 12px;
  border: 1px solid #bbb;
  font: inherit;
}

.captcha-row {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 12px;
}

.captcha-button {
  height: 78px;
  padding: 0;
  border: 1px solid #bbb;
  background: #fff;
  cursor: pointer;
}

.captcha-button img {
  width: 100%;
  height: 100%;
}

.admin-shell h1 {
  margin: 0 0 8px;
  font-size: 38px;
}

.admin-shell > p {
  margin: 0 0 28px;
  color: var(--dark);
}

.admin-actions {
  display: flex;
  gap: 12px;
  margin: 24px 0;
}

.admin-button {
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--dark);
  background: #fff;
  cursor: pointer;
  font: inherit;
}

.admin-button.primary {
  color: #fff;
  background: var(--dark);
}

.slide-editor {
  display: grid;
  gap: 16px;
}

.slide-form {
  display: grid;
  grid-template-columns: 140px 1fr 44px;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: #fff;
  border: 1px solid #ddd;
}

.slide-form img {
  width: 140px;
  height: 78px;
  object-fit: cover;
  background: #eee;
}

.slide-fields {
  display: grid;
  gap: 8px;
}

.slide-fields label {
  display: grid;
  gap: 4px;
  color: var(--dark);
  font-size: 13px;
}

.slide-fields input {
  height: 36px;
  padding: 0 10px;
  border: 1px solid #bbb;
  font: inherit;
}

.remove-slide {
  width: 44px;
  height: 44px;
  border: 0;
  color: #fff;
  background: #222;
  cursor: pointer;
  font-size: 24px;
}

.admin-status {
  min-height: 24px;
  color: var(--dark);
}

@media (max-width: 900px) {
  .site-nav {
    height: 52px;
  }

  .nav-inner {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    justify-content: stretch;
    gap: 0;
    overflow: visible;
    max-width: 100%;
    padding: 0 8px;
    font-size: clamp(11px, 2.25vw, 13px);
  }

  .nav-link.active::after {
    bottom: -17px;
    width: 42px;
    height: 3px;
  }

  .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    text-align: center;
    white-space: nowrap;
  }

  .container,
  .account-section,
  .links-section,
  .member-list,
  .imagination-inner,
  .dream-section,
  .faq-panel {
    width: min(100% - 32px, 720px);
  }

  .home-hero {
    min-height: 100vh;
    padding-top: min(58vh, 460px);
  }

  .home-fixed-bg {
    background-position: center top;
    background-size: cover;
  }

  .home-content {
    padding-bottom: 56px;
  }

  .home-intro {
    transform: translateY(14px);
  }

  .intro-card {
    min-height: auto;
    padding: 26px 18px 30px;
    border-width: 2px;
  }

  .intro-title {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding-top: 0;
  }

  .intro-title strong {
    font-size: clamp(48px, 14vw, 76px);
  }

  .intro-title span {
    font-size: clamp(23px, 7vw, 34px);
  }

  .intro-copy {
    margin-top: 18px;
    padding: 0;
    font-size: clamp(17px, 4.5vw, 23px);
    line-height: 1.65;
    white-space: normal;
  }

  .section-title {
    width: min(100%, 300px);
    height: 72px;
    font-size: 24px;
  }

  .section-title.outlined {
    border-width: 2px;
  }

  .news-section {
    padding-top: 96px;
  }

  .carousel-shell {
    width: calc(100% - 16px);
    height: auto;
    margin-top: 28px;
    padding: 0 44px;
  }

  .carousel-track {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .slide-preview {
    display: none;
  }

  .slide-main {
    inset: 0 auto auto 0;
    width: 100%;
    max-width: 100%;
  }

  .slide-title {
    padding: 12px 14px;
    font-size: 16px;
  }

  .carousel-btn {
    top: 50%;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
  }

  .carousel-btn.prev {
    left: 0;
  }

  .carousel-btn.next {
    right: 0;
  }

  .carousel-btn::before {
    width: 18px;
    height: 18px;
    border-top-width: 4px;
    border-left-width: 4px;
  }

  .account-section {
    margin-top: 86px;
  }

  .account-card {
    grid-template-columns: 124px 1fr;
    align-items: center;
    column-gap: 20px;
    width: 100%;
    margin-top: 36px;
  }

  .account-avatar {
    width: 124px;
    height: 124px;
  }

  .account-name {
    margin: 0 0 14px;
    font-size: 42px;
  }

  .bili-button {
    gap: 14px;
    width: min(100%, 230px);
    height: 72px;
    padding: 12px 16px;
    font-size: 20px;
  }

  .bili-mark {
    width: 48px;
    height: 48px;
  }

  .links-section {
    margin-top: 78px;
    padding-bottom: 52px;
  }

  .afd-button {
    gap: 22px;
    width: min(100%, 260px);
    height: 82px;
    margin-top: 32px;
    padding: 12px 18px;
    font-size: 22px;
  }

  .afd-mark {
    width: 56px;
    height: 56px;
  }

  .site-footer {
    min-height: 72px;
    padding: 12px 16px;
    font-size: 12px;
    text-align: center;
  }

  .footer-line {
    flex-wrap: wrap;
    justify-content: center;
  }

  .subpage {
    padding-top: 52px;
  }

  .about-hero-img img {
    height: min(62vw, 420px);
  }

  .about-summary {
    width: min(100% - 32px, 680px);
    margin-top: 64px;
    font-size: 20px;
  }

  .dream-section {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 72px auto 70px;
  }

  .dream-section img {
    width: 100%;
  }

  .dream-text h1 {
    margin-bottom: 20px;
    font-size: 32px;
  }

  .dream-text p {
    font-size: 19px;
    line-height: 1.7;
  }

  .about-intro {
    margin-bottom: 70px;
  }

  .members-title {
    margin: 54px 0 46px;
    font-size: 36px;
  }

  .member-list {
    gap: 46px;
  }

  .member-card {
    grid-template-columns: 150px 1fr;
    align-items: stretch;
    min-height: 0;
  }

  .member-card img {
    width: 150px;
    height: 100%;
    min-height: 180px;
  }

  .member-copy {
    padding: 22px 20px;
  }

  .member-copy h2 {
    margin-bottom: 8px;
    font-size: 22px;
  }

  .member-copy h3 {
    margin-bottom: 14px;
    font-size: 15px;
  }

  .member-copy p {
    max-width: none;
    font-size: 14px;
    line-height: 1.65;
  }

  .imagination {
    margin-top: 60px;
    padding: 44px 0 70px;
  }

  .imagination-title {
    font-size: 42px;
  }

  .imagination-subtitle {
    margin-bottom: 34px;
    font-size: 24px;
  }

  .outfit-list {
    gap: 34px;
  }

  .outfit-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .outfit-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .outfit-item h2 {
    margin-bottom: 10px;
    font-size: 22px;
  }

  .outfit-item p {
    font-size: 15px;
    line-height: 1.6;
  }

  .faq-page {
    background-attachment: scroll;
  }

  .faq-panel {
    padding: 48px 0 64px;
  }

  .faq-heading {
    margin-bottom: 40px;
    font-size: 30px;
  }

  .faq-list {
    gap: 34px;
  }

  .faq-item h2 {
    font-size: 19px;
    line-height: 1.55;
  }

  .faq-item p {
    margin-top: 10px;
    padding-left: 0;
    font-size: 16px;
    line-height: 1.75;
  }

  .simple-page {
    padding: 110px 20px 70px;
  }

  .simple-page h1 {
    font-size: 34px;
  }

  .simple-page p {
    font-size: 17px;
  }

  .admin-page {
    padding: 72px 16px 48px;
  }

  .admin-actions {
    flex-wrap: wrap;
  }

  .slide-form {
    grid-template-columns: 110px 1fr 38px;
  }

  .slide-form img {
    width: 110px;
    height: 62px;
  }
}

@media (max-width: 560px) {
  .site-nav {
    height: 46px;
  }

  .nav-inner {
    padding: 0 4px;
    font-size: clamp(11px, 2.35vw, 10px);
  }

  .nav-link.active::after {
    bottom: -14px;
    width: 34px;
    height: 3px;
  }

  .container,
  .account-section,
  .links-section,
  .member-list,
  .imagination-inner,
  .dream-section,
  .faq-panel {
    width: calc(100% - 28px);
  }

  .home-hero {
    min-height: 100svh;
    padding-top: min(52svh, 360px);
  }

  .home-fixed-bg {
    background-position: center top;
  }

  .intro-card {
    padding: 22px 14px 24px;
  }

  .intro-title strong {
    font-size: clamp(44px, 13.5vw, 58px);
  }

  .intro-title span {
    font-size: clamp(22px, 6.4vw, 27px);
  }

  .intro-copy {
    font-size: clamp(15px, 4.2vw, 18px);
  }

  .section-title {
    width: min(100%, 236px);
    height: 58px;
    font-size: 20px;
  }

  .news-section {
    padding-top: 74px;
  }

  .carousel-shell {
    width: 100%;
    margin-top: 22px;
    padding: 0 36px;
  }

  .slide-title {
    padding: 9px 10px;
    font-size: 13px;
  }

  .carousel-btn {
    width: 34px;
    height: 34px;
  }

  .carousel-btn::before {
    width: 15px;
    height: 15px;
    border-top-width: 3px;
    border-left-width: 3px;
  }

  .account-section {
    margin-top: 68px;
  }

  .account-card {
    grid-template-columns: 96px 1fr;
    column-gap: 14px;
    margin-top: 28px;
  }

  .account-avatar {
    width: 96px;
    height: 96px;
  }

  .account-name {
    margin-bottom: 10px;
    font-size: 34px;
  }

  .bili-button {
    gap: 10px;
    width: 100%;
    max-width: 204px;
    height: 58px;
    padding: 9px 12px;
    font-size: 17px;
  }

  .bili-mark {
    width: 40px;
    height: 40px;
  }

  .links-section {
    margin-top: 64px;
    padding-bottom: 44px;
  }

  .afd-button {
    width: 210px;
    height: 66px;
    gap: 16px;
    margin-top: 26px;
    padding: 9px 14px;
    font-size: 18px;
  }

  .afd-mark {
    width: 46px;
    height: 46px;
  }

  .subpage {
    padding-top: 46px;
  }

  .about-hero-img img {
    height: 56vw;
  }

  .about-summary {
    width: calc(100% - 28px);
    margin-top: 44px;
    font-size: 17px;
  }

  .dream-section {
    margin: 54px auto 52px;
  }

  .dream-text h1 {
    font-size: 26px;
  }

  .dream-text p {
    font-size: 16px;
  }

  .members-title {
    margin: 42px 0 34px;
    font-size: 30px;
  }

  .member-list {
    gap: 28px;
  }

  .member-card {
    grid-template-columns: 1fr;
  }

  .member-card img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .member-copy {
    padding: 20px 18px 22px;
  }

  .member-copy h2 {
    font-size: 20px;
  }

  .member-copy h3 {
    font-size: 14px;
  }

  .member-copy p {
    font-size: 14px;
  }

  .imagination-title {
    font-size: 36px;
  }

  .imagination-subtitle {
    font-size: 20px;
  }

  .faq-panel {
    padding: 38px 0 52px;
  }

  .faq-heading {
    font-size: 26px;
  }

  .faq-item h2 {
    font-size: 17px;
  }

  .faq-item p {
    font-size: 15px;
  }

  .login-shell {
    padding: 28px 20px;
  }

  .captcha-row {
    grid-template-columns: 1fr;
  }

  .captcha-button {
    width: 190px;
  }

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

@media (max-width: 380px) {
  .nav-inner {
    padding: 0 2px;
    font-size: 7px;
  }

  .nav-link.active::after {
    width: 28px;
  }
}
