:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-strong: rgba(8, 14, 30, 0.9);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f8fafc;
  --muted: #aeb8ca;
  --cyan: #67e8f9;
  --cyan-soft: rgba(34, 211, 238, 0.14);
  --blue: #60a5fa;
  --gold: #fbbf24;
  --violet: #c084fc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Microsoft YaHei",
    "PingFang SC",
    sans-serif;
}

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

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(34, 211, 238, 0.13), transparent 26%),
    radial-gradient(circle at 74% 24%, rgba(96, 165, 250, 0.16), transparent 30%),
    radial-gradient(circle at center, rgb(15, 23, 42), rgb(2, 6, 23));
}

.background-grid {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
}

.floating-layer {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
}

.floating-word {
  position: absolute;
  color: rgba(103, 232, 249, 0.42);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.floating-word-a {
  left: 7%;
  top: 18%;
  animation: floatingA 7s ease-in-out infinite;
}

.floating-word-b {
  left: 18%;
  top: 34%;
  color: rgba(251, 191, 36, 0.36);
  animation: floatingB 9s ease-in-out infinite;
}

.floating-word-c {
  bottom: 18%;
  left: 14%;
  color: rgba(216, 180, 254, 0.34);
  animation: floatingC 8s ease-in-out infinite;
}

.floating-word-d {
  right: 12%;
  top: 16%;
  animation: floatingD 6.5s ease-in-out infinite;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(103, 232, 249, 0.45);
  border-radius: 14px;
  background: rgba(34, 211, 238, 0.11);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.16);
  color: var(--cyan);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  letter-spacing: 0.02em;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #dbeafe;
  font-size: 13px;
  transition: all 0.22s ease;
}

.site-nav a:hover {
  transform: translateY(-1px);
  border-color: rgba(103, 232, 249, 0.38);
  background: rgba(34, 211, 238, 0.09);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.14);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.hero {
  display: grid;
  min-height: calc(100vh - 88px);
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: center;
  gap: 54px;
  padding-top: 20px;
}

.eyebrow,
.section-heading span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(103, 232, 249, 0.2);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.1);
  padding: 0 14px;
  color: rgba(207, 250, 254, 0.9);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 13ch;
  margin: 16px 0 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.hero-desc {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(226, 232, 240, 0.86);
  font-size: 17px;
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.26s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  border: 1px solid rgba(103, 232, 249, 0.55);
  background: linear-gradient(135deg, #12d6df 0%, #16a8c9 52%, #38bdf8 100%);
  color: #ecfeff;
  box-shadow: 0 16px 34px rgba(34, 211, 238, 0.24), inset 0 0 18px rgba(255, 255, 255, 0.16);
}

.button-primary:hover {
  border-color: rgba(207, 250, 254, 0.8);
  box-shadow: 0 20px 44px rgba(34, 211, 238, 0.34), inset 0 0 22px rgba(255, 255, 255, 0.2);
}

.button-ghost {
  border: 1px solid rgba(103, 232, 249, 0.35);
  background: rgba(2, 6, 23, 0.38);
  color: #a5f3fc;
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.12), 0 0 20px rgba(34, 211, 238, 0.14);
}

.button-ghost:hover {
  border-color: rgba(103, 232, 249, 0.66);
  background: rgba(34, 211, 238, 0.12);
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.16), 0 0 26px rgba(34, 211, 238, 0.2);
}

.button-gold {
  border: 1px solid rgba(251, 191, 36, 0.55);
  background: rgba(251, 191, 36, 0.11);
  color: #fde68a;
  box-shadow: inset 0 0 0 1px rgba(251, 191, 36, 0.1), 0 0 24px rgba(251, 191, 36, 0.16);
}

.button-gold:hover {
  border-color: rgba(253, 230, 138, 0.75);
  background: rgba(251, 191, 36, 0.16);
  box-shadow: inset 0 0 0 1px rgba(251, 191, 36, 0.16), 0 0 32px rgba(251, 191, 36, 0.22);
}

.button-icon {
  display: inline-grid;
  place-items: center;
  margin-right: 8px;
}

.button-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.portal-wrap {
  position: relative;
  width: min(361px, 78vw);
  aspect-ratio: 1;
}

.portal-glow {
  position: absolute;
  inset: -24px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.16) 0%, rgba(34, 211, 238, 0.06) 40%, transparent 74%);
  filter: blur(28px);
}

.portal-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: conic-gradient(from 90deg, rgba(34, 211, 238, 0.94), rgba(59, 130, 246, 0.18), rgba(168, 85, 247, 0.8), rgba(34, 211, 238, 0.94));
  filter: blur(10px);
  animation: portalSpin 18s linear infinite;
}

.portal-core {
  position: absolute;
  inset: 11px;
  overflow: hidden;
  border-radius: 999px;
  background: radial-gradient(circle at center, #000000 0%, #020617 52%, #01040d 100%);
}

.portal-core::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 36% 30%, rgba(255, 255, 255, 0.035), transparent 18%);
}

.portal-content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px;
  text-align: center;
  animation: heroBreathe 2.6s ease-in-out infinite;
}

.portal-content p {
  margin: 0;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.26em;
}

.portal-content strong {
  margin-top: 14px;
  color: #fff;
  font-size: 28px;
  line-height: 1.18;
}

.portal-content span {
  max-width: 230px;
  margin-top: 14px;
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.78;
}

.section-heading {
  margin-bottom: 28px;
  text-align: center;
}

.section-heading.align-left {
  text-align: left;
}

.section-heading h2 {
  margin: 14px 0 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.compact-section {
  padding-top: 38px;
  padding-bottom: 22px;
}

.mini-card-grid,
.feature-grid {
  display: grid;
  gap: 18px;
}

.mini-card-grid.four,
.feature-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mini-card,
.feature-card,
.process-panel,
.faq-panel,
.pricing-card,
.club-panel,
.event-section {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.78), rgba(2, 6, 23, 0.62)),
    radial-gradient(circle at 20% 0%, rgba(34, 211, 238, 0.1), transparent 44%);
  box-shadow: 0 22px 58px rgba(2, 6, 23, 0.3);
  backdrop-filter: blur(16px);
}

.mini-card {
  min-height: 126px;
  border-radius: 18px;
  padding: 22px;
  transition: all 0.22s ease;
}

.mini-card:hover {
  transform: translateY(-2px);
  border-color: rgba(103, 232, 249, 0.38);
  box-shadow: 0 24px 60px rgba(34, 211, 238, 0.12);
}

.mini-card h3,
.feature-card h3 {
  margin: 14px 0 8px;
  font-size: 19px;
}

.mini-card p,
.feature-card p,
.event-intro p,
.club-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.line-icon,
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(103, 232, 249, 0.5);
  border-radius: 14px;
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.13);
}

.line-icon svg,
.feature-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card {
  position: relative;
  min-height: 218px;
  overflow: hidden;
  border-radius: 24px;
  padding: 24px;
  transition: all 0.24s ease;
}

.feature-card::after,
.pricing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background: radial-gradient(circle at 50% -6%, var(--accent-soft), transparent 38%);
}

.feature-card:hover,
.pricing-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 26px 70px var(--accent-shadow);
}

.feature-card > *,
.pricing-card > * {
  position: relative;
  z-index: 1;
}

.feature-card ul,
.pricing-card ul,
.event-intro ul,
.city-card ul {
  margin: 16px 0 0;
  padding-left: 1.15em;
  color: #dbeafe;
  line-height: 1.78;
}

.feature-blue {
  --accent: rgba(56, 189, 248, 0.76);
  --accent-soft: rgba(56, 189, 248, 0.28);
  --accent-shadow: rgba(56, 189, 248, 0.18);
}

.feature-cyan {
  --accent: rgba(103, 232, 249, 0.72);
  --accent-soft: rgba(45, 212, 191, 0.28);
  --accent-shadow: rgba(45, 212, 191, 0.16);
}

.feature-violet {
  --accent: rgba(192, 132, 252, 0.72);
  --accent-soft: rgba(168, 85, 247, 0.26);
  --accent-shadow: rgba(168, 85, 247, 0.17);
}

.feature-gold {
  --accent: rgba(251, 191, 36, 0.76);
  --accent-soft: rgba(251, 191, 36, 0.24);
  --accent-shadow: rgba(251, 191, 36, 0.16);
}

.feature-blue .feature-icon { color: #38bdf8; border-color: rgba(56, 189, 248, 0.58); }
.feature-cyan .feature-icon { color: #67e8f9; border-color: rgba(103, 232, 249, 0.58); }
.feature-violet .feature-icon { color: #d8b4fe; border-color: rgba(192, 132, 252, 0.58); }
.feature-gold .feature-icon { color: #fde68a; border-color: rgba(251, 191, 36, 0.58); }

.text-cta {
  display: inline-flex;
  margin-top: 16px;
  color: var(--cyan);
  font-weight: 800;
  transition: color 0.2s ease, transform 0.2s ease;
}

.text-cta:hover {
  color: #cffafe;
  transform: translateX(2px);
}

.consultation-choice-page .site-shell {
  min-height: 100vh;
}

.consultation-choice-main {
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
}

.consultation-choice-hero {
  width: 100%;
  padding-top: 82px;
}

.consultation-choice-hero .section-heading {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.consultation-choice-hero .section-heading span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.36em;
}

.consultation-choice-hero .section-heading p {
  margin: 16px auto 0;
  max-width: 680px;
  color: var(--muted);
  line-height: 1.9;
}

.consultation-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.consultation-choice-card {
  position: relative;
  display: flex;
  min-height: 392px;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.84), rgba(2, 6, 23, 0.66)),
    radial-gradient(circle at 24% 0%, var(--accent-soft), transparent 42%);
  box-shadow: 0 22px 58px rgba(2, 6, 23, 0.3);
  backdrop-filter: blur(16px);
}

.consultation-choice-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background: radial-gradient(circle at 50% -8%, var(--accent-soft), transparent 40%);
}

.consultation-choice-card > * {
  position: relative;
  z-index: 1;
}

.consultation-choice-card-copy {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 28px;
}

.consultation-choice-kicker {
  margin: 0;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.consultation-choice-card h2 {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.consultation-choice-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.consultation-choice-card strong {
  color: #fff;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.consultation-choice-button {
  width: 100%;
  margin-top: auto;
}

.consultation-choice-note {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(148, 163, 184, 0.78);
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}

.club-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1.28fr);
  gap: 24px;
  overflow: hidden;
  border-radius: 28px;
  padding: 30px;
  margin-bottom: 34px;
}

.club-copy h2,
.event-intro h2,
.process-panel h2,
.faq-panel h2,
.final-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 2.7vw, 38px);
  letter-spacing: -0.035em;
}

.club-perks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
  color: #dbeafe;
}

.club-perks span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
}

.club-perks span::before {
  content: "✦";
  color: var(--cyan);
}

.lounge-visual {
  position: relative;
  min-height: 255px;
  overflow: hidden;
  border: 1px solid rgba(103, 232, 249, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(8, 13, 28, 0.12), rgba(8, 13, 28, 0.7)),
    radial-gradient(circle at 78% 74%, rgba(251, 191, 36, 0.2), transparent 24%),
    radial-gradient(circle at 36% 42%, rgba(59, 130, 246, 0.28), transparent 34%),
    linear-gradient(135deg, #061126, #0b1630 52%, #07101f);
  box-shadow: inset 0 -60px 80px rgba(2, 6, 23, 0.75);
}

.lounge-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 255px;
  object-fit: cover;
}

.lounge-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.18), transparent 38%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.42), transparent 46%);
}

.event-section {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  border-radius: 28px;
  padding: 22px;
}

.event-intro.card {
  min-height: auto;
  padding: 24px;
}

.city-events {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.city-card {
  position: relative;
  overflow: hidden;
  min-height: 275px;
  border: 1px solid rgba(103, 232, 249, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.72)),
    var(--city-bg);
  background-size: cover;
  background-position: center;
  padding: 18px;
  box-shadow: inset 0 -70px 70px rgba(2, 6, 23, 0.78);
}

.city-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.74));
}

.city-card > * {
  position: relative;
  z-index: 1;
}

.city-card .city-tag {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.22);
  padding: 4px 10px;
  color: #bfdbfe;
  font-size: 12px;
  font-weight: 800;
}

.city-card h3 {
  margin: 74px 0 0;
  font-size: 18px;
}

.city-card time {
  display: block;
  margin: 8px 0 14px;
  color: #cbd5e1;
  font-size: 13px;
}

.city-card a {
  display: inline-flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(103, 232, 249, 0.28);
  border-radius: 12px;
  color: #dbeafe;
  font-weight: 750;
  transition: all 0.2s ease;
}

.city-card a:hover {
  border-color: rgba(103, 232, 249, 0.62);
  color: var(--cyan);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.12);
}

.offline-salon-section {
  border-color: rgba(251, 191, 36, 0.18);
  background:
    radial-gradient(circle at 20% 8%, rgba(251, 191, 36, 0.1), transparent 28%),
    linear-gradient(145deg, rgba(10, 16, 29, 0.78), rgba(4, 8, 18, 0.72));
  box-shadow: 0 26px 72px rgba(2, 6, 23, 0.34);
}

.offline-salon-section .event-intro.card {
  border-color: rgba(251, 191, 36, 0.18);
  background:
    radial-gradient(circle at 28% 0%, rgba(251, 191, 36, 0.14), transparent 36%),
    linear-gradient(145deg, rgba(35, 30, 18, 0.72), rgba(11, 18, 32, 0.84));
}

.offline-salon-section .section-eyebrow {
  color: #fde68a;
  letter-spacing: 0.38em;
}

.offline-salon-section .event-intro h2 {
  color: #f8fafc;
}

.offline-salon-section .event-intro p:first-of-type {
  color: #fef3c7;
  font-weight: 850;
}

.offline-salon-section .event-intro ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin-top: 24px;
  padding-left: 0;
  list-style: none;
}

.offline-salon-section .event-intro li {
  position: relative;
  padding-left: 24px;
  color: #f8fafc;
  line-height: 1.45;
}

.offline-salon-section .event-intro li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 13px;
  height: 15px;
  border: 1.5px solid rgba(253, 230, 138, 0.9);
  border-radius: 7px 7px 9px 9px;
  background:
    linear-gradient(135deg, transparent 48%, rgba(253, 230, 138, 0.72) 50%, transparent 54%),
    rgba(251, 191, 36, 0.06);
  box-shadow: 0 0 16px rgba(251, 191, 36, 0.14);
}

.offline-salon-section .button-ghost {
  border-color: rgba(251, 191, 36, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: #fef9c3;
}

.offline-salon-section .button-ghost:hover {
  border-color: rgba(251, 191, 36, 0.58);
  color: #fff7ed;
  box-shadow: 0 0 22px rgba(251, 191, 36, 0.14);
}

.offline-salon-section .city-card {
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  border-color: rgba(var(--city-accent-rgb), 0.26);
  background: #06101f;
  box-shadow: 0 18px 48px rgba(2, 6, 23, 0.32);
  transform: translateZ(0);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.offline-salon-section .city-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--city-bg);
  background-repeat: no-repeat;
  background-position: var(--city-position, center);
  background-size: cover;
  filter: brightness(0.92) saturate(1.04);
  transform: scale(1.02);
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.offline-salon-section .city-card::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.62) 50%, rgba(2, 6, 23, 0.94)),
    linear-gradient(90deg, rgba(2, 6, 23, 0.18), transparent 52%);
}

.offline-salon-section .city-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--city-accent-rgb), 0.62);
  box-shadow:
    0 24px 62px rgba(2, 6, 23, 0.42),
    0 0 34px rgba(var(--city-accent-rgb), 0.12);
}

.offline-salon-section .city-card:hover::after {
  filter: brightness(1.08) saturate(1.12);
  transform: scale(1.09);
}

.offline-salon-section .city-card > * {
  z-index: 2;
}

.offline-salon-section .city-card .city-tag {
  border: 1px solid rgba(var(--city-accent-rgb), 0.36);
  background: rgba(var(--city-accent-rgb), 0.14);
  color: rgb(var(--city-accent-rgb));
  box-shadow: 0 10px 26px rgba(2, 6, 23, 0.26);
}

.offline-salon-section .city-card h3 {
  margin-top: auto;
  color: #f8fafc;
  font-size: 20px;
  line-height: 1.28;
  text-shadow: 0 2px 18px rgba(2, 6, 23, 0.8);
}

.offline-salon-section .city-card ul {
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding-left: 0;
  color: #f1f5f9;
  line-height: 1.38;
  list-style: none;
  text-shadow: 0 1px 14px rgba(2, 6, 23, 0.75);
}

.offline-salon-section .city-card time {
  margin: 18px 0 0;
  color: #fef3c7;
  font-weight: 850;
}

.city-hangzhou {
  --city-bg: url("./assets/event-hangzhou.png");
  --city-position: 12% center;
  --city-accent-rgb: 250, 204, 21;
}

.city-shanghai {
  --city-bg: url("./assets/event-shanghai.png");
  --city-position: center;
  --city-accent-rgb: 96, 165, 250;
}

.city-shenzhen {
  --city-bg: url("./assets/event-shenzhen.png");
  --city-position: center;
  --city-accent-rgb: 167, 139, 250;
}

.home-events-section .event-intro.card {
  background:
    radial-gradient(circle at 18% 18%, rgba(84, 247, 122, 0.12), transparent 34%),
    rgba(8, 16, 32, 0.76);
}

.home-events-section .event-intro .button {
  margin-top: 22px;
}

.home-events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.home-event-card {
  --city-bg:
    radial-gradient(circle at 20% 16%, rgba(84, 247, 122, 0.24), transparent 24%),
    radial-gradient(circle at 86% 22%, rgba(34, 211, 238, 0.18), transparent 30%),
    linear-gradient(135deg, #07152a 0%, #0b1932 52%, #06101f 100%);
  display: flex;
  min-height: 235px;
  flex-direction: column;
  justify-content: flex-start;
}

.home-event-card h3 {
  display: -webkit-box;
  min-height: 48px;
  margin: 42px 0 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 18px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.home-event-card .home-event-meta {
  margin-top: 16px;
}

.home-event-card a {
  margin-top: auto;
}

.home-event-card p {
  min-height: 36px;
  margin: 9px 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.home-event-meta {
  display: grid;
  gap: 5px;
  margin: 0 0 14px;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 750;
}

.home-event-meta span {
  color: var(--green);
}

.home-event-fallback {
  grid-column: 1 / -1;
}

@media (max-width: 980px) {
  .home-events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .home-events-grid {
    grid-template-columns: 1fr;
  }
}

.lower-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.process-panel,
.faq-panel {
  border-radius: 28px;
  padding: 24px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.process-steps article {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  padding: 16px;
}

.process-steps span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.13);
  color: #cffafe;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.16);
}

.process-steps h3 {
  margin: 12px 0 6px;
  font-size: 15px;
}

.process-steps p,
.faq-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.faq-panel details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding: 12px 0;
}

.faq-panel details:last-child {
  border-bottom: 0;
}

.faq-panel summary {
  cursor: pointer;
  color: #e2e8f0;
  font-weight: 750;
}

.final-cta {
  padding-top: 44px;
  padding-bottom: 44px;
  text-align: center;
}

.final-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.center-actions {
  justify-content: center;
}

.footer-meta {
  text-align: right;
}

.footer-meta p {
  margin: 0 0 8px;
}

.footer-meta a {
  color: #cbd5e1;
}

.rmb-placeholder-page {
  min-height: 100vh;
}

.rmb-placeholder-main {
  min-height: calc(100vh - 196px);
  display: flex;
  align-items: center;
}

.rmb-checkout-shell {
  padding-top: 74px;
  padding-bottom: 54px;
}

.rmb-checkout-card {
  position: relative;
  overflow: hidden;
  max-width: 760px;
  margin: 30px auto 0;
  padding: 32px;
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 0%, rgba(34, 211, 238, 0.13), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(34, 197, 94, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(8, 20, 42, 0.94), rgba(3, 8, 20, 0.98));
  box-shadow: 0 34px 88px rgba(2, 6, 23, 0.42);
}

.rmb-checkout-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 28%, rgba(34, 211, 238, 0.05));
}

.rmb-checkout-card > * {
  position: relative;
  z-index: 1;
}

.rmb-card-top,
.rmb-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.rmb-status-pill,
.rmb-product-kind,
.rmb-product-eyebrow,
.rmb-coming-soon {
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.rmb-status-pill,
.rmb-product-kind {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 700;
}

.rmb-status-pill {
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.1);
  color: #bbf7d0;
}

.rmb-product-kind {
  border: 1px solid rgba(34, 211, 238, 0.24);
  background: rgba(34, 211, 238, 0.08);
  color: #a5f3fc;
}

.rmb-product-summary {
  margin-top: 28px;
}

.rmb-product-eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.rmb-product-summary h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.rmb-invalid-message {
  margin: 14px 0 0;
  color: #fde68a;
  line-height: 1.8;
}

.rmb-price-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.rmb-price-panel div {
  min-height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background: rgba(2, 6, 23, 0.38);
  padding: 20px;
}

.rmb-price-panel span,
.rmb-detail-list dt {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.rmb-price-panel strong {
  display: block;
  margin-top: 12px;
  color: #e0f2fe;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.rmb-price-panel.is-muted {
  opacity: 0.7;
}

.rmb-detail-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 0;
}

.rmb-detail-list div,
.rmb-notice {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  padding: 16px;
}

.rmb-detail-list dd {
  margin: 8px 0 0;
  color: var(--text);
  font-weight: 700;
}

.rmb-notice {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.85;
}

.rmb-notice strong {
  color: var(--text);
}

.rmb-notice p {
  margin: 8px 0 0;
}

.rmb-actions {
  margin-top: 22px;
  justify-content: flex-start;
}

.rmb-coming-soon {
  margin: 18px 0 0;
  color: rgba(165, 243, 252, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.membership-page .site-shell,
.membership-page {
  min-height: 100vh;
}

.membership-page .section {
  width: min(1540px, calc(100% - 40px));
}

.membership-hero {
  min-height: calc(100vh - 188px);
  display: grid;
  align-content: center;
  padding-top: 54px;
}

.membership-hero .section-heading h1 {
  margin: 16px 0 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.membership-hero .section-heading p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.pricing-elite-layout {
  display: grid;
  grid-template-columns: minmax(1080px, 1fr) minmax(300px, 340px);
  gap: 22px;
  align-items: stretch;
  width: min(100%, 1460px);
  margin: 20px auto 0;
}

.pricing-elite-layout .pricing-grid {
  margin-top: 0;
}

.pricing-card {
  --accent: rgba(103, 232, 249, 0.52);
  --accent-soft: rgba(34, 211, 238, 0.18);
  --accent-shadow: rgba(34, 211, 238, 0.14);
  position: relative;
  overflow: hidden;
  min-height: 465px;
  border-radius: 28px;
  padding: 30px;
}

.pricing-basic {
  --accent: rgba(96, 165, 250, 0.58);
  --accent-soft: rgba(96, 165, 250, 0.19);
  --accent-shadow: rgba(96, 165, 250, 0.14);
}

.pricing-pro {
  --accent: rgba(103, 232, 249, 0.82);
  --accent-soft: rgba(34, 211, 238, 0.26);
  --accent-shadow: rgba(34, 211, 238, 0.2);
  transform: translateY(-8px);
}

.pricing-elite {
  --accent: rgba(251, 191, 36, 0.72);
  --accent-soft: rgba(251, 191, 36, 0.22);
  --accent-shadow: rgba(251, 191, 36, 0.17);
}

.pricing-top span,
.pricing-top small {
  display: block;
}

.pricing-top span {
  color: #e0f2fe;
  font-size: 25px;
  font-weight: 900;
}

.pricing-top small {
  margin-top: 5px;
  color: var(--muted);
}

.pricing-card h2 {
  margin: 22px 0 4px;
  font-size: clamp(31px, 2.65vw, 44px);
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.pricing-card h2 em {
  color: #cbd5e1;
  font-size: 18px;
  font-style: normal;
}

.pricing-card p {
  margin: 0;
  color: var(--accent);
  font-weight: 850;
}

.pricing-card ul {
  min-height: 150px;
}

.pricing-card .button {
  width: 100%;
  margin-top: 20px;
}

.elite-addon {
  display: grid;
  gap: 12px;
}

.elite-addon-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(251, 191, 36, 0.68);
  border-radius: 22px;
  background:
    radial-gradient(circle at 16% 8%, rgba(251, 191, 36, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(30, 24, 12, 0.92), rgba(8, 14, 26, 0.96));
  padding: 18px 20px;
  box-shadow: 0 16px 40px rgba(251, 191, 36, 0.09);
}

.elite-addon-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(253, 224, 71, 0.07);
}

.elite-addon-card span {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.42);
  background: rgba(251, 191, 36, 0.11);
  padding: 4px 9px;
  color: #fde68a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.elite-addon-card h3 {
  margin: 13px 0 0;
  color: #facc15;
  font-size: 17px;
  line-height: 1.32;
}

.elite-addon-card p {
  margin: 9px 0 0;
  color: rgba(226, 232, 240, 0.82);
  font-size: 12px;
  line-height: 1.72;
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.16);
  padding: 5px 11px;
  color: #cffafe;
  font-size: 12px;
  font-weight: 900;
}

.membership-note {
  max-width: 880px;
  margin: 24px auto 0;
  color: var(--muted);
  text-align: center;
  line-height: 1.8;
}

.elite-value-section {
  padding-top: 34px;
}

.elite-value-panel {
  overflow: hidden;
  border: 1px solid rgba(251, 191, 36, 0.28);
  border-radius: 30px;
  background:
    radial-gradient(circle at 14% 8%, rgba(251, 191, 36, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(25, 20, 10, 0.9), rgba(7, 16, 29, 0.96) 54%, rgba(4, 9, 18, 0.98));
  padding: 34px;
  box-shadow: 0 24px 68px rgba(251, 191, 36, 0.08);
}

.elite-value-panel .section-heading {
  margin-bottom: 0;
}

.elite-value-panel .section-heading h2 {
  color: #f8fafc;
}

.elite-value-panel .section-heading p {
  max-width: 920px;
  margin: 16px auto 0;
  color: rgba(248, 250, 252, 0.92);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 850;
}

.elite-value-subtitle {
  max-width: 900px;
  margin: 14px auto 0;
  color: rgba(253, 230, 138, 0.78);
  text-align: center;
  font-weight: 800;
  line-height: 1.8;
}

.elite-value-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.elite-value-grid article {
  border: 1px solid rgba(251, 191, 36, 0.26);
  border-radius: 22px;
  background: rgba(251, 191, 36, 0.045);
  padding: 20px;
}

.elite-value-grid h3 {
  margin: 0;
  color: #facc15;
  font-size: 17px;
  line-height: 1.35;
}

.elite-value-grid p {
  margin: 12px 0 0;
  color: rgba(226, 232, 240, 0.82);
  font-size: 13px;
  line-height: 1.75;
}

.elite-value-tags {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.elite-value-tags span {
  border: 1px solid rgba(251, 191, 36, 0.24);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
  padding: 12px;
  color: #fde68a;
  text-align: center;
  font-weight: 850;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.content-panel,
.notice-card,
.risk-note,
.split-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: 0 22px 58px rgba(2, 6, 23, 0.28);
  backdrop-filter: blur(16px);
}

.card {
  min-height: 220px;
  padding: 28px;
  transition: all 0.24s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(103, 232, 249, 0.38);
  box-shadow: 0 26px 70px rgba(34, 211, 238, 0.11);
}

.card h3,
.principles h3,
.notice-card h3 {
  margin: 0;
  font-size: 23px;
}

.card p,
.principles p,
.content-panel p,
.notice-card p,
.risk-note p {
  color: var(--muted);
  line-height: 1.85;
}

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

.principles article {
  border: 1px solid rgba(103, 232, 249, 0.14);
  border-radius: 24px;
  background: rgba(2, 6, 23, 0.42);
  padding: 22px;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  padding: 34px;
}

.activity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.activity-list li {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  padding: 14px 16px;
  color: #e2e8f0;
}

.notice-card,
.content-panel {
  padding: 32px;
}

.notice-card {
  align-self: stretch;
  background: rgba(34, 211, 238, 0.08);
}

.content-panel {
  max-width: 900px;
  margin: 0 auto;
}

.contact-panel {
  text-align: center;
}

.muted {
  color: var(--muted);
}

.risk-note {
  width: min(1180px, calc(100% - 40px));
  margin: 22px auto 0;
  padding: 26px 30px;
  border-color: rgba(251, 191, 36, 0.18);
  background: rgba(251, 191, 36, 0.06);
}

.risk-note h2 {
  margin: 0 0 10px;
  color: #fde68a;
  font-size: 18px;
}

.site-footer {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 10px 24px;
  margin: 0 auto;
  padding: 48px 0 34px;
  color: var(--muted);
}

.site-footer > div:first-child {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.site-footer strong {
  color: #fff;
}

.site-footer nav {
  display: flex;
  grid-column: 2;
  grid-row: 1;
  flex-wrap: wrap;
  justify-content: center;
  justify-self: center;
  gap: 12px 18px;
}

.site-footer .footer-meta {
  grid-column: 2 / 4;
  grid-row: 2;
  justify-self: end;
  max-width: 680px;
}

.site-footer a {
  transition: color 0.2s ease;
}

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

.legal-page .section {
  max-width: 960px;
}

.legal-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.78);
  padding: clamp(24px, 5vw, 52px);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.32);
}

.legal-panel h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
}

.legal-date {
  margin: 14px 0 28px;
  color: var(--cyan);
}

.legal-panel h2 {
  margin: 34px 0 10px;
  font-size: 22px;
}

.legal-panel p,
.legal-panel li {
  color: var(--muted);
  line-height: 1.9;
}

.legal-panel ul {
  padding-left: 1.25em;
}

.back-home {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--cyan);
  font-weight: 700;
}

body.about-page {
  background: #f5efe3;
  color: #191714;
}

body.about-page .about-site-shell {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 7%, rgba(183, 136, 55, 0.12), transparent 30%),
    radial-gradient(circle at 8% 15%, rgba(255, 255, 255, 0.96), transparent 28%),
    linear-gradient(135deg, #fbf8ef 0%, #f3eadb 48%, #efe2ce 100%);
}

body.about-page .about-site-shell::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(115deg, transparent 0 54%, rgba(172, 124, 42, 0.08) 54.2%, transparent 54.8%),
    radial-gradient(ellipse at 18% 74%, rgba(172, 124, 42, 0.08), transparent 34%),
    radial-gradient(ellipse at 78% 82%, rgba(255, 255, 255, 0.5), transparent 36%);
}

body.about-page .site-header,
body.about-page main,
body.about-page .site-footer {
  position: relative;
  z-index: 1;
}

body.about-page .about-header {
  width: min(1200px, calc(100% - 48px));
  padding: 28px 0;
  color: #17130e;
}

body.about-page .brand strong {
  color: #17130e;
  font-weight: 850;
}

body.about-page .brand small {
  color: rgba(34, 28, 20, 0.62);
}

body.about-page .site-nav a {
  border-color: rgba(118, 83, 24, 0.16);
  background: rgba(255, 255, 255, 0.42);
  color: rgba(35, 29, 20, 0.78);
  box-shadow: 0 12px 30px rgba(96, 66, 23, 0.06);
}

body.about-page .site-nav a:hover,
body.about-page .site-nav a.active {
  border-color: rgba(174, 126, 35, 0.38);
  background: rgba(255, 255, 255, 0.72);
  color: #8a5b10;
  box-shadow: 0 16px 34px rgba(174, 126, 35, 0.12);
}

.about-hero,
.about-core-grid,
.about-belief-section,
.about-values {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.about-hero {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
  padding: 54px 0 84px;
}

.about-kicker {
  margin: 0 0 18px;
  color: #a47421;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-hero h1 {
  max-width: 9em;
  margin: 0;
  color: #15120f;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(58px, 7vw, 94px);
  font-weight: 680;
  letter-spacing: -0.08em;
  line-height: 0.98;
}

.about-hero-subtitle {
  margin: 28px 0 0;
  color: rgba(31, 27, 21, 0.72);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.7;
}

.about-belief-line {
  display: inline-flex;
  margin: 28px 0 0;
  border-bottom: 1px solid rgba(174, 126, 35, 0.28);
  padding-bottom: 8px;
  color: #8b5d14;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.about-hero-media {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(127, 91, 28, 0.2);
  border-radius: 42px 42px 10px 42px;
  background: #d9c7aa;
  box-shadow: 0 34px 86px rgba(87, 58, 21, 0.22);
}

.about-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 239, 224, 0.12), transparent 34%),
    linear-gradient(0deg, rgba(23, 18, 12, 0.22), transparent 40%);
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.86) sepia(0.18) brightness(1.12);
}

.about-core-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 0 0 56px;
}

.about-core-card {
  min-height: 260px;
  border: 1px solid rgba(122, 86, 26, 0.16);
  border-radius: 28px;
  background: rgba(255, 252, 245, 0.72);
  padding: 34px;
  box-shadow: 0 24px 70px rgba(78, 53, 19, 0.08);
}

.about-core-card span,
.about-value-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 32px;
  border: 1px solid rgba(174, 126, 35, 0.28);
  border-radius: 999px;
  background: rgba(174, 126, 35, 0.09);
  color: #9a6818;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
}

.about-core-card h2 {
  margin: 52px 0 18px;
  color: #17130f;
  font-size: 24px;
}

.about-core-card p {
  margin: 0;
  color: rgba(31, 27, 21, 0.82);
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(27px, 2.6vw, 38px);
  font-weight: 650;
  line-height: 1.34;
}

.about-mission-card {
  border-color: rgba(174, 126, 35, 0.34);
  background: rgba(255, 249, 237, 0.88);
}

.about-belief-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 68px;
  border: 1px solid rgba(122, 86, 26, 0.13);
  border-radius: 34px;
  background: rgba(255, 251, 242, 0.68);
  padding: clamp(32px, 5vw, 58px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74), 0 28px 80px rgba(78, 53, 19, 0.08);
}

.about-belief-block {
  padding: clamp(10px, 2vw, 20px);
}

.about-belief-block + .about-belief-block {
  border-left: 1px solid rgba(122, 86, 26, 0.12);
}

.about-belief-block span,
.about-section-heading span {
  display: block;
  color: rgba(34, 28, 20, 0.62);
  font-size: 15px;
  font-weight: 750;
}

.about-belief-block small {
  display: block;
  margin-top: 6px;
  color: #b07920;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-belief-block h2 {
  margin: 34px 0 16px;
  color: #15120f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 640;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.about-belief-block p {
  margin: 0;
  color: rgba(31, 27, 21, 0.72);
  font-size: 20px;
  line-height: 1.8;
}

.about-values {
  padding-bottom: 56px;
}

.about-partner-note {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  margin: -26px auto 58px;
  border-top: 1px solid rgba(122, 86, 26, 0.13);
  border-bottom: 1px solid rgba(122, 86, 26, 0.13);
  padding: 18px 0;
  color: rgba(31, 27, 21, 0.66);
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}

.about-section-heading {
  margin-bottom: 24px;
  text-align: center;
}

.about-section-heading span {
  color: #a47421;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.about-section-heading h2 {
  margin: 10px 0 0;
  color: #15120f;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.06em;
}

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.about-value-card {
  min-height: 238px;
  border: 1px solid rgba(122, 86, 26, 0.14);
  border-radius: 24px;
  background: rgba(255, 252, 246, 0.72);
  padding: 24px 20px;
  box-shadow: 0 20px 60px rgba(78, 53, 19, 0.07);
}

.about-value-card h3 {
  margin: 28px 0 8px;
  color: #181410;
  font-size: 19px;
  line-height: 1.28;
}

.about-value-card small {
  display: block;
  min-height: 34px;
  color: #a47421;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.35;
}

.about-value-card p {
  margin: 18px 0 0;
  color: rgba(31, 27, 21, 0.68);
  font-size: 14px;
  line-height: 1.75;
}

body.about-page .about-footer {
  color: rgba(31, 27, 21, 0.58);
}

body.about-page .site-footer strong {
  color: #17130f;
}

body.about-page .site-footer a:hover {
  color: #9a6818;
}

@keyframes floatingA {
  0%, 100% { transform: translate(0, 0); opacity: 0.36; }
  50% { transform: translate(40px, -30px); opacity: 0.9; }
}

@keyframes floatingB {
  0%, 100% { transform: translate(0, 0); opacity: 0.32; }
  50% { transform: translate(-35px, 22px); opacity: 0.84; }
}

@keyframes floatingC {
  0%, 100% { transform: translate(0, 0); opacity: 0.24; }
  50% { transform: translate(28px, 32px); opacity: 0.76; }
}

@keyframes floatingD {
  0%, 100% { transform: translate(0, 0); opacity: 0.24; }
  50% { transform: translate(-18px, -20px); opacity: 0.72; }
}

@keyframes portalSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes heroBreathe {
  0%, 100% { opacity: 0.68; transform: scale(1.03); }
  50% { opacity: 1; transform: scale(1.04); }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 36px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-visual {
    min-height: 380px;
  }

  .card-grid.three,
  .principles,
  .split-panel,
  .mini-card-grid.four,
  .feature-grid.four,
  .pricing-grid,
  .pricing-elite-layout,
  .club-panel,
  .event-section,
  .lower-grid {
    grid-template-columns: 1fr;
  }

  .elite-addon {
    grid-template-columns: 1fr;
  }

  .elite-value-grid,
  .elite-value-tags {
    grid-template-columns: 1fr 1fr;
  }

  .about-hero,
  .about-core-grid,
  .about-belief-section,
  .about-values,
  .about-partner-note {
    width: min(100% - 36px, 1200px);
  }

  .about-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 34px 0 58px;
  }

  .about-hero h1 {
    max-width: 100%;
  }

  .about-hero-media,
  .about-hero-media img {
    min-height: 360px;
  }

  .about-core-grid,
  .about-belief-section {
    grid-template-columns: 1fr;
  }

  .about-belief-block + .about-belief-block {
    border-top: 1px solid rgba(122, 86, 26, 0.12);
    border-left: 0;
    padding-top: 30px;
  }

  .about-value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-panel {
    padding: 24px;
  }

  .club-panel,
  .event-section {
    padding: 22px;
  }

  .city-events {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-pro {
    transform: none;
  }

  .rmb-placeholder-main {
    min-height: auto;
  }

  .rmb-checkout-shell {
    padding-top: 48px;
  }

  .rmb-detail-list {
    grid-template-columns: 1fr;
  }

  .consultation-choice-main {
    min-height: auto;
  }

  .consultation-choice-hero {
    padding-top: 48px;
  }

  .consultation-choice-grid {
    grid-template-columns: 1fr;
  }
}

/* About Page V2 — scoped warm institutional layout */
body.about-page {
  color-scheme: light;
  background: #f4ecde;
  color: #071a35;
}

body.about-page .about-site-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 8%, rgba(255, 255, 255, 0.72), transparent 28%),
    radial-gradient(circle at 72% 16%, rgba(209, 178, 126, 0.16), transparent 32%),
    linear-gradient(112deg, #fbf3e6 0%, #f7efe2 42%, #efe4d3 100%);
}

body.about-page .about-site-shell::before,
body.about-page .about-site-shell::after {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 0;
  opacity: 0.62;
}

body.about-page .about-site-shell::before {
  top: -132px;
  left: -92px;
  width: 360px;
  height: 520px;
  border: 1px solid rgba(13, 45, 83, 0.18);
  border-right: 0;
  border-radius: 50%;
  transform: rotate(18deg);
  box-shadow:
    22px 0 0 -20px rgba(13, 45, 83, 0.18),
    42px 0 0 -40px rgba(13, 45, 83, 0.16),
    62px 0 0 -60px rgba(13, 45, 83, 0.13);
}

body.about-page .about-site-shell::after {
  right: -124px;
  bottom: -112px;
  width: 360px;
  height: 520px;
  border: 1px solid rgba(13, 45, 83, 0.16);
  border-left: 0;
  border-radius: 50%;
  transform: rotate(18deg);
  box-shadow:
    -22px 0 0 -20px rgba(13, 45, 83, 0.16),
    -42px 0 0 -40px rgba(13, 45, 83, 0.13),
    -62px 0 0 -60px rgba(13, 45, 83, 0.1);
}

body.about-page .about-header {
  width: min(1380px, calc(100% - 72px));
  padding: 30px 0 16px;
}

body.about-page .about-brand strong {
  color: #071a35;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

body.about-page .about-brand small {
  margin-top: 6px;
  color: #071a35;
  font-size: 19px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

body.about-page .site-nav {
  gap: 16px;
}

body.about-page .site-nav a {
  min-width: 88px;
  min-height: 40px;
  border: 1px solid rgba(151, 111, 61, 0.3);
  border-radius: 999px;
  background: rgba(255, 251, 243, 0.5);
  color: #18263a;
  font-size: 15px;
  box-shadow: none;
}

body.about-page .site-nav a:hover,
body.about-page .site-nav a.active {
  transform: none;
  border-color: rgba(7, 26, 53, 0.82);
  background: #071a35;
  color: #fff7e8;
  box-shadow: 0 12px 28px rgba(7, 26, 53, 0.14);
}

body.about-page .about-main {
  position: relative;
  z-index: 1;
  width: min(1380px, calc(100% - 72px));
  margin: 0 auto;
  padding: 24px 0 26px;
}

body.about-page .about-hero {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 255px;
  grid-template-columns: minmax(420px, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 12px 0 14px;
}

body.about-page .about-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 90px;
  background: linear-gradient(0deg, rgba(247, 239, 226, 0.95), transparent);
}

body.about-page .about-hero-copy {
  position: relative;
  z-index: 2;
  padding-left: 42px;
}

body.about-page .about-kicker {
  margin: 0 0 14px;
  color: #9b6a30;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.24em;
}

body.about-page .about-title {
  max-width: none;
  margin: 0;
  color: #071a35;
  font-family: inherit;
  font-size: clamp(54px, 5vw, 82px);
  font-weight: 720;
  letter-spacing: -0.12em;
  line-height: 0.98;
  white-space: nowrap;
}

body.about-page .about-subtitle {
  margin: 12px 0 0;
  color: rgba(7, 26, 53, 0.78);
  font-size: clamp(18px, 1.7vw, 25px);
  letter-spacing: 0.12em;
  line-height: 1.45;
}

body.about-page .about-tagline {
  display: inline-block;
  margin: 24px 0 0;
  border-bottom: 1px solid rgba(151, 111, 61, 0.32);
  padding: 0 18px 6px 8px;
  color: #936328;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(21px, 2vw, 31px);
  letter-spacing: 0.02em;
}

body.about-page .about-hero-media {
  position: relative;
  z-index: 1;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0 26px 26px 120px;
  background: transparent;
  box-shadow: none;
}

body.about-page .about-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, #f7efe2 0%, rgba(247, 239, 226, 0.78) 7%, rgba(247, 239, 226, 0.12) 31%, transparent 62%),
    linear-gradient(0deg, rgba(247, 239, 226, 0.92) 0%, transparent 40%);
}

body.about-page .about-hero-media::after {
  display: none;
}

body.about-page .about-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(0.96) brightness(1.03);
}

body.about-page .about-top-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: -8px auto 16px;
}

body.about-page .about-card,
body.about-page .about-brand-panel,
body.about-page .about-value-card {
  border: 1px solid rgba(166, 123, 62, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 252, 246, 0.78), rgba(250, 241, 227, 0.72)),
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.72), transparent 36%);
  box-shadow: 0 13px 24px rgba(96, 61, 23, 0.08);
  backdrop-filter: blur(8px);
}

body.about-page .about-card {
  display: grid;
  min-height: 118px;
  grid-template-columns: 76px 68px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  padding: 20px 24px;
}

body.about-page .about-card-icon,
body.about-page .about-value-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(151, 111, 61, 0.34);
  border-radius: 50%;
  background: rgba(191, 146, 77, 0.08);
  color: #9a682b;
  font-size: 27px;
  font-weight: 500;
}

body.about-page .about-card-number {
  color: rgba(140, 91, 32, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
}

body.about-page .about-card h2 {
  margin: 0 0 6px;
  color: #071a35;
  font-size: 22px;
  font-weight: 720;
  line-height: 1.2;
}

body.about-page .about-card h2 small {
  margin-left: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 500;
}

body.about-page .about-card p {
  margin: 0;
  color: rgba(7, 26, 53, 0.75);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

body.about-page .about-brand-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border-radius: 18px;
  margin: 0 0 12px;
  padding: 18px 0;
}

body.about-page .about-brand-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 12% 100%, rgba(255, 255, 255, 0.56), transparent 32%),
    linear-gradient(120deg, transparent 0 18%, rgba(13, 45, 83, 0.035) 18.2%, transparent 18.8% 100%);
}

body.about-page .about-brand-block {
  position: relative;
  min-height: 94px;
  padding: 0 58px;
}

body.about-page .about-brand-block + .about-brand-block {
  border-left: 1px solid rgba(151, 111, 61, 0.22);
}

body.about-page .about-brand-block p {
  margin: 0 0 8px;
  color: #9b6a30;
  font-size: 15px;
  letter-spacing: 0.08em;
}

body.about-page .about-brand-block p span {
  margin-left: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
}

body.about-page .about-brand-block h2 {
  margin: 0 0 6px;
  color: #071a35;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 0.98;
}

body.about-page .about-brand-block strong {
  color: rgba(7, 26, 53, 0.72);
  font-size: 16px;
  font-weight: 500;
}

body.about-page .about-partner-note {
  width: 100%;
  margin: 0 0 13px;
  border: 0;
  padding: 0;
  color: rgba(7, 26, 53, 0.52);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

body.about-page .about-values {
  width: 100%;
  padding: 0;
}

body.about-page .about-values-title {
  position: relative;
  margin: 0 auto 12px;
  text-align: center;
}

body.about-page .about-values-title::before,
body.about-page .about-values-title::after {
  content: "";
  position: absolute;
  top: 51%;
  width: min(190px, 18vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(151, 111, 61, 0.44), transparent);
}

body.about-page .about-values-title::before {
  right: calc(50% + 130px);
}

body.about-page .about-values-title::after {
  left: calc(50% + 130px);
}

body.about-page .about-values-title span {
  color: #9b6a30;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.22em;
}

body.about-page .about-values-title h2 {
  margin: 4px 0 0;
  color: #071a35;
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 720;
  letter-spacing: 0.16em;
}

body.about-page .about-values-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

body.about-page .about-value-card {
  position: relative;
  min-height: 150px;
  border-radius: 14px;
  padding: 14px 14px 15px 66px;
}

body.about-page .about-value-icon {
  position: absolute;
  top: 16px;
  left: 14px;
  width: 42px;
  height: 42px;
  font-size: 18px;
}

body.about-page .about-value-card b {
  display: block;
  color: rgba(140, 91, 32, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

body.about-page .about-value-card h3 {
  margin: 3px 0 2px;
  color: #071a35;
  font-size: 17px;
  font-weight: 720;
  line-height: 1.18;
}

body.about-page .about-value-card small {
  display: block;
  min-height: auto;
  color: rgba(7, 26, 53, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  line-height: 1.25;
}

body.about-page .about-value-card p {
  margin: 10px 0 0;
  color: rgba(7, 26, 53, 0.68);
  font-size: 13px;
  line-height: 1.55;
}

body.about-page .about-footer {
  width: min(1380px, calc(100% - 72px));
  padding: 22px 0 24px;
  color: rgba(7, 26, 53, 0.5);
}

body.about-page .about-footer strong {
  color: #071a35;
}

body.about-page .about-footer a:hover {
  color: #9b6a30;
}

@media (max-width: 1280px) {
  body.about-page .about-header,
  body.about-page .about-main,
  body.about-page .about-footer {
    width: min(1180px, calc(100% - 48px));
  }

  body.about-page .about-hero {
    grid-template-columns: minmax(360px, 0.92fr) minmax(460px, 1.08fr);
  }

  body.about-page .about-title {
    font-size: clamp(48px, 5vw, 68px);
  }

  body.about-page .about-card {
    grid-template-columns: 58px 52px minmax(0, 1fr);
    padding: 18px;
  }

  body.about-page .about-card-number {
    font-size: 34px;
  }

  body.about-page .about-card h2 {
    font-size: 20px;
  }

  body.about-page .about-values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body.about-page .about-header,
  body.about-page .about-main,
  body.about-page .about-footer {
    width: min(100% - 32px, 760px);
  }

  body.about-page .about-header {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 22px;
  }

  body.about-page .site-nav {
    justify-content: flex-start;
    gap: 8px;
  }

  body.about-page .site-nav a {
    min-width: auto;
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
  }

  body.about-page .about-hero,
  body.about-page .about-top-cards,
  body.about-page .about-brand-panel {
    grid-template-columns: 1fr;
  }

  body.about-page .about-hero {
    min-height: auto;
    gap: 18px;
    padding-top: 20px;
  }

  body.about-page .about-hero-copy {
    padding-left: 0;
  }

  body.about-page .about-title {
    white-space: normal;
  }

  body.about-page .about-hero-media {
    min-height: 260px;
    border-radius: 26px;
  }

  body.about-page .about-hero-media img {
    min-height: 260px;
  }

  body.about-page .about-top-cards {
    margin-top: 0;
  }

  body.about-page .about-brand-block {
    padding: 0 24px;
  }

  body.about-page .about-brand-block + .about-brand-block {
    border-top: 1px solid rgba(151, 111, 61, 0.18);
    border-left: 0;
    padding-top: 18px;
    margin-top: 18px;
  }

  body.about-page .about-values-title::before,
  body.about-page .about-values-title::after {
    display: none;
  }
}

@media (max-width: 560px) {
  body.about-page .about-brand strong {
    font-size: 34px;
  }

  body.about-page .about-brand small {
    font-size: 15px;
  }

  body.about-page .about-main {
    padding-top: 8px;
  }

  body.about-page .about-kicker {
    font-size: 12px;
  }

  body.about-page .about-subtitle {
    font-size: 16px;
    letter-spacing: 0.04em;
  }

  body.about-page .about-card {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  body.about-page .about-card-number {
    grid-column: 1;
    font-size: 28px;
  }

  body.about-page .about-card div {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

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

@media (min-width: 981px) and (max-width: 1280px) {
  .pricing-elite-layout {
    grid-template-columns: 1fr;
  }

  .elite-addon {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-header,
  .section,
  .risk-note,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

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

  .site-nav a {
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }

  .section {
    padding: 48px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 50px);
  }

  .hero-desc {
    font-size: 15px;
  }

  .button {
    width: 100%;
  }

  .activity-list {
    grid-template-columns: 1fr;
  }

  .mini-card,
  .feature-card,
  .pricing-card,
  .process-panel,
  .faq-panel,
  .club-panel,
  .event-section {
    border-radius: 22px;
  }

  .mini-card-grid.four,
  .feature-grid.four,
  .city-events,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .club-panel,
  .event-section,
  .pricing-card,
  .elite-value-panel {
    padding: 18px;
  }

  .elite-value-grid,
  .elite-value-tags {
    grid-template-columns: 1fr;
  }

  .about-hero,
  .about-core-grid,
  .about-belief-section,
  .about-values,
  .about-partner-note {
    width: min(100% - 28px, 1180px);
  }

  .about-hero {
    padding-top: 26px;
  }

  .about-hero-media,
  .about-hero-media img {
    min-height: 280px;
  }

  .about-core-card {
    min-height: auto;
    padding: 26px;
  }

  .about-core-card h2 {
    margin-top: 34px;
  }

  .about-belief-section {
    margin-bottom: 50px;
    padding: 24px;
  }

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

  .club-perks {
    grid-template-columns: 1fr;
  }

  .lounge-visual {
    min-height: 220px;
  }

  .city-card h3 {
    margin-top: 62px;
  }

  .footer-meta {
    text-align: left;
  }

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

  .site-footer > div:first-child,
  .site-footer nav,
  .site-footer .footer-meta {
    grid-column: 1;
    grid-row: auto;
  }

  .site-footer nav {
    justify-content: flex-start;
    justify-self: start;
  }

  .site-footer .footer-meta {
    justify-self: start;
  }

  .rmb-checkout-card {
    padding: 20px;
    border-radius: 24px;
  }

  .rmb-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .rmb-price-panel div {
    min-height: auto;
  }

  .rmb-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .consultation-choice-card {
    min-height: auto;
    padding: 22px;
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}

/* About image landing page — confirmed V2 asset, real header + one-screen culture board */
body.about-image-page {
  min-height: 100vh;
  background: #fbf5eb;
}

body.about-image-page .about-image-shell {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 22% 8%, rgba(255, 255, 255, 0.72), transparent 30%),
    radial-gradient(circle at 82% 10%, rgba(202, 168, 110, 0.08), transparent 34%),
    linear-gradient(112deg, #fbf5eb 0%, #fbf3e8 52%, #f7efe6 100%);
}

body.about-image-page .about-image-shell::before {
  content: "";
  position: absolute;
  top: 90px;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
  background:
    radial-gradient(ellipse at 82% 18%, rgba(202, 168, 110, 0.11), transparent 32%),
    radial-gradient(ellipse at 18% 16%, rgba(103, 153, 183, 0.08), transparent 28%),
    linear-gradient(90deg, #fbf5eb 0%, rgba(251, 245, 235, 0.66) 8%, transparent 20%, transparent 80%, rgba(249, 242, 232, 0.68) 92%, #f9f2e8 100%);
  pointer-events: none;
}

body.about-image-page .about-image-shell::after {
  content: "";
  position: absolute;
  inset: 86px 0 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at -7% 17%, transparent 52%, rgba(55, 98, 128, 0.22) 52.3%, transparent 52.8%),
    radial-gradient(ellipse at -7% 19%, transparent 56%, rgba(98, 179, 207, 0.17) 56.25%, transparent 56.7%),
    radial-gradient(ellipse at 108% 78%, transparent 48%, rgba(48, 82, 116, 0.18) 48.3%, transparent 48.9%),
    radial-gradient(ellipse at 108% 80%, transparent 53%, rgba(86, 183, 211, 0.14) 53.3%, transparent 53.8%);
  opacity: 0.9;
  pointer-events: none;
}

body.about-image-page .about-header {
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
}

.about-image-main {
  display: grid;
  flex: 1 1 auto;
  place-items: center;
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0 0 10px;
}

.about-image-main::before {
  content: "";
  position: absolute;
  inset: -24px 0;
  background:
    linear-gradient(90deg, #fbf5eb 0%, rgba(251, 245, 235, 0.24) 16%, rgba(251, 245, 235, 0.18) 84%, #fbf3eb 100%);
  filter: blur(16px);
  opacity: 0.72;
  pointer-events: none;
}

.about-culture-image {
  display: block;
  position: relative;
  z-index: 1;
  width: min(100%, 1672px);
  max-height: calc(100vh - 92px);
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3.6%, #000 96.4%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 3.6%, #000 96.4%, transparent 100%);
}

.about-visually-hidden,
.about-anchor-map {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .about-image-main {
    align-items: start;
    overflow-x: auto;
    overflow-y: hidden;
    padding-top: 10px;
  }

  .about-culture-image {
    width: 1000px;
    max-width: none;
    max-height: calc(100vh - 150px);
  }
}

@media (max-width: 560px) {
  .about-image-main {
    padding: 8px 12px 12px;
  }

  .about-culture-image {
    width: 860px;
    max-height: calc(100vh - 176px);
  }
}

/* Aibiliwu About image-only final layout: real header + full-bleed culture image. */
body.about-image-page {
  min-height: 100vh;
  overflow: hidden;
  background: #fbf5eb;
}

body.about-image-page .about-image-shell {
  display: flex;
  height: 100vh;
  min-height: 100vh;
  flex-direction: column;
  overflow: hidden;
  background: #fbf5eb;
}

body.about-image-page .about-image-shell::before,
body.about-image-page .about-image-shell::after,
body.about-image-page .about-image-main::before {
  content: none;
  display: none;
}

body.about-image-page .about-header {
  flex: 0 0 auto;
}

body.about-image-page .about-image-main {
  display: block;
  flex: 1 1 auto;
  width: 100vw;
  max-width: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
}

body.about-image-page .about-culture-image {
  display: block;
  width: 100vw;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center -18px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.about-return-phycle {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 20;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  min-width: 116px;
  padding: 12px 16px;
  border: 1px solid rgba(182, 138, 75, 0.26);
  border-radius: 18px;
  color: #071a35;
  text-decoration: none;
  background: rgba(255, 251, 242, 0.82);
  box-shadow: 0 18px 42px rgba(75, 54, 28, 0.14);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.about-return-phycle:hover {
  border-color: rgba(151, 111, 61, 0.48);
  background: rgba(255, 252, 246, 0.94);
  transform: translateY(-50%) translateX(-3px);
}

.about-return-phycle span {
  font-size: 14px;
  font-weight: 850;
}

.about-return-phycle small {
  color: rgba(7, 26, 53, 0.58);
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 640px) {
  .about-return-phycle {
    right: 14px;
    bottom: 14px;
    top: auto;
    min-width: auto;
    padding: 10px 12px;
    border-radius: 14px;
    transform: none;
  }

  .about-return-phycle:hover {
    transform: translateY(-2px);
  }
}

body.events-page {
  min-height: 100vh;
  overflow-x: hidden;
  color: #f8fafc;
  background:
    radial-gradient(circle at 10% 8%, rgba(34, 211, 238, 0.15), transparent 30%),
    radial-gradient(circle at 90% 4%, rgba(80, 235, 120, 0.11), transparent 28%),
    linear-gradient(180deg, #071323 0%, #050b16 54%, #030813 100%);
}

body.events-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.58;
}

.events-shell {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 34px;
}

.events-header {
  margin-bottom: 34px;
}

body.events-page .site-nav a.active {
  border-color: rgba(110, 231, 183, 0.52);
  background: rgba(16, 185, 129, 0.14);
  color: #d1fae5;
}

.events-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) 430px;
  gap: 24px;
}

.events-hero-copy,
.events-featured,
.events-panel,
.events-card {
  border: 1px solid rgba(165, 243, 252, 0.15);
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.78), rgba(2, 6, 23, 0.62)),
    radial-gradient(circle at 20% 0%, rgba(34, 211, 238, 0.1), transparent 44%);
  box-shadow: 0 24px 74px rgba(2, 6, 23, 0.32);
  backdrop-filter: blur(16px);
}

.events-hero-copy {
  min-height: 276px;
  border-radius: 30px;
  padding: 38px;
}

.events-kicker {
  margin: 0;
  color: #67e8f9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.events-kicker.gold {
  color: #fde68a;
}

.events-hero h1 {
  margin: 20px 0 0;
  color: #fff;
  font-size: clamp(46px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.events-hero p {
  max-width: 680px;
  margin: 20px 0 0;
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.86;
}

.events-primary-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  border: 1px solid rgba(167, 243, 208, 0.64);
  border-radius: 16px;
  background: linear-gradient(135deg, #67e8f9, #6ee7b7);
  color: #04111f;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 36px rgba(45, 212, 191, 0.2);
}

.events-featured {
  min-height: 276px;
  border-radius: 30px;
  padding: 28px;
  background:
    radial-gradient(circle at 90% 14%, rgba(251, 191, 36, 0.16), transparent 42%),
    linear-gradient(160deg, rgba(18, 31, 50, 0.88), rgba(6, 13, 24, 0.86));
}

.events-featured h2 {
  margin: 16px 0 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.events-featured p {
  margin: 14px 0 0;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.75;
}

.events-featured dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
}

.events-featured dl div {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
  padding: 12px;
}

.events-featured dt {
  color: #64748b;
  font-size: 12px;
}

.events-featured dd {
  margin: 5px 0 0;
  color: #f8fafc;
  font-size: 13px;
  font-weight: 800;
}

.events-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.events-badges span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #dbeafe;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
}

.events-badges span:first-child {
  border-color: rgba(110, 231, 183, 0.42);
  background: rgba(16, 185, 129, 0.12);
  color: #bbf7d0;
}

.events-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 18px;
}

.events-tabs button {
  min-height: 40px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
  padding: 0 18px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
}

.events-tabs button.active {
  border-color: rgba(110, 231, 183, 0.48);
  background: rgba(16, 185, 129, 0.14);
  color: #d1fae5;
}

.events-panel {
  margin-top: 18px;
  border-radius: 28px;
  padding: 26px;
}

.events-panel-heading {
  margin-bottom: 20px;
}

.events-panel-heading h2 {
  margin: 8px 0 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.events-panel-heading p:not(.events-kicker) {
  margin: 8px 0 0;
  color: #94a3b8;
  font-size: 14px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.events-card {
  display: flex;
  min-height: 254px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 24px;
  padding: 20px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.events-card:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 231, 183, 0.35);
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.8), rgba(2, 6, 23, 0.64)),
    radial-gradient(circle at 20% 0%, rgba(110, 231, 183, 0.12), transparent 46%);
}

.events-card h3 {
  margin: 16px 0 0;
  color: #fff;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.events-card p {
  margin: 12px 0 0;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.75;
}

.events-card-footer {
  margin-top: 18px;
}

.events-card-footer time {
  display: block;
  color: #cbd5e1;
  font-size: 13px;
}

.events-card-footer a,
.events-archive-row em {
  display: inline-flex;
  margin-top: 12px;
  color: #cffafe;
  font-style: normal;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.events-archive {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.events-archive-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 150px 110px;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  color: inherit;
  text-decoration: none;
}

.events-archive-row:hover {
  background: rgba(255, 255, 255, 0.035);
}

.events-archive-row time,
.events-archive-row span {
  color: #94a3b8;
  font-size: 13px;
}

.events-archive-row strong {
  min-width: 0;
  color: #fff;
  font-size: 15px;
}

.events-empty {
  grid-column: 1 / -1;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  color: #94a3b8;
  padding: 38px 20px;
  text-align: center;
}

@media (max-width: 1024px) {
  .events-hero {
    grid-template-columns: 1fr;
  }

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

  .events-archive-row {
    grid-template-columns: 120px minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .events-shell {
    width: min(100% - 28px, 1200px);
    padding-top: 18px;
  }

  .events-hero-copy,
  .events-featured,
  .events-panel {
    border-radius: 24px;
    padding: 22px;
  }

  .events-hero h1 {
    font-size: 46px;
  }

  .events-grid,
  .events-featured dl {
    grid-template-columns: 1fr;
  }

  .events-archive-row {
    display: block;
  }

  .events-archive-row > * {
    display: block;
    margin-top: 7px;
  }
}

/* =========================
   Shennan Personal Profile
   ========================= */
body.shennan-page .shennan-main {
  position: relative;
  z-index: 1;
}

body.shennan-page .shennan-hero,
body.shennan-page .shennan-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

body.shennan-page .shennan-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: 40px;
  min-height: 560px;
  padding: 72px 0;
}

body.shennan-page .shennan-kicker {
  margin: 0;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

body.shennan-page .shennan-hero h1,
body.shennan-page .shennan-section h2,
body.shennan-page .shennan-section h3 {
  color: var(--text);
}

body.shennan-page .shennan-hero h1 {
  margin: 16px 0 0;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

body.shennan-page .shennan-hero h1 span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.52em;
  font-weight: 500;
  letter-spacing: -0.025em;
}

body.shennan-page .shennan-hero__tagline {
  margin: 24px 0 0;
  color: rgba(248, 250, 252, 0.92);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 650;
}

body.shennan-page .shennan-hero__english,
body.shennan-page .shennan-hero__identity,
body.shennan-page .shennan-hero__secondary,
body.shennan-page .shennan-section p,
body.shennan-page .shennan-section li {
  color: var(--muted);
  line-height: 1.8;
}

body.shennan-page .shennan-hero__english {
  margin: 12px 0 0;
}

body.shennan-page .shennan-hero__identity {
  margin: 26px 0 0;
  color: #dbeafe;
}

body.shennan-page .shennan-hero__secondary {
  margin: 6px 0 0;
  font-size: 14px;
}

body.shennan-page .shennan-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

body.shennan-page .shennan-hero__actions .button {
  min-width: 132px;
}

body.shennan-page .shennan-visual-placeholder {
  display: grid;
  min-height: 400px;
  place-items: center;
  border: 1px dashed rgba(103, 232, 249, 0.34);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.58);
  color: rgba(207, 250, 254, 0.74);
  font-size: 14px;
  letter-spacing: 0.08em;
}

body.shennan-page .shennan-section {
  padding: 72px 0;
}

body.shennan-page .shennan-section-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

body.shennan-page .shennan-section-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

body.shennan-page .shennan-section-heading > p:last-child {
  margin: 12px 0 0;
}

body.shennan-page .shennan-milestone-grid,
body.shennan-page .shennan-call-grid,
body.shennan-page .shennan-content-grid,
body.shennan-page .shennan-project-grid {
  display: grid;
  gap: 16px;
}

body.shennan-page .shennan-milestone-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.shennan-page .shennan-milestone-card,
body.shennan-page .shennan-call-card,
body.shennan-page .shennan-content-card,
body.shennan-page .shennan-project-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
}

body.shennan-page .shennan-milestone-card {
  padding: 24px;
}

body.shennan-page .shennan-icon-placeholder {
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 22px;
  border: 1px dashed rgba(103, 232, 249, 0.46);
  border-radius: 50%;
}

body.shennan-page .shennan-milestone-card h3,
body.shennan-page .shennan-content-card h3,
body.shennan-page .shennan-project-card h3 {
  margin: 0;
  font-size: 20px;
}

body.shennan-page .shennan-milestone-card p,
body.shennan-page .shennan-content-card p,
body.shennan-page .shennan-project-card p {
  margin: 10px 0 0;
  font-size: 14px;
}

body.shennan-page .shennan-about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: 44px;
}

body.shennan-page .shennan-about__copy > p {
  max-width: 640px;
  margin: 14px 0 0;
}

body.shennan-page .shennan-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

body.shennan-page .shennan-keywords li,
body.shennan-page .shennan-filter-placeholder span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 0 12px;
  color: #dbeafe;
  font-size: 12px;
  letter-spacing: 0.06em;
}

body.shennan-page .shennan-timeline-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.shennan-page .shennan-timeline-list li {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0 22px 24px;
  border-left: 1px solid rgba(103, 232, 249, 0.3);
}

body.shennan-page .shennan-timeline-list time {
  color: var(--cyan);
  font-weight: 750;
  letter-spacing: 0.05em;
}

body.shennan-page .shennan-timeline-list h3 {
  margin: 0;
  font-size: 19px;
}

body.shennan-page .shennan-timeline-list p {
  margin: 6px 0 0;
}

body.shennan-page .shennan-filter-placeholder {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

body.shennan-page .shennan-call-grid,
body.shennan-page .shennan-content-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.shennan-page .shennan-call-card,
body.shennan-page .shennan-content-card,
body.shennan-page .shennan-project-card {
  padding: 24px;
}

body.shennan-page .shennan-call-card h3 {
  margin: 0;
  color: #dbeafe;
  font-size: 18px;
}

body.shennan-page .shennan-call-card dl {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

body.shennan-page .shennan-call-card dl div {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 12px;
}

body.shennan-page .shennan-call-card dt,
body.shennan-page .shennan-call-card dd {
  margin: 0;
  font-size: 13px;
  overflow-wrap: anywhere;
}

body.shennan-page .shennan-call-card dt {
  color: rgba(174, 184, 202, 0.74);
}

body.shennan-page .shennan-call-card dd,
body.shennan-page .shennan-content-card span {
  color: #dbeafe;
}

body.shennan-page .shennan-content-card > p {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

body.shennan-page .shennan-content-card span {
  display: block;
  margin-top: 28px;
  font-size: 13px;
}

body.shennan-page .shennan-project-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.shennan-page .shennan-project-card__subtitle {
  color: var(--cyan) !important;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.08em;
}

body.shennan-page .shennan-project-card a {
  display: inline-flex;
  gap: 8px;
  margin-top: 24px;
  color: var(--cyan);
  font-weight: 700;
}

body.shennan-page .shennan-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.shennan-page .shennan-contact-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(15, 23, 42, 0.58);
  color: #dbeafe;
}

@media (max-width: 1024px) {
  body.shennan-page .shennan-hero,
  body.shennan-page .shennan-about {
    grid-template-columns: 1fr;
  }

  body.shennan-page .shennan-hero {
    min-height: auto;
    padding-top: 52px;
  }

  body.shennan-page .shennan-visual-placeholder {
    min-height: 320px;
  }

  body.shennan-page .shennan-milestone-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  body.shennan-page .shennan-call-grid,
  body.shennan-page .shennan-content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body.shennan-page .shennan-hero,
  body.shennan-page .shennan-section {
    width: min(calc(100% - 28px), 1180px);
  }

  body.shennan-page .shennan-hero,
  body.shennan-page .shennan-section {
    padding: 48px 0;
  }

  body.shennan-page .shennan-hero h1 {
    font-size: clamp(42px, 15vw, 58px);
  }

  body.shennan-page .shennan-hero__actions .button {
    width: 100%;
  }

  body.shennan-page .shennan-milestone-grid,
  body.shennan-page .shennan-project-grid {
    grid-template-columns: 1fr;
  }

  body.shennan-page .shennan-timeline-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.shennan-page .shennan-visual-placeholder {
    min-height: 260px;
  }
}

/* Step 04 — visual system. These overrides remain local to the profile page. */
body.shennan-page {
  --shennan-bg: #f6f2ea;
  --shennan-surface: #fbf8f2;
  --shennan-text: #16120e;
  --shennan-muted: #746b61;
  --shennan-soft: #9a9186;
  --shennan-border: #ddd5c9;
  --shennan-gold: #b78a43;
  --shennan-gold-dark: #8f692f;
  --shennan-dark: #16120e;
  --shennan-dark-soft: #211d18;
  --shennan-serif: Georgia, "Times New Roman", "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
  --shennan-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--shennan-bg);
  color: var(--shennan-text);
  font-family: var(--shennan-sans);
}

body.shennan-page .site-shell {
  overflow: clip;
  background:
    radial-gradient(circle at 88% 8%, rgba(183, 138, 67, 0.1), transparent 21rem),
    radial-gradient(circle at 7% 28%, rgba(183, 138, 67, 0.06), transparent 24rem),
    var(--shennan-bg);
}

body.shennan-page .background-grid {
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(183, 138, 67, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183, 138, 67, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
}

body.shennan-page .site-header {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 26px 0;
  border-bottom: 1px solid var(--shennan-border);
  background: transparent;
}

body.shennan-page .brand,
body.shennan-page .brand strong,
body.shennan-page .brand small {
  color: var(--shennan-text);
}

body.shennan-page .brand-mark {
  border-color: var(--shennan-gold);
  color: var(--shennan-gold-dark);
  background: transparent;
}

body.shennan-page .site-nav a {
  border: 1px solid transparent;
  border-radius: 3px;
  background: transparent;
  color: var(--shennan-muted);
  box-shadow: none;
}

body.shennan-page .site-nav a:hover,
body.shennan-page .site-nav a[aria-current="page"] {
  border-color: var(--shennan-gold);
  background: transparent;
  color: var(--shennan-gold-dark);
  transform: none;
}

body.shennan-page .shennan-main {
  position: relative;
  z-index: 1;
}

body.shennan-page .shennan-hero,
body.shennan-page .shennan-section,
body.shennan-page .shennan-closing {
  width: min(1280px, calc(100% - 96px));
  margin-right: auto;
  margin-left: auto;
}

body.shennan-page .shennan-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  min-height: min(92vh, 940px);
  gap: clamp(44px, 6vw, 96px);
  padding: 72px 0 104px;
  border-bottom: 1px solid var(--shennan-border);
}

body.shennan-page .shennan-hero__copy {
  max-width: 720px;
}

body.shennan-page .shennan-eyebrow,
body.shennan-page .shennan-section-label,
body.shennan-page .shennan-call-card__asset,
body.shennan-page .shennan-content-card > p,
body.shennan-page .shennan-insight-item > p {
  color: var(--shennan-gold-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

body.shennan-page .shennan-hero h1,
body.shennan-page .shennan-section-heading h2,
body.shennan-page .shennan-closing p {
  color: var(--shennan-text);
  font-family: var(--shennan-serif);
  font-weight: 500;
  letter-spacing: -0.055em;
}

body.shennan-page .shennan-hero h1 {
  max-width: 760px;
  margin: 20px 0 22px;
  font-size: clamp(4rem, 7vw, 6.75rem);
  line-height: 0.96;
}

body.shennan-page .shennan-hero h1 span {
  display: block;
  margin-top: 0.18em;
  color: var(--shennan-gold-dark);
  font-size: clamp(2.7rem, 4.7vw, 4.75rem);
  letter-spacing: -0.05em;
}

body.shennan-page .shennan-hero__tagline {
  max-width: 620px;
  margin: 0;
  color: var(--shennan-text);
  font-family: var(--shennan-serif);
  font-size: clamp(1.6rem, 2.35vw, 2.2rem);
  line-height: 1.36;
}

body.shennan-page .shennan-hero__english {
  margin: 24px 0 0;
  color: var(--shennan-muted);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.65;
}

body.shennan-page .shennan-identity,
body.shennan-page .shennan-secondary-identity {
  max-width: 560px;
  color: var(--shennan-muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

body.shennan-page .shennan-identity {
  margin: 34px 0 0;
  color: var(--shennan-text);
  font-weight: 600;
}

body.shennan-page .shennan-secondary-identity {
  margin: 5px 0 0;
}

body.shennan-page .shennan-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

body.shennan-page .shennan-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--shennan-dark);
  border-radius: 3px;
  box-shadow: none;
  font-size: 0.94rem;
  font-weight: 700;
  transition: background-color 240ms ease, border-color 240ms ease, color 240ms ease, transform 240ms ease;
}

body.shennan-page .shennan-button--primary {
  background: var(--shennan-dark);
  color: var(--shennan-surface);
}

body.shennan-page .shennan-button--secondary {
  background: transparent;
  color: var(--shennan-text);
}

body.shennan-page .shennan-button:hover {
  transform: translateY(-2px);
}

body.shennan-page .shennan-button--primary:hover {
  border-color: var(--shennan-gold-dark);
  background: var(--shennan-gold-dark);
  color: var(--shennan-surface);
}

body.shennan-page .shennan-button--secondary:hover {
  border-color: var(--shennan-gold-dark);
  color: var(--shennan-gold-dark);
}

body.shennan-page .shennan-hero__visual {
  justify-self: end;
  width: min(100%, 560px);
}

body.shennan-page .shennan-visual-placeholder,
body.shennan-page .shennan-about__visual .shennan-visual-placeholder {
  position: relative;
  display: flex;
  min-height: 0;
  aspect-ratio: 4 / 5;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  border: 1px solid var(--shennan-border);
  border-radius: 4px;
  background:
    linear-gradient(140deg, transparent 0 63%, rgba(183, 138, 67, 0.12) 63.1% 63.35%, transparent 63.45%),
    radial-gradient(circle at 80% 18%, rgba(183, 138, 67, 0.17), transparent 28%),
    linear-gradient(150deg, #eee6d9, #d8cbbb);
  color: var(--shennan-muted);
  box-shadow: none;
}

body.shennan-page .shennan-visual-placeholder::before {
  position: absolute;
  top: -23%;
  right: -27%;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(143, 105, 47, 0.34);
  border-radius: 50%;
  content: "";
}

body.shennan-page .shennan-visual-placeholder span,
body.shennan-page .shennan-visual-placeholder strong {
  position: relative;
  z-index: 1;
  display: block;
}

body.shennan-page .shennan-visual-placeholder span {
  margin: 0 0 12px 28px;
  color: var(--shennan-gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

body.shennan-page .shennan-visual-placeholder strong {
  margin: 0 0 28px 28px;
  color: var(--shennan-text);
  font-family: var(--shennan-serif);
  font-size: 1.45rem;
  font-weight: 500;
}

body.shennan-page .shennan-section {
  padding: clamp(7.5rem, 12vw, 10rem) 0;
}

body.shennan-page .shennan-section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

body.shennan-page .shennan-section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.65rem, 4.8vw, 4rem);
  line-height: 1;
}

body.shennan-page .shennan-section-heading p:not(.shennan-section-label) {
  max-width: 470px;
  margin: 0;
  color: var(--shennan-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

body.shennan-page .shennan-milestones {
  padding-top: 88px;
  padding-bottom: 132px;
}

body.shennan-page .shennan-milestone-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--shennan-border);
  border-bottom: 1px solid var(--shennan-border);
}

body.shennan-page .shennan-milestone-card {
  min-height: 188px;
  padding: 34px 28px 32px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.shennan-page .shennan-milestone-card + .shennan-milestone-card {
  padding-left: 28px;
  border-left: 1px solid var(--shennan-border);
}

body.shennan-page .shennan-icon-placeholder {
  display: none;
}

body.shennan-page .shennan-milestone-card h3 {
  margin: 0 0 18px;
  color: var(--shennan-text);
  font-family: var(--shennan-serif);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.1;
}

body.shennan-page .shennan-milestone-card p {
  margin: 0;
  color: var(--shennan-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

body.shennan-page .shennan-about {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  align-items: center;
  gap: clamp(48px, 8vw, 132px);
  border-top: 1px solid var(--shennan-border);
}

body.shennan-page .shennan-about__copy > p:not(.shennan-section-label) {
  max-width: 650px;
  margin: 0 0 20px;
  color: var(--shennan-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.26rem);
  line-height: 1.78;
}

body.shennan-page .shennan-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

body.shennan-page .shennan-keywords li {
  color: var(--shennan-gold-dark);
  font-family: var(--shennan-serif);
  font-size: 1.05rem;
}

body.shennan-page .shennan-keywords li + li::before {
  margin: 0 12px;
  color: var(--shennan-soft);
  content: "/";
}

body.shennan-page .shennan-about__visual .shennan-visual-placeholder {
  aspect-ratio: 4 / 5;
}

body.shennan-page .shennan-timeline {
  border-top: 1px solid var(--shennan-border);
}

body.shennan-page .shennan-timeline-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.shennan-page .shennan-timeline-list li {
  position: relative;
  display: block;
  min-height: 260px;
  padding: 34px 24px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body.shennan-page .shennan-timeline-list li + li {
  padding-left: 24px;
  border-left: 1px solid var(--shennan-border);
}

body.shennan-page .shennan-timeline-list li::before {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--shennan-gold-dark);
  border-radius: 50%;
  background: var(--shennan-bg);
  content: "";
}

body.shennan-page .shennan-timeline-list li:first-child::before {
  left: 0;
}

body.shennan-page .shennan-timeline-list time {
  display: block;
  margin-bottom: 22px;
  color: var(--shennan-text);
  font-family: var(--shennan-serif);
  font-size: clamp(1.7rem, 2.65vw, 2.5rem);
  line-height: 1;
}

body.shennan-page .shennan-timeline-list h3 {
  margin: 0 0 12px;
  color: var(--shennan-text);
  font-size: 1rem;
}

body.shennan-page .shennan-timeline-list p {
  margin: 0;
  color: var(--shennan-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

body.shennan-page .shennan-market-calls {
  padding-top: clamp(10rem, 16vw, 13rem);
  border-top: 1px solid var(--shennan-border);
}

body.shennan-page .shennan-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: -18px 0 52px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--shennan-border);
}

body.shennan-page .shennan-filters span {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--shennan-soft);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

body.shennan-page .shennan-filters span:first-child {
  color: var(--shennan-text);
}

body.shennan-page .shennan-call-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

body.shennan-page .shennan-call-card {
  min-height: 348px;
  padding: 28px 0 0;
  border: 0;
  border-top: 1px solid var(--shennan-text);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.shennan-page .shennan-call-card__asset {
  margin: 0 0 28px;
}

body.shennan-page .shennan-call-card__date {
  display: block;
  margin-bottom: 32px;
  color: var(--shennan-text);
  font-family: var(--shennan-serif);
  font-size: clamp(1.8rem, 3.1vw, 2.75rem);
  line-height: 0.96;
}

body.shennan-page .shennan-call-card h3 {
  margin: 0 0 14px;
  color: var(--shennan-text);
  font-family: var(--shennan-serif);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.18;
}

body.shennan-page .shennan-call-card__summary {
  margin: 0 0 26px;
  color: var(--shennan-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

body.shennan-page .shennan-call-card dl {
  margin: 0;
  border-top: 1px solid var(--shennan-border);
}

body.shennan-page .shennan-call-card dl > div {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--shennan-border);
}

body.shennan-page .shennan-call-card dt {
  color: var(--shennan-soft);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

body.shennan-page .shennan-call-card dd {
  margin: 0;
  color: var(--shennan-muted);
  font-size: 0.78rem;
  text-align: right;
}

body.shennan-page .shennan-featured {
  width: 100%;
  padding: clamp(10rem, 15vw, 13rem) max(48px, calc((100% - 1280px) / 2));
  background: var(--shennan-dark);
  color: var(--shennan-surface);
}

body.shennan-page .shennan-featured .shennan-section-heading h2,
body.shennan-page .shennan-featured .shennan-section-label {
  color: var(--shennan-surface);
}

body.shennan-page .shennan-featured .shennan-section-label,
body.shennan-page .shennan-featured .shennan-content-card > p {
  color: #d8b77d;
}

body.shennan-page .shennan-content-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 0 0 12px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(251, 248, 242, 0.35) transparent;
}

body.shennan-page .shennan-content-card {
  display: flex;
  flex: 0 0 clamp(300px, 31vw, 402px);
  min-height: 434px;
  flex-direction: column;
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid rgba(251, 248, 242, 0.24);
  border-radius: 4px;
  background: transparent;
  box-shadow: none;
}

body.shennan-page .shennan-content-card__media {
  min-height: 220px;
  aspect-ratio: 16 / 10;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(145deg, transparent 0 54%, rgba(183, 138, 67, 0.32) 54.1% 54.4%, transparent 54.5%),
    radial-gradient(circle at 75% 18%, rgba(183, 138, 67, 0.48), transparent 20%),
    #302a23;
}

body.shennan-page .shennan-content-card > p,
body.shennan-page .shennan-content-card h3,
body.shennan-page .shennan-content-card > span {
  margin-right: 26px;
  margin-left: 26px;
}

body.shennan-page .shennan-content-card > p {
  margin-top: 24px;
  margin-bottom: 14px;
}

body.shennan-page .shennan-content-card h3 {
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--shennan-surface);
  font-family: var(--shennan-serif);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.2;
}

body.shennan-page .shennan-content-card > span {
  margin-top: auto;
  margin-bottom: 26px;
  color: rgba(251, 248, 242, 0.67);
  font-size: 0.88rem;
}

body.shennan-page .shennan-projects {
  padding-top: clamp(10rem, 15vw, 13rem);
}

body.shennan-page .shennan-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

body.shennan-page .shennan-project-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid var(--shennan-border);
  border-radius: 4px;
  box-shadow: none;
}

body.shennan-page .shennan-project-card--aibiliwu {
  background: var(--shennan-surface);
  color: var(--shennan-text);
}

body.shennan-page .shennan-project-card--phycle {
  border-color: var(--shennan-dark);
  background: var(--shennan-dark);
  color: var(--shennan-surface);
}

body.shennan-page .shennan-project-card > p {
  margin: 0 0 16px;
  color: var(--shennan-gold-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.shennan-page .shennan-project-card--phycle > p {
  color: #d8b77d;
}

body.shennan-page .shennan-project-card h3 {
  margin: 0 0 18px;
  font-family: var(--shennan-serif);
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  font-weight: 500;
  line-height: 0.96;
}

body.shennan-page .shennan-project-card > span {
  max-width: 380px;
  color: var(--shennan-muted);
  font-size: 1rem;
  line-height: 1.7;
}

body.shennan-page .shennan-project-card--phycle > span {
  color: rgba(251, 248, 242, 0.7);
}

body.shennan-page .shennan-project-card a {
  margin-top: 36px;
  color: inherit;
  font-size: 0.95rem;
  font-weight: 700;
}

body.shennan-page .shennan-project-card a:hover {
  color: var(--shennan-gold-dark);
  transform: translateX(5px);
}

body.shennan-page .shennan-project-card--phycle a:hover {
  color: #d8b77d;
}

body.shennan-page .shennan-insights {
  border-top: 1px solid var(--shennan-border);
}

body.shennan-page .shennan-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

body.shennan-page .shennan-insight-item {
  min-height: 260px;
  padding-top: 25px;
  border: 0;
  border-top: 1px solid var(--shennan-text);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.shennan-page .shennan-insight-item > p {
  margin: 0 0 30px;
}

body.shennan-page .shennan-insight-item h3 {
  margin: 0 0 18px;
  color: var(--shennan-text);
  font-family: var(--shennan-serif);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.17;
}

body.shennan-page .shennan-insight-item > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--shennan-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

body.shennan-page .shennan-insight-item b {
  color: var(--shennan-gold-dark);
  font-size: 1.2rem;
  font-weight: 400;
}

body.shennan-page .shennan-contact {
  padding-top: clamp(11rem, 17vw, 15rem);
  padding-bottom: clamp(10rem, 15vw, 13rem);
  border-top: 1px solid var(--shennan-border);
}

body.shennan-page .shennan-contact__body {
  max-width: 800px;
}

body.shennan-page .shennan-contact__body > p {
  max-width: 480px;
  margin: 0 0 42px;
  color: var(--shennan-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

body.shennan-page .shennan-contact-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--shennan-border);
}

body.shennan-page .shennan-contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: var(--shennan-text);
  font-family: var(--shennan-serif);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1;
}

body.shennan-page .shennan-contact-links a:hover {
  color: var(--shennan-gold-dark);
  transform: translateX(4px);
}

body.shennan-page .shennan-closing {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  padding: 96px 0 110px;
  border-top: 1px solid var(--shennan-border);
}

body.shennan-page .shennan-closing p {
  margin: 0;
  font-size: clamp(4.4rem, 10vw, 10.5rem);
  line-height: 0.8;
}

body.shennan-page .shennan-closing span {
  color: var(--shennan-muted);
  font-size: 1rem;
  line-height: 1.65;
  text-align: right;
}

body.shennan-page .site-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 68px max(48px, calc((100% - 1180px) / 2));
  border: 0;
  border-radius: 0;
  background: var(--shennan-dark);
  box-shadow: none;
}

body.shennan-page .site-footer,
body.shennan-page .site-footer strong {
  color: var(--shennan-surface);
}

body.shennan-page .site-footer p,
body.shennan-page .site-footer a {
  color: rgba(251, 248, 242, 0.66);
}

body.shennan-page .site-footer a:hover {
  color: #d8b77d;
}

@media (max-width: 1199px) {
  body.shennan-page .shennan-hero,
  body.shennan-page .shennan-section,
  body.shennan-page .shennan-closing {
    width: min(calc(100% - 64px), 1120px);
  }

  body.shennan-page .shennan-featured {
    padding-right: 32px;
    padding-left: 32px;
  }

  body.shennan-page .shennan-milestone-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.shennan-page .shennan-milestone-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--shennan-border);
  }

  body.shennan-page .shennan-milestone-card:nth-child(3),
  body.shennan-page .shennan-milestone-card:nth-child(4) {
    padding-top: 34px;
  }

  body.shennan-page .shennan-call-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.shennan-page .shennan-call-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  body.shennan-page .shennan-hero,
  body.shennan-page .shennan-about {
    grid-template-columns: 1fr;
  }

  body.shennan-page .shennan-hero {
    min-height: auto;
    padding-top: 72px;
  }

  body.shennan-page .shennan-hero__visual {
    justify-self: start;
    width: min(100%, 480px);
  }

  body.shennan-page .shennan-about__visual {
    order: -1;
    width: min(100%, 480px);
  }
}

@media (max-width: 767px) {
  body.shennan-page .site-header {
    width: min(calc(100% - 40px), 640px);
    padding: 18px 0;
  }

  body.shennan-page .shennan-hero,
  body.shennan-page .shennan-section,
  body.shennan-page .shennan-closing {
    width: min(calc(100% - 40px), 640px);
  }

  body.shennan-page .shennan-hero {
    gap: 48px;
    padding: 64px 0 76px;
  }

  body.shennan-page .shennan-hero h1 {
    font-size: clamp(3rem, 14vw, 4rem);
  }

  body.shennan-page .shennan-hero h1 span {
    font-size: clamp(2.4rem, 11vw, 3.35rem);
  }

  body.shennan-page .shennan-hero__tagline {
    font-size: 1.42rem;
  }

  body.shennan-page .shennan-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  body.shennan-page .shennan-hero__actions .button {
    width: 100%;
  }

  body.shennan-page .shennan-hero__visual,
  body.shennan-page .shennan-about__visual {
    width: 100%;
  }

  body.shennan-page .shennan-section {
    padding: 80px 0;
  }

  body.shennan-page .shennan-section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 40px;
  }

  body.shennan-page .shennan-section-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3rem);
  }

  body.shennan-page .shennan-milestones {
    padding-top: 68px;
  }

  body.shennan-page .shennan-milestone-grid,
  body.shennan-page .shennan-call-grid,
  body.shennan-page .shennan-project-grid,
  body.shennan-page .shennan-insights-grid,
  body.shennan-page .shennan-contact-links {
    grid-template-columns: 1fr;
  }

  body.shennan-page .shennan-milestone-card,
  body.shennan-page .shennan-milestone-card + .shennan-milestone-card {
    min-height: 0;
    padding: 28px 0;
    border-left: 0;
    border-top: 1px solid var(--shennan-border);
  }

  body.shennan-page .shennan-milestone-card:first-child {
    border-top: 0;
  }

  body.shennan-page .shennan-about {
    gap: 48px;
  }

  body.shennan-page .shennan-timeline-list {
    display: block;
    border-left: 1px solid var(--shennan-border);
  }

  body.shennan-page .shennan-timeline-list li,
  body.shennan-page .shennan-timeline-list li + li {
    min-height: 0;
    padding: 0 0 36px 28px;
    border-left: 0;
  }

  body.shennan-page .shennan-timeline-list li::before,
  body.shennan-page .shennan-timeline-list li:first-child::before {
    top: 7px;
    left: -5px;
  }

  body.shennan-page .shennan-timeline-list time {
    margin-bottom: 13px;
  }

  body.shennan-page .shennan-market-calls,
  body.shennan-page .shennan-projects,
  body.shennan-page .shennan-contact {
    padding-top: 96px;
  }

  body.shennan-page .shennan-call-card:last-child {
    grid-column: auto;
  }

  body.shennan-page .shennan-call-card {
    min-height: 0;
  }

  body.shennan-page .shennan-featured {
    padding: 88px 20px;
  }

  body.shennan-page .shennan-content-card {
    flex-basis: min(82vw, 360px);
    min-height: 400px;
  }

  body.shennan-page .shennan-project-card {
    min-height: 360px;
    padding: 32px;
  }

  body.shennan-page .shennan-insight-item {
    min-height: 0;
    padding-bottom: 12px;
  }

  body.shennan-page .shennan-contact-links {
    gap: 0;
  }

  body.shennan-page .shennan-contact-links a {
    padding: 15px 0;
    border-bottom: 1px solid var(--shennan-border);
  }

  body.shennan-page .shennan-closing {
    align-items: flex-start;
    flex-direction: column;
    padding: 78px 0 84px;
  }

  body.shennan-page .shennan-closing p {
    font-size: clamp(4.1rem, 18vw, 6.5rem);
  }

  body.shennan-page .shennan-closing span {
    text-align: left;
  }

  body.shennan-page .site-footer {
    padding: 56px 20px;
  }
}

/* Step 04R — restore the approved editorial portrait composition. */
body.shennan-page .background-grid {
  display: none;
}

body.shennan-page .site-shell {
  background:
    radial-gradient(circle at 92% 5%, rgba(183, 138, 67, 0.12), transparent 27rem),
    radial-gradient(circle at 12% 44%, rgba(183, 138, 67, 0.06), transparent 30rem),
    var(--shennan-bg);
}

body.shennan-page .site-header {
  position: relative;
  z-index: 5;
  width: min(1440px, calc(100% - 96px));
  padding: 24px 0 18px;
  border-bottom: 0;
}

body.shennan-page .brand strong {
  font-family: var(--shennan-serif);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

body.shennan-page .brand small {
  margin-top: 1px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

body.shennan-page .site-nav {
  gap: clamp(8px, 1.4vw, 22px);
}

body.shennan-page .site-nav a,
body.shennan-page .site-nav a[aria-current="page"] {
  padding: 7px 3px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--shennan-text);
  font-size: 0.82rem;
  font-weight: 500;
}

body.shennan-page .site-nav a[aria-current="page"],
body.shennan-page .site-nav a:hover {
  color: var(--shennan-gold-dark);
}

body.shennan-page .shennan-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.57fr) minmax(420px, 0.43fr);
  width: min(1480px, 100%);
  min-height: clamp(720px, 86vh, 820px);
  gap: 0;
  margin: 0 auto;
  padding: clamp(76px, 10vh, 116px) max(48px, calc((100% - 1280px) / 2)) 0;
  overflow: hidden;
  border-bottom: 0;
}

body.shennan-page .shennan-hero::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(43%, 610px);
  height: 138px;
  opacity: 0.1;
  background: var(--shennan-gold-dark);
  clip-path: polygon(0 100%, 0 54%, 5% 54%, 5% 33%, 10% 33%, 10% 62%, 17% 62%, 17% 17%, 23% 17%, 23% 70%, 29% 70%, 29% 41%, 35% 41%, 35% 8%, 41% 8%, 41% 54%, 48% 54%, 48% 31%, 54% 31%, 54% 66%, 62% 66%, 62% 22%, 69% 22%, 69% 57%, 76% 57%, 76% 38%, 84% 38%, 84% 13%, 91% 13%, 91% 61%, 100% 61%, 100% 100%);
  content: "";
}

body.shennan-page .shennan-hero::after {
  position: absolute;
  right: -12%;
  bottom: -78%;
  width: 94%;
  height: 104%;
  border: 1px solid rgba(183, 138, 67, 0.42);
  border-radius: 50% 50% 0 0;
  content: "";
  pointer-events: none;
}

body.shennan-page .shennan-hero__copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 760px;
  padding-bottom: clamp(72px, 10vh, 118px);
}

body.shennan-page .shennan-kicker {
  color: var(--shennan-gold-dark);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}

body.shennan-page .shennan-hero h1 {
  margin: 20px 0 22px;
  color: #2a1c10;
  font-size: clamp(4.7rem, 7.8vw, 7.55rem);
  letter-spacing: -0.085em;
  line-height: 0.94;
  white-space: nowrap;
}

body.shennan-page .shennan-hero h1 span {
  display: inline;
  margin: 0 0 0 0.18em;
  color: var(--shennan-gold-dark);
  font-size: 0.75em;
  letter-spacing: -0.06em;
}

body.shennan-page .shennan-name-rule {
  display: flex;
  width: min(100%, 550px);
  align-items: center;
  gap: 12px;
  margin: 0 0 30px;
}

body.shennan-page .shennan-name-rule span {
  height: 1px;
  flex: 1;
  background: rgba(143, 105, 47, 0.54);
}

body.shennan-page .shennan-name-rule i {
  position: relative;
  width: 11px;
  height: 11px;
  transform: rotate(45deg);
  background: var(--shennan-gold);
}

body.shennan-page .shennan-name-rule i::after {
  position: absolute;
  inset: 3px;
  background: var(--shennan-bg);
  content: "";
}

body.shennan-page .shennan-hero__tagline {
  max-width: 590px;
  color: var(--shennan-text);
  font-family: var(--shennan-serif);
  font-size: clamp(1.9rem, 2.75vw, 2.4rem);
  font-weight: 500;
  line-height: 1.32;
}

body.shennan-page .shennan-hero__english {
  margin-top: 20px;
  color: var(--shennan-muted);
  font-family: var(--shennan-sans);
  font-size: clamp(1rem, 1.28vw, 1.15rem);
  line-height: 1.48;
}

body.shennan-page .shennan-hero__identity {
  margin-top: 34px;
  color: var(--shennan-gold-dark);
  font-family: var(--shennan-serif);
  font-size: clamp(1.04rem, 1.55vw, 1.24rem);
  font-weight: 500;
  letter-spacing: 0.04em;
}

body.shennan-page .shennan-hero__identity-english {
  margin: 6px 0 0;
  color: #8f692f;
  font-family: var(--shennan-serif);
  font-size: 0.97rem;
  letter-spacing: 0.015em;
}

body.shennan-page .shennan-hero__secondary {
  margin-top: 10px;
  color: var(--shennan-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

body.shennan-page .shennan-hero__actions {
  gap: 14px;
  margin-top: 32px;
}

body.shennan-page .shennan-button {
  min-width: 156px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 0.9rem;
}

body.shennan-page .shennan-button--primary {
  border-color: #22170e;
  background: #22170e;
}

body.shennan-page .shennan-button--secondary {
  border-color: rgba(143, 105, 47, 0.58);
  color: var(--shennan-gold-dark);
}

body.shennan-page .shennan-hero__portrait {
  position: relative;
  z-index: 1;
  align-self: end;
  height: min(84%, 690px);
  min-height: 620px;
}

body.shennan-page .shennan-hero__portrait-stage {
  position: absolute;
  right: -9%;
  bottom: 0;
  left: -8%;
  height: 100%;
  overflow: hidden;
}

body.shennan-page .shennan-hero__portrait-stage::before {
  position: absolute;
  top: 8%;
  right: -5%;
  width: 92%;
  height: 91%;
  border: 1px solid rgba(183, 138, 67, 0.25);
  border-radius: 50% 50% 0 0;
  background:
    radial-gradient(ellipse at 62% 56%, rgba(255, 255, 255, 0.72), transparent 40%),
    linear-gradient(126deg, rgba(250, 247, 241, 0.05), rgba(183, 138, 67, 0.13));
  content: "";
}

body.shennan-page .shennan-hero__portrait-stage::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 8%;
  height: 24%;
  opacity: 0.12;
  background:
    linear-gradient(90deg, transparent 0 9%, var(--shennan-gold-dark) 9% 10%, transparent 10% 19%, var(--shennan-gold-dark) 19% 20%, transparent 20% 31%, var(--shennan-gold-dark) 31% 32%, transparent 32% 44%, var(--shennan-gold-dark) 44% 45%, transparent 45% 100%);
  content: "";
}

/* The approved portrait will be an absolutely positioned image in this layer in Step 05. */
body.shennan-page .shennan-hero__portrait img {
  position: absolute;
  right: -8%;
  bottom: 0;
  z-index: 2;
  width: 185%;
  max-width: none;
  height: auto;
  object-fit: initial;
  object-position: bottom right;
}

body.shennan-page .shennan-milestones {
  display: grid;
  grid-template-columns: minmax(190px, 0.82fr) minmax(0, 3.18fr);
  column-gap: clamp(38px, 5.5vw, 86px);
  width: min(1480px, 100%);
  padding: 58px max(48px, calc((100% - 1280px) / 2)) 66px;
  border-top: 1px solid rgba(143, 105, 47, 0.19);
  border-bottom: 1px solid rgba(143, 105, 47, 0.19);
}

body.shennan-page .shennan-milestones .shennan-section-heading {
  display: block;
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 0;
}

body.shennan-page .shennan-milestones .shennan-section-heading h2 {
  margin-top: 18px;
  font-size: clamp(2.3rem, 3.6vw, 3.35rem);
}

body.shennan-page .shennan-milestones .shennan-section-heading::after {
  display: block;
  width: 178px;
  height: 1px;
  margin-top: 30px;
  background: var(--shennan-gold);
  box-shadow: -18px 0 0 -8px var(--shennan-gold);
  content: "";
}

body.shennan-page .shennan-milestone-grid {
  grid-column: 2;
  grid-row: 1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 0;
}

body.shennan-page .shennan-milestone-card,
body.shennan-page .shennan-milestone-card + .shennan-milestone-card {
  min-height: 178px;
  padding: 0 24px;
  border: 0;
  border-left: 1px solid var(--shennan-border);
}

body.shennan-page .shennan-milestone-card:first-child {
  padding-left: 0;
  border-left: 0;
}

body.shennan-page .shennan-icon-placeholder {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--shennan-gold-dark);
  font-family: var(--shennan-serif);
  font-size: 1.7rem;
  line-height: 1;
}

body.shennan-page .shennan-icon-placeholder::before {
  content: attr(data-icon);
}

body.shennan-page .shennan-milestone-card h3 {
  margin-bottom: 13px;
  font-size: clamp(1.16rem, 1.6vw, 1.42rem);
}

body.shennan-page .shennan-milestone-card p {
  max-width: 190px;
  font-size: 0.84rem;
  line-height: 1.65;
}

body.shennan-page .shennan-milestones__action {
  display: inline-flex;
  grid-column: 2;
  grid-row: 2;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 194px;
  min-height: 44px;
  margin: 26px auto 0;
  padding: 0 18px;
  border: 1px solid rgba(143, 105, 47, 0.42);
  border-radius: 8px;
  color: var(--shennan-text);
  font-size: 0.86rem;
}

body.shennan-page .shennan-milestones__action span {
  margin-left: 17px;
  color: var(--shennan-gold-dark);
  font-size: 1.1rem;
}

body.shennan-page .shennan-milestones__action:hover {
  border-color: var(--shennan-gold-dark);
  color: var(--shennan-gold-dark);
  transform: translateY(-2px);
}

body.shennan-page .shennan-about,
body.shennan-page .shennan-timeline,
body.shennan-page .shennan-market-calls,
body.shennan-page .shennan-insights,
body.shennan-page .shennan-contact {
  border-color: rgba(143, 105, 47, 0.2);
}

body.shennan-page .shennan-section-heading h2,
body.shennan-page .shennan-contact-links a,
body.shennan-page .shennan-closing p {
  color: #2a1c10;
}

body.shennan-page .shennan-contact-links a {
  border-radius: 0;
}

@media (max-width: 1199px) {
  body.shennan-page .site-header {
    width: min(calc(100% - 64px), 1280px);
  }

  body.shennan-page .shennan-hero {
    grid-template-columns: minmax(0, 0.6fr) minmax(340px, 0.4fr);
    padding-right: 32px;
    padding-left: 32px;
  }

  body.shennan-page .shennan-milestones {
    grid-template-columns: 1fr;
    padding-right: 32px;
    padding-left: 32px;
  }

  body.shennan-page .shennan-milestones .shennan-section-heading,
  body.shennan-page .shennan-milestone-grid,
  body.shennan-page .shennan-milestones__action {
    grid-column: 1;
    grid-row: auto;
  }

  body.shennan-page .shennan-milestones .shennan-section-heading {
    margin-bottom: 38px;
  }

  body.shennan-page .shennan-milestones__action {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  body.shennan-page .shennan-hero {
    grid-template-columns: minmax(0, 0.65fr) minmax(280px, 0.35fr);
    min-height: 700px;
  }

  body.shennan-page .shennan-hero h1 {
    font-size: clamp(4rem, 9vw, 6rem);
  }

  body.shennan-page .shennan-hero__portrait {
    min-height: 520px;
  }

  body.shennan-page .shennan-milestone-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.shennan-page .shennan-milestone-card:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--shennan-border);
  }
}

@media (max-width: 767px) {
  body.shennan-page .site-header {
    width: calc(100% - 40px);
  }

  body.shennan-page .shennan-hero {
    display: block;
    min-height: 0;
    padding: 64px 20px 0;
  }

  body.shennan-page .shennan-hero__copy {
    padding-bottom: 58px;
  }

  body.shennan-page .shennan-hero h1 {
    font-size: clamp(3.4rem, 15vw, 4.9rem);
    white-space: normal;
  }

  body.shennan-page .shennan-hero h1 span {
    margin-left: 0.12em;
    font-size: 0.66em;
  }

  body.shennan-page .shennan-name-rule {
    width: min(100%, 420px);
    margin-bottom: 25px;
  }

  body.shennan-page .shennan-hero__identity {
    margin-top: 29px;
    line-height: 1.65;
  }

  body.shennan-page .shennan-hero__portrait {
    height: 420px;
    min-height: 0;
  }

  body.shennan-page .shennan-hero::before {
    width: 72%;
    height: 80px;
  }

  body.shennan-page .shennan-milestones {
    display: block;
    padding: 56px 20px 62px;
  }

  body.shennan-page .shennan-milestones .shennan-section-heading {
    margin-bottom: 34px;
  }

  body.shennan-page .shennan-milestone-grid {
    grid-template-columns: 1fr;
  }

  body.shennan-page .shennan-milestone-card,
  body.shennan-page .shennan-milestone-card + .shennan-milestone-card,
  body.shennan-page .shennan-milestone-card:nth-child(3) {
    min-height: 0;
    padding: 23px 0;
    border-top: 1px solid var(--shennan-border);
    border-left: 0;
  }

  body.shennan-page .shennan-milestone-card:first-child {
    border-top: 0;
  }

  body.shennan-page .shennan-icon-placeholder {
    margin-bottom: 10px;
  }

  body.shennan-page .shennan-milestones__action {
    width: 100%;
    margin-top: 28px;
  }
}

/* =========================
   Step 04R.1 — Approved Hero visual background + editable HTML overlay
   ========================= */
body.shennan-page .shennan-hero {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(720px, 56.28vw, 840px);
  min-height: 720px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--shennan-bg);
  isolation: isolate;
}

body.shennan-page .shennan-hero::before,
body.shennan-page .shennan-hero::after {
  content: none;
}

body.shennan-page .shennan-hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  border: 0;
  object-fit: cover;
  object-position: right top;
  pointer-events: none;
  user-select: none;
}

body.shennan-page .shennan-hero__copy {
  position: absolute;
  top: 50%;
  left: clamp(48px, 7vw, 134px);
  z-index: 2;
  width: min(45%, 700px);
  max-width: 700px;
  padding: 0;
  transform: translateY(-46%);
}

body.shennan-page .shennan-hero h1 {
  max-width: none;
  margin: 0 0 22px;
  color: #2a1c10;
  font-size: clamp(4.8rem, 7.15vw, 7rem);
  letter-spacing: -0.075em;
  line-height: 0.94;
  white-space: nowrap;
}

body.shennan-page .shennan-hero h1 span {
  display: inline;
  margin: 0 0 0 0.16em;
  color: var(--shennan-gold-dark);
  font-size: 0.59em;
  letter-spacing: -0.055em;
}

body.shennan-page .shennan-name-rule {
  width: min(100%, 530px);
  gap: 12px;
  margin: 0 0 28px;
}

body.shennan-page .shennan-name-rule i::after {
  background: var(--shennan-bg);
}

body.shennan-page .shennan-hero__tagline {
  max-width: none;
  margin: 0;
  color: var(--shennan-text);
  font-size: clamp(1.85rem, 2.55vw, 2.3rem);
  line-height: 1.3;
  white-space: nowrap;
}

body.shennan-page .shennan-hero__english {
  margin: 20px 0 0;
  color: var(--shennan-muted);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.46;
}

body.shennan-page .shennan-hero__identity {
  margin: 34px 0 0;
  color: var(--shennan-gold-dark);
  font-family: var(--shennan-serif);
  font-size: clamp(1rem, 1.42vw, 1.22rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.55;
}

body.shennan-page .shennan-hero__identity-english {
  margin: 5px 0 0;
  color: #8f692f;
  font-family: var(--shennan-serif);
  font-size: 0.96rem;
  line-height: 1.55;
}

body.shennan-page .shennan-hero__secondary {
  margin: 8px 0 0;
  color: var(--shennan-muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

body.shennan-page .shennan-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

body.shennan-page .shennan-hero__actions .shennan-button {
  min-width: 158px;
  min-height: 50px;
  padding: 0 25px;
  border-radius: 10px;
}

body.shennan-page .shennan-hero__portrait,
body.shennan-page .shennan-hero__portrait-stage {
  display: none;
}

body.shennan-page .shennan-milestones {
  position: relative;
  z-index: 2;
  margin-top: 0;
}

@media (min-width: 1200px) and (max-height: 820px) {
  body.shennan-page .shennan-hero {
    height: 720px;
  }

  body.shennan-page .shennan-hero__copy {
    transform: translateY(-43%);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  body.shennan-page .shennan-hero {
    height: clamp(700px, 75vw, 790px);
    min-height: 700px;
  }

  body.shennan-page .shennan-hero::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    background: linear-gradient(90deg, rgba(246, 242, 234, 0.98) 0 33%, rgba(246, 242, 234, 0.84) 48%, rgba(246, 242, 234, 0) 70%);
    content: "";
    pointer-events: none;
  }

  body.shennan-page .shennan-hero__background {
    object-position: 64% center;
  }

  body.shennan-page .shennan-hero__copy {
    left: 32px;
    width: min(53%, 620px);
  }

  body.shennan-page .shennan-hero h1 {
    font-size: clamp(4.1rem, 8.3vw, 6rem);
  }

  body.shennan-page .shennan-hero__tagline {
    font-size: clamp(1.65rem, 2.8vw, 2.05rem);
  }
}

@media (max-width: 767px) {
  body.shennan-page .shennan-hero {
    display: block;
    width: 100%;
    height: auto;
    min-height: 980px;
    padding: 0;
  }

  body.shennan-page .shennan-hero::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    background: linear-gradient(180deg, var(--shennan-bg) 0 44%, rgba(246, 242, 234, 0.93) 52%, rgba(246, 242, 234, 0.08) 72%, rgba(246, 242, 234, 0) 100%);
    content: "";
    pointer-events: none;
  }

  body.shennan-page .shennan-hero__background {
    top: auto;
    bottom: 0;
    height: 54%;
    object-fit: cover;
    object-position: 72% center;
  }

  body.shennan-page .shennan-hero__copy {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: none;
    padding: 58px 20px 510px;
    transform: none;
  }

  body.shennan-page .shennan-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(3.65rem, 15vw, 4.7rem);
    white-space: nowrap;
  }

  body.shennan-page .shennan-hero h1 span {
    margin-left: 0.1em;
    font-size: 0.54em;
  }

  body.shennan-page .shennan-name-rule {
    margin-bottom: 24px;
  }

  body.shennan-page .shennan-hero__tagline {
    font-size: clamp(1.5rem, 7vw, 1.85rem);
    white-space: normal;
  }

  body.shennan-page .shennan-hero__identity {
    margin-top: 27px;
    font-size: 0.98rem;
  }

  body.shennan-page .shennan-hero__actions {
    gap: 12px;
    margin-top: 26px;
  }

  body.shennan-page .shennan-hero__actions .shennan-button {
    min-width: 0;
    flex: 1 1 145px;
  }
}

@media (max-width: 420px) {
  body.shennan-page .shennan-hero {
    min-height: 950px;
  }

  body.shennan-page .shennan-hero__copy {
    padding-right: 18px;
    padding-bottom: 480px;
    padding-left: 18px;
  }

  body.shennan-page .shennan-hero h1 {
    font-size: clamp(3.35rem, 14.6vw, 4.15rem);
  }
}

/* =========================
   Hero refinement — approved visual V2
   ========================= */
body.shennan-page {
  --shennan-cn-display: "Alibaba PuHuiTi 2.0", "Alibaba PuHuiTi", "HarmonyOS Sans SC", "Source Han Sans SC", "Noto Sans CJK SC", "Microsoft YaHei", "PingFang SC", sans-serif;
}

body.shennan-page .site-shell {
  position: relative;
  background: var(--shennan-bg);
}

body.shennan-page .site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  margin: 0;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  transform: translateX(-50%);
}

body.shennan-page .shennan-hero {
  border-top: 0;
  background: #f7f2ea;
  box-shadow: none;
}

body.shennan-page .shennan-hero__copy {
  width: min(48%, 760px);
  max-width: 760px;
}

body.shennan-page .shennan-hero h1 {
  font-family: var(--shennan-cn-display);
  font-weight: 700;
  letter-spacing: -0.045em;
}

body.shennan-page .shennan-hero h1 span {
  font-family: var(--shennan-serif);
  font-weight: 500;
  letter-spacing: -0.055em;
}

body.shennan-page .shennan-hero__tagline {
  font-family: var(--shennan-cn-display);
  font-weight: 650;
  letter-spacing: 0.015em;
}

body.shennan-page .shennan-hero__identity {
  max-width: 760px;
  color: #8f692f;
  font-family: var(--shennan-cn-display);
  font-size: clamp(1.06rem, 1.28vw, 1.18rem);
  font-weight: 600;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

body.shennan-page .shennan-hero__identity-english {
  max-width: 760px;
  color: #9a7438;
  font-family: var(--shennan-serif);
  font-size: clamp(0.86rem, 1.02vw, 0.96rem);
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

body.shennan-page .shennan-hero__secondary {
  margin-top: 26px;
  color: #342c24;
  font-family: var(--shennan-cn-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.55;
}

@media (min-width: 1200px) {
  body.shennan-page .shennan-hero__identity,
  body.shennan-page .shennan-hero__identity-english {
    white-space: nowrap;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  body.shennan-page .shennan-hero__identity,
  body.shennan-page .shennan-hero__identity-english {
    white-space: normal;
  }

  body.shennan-page .shennan-hero__secondary {
    font-size: 1.12rem;
  }
}

@media (max-width: 767px) {
  body.shennan-page .site-header {
    width: calc(100% - 40px);
  }

  body.shennan-page .shennan-hero__copy {
    padding-top: 168px;
  }

  body.shennan-page .shennan-hero__identity,
  body.shennan-page .shennan-hero__identity-english {
    white-space: normal;
  }

  body.shennan-page .shennan-hero__identity {
    font-size: 1rem;
    line-height: 1.75;
  }

  body.shennan-page .shennan-hero__identity-english {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  body.shennan-page .shennan-hero__secondary {
    margin-top: 22px;
    font-size: 1.06rem;
  }
}

/* =========================
   Shennan Personal Profile V1 — Screens 02–04
   Hero is frozen; no Hero rules belong in this block.
   ========================= */
body.shennan-page .shennan-v1-screen {
  width: min(1280px, calc(100% - 96px));
  min-height: clamp(680px, 80vh, 880px);
  margin: 0 auto;
  padding: clamp(104px, 11vh, 144px) 0;
  border-top: 1px solid rgba(143, 105, 47, 0.18);
  scroll-margin-top: 24px;
}

body.shennan-page .shennan-v1-heading {
  margin: 0;
}

body.shennan-page .shennan-v1-heading > p {
  margin: 0 0 14px;
  color: var(--shennan-gold-dark);
  font-family: var(--shennan-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

body.shennan-page .shennan-v1-heading h2 {
  margin: 0;
  color: var(--shennan-text);
  font-family: var(--shennan-cn-display);
  font-size: clamp(2.65rem, 4.4vw, 4rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

/* Screen 02 — Timeline */
body.shennan-page .shennan-timeline-v1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.shennan-page .shennan-timeline-v1__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1.18fr 1fr 1fr;
  margin: clamp(62px, 8vh, 88px) 0 0;
  padding: 0;
  list-style: none;
}

body.shennan-page .shennan-timeline-v1__list li {
  position: relative;
  min-height: 272px;
  padding: 48px clamp(22px, 2.4vw, 34px) 0;
  border-left: 1px solid var(--shennan-border);
}

body.shennan-page .shennan-timeline-v1__list li:first-child {
  padding-left: 0;
  border-left: 0;
}

body.shennan-page .shennan-timeline-v1__list li::before {
  position: absolute;
  top: 0;
  left: clamp(22px, 2.4vw, 34px);
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--shennan-gold);
  border-radius: 50%;
  background: var(--shennan-bg);
  content: "";
}

body.shennan-page .shennan-timeline-v1__list li:first-child::before {
  left: 0;
}

body.shennan-page .shennan-timeline-v1__list time {
  display: block;
  color: var(--shennan-text);
  font-family: var(--shennan-sans);
  font-size: clamp(2rem, 2.65vw, 2.5rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.08;
  white-space: nowrap;
}

body.shennan-page .shennan-timeline-v1__list h3 {
  margin: 24px 0 0;
  color: var(--shennan-text);
  font-family: var(--shennan-cn-display);
  font-size: clamp(1rem, 1.28vw, 1.12rem);
  font-weight: 650;
  letter-spacing: -0.015em;
  line-height: 1.45;
}

body.shennan-page .shennan-timeline-v1__list p {
  max-width: 210px;
  margin: 14px 0 0;
  color: var(--shennan-muted);
  font-size: clamp(0.94rem, 1.08vw, 1.03rem);
  line-height: 1.8;
}

/* Screen 03 — Research archive */
body.shennan-page .shennan-research-v1 {
  display: grid;
  grid-template-columns: minmax(260px, 0.3fr) minmax(0, 0.7fr);
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
  min-height: clamp(720px, 84vh, 920px);
}

body.shennan-page .shennan-research-v1__intro {
  align-self: center;
}

body.shennan-page .shennan-research-v1__intro .shennan-v1-heading h2 {
  max-width: 360px;
  font-size: clamp(2.45rem, 3.8vw, 3.65rem);
}

body.shennan-page .shennan-v1-gold-rule {
  display: flex;
  width: min(100%, 230px);
  align-items: center;
  gap: 12px;
  margin: 34px 0;
}

body.shennan-page .shennan-v1-gold-rule span {
  height: 1px;
  flex: 1;
  background: rgba(143, 105, 47, 0.5);
}

body.shennan-page .shennan-v1-gold-rule i {
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: var(--shennan-gold);
}

body.shennan-page .shennan-research-v1__description {
  max-width: 330px;
  margin: 0;
  color: var(--shennan-muted);
  font-size: 1rem;
  line-height: 1.9;
}

body.shennan-page .shennan-research-v1__action {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(143, 105, 47, 0.48);
  color: var(--shennan-text);
  font-size: 0.94rem;
  font-weight: 650;
}

body.shennan-page .shennan-research-v1__action span {
  color: var(--shennan-gold-dark);
  transition: transform 240ms ease;
}

body.shennan-page .shennan-research-v1__action:hover span {
  transform: translateX(4px);
}

body.shennan-page .shennan-button--track-record {
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}

body.shennan-page .shennan-button--track-record span {
  display: flex;
  align-items: center;
  gap: 7px;
}

body.shennan-page .shennan-button--track-record i {
  color: var(--shennan-gold-dark);
  font-style: normal;
}

body.shennan-page .shennan-button--track-record small {
  color: var(--shennan-muted);
  font-family: var(--shennan-serif);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

body.shennan-page .shennan-research-archive {
  overflow: hidden;
  border: 1px solid var(--shennan-border);
  border-radius: 8px;
  background: rgba(251, 248, 242, 0.5);
}

body.shennan-page .shennan-research-record {
  display: grid;
  grid-template-columns: minmax(112px, 0.2fr) minmax(0, 0.8fr) 28px;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  min-height: 176px;
  padding: 30px clamp(28px, 3vw, 44px);
  border-top: 1px solid var(--shennan-border);
  transition: background-color 240ms ease;
}

body.shennan-page .shennan-research-record:first-child {
  border-top: 0;
}

body.shennan-page .shennan-research-record:hover {
  background: rgba(183, 138, 67, 0.055);
}

body.shennan-page .shennan-research-record__meta time {
  display: block;
  color: var(--shennan-gold-dark);
  font-family: var(--shennan-sans);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

body.shennan-page .shennan-research-record__meta span {
  display: inline-flex;
  margin-top: 14px;
  padding: 5px 9px;
  border: 1px solid rgba(183, 138, 67, 0.22);
  border-radius: 4px;
  background: rgba(183, 138, 67, 0.06);
  color: var(--shennan-gold-dark);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

body.shennan-page .shennan-research-record__body h3 {
  margin: 0;
  color: var(--shennan-text);
  font-family: var(--shennan-cn-display);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

body.shennan-page .shennan-research-record__body p {
  margin: 11px 0 0;
  color: var(--shennan-muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

body.shennan-page .shennan-research-record__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 15px;
}

body.shennan-page .shennan-research-record__links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--shennan-gold-dark);
  font-size: 0.78rem;
  font-weight: 650;
}

body.shennan-page .shennan-research-record__links a span {
  transition: transform 240ms ease;
}

body.shennan-page .shennan-research-record__links a:hover span {
  transform: translateX(3px);
}

body.shennan-page .shennan-research-record__source-pending {
  color: var(--shennan-soft);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

body.shennan-page .shennan-history-extra[hidden] {
  display: none;
}

body.shennan-page .shennan-history-extra .shennan-research-record:first-child {
  border-top: 1px solid var(--shennan-border);
}

body.shennan-page .shennan-research-record__arrow {
  color: var(--shennan-gold-dark);
  font-size: 1.25rem;
  transition: transform 240ms ease;
}

body.shennan-page .shennan-research-record:hover .shennan-research-record__arrow {
  transform: translateX(4px);
}

body.shennan-page .shennan-research-archive__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(28px, 3vw, 44px);
  border-top: 1px solid var(--shennan-border);
}

body.shennan-page .shennan-history-toggle {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid rgba(143, 105, 47, 0.34);
  border-radius: 7px;
  background: rgba(251, 248, 242, 0.34);
  color: var(--shennan-text);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 650;
  cursor: pointer;
  transition: background-color 220ms ease, border-color 220ms ease;
}

body.shennan-page .shennan-history-toggle:hover {
  border-color: rgba(143, 105, 47, 0.56);
  background: rgba(183, 138, 67, 0.065);
}

body.shennan-page .shennan-history-toggle:focus-visible {
  outline: 2px solid rgba(143, 105, 47, 0.65);
  outline-offset: 3px;
}

body.shennan-page .shennan-history-toggle__icon {
  color: var(--shennan-gold-dark);
  transition: transform 220ms ease;
}

body.shennan-page .shennan-history-toggle:hover .shennan-history-toggle__icon {
  transform: translateY(2px);
}

body.shennan-page .shennan-history-toggle[aria-expanded="true"]:hover .shennan-history-toggle__icon {
  transform: translateY(-2px);
}

body.shennan-page .shennan-research-archive__footer a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--shennan-text);
  font-size: 0.9rem;
  font-weight: 650;
}

body.shennan-page .shennan-research-archive__footer a span {
  color: var(--shennan-gold-dark);
  transition: transform 240ms ease;
}

body.shennan-page .shennan-research-archive__footer a:hover span {
  transform: translateX(4px);
}

/* Screen 04 — Brands */
body.shennan-page .shennan-brands-v1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(700px, 82vh, 900px);
}

body.shennan-page .shennan-brands-v1__heading {
  margin-bottom: clamp(42px, 6vh, 66px);
}

body.shennan-page .shennan-brands-v1__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
}

body.shennan-page .shennan-brand-card {
  position: relative;
  display: flex;
  min-height: clamp(360px, 29vw, 420px);
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(34px, 4vw, 52px);
  border: 1px solid var(--shennan-border);
  border-radius: 8px;
}

body.shennan-page .shennan-brand-card__pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--shennan-gold-dark);
  opacity: 0.1;
  pointer-events: none;
}

body.shennan-page .shennan-brand-card__content {
  position: relative;
  z-index: 1;
  width: min(100%, 470px);
}

body.shennan-page .shennan-brand-card__eyebrow {
  margin: 0 0 24px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.55;
  text-transform: uppercase;
}

body.shennan-page .shennan-brand-card h3 {
  margin: 0;
  font-family: var(--shennan-serif);
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

body.shennan-page .shennan-brand-card__content > p:not(.shennan-brand-card__eyebrow) {
  max-width: 390px;
  margin: 25px 0 0;
  font-family: var(--shennan-cn-display);
  font-size: 1rem;
  line-height: 1.75;
}

body.shennan-page .shennan-brand-card a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  font-size: 0.95rem;
  font-weight: 700;
}

body.shennan-page .shennan-brand-card a span {
  transition: transform 240ms ease;
}

body.shennan-page .shennan-brand-card a:hover span {
  transform: translateX(5px);
}

body.shennan-page .shennan-brand-card--aibiliwu {
  background:
    radial-gradient(circle at 82% 18%, rgba(183, 138, 67, 0.12), transparent 34%),
    var(--shennan-surface);
  color: var(--shennan-text);
}

body.shennan-page .shennan-brand-card--aibiliwu .shennan-brand-card__eyebrow,
body.shennan-page .shennan-brand-card--aibiliwu a {
  color: var(--shennan-gold-dark);
}

body.shennan-page .shennan-brand-card--aibiliwu .shennan-brand-card__content > p:not(.shennan-brand-card__eyebrow) {
  color: var(--shennan-muted);
}

body.shennan-page .shennan-brand-card--phycle {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 85% 15%, rgba(103, 232, 249, 0.08), transparent 30%),
    linear-gradient(145deg, #16120e, #201a14);
  color: #fbf8f2;
}

body.shennan-page .shennan-brand-card--phycle .shennan-brand-card__pattern {
  color: #d2a75f;
  opacity: 0.2;
}

body.shennan-page .shennan-brand-card--phycle .shennan-brand-card__eyebrow {
  color: rgba(103, 232, 249, 0.68);
}

body.shennan-page .shennan-brand-card--phycle .shennan-brand-card__content > p:not(.shennan-brand-card__eyebrow) {
  color: rgba(251, 248, 242, 0.72);
}

body.shennan-page .shennan-brand-card--phycle a {
  color: #d8b06c;
}

/* Compact closing footer */
body.shennan-page .shennan-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  width: min(1280px, calc(100% - 96px));
  min-height: 168px;
  align-items: center;
  gap: 44px;
  margin: 0 auto;
  padding: 38px 0;
  border-top: 1px solid rgba(143, 105, 47, 0.2);
  background: transparent;
}

body.shennan-page .shennan-footer__identity strong {
  color: var(--shennan-text);
  font-family: var(--shennan-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.14em;
}

body.shennan-page .shennan-footer__identity p,
body.shennan-page .shennan-footer__copyright {
  margin: 8px 0 0;
  color: var(--shennan-muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

body.shennan-page .shennan-footer__links {
  display: flex;
  gap: 26px;
}

body.shennan-page .shennan-footer__links a {
  color: var(--shennan-text);
  font-size: 0.84rem;
  font-weight: 650;
}

body.shennan-page .shennan-footer__links a:hover {
  color: var(--shennan-gold-dark);
}

body.shennan-page .shennan-footer__copyright {
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 1199px) {
  body.shennan-page .shennan-v1-screen,
  body.shennan-page .shennan-footer {
    width: min(100% - 64px, 1120px);
  }

  body.shennan-page .shennan-v1-screen {
    min-height: 0;
    padding: 104px 0;
  }

  body.shennan-page .shennan-timeline-v1__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.shennan-page .shennan-timeline-v1__list li {
    min-height: 260px;
  }

  body.shennan-page .shennan-timeline-v1__list li:nth-child(n + 4) {
    padding-top: 58px;
    border-top: 1px solid var(--shennan-border);
  }

  body.shennan-page .shennan-timeline-v1__list li:nth-child(4) {
    padding-left: 0;
    border-left: 0;
  }

  body.shennan-page .shennan-timeline-v1__list li:nth-child(4)::before {
    top: 34px;
    left: 0;
  }

  body.shennan-page .shennan-timeline-v1__list li:nth-child(5)::before {
    top: 34px;
  }

  body.shennan-page .shennan-research-v1 {
    grid-template-columns: minmax(230px, 0.32fr) minmax(0, 0.68fr);
    gap: 42px;
  }

  body.shennan-page .shennan-research-record {
    grid-template-columns: 104px minmax(0, 1fr) 24px;
    gap: 22px;
    padding: 26px;
  }
}

@media (max-width: 767px) {
  body.shennan-page .shennan-v1-screen,
  body.shennan-page .shennan-footer {
    width: calc(100% - 40px);
  }

  body.shennan-page .shennan-v1-screen {
    min-height: 0;
    padding: 82px 0;
  }

  body.shennan-page .shennan-v1-heading h2 {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  body.shennan-page .shennan-timeline-v1__list {
    position: relative;
    display: block;
    margin-top: 54px;
  }

  body.shennan-page .shennan-timeline-v1__list::before {
    position: absolute;
    top: 8px;
    bottom: 24px;
    left: 5px;
    width: 1px;
    background: var(--shennan-border);
    content: "";
  }

  body.shennan-page .shennan-timeline-v1__list li,
  body.shennan-page .shennan-timeline-v1__list li:first-child,
  body.shennan-page .shennan-timeline-v1__list li:nth-child(n + 4) {
    min-height: 0;
    padding: 0 0 50px 38px;
    border: 0;
  }

  body.shennan-page .shennan-timeline-v1__list li::before,
  body.shennan-page .shennan-timeline-v1__list li:first-child::before,
  body.shennan-page .shennan-timeline-v1__list li:nth-child(4)::before,
  body.shennan-page .shennan-timeline-v1__list li:nth-child(5)::before {
    top: 5px;
    left: 0;
  }

  body.shennan-page .shennan-timeline-v1__list p {
    max-width: 480px;
  }

  body.shennan-page .shennan-research-v1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  body.shennan-page .shennan-research-v1__intro .shennan-v1-heading h2,
  body.shennan-page .shennan-research-v1__description {
    max-width: 520px;
  }

  body.shennan-page .shennan-research-record {
    grid-template-columns: 1fr 24px;
    min-height: 0;
    gap: 18px;
    padding: 25px 22px;
  }

  body.shennan-page .shennan-research-record__meta {
    grid-column: 1;
  }

  body.shennan-page .shennan-research-record__body {
    grid-column: 1;
  }

  body.shennan-page .shennan-research-record__arrow {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }

  body.shennan-page .shennan-brands-v1__grid {
    grid-template-columns: 1fr;
  }

  body.shennan-page .shennan-research-archive__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  body.shennan-page .shennan-brand-card {
    min-height: 350px;
    padding: 30px;
  }

  body.shennan-page .shennan-footer {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 38px 0 46px;
  }

  body.shennan-page .shennan-footer__links {
    flex-wrap: wrap;
  }
}

@media (max-width: 390px) {
  body.shennan-page .shennan-v1-screen,
  body.shennan-page .shennan-footer {
    width: calc(100% - 36px);
  }

  body.shennan-page .shennan-brand-card {
    min-height: 330px;
    padding: 26px;
  }

  body.shennan-page .shennan-brand-card h3 {
    font-size: 3.05rem;
  }
}
html.is-navigating body::after {
  content: "正在进入页面…";
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  color: #cffafe;
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(6px);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.12em;
  pointer-events: none;
}
