/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 12.6pt;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: 'Inter', sans-serif;
  color: #333;
  background-color: #e8f5fa;
  background-image: linear-gradient(to bottom, #f1eff8 0%, #eaf5fb 42%, #d7f3ff 100%);
  background-position: center top;
  background-size: 100% 100%;
  background-attachment: scroll;
  background-repeat: no-repeat;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Fixed background artwork */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background: url('../images/site-background.svg') center / cover no-repeat;
  opacity: 0.92;
  transform: scale(1.015) translateY(var(--star-offset, 0px));
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    opacity: 0.92;
    transform: none;
  }
}

a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.25s ease;
}

a:hover {
  text-decoration: none;
}

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3 {
  font-family: 'Sen', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

/* ===== Shared Neumorphism ===== */
.neu-page {
  --neu-surface: rgba(235, 246, 251, 0.9);
  --neu-surface-strong: #eaf5fa;
  --neu-glass: rgba(234, 245, 250, 0.68);
  --neu-light: rgba(255, 255, 255, 0.48);
  --neu-shadow: rgba(91, 139, 164, 0.14);
  --neu-accent: #78b9db;
}

.about-page-body {
  --neu-light: rgba(255, 255, 255, 0.92);
  --neu-shadow: rgba(91, 139, 164, 0.24);
}

.neu-page .site-header {
  width: auto;
  margin-right: 0;
  margin-left: 0;
  border-bottom: 0;
}

.neu-page .nav-pills a {
  border: 0;
  background: rgba(241, 239, 248, 0.88);
  box-shadow: -0.45rem -0.45rem 0.9rem var(--neu-light), 0.45rem 0.45rem 0.9rem var(--neu-shadow);
  transition: color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.neu-page .nav-pills a:hover {
  color: #287da9;
  background: #f1eff8;
  box-shadow: -0.3rem -0.3rem 0.65rem var(--neu-light), 0.3rem 0.3rem 0.65rem var(--neu-shadow);
  transform: translateY(-1px);
}

.neu-page .nav-pills a:active,
.neu-page .nav-pills a.active {
  color: #287da9;
  background: #ece9f5;
  box-shadow: inset 0.25rem 0.25rem 0.55rem rgba(91, 139, 164, 0.18), inset -0.25rem -0.25rem 0.55rem rgba(255, 255, 255, 0.62);
}

.neu-page .lang-toggle,
.neu-page .back-to-top,
.neu-page .btn-pill,
.neu-page .showcase-source,
.neu-page .social-icons a {
  border: 0;
  background: var(--neu-surface-strong);
  box-shadow: -0.4rem -0.4rem 0.8rem var(--neu-light), 0.4rem 0.4rem 0.8rem var(--neu-shadow);
}

.neu-page .lang-toggle,
.neu-page .back-to-top {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.neu-page .btn-pill:hover,
.neu-page .showcase-source:hover,
.neu-page .social-icons a:hover {
  color: #287da9;
  background: var(--neu-surface-strong);
  box-shadow: -0.3rem -0.3rem 0.65rem var(--neu-light), 0.3rem 0.3rem 0.65rem var(--neu-shadow);
  transform: translateY(-2px);
}

.neu-page .btn-pill:active,
.neu-page .showcase-source:active,
.neu-page .social-icons a:active {
  box-shadow: inset 0.25rem 0.25rem 0.55rem rgba(91, 139, 164, 0.18), inset -0.25rem -0.25rem 0.55rem rgba(255, 255, 255, 0.62);
  transform: translateY(0);
}

/* ===== Layout ===== */
.site-wrapper {
  position: relative;
  z-index: 2;
  max-width: 85rem;
  margin: 0 auto;
  padding: 4rem 3rem;
}

section {
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Header ===== */
.site-header {
  text-align: center;
  position: relative;
  z-index: 3;
  width: 100vw;
  background: transparent;
  padding: 1.5rem 0 1rem;
  margin: -4rem calc(50% - 50vw) 3rem;
  padding-left: 3rem;
  padding-right: 3rem;
  border-bottom: 1px solid rgba(75, 148, 189, 0.2);
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(158, 226, 255, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.25s ease, background-color 0.25s ease;
  z-index: 99;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #fff;
  transform: scale(1.1);
}

/* Language toggle */
.lang-toggle {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: auto;
  min-width: 3rem;
  height: 3rem;
  padding: 0 0.75rem;
  border-radius: 1.5rem;
  background: rgba(158, 226, 255, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.6);
  font-family: 'Sen', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.lang-toggle:hover {
  background: #fff;
  transform: scale(1.1);
}

/* ===== Navigation ===== */
.nav-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0;
}

.nav-pills a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 2.5rem;
  background: rgba(255, 255, 255, 0.32);
  color: rgba(0, 0, 0, 0.78);
  text-decoration: none;
  font-size: 1em;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.nav-pills a:hover {
  background-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0.4rem 1rem rgba(75, 148, 189, 0.1);
  transform: scale(1.06);
}

.nav-pills a.active {
  background-color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  box-shadow: 0 0 0.5rem rgba(158, 226, 255, 0.5);
}

.nav-pills a svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/* ===== Home Section — 3 Column Card ===== */
.home-page,
.price-page-body {
  --neu-surface: rgba(235, 246, 251, 0.9);
  --neu-surface-strong: #eaf5fa;
  --neu-glass: rgba(234, 245, 250, 0.68);
  --neu-light: rgba(255, 255, 255, 0.92);
  --neu-shadow: rgba(91, 139, 164, 0.24);
  --neu-accent: #78b9db;
}

.price-page-body {
  --neu-light: rgba(255, 255, 255, 0.48);
  --neu-shadow: rgba(91, 139, 164, 0.14);
}

.home-page .site-header {
  width: auto;
  margin-right: 0;
  margin-left: 0;
  border-bottom: 0;
}

.home-page .nav-pills a {
  border: 0;
  background: rgba(241, 239, 248, 0.88);
  box-shadow: -0.45rem -0.45rem 0.9rem var(--neu-light), 0.45rem 0.45rem 0.9rem var(--neu-shadow);
  transition: color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-page .nav-pills a:hover {
  background: #f1eff8;
  box-shadow: -0.3rem -0.3rem 0.65rem var(--neu-light), 0.3rem 0.3rem 0.65rem var(--neu-shadow);
  transform: translateY(-1px);
}

.home-page .nav-pills a:active,
.home-page .nav-pills a.active {
  color: #287da9;
  background: #ece9f5;
  box-shadow: inset 0.25rem 0.25rem 0.55rem rgba(91, 139, 164, 0.2), inset -0.25rem -0.25rem 0.55rem var(--neu-light);
}

.home-card {
  border: 0;
  border-radius: 0;
  padding: 3rem;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: clamp(2rem, 3vw, 3rem);
}

.home-card .profile-col {
  text-align: center;
  align-self: center;
}

.home-info-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: var(--neu-surface-strong);
  box-shadow: -0.7rem -0.7rem 1.4rem var(--neu-light), 0.7rem 0.7rem 1.4rem var(--neu-shadow);
}

.home-info-column {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.home-info-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 1.5rem;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-info-group:first-child {
  padding-bottom: 1.5rem;
}

.home-info-group + .home-info-group {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(75, 148, 189, 0.16);
}

.home-info-column + .home-info-column {
  border-left: 1px solid rgba(75, 148, 189, 0.16);
}

.home-card .section-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.home-card .section-title::before {
  content: '';
  flex: 0 0 auto;
  width: 0.2rem;
  height: 1.15em;
  border-radius: 1rem;
  background: #78b9db;
}

.home-card .description {
  margin: 0 0 1.25rem;
}

.home-card .feature-list {
  margin: 0 0 1.25rem;
}

.home-status {
  margin: 0 0 0.8rem;
  color: #287da9;
  font-family: 'Sen', sans-serif;
  font-size: 0.82em;
  font-weight: 700;
  text-transform: uppercase;
}

.profile-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 0;
  box-shadow: -0.8rem -0.8rem 1.5rem var(--neu-light), 0.8rem 0.8rem 1.5rem var(--neu-shadow);
  object-fit: cover;
}

/* Social icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  border: 0;
  background: var(--neu-surface-strong);
  box-shadow: -0.35rem -0.35rem 0.7rem var(--neu-light), 0.35rem 0.35rem 0.7rem var(--neu-shadow);
  text-decoration: none;
  transition: color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
  color: #287da9;
  transform: translateY(-2px);
}

.social-icons a:active {
  box-shadow: inset 0.22rem 0.22rem 0.5rem rgba(91, 139, 164, 0.22), inset -0.22rem -0.22rem 0.5rem var(--neu-light);
  transform: translateY(0);
}

.social-icons a svg {
  width: 60%;
  height: 60%;
  fill: rgba(0, 0, 0, 0.78);
}

/* Pill button (for About me, Details, etc.) */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 2.5rem;
  background: rgba(158, 226, 255, 0.18);
  color: rgba(0, 0, 0, 0.78);
  text-decoration: none;
  font-size: 1em;
  transition: transform 0.25s ease, background-color 0.25s ease;
  margin-top: 1rem;
}

.btn-pill:hover {
  background-color: #fff;
  transform: scale(1.06);
}

.btn-pill svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.home-card .btn-pill {
  justify-content: space-between;
  min-width: 10.5rem;
  min-height: 2.75rem;
  margin-top: auto;
  border: 0;
  background: var(--neu-surface-strong);
  box-shadow: -0.4rem -0.4rem 0.8rem var(--neu-light), 0.4rem 0.4rem 0.8rem var(--neu-shadow);
  font-family: 'Sen', sans-serif;
  font-weight: 700;
}

.home-card .btn-pill:hover {
  color: #287da9;
  background: var(--neu-surface-strong);
  box-shadow: -0.3rem -0.3rem 0.65rem var(--neu-light), 0.3rem 0.3rem 0.65rem var(--neu-shadow);
  transform: translateY(-2px);
}

.home-card .btn-pill:active {
  box-shadow: inset 0.25rem 0.25rem 0.55rem rgba(91, 139, 164, 0.22), inset -0.25rem -0.25rem 0.55rem var(--neu-light);
  transform: translateY(0);
}

.home-page .lang-toggle,
.home-page .back-to-top {
  border: 0;
  background: var(--neu-surface-strong);
  box-shadow: -0.4rem -0.4rem 0.8rem var(--neu-light), 0.4rem 0.4rem 0.8rem var(--neu-shadow);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* List items with + icon */
.feature-list {
  margin: 0.75rem 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.64);
}

.feature-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: rgba(0, 0, 0, 0.18);
  font-weight: 700;
}

/* Check list */
.check-list li {
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.64);
}

.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: rgba(0, 0, 0, 0.18);
}

/* Dividers */
.divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  margin: 1.5rem 0;
}

.divider-small {
  border: none;
  width: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin: 1.5rem 0;
}

/* ===== Section Titles ===== */
.section-title {
  font-family: 'Sen', sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  letter-spacing: -0.025rem;
  margin-bottom: 0.75rem;
}

.section-title-center {
  font-family: 'Sen', sans-serif;
  font-size: 1.625em;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1rem;
}

.subsection-title {
  font-family: 'Sen', sans-serif;
  font-size: 1.625em;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.description {
  color: rgba(0, 0, 0, 0.64);
  line-height: 1.75;
}

/* ===== About Section ===== */
.about-page,
.achievements-section,
.sns-section {
  max-width: 72rem;
  margin-right: auto;
  margin-left: auto;
}

.about-connected-panel {
  max-width: 54rem;
  margin: 0 auto 3rem;
  border-radius: 1.5rem;
  background: var(--neu-glass);
  box-shadow: -0.7rem -0.7rem 1.4rem var(--neu-light), 0.7rem 0.7rem 1.4rem var(--neu-shadow);
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
}

.about-intro {
  display: grid;
  grid-template-columns: 16rem minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  max-width: 54rem;
  margin: 0 auto 2.5rem;
  padding: 2rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 1.25rem 3rem rgba(75, 148, 189, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
}

.about-page-body .about-intro {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.about-avatar {
  width: 16rem;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 0.75rem 2rem rgba(75, 148, 189, 0.18);
  object-fit: cover;
  margin: 0;
}

.about-page-body .about-avatar {
  border: 0;
  box-shadow: -0.65rem -0.65rem 1.3rem var(--neu-light), 0.65rem 0.65rem 1.3rem var(--neu-shadow);
}

.about-copy .section-title-center {
  margin-bottom: 0.75rem;
  text-align: left;
}

.about-heading-mark {
  display: block;
  width: 2.5rem;
  height: 0.2rem;
  margin-bottom: 0.85rem;
  border-radius: 1rem;
  background: #78b9db;
}

.about-text {
  color: rgba(0, 0, 0, 0.64);
  font-size: 1em;
  line-height: 1.75;
  text-shadow: none;
}

.about-section-title {
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  font-style: normal;
}

.about-section-title::before {
  content: '';
  position: absolute;
  top: 0.12em;
  bottom: 0.12em;
  left: 0;
  width: 0.2rem;
  border-radius: 1rem;
  background: #78b9db;
}

.achievements-section .about-section-title {
  max-width: 54rem;
  margin-right: auto;
  margin-left: auto;
}

.achievement-list {
  position: relative;
  max-width: 54rem;
  margin: 0 auto;
}

.achievement-list::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: calc(6rem - 0.12rem);
  width: 0.24rem;
  border-radius: 1rem;
  background: rgba(120, 185, 219, 0.2);
  box-shadow: inset 0.08rem 0 0.16rem rgba(75, 125, 153, 0.32), inset -0.08rem 0 0.16rem rgba(255, 255, 255, 0.68);
}

.about-page-body .achievement-list {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-connected-panel .about-page {
  margin: 0;
}

.about-connected-panel .about-intro {
  max-width: none;
  margin: 0;
}

.about-connected-panel .achievements-section {
  max-width: none;
  margin: 0;
  padding: 2rem 2.5rem 2.5rem;
  border-top: 1px solid rgba(75, 148, 189, 0.16);
}

.about-connected-panel .achievements-section .about-section-title {
  max-width: none;
}

.achievement-entry {
  display: grid;
  grid-template-columns: 6rem minmax(0, 1fr);
  min-height: 6rem;
}

.achievement-year {
  padding: 1.6rem 1.5rem 1.6rem 0;
  color: rgba(0, 0, 0, 0.52);
  font-family: 'Sen', sans-serif;
  font-size: 0.9em;
  font-weight: 700;
  text-align: right;
}

.achievement-detail {
  position: relative;
  isolation: isolate;
  display: flex;
  min-width: 0;
  align-items: center;
  padding: 1.35rem 0 1.35rem 2rem;
  border-left: 0;
}

.achievement-detail::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -0.5rem;
  z-index: 1;
  width: 0.9rem;
  height: 0.9rem;
  border: 0;
  border-radius: 50%;
  background: #dceff7;
  box-shadow: inset 0.18rem 0.18rem 0.35rem rgba(75, 125, 153, 0.34), inset -0.18rem -0.18rem 0.35rem rgba(255, 255, 255, 0.72);
  transform: translateY(-50%);
}

.achievement-link {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.65rem;
  color: rgba(0, 0, 0, 0.8);
  font-family: 'Sen', sans-serif;
  font-size: 1.15em;
  line-height: 1.45;
  text-decoration-color: rgba(75, 148, 189, 0.4);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3rem;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.achievement-link:hover {
  color: #2879a8;
  text-decoration-color: currentColor;
}

.achievement-link svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  fill: currentColor;
}

/* SNS Grid */
.sns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.sns-item .social-icons {
  margin: 0 0 0.75rem;
}

.sns-image {
  aspect-ratio: 4 / 5;
  border-radius: 0.5rem;
  box-shadow: 0 0.75rem 2rem rgba(75, 148, 189, 0.12);
  overflow: hidden;
}

.sns-grid .sns-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.sns-grid .sns-item img:hover {
  transform: scale(1.035);
}

/* ===== Showcase Section ===== */
.showcase-page {
  max-width: 76rem;
  margin: 0 auto 3rem;
  animation: fadeInUp 0.6s ease both;
}

.showcase-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.showcase-heading-mark,
.price-heading-mark {
  width: 2.5rem;
  height: 0.2rem;
  margin-bottom: 0.85rem;
  border-radius: 1rem;
  background: #78b9db;
}

.showcase-heading .section-title-center {
  margin-bottom: 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.showcase-grid iframe,
.showcase-grid video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border: none;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.42);
  box-shadow:
    0 0 0 1px rgba(75, 148, 189, 0.14),
    0 0.85rem 2.25rem rgba(42, 100, 132, 0.24);
}

.showcase-page-body .showcase-item {
  min-width: 0;
  padding: 0.65rem 0.65rem 1rem;
  border-radius: 1.25rem;
  background: var(--neu-surface-strong);
  box-shadow: -0.65rem -0.65rem 1.3rem var(--neu-light), 0.65rem 0.65rem 1.3rem var(--neu-shadow);
}

.showcase-page-body .showcase-grid video {
  border-radius: 0.8rem;
  background: #000;
  box-shadow: inset 0.25rem 0.25rem 0.55rem rgba(31, 56, 70, 0.16);
}

.x-showcase {
  margin-top: 3.5rem;
}

.showcase-subheading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.75rem;
}

.showcase-subheading h3 {
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  font-size: 1.45em;
  letter-spacing: 0;
}

.x-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 1.5rem;
}

.x-showcase-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 1.5rem;
}

.x-showcase-card {
  display: flex;
  min-width: 0;
  min-height: 9rem;
  justify-content: center;
  padding: 0.75rem;
  border-radius: 1.25rem;
  background: var(--neu-glass);
  box-shadow: -0.65rem -0.65rem 1.3rem var(--neu-light), 0.65rem 0.65rem 1.3rem var(--neu-shadow);
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
}

.x-showcase-card .twitter-tweet,
.x-showcase-card iframe {
  width: 100% !important;
  max-width: 550px !important;
  margin: 0 !important;
}

.x-showcase-card > blockquote > a {
  align-self: center;
  color: #397fa7;
  font-family: 'Sen', sans-serif;
  font-size: 0.85em;
}

.showcase-source {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 0.35rem;
  min-height: 2rem;
  margin: 0.7rem auto 0;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(75, 148, 189, 0.18);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 0.35rem 0.9rem rgba(75, 148, 189, 0.08);
  color: rgba(0, 0, 0, 0.72);
  font-family: 'Sen', sans-serif;
  font-size: 0.78em;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.showcase-source:hover {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0.5rem 1.1rem rgba(75, 148, 189, 0.14);
  color: rgba(0, 0, 0, 0.86);
  transform: translateY(-2px);
}

.showcase-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(75, 148, 189, 0.16);
  text-align: center;
}

.showcase-more p {
  margin: 0;
  color: rgba(0, 0, 0, 0.64);
  font-family: 'Sen', sans-serif;
  font-size: 1em;
}

.showcase-more .social-icons {
  margin-top: 0;
}

.showcase-more .social-icons a {
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 0.4rem 1rem rgba(75, 148, 189, 0.08);
}

.showcase-more .social-icons a:hover {
  background: rgba(255, 255, 255, 0.82);
}

.showcase-page-body .showcase-more .social-icons a {
  border: 0;
  background: var(--neu-surface-strong);
  box-shadow: -0.4rem -0.4rem 0.8rem var(--neu-light), 0.4rem 0.4rem 0.8rem var(--neu-shadow);
}

.showcase-page-body .showcase-more .social-icons a:hover {
  color: #287da9;
  background: var(--neu-surface-strong);
  box-shadow: -0.3rem -0.3rem 0.65rem var(--neu-light), 0.3rem 0.3rem 0.65rem var(--neu-shadow);
  transform: translateY(-2px);
}

.showcase-page-body .showcase-more .social-icons a:active {
  box-shadow: inset 0.25rem 0.25rem 0.55rem rgba(91, 139, 164, 0.18), inset -0.25rem -0.25rem 0.55rem rgba(255, 255, 255, 0.62);
  transform: translateY(0);
}

.showcase-footer {
  text-align: center;
  color: rgba(0, 0, 0, 0.64);
  font-size: 1.125em;
  margin-bottom: 1rem;
}

/* ===== Price Section ===== */
.price-page-body .site-header {
  width: auto;
  margin-right: 0;
  margin-left: 0;
  border-bottom: 0;
}

.price-page-body .nav-pills a {
  border: 0;
  background: rgba(241, 239, 248, 0.88);
  box-shadow: -0.45rem -0.45rem 0.9rem var(--neu-light), 0.45rem 0.45rem 0.9rem var(--neu-shadow);
  transition: color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.price-page-body .nav-pills a:hover {
  background: #f1eff8;
  box-shadow: -0.3rem -0.3rem 0.65rem var(--neu-light), 0.3rem 0.3rem 0.65rem var(--neu-shadow);
  transform: translateY(-1px);
}

.price-page-body .nav-pills a:active,
.price-page-body .nav-pills a.active {
  color: #287da9;
  background: #ece9f5;
  box-shadow: inset 0.25rem 0.25rem 0.55rem rgba(91, 139, 164, 0.2), inset -0.25rem -0.25rem 0.55rem var(--neu-light);
}

.price-page {
  max-width: 76rem;
  margin-right: auto;
  margin-left: auto;
}

.price-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2.5rem;
}

.price-heading .section-title-center {
  margin-bottom: 0;
}

.price-heading .closed-banner {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  margin: 0.75rem 0 0;
  padding: 0.35rem 1rem;
  border: 0;
  border-radius: 2rem;
  background: var(--neu-surface-strong);
  box-shadow: inset 0.22rem 0.22rem 0.5rem rgba(91, 139, 164, 0.18), inset -0.22rem -0.22rem 0.5rem var(--neu-light);
  color: rgba(0, 0, 0, 0.58);
  font-family: 'Sen', sans-serif;
  font-size: 0.8em;
  font-weight: 700;
  letter-spacing: 0.08rem;
  text-shadow: none;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.package-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 2rem;
  border: 0;
  border-radius: 1.5rem;
  background: var(--neu-surface-strong);
  box-shadow: -0.7rem -0.7rem 1.4rem var(--neu-light), 0.7rem 0.7rem 1.4rem var(--neu-shadow);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.package-card-featured {
  background: #e5f3f9;
}

.package-title {
  font-family: 'Sen', sans-serif;
  font-size: 1.625em;
  font-weight: 400;
  text-align: left;
  margin-bottom: 1rem;
}

.package-card .package-title {
  position: relative;
  margin-bottom: 1.35rem;
  padding-left: 0.9rem;
  line-height: 1.25;
  text-wrap: balance;
}

.package-card .package-title::before {
  content: '';
  position: absolute;
  top: 0.12em;
  bottom: 0.12em;
  left: 0;
  width: 0.25rem;
  border-radius: 1rem;
  background: #75b8df;
}

.package-card .bullet-list {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.package-card .bullet-list li {
  margin-bottom: 0;
  padding-left: 1.35rem;
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.95em;
  line-height: 1.7;
}

.package-card .bullet-list li::before {
  top: 0.65em;
  background: #75b8df;
}

.bullet-list {
  margin-bottom: 1.25rem;
}

.bullet-list li {
  position: relative;
  padding-left: 1.25rem;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.64);
  font-size: 0.875em;
  margin-bottom: 0.5rem;
}

.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.4em;
  height: 0.4em;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
}

/* Tables */
.price-table {
  width: 100%;
  margin: auto 0 0;
  padding: 0.35rem 0.75rem;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 0.9rem;
  background: rgba(234, 245, 250, 0.5);
  box-shadow: inset 0.3rem 0.3rem 0.65rem rgba(91, 139, 164, 0.16), inset -0.3rem -0.3rem 0.65rem rgba(255, 255, 255, 0.78);
  text-align: center;
}

.price-table th,
.price-table td {
  font-family: 'Sen', sans-serif;
  padding: 0.65rem 0.5rem;
  font-size: 1em;
  line-height: 1.625;
}

.price-table th {
  color: #4b94bd;
  font-weight: 700;
  border-bottom: 2px solid #a5d0f0;
}

.price-table td {
  color: #4b94bd;
  border-top: 1px solid rgba(165, 208, 240, 0.37);
  font-weight: 700;
}

.package-card .price-table th:first-child,
.package-card .price-table td:first-child {
  text-align: left;
}

.package-card .price-table th:not(:first-child),
.package-card .price-table td:not(:first-child) {
  text-align: right;
}

.package-card .price-table td:nth-child(2) {
  color: #287da9;
  font-size: 1.1em;
  font-variant-numeric: tabular-nums;
}

.price-details {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) minmax(10rem, 0.52fr) minmax(15rem, 0.65fr);
  gap: 2.5rem;
  align-items: center;
  margin-top: 3rem;
  padding-top: 3rem;
}

.price-page .features-panel {
  padding: 2rem;
  border-radius: 1.5rem;
  background: var(--neu-surface-strong);
  box-shadow: -0.65rem -0.65rem 1.3rem var(--neu-light), 0.65rem 0.65rem 1.3rem var(--neu-shadow);
}

.features-panel .package-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.features-panel .package-title::before {
  content: '';
  flex: 0 0 auto;
  width: 0.2rem;
  height: 1.15em;
  border-radius: 1rem;
  background: #78b9db;
}

.features-panel .check-list {
  display: grid;
  gap: 0;
}

.features-panel .check-list li {
  min-height: 2.8rem;
  padding: 0.65rem 0 0.65rem 2rem;
  border-bottom: 1px solid rgba(75, 148, 189, 0.12);
  line-height: 1.45;
}

.features-panel .check-list li:first-child {
  border-top: 1px solid rgba(75, 148, 189, 0.12);
}

.features-panel .check-list li::before {
  top: 0.72rem;
  display: grid;
  place-items: center;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: rgba(120, 185, 219, 0.18);
  color: #287da9;
  font-size: 0.7em;
  font-weight: 700;
}

.features-panel .btn-pill {
  margin-top: 1.25rem;
}

.price-page .features-panel .btn-pill,
.price-page .showcase-source {
  border: 0;
  background: var(--neu-surface-strong);
  box-shadow: -0.4rem -0.4rem 0.8rem var(--neu-light), 0.4rem 0.4rem 0.8rem var(--neu-shadow);
}

.price-page .features-panel .btn-pill:hover,
.price-page .showcase-source:hover {
  color: #287da9;
  background: var(--neu-surface-strong);
  box-shadow: -0.3rem -0.3rem 0.65rem var(--neu-light), 0.3rem 0.3rem 0.65rem var(--neu-shadow);
  transform: translateY(-2px);
}

.price-page .features-panel .btn-pill:active,
.price-page .showcase-source:active {
  box-shadow: inset 0.25rem 0.25rem 0.55rem rgba(91, 139, 164, 0.22), inset -0.25rem -0.25rem 0.55rem var(--neu-light);
  transform: translateY(0);
}

.price-showcase {
  display: contents;
}

.price-showcase figure,
.price-video {
  min-width: 0;
}

.price-video {
  width: 100%;
  max-width: 18rem;
  justify-self: start;
}

.price-showcase figure {
  display: grid;
  width: 100%;
  place-items: center;
  align-self: center;
  justify-self: center;
}

.price-video .video-frame {
  width: 100%;
  max-width: 18rem;
  margin: 0 auto;
  padding: 0.55rem;
  border-radius: 1.25rem;
  background: var(--neu-surface-strong);
  box-shadow: -0.7rem -0.7rem 1.4rem var(--neu-light), 0.7rem 0.7rem 1.4rem var(--neu-shadow);
}

.price-video video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  border-radius: 0.75rem;
  background: #000;
  box-shadow: none;
  object-fit: contain;
}

.price-video .showcase-source {
  display: flex;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

.price-table-dark th,
.price-table-dark td {
  color: #000;
}

.price-table-dark th {
  border-bottom-color: rgba(0, 0, 0, 0.18);
}

.price-table-dark td {
  border-top-color: rgba(0, 0, 0, 0.067);
}

/* Gallery preview image */
.gallery-preview {
  width: 100%;
  aspect-ratio: 8 / 13;
  background: transparent;
  border-radius: 1rem;
  box-shadow: -0.55rem -0.55rem 1.1rem var(--neu-light), 0.55rem 0.55rem 1.1rem var(--neu-shadow);
  overflow: hidden;
}

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

.price-page-body .lang-toggle,
.price-page-body .back-to-top {
  border: 0;
  background: var(--neu-surface-strong);
  box-shadow: -0.4rem -0.4rem 0.8rem var(--neu-light), 0.4rem 0.4rem 0.8rem var(--neu-shadow);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.gallery-caption {
  text-align: center;
  font-size: 0.75em;
  color: rgba(0, 0, 0, 0.64);
  margin-top: 0.5rem;
}

/* ===== Add-ons Section ===== */
.addons-page,
.addons-details {
  max-width: 72rem;
  margin-right: auto;
  margin-left: auto;
}

.addons-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.75rem;
}

.addons-heading-mark {
  width: 2.5rem;
  height: 0.2rem;
  margin-bottom: 0.85rem;
  border-radius: 1rem;
  background: #78b9db;
}

.addons-heading .section-title-center {
  margin-bottom: 0;
}

.addons-table-wrap {
  max-width: 44rem;
  margin: 0 auto 2rem;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.11);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 1rem 2.5rem rgba(75, 148, 189, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
}

.addons-page-body .addons-table-wrap {
  border: 0;
  border-radius: 1.5rem;
  background: var(--neu-surface-strong);
  box-shadow: -0.7rem -0.7rem 1.4rem var(--neu-light), 0.7rem 0.7rem 1.4rem var(--neu-shadow);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.addons-table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  text-align: left;
}

.addons-table th,
.addons-table td {
  font-family: 'Sen', sans-serif;
  padding: 0.75rem 0.5rem;
  font-size: 1em;
  line-height: 1.4;
}

.addons-table th {
  color: #4b94bd;
  font-weight: 700;
  border-bottom: 2px solid #a5d0f0;
}

.addons-table td {
  color: rgba(0, 0, 0, 0.68);
  border-top: 1px solid rgba(165, 208, 240, 0.37);
  padding: 0;
}

.addons-table tbody a {
  display: block;
  padding: 0.75rem 0.5rem;
  color: inherit;
  text-decoration: none;
}

.addons-table tbody tr {
  transition: background-color 0.2s ease;
}

.addons-table tbody tr:hover,
.addons-table tbody tr:has(a:focus-visible) {
  background: rgba(158, 226, 255, 0.18);
}

.addons-table tbody a:focus-visible {
  outline: 2px solid #4b94bd;
  outline-offset: -2px;
}

.addons-table th:last-child,
.addons-table td:last-child {
  width: 9rem;
  color: #4b94bd;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

/* Addon detail sections */
.addon-detail,
.addon-detail-3col {
  scroll-margin-top: 2rem;
}

.addon-detail {
  display: grid;
  grid-template-columns: minmax(16rem, 0.85fr) minmax(0, 1.15fr);
  gap: 3rem;
  align-items: center;
  margin: 2rem 0;
}

.addons-page-body .addon-detail,
.addons-page-body .addon-detail-3col {
  margin: 2.5rem 0;
  padding: 2rem;
  border-radius: 1.5rem;
  background: var(--neu-surface-strong);
  box-shadow: -0.65rem -0.65rem 1.3rem var(--neu-light), 0.65rem 0.65rem 1.3rem var(--neu-shadow);
}

.addon-detail-3col {
  display: grid;
  grid-template-columns: minmax(19rem, 1.08fr) minmax(0, 0.7fr) minmax(0, 0.7fr);
  gap: 1.75rem;
  align-items: center;
  margin: 2rem 0;
}

.compact-gifs {
  column-gap: 1.25rem;
}

.compact-gifs .addon-gif:nth-child(2) {
  justify-self: end;
}

.compact-gifs .addon-gif:nth-child(3) {
  justify-self: start;
}

.addons-details .check-list {
  display: grid;
  gap: 0.45rem;
}

.addons-details .check-list li {
  line-height: 1.55;
}

.addons-details .check-list li::before {
  content: '';
  top: 0.58em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #78b9db;
}

.addons-details .check-list li:has(.addon-price) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: baseline;
}

.addons-details .check-list:has(.addon-price) li:not(:last-child) {
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(75, 148, 189, 0.16);
}

.addon-price {
  min-width: 4.5rem;
  color: #287da9;
  font-family: 'Sen', sans-serif;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.55;
  text-align: right;
  white-space: nowrap;
}

.addons-details .subsection-title {
  position: relative;
  padding-left: 1rem;
  font-size: 1.45em;
}

.addons-details .subsection-title::before {
  content: '';
  position: absolute;
  top: 0.12em;
  bottom: 0.12em;
  left: 0;
  width: 0.2rem;
  border-radius: 1rem;
  background: #78b9db;
}

.addons-details > .divider {
  margin: 0;
  border-top-color: rgba(75, 148, 189, 0.2);
}

.addons-page-body .addons-details > .divider,
.addons-page-body .addons-page + .divider {
  display: none;
}

.addons-page + .divider {
  max-width: 72rem;
  margin: 0 auto;
  border-top-color: rgba(75, 148, 189, 0.2);
}

.addon-gif {
  width: fit-content;
  max-width: min(100%, 20.36rem);
  justify-self: center;
  border-radius: 0.5rem;
  border: 0;
  background: transparent;
  box-shadow:
    0 0.35rem 0.9rem rgba(31, 56, 70, 0.2),
    0 1.15rem 2.5rem rgba(75, 148, 189, 0.24);
  overflow: hidden;
  transition: transform 0.25s ease;
}

.addons-page-body .addon-gif,
.addons-page-body .addon-feature-image {
  border-radius: 1rem;
  box-shadow: -0.5rem -0.5rem 1rem var(--neu-light), 0.5rem 0.5rem 1rem var(--neu-shadow);
}

.addon-gif:hover {
  transform: translateY(-0.2rem);
}

.addon-gif img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  -webkit-touch-callout: none;
  user-select: none;
}

.addon-gif .gallery-caption {
  margin: 0;
  padding: 0.45rem 0.75rem 0.55rem;
}

.addon-note {
  color: rgba(0, 0, 0, 0.52);
  font-size: 0.875em;
  line-height: 1.5;
  margin-top: 0.5rem;
}

.addon-feature-image {
  width: fit-content;
  max-width: 100%;
  justify-self: center;
  border-radius: 0.5rem;
  box-shadow: 0 0.75rem 2rem rgba(75, 148, 189, 0.16);
  overflow: hidden;
}

.addon-feature-image img {
  width: auto;
  height: auto;
  max-width: 100%;
}

/* ===== TOS Section ===== */
.tos-page {
  max-width: 68rem;
  margin-right: auto;
  margin-left: auto;
}

.tos-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.tos-heading-mark {
  width: 2.5rem;
  height: 0.2rem;
  margin-bottom: 0.85rem;
  border-radius: 1rem;
  background: #78b9db;
}

.tos-heading .section-title-center {
  margin-bottom: 0;
}

.tos-panel {
  padding: 0.75rem 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.11);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 1rem 2.5rem rgba(75, 148, 189, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
}

.tos-page-body .tos-panel {
  border: 0;
  border-radius: 1.5rem;
  background: var(--neu-surface-strong);
  box-shadow: -0.7rem -0.7rem 1.4rem var(--neu-light), 0.7rem 0.7rem 1.4rem var(--neu-shadow);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.tos-list {
  counter-reset: tos;
}

.tos-list li {
  counter-increment: tos;
  position: relative;
  min-height: 4.25rem;
  padding: 1.25rem 0 1.25rem 3.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.68);
  font-size: 0.95em;
  line-height: 1.7;
}

.tos-list li:last-child {
  border-bottom: none;
}

.tos-list li::before {
  content: counter(tos);
  position: absolute;
  left: 0;
  top: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(75, 148, 189, 0.28);
  border-radius: 50%;
  background: rgba(158, 226, 255, 0.16);
  color: #4b94bd;
  font-family: 'Sen', sans-serif;
  font-size: 0.8em;
  font-weight: 700;
}

.tos-page-body .tos-list li::before {
  border: 0;
  background: var(--neu-surface-strong);
  box-shadow: inset 0.2rem 0.2rem 0.45rem rgba(91, 139, 164, 0.16), inset -0.2rem -0.2rem 0.45rem rgba(255, 255, 255, 0.58);
}

.home-page .home-info-panel,
.price-page-body .package-card,
.price-page-body .features-panel,
.price-page-body .video-frame,
.price-page-body .gallery-preview,
.tos-page-body .tos-panel,
.addons-page-body .addons-table-wrap,
.addons-page-body .addon-detail,
.addons-page-body .addon-detail-3col,
.showcase-page-body .showcase-item,
.showcase-page-body .x-showcase-card,
.about-page-body .about-intro,
.about-page-body .achievement-list {
  background: var(--neu-glass);
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
}

.price-page-body .gallery-preview {
  box-sizing: border-box;
  padding: 0.65rem;
  background: var(--neu-surface-strong);
  box-shadow: inset 0.45rem 0.45rem 0.9rem rgba(91, 139, 164, 0.2), inset -0.45rem -0.45rem 0.9rem rgba(255, 255, 255, 0.62);
}

.price-page-body .gallery-preview img {
  border-radius: 0.55rem;
}

.tos-list a {
  color: #397fa7;
  text-decoration-color: rgba(57, 127, 167, 0.4);
  text-underline-offset: 0.15em;
}

/* ===== Commission Closed Banner ===== */
.closed-banner {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.875em;
  color: rgba(0, 0, 0, 0.64);
  text-shadow: 0.088rem 0.088rem 0.125rem #8293a8;
  margin: 2rem 0;
}

/* ===== Footer ===== */
.site-footer {
  text-align: center;
  color: rgba(0, 0, 0, 0.52);
  font-family: 'Sen', sans-serif;
  font-size: 0.75em;
  margin-top: 3rem;
  padding-bottom: 2rem;
}

/* ===== Responsive ===== */
@media (max-width: 1680px) {
  html {
    font-size: 9pt;
  }
}

@media (max-width: 980px) {
  html {
    font-size: 8.1pt;
  }
}

@media (max-width: 736px) {
  html {
    font-size: 9.9pt;
  }

  .site-wrapper {
    padding: 2rem 1.5rem;
  }

  .site-header {
    width: auto;
    margin-top: -2rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .lang-toggle {
    position: static;
    flex: 0 0 auto;
    order: 2;
    margin: 0.75rem auto 0;
  }

  .nav-pills .lang-toggle {
    width: fit-content;
  }

  .home-card {
    grid-template-columns: 1fr;
    border-radius: 2rem;
    padding: 2rem;
    gap: 2rem;
    text-align: center;
  }

  .home-card > div {
    text-align: center;
  }

  .home-info-panel {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .home-card .section-title,
  .home-card .description {
    text-align: center;
  }

  .home-card .feature-list {
    display: inline-block;
    text-align: left;
  }

  .home-card .btn-pill {
    display: inline-flex;
    min-width: 13rem;
  }

  .home-info-column {
    display: block;
  }

  .home-info-group {
    align-items: center;
  }

  .home-info-group:first-child {
    padding-bottom: 1.5rem;
  }

  .home-info-group + .home-info-group {
    margin-top: 1.5rem;
  }

  .home-info-column + .home-info-column {
    padding-top: 0;
    border-top: 1px solid rgba(75, 148, 189, 0.16);
    border-left: 0;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .about-avatar {
    margin: 0 auto;
  }

  .about-heading-mark {
    margin-right: auto;
    margin-left: auto;
  }

  .about-copy .section-title-center {
    text-align: center;
  }

  .sns-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .sns-image {
    max-width: 28rem;
    margin: 0 auto;
  }

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

.x-showcase-grid {
  grid-template-columns: 1fr;
}

.package-grid,
.price-details {
  grid-template-columns: 1fr;
}

.price-details {
  gap: 2rem;
}

.price-video {
  justify-self: center;
}

.tos-panel {
  padding: 0.5rem 1.5rem;
}

.addon-detail {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.addon-detail-3col {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.compact-gifs .addon-gif:nth-child(2),
.compact-gifs .addon-gif:nth-child(3) {
  justify-self: center;
}

.nav-pills {
  gap: 0.5rem;
}

.nav-pills a {
  font-size: 0.9em;
  padding: 0.35rem 0.75rem;
}

.about-avatar {
  width: 12rem;
}

.profile-avatar {
  width: 60%;
  max-width: 14rem;
  margin: 0 auto;
}

}

@media (max-width: 480px) {
  .site-wrapper {
    padding: 1.5rem 1rem;
  }

  .site-header {
    margin-top: -1.5rem;
    margin-left: -1rem;
    margin-right: -1rem;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .home-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
    gap: 1.5rem;
  }

  .nav-pills {
    flex-direction: column;
    align-items: center;
  }

  .nav-pills a {
    width: 100%;
    max-width: 16rem;
    justify-content: center;
  }

  .profile-avatar {
    width: 50%;
    max-width: 10rem;
  }

  .addons-table {
    font-size: 0.9em;
  }

  .addons-table-wrap {
    padding: 0.5rem 0.75rem;
  }

  .addons-table th,
  .addons-table td {
    padding: 0.2rem 0.3rem;
    font-size: 0.95em;
  }

  .addons-table tbody td {
    padding: 0;
  }

  .addons-table tbody a {
    padding: 0.55rem 0.3rem;
  }

  .price-table th,
  .price-table td {
    padding: 0.55rem 0.3rem;
    font-size: 0.9em;
  }

  .package-card {
    padding: 1.5rem;
  }

  .price-showcase {
    grid-template-columns: 1fr;
  }

  .gallery-preview {
    border-radius: 0.5rem;
  }

  .tos-list li {
    min-height: 4rem;
    padding: 1.15rem 0 1.15rem 3rem;
    line-height: 1.65;
  }

  .tos-list li::before {
    top: 1.05rem;
    width: 2rem;
    height: 2rem;
  }

  .tos-panel {
    padding: 0.35rem 1rem;
  }
}
