:root {
  --ink: #15181e;
  --muted: #5d6470;
  --paper: #f8f6f2;
  --paper-deep: #eeebe4;
  --jade: #3db8b4;
  --jade-dark: #122a33;
  --cinnabar: #db3d30;
  --gold: #a98549;
  --line: rgba(21, 24, 30, 0.13);
  --surface: rgba(255, 255, 255, 0.58);
  --shadow: 0 18px 50px rgba(21, 24, 30, 0.08);
  --radius: 4px;
  --spring-accent: #7a9c86;
  --spring-glow: rgba(122, 156, 134, 0.34);
  --summer-accent: #d3a562;
  --summer-glow: rgba(211, 165, 98, 0.34);
  --autumn-accent: #bf7a51;
  --autumn-glow: rgba(191, 122, 81, 0.34);
  --winter-accent: #7c97b9;
  --winter-glow: rgba(124, 151, 185, 0.36);
  --font-fangsong: "FangSong", "仿宋", "FangSong_GB2312", "STFangsong", "Kaiti SC", "STKaiti", "KaiTi", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  color: var(--ink);
  font-family: var(--font-fangsong);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100%;
  margin: 0;
  font-size: 17px;
  background:
    repeating-linear-gradient(90deg, rgba(21, 24, 30, 0.028) 0, rgba(21, 24, 30, 0.028) 1px, transparent 1px, transparent 28px),
    repeating-linear-gradient(0deg, rgba(21, 24, 30, 0.018) 0, rgba(21, 24, 30, 0.018) 1px, transparent 1px, transparent 28px),
    var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(248, 246, 242, 0.12), rgba(248, 246, 242, 0.44) 48%, rgba(248, 246, 242, 0.84)),
    url("/assets/solar-terms-bg.webp?v=20260518-art11") center center / cover no-repeat;
  opacity: 0.48;
  filter: saturate(0.96);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.hidden {
  display: none !important;
}

.mobile-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1500px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 24px 34px;
}

.screen {
  display: none;
  min-height: calc(100vh - 90px);
}

.screen.active {
  display: block;
}

.screen:not(.active) {
  display: none;
}

.brand-bar {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
}

.brand-seal {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fffaf4;
  background: var(--cinnabar);
  font-size: 15px;
  font-weight: 800;
}

.brand-seal-image {
  overflow: visible;
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
}

.brand-seal-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.brand-wordmark {
  display: block;
  line-height: 1;
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
}

.brand-lockup strong {
  font-family: var(--font-fangsong);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand-lockup small {
  margin-top: 3px;
  color: var(--muted);
  font-family: var(--font-fangsong);
  font-size: 12px;
  letter-spacing: 3px;
}

.brand-nav {
  position: absolute;
  left: 50%;
  display: inline-flex;
  gap: 18px;
  align-items: center;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.brand-nav a {
  position: relative;
  padding: 7px 0;
  color: inherit;
  text-decoration: none;
}

.brand-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--cinnabar);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.brand-nav a:hover,
.brand-nav a:focus-visible {
  color: var(--cinnabar);
  outline: none;
}

.brand-nav a:hover::after,
.brand-nav a:focus-visible::after {
  transform: scaleX(1);
}

.brand-nav a.is-current {
  color: var(--cinnabar);
}

.brand-nav a.is-current::after {
  transform: scaleX(1);
}

.screen.active.landing-screen {
  display: grid;
  gap: 24px;
  padding: 34px 0 40px;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(520px, 0.9fr) minmax(400px, 0.86fr);
  gap: 24px 28px;
  align-items: start;
}

.landing-main,
.landing-side {
  display: grid;
  gap: 18px;
}

.landing-story-stack {
  display: grid;
  grid-template-columns: 184px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.landing-cta-group {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(186px, auto);
  gap: 12px;
  max-width: 560px;
  margin-top: 28px;
}

.landing-cta-group .secondary-button {
  width: auto;
}

.landing-atlas-card {
  position: relative;
  overflow: hidden;
  padding: 28px 28px 24px;
  border: 1px solid rgba(169, 133, 73, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 18%, rgba(193, 153, 89, 0.12), rgba(193, 153, 89, 0) 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(249, 246, 240, 0.76) 58%, rgba(61, 184, 180, 0.03)),
    rgba(248, 246, 242, 0.82);
  box-shadow:
    0 24px 70px rgba(21, 24, 30, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(16px);
}

.landing-atlas-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(21, 24, 30, 0.08);
  pointer-events: none;
}

.landing-atlas-card > * {
  position: relative;
  z-index: 1;
}

.landing-art-header {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.landing-art-header p {
  margin: 0;
  color: rgba(169, 133, 73, 0.86);
  font-size: 12px;
  letter-spacing: 5px;
}

.landing-art-header h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-fangsong);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.18;
}

.landing-wheel-frame {
  position: relative;
  width: 100%;
  display: block;
  padding: 14px;
  border: 1px solid rgba(21, 24, 30, 0.08);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
  appearance: none;
  text-align: inherit;
}

.landing-wheel-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(184, 139, 58, 0.18);
  pointer-events: none;
}

.landing-wheel-frame picture,
.landing-wheel-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}

.landing-float-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.landing-float-grid article {
  min-height: 138px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(169, 133, 73, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(248, 246, 242, 0.38)),
    rgba(255, 255, 255, 0.18);
}

.landing-float-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.landing-float-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.screen.active.hero-screen {
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(520px, 0.98fr) minmax(360px, 0.76fr);
  grid-template-rows: auto auto;
  gap: 24px 28px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 42px 0 34px;
}

.hero-left,
.hero-side {
  display: grid;
  align-self: start;
  min-width: 0;
}

.hero-left {
  grid-column: 1;
  grid-row: 1;
  gap: 16px;
  width: 100%;
  max-width: 860px;
  justify-self: stretch;
}

.hero-side {
  grid-column: 2;
  grid-row: 1;
  gap: 18px;
  width: 100%;
  max-width: 520px;
  justify-self: stretch;
  align-self: stretch;
  align-content: start;
  grid-template-rows: minmax(0, 1fr);
}

.hero-art {
  --hero-art-inset: 14px;
  position: relative;
  overflow: visible;
  width: 100%;
  max-width: min(820px, calc(100vh - 112px));
  aspect-ratio: 1 / 1;
  height: auto;
  justify-self: center;
  align-self: start;
  margin: 0;
  padding: var(--hero-art-inset);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.2) 44%, rgba(193, 153, 89, 0.12) 72%, rgba(193, 153, 89, 0) 100%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(248, 246, 242, 0.46) 58%, rgba(193, 153, 89, 0.08)),
    rgba(248, 246, 242, 0.46);
  box-shadow:
    0 34px 90px rgba(21, 24, 30, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(12px);
}

.term-preview-card {
  --term-accent: #cf5a3e;
  --term-accent-soft: rgba(207, 90, 62, 0.16);
  --term-accent-glow: rgba(207, 90, 62, 0.26);
  --term-tint: rgba(255, 244, 238, 0.76);
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 9px;
  align-content: start;
  height: 100%;
  padding: 14px;
  border: 1px solid rgba(169, 133, 73, 0.22);
  border-radius: 34px;
  background:
    radial-gradient(circle at 6% 0%, var(--term-accent-soft), rgba(255, 255, 255, 0) 32%),
    radial-gradient(circle at 100% 20%, rgba(169, 133, 73, 0.12), rgba(169, 133, 73, 0) 30%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 236, 0.84) 58%, rgba(255, 255, 255, 0.68)),
    rgba(248, 246, 242, 0.88);
  box-shadow:
    0 26px 72px rgba(21, 24, 30, 0.12),
    0 10px 28px rgba(169, 133, 73, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(1.08);
}

@media (min-width: 761px) {
  .term-preview-card {
    grid-template-rows: minmax(276px, 1fr) auto auto;
    align-content: stretch;
  }

  .term-preview-body {
    align-self: start;
  }

  .term-preview-quote-wrap {
    align-self: end;
  }
}

.term-preview-card[data-season-group="spring"] {
  --term-accent: #7a9c86;
  --term-accent-soft: rgba(122, 156, 134, 0.16);
  --term-accent-glow: rgba(122, 156, 134, 0.24);
  --term-tint: rgba(240, 247, 241, 0.78);
}

.term-preview-card[data-season-group="summer"] {
  --term-accent: #bc8444;
  --term-accent-soft: rgba(188, 132, 68, 0.16);
  --term-accent-glow: rgba(188, 132, 68, 0.24);
  --term-tint: rgba(250, 244, 232, 0.78);
}

.term-preview-card[data-season-group="autumn"] {
  --term-accent: #ae6848;
  --term-accent-soft: rgba(174, 104, 72, 0.16);
  --term-accent-glow: rgba(174, 104, 72, 0.24);
  --term-tint: rgba(251, 242, 236, 0.78);
}

.term-preview-card[data-season-group="winter"] {
  --term-accent: #6b86aa;
  --term-accent-soft: rgba(107, 134, 170, 0.17);
  --term-accent-glow: rgba(107, 134, 170, 0.25);
  --term-tint: rgba(238, 244, 250, 0.8);
}

.term-preview-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(68, 55, 32, 0.08);
  border-radius: 26px;
  pointer-events: none;
}

.term-preview-card::after {
  content: "";
  position: absolute;
  left: -62px;
  bottom: -118px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--term-accent-soft), rgba(255, 255, 255, 0) 68%),
    radial-gradient(circle at 62% 38%, rgba(184, 139, 58, 0.12), rgba(184, 139, 58, 0) 56%);
  opacity: 0.9;
  pointer-events: none;
}

.term-preview-card > * {
  position: relative;
  z-index: 1;
}

.term-preview-top {
  position: relative;
  min-height: clamp(248px, 24vw, 274px);
  margin-bottom: 0;
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(230, 223, 210, 0.78), rgba(216, 209, 196, 0.92));
  box-shadow:
    0 22px 54px rgba(21, 24, 30, 0.11),
    inset 0 0 0 1px rgba(255, 255, 255, 0.48);
  overflow: hidden;
  isolation: isolate;
}

.term-preview-top::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 22%),
    linear-gradient(180deg, rgba(255, 252, 244, 0.3), rgba(255, 252, 244, 0) 22%, rgba(12, 16, 14, 0) 70%, rgba(12, 16, 14, 0.18)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.term-preview-top::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 80px;
  bottom: 28px;
  z-index: 2;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(214, 194, 149, 0.82) 18%,
    rgba(214, 194, 149, 0.22) 74%,
    rgba(255, 255, 255, 0)
  );
  opacity: 0.6;
  pointer-events: none;
}

.term-preview-heading {
  display: block;
  min-height: inherit;
  min-width: 0;
}

.term-preview-headline {
  position: relative;
  min-height: inherit;
  display: block;
  isolation: isolate;
}

.term-preview-headline::before {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 24px;
  z-index: 2;
  width: 168px;
  height: 168px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.term-preview-title-stack {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 4;
  width: min(320px, calc(100% - 40px));
  display: grid;
  gap: 9px;
  min-width: 0;
  padding: 16px 18px 14px;
  border: 1px solid rgba(255, 250, 238, 0.34);
  border-radius: 26px 26px 22px 22px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 250, 230, 0.17), rgba(255, 250, 230, 0) 30%),
    radial-gradient(circle at 12% 96%, var(--term-accent-soft), rgba(255, 255, 255, 0) 44%),
    linear-gradient(132deg, color-mix(in srgb, var(--term-accent) 18%, rgba(31, 42, 36, 0.74)), rgba(35, 48, 42, 0.52) 48%, rgba(237, 226, 202, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02));
  box-shadow:
    0 20px 42px rgba(8, 11, 10, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(18, 25, 22, 0.12);
  backdrop-filter: blur(20px) saturate(1.08);
}

.term-preview-title-stack::before {
  content: "SEASON NOTE";
  color: rgba(255, 250, 242, 0.62);
  font-size: 10px;
  letter-spacing: 0.34em;
}

.term-preview-title-stack::after {
  content: "";
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0));
}

.term-preview-card h2 {
  margin: 0;
  color: #fffaf2;
  font-family: var(--font-fangsong);
  font-size: clamp(40px, 3.6vw, 52px);
  font-weight: 400;
  line-height: 0.95;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.term-preview-pinyin {
  margin: 2px 0 0;
  color: rgba(255, 250, 242, 0.76);
  font-family: var(--font-fangsong);
  font-size: 13px;
  letter-spacing: 5px;
}

.term-preview-lead {
  max-width: none;
  margin: 2px 0 0;
  color: rgba(255, 250, 242, 0.86);
  font-size: 12px;
  line-height: 1.58;
}

.term-preview-art {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.term-preview-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 0;
  border-radius: inherit;
  background:
    linear-gradient(104deg, rgba(13, 18, 16, 0.78) 0, rgba(13, 18, 16, 0.36) 38%, rgba(13, 18, 16, 0.08) 68%, rgba(13, 18, 16, 0) 100%),
    linear-gradient(0deg, rgba(13, 18, 16, 0.58), rgba(13, 18, 16, 0.08) 40%, rgba(255, 252, 244, 0.14) 100%),
    radial-gradient(circle at 86% 28%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 24%);
  pointer-events: none;
}

.term-preview-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
  filter: saturate(0.92) contrast(1.05) brightness(0.97) sepia(0.06);
  transform: scale(1.04);
}

@media (min-width: 761px) {
  .term-preview-heading,
  .term-preview-headline {
    min-height: 100%;
    height: 100%;
  }

  .term-preview-art {
    height: 100%;
  }

  .term-preview-art img {
    object-position: 50% 46%;
    transform: scale(1.02);
  }
}

.term-preview-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  z-index: 4;
  width: 52px;
  height: 86px;
  display: grid;
  place-items: start center;
  padding-top: 23px;
  color: #fffaf4;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0 0 6px 6px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0, rgba(255, 255, 255, 0.045) 1px, transparent 1px, transparent 7px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04) 42%, rgba(45, 30, 18, 0.08)),
    color-mix(in srgb, var(--term-accent) 88%, #c8a56c);
  box-shadow:
    0 18px 32px var(--term-accent-glow),
    0 4px 12px rgba(21, 24, 30, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(45, 30, 18, 0.12);
  font-family: var(--font-fangsong);
  font-size: 24px;
  line-height: 1;
  -webkit-mask:
    linear-gradient(#000 0 0) top / 100% calc(100% - 14px) no-repeat,
    linear-gradient(135deg, #000 49%, transparent 51%) bottom left / 50% 14px no-repeat,
    linear-gradient(225deg, #000 49%, transparent 51%) bottom right / 50% 14px no-repeat;
  mask:
    linear-gradient(#000 0 0) top / 100% calc(100% - 14px) no-repeat,
    linear-gradient(135deg, #000 49%, transparent 51%) bottom left / 50% 14px no-repeat,
    linear-gradient(225deg, #000 49%, transparent 51%) bottom right / 50% 14px no-repeat;
}

.term-preview-badge::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 13px;
  right: 13px;
  height: 1px;
  background: rgba(255, 250, 242, 0.34);
  box-shadow: 0 5px 0 rgba(255, 250, 242, 0.14);
}

.term-preview-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  opacity: 0.7;
}

.term-preview-body {
  display: grid;
  gap: 7px;
  padding: 0;
}

.term-preview-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 7px;
}

.term-preview-section {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 100%;
  padding: 9px 12px 9px;
  border: 1px solid rgba(169, 133, 73, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(252, 249, 243, 0.72) 55%, var(--term-tint)),
    rgba(255, 255, 255, 0.24);
  box-shadow:
    0 16px 34px rgba(21, 24, 30, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.term-preview-section::before {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(169, 133, 73, 0.08), rgba(169, 133, 73, 0.42), rgba(169, 133, 73, 0.08));
}

.term-preview-section::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: -18px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--term-accent-soft), rgba(255, 255, 255, 0) 70%);
  opacity: 0.46;
  pointer-events: none;
}

.term-preview-section strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--term-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.term-preview-section strong::before {
  content: "";
  width: 16px;
  height: 1px;
  background: currentColor;
  opacity: 0.56;
}

.term-preview-section-wide {
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: start;
  gap: 10px 12px;
  padding-top: 11px;
  padding-bottom: 11px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 246, 242, 0.68)),
    linear-gradient(90deg, var(--term-accent-soft), rgba(255, 255, 255, 0) 50%);
}

.term-preview-section p {
  margin: 0;
  color: rgba(21, 24, 30, 0.9);
  font-size: 15px;
  line-height: 1.58;
  text-wrap: pretty;
}

.term-preview-section .term-preview-note {
  color: rgba(45, 52, 47, 0.82);
  font-size: 14px;
  line-height: 1.52;
}

.term-preview-section-wide .term-preview-note {
  grid-column: 2;
}

.term-preview-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 8px;
}

.term-preview-chip {
  position: relative;
  padding: 7px 11px 7px 21px;
  border: 1px solid rgba(169, 133, 73, 0.16);
  border-radius: 999px;
  color: rgba(21, 24, 30, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 246, 242, 0.76)),
    rgba(255, 255, 255, 0.82);
  box-shadow:
    0 8px 18px rgba(21, 24, 30, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.2;
}

.term-preview-chip::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--term-accent);
  box-shadow: 0 0 0 3px var(--term-accent-soft);
  transform: translateY(-50%);
}

.term-preview-quote-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 40px 38px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  min-height: 116px;
  margin-top: 0;
  padding: 19px 26px 19px 28px;
  border: 1px solid color-mix(in srgb, var(--term-accent) 34%, rgba(169, 133, 73, 0.28));
  border-radius: 25px;
  background:
    radial-gradient(circle at 92% 34%, var(--term-accent-soft), rgba(255, 255, 255, 0) 28%),
    linear-gradient(112deg, rgba(255, 253, 247, 0.98), rgba(250, 246, 236, 0.94) 60%, var(--term-tint));
  box-shadow:
    0 18px 38px rgba(21, 24, 30, 0.07),
    0 6px 16px rgba(169, 133, 73, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -1px 0 rgba(169, 133, 73, 0.1);
  overflow: visible;
}

.term-preview-quote-wrap::before {
  content: none;
}

.term-preview-quote-wrap::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid color-mix(in srgb, var(--term-accent) 24%, rgba(169, 133, 73, 0.18));
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 47%, color-mix(in srgb, var(--term-accent) 22%, transparent) 48% 52%, transparent 53%),
    linear-gradient(0deg, transparent 47%, color-mix(in srgb, var(--term-accent) 22%, transparent) 48% 52%, transparent 53%);
  opacity: 0.22;
  transform: none;
  pointer-events: none;
}

.term-preview-quote-label {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 40px;
  min-width: 40px;
  height: 74px;
  padding: 10px 7px 15px;
  border: 1px solid color-mix(in srgb, var(--term-accent) 46%, rgba(169, 133, 73, 0.28));
  border-radius: 16px;
  color: color-mix(in srgb, var(--term-accent) 82%, #4b3a24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 249, 236, 0.66)),
    rgba(255, 250, 239, 0.7);
  box-shadow:
    0 10px 20px rgba(21, 24, 30, 0.06),
    inset 0 0 0 3px rgba(255, 255, 255, 0.28),
    inset 0 -10px 18px rgba(169, 133, 73, 0.05);
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: 0.08em;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: none;
}

.term-preview-quote-seal {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid color-mix(in srgb, var(--term-accent) 52%, rgba(169, 133, 73, 0.42));
  border-radius: 50%;
  color: color-mix(in srgb, var(--term-accent) 74%, #4b3a24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 248, 232, 0.58)),
    rgba(255, 250, 239, 0.68);
  box-shadow:
    0 9px 18px rgba(21, 24, 30, 0.06),
    inset 0 0 0 4px rgba(255, 255, 255, 0.32),
    inset 0 0 0 1px rgba(169, 133, 73, 0.08);
  font-size: 10px;
  letter-spacing: 0;
}

.term-preview-quote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: color-mix(in srgb, var(--term-accent) 42%, #283028);
  font-family: var(--font-fangsong);
  font-size: clamp(22px, 2.04vw, 26px);
  line-height: 1.55;
  letter-spacing: 0.04em;
  text-align: left;
  text-wrap: auto;
  padding: 2px 30px 0 4px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.term-preview-quote span {
  display: block;
  white-space: nowrap;
}

.term-preview-quote::before {
  content: none;
}

.season-flow-panel {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(420px, 1fr);
  gap: 22px;
  align-items: stretch;
  min-height: 206px;
  margin-top: 2px;
  padding: 24px 26px 26px;
  border: 1px solid rgba(21, 24, 30, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(248, 246, 242, 0.44) 58%, rgba(169, 133, 73, 0.07)),
    rgba(248, 246, 242, 0.5);
  box-shadow: 0 18px 48px rgba(21, 24, 30, 0.05);
  backdrop-filter: blur(12px);
}

.season-flow-panel::before {
  content: "四时";
  position: absolute;
  right: 24px;
  top: 8px;
  z-index: 0;
  color: rgba(169, 133, 73, 0.09);
  font-size: 116px;
  line-height: 1;
  writing-mode: vertical-rl;
  pointer-events: none;
}

.season-flow-copy,
.season-flow-grid {
  position: relative;
  z-index: 1;
}

.season-flow-copy {
  display: grid;
  align-content: center;
  min-width: 0;
}

.season-flow-copy .quiet-label {
  margin-bottom: 12px;
}

.season-flow-copy h2 {
  margin-bottom: 10px;
  font-family: var(--font-fangsong);
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 400;
  line-height: 1.2;
}

.season-flow-copy p:not(.quiet-label) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.season-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(21, 24, 30, 0.1);
  border-left: 1px solid rgba(21, 24, 30, 0.1);
}

.season-flow-grid article {
  min-height: 150px;
  padding: 15px 14px 13px;
  display: grid;
  align-content: end;
  border-right: 1px solid rgba(21, 24, 30, 0.1);
  border-bottom: 1px solid rgba(21, 24, 30, 0.1);
  background: rgba(255, 255, 255, 0.2);
}

.season-flow-grid span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 3px;
}

.season-flow-grid strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 18px;
}

.season-flow-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 3;
  border: 1px solid rgba(184, 139, 58, 0.28);
  border-radius: 30px;
  pointer-events: none;
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 11%;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 252, 243, 0.54), rgba(255, 252, 243, 0.18) 44%, rgba(193, 153, 89, 0) 72%);
  filter: blur(12px);
  pointer-events: none;
}

.hero-visual {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: saturate(0.98) contrast(1.02);
}

.hero-visual-wrap {
  position: absolute;
  inset: var(--hero-art-inset);
  z-index: 1;
  width: auto;
  height: auto;
  display: block;
}

.atlas-hotspots {
  position: absolute;
  inset: var(--hero-art-inset);
  z-index: 4;
  overflow: visible;
}

.atlas-hotspots::before,
.atlas-hotspots::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.atlas-hotspots::before {
  inset: 12.5%;
  border: 1px solid rgba(184, 139, 58, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.34),
    0 0 0 1px rgba(184, 139, 58, 0.08);
  opacity: 0.85;
}

.atlas-hotspots::after {
  inset: 42%;
  background:
    radial-gradient(circle, rgba(255, 251, 240, 0.88), rgba(255, 251, 240, 0.44) 55%, rgba(255, 251, 240, 0) 100%);
  box-shadow:
    0 0 24px rgba(218, 177, 105, 0.16),
    inset 0 0 0 1px rgba(184, 139, 58, 0.12);
  opacity: 0.72;
}

.atlas-sector {
  --sector-accent: rgba(184, 139, 58, 0.32);
  --sector-glow: rgba(255, 255, 255, 0.34);
  --sector-plaque-ink: #6d5331;
  position: absolute;
  inset: 0;
  display: block;
  padding: 0;
  border: 0;
  cursor: pointer;
  background-color: transparent;
  transform-origin: 50% 50%;
  will-change: transform;
  transition: transform 220ms ease;
}

.atlas-sector::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--glow-x, var(--label-x)) var(--glow-y, var(--label-y)), rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.14) 8%, rgba(255, 255, 255, 0) 17%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 50% 50%, var(--sector-glow), rgba(255, 255, 255, 0) 62%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.34),
    inset 0 0 0 2px rgba(184, 139, 58, 0.12);
  opacity: 0;
  -webkit-backdrop-filter: saturate(1) brightness(1) contrast(1);
  backdrop-filter: saturate(1) brightness(1) contrast(1);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    box-shadow 180ms ease,
    -webkit-backdrop-filter 220ms ease,
    backdrop-filter 220ms ease;
}

.atlas-sector::after {
  content: attr(data-label);
  position: absolute;
  left: var(--label-x);
  top: var(--label-y);
  padding: 10px 6px 8px;
  border: 1px solid rgba(184, 139, 58, 0.28);
  border-radius: 999px;
  color: var(--sector-plaque-ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 247, 236, 0.9)),
    rgba(255, 255, 255, 0.94);
  box-shadow:
    0 14px 28px rgba(85, 60, 28, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.84);
  transform-origin: center;
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.atlas-sector:hover,
.atlas-sector:focus-visible,
.atlas-sector.is-active {
  z-index: 5;
  outline: none;
}

.atlas-sector:hover::before,
.atlas-sector:focus-visible::before,
.atlas-sector.is-active::before {
  opacity: 1;
  -webkit-backdrop-filter: saturate(1.16) brightness(1.08) contrast(1.04);
  backdrop-filter: saturate(1.16) brightness(1.08) contrast(1.04);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.46),
    inset 0 0 0 2px var(--sector-accent);
}

.atlas-sector:hover::after,
.atlas-sector:focus-visible::after,
.atlas-sector.is-active::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.atlas-sector:active {
  transform: scale(0.996);
}

.atlas-sector:active::before {
  -webkit-backdrop-filter: saturate(1.2) brightness(0.98) contrast(1.05);
  backdrop-filter: saturate(1.2) brightness(0.98) contrast(1.05);
}

.atlas-sector[data-season="spring"] {
  --sector-accent: var(--spring-accent);
  --sector-glow: var(--spring-glow);
  --sector-plaque-ink: #4f6956;
}

.atlas-sector[data-season="summer"] {
  --sector-accent: var(--summer-accent);
  --sector-glow: var(--summer-glow);
  --sector-plaque-ink: #8b5e24;
}

.atlas-sector[data-season="autumn"] {
  --sector-accent: var(--autumn-accent);
  --sector-glow: var(--autumn-glow);
  --sector-plaque-ink: #8a4c2f;
}

.atlas-sector[data-season="winter"] {
  --sector-accent: var(--winter-accent);
  --sector-glow: var(--winter-glow);
  --sector-plaque-ink: #4e6480;
}

.scroll-mark {
  position: relative;
  width: 184px;
  min-height: 232px;
  padding: 20px 16px;
  display: grid;
  align-content: center;
  gap: 10px;
  text-align: center;
  color: var(--ink);
  background: rgba(248, 246, 242, 0.78);
  border: 1px solid rgba(21, 24, 30, 0.18);
  box-shadow: 0 24px 70px rgba(21, 24, 30, 0.12);
}

.scroll-mark::before {
  content: "廿";
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 8px;
  border: 1px solid rgba(21, 24, 30, 0.22);
  color: var(--cinnabar);
  font-family: var(--font-fangsong);
  font-size: 34px;
}

.scroll-mark::after {
  content: "TIANENYUAN · SHIXU LINGXI";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 14px;
  color: var(--muted);
  font-family: var(--font-fangsong);
  font-size: 11px;
  letter-spacing: 2px;
}

.scroll-mark span {
  display: block;
  font-family: var(--font-fangsong);
  font-size: 20px;
  line-height: 1.25;
}

.hero-content {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  align-self: start;
  padding: 40px 36px 34px;
  border: 1px solid rgba(169, 133, 73, 0.3);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(248, 246, 242, 0.62) 58%, rgba(61, 184, 180, 0.07)),
    rgba(248, 246, 242, 0.76);
  box-shadow: 0 24px 70px rgba(21, 24, 30, 0.12);
  backdrop-filter: blur(16px);
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(169, 133, 73, 0.18);
  pointer-events: none;
}

.hero-content::after {
  content: "廿四";
  position: absolute;
  right: 22px;
  top: 18px;
  z-index: 0;
  color: rgba(169, 133, 73, 0.09);
  font-size: 118px;
  line-height: 1;
  writing-mode: vertical-rl;
}

.hero-content > * {
  position: relative;
  z-index: 1;
}

.hero-content .quiet-label {
  width: fit-content;
  margin-bottom: 18px;
  padding: 5px 10px 5px 12px;
  border-left: 3px solid var(--cinnabar);
  color: #8a3028;
  background: rgba(219, 61, 48, 0.06);
  letter-spacing: 4px;
}

.hero-content h1 {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-content h1 span {
  display: block;
}

.hero-title-main {
  color: #10141a;
  font-size: 76px;
  line-height: 0.96;
}

.hero-title-line,
.hero-title-tail {
  max-width: 12em;
  font-size: 40px;
  line-height: 1.12;
}

.hero-title-tail {
  color: #303842;
}

.hero-content .hero-copy {
  width: 100%;
  box-sizing: border-box;
  max-width: 560px;
  margin-bottom: 0;
  padding: 13px 16px 13px 18px;
  border-left: 3px solid var(--gold);
  color: #293a38;
  background: rgba(61, 184, 180, 0.08);
  font-size: 19px;
  line-height: 1.78;
  white-space: pre-line;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.hero-content .primary-button {
  max-width: none;
  margin-top: 28px;
  min-height: 58px;
  font-size: 21px;
  letter-spacing: 0;
  border-color: rgba(169, 133, 73, 0.45);
  background: linear-gradient(135deg, #15181e, #27313a 60%, #17383a);
  box-shadow: 0 18px 42px rgba(21, 24, 30, 0.18);
}

.solar-picker {
  align-self: start;
  margin-top: 0;
  padding: 24px 26px 22px;
  border: 1px solid rgba(21, 24, 30, 0.1);
  background: rgba(248, 246, 242, 0.54);
  box-shadow: 0 18px 48px rgba(21, 24, 30, 0.06);
  backdrop-filter: blur(14px);
}

.section-heading {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

.section-heading .quiet-label {
  margin-bottom: 0;
}

.section-heading h2 {
  margin-bottom: 0;
  font-family: var(--font-fangsong);
  font-size: clamp(28px, 3.1vw, 40px);
  font-weight: 400;
  line-height: 1.18;
}

.section-heading p:not(.quiet-label) {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.home-insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid rgba(21, 24, 30, 0.1);
  border-left: 1px solid rgba(21, 24, 30, 0.1);
}

.home-insight-grid article {
  min-height: 118px;
  padding: 14px 14px 12px;
  border-right: 1px solid rgba(21, 24, 30, 0.1);
  border-bottom: 1px solid rgba(21, 24, 30, 0.1);
  background: rgba(255, 255, 255, 0.18);
}

.home-insight-grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 15px;
}

.home-insight-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.experience-board {
  grid-column: 1 / -1;
  margin-top: 2px;
  padding: 24px 26px 26px;
  border: 1px solid rgba(21, 24, 30, 0.1);
  background: rgba(248, 246, 242, 0.52);
  box-shadow: 0 18px 48px rgba(21, 24, 30, 0.06);
  backdrop-filter: blur(14px);
}

.experience-board .section-heading {
  grid-template-columns: minmax(260px, 0.62fr) minmax(320px, 1fr);
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}

.experience-board .section-heading .quiet-label {
  grid-column: 1;
}

.experience-board .section-heading h2 {
  grid-column: 2;
  justify-self: end;
  max-width: 780px;
  text-align: right;
  font-size: clamp(28px, 2.5vw, 42px);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(21, 24, 30, 0.12);
  border-left: 1px solid rgba(21, 24, 30, 0.12);
}

.home-screen-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.home-screen-actions .secondary-button,
.home-screen-actions .primary-button {
  width: 100%;
}

.experience-grid article {
  min-height: 152px;
  padding: 18px 18px 16px;
  border-right: 1px solid rgba(21, 24, 30, 0.12);
  border-bottom: 1px solid rgba(21, 24, 30, 0.12);
  background: rgba(255, 255, 255, 0.22);
}

.experience-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--font-fangsong);
  font-size: 13px;
  letter-spacing: 3px;
}

.experience-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 17px;
}

.experience-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.solar-term-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 9px;
}

.solar-term-button {
  min-width: 0;
  min-height: 118px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 6px;
  align-items: end;
  padding: 7px;
  border: 1px solid rgba(21, 24, 30, 0.12);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.36);
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.solar-term-button img {
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 0;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(169, 133, 73, 0.22);
  background: var(--paper);
}

.solar-term-button span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.solar-term-button:hover,
.solar-term-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(169, 133, 73, 0.5);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 36px rgba(21, 24, 30, 0.1);
  outline: none;
}

.term-card {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.82fr);
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 18px;
  transform-origin: center;
  transition: opacity 180ms ease, transform 220ms ease;
  will-change: opacity, transform;
}

.term-card.is-leaving {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-28px) scale(0.985);
}

.term-card.is-entering {
  animation: term-card-enter 300ms ease both;
}

@keyframes term-card-enter {
  from {
    opacity: 0;
    transform: translateX(34px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.term-wallpaper-frame {
  position: relative;
  min-height: 0;
  padding: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(169, 133, 73, 0.28);
  background: rgba(248, 246, 242, 0.72);
}

.term-wallpaper-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(21, 24, 30, 0.08);
  pointer-events: none;
}

.term-wallpaper-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.68), rgba(248, 246, 242, 0.18) 48%, rgba(169, 133, 73, 0.08)),
    linear-gradient(135deg, rgba(61, 184, 180, 0.08), rgba(219, 61, 48, 0.04));
  opacity: 0;
  transition: opacity 180ms ease;
}

.term-wallpaper-frame.is-loading::before {
  opacity: 1;
}

.term-wallpaper-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: min(70vh, 680px);
  display: block;
  object-fit: contain;
  opacity: 1;
  transition: opacity 220ms ease, transform 220ms ease;
  will-change: opacity, transform;
}

.term-wallpaper-frame img.is-swapping {
  opacity: 0;
  transform: scale(0.986);
}

.term-copy {
  display: grid;
  gap: 14px;
}

.term-copy .quiet-label {
  margin-bottom: 0;
}

.term-copy h2 {
  margin-bottom: 0;
  font-family: var(--font-fangsong);
  font-size: clamp(46px, 6.2vw, 78px);
  font-weight: 400;
  line-height: 1;
}

.term-copy > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.quiet-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-family: var(--font-fangsong);
  font-size: 13px;
  letter-spacing: 5px;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  color: var(--ink);
  font-family: var(--font-fangsong);
  font-size: clamp(40px, 5.2vw, 58px);
  line-height: 1.08;
  font-weight: 400;
}

.hero-copy {
  margin-bottom: 18px;
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.primary-button,
.secondary-button,
.icon-text-button,
.text-button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 46px;
  padding: 0 18px;
  font-size: 17px;
  font-weight: 700;
}

.primary-button {
  width: 100%;
  color: #f8f6f2;
  background: var(--ink);
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button:hover {
  transform: translateY(-1px);
  background: #20242c;
  box-shadow: 0 16px 36px rgba(21, 24, 30, 0.16);
}

.primary-button:active {
  transform: translateY(0);
  box-shadow: none;
}

.primary-button:disabled {
  opacity: 0.72;
  cursor: wait;
}

.secondary-button:disabled {
  opacity: 0.62;
  cursor: wait;
}

.secondary-button,
.icon-text-button {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid var(--line);
  text-decoration: none;
  display: inline-grid;
  place-items: center;
}

.text-button {
  color: var(--cinnabar);
  background: transparent;
}

.screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.screen-top.simple {
  align-items: center;
  color: var(--ink);
  font-weight: 700;
}

.progress-block {
  flex: 1;
  color: var(--muted);
  font-size: 14px;
}

.progress-track {
  height: 7px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(36, 92, 75, 0.12);
}

.progress-fill {
  height: 100%;
  width: 0;
  background: var(--jade);
  transition: width 220ms ease;
}

.question-panel,
.lead-form,
.result-card,
.login-panel,
.admin-panel,
.stat-card,
.drawer-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.question-panel {
  position: relative;
  padding: 30px 24px;
  overflow: hidden;
}

.chat-screen {
  width: 100%;
  min-height: auto;
  padding: clamp(8px, 1.2vh, 14px) 0 0;
}

body[data-page="chat"]::before {
  background:
    linear-gradient(180deg, rgba(248, 246, 242, 0.52), rgba(248, 246, 242, 0.2) 44%, rgba(238, 235, 228, 0.68)),
    url("/assets/solar-terms-bg.webp?v=20260518-art11") center center / cover no-repeat;
  opacity: 0.58;
  filter: saturate(0.92);
}

body[data-page="chat"] .mobile-shell {
  width: min(100%, 1540px);
  padding-right: 54px;
  padding-bottom: 0;
  padding-left: 54px;
}

body[data-page="chat"] .brand-bar {
  border-bottom-color: rgba(169, 133, 73, 0.16);
}

.chat-screen .screen-top.simple {
  margin-bottom: 12px;
  color: rgba(21, 24, 30, 0.66);
}

.chat-panel {
  position: relative;
  height: clamp(620px, calc(100vh - 74px), 830px);
  height: clamp(620px, calc(100dvh - 74px), 830px);
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(300px, 370px) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(214, 189, 149, 0.82);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.36), rgba(255, 252, 246, 0.16) 34%, rgba(255, 250, 242, 0.34)),
    #fbf7ee;
  box-shadow:
    0 30px 90px rgba(53, 43, 27, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.chat-panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(169, 133, 73, 0.1);
  pointer-events: none;
}

.chat-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.08), rgba(255, 252, 246, 0.28)),
    url("/assets/chat/lingxi-chat-bg.png?v=20260520-chat-art1") center center / cover no-repeat;
  opacity: 0.92;
  pointer-events: none;
}

.chat-panel > * {
  position: relative;
  z-index: 2;
}

.chat-landing {
  display: none;
}

.chat-panel.is-landing {
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 1fr) auto;
  padding: clamp(14px, 2vw, 28px);
}

.chat-panel.is-landing .chat-landing {
  grid-column: 1;
  grid-row: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(18px, 3vh, 30px);
  padding: clamp(10px, 2.4vh, 26px) 0 14px;
  text-align: center;
}

.chat-panel.is-landing .chat-intro,
.chat-panel.is-landing .chat-log {
  display: none;
}

.chat-panel.is-landing .chat-conversation {
  grid-column: 1;
  grid-row: 2;
  height: auto;
  grid-template-rows: auto auto auto;
  justify-items: center;
  gap: 10px;
  padding: 0;
}

.chat-panel.is-landing .chat-composer,
.chat-panel.is-landing .form-error,
.chat-panel.is-landing .privacy-note.center {
  width: min(860px, 100%);
}

.chat-panel.is-landing .chat-composer {
  margin: 0 auto;
}

.chat-panel.is-landing .form-error,
.chat-panel.is-landing .privacy-note.center {
  justify-self: center;
}

.chat-agent-hero {
  width: min(760px, 100%);
  display: grid;
  justify-items: center;
  gap: 10px;
}

.chat-agent-avatar {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 4px;
  border: 1px solid rgba(169, 133, 73, 0.52);
  border-radius: 999px;
  color: #fffaf4;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.92), transparent 0 18%, transparent 19%),
    conic-gradient(from 38deg, #2d3943, #b53f35, #d8b674, #2d3943);
  box-shadow:
    0 16px 36px rgba(53, 43, 27, 0.14),
    inset 0 0 0 9px rgba(255, 250, 242, 0.82);
  font-family: var(--font-fangsong);
  font-size: 28px;
  font-weight: 700;
}

.chat-agent-hero .quiet-label {
  margin-top: 4px;
}

.chat-agent-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-fangsong);
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.chat-agent-meta {
  margin: 0;
  color: rgba(93, 100, 112, 0.78);
  font-size: 16px;
  line-height: 1.5;
}

.chat-agent-copy {
  max-width: 660px;
  margin: 4px 0 0;
  color: rgba(21, 24, 30, 0.72);
  font-size: 16px;
  line-height: 1.72;
}

.chat-starter-grid {
  width: min(880px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.chat-starter {
  min-height: 96px;
  display: flex;
  align-items: flex-start;
  border: 1px solid rgba(169, 133, 73, 0.2);
  border-radius: 12px;
  padding: 16px 15px;
  color: rgba(21, 24, 30, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 242, 0.74)),
    rgba(255, 255, 255, 0.74);
  box-shadow:
    0 12px 28px rgba(53, 43, 27, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  font: inherit;
  font-size: 16px;
  line-height: 1.48;
  text-align: left;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.chat-starter:hover,
.chat-starter:focus-visible {
  border-color: rgba(169, 133, 73, 0.48);
  color: var(--ink);
  box-shadow:
    0 18px 36px rgba(169, 133, 73, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transform: translateY(-2px);
  outline: none;
}

.chat-intro {
  grid-column: 1;
  display: grid;
  align-self: stretch;
  align-content: start;
  gap: 18px;
  min-height: 0;
  padding: 66px 42px 52px 34px;
  border-right: 1px solid rgba(169, 133, 73, 0.12);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.06)),
    linear-gradient(180deg, rgba(255, 250, 242, 0.42), rgba(248, 246, 242, 0.02));
}

.chat-intro h2 {
  margin: 24px 0 0;
  max-width: 230px;
  font-family: var(--font-fangsong);
  font-size: clamp(40px, 3.1vw, 52px);
  font-weight: 400;
  line-height: 1.28;
}

.chat-intro h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 18px;
  margin-top: 24px;
  background:
    radial-gradient(circle at 82px 9px, rgba(218, 180, 124, 0.18) 0 4px, transparent 5px),
    radial-gradient(circle at 92px 9px, rgba(218, 180, 124, 0.12) 0 4px, transparent 5px),
    linear-gradient(90deg, rgba(211, 169, 105, 0.78) 0 56px, transparent 56px 72px, rgba(211, 169, 105, 0.32) 72px 118px);
  background-size: 120px 18px, 120px 18px, 120px 2px;
  background-position: center, center, left center;
  background-repeat: no-repeat;
}

.chat-intro p:not(.quiet-label) {
  max-width: 250px;
  margin: 0;
  color: rgba(93, 100, 112, 0.86);
  font-size: 16px;
  line-height: 2;
}

.chat-conversation {
  grid-column: 2;
  min-width: 0;
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto auto;
  gap: 16px;
  padding: 38px 24px 18px 28px;
}

.chat-log {
  position: relative;
  min-height: 0;
  max-height: none;
  display: grid;
  align-content: start;
  gap: 15px;
  margin: 0;
  padding: 42px 44px 70px;
  overflow: auto;
  border: 1px solid rgba(211, 169, 105, 0.48);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 251, 244, 0.26)),
    rgba(255, 255, 255, 0.12);
  box-shadow:
    0 18px 54px rgba(53, 43, 27, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -44px 80px rgba(211, 169, 105, 0.055);
  overscroll-behavior: contain;
  overflow-anchor: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.chat-log::-webkit-scrollbar,
.chat-composer textarea::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.chat-log::before {
  content: "";
  position: absolute;
  inset: 13px;
  z-index: 0;
  border: 1px solid rgba(169, 133, 73, 0.08);
  border-radius: 19px;
  pointer-events: none;
}

.chat-log::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 0;
  width: 130px;
  height: 14px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 64px 7px, rgba(211, 169, 105, 0.28) 0 3px, transparent 4px),
    linear-gradient(90deg, transparent 0, rgba(211, 169, 105, 0.24) 28px, rgba(211, 169, 105, 0.24) 102px, transparent 130px);
  pointer-events: none;
}

.chat-message {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: min(82%, 820px);
  padding: 13px 17px 15px;
  border: 1px solid rgba(21, 24, 30, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(21, 24, 30, 0.07);
  line-height: 1.7;
}

.chat-message::before {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
}

.chat-message p {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.chat-markdown {
  overflow-wrap: anywhere;
}

.chat-markdown > * {
  margin-top: 0;
}

.chat-markdown > :last-child {
  margin-bottom: 0;
}

.chat-markdown p {
  margin: 0 0 9px;
  white-space: normal;
}

.chat-markdown h2,
.chat-markdown h3,
.chat-markdown h4,
.chat-markdown h5,
.chat-markdown h6 {
  margin: 2px 0 8px;
  color: var(--ink);
  font-family: var(--font-fangsong);
  font-weight: 700;
  line-height: 1.35;
}

.chat-markdown h2 {
  font-size: 21px;
}

.chat-markdown h3 {
  font-size: 19px;
}

.chat-markdown h4,
.chat-markdown h5,
.chat-markdown h6 {
  font-size: 17px;
}

.chat-markdown ul,
.chat-markdown ol {
  margin: 0 0 10px;
  padding-left: 1.3em;
}

.chat-markdown li {
  margin: 3px 0;
  padding-left: 2px;
}

.chat-markdown strong {
  color: var(--ink);
  font-weight: 800;
}

.chat-markdown em {
  color: rgba(21, 24, 30, 0.78);
}

.chat-markdown a {
  color: var(--cinnabar);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.chat-markdown code {
  border: 1px solid rgba(169, 133, 73, 0.2);
  border-radius: 4px;
  padding: 1px 5px;
  color: #7a2e18;
  background: rgba(255, 250, 244, 0.8);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.9em;
}

.chat-markdown pre {
  margin: 0 0 10px;
  padding: 11px 12px;
  overflow-x: auto;
  border: 1px solid rgba(21, 24, 30, 0.1);
  border-radius: 6px;
  background: rgba(21, 24, 30, 0.06);
}

.chat-markdown pre code {
  display: block;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  white-space: pre;
}

.chat-markdown blockquote {
  margin: 0 0 10px;
  padding: 8px 12px;
  border-left: 3px solid rgba(169, 133, 73, 0.48);
  color: rgba(21, 24, 30, 0.72);
  background: rgba(255, 250, 244, 0.6);
}

.chat-table-wrap {
  max-width: 100%;
  margin: 0 0 10px;
  overflow-x: auto;
}

.chat-markdown table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.chat-markdown th,
.chat-markdown td {
  padding: 7px 9px;
  border: 1px solid rgba(169, 133, 73, 0.18);
  vertical-align: top;
}

.chat-markdown th {
  color: var(--ink);
  background: rgba(169, 133, 73, 0.08);
}

.chat-message.from-user {
  justify-self: end;
  color: #fffaf4;
  border-color: rgba(185, 137, 72, 0.74);
  background:
    linear-gradient(135deg, #c89b61, #a9763e),
    #a98549;
  box-shadow: 0 18px 42px rgba(169, 133, 73, 0.18);
}

.chat-message.from-user::before {
  content: "我";
  color: rgba(255, 250, 244, 0.68);
}

.chat-message.from-assistant {
  justify-self: start;
  border-color: rgba(169, 133, 73, 0.22);
  border-left: 3px solid rgba(211, 169, 105, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 252, 246, 0.82)),
    rgba(255, 255, 255, 0.82);
}

.chat-log.is-empty .chat-message.from-assistant {
  width: min(100%, 920px);
  max-width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(21, 24, 30, 0.82);
  background: transparent;
  box-shadow: none;
  font-size: 18px;
  line-height: 2;
}

.chat-log.is-empty .chat-message.from-assistant::before {
  display: flex;
  align-items: center;
  min-height: 42px;
  margin: 0 0 20px;
  padding-left: 58px;
  color: rgba(169, 108, 42, 0.92);
  font-size: 19px;
  font-weight: 800;
}

.chat-log.is-empty .chat-message.from-assistant::after {
  content: "云";
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(211, 169, 105, 0.64);
  border-radius: 999px;
  color: rgba(169, 108, 42, 0.86);
  background:
    radial-gradient(circle at 36% 32%, rgba(255, 255, 255, 0.92), rgba(255, 246, 232, 0.62)),
    rgba(255, 250, 242, 0.86);
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(169, 133, 73, 0.14);
}

.chat-message.from-assistant.is-pending {
  color: var(--muted);
}

.chat-typing {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
  color: rgba(93, 100, 112, 0.82);
}

.chat-typing-dots {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.chat-typing-dots i {
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 999px;
  background: rgba(169, 133, 73, 0.72);
  animation: chat-typing-dot 960ms ease-in-out infinite;
}

.chat-typing-dots i:nth-child(2) {
  animation-delay: 120ms;
}

.chat-typing-dots i:nth-child(3) {
  animation-delay: 240ms;
}

.chat-message.from-assistant.is-error {
  border-left-color: var(--cinnabar);
  color: var(--cinnabar);
}

.chat-message.from-assistant::before {
  content: "时序灵犀";
}

.chat-guides {
  position: relative;
  z-index: 1;
  justify-self: start;
  width: fit-content;
  max-width: min(82%, 820px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  margin-top: -3px;
}

.chat-guide {
  max-width: 100%;
  border: 1px solid rgba(169, 133, 73, 0.24);
  border-radius: 12px;
  padding: 10px 14px;
  color: rgba(21, 24, 30, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 242, 0.72)),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 24px rgba(53, 43, 27, 0.06);
  font: inherit;
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.chat-guide:hover,
.chat-guide:focus-visible {
  border-color: rgba(169, 133, 73, 0.5);
  box-shadow: 0 12px 28px rgba(169, 133, 73, 0.12);
  transform: translateY(-1px);
  outline: none;
}

.chat-composer {
  display: flex;
  gap: 14px;
  align-items: stretch;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(211, 169, 105, 0.38);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 250, 242, 0.68)),
    rgba(255, 255, 255, 0.76);
  box-shadow:
    0 18px 44px rgba(53, 43, 27, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.chat-composer textarea {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  height: 62px;
  min-height: 62px;
  max-height: 62px;
  resize: none;
  border: 1px solid rgba(211, 169, 105, 0.34);
  border-radius: 18px;
  padding: 18px 20px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 251, 244, 0.76)),
    rgba(255, 255, 255, 0.72);
  font: inherit;
  line-height: 1.45;
  outline: none;
  overflow-y: hidden;
}

.chat-composer textarea:focus {
  border-color: rgba(169, 133, 73, 0.56);
  box-shadow: 0 0 0 3px rgba(169, 133, 73, 0.12);
}

.chat-composer textarea:read-only {
  color: rgba(21, 24, 30, 0.62);
}

.chat-composer > .primary-button {
  flex: 0 0 140px;
  width: auto;
  min-width: 112px;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  white-space: nowrap;
  border-color: rgba(185, 137, 72, 0.74);
  border-radius: 16px;
  background:
    linear-gradient(135deg, #d6ad73, #b78347),
    #a98549;
  box-shadow: 0 14px 30px rgba(169, 133, 73, 0.2);
}

.chat-composer > .primary-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  flex: 0 0 auto;
}

.chat-composer > .primary-button:disabled {
  color: rgba(255, 250, 244, 0.72);
  background: rgba(169, 133, 73, 0.54);
  box-shadow: none;
}

.chat-panel .form-error {
  margin: 0;
  min-height: 0;
}

.chat-panel .form-error:empty {
  display: none;
}

.chat-panel .privacy-note.center {
  margin: 8px 0 0;
  padding-top: 0;
  color: rgba(93, 100, 112, 0.72);
  font-size: 12px;
  line-height: 1.5;
}

@keyframes chat-typing-dot {
  0%,
  80%,
  100% {
    opacity: 0.38;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

.question-panel::before,
.lead-form::before,
.result-card::before {
  content: "SHIXU LINGXI";
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-family: var(--font-fangsong);
  font-size: 12px;
  letter-spacing: 4px;
}

.question-index {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--cinnabar);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(21, 24, 30, 0.18);
  font-family: var(--font-fangsong);
}

.question-panel h2 {
  margin-bottom: 10px;
  font-family: var(--font-fangsong);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.3;
}

.question-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.options-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.option-button {
  width: 100%;
  min-height: 62px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.42);
  text-align: left;
  line-height: 1.55;
}

.option-button:hover {
  border-color: rgba(61, 184, 180, 0.72);
  background: rgba(61, 184, 180, 0.08);
}

.option-button:active {
  transform: translateY(1px);
}

.lead-form {
  padding: 24px;
}

.form-grid,
.conditional-fields {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
}

.field span,
.field-group legend {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
  outline: none;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--jade);
  box-shadow: 0 0 0 3px rgba(61, 184, 180, 0.14);
}

.field-help {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.field-group {
  margin: 18px 0 0;
  padding: 0;
  border: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.choice-grid label,
.switch-row {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.38);
  font-size: 14px;
  line-height: 1.35;
}

.compact-group {
  display: grid;
  gap: 8px;
}

.conditional-fields {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.32);
}

.conditional-fields h3 {
  margin-bottom: 4px;
  font-size: 18px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

.privacy-note {
  margin: 14px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.privacy-note.center {
  text-align: center;
}

.form-error {
  min-height: 18px;
  color: var(--cinnabar);
  font-size: 14px;
  line-height: 1.4;
}

.result-screen {
  padding-top: 8px;
}

.result-card {
  padding: 28px 24px;
}

.result-card h2 {
  margin-bottom: 14px;
  font-family: var(--font-fangsong);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.25;
}

.result-card p {
  color: #3e4651;
  line-height: 1.78;
}

.result-block {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.result-block strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.result-action {
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius);
  color: var(--ink);
  border-left: 3px solid var(--cinnabar);
  background: rgba(255, 255, 255, 0.48);
  line-height: 1.6;
}

.success-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.term-actions {
  grid-template-columns: 1fr 1fr;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
}

.login-panel {
  width: min(100%, 420px);
  padding: 24px;
}

.login-panel h1 {
  font-size: 30px;
}

.login-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.admin-shell {
  width: min(1460px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.admin-header h1 {
  margin-bottom: 8px;
  font-size: 32px;
}

.admin-header p {
  color: var(--muted);
  line-height: 1.5;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.admin-actions .secondary-button,
.admin-actions .text-button {
  width: auto;
  min-height: 40px;
  padding: 0 13px;
}

.warning-strip {
  margin-bottom: 14px;
  padding: 12px 14px;
  color: #744033;
  background: rgba(255, 232, 196, 0.86);
  border: 1px solid rgba(185, 135, 66, 0.35);
  border-radius: var(--radius);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.stat-card {
  padding: 16px;
  box-shadow: none;
}

.stat-card span {
  color: var(--muted);
  font-size: 14px;
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
}

.level-s strong {
  color: var(--cinnabar);
}

.level-a strong {
  color: var(--gold);
}

.level-b strong {
  color: var(--jade);
}

.level-c strong {
  color: var(--muted);
}

.admin-panel {
  padding: 16px;
  box-shadow: none;
}

.filter-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(150px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.field.compact input,
.field.compact select {
  min-height: 40px;
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 252, 244, 0.54);
}

.data-table {
  width: 100%;
  min-width: 1180px;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 11px 10px;
  border-bottom: 1px solid rgba(36, 92, 75, 0.12);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.45;
}

.data-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: var(--jade-dark);
  background: #f3ead9;
}

.data-table tbody tr {
  cursor: pointer;
}

.data-table tbody tr:hover {
  background: rgba(185, 135, 66, 0.1);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.tag-list span,
.level-pill {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(36, 92, 75, 0.1);
  color: var(--jade-dark);
  font-size: 13px;
}

.level-pill {
  color: #fffaf0;
  font-weight: 700;
}

.level-pill.level-s {
  background: var(--cinnabar);
}

.level-pill.level-a {
  background: var(--gold);
}

.level-pill.level-b {
  background: var(--jade);
}

.level-pill.level-c {
  background: var(--muted);
}

.detail-drawer {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  background: rgba(30, 37, 34, 0.42);
  z-index: 10;
}

.drawer-card {
  width: min(520px, 100%);
  height: 100%;
  overflow: auto;
  padding: 22px;
  border-radius: 0;
  background: #fbf7ed;
}

.drawer-close {
  float: right;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--jade-dark);
  background: #fffaf0;
}

.drawer-card h2 {
  margin-bottom: 14px;
}

.detail-list {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
}

.detail-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.detail-list dt {
  color: var(--muted);
}

.detail-list dd {
  margin: 0;
}

.drawer-section {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.drawer-section h3 {
  font-size: 18px;
}

.drawer-section p {
  color: #38443e;
  line-height: 1.7;
}

.edit-section {
  display: grid;
  gap: 12px;
}

.empty-row td {
  text-align: center;
  color: var(--muted);
  padding: 30px;
}

@media (min-width: 761px) and (max-width: 1120px) {
  .screen.active.landing-screen {
    padding-top: 20px;
  }

  .landing-hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .landing-story-stack {
    grid-template-columns: 132px 1fr;
  }

  .screen.active.hero-screen {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-left,
  .hero-side,
  .experience-board {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-left,
  .hero-side {
    width: 100%;
  }

  .hero-side {
    max-width: 760px;
    justify-self: center;
    align-self: start;
    grid-template-rows: auto;
  }

  .hero-art {
    width: min(100%, 760px);
    max-width: none;
    justify-self: center;
  }

  .season-flow-panel {
    width: min(100%, 760px);
    justify-self: center;
    grid-template-columns: 1fr;
  }

  .experience-board .section-heading {
    grid-template-columns: 1fr;
  }

  .experience-board .section-heading .quiet-label,
  .experience-board .section-heading h2 {
    grid-column: auto;
  }

  .experience-board .section-heading h2 {
    justify-self: start;
    max-width: none;
    text-align: left;
  }

  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chat-panel {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    padding: 10px;
    border-radius: 24px;
  }

  .chat-panel.is-landing {
    grid-template-rows: auto auto;
    padding: 24px;
  }

  .chat-starter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chat-intro {
    grid-column: 1;
    grid-row: auto;
    min-height: 0;
    padding: 34px 32px 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(169, 133, 73, 0.14);
  }

  .chat-intro h2 {
    max-width: none;
  }

  .chat-conversation {
    grid-column: 1;
    grid-row: auto;
    height: auto;
    grid-template-rows: auto auto auto auto;
    padding: 24px 18px 16px;
  }

  .chat-log {
    grid-column: auto;
    grid-row: auto;
    height: min(500px, 50vh);
    min-height: 340px;
    max-height: none;
  }

  .chat-composer {
    grid-column: auto;
    grid-row: auto;
  }

  .chat-panel .form-error {
    grid-column: auto;
    grid-row: auto;
  }

  .chat-panel .privacy-note.center {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .mobile-shell {
    width: 100%;
    padding: 0 14px 18px;
  }

  .screen.active.landing-screen {
    display: block;
    padding: 16px 0 24px;
  }

  .landing-hero {
    display: block;
  }

  .landing-main,
  .landing-side {
    gap: 14px;
  }

  .landing-side {
    margin-top: 18px;
  }

  .landing-story-stack {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .landing-story-stack .scroll-mark {
    width: 100%;
    min-height: 118px;
  }

  .landing-cta-group {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .landing-cta-group .secondary-button {
    width: 100%;
  }

  .landing-atlas-card {
    padding: 18px 14px 16px;
    border-radius: 18px;
  }

  .landing-atlas-card::before {
    inset: 8px;
  }

  .landing-art-header {
    gap: 8px;
    margin-bottom: 14px;
  }

  .landing-art-header p {
    letter-spacing: 3px;
  }

  .landing-wheel-frame {
    padding: 8px;
  }

  .landing-float-grid {
    grid-template-columns: 1fr;
  }

  .brand-bar {
    min-height: auto;
    flex-wrap: wrap;
    gap: 8px 14px;
    padding: 10px 0 8px;
  }

  .brand-nav {
    position: static;
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 0;
    padding-top: 8px;
    transform: none;
    border-top: 1px solid rgba(21, 24, 30, 0.08);
    font-size: 14px;
  }

  .brand-nav a {
    flex: 1;
    padding: 8px 6px;
    text-align: center;
  }

  .screen.active.hero-screen {
    display: block;
    overflow: hidden;
    padding: 16px 0 22px;
  }

  .hero-left,
  .hero-side,
  .experience-board {
    max-width: 100%;
    overflow: hidden;
  }

  .hero-art {
    --hero-art-inset: 8px;
    width: 100%;
    max-width: calc(100vw - 28px);
    height: auto;
    min-height: 0;
    border-radius: 24px;
  }

  .hero-side {
    width: 100%;
    margin-top: 18px;
    align-self: start;
    grid-template-rows: auto;
  }

  .term-preview-card {
    height: auto;
    padding: 12px;
    border-radius: 26px;
  }

  .term-preview-card::before {
    inset: 7px;
    border-radius: 21px;
  }

  .term-preview-card::after {
    left: -36px;
    bottom: -64px;
    width: 160px;
    height: 160px;
  }

  .term-preview-top {
    min-height: 320px;
    margin-bottom: 0;
    border-radius: 22px;
  }

  .term-preview-top::after,
  .term-preview-headline::before,
  .term-preview-badge::before {
    display: none;
  }

  .term-preview-title-stack {
    left: 14px;
    right: 16px;
    bottom: 22px;
    width: auto;
    gap: 8px;
    padding: 15px 14px 13px;
    border-radius: 22px;
  }

  .term-preview-title-stack::before {
    font-size: 9px;
    letter-spacing: 0.28em;
  }

  .term-preview-title-stack::after {
    width: 48px;
  }

  .term-preview-card h2 {
    font-size: 36px;
  }

  .term-preview-pinyin {
    font-size: 12px;
    letter-spacing: 4px;
  }

  .term-preview-lead {
    font-size: 13px;
    line-height: 1.66;
  }

  .term-preview-badge {
    top: -1px;
    right: 18px;
    width: 42px;
    height: 70px;
    padding-top: 18px;
    font-size: 19px;
    -webkit-mask:
      linear-gradient(#000 0 0) top / 100% calc(100% - 12px) no-repeat,
      linear-gradient(135deg, #000 49%, transparent 51%) bottom left / 50% 12px no-repeat,
      linear-gradient(225deg, #000 49%, transparent 51%) bottom right / 50% 12px no-repeat;
    mask:
      linear-gradient(#000 0 0) top / 100% calc(100% - 12px) no-repeat,
      linear-gradient(135deg, #000 49%, transparent 51%) bottom left / 50% 12px no-repeat,
      linear-gradient(225deg, #000 49%, transparent 51%) bottom right / 50% 12px no-repeat;
  }

  .term-preview-body {
    gap: 8px;
  }

  .term-preview-detail-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .term-preview-section {
    gap: 10px;
    padding: 14px 14px 13px;
    border-radius: 18px;
  }

  .term-preview-section::before {
    left: 14px;
    right: 14px;
  }

  .term-preview-section strong {
    gap: 8px;
    font-size: 13px;
  }

  .term-preview-section strong::before {
    width: 16px;
  }

  .term-preview-section-wide {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .term-preview-section p {
    font-size: 15px;
    line-height: 1.64;
  }

  .term-preview-section .term-preview-note {
    font-size: 14px;
    line-height: 1.56;
  }

  .term-preview-chip {
    padding: 8px 13px 8px 23px;
    font-size: 14px;
  }

  .term-preview-chip::before {
    left: 10px;
    width: 5px;
    height: 5px;
    box-shadow: 0 0 0 3px var(--term-accent-soft);
  }

  .term-preview-quote-wrap {
    min-height: 104px;
    grid-template-columns: 34px 34px minmax(0, 1fr);
    gap: 8px;
    padding: 16px 18px 16px 20px;
    border-radius: 20px;
  }

  .term-preview-quote-wrap::after {
    top: 16px;
    right: 17px;
    width: 34px;
    height: 34px;
    transform: none;
  }

  .term-preview-quote-label {
    width: 34px;
    min-width: 34px;
    height: 66px;
    padding: 8px 6px 13px;
    border-radius: 14px;
    font-size: 10px;
  }

  .term-preview-quote-seal {
    width: 34px;
    height: 34px;
    font-size: 9px;
  }

  .term-preview-quote {
    padding: 2px 12px 0 0;
    font-size: 18px;
    line-height: 1.5;
  }

  .hero-content {
    width: 100%;
    max-width: calc(100vw - 28px);
    margin-top: -26px;
    padding: 24px 16px 18px;
  }

  .hero-content::before {
    inset: 8px;
  }

  .hero-content::after {
    right: 14px;
    top: 16px;
    font-size: 76px;
  }

  .hero-content .quiet-label {
    margin-bottom: 14px;
    padding: 4px 8px 4px 10px;
    font-size: 12px;
    letter-spacing: 3px;
  }

  .season-flow-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    margin-top: 18px;
    padding: 18px 14px;
    border: 0;
    border-top: 1px solid var(--line);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .season-flow-panel::before {
    display: none;
  }

  .season-flow-copy h2 {
    font-size: 26px;
    line-height: 1.25;
  }

  .season-flow-copy p:not(.quiet-label) {
    font-size: 14px;
    line-height: 1.65;
  }

  .season-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .season-flow-grid article {
    min-height: 118px;
    padding: 12px;
    align-content: start;
  }

  .season-flow-grid span {
    margin-bottom: 12px;
  }

  .atlas-hotspots::before {
    inset: 12.8%;
  }

  .atlas-hotspots::after {
    inset: 43%;
  }

  .atlas-sector:hover,
  .atlas-sector:focus-visible,
  .atlas-sector.is-active {
    transform: none;
  }

  .atlas-sector:hover::before,
  .atlas-sector:focus-visible::before,
  .atlas-sector.is-active::before {
    -webkit-backdrop-filter: saturate(1.12) brightness(1.06) contrast(1.03);
    backdrop-filter: saturate(1.12) brightness(1.06) contrast(1.03);
  }

  .atlas-sector::after {
    padding: 8px 5px 7px;
    font-size: 10px;
  }

  .scroll-mark {
    width: 132px;
    min-height: 122px;
    padding: 12px 10px;
    gap: 3px;
  }

  .scroll-mark::before {
    width: 38px;
    height: 38px;
    margin-bottom: 3px;
    font-size: 25px;
  }

  .scroll-mark::after {
    display: none;
  }

  .scroll-mark span {
    font-size: 15px;
  }

  h1 {
    margin-top: 16px;
    font-size: 34px;
    line-height: 1.12;
  }

  .hero-content h1 {
    gap: 6px;
    margin-top: 0;
    margin-bottom: 16px;
  }

  .hero-title-main {
    font-size: 46px;
  }

  .hero-title-line,
  .hero-title-tail {
    max-width: 100%;
    font-size: 27px;
    line-height: 1.16;
  }

  .hero-copy {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-content .hero-copy {
    width: calc(100% - 8px);
    max-width: calc(100% - 8px);
    padding: 10px 12px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-content .primary-button {
    min-height: 56px;
    margin-top: 18px;
    font-size: 20px;
  }

  .solar-picker {
    margin-top: 18px;
    padding-top: 18px;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 0;
    border: 0;
    border-top: 1px solid var(--line);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .home-insight-grid {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 12px;
    border-left: 0;
  }

  .home-insight-grid article {
    min-height: 0;
    padding-top: 10px;
    border-right: 0;
    background: transparent;
  }

  .experience-board {
    margin-top: 18px;
    padding: 18px 14px;
    border: 0;
    border-top: 1px solid var(--line);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .experience-board .section-heading {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .experience-board .section-heading .quiet-label,
  .experience-board .section-heading h2 {
    grid-column: 1;
  }

  .experience-board .section-heading h2 {
    justify-self: start;
    max-width: 100%;
    text-align: left;
    font-size: 27px;
    line-height: 1.22;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .home-screen-actions {
    grid-template-columns: 1fr;
  }

  .experience-grid article {
    min-height: 0;
    padding: 14px 12px;
  }

  .experience-grid span {
    margin-bottom: 8px;
  }

  .solar-term-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .solar-term-button {
    min-height: 104px;
    padding: 6px;
  }

  .solar-term-button span {
    font-size: 13px;
  }

  .term-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 12px;
  }

  .term-wallpaper-frame {
    min-height: 0;
    padding: 10px;
  }

  .term-wallpaper-frame img {
    max-height: 58vh;
  }

  .term-copy h2 {
    font-size: 52px;
  }

  .term-copy > p {
    font-size: 16px;
    line-height: 1.7;
  }

  .question-panel,
  .chat-panel,
  .lead-form,
  .result-card {
    padding: 22px 16px;
  }

  body[data-page="chat"] .mobile-shell {
    padding-right: 14px;
    padding-left: 14px;
  }

  .chat-screen {
    padding-top: 8px;
  }

  .chat-screen .screen-top.simple {
    margin-bottom: 10px;
  }

  .chat-panel {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    gap: 0;
    padding: 8px;
    border-radius: 22px;
  }

  .chat-panel.is-landing {
    grid-template-rows: auto auto;
    padding: 14px 10px;
  }

  .chat-panel::before {
    inset: 7px;
    border-radius: 17px;
  }

  .chat-panel.is-landing .chat-landing {
    gap: 14px;
    padding: 12px 0 8px;
  }

  .chat-agent-avatar {
    width: 62px;
    height: 62px;
    box-shadow:
      0 12px 26px rgba(53, 43, 27, 0.13),
      inset 0 0 0 8px rgba(255, 250, 242, 0.82);
    font-size: 25px;
  }

  .chat-agent-hero h1 {
    font-size: 32px;
  }

  .chat-agent-meta {
    font-size: 14px;
  }

  .chat-agent-copy {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.68;
  }

  .chat-starter-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .chat-starter {
    min-height: 0;
    padding: 12px 13px;
    font-size: 15px;
    line-height: 1.48;
  }

  .chat-intro {
    grid-column: 1;
    grid-row: auto;
    min-height: 0;
    padding: 24px 18px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(169, 133, 73, 0.14);
  }

  .chat-intro h2 {
    max-width: 170px;
    margin-top: 16px;
  }

  .chat-intro h2::after {
    margin-top: 18px;
  }

  .chat-intro p:not(.quiet-label) {
    max-width: none;
    font-size: 15px;
    line-height: 1.85;
  }

  .chat-log,
  .chat-composer,
  .chat-panel .form-error,
  .chat-panel .privacy-note.center {
    margin-right: 0;
    margin-left: 0;
  }

  .chat-conversation {
    grid-column: 1;
    grid-row: auto;
    height: auto;
    gap: 12px;
    grid-template-rows: auto auto auto auto;
    padding: 14px 8px 8px;
  }

  .chat-log {
    height: min(430px, 48vh);
    min-height: 320px;
    max-height: none;
    padding: 24px 18px 54px;
    border-radius: 18px;
  }

  .chat-log::before {
    inset: 8px;
    border-radius: 14px;
  }

  .chat-log::after {
    bottom: 16px;
    width: 104px;
  }

  .chat-composer {
    gap: 8px;
    padding: 8px;
    border-radius: 18px;
    max-width: 100%;
  }

  .chat-composer textarea {
    height: 54px;
    min-height: 54px;
    max-height: 54px;
    padding: 15px 13px;
    border-radius: 14px;
    font-size: 15px;
  }

  .question-panel h2,
  .chat-intro h2,
  .result-card h2 {
    font-size: 30px;
  }

  .choice-grid,
  .success-actions {
    grid-template-columns: 1fr;
  }

  .chat-message {
    max-width: 94%;
    padding: 11px 13px 13px;
  }

  .chat-guides {
    max-width: 94%;
  }

  .chat-guide {
    padding: 9px 12px;
    font-size: 13px;
  }

  .chat-log.is-empty .chat-message.from-assistant {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.85;
  }

  .chat-log.is-empty .chat-message.from-assistant::before {
    min-height: 36px;
    margin-bottom: 14px;
    padding-left: 48px;
    font-size: 17px;
  }

  .chat-log.is-empty .chat-message.from-assistant::after {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .chat-composer > .primary-button {
    flex-basis: 76px;
    min-width: 0;
    height: 54px;
    min-height: 54px;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 15px;
    border-radius: 14px;
  }

  .chat-composer > .primary-button svg {
    width: 18px;
    height: 18px;
  }

  .admin-shell {
    width: min(100% - 20px, 1460px);
    padding-top: 14px;
  }

  .admin-header {
    display: block;
  }

  .admin-actions {
    justify-content: flex-start;
    margin-top: 12px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-row {
    grid-template-columns: 1fr;
  }

  .detail-list div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .term-preview-card h2 {
    font-size: 40px;
  }

  .term-preview-quote {
    font-size: 18px;
  }

  .hero-title-main {
    font-size: 42px;
  }

  .hero-title-line,
  .hero-title-tail {
    font-size: 25px;
  }

  .hero-content .hero-copy {
    font-size: 15px;
  }
}

.brand-nav a {
  color: inherit;
  text-decoration: none;
}

.brand-nav a:hover,
.brand-nav a:focus-visible {
  color: var(--cinnabar);
  outline: none;
}

.home-module {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  padding: 34px 36px;
  border: 1px solid rgba(21, 24, 30, 0.1);
  background: rgba(248, 246, 242, 0.58);
  box-shadow: 0 18px 48px rgba(21, 24, 30, 0.06);
  backdrop-filter: blur(14px);
  scroll-margin-top: 76px;
}

.module-kicker {
  margin-bottom: 18px;
  color: rgba(169, 133, 73, 0.78);
  font-size: 12px;
  letter-spacing: 5px;
}

.module-split,
.module-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1fr);
  gap: 30px;
  align-items: start;
}

.module-title h2,
.module-head h2,
.collection-copy h2,
.consult-copy h2 {
  margin-bottom: 0;
  font-family: var(--font-fangsong);
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1.16;
}

.module-head > p,
.brand-story-copy > p,
.collection-copy > p,
.consult-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.brand-proof-grid,
.method-steps,
.case-grid {
  display: grid;
  border-top: 1px solid rgba(21, 24, 30, 0.11);
  border-left: 1px solid rgba(21, 24, 30, 0.11);
}

.brand-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.brand-proof-grid article,
.method-steps article,
.case-grid article,
.collection-list article {
  padding: 18px 18px 16px;
  border-right: 1px solid rgba(21, 24, 30, 0.11);
  border-bottom: 1px solid rgba(21, 24, 30, 0.11);
  background: rgba(255, 255, 255, 0.2);
}

.brand-proof-grid strong,
.method-steps strong,
.case-grid strong,
.collection-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.brand-proof-grid span,
.collection-list span,
.case-grid p,
.method-steps p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.term-system-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.season-system-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(21, 24, 30, 0.11);
  background: rgba(255, 255, 255, 0.2);
}

.season-system-top {
  min-height: 178px;
  padding: 20px 18px 18px;
  border-bottom: 1px solid rgba(21, 24, 30, 0.1);
}

.season-system-top span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 13px;
}

.season-system-top strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 400;
}

.season-system-top p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.term-chip-grid {
  display: grid;
  gap: 0;
}

.term-chip {
  min-height: 56px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items: center;
  padding: 9px 12px;
  border: 0;
  border-bottom: 1px solid rgba(21, 24, 30, 0.08);
  color: var(--ink);
  background: transparent;
  text-align: left;
}

.term-chip:last-child {
  border-bottom: 0;
}

.term-chip span {
  font-weight: 700;
}

.term-chip small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.term-chip:hover,
.term-chip:focus-visible {
  color: #fffaf4;
  background: var(--ink);
  outline: none;
}

.term-chip:hover small,
.term-chip:focus-visible small {
  color: rgba(255, 250, 244, 0.78);
}

.method-steps,
.case-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.method-steps span,
.case-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 3px;
}

.art-collection {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.collection-visual {
  min-height: 380px;
  padding: 12px;
  border: 1px solid rgba(169, 133, 73, 0.26);
  background: rgba(255, 255, 255, 0.22);
}

.collection-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(21, 24, 30, 0.08);
}

.collection-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.collection-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(21, 24, 30, 0.11);
  border-left: 1px solid rgba(21, 24, 30, 0.11);
}

.case-grid article {
  min-height: 178px;
}

.consult-entry {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(360px, 0.82fr);
  gap: 28px;
  align-items: center;
  border-color: rgba(169, 133, 73, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(248, 246, 242, 0.52) 58%, rgba(219, 61, 48, 0.06)),
    rgba(248, 246, 242, 0.62);
}

.consult-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(21, 24, 30, 0.12);
  background: rgba(255, 255, 255, 0.28);
}

.consult-option {
  min-height: 46px;
  border: 1px solid rgba(21, 24, 30, 0.14);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.34);
  font-size: 15px;
  font-weight: 700;
}

.consult-option.is-active,
.consult-option:hover,
.consult-option:focus-visible {
  color: #fffaf4;
  background: var(--cinnabar);
  border-color: rgba(219, 61, 48, 0.78);
  outline: none;
}

.consult-start,
.consult-test {
  grid-column: span 3;
}

@media (max-width: 1120px) {
  .brand-nav {
    gap: 12px;
    font-size: 13px;
  }

  .module-split,
  .module-head,
  .art-collection,
  .consult-entry {
    grid-template-columns: 1fr;
  }

  .term-system-grid,
  .method-steps,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-list,
  .brand-proof-grid {
    grid-template-columns: 1fr;
  }

  .collection-visual {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .home-module {
    margin-top: 18px;
    padding: 22px 14px;
    border-right: 0;
    border-left: 0;
    background: rgba(248, 246, 242, 0.42);
    box-shadow: none;
    backdrop-filter: none;
    scroll-margin-top: 18px;
  }

  .module-kicker {
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 3px;
  }

  .module-title h2,
  .module-head h2,
  .collection-copy h2,
  .consult-copy h2 {
    font-size: 30px;
  }

  .module-head > p,
  .brand-story-copy > p,
  .collection-copy > p,
  .consult-copy > p {
    font-size: 15px;
    line-height: 1.7;
  }

  .brand-proof-grid,
  .method-steps,
  .case-grid,
  .term-system-grid,
  .collection-list {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .season-system-top {
    min-height: 0;
    padding: 16px 14px;
  }

  .season-system-top span {
    margin-bottom: 12px;
  }

  .season-system-top strong {
    font-size: 26px;
  }

  .term-chip {
    grid-template-columns: 48px 1fr;
    min-height: 52px;
  }

  .method-steps span,
  .case-grid span {
    margin-bottom: 10px;
  }

  .collection-visual {
    min-height: 300px;
  }

  .consult-panel {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .consult-start,
  .consult-test {
    grid-column: auto;
  }
}

.scroll-mark::before {
  content: "序";
}

.scroll-mark::after {
  content: "TIAN EN YUAN / SOLAR RHYTHM";
}

.hero-content::after {
  content: "四时";
}

.hero-content .hero-copy {
  word-break: keep-all;
}

/* Tian En Yuan homepage showcase */
.home-showcase {
  --home-paper: #f7f1e7;
  --home-paper-deep: #ece2d2;
  --home-ink: #252018;
  --home-muted: #6b6152;
  --home-line: rgba(70, 54, 32, 0.14);
  --home-gold: #a98147;
  --home-red: #b54832;
  --home-moss: #536f63;
  position: relative;
  display: grid;
  gap: 0;
  color: var(--home-ink);
  padding-bottom: 42px;
}

.home-showcase::before {
  content: "";
  position: absolute;
  inset: 0 50%;
  width: 100vw;
  margin-left: -50vw;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.88), rgba(247, 241, 231, 0.86) 46%, rgba(238, 229, 213, 0.72)),
    radial-gradient(circle at 10% 9%, rgba(181, 72, 50, 0.09), transparent 22%),
    radial-gradient(circle at 86% 28%, rgba(83, 111, 99, 0.1), transparent 24%);
}

.home-hero-panel {
  position: relative;
  min-height: clamp(640px, 82vh, 880px);
  display: grid;
  grid-template-columns: minmax(430px, 0.46fr) minmax(260px, 1fr) 78px;
  align-items: center;
  gap: 26px;
  margin: 0 -24px;
  padding: clamp(54px, 7vw, 98px) 24px 54px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 241, 231, 0.98) 0%, rgba(247, 241, 231, 0.9) 30%, rgba(247, 241, 231, 0.42) 49%, rgba(247, 241, 231, 0.08) 68%),
    linear-gradient(180deg, rgba(247, 241, 231, 0.1), rgba(247, 241, 231, 0.14) 68%, rgba(247, 241, 231, 0.72)),
    url("/assets/home/home-hero-solar-wheel.png?v=20260520-1") center center / cover no-repeat;
}

.home-hero-panel::before {
  content: "";
  position: absolute;
  inset: 22px 24px 34px;
  z-index: 0;
  background:
    linear-gradient(rgba(169, 129, 71, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169, 129, 71, 0.035) 1px, transparent 1px);
  background-size: 100% 48px, 48px 100%;
  border: 1px solid rgba(169, 129, 71, 0.08);
  pointer-events: none;
}

.home-hero-copy,
.home-hero-art,
.home-hero-verse {
  position: relative;
  z-index: 1;
}

.home-hero-copy {
  grid-column: 1;
  max-width: 620px;
  padding-left: clamp(20px, 3vw, 58px);
}

.home-kicker,
.home-section-label {
  margin: 0;
  color: var(--home-gold);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.home-hero-copy h1 {
  margin: 24px 0 12px;
  font-family: var(--font-fangsong);
  font-size: clamp(76px, 8vw, 132px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  white-space: nowrap;
  word-break: keep-all;
}

.home-subtitle {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.5;
}

.home-lead {
  max-width: 510px;
  margin: 28px 0 0;
  color: var(--home-muted);
  font-size: 17px;
  line-height: 1.9;
}

.home-hero-actions,
.home-product-points,
.home-consult-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-hero-actions {
  margin-top: 32px;
}

.home-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  color: var(--home-ink);
  background: rgba(255, 252, 246, 0.62);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.home-btn:hover,
.home-btn:focus-visible,
.home-entry-chip:hover,
.home-entry-chip:focus-visible,
.home-season-card button:hover,
.home-season-card button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.home-btn-primary {
  color: #fff8ef;
  border-color: rgba(169, 129, 71, 0.42);
  background: linear-gradient(135deg, #b98a4a, #8f6938);
}

.home-btn-ghost {
  border-color: rgba(70, 54, 32, 0.18);
}

.home-btn-ghost:hover,
.home-btn-ghost:focus-visible {
  color: var(--home-red);
  border-color: rgba(181, 72, 50, 0.34);
}

.home-hero-art {
  display: none;
}

.home-hero-art img,
.home-band-image img,
.home-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-art img {
  object-position: 58% 50%;
}

.home-hero-verse {
  grid-column: 3;
  display: grid;
  justify-items: center;
  gap: 18px;
  align-self: center;
  padding-right: clamp(0px, 1vw, 20px);
}

.home-hero-verse span {
  writing-mode: vertical-rl;
  color: var(--home-muted);
  font-size: 18px;
  letter-spacing: 0.14em;
}

.home-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
  background: rgba(255, 252, 246, 0.66);
}

.home-proof-strip article {
  min-height: 116px;
  padding: 24px 24px 20px;
  border-right: 1px solid var(--home-line);
}

.home-proof-strip article:last-child {
  border-right: 0;
}

.home-proof-strip span {
  color: var(--home-red);
  font-size: 13px;
}

.home-proof-strip strong {
  display: block;
  margin: 9px 0 6px;
  font-size: 19px;
  font-weight: 400;
}

.home-proof-strip p,
.home-brand-band p,
.home-product-band p,
.home-tile-grid p,
.home-consult-band p,
.home-season-card p {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.76;
}

.home-brand-band,
.home-product-band,
.home-consult-band,
.home-section {
  position: relative;
  margin: 0 -24px;
  padding: clamp(44px, 6vw, 82px) 24px;
}

.home-brand-band,
.home-product-band,
.home-consult-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.home-brand-band {
  background: linear-gradient(90deg, rgba(255, 252, 246, 0.96) 0%, rgba(255, 252, 246, 0.9) 42%, rgba(236, 226, 210, 0.58));
}

.home-product-band {
  background:
    linear-gradient(90deg, rgba(255, 252, 246, 0.98) 0%, rgba(255, 252, 246, 0.84) 38%, rgba(28, 24, 20, 0.04)),
    var(--home-paper);
}

.home-section {
  background: rgba(255, 252, 246, 0.7);
}

.home-band-copy,
.home-product-copy,
.home-consult-copy,
.home-section-head {
  width: min(100%, 1240px);
  margin: 0 auto;
}

.home-brand-band > *,
.home-product-band > *,
.home-consult-band > * {
  min-width: 0;
}

.home-band-copy,
.home-product-copy,
.home-consult-copy {
  padding-left: clamp(0px, 3vw, 58px);
}

.home-band-copy h2,
.home-product-copy h2,
.home-consult-copy h2,
.home-section-head h2 {
  max-width: 760px;
  margin: 12px 0 18px;
  font-family: var(--font-fangsong);
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.home-band-copy p:not(.home-section-label),
.home-product-copy p,
.home-consult-copy p,
.home-section-head h2 {
  text-wrap: pretty;
}

.home-band-image,
.home-product-image {
  min-height: 360px;
  height: clamp(360px, 34vw, 520px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(70, 54, 32, 0.1);
  background: rgba(255, 252, 246, 0.5);
}

.home-band-image img {
  object-position: center;
}

.home-section-head {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: 30px;
}

.home-section-head h2 {
  margin-bottom: 0;
}

.home-season-grid,
.home-tile-grid {
  width: min(100%, 1260px);
  margin: 0 auto;
}

.home-season-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-season-card {
  min-height: 300px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 28px 24px 24px;
  border: 1px solid rgba(70, 54, 32, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.74), rgba(255, 252, 246, 0.9)),
    radial-gradient(circle at 20% 18%, rgba(83, 111, 99, 0.14), transparent 32%);
  overflow: hidden;
}

.home-season-card h3 {
  margin: 0;
  font-family: var(--font-fangsong);
  font-size: 54px;
  font-weight: 400;
  line-height: 1;
}

.home-season-card strong {
  font-size: 20px;
  font-weight: 400;
}

.home-season-card button {
  width: fit-content;
  min-height: 38px;
  margin-top: 16px;
  border: 1px solid rgba(70, 54, 32, 0.12);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--home-ink);
  background: rgba(255, 252, 246, 0.72);
}

.season-spring {
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.72), rgba(255, 252, 246, 0.92)),
    radial-gradient(circle at 26% 12%, rgba(110, 153, 101, 0.25), transparent 38%),
    url("/assets/home/home-season-li-chun.webp?v=20260521-season1") center / cover;
}

.season-summer {
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.7), rgba(255, 252, 246, 0.92)),
    radial-gradient(circle at 26% 12%, rgba(184, 132, 57, 0.22), transparent 38%),
    url("/assets/home/home-season-xia-zhi.webp?v=20260521-season1") center / cover;
}

.season-autumn {
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.72), rgba(255, 252, 246, 0.92)),
    radial-gradient(circle at 26% 12%, rgba(181, 72, 50, 0.2), transparent 38%),
    url("/assets/home/home-season-qiu-fen.webp?v=20260521-season1") center / cover;
}

.season-winter {
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.74), rgba(255, 252, 246, 0.92)),
    radial-gradient(circle at 26% 12%, rgba(96, 117, 143, 0.2), transparent 38%),
    url("/assets/home/home-season-dong-zhi.webp?v=20260521-season1") center / cover;
}

.home-product-points {
  margin-top: 24px;
}

.home-product-point {
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(169, 129, 71, 0.18);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--home-muted);
  background: rgba(255, 252, 246, 0.72);
}

.home-product-image {
  height: clamp(380px, 38vw, 560px);
}

.home-tile-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.home-tile-grid article {
  min-width: 0;
  display: grid;
  gap: 8px;
  text-align: center;
}

.home-tile-grid h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
}

.home-tile-grid p {
  font-size: 13px;
  line-height: 1.5;
}

.home-sprite {
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: 6px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 28px rgba(50, 39, 24, 0.07);
}

.lifestyle-1 {
  background-image: url("/assets/home/lifestyle-1.webp?v=20260521-split1");
}

.lifestyle-2 {
  background-image: url("/assets/home/lifestyle-2.webp?v=20260521-split1");
}

.lifestyle-3 {
  background-image: url("/assets/home/lifestyle-3-pillow-bg.webp?v=20260521-pillow-bg1");
}

.lifestyle-4 {
  background-image: url("/assets/home/lifestyle-4.webp?v=20260521-split1");
}

.lifestyle-5 {
  background-image: url("/assets/home/lifestyle-5.webp?v=20260521-split1");
}

.lifestyle-6 {
  background-image: url("/assets/home/lifestyle-6.webp?v=20260521-split1");
}

.collab-1 {
  background-image: url("/assets/home/collab-1.webp?v=20260521-split1");
}

.collab-2 {
  background-image: url("/assets/home/collab-2.webp?v=20260521-split1");
}

.collab-3 {
  background-image: url("/assets/home/collab-3.webp?v=20260521-split1");
}

.collab-4 {
  background-image: url("/assets/home/collab-4.webp?v=20260521-split1");
}

.collab-5 {
  background-image: url("/assets/home/collab-5.webp?v=20260521-split1");
}

.collab-6 {
  background-image: url("/assets/home/collab-6.webp?v=20260521-split1");
}

.home-consult-band {
  grid-template-columns: minmax(300px, 0.86fr) minmax(360px, 0.82fr);
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(255, 252, 246, 0.94), rgba(239, 231, 217, 0.72)),
    radial-gradient(circle at 82% 18%, rgba(181, 72, 50, 0.12), transparent 26%);
  border-top: 1px solid var(--home-line);
}

.home-consult-panel {
  align-content: start;
  padding: 22px;
  border: 1px solid rgba(70, 54, 32, 0.12);
  background: rgba(255, 252, 246, 0.48);
}

.home-entry-chip {
  min-height: 42px;
  flex: 1 1 30%;
  border: 1px solid rgba(70, 54, 32, 0.14);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--home-ink);
  background: rgba(255, 252, 246, 0.76);
}

.home-entry-chip.is-active {
  color: #fff8ef;
  border-color: rgba(181, 72, 50, 0.5);
  background: linear-gradient(135deg, #be533c, #96402f);
}

.home-consult-panel .home-btn {
  flex: 1 1 46%;
  margin-top: 6px;
}

@media (max-width: 1180px) {
  .home-hero-panel {
    grid-template-columns: minmax(0, 1fr) 74px;
    background-position: 56% center;
  }

  .home-hero-verse {
    grid-column: 2;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .home-hero-verse span {
    writing-mode: vertical-rl;
    text-align: center;
  }

  .home-season-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-tile-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .home-hero-panel,
  .home-brand-band,
  .home-product-band,
  .home-consult-band {
    grid-template-columns: 1fr;
  }

  .home-hero-panel {
    min-height: 0;
    padding-top: 42px;
    background-position: 61% center;
  }

  .home-hero-copy {
    max-width: 560px;
    padding-right: 8px;
  }

  .home-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-proof-strip article:nth-child(2) {
    border-right: 0;
  }

  .home-band-copy,
  .home-product-copy,
  .home-consult-copy {
    padding-left: 0;
  }
}

@media (max-width: 760px) {
  .home-showcase {
    padding-bottom: 26px;
  }

  .home-hero-panel {
    min-height: 760px;
    gap: 18px;
    margin-right: -14px;
    margin-left: -14px;
    padding: 24px 14px 28px;
    align-items: start;
    background:
      linear-gradient(180deg, rgba(247, 241, 231, 0.94) 0%, rgba(247, 241, 231, 0.9) 38%, rgba(247, 241, 231, 0.1) 66%, rgba(247, 241, 231, 0.24) 100%),
      url("/assets/home/home-hero-solar-wheel.png?v=20260520-1") 62% bottom / auto 48% no-repeat;
    grid-template-columns: 1fr;
  }

  .home-hero-copy h1 {
    margin-top: 18px;
    font-size: clamp(58px, 20vw, 78px);
  }

  .home-subtitle {
    font-size: 20px;
  }

  .home-lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.76;
  }

  .home-hero-actions,
  .home-product-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-btn {
    width: 100%;
  }

  .home-hero-verse {
    grid-column: 1;
    align-self: end;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .home-hero-verse span {
    writing-mode: horizontal-tb;
    font-size: 14px;
  }

  .home-proof-strip,
  .home-season-grid,
  .home-tile-grid {
    grid-template-columns: 1fr;
  }

  .home-proof-strip article,
  .home-proof-strip article:nth-child(2) {
    border-right: 0;
  }

  .home-proof-strip article {
    min-height: 0;
    padding: 18px 14px;
  }

  .home-brand-band,
  .home-product-band,
  .home-consult-band,
  .home-section {
    margin-right: -14px;
    margin-left: -14px;
    padding: 36px 14px;
  }

  .home-band-copy h2,
  .home-product-copy h2,
  .home-consult-copy h2,
  .home-section-head h2 {
    font-size: 30px;
    line-height: 1.25;
  }

  .home-band-image,
  .home-product-image {
    height: 300px;
    min-height: 300px;
  }

  .home-section-head {
    justify-items: start;
    text-align: left;
    margin-bottom: 18px;
  }

  .home-season-card {
    min-height: 240px;
  }

  .home-tile-grid {
    gap: 18px;
  }

  .home-tile-grid article {
    text-align: left;
  }

  .home-sprite {
    aspect-ratio: 16 / 9;
  }

  .home-consult-panel {
    padding: 14px;
  }

  .home-entry-chip,
  .home-consult-panel .home-btn {
    flex-basis: 100%;
  }
}

/* Homepage polish pass */
.home-showcase {
  --home-paper: #f8f3ea;
  --home-paper-deep: #eadfce;
  --home-ink: #1e1913;
  --home-muted: #746858;
  --home-line: rgba(81, 61, 34, 0.16);
  --home-gold: #a77d42;
  --home-red: #b64731;
  --home-moss: #4f675d;
  padding-bottom: 0;
}

.home-proof-strip,
.home-brand-band,
.home-product-band,
.home-section,
.home-consult-band {
  isolation: isolate;
}

.home-proof-strip {
  position: relative;
  z-index: 2;
  margin: 0 -24px;
  padding: 20px clamp(24px, 5vw, 76px);
  border-top: 1px solid rgba(167, 125, 66, 0.18);
  border-bottom: 1px solid rgba(167, 125, 66, 0.18);
  background:
    linear-gradient(90deg, rgba(255, 252, 246, 0.86), rgba(246, 237, 222, 0.72)),
    repeating-linear-gradient(90deg, rgba(167, 125, 66, 0.035) 0, rgba(167, 125, 66, 0.035) 1px, transparent 1px, transparent 42px);
}

.home-proof-strip article {
  position: relative;
  min-height: 96px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-content: center;
  padding: 14px clamp(12px, 2vw, 28px);
  border-right: 1px solid rgba(167, 125, 66, 0.18);
}

.home-proof-strip article::before {
  content: "";
  grid-row: 1 / 3;
  align-self: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(167, 125, 66, 0.38);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(182, 71, 49, 0.2) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(255, 252, 246, 0.96), rgba(236, 224, 205, 0.72));
  box-shadow: inset 0 0 0 7px rgba(255, 252, 246, 0.72);
}

.home-proof-strip span {
  display: none;
}

.home-proof-strip strong {
  margin: 0 0 4px;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.home-proof-strip p {
  font-size: 14px;
}

.home-brand-band {
  min-height: 470px;
  grid-template-columns: minmax(320px, 0.45fr) minmax(0, 0.9fr);
  gap: clamp(26px, 5vw, 90px);
  padding-top: clamp(58px, 7vw, 96px);
  padding-bottom: clamp(58px, 7vw, 96px);
  background:
    linear-gradient(90deg, rgba(255, 252, 246, 0.98) 0%, rgba(255, 252, 246, 0.94) 42%, rgba(255, 252, 246, 0.3) 68%, rgba(234, 223, 206, 0.16)),
    linear-gradient(180deg, rgba(248, 243, 234, 0.74), rgba(246, 237, 222, 0.48));
}

.home-brand-band::before,
.home-product-band::before,
.home-section::before,
.home-consult-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.home-brand-band::before {
  background:
    radial-gradient(circle at 18% 28%, rgba(182, 71, 49, 0.07), transparent 22%),
    linear-gradient(rgba(81, 61, 34, 0.028) 1px, transparent 1px);
  background-size: auto, 100% 40px;
}

.home-band-copy {
  position: relative;
  max-width: 480px;
}

.home-band-copy::after,
.home-product-copy::after,
.home-consult-copy::after {
  content: "";
  display: block;
  width: 96px;
  height: 1px;
  margin-top: 24px;
  background: linear-gradient(90deg, rgba(167, 125, 66, 0.76), rgba(167, 125, 66, 0));
}

.home-band-image {
  height: clamp(390px, 36vw, 560px);
  border: 0;
  box-shadow: -34px 0 70px rgba(248, 243, 234, 0.96);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 16%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 16%, #000 100%);
}

.home-section {
  padding-top: clamp(56px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 96px);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.86), rgba(248, 243, 234, 0.76)),
    radial-gradient(circle at 50% 0, rgba(167, 125, 66, 0.1), transparent 32%);
}

.home-section-head {
  margin-bottom: 34px;
}

.home-section-head .home-section-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.home-section-head .home-section-label::before,
.home-section-head .home-section-label::after {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(167, 125, 66, 0.42);
}

.home-section-head h2 {
  max-width: 820px;
  font-size: clamp(34px, 3.6vw, 52px);
}

.home-season-system .home-section-head h2 {
  width: max-content;
  max-width: none;
  white-space: nowrap;
}

#collab .home-section-head h2 {
  width: max-content;
  max-width: none;
  white-space: nowrap;
}

.home-season-system {
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.94), rgba(246, 238, 225, 0.78)),
    radial-gradient(circle at 18% 12%, rgba(80, 103, 93, 0.08), transparent 28%);
}

.home-season-grid {
  gap: 20px;
}

.home-season-card {
  min-height: 330px;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 34px 24px 28px;
  border-color: rgba(167, 125, 66, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(61, 46, 26, 0.08);
}

.home-season-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 252, 246, 0.7);
  border-radius: 6px;
  pointer-events: none;
}

.home-season-card h3 {
  font-size: 58px;
  text-shadow: 0 1px 0 rgba(255, 252, 246, 0.76);
}

.home-season-card strong {
  font-size: 21px;
}

.home-season-card p {
  color: rgba(30, 25, 19, 0.72);
}

.home-season-card button {
  margin-top: 20px;
  border-color: rgba(167, 125, 66, 0.28);
  background: rgba(255, 252, 246, 0.78);
}

.home-product-band {
  min-height: 540px;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 1fr);
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 252, 246, 0.98) 0%, rgba(255, 252, 246, 0.94) 36%, rgba(255, 252, 246, 0.36) 58%, rgba(248, 243, 234, 0.78)),
    #f8f3ea;
}

.home-product-copy {
  max-width: 520px;
  padding-top: clamp(56px, 7vw, 94px);
  padding-bottom: clamp(56px, 7vw, 94px);
}

.home-product-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(70px, 1fr));
  gap: 14px;
  max-width: 500px;
}

.home-product-point {
  min-height: 78px;
  display: grid;
  place-items: center;
  border-radius: 0;
  padding: 12px 10px;
  color: rgba(30, 25, 19, 0.82);
  border-color: rgba(167, 125, 66, 0.2);
  background:
    radial-gradient(circle at 50% 18%, rgba(167, 125, 66, 0.16), transparent 26%),
    rgba(255, 252, 246, 0.62);
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
}

.home-product-image {
  align-self: stretch;
  height: auto;
  min-height: 540px;
  border: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 20%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 20%, #000 100%);
}

.home-product-image img {
  object-position: center;
}

.home-tile-grid {
  gap: 18px;
}

.home-tile-grid article {
  position: relative;
  gap: 8px;
  padding-bottom: 4px;
  text-align: center;
}

.home-sprite {
  border-radius: 4px;
  box-shadow: 0 20px 46px rgba(61, 46, 26, 0.1);
  filter: saturate(0.94) contrast(1.02);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.home-tile-grid article:hover .home-sprite {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(61, 46, 26, 0.13);
  filter: saturate(1) contrast(1.03);
}

.home-tile-grid h3 {
  margin-top: 4px;
  font-size: 19px;
  letter-spacing: 0.03em;
}

.home-tile-grid p {
  font-size: 14px;
  color: rgba(30, 25, 19, 0.66);
}

.home-consult-band {
  min-height: 440px;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.54fr);
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: clamp(56px, 7vw, 88px);
  background:
    linear-gradient(135deg, rgba(255, 252, 246, 0.96), rgba(237, 228, 211, 0.84)),
    radial-gradient(circle at 80% 18%, rgba(182, 71, 49, 0.12), transparent 26%);
}

.home-consult-band::before {
  background:
    linear-gradient(90deg, rgba(167, 125, 66, 0.11) 1px, transparent 1px),
    linear-gradient(rgba(167, 125, 66, 0.07) 1px, transparent 1px);
  background-size: 64px 100%, 100% 64px;
  opacity: 0.5;
}

.home-consult-copy {
  max-width: 880px;
}

.home-consult-content {
  display: grid;
  gap: clamp(20px, 2.7vw, 30px);
  align-content: center;
}

.home-mentor-photo {
  position: relative;
  min-height: 480px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(167, 125, 66, 0.2);
  background:
    linear-gradient(135deg, rgba(244, 235, 218, 0.58), rgba(255, 252, 246, 0.24)),
    rgba(237, 228, 211, 0.26);
  box-shadow:
    0 24px 62px rgba(61, 46, 26, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.home-mentor-photo::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  border: 1px solid rgba(255, 252, 246, 0.48);
  pointer-events: none;
}

.home-mentor-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(30, 25, 19, 0.08), transparent 34%, rgba(244, 235, 218, 0.16)),
    linear-gradient(180deg, transparent 66%, rgba(30, 25, 19, 0.2));
  pointer-events: none;
}

.home-mentor-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: 32% center;
  filter: saturate(0.92) contrast(1.02);
}

.home-contact-card {
  align-self: center;
  display: grid;
  gap: 22px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(167, 125, 66, 0.2);
  background:
    radial-gradient(circle at 88% 18%, rgba(190, 83, 60, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 252, 246, 0.58), rgba(233, 218, 191, 0.34)),
    rgba(244, 235, 218, 0.2);
  box-shadow:
    0 22px 56px rgba(61, 46, 26, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(14px);
}

.home-contact-eyebrow {
  margin: 0;
  color: var(--home-gold);
  font-size: 13px;
  letter-spacing: 0.24em;
}

.home-contact-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.home-contact-tags span {
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(167, 125, 66, 0.18);
  color: rgba(30, 25, 19, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.48), rgba(237, 228, 211, 0.24)),
    rgba(255, 252, 246, 0.18);
  font-size: 15px;
}

.home-contact-line {
  display: grid;
  gap: 6px;
  padding-top: 2px;
}

.home-contact-line small {
  color: rgba(30, 25, 19, 0.54);
  font-size: 13px;
}

.home-contact-line strong {
  color: var(--home-ink);
  font-family: var(--font-fangsong);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.1;
}

.home-contact-call {
  min-height: 52px;
  display: grid;
  place-items: center;
  color: #fffaf4;
  background: linear-gradient(135deg, #be533c, #96402f);
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(150, 64, 47, 0.16);
}

.home-teacher-profile {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(30, 25, 19, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.home-teacher-profile[hidden] {
  display: none;
}

.home-teacher-profile li {
  position: relative;
  padding-left: 16px;
}

.home-teacher-profile li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(167, 125, 66, 0.56);
}

.home-consult-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: center;
  padding: 28px;
  border-color: rgba(167, 125, 66, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.82), rgba(248, 243, 234, 0.58)),
    rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 56px rgba(61, 46, 26, 0.09);
}

.home-entry-chip {
  min-height: 48px;
  flex: none;
  border-radius: 0;
  border-color: rgba(167, 125, 66, 0.18);
  background: rgba(255, 252, 246, 0.72);
}

.home-consult-panel .home-btn {
  width: 100%;
  margin-top: 8px;
}

.home-consult-panel .home-btn-primary {
  grid-column: 1 / -1;
}

@media (max-width: 1180px) {
  .home-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-proof-strip article:nth-child(2) {
    border-right: 0;
  }

  .home-product-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .home-brand-band,
  .home-product-band,
  .home-consult-band {
    grid-template-columns: 1fr;
  }

  .home-band-image,
  .home-product-image {
    -webkit-mask-image: none;
    mask-image: none;
    box-shadow: none;
  }

  .home-product-copy {
    padding-bottom: 0;
  }

  .home-product-image {
    min-height: 360px;
  }

  .home-consult-panel {
    align-content: start;
  }
}

@media (max-width: 760px) {
  .home-proof-strip,
  .home-brand-band,
  .home-product-band,
  .home-section,
  .home-consult-band {
    margin-right: -14px;
    margin-left: -14px;
  }

  .home-proof-strip {
    grid-template-columns: 1fr;
    padding: 8px 14px;
  }

  .home-proof-strip article,
  .home-proof-strip article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(167, 125, 66, 0.14);
  }

  .home-proof-strip article:last-child {
    border-bottom: 0;
  }

  .home-brand-band,
  .home-product-band,
  .home-section,
  .home-consult-band {
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .home-band-copy,
  .home-product-copy,
  .home-consult-copy {
    max-width: none;
    padding-right: 0;
    padding-left: 0;
  }

  .home-band-image,
  .home-product-image {
    height: 300px;
    min-height: 300px;
  }

  .home-section-head .home-section-label::before,
  .home-section-head .home-section-label::after {
    width: 24px;
  }

  .home-season-card {
    min-height: 260px;
  }

  .home-product-points,
  .home-consult-panel,
  .home-contact-tags {
    grid-template-columns: 1fr;
  }

  .home-product-point {
    min-height: 54px;
  }

  .home-tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }

  .home-tile-grid article {
    text-align: center;
  }

  .home-sprite {
    aspect-ratio: 4 / 3;
  }

  .home-tile-grid h3 {
    font-size: 17px;
  }

  .home-tile-grid p {
    font-size: 13px;
  }
}

@media (max-width: 430px) {
  .home-tile-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact section final layout override */
.home-showcase .home-consult-band {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(300px, 1fr) minmax(320px, 420px);
  gap: clamp(24px, 3.6vw, 52px);
  align-items: center;
}

.home-showcase .home-mentor-photo {
  justify-self: center;
  align-self: center;
  width: clamp(240px, 23vw, 320px);
  height: auto;
  min-height: 0;
  aspect-ratio: 1 / 1;
  border-color: rgba(167, 125, 66, 0.28);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 252, 246, 0.88), rgba(244, 235, 218, 0.22) 70%),
    rgba(244, 235, 218, 0.28);
  box-shadow:
    0 22px 54px rgba(61, 46, 26, 0.14),
    inset 0 0 0 10px rgba(255, 252, 246, 0.72);
}

.home-showcase .home-mentor-photo::before {
  inset: 9px;
  border-color: rgba(167, 125, 66, 0.28);
  border-radius: inherit;
}

.home-showcase .home-mentor-photo::after {
  border-radius: inherit;
  background:
    radial-gradient(circle at 66% 20%, rgba(255, 252, 246, 0.22), transparent 30%),
    linear-gradient(180deg, transparent 58%, rgba(30, 25, 19, 0.16));
}

.home-showcase .home-mentor-photo img {
  min-height: 0;
  aspect-ratio: 1 / 1;
  object-position: 50% 30%;
  transform: scale(1.08);
  transform-origin: 50% 30%;
}

.home-showcase .home-consult-copy {
  justify-self: start;
  max-width: 480px;
  margin-right: 0;
  margin-left: 0;
}

.home-showcase .home-consult-content {
  display: contents;
}

.home-showcase .home-consult-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(46px, 4.2vw, 64px);
  line-height: 1.05;
}

.home-showcase .home-consult-copy #landing-entry-copy {
  margin-bottom: 22px;
  color: rgba(30, 25, 19, 0.62);
  font-size: 18px;
}

.home-showcase .home-contact-card {
  justify-self: end;
  align-self: center;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: min(100%, 420px);
  min-height: 0;
  margin: 0;
  padding: 30px;
  border: 1px solid rgba(167, 125, 66, 0.24);
  background:
    radial-gradient(circle at 92% 8%, rgba(190, 83, 60, 0.09), transparent 28%),
    linear-gradient(145deg, rgba(255, 252, 246, 0.48), rgba(225, 207, 174, 0.24)),
    rgba(244, 235, 218, 0.14);
  box-shadow:
    0 16px 42px rgba(61, 46, 26, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.home-showcase .home-contact-tags {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.home-showcase .home-contact-tags span {
  min-height: 46px;
  font-size: 15px;
}

.home-showcase .home-contact-line {
  padding-top: 2px;
}

.home-showcase .home-contact-line strong {
  font-size: clamp(30px, 3.2vw, 42px);
}

.home-showcase .home-contact-call {
  min-height: 58px;
}

.home-showcase .home-teacher-profile {
  grid-template-columns: 1fr;
  gap: 8px;
  max-width: 480px;
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 920px) {
  .home-showcase .home-consult-band {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-showcase .home-mentor-photo {
    width: min(72vw, 300px);
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .home-showcase .home-consult-content {
    display: grid;
    gap: 22px;
  }

  .home-showcase .home-consult-copy,
  .home-showcase .home-contact-card {
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 760px) {
  .home-showcase .home-mentor-photo {
    width: min(78vw, 280px);
  }

  .home-showcase .home-contact-card {
    min-height: 0;
    padding: 22px;
  }

  .home-showcase .home-contact-tags {
    grid-template-columns: 1fr;
  }

  .home-showcase .home-consult-copy h2 {
    font-size: 42px;
  }
}

/* Mobile hero final layout override */
@media (max-width: 760px) {
  .home-showcase .home-hero-panel {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
    padding: 22px 14px 26px;
    background:
      linear-gradient(180deg, rgba(247, 241, 231, 0.96) 0%, rgba(247, 241, 231, 0.9) 62%, rgba(247, 241, 231, 0.78) 100%);
  }

  .home-showcase .home-hero-copy {
    max-width: none;
    padding: 0 8px;
  }

  .home-showcase .home-kicker {
    font-size: 10px;
    letter-spacing: 0.26em;
  }

  .home-showcase .home-hero-copy h1 {
    margin: 14px 0 10px;
    font-size: clamp(48px, 16vw, 64px);
    line-height: 0.98;
  }

  .home-showcase .home-subtitle {
    font-size: 18px;
    line-height: 1.42;
  }

  .home-showcase .home-lead {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.72;
  }

  .home-showcase .home-hero-actions {
    margin-top: 20px;
    gap: 10px;
  }

  .home-showcase .home-hero-art {
    display: block;
    width: min(100%, 430px);
    height: clamp(220px, 58vw, 300px);
    margin: -4px auto 0;
    overflow: hidden;
  }

  .home-showcase .home-hero-art img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 58%;
    transform: scale(1.04);
  }

  .home-showcase .home-hero-verse {
    display: none;
  }
}

.home-product-point {
  position: relative;
  appearance: none;
  font: inherit;
  cursor: pointer;
  overflow: visible;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.home-product-point:hover,
.home-product-point:focus-visible {
  border-color: rgba(181, 72, 50, 0.38);
  background:
    radial-gradient(circle at 50% 18%, rgba(181, 72, 50, 0.12), transparent 32%),
    rgba(255, 252, 246, 0.88);
  box-shadow: 0 18px 38px rgba(61, 46, 26, 0.12);
  outline: none;
  transform: translateY(-2px);
}

.home-product-popover {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  z-index: 12;
  width: min(230px, 58vw);
  aspect-ratio: 4 / 3;
  padding: 8px;
  border: 1px solid rgba(167, 125, 66, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 252, 246, 0.94), rgba(244, 235, 218, 0.9));
  box-shadow: 0 24px 52px rgba(34, 25, 14, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.home-product-popover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 12px;
  height: 12px;
  border-right: 1px solid rgba(167, 125, 66, 0.22);
  border-bottom: 1px solid rgba(167, 125, 66, 0.22);
  background: rgba(250, 245, 236, 0.95);
  transform: translateX(-50%) rotate(45deg);
}

.home-product-popover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-product-popover-wide {
  width: min(340px, 72vw);
  aspect-ratio: 2 / 1;
}

.home-product-popover-face img {
  object-position: 72% 18%;
}

.home-product-point:hover .home-product-popover,
.home-product-point:focus-visible .home-product-popover {
  opacity: 1;
  transform: translate(-50%, 0);
}

.home-art-marquee {
  position: relative;
  margin: 0 -24px;
  padding: clamp(44px, 6vw, 76px) 0;
  overflow: hidden;
  border-top: 1px solid rgba(167, 125, 66, 0.16);
  border-bottom: 1px solid rgba(167, 125, 66, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(244, 235, 218, 0.62)),
    repeating-linear-gradient(90deg, rgba(167, 125, 66, 0.035) 0, rgba(167, 125, 66, 0.035) 1px, transparent 1px, transparent 46px);
}

.home-art-marquee::before,
.home-art-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: min(12vw, 150px);
  pointer-events: none;
}

.home-art-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(248, 243, 234, 0.96), rgba(248, 243, 234, 0));
}

.home-art-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(248, 243, 234, 0.96), rgba(248, 243, 234, 0));
}

.home-art-marquee-head {
  position: relative;
  z-index: 4;
  width: min(100% - 48px, 980px);
  margin: 0 auto 28px;
  text-align: center;
}

.home-art-marquee-head h2 {
  max-width: 760px;
  margin: 12px auto 14px;
  font-family: var(--font-fangsong);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--home-ink);
}

.home-art-marquee-head p:not(.home-section-label) {
  max-width: 720px;
  margin: 0 auto;
  color: var(--home-muted);
  line-height: 1.78;
}

.solar-gallery-rows {
  display: grid;
  gap: clamp(12px, 1.6vw, 20px);
}

.painting-row {
  overflow: hidden;
}

.painting-track {
  --painting-gap: clamp(12px, 1.6vw, 22px);
  display: flex;
  width: max-content;
  will-change: transform;
  animation: painting-marquee-left var(--marquee-duration, 44s) linear infinite;
}

.painting-loop-set {
  display: flex;
  gap: var(--painting-gap);
  padding-right: var(--painting-gap);
}

.painting-row[data-direction="right"] .painting-track {
  animation-name: painting-marquee-right;
  transform: translateX(-50%);
}

.painting-card {
  width: clamp(134px, 12vw, 184px);
  display: grid;
  gap: 8px;
  padding: 8px 8px 10px;
  appearance: none;
  border: 1px solid rgba(167, 125, 66, 0.18);
  background: rgba(255, 252, 246, 0.62);
  box-shadow: 0 18px 40px rgba(61, 46, 26, 0.08);
  cursor: pointer;
  font: inherit;
  color: rgba(30, 25, 19, 0.78);
  text-align: center;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.painting-card:hover,
.painting-card:focus-visible {
  border-color: rgba(181, 72, 50, 0.36);
  background: rgba(255, 252, 246, 0.86);
  box-shadow: 0 24px 54px rgba(61, 46, 26, 0.14);
  outline: none;
  transform: translateY(-3px);
}

.painting-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.28);
}

.painting-card span {
  font-size: 13px;
  line-height: 1.2;
}

.painting-row:hover .painting-track,
.painting-row:focus-within .painting-track {
  animation-play-state: paused;
}

@keyframes painting-marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes painting-marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.art-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.art-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.art-lightbox-backdrop {
  position: absolute;
  inset: 0;
  appearance: none;
  border: 0;
  background: rgba(22, 18, 13, 0.62);
  cursor: zoom-out;
}

.art-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(92vw, 760px);
  max-height: 88vh;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: clamp(12px, 2vw, 18px);
  border: 1px solid rgba(255, 252, 246, 0.4);
  background: rgba(255, 252, 246, 0.96);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.art-lightbox-panel img {
  width: 100%;
  max-height: calc(88vh - 92px);
  display: block;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.62);
}

.art-lightbox-panel figcaption {
  min-height: 22px;
  color: var(--home-muted);
  text-align: center;
}

.art-lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  appearance: none;
  border: 1px solid rgba(167, 125, 66, 0.22);
  border-radius: 50%;
  color: rgba(30, 25, 19, 0.76);
  background: rgba(255, 252, 246, 0.9);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

body.has-art-lightbox {
  overflow: hidden;
}

@media (max-width: 760px) {
  .brand-seal {
    width: 30px;
    height: 30px;
  }

  .home-product-popover {
    display: none;
  }

  .home-art-marquee {
    margin-right: -14px;
    margin-left: -14px;
  }

  .home-art-marquee-head {
    width: min(100% - 32px, 680px);
    margin-bottom: 22px;
    text-align: left;
  }

  .painting-card {
    width: 132px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .painting-track {
    animation: none;
  }

  .painting-row[data-direction="right"] .painting-track {
    transform: none;
  }
}

.home-product-gallery {
  position: relative;
  display: grid;
  align-content: center;
  overflow: hidden;
  min-height: 540px;
  padding: clamp(24px, 3vw, 42px) 0 clamp(24px, 3vw, 42px) clamp(22px, 3vw, 56px);
  border: 0;
  background:
    linear-gradient(90deg, rgba(255, 252, 246, 0.9), rgba(255, 252, 246, 0.42) 22%, rgba(246, 236, 218, 0)),
    url("/assets/generated/solar-gallery-paper-bg.png?v=20260521-bg1") center / cover no-repeat;
  -webkit-mask-image: none;
  mask-image: none;
}

.home-product-gallery::before,
.home-product-gallery::after {
  display: none;
}

.home-product-gallery::before {
  left: clamp(14px, 2vw, 28px);
}

.home-product-gallery::after {
  right: clamp(12px, 1.8vw, 24px);
}

.home-product-gallery .solar-gallery-rows {
  position: relative;
  overflow: hidden;
  gap: clamp(8px, 1vw, 12px);
  padding: clamp(10px, 1.4vw, 18px) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-product-gallery .solar-gallery-rows::before,
.home-product-gallery .solar-gallery-rows::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: clamp(42px, 5vw, 72px);
  pointer-events: none;
}

.home-product-gallery .solar-gallery-rows::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 252, 246, 0.94), rgba(255, 252, 246, 0));
}

.home-product-gallery .solar-gallery-rows::after {
  right: 0;
  background: linear-gradient(270deg, rgba(248, 243, 234, 0.92), rgba(248, 243, 234, 0));
}

.home-product-gallery .painting-track {
  --painting-gap: clamp(10px, 1.1vw, 16px);
}

.home-product-gallery .painting-card {
  position: relative;
  width: clamp(86px, 6.2vw, 104px);
  gap: 5px;
  padding: 8px 7px 9px;
  border-color: rgba(167, 125, 66, 0.22);
  border-radius: 3px;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.9), rgba(245, 235, 216, 0.78)),
    rgba(255, 252, 246, 0.54);
  box-shadow:
    0 14px 28px rgba(61, 46, 26, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.home-product-gallery .painting-card::before,
.home-product-gallery .painting-card::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  z-index: 2;
  height: 3px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(96, 64, 29, 0.28), rgba(221, 183, 111, 0.78) 45%, rgba(96, 64, 29, 0.26));
  box-shadow: 0 1px 3px rgba(61, 46, 26, 0.12);
  pointer-events: none;
}

.home-product-gallery .painting-card::before {
  top: 4px;
}

.home-product-gallery .painting-card::after {
  bottom: 27px;
}

.home-product-gallery .painting-card img {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  padding: 3px;
  border: 1px solid rgba(167, 125, 66, 0.16);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 18px rgba(167, 125, 66, 0.05);
}

.home-product-gallery .painting-card span {
  font-size: 12px;
}

@media (max-width: 920px) {
  .home-product-gallery {
    min-height: 430px;
    padding: 22px 0;
  }

  .home-product-gallery .painting-card {
    width: 92px;
  }
}

@media (max-width: 760px) {
  .home-product-gallery {
    min-height: 390px;
  }

  .home-product-gallery .painting-card {
    width: 82px;
  }
}

/* Homepage mobile containment: keep the desktop composition intact, but stop
   later homepage polish rules from creating horizontal overflow on phones. */
@media (max-width: 760px) {
  body[data-page="home"],
  body[data-page="home"] .mobile-shell,
  body[data-page="home"] .home-showcase {
    max-width: 100vw;
    overflow-x: hidden;
  }

  body[data-page="home"] .home-showcase::before {
    inset: 0;
    width: auto;
    margin-left: 0;
  }

  body[data-page="home"] .home-showcase .home-hero-panel,
  body[data-page="home"] .home-showcase .home-proof-strip,
  body[data-page="home"] .home-showcase .home-brand-band,
  body[data-page="home"] .home-showcase .home-product-band,
  body[data-page="home"] .home-showcase .home-section,
  body[data-page="home"] .home-showcase .home-consult-band {
    width: auto;
    max-width: none;
    margin-right: -14px;
    margin-left: -14px;
    padding-right: 14px;
    padding-left: 14px;
    overflow: hidden;
  }

  body[data-page="home"] .home-showcase .home-band-copy,
  body[data-page="home"] .home-showcase .home-product-copy,
  body[data-page="home"] .home-showcase .home-consult-copy,
  body[data-page="home"] .home-showcase .home-section-head,
  body[data-page="home"] .home-showcase .home-season-grid,
  body[data-page="home"] .home-showcase .home-tile-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  body[data-page="home"] .home-showcase .home-hero-copy h1,
  body[data-page="home"] .home-showcase .home-band-copy h2,
  body[data-page="home"] .home-showcase .home-product-copy h2,
  body[data-page="home"] .home-showcase .home-consult-copy h2,
  body[data-page="home"] .home-showcase .home-section-head h2,
  body[data-page="home"] .home-showcase .home-season-system .home-section-head h2,
  body[data-page="home"] .home-showcase #collab .home-section-head h2 {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    line-break: anywhere;
  }

  body[data-page="home"] .home-showcase .home-band-copy h2,
  body[data-page="home"] .home-showcase .home-product-copy h2,
  body[data-page="home"] .home-showcase .home-consult-copy h2,
  body[data-page="home"] .home-showcase .home-section-head h2 {
    font-size: clamp(28px, 8.4vw, 36px);
    line-height: 1.28;
  }

  body[data-page="home"] .home-showcase .home-section-head {
    justify-items: start;
    text-align: left;
  }

  body[data-page="home"] .home-showcase .home-section-head .home-section-label {
    max-width: 100%;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.2em;
    white-space: normal;
  }

  body[data-page="home"] .home-showcase .home-section-head .home-section-label::before,
  body[data-page="home"] .home-showcase .home-section-head .home-section-label::after {
    width: 24px;
    flex: 0 0 24px;
  }

  body[data-page="home"] .home-showcase .home-band-image {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  body[data-page="home"] .home-showcase .home-band-image img {
    object-fit: contain;
    object-position: center;
  }

  body[data-page="home"] .home-showcase .home-season-grid,
  body[data-page="home"] .home-showcase .home-tile-grid,
  body[data-page="home"] .home-showcase .home-product-points,
  body[data-page="home"] .home-showcase .home-contact-tags {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .home-showcase .home-season-card {
    min-height: 0;
    justify-items: start;
    align-content: center;
    gap: 8px;
    padding: 24px 18px;
    text-align: left;
  }

  body[data-page="home"] .home-showcase .home-season-card h3 {
    font-size: 44px;
  }

  body[data-page="home"] .home-showcase .home-season-card strong {
    font-size: 18px;
  }

  body[data-page="home"] .home-showcase .home-product-band {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 38px;
    padding-bottom: 38px;
  }

  body[data-page="home"] .home-showcase .home-product-copy {
    padding-top: 0;
    padding-bottom: 0;
  }

  body[data-page="home"] .home-showcase .home-product-points {
    max-width: none;
  }

  body[data-page="home"] .home-showcase .home-product-point {
    width: 100%;
    min-height: 52px;
  }

  body[data-page="home"] .home-showcase .home-product-gallery {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 18px 0 20px;
  }

  body[data-page="home"] .home-showcase .home-product-gallery .solar-gallery-rows,
  body[data-page="home"] .home-showcase .painting-row {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  body[data-page="home"] .home-showcase .home-product-gallery .painting-card {
    width: 82px;
  }

  body[data-page="home"] .home-showcase .home-product-gallery .painting-card span {
    display: block;
    color: rgba(30, 25, 19, 0.86);
    font-size: 12px;
    line-height: 1.25;
    white-space: nowrap;
  }

  body[data-page="home"] .home-showcase .home-tile-grid {
    gap: 22px;
  }

  body[data-page="home"] .home-showcase .home-tile-grid article {
    width: 100%;
    text-align: center;
  }

  body[data-page="home"] .home-showcase .home-sprite {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  body[data-page="home"] .home-showcase .home-consult-band {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .home-showcase .home-contact-card {
    width: 100%;
  }
}

/* Homepage phone scale pass: mobile-only tightening for real phone viewports. */
@media (max-width: 760px) {
  body[data-page="home"] .home-showcase .home-hero-panel,
  body[data-page="home"] .home-showcase .home-proof-strip,
  body[data-page="home"] .home-showcase .home-brand-band,
  body[data-page="home"] .home-showcase .home-product-band,
  body[data-page="home"] .home-showcase .home-section,
  body[data-page="home"] .home-showcase .home-consult-band {
    box-sizing: border-box;
  }

  body[data-page="home"] .home-showcase .home-hero-copy h1 {
    font-size: clamp(44px, 14.6vw, 58px);
  }

  body[data-page="home"] .home-showcase .home-subtitle {
    font-size: clamp(16px, 4.6vw, 18px);
  }

  body[data-page="home"] .home-showcase .home-lead,
  body[data-page="home"] .home-showcase .home-band-copy p:not(.home-section-label),
  body[data-page="home"] .home-showcase .home-product-copy p,
  body[data-page="home"] .home-showcase .home-consult-copy p {
    font-size: 14px;
    line-height: 1.72;
  }

  body[data-page="home"] .home-showcase .home-brand-band,
  body[data-page="home"] .home-showcase .home-product-band,
  body[data-page="home"] .home-showcase .home-section,
  body[data-page="home"] .home-showcase .home-consult-band {
    padding-top: 32px;
    padding-bottom: 34px;
  }

  body[data-page="home"] .home-showcase .home-band-copy h2,
  body[data-page="home"] .home-showcase .home-product-copy h2,
  body[data-page="home"] .home-showcase .home-consult-copy h2,
  body[data-page="home"] .home-showcase .home-section-head h2 {
    font-size: clamp(25px, 7.4vw, 31px);
    line-height: 1.32;
  }

  body[data-page="home"] .home-showcase .home-section-head .home-section-label {
    gap: 8px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  body[data-page="home"] .home-showcase .home-section-head .home-section-label::before,
  body[data-page="home"] .home-showcase .home-section-head .home-section-label::after {
    width: 20px;
    flex-basis: 20px;
  }

  body[data-page="home"] .home-showcase .home-band-image {
    aspect-ratio: 1.72 / 1;
  }

  body[data-page="home"] .home-showcase .home-season-card {
    min-height: 196px;
    padding: 22px 16px;
  }

  body[data-page="home"] .home-showcase .home-season-card h3 {
    font-size: 40px;
  }

  body[data-page="home"] .home-showcase .home-season-card strong {
    font-size: 17px;
  }

  body[data-page="home"] .home-showcase .home-season-card p {
    font-size: 14px;
    line-height: 1.58;
  }

  body[data-page="home"] .home-showcase .home-season-card button {
    min-height: 34px;
    margin-top: 10px;
    padding: 0 15px;
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  body[data-page="home"] .home-showcase .home-hero-panel,
  body[data-page="home"] .home-showcase .home-brand-band,
  body[data-page="home"] .home-showcase .home-product-band,
  body[data-page="home"] .home-showcase .home-section,
  body[data-page="home"] .home-showcase .home-consult-band {
    margin-right: -10px;
    margin-left: -10px;
    padding-right: 10px;
    padding-left: 10px;
  }
}
