/* SafeHaven 避难所 — public theme */
:root {
  --sh-orange: #f28c28;
  --sh-orange-deep: #e06a10;
  --sh-orange-soft: #ffb347;
  --sh-teal: #5ebdbd;
  --sh-teal-bar: #7ec8c8;
  --sh-teal-deep: #3a9a9a;
  --sh-purple: #c23a7a;
  --sh-purple-hover: #a82f68;
  --sh-ink: #1a1a1a;
  --sh-muted: #5c5c5c;
  --sh-bg: #f3fbfb;
  --sh-card: #ffffff;
  --sh-radius: 18px;
  --sh-nav-h: 72px;
  --sh-bar-h: 56px;
  --sh-font: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.sh-body {
  margin: 0;
  font-family: var(--sh-font);
  color: var(--sh-ink);
  background: var(--sh-bg);
  line-height: 1.65;
  padding-bottom: calc(var(--sh-bar-h) + 16px);
}

a {
  color: var(--sh-teal-deep);
  text-decoration: none;
}

a:hover {
  color: var(--sh-orange-deep);
}

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

.sh-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* —— Top nav —— */
.sh-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  height: var(--sh-nav-h);
  display: flex;
  align-items: center;
}

.sh-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.sh-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  color: var(--sh-ink);
  font-weight: 700;
  flex-shrink: 0;
}

.sh-logo span:first-child {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.sh-logo .sh-logo-accent {
  color: var(--sh-teal-deep);
}

.sh-logo .sh-logo-dot {
  color: var(--sh-orange);
}

.sh-logo small {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--sh-muted);
  margin-top: 2px;
}

.sh-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sh-menu > li {
  position: relative;
}

.sh-menu > li > a {
  display: block;
  padding: 10px 14px;
  color: var(--sh-ink);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}

.sh-menu > li > a:hover,
.sh-menu > li > a.is-active {
  background: rgba(242, 140, 40, 0.12);
  color: var(--sh-orange-deep);
}

.sh-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  padding: 8px;
  list-style: none;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.sh-menu > li:hover > .sh-dropdown,
.sh-menu > li:focus-within > .sh-dropdown {
  display: block;
}

.sh-dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--sh-ink);
  font-weight: 500;
  font-size: 0.9rem;
}

.sh-dropdown a:hover {
  background: rgba(94, 189, 189, 0.15);
  color: var(--sh-teal-deep);
}

.sh-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.sh-exit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sh-purple);
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.1;
  flex-direction: column;
  box-shadow: 0 6px 18px rgba(194, 58, 122, 0.35);
  transition: transform 0.15s, background 0.15s;
  border: none;
  cursor: pointer;
  text-align: center;
}

.sh-exit:hover {
  background: var(--sh-purple-hover);
  transform: scale(1.05);
  color: #fff !important;
}

.sh-exit .sh-exit-x {
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 400;
}

.sh-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
}

.sh-burger span {
  display: block;
  height: 2px;
  background: var(--sh-ink);
  margin: 6px 0;
  border-radius: 2px;
}

/* —— Hero —— */
.sh-hero {
  position: relative;
  background: linear-gradient(118deg, #f28c28 0%, #ff9a3c 42%, #ff6b6b 78%, #e84a8a 100%);
  color: #fff;
  overflow: hidden;
  padding: 72px 0 96px;
  min-height: clamp(420px, 58vh, 620px);
  display: flex;
  align-items: center;
}

.sh-hero--home {
  padding: 64px 0 100px;
  /* 宽屏下让圆形区真正贴右、文案贴左，中间不再大片空洞 */
}

.sh-hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 28%, rgba(255, 255, 255, 0.2) 0%, transparent 36%),
    radial-gradient(circle at 10% 85%, rgba(94, 189, 189, 0.26) 0%, transparent 40%),
    radial-gradient(circle at 58% 92%, rgba(194, 58, 122, 0.22) 0%, transparent 42%);
}

.sh-hero::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -60px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.sh-hero::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(45, 122, 154, 0.22);
  pointer-events: none;
}

.sh-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* 首页 Hero：更宽、更紧，圆图向中间靠拢 */
.sh-hero--home .sh-hero-grid {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  grid-template-columns: minmax(300px, 0.95fr) minmax(340px, 1.15fr);
  gap: clamp(12px, 2.5vw, 32px);
  align-items: center;
}

/* 文案区：略向右，但不把中间掏空 */
.sh-hero-copy {
  padding-left: clamp(12px, 3vw, 40px);
  max-width: 34em;
  position: relative;
  z-index: 2;
}

.sh-hero--home .sh-hero-copy {
  padding-left: clamp(16px, 3.5vw, 48px);
  max-width: none;
  padding-right: 8px;
}

.sh-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.92;
}

.sh-hero-kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
}

.sh-hero h1 {
  font-size: clamp(2.15rem, 5vw, 3.45rem);
  line-height: 1.12;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

.sh-hero p.lead {
  font-size: 1.12rem;
  opacity: 0.96;
  margin: 0 0 32px;
  max-width: 34em;
  line-height: 1.7;
}

.sh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s, background 0.15s, color 0.15s, border-color 0.15s;
  text-decoration: none !important;
}

.sh-btn:active {
  transform: scale(0.98);
}

.sh-btn-primary {
  background: #fff;
  color: var(--sh-orange-deep) !important;
}

.sh-btn-primary:hover {
  background: #fff8f0;
  color: var(--sh-orange-deep) !important;
}

.sh-btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff !important;
}

.sh-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff !important;
}

.sh-btn-solid {
  background: var(--sh-orange);
  color: #fff !important;
  border-color: var(--sh-orange);
}

.sh-btn-solid:hover {
  background: var(--sh-orange-deep);
  border-color: var(--sh-orange-deep);
  color: #fff !important;
}

.sh-btn-outline {
  background: #fff;
  color: var(--sh-ink) !important;
  border-color: rgba(0, 0, 0, 0.1);
}

.sh-btn-outline:hover {
  border-color: var(--sh-orange);
  color: var(--sh-orange-deep) !important;
}

.sh-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: min(420px, 70vw);
}

/* 首页圆图：放大并向左伸进中部，填满空区 */
.sh-hero--home .sh-hero-visual {
  justify-content: flex-end;
  min-height: min(480px, 62vw);
  margin-right: clamp(-24px, -2vw, 0px);
  margin-left: clamp(-48px, -4vw, -8px);
}

.sh-hero-blob {
  position: absolute;
  width: min(460px, 92%);
  height: min(460px, 92%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #ff8fb8 0%, transparent 55%),
    radial-gradient(circle at 70% 65%, #5ebdbd 0%, #2d7a9a 55%, #c23a7a 100%);
  opacity: 0.95;
  z-index: 0;
  filter: saturate(1.05);
  box-shadow: 0 30px 80px rgba(120, 30, 80, 0.28);
}

.sh-hero--home .sh-hero-blob {
  width: min(560px, 56vw);
  height: min(560px, 56vw);
  right: -6%;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
}

.sh-avatar-ring {
  width: min(360px, 78vw);
  height: min(360px, 78vw);
  border-radius: 50%;
  background: linear-gradient(160deg, #5ebdbd, #2d7a9a 55%, #c23a7a);
  padding: 12px;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.22),
    0 0 0 14px rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1;
}

.sh-avatar-ring--photo {
  width: min(400px, 82vw);
  height: min(400px, 82vw);
  padding: 14px;
}

.sh-hero--home .sh-avatar-ring--photo {
  width: min(460px, 42vw);
  height: min(460px, 42vw);
  min-width: 300px;
  min-height: 300px;
  padding: 14px;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.22),
    0 0 0 16px rgba(255, 255, 255, 0.14),
    0 0 0 36px rgba(94, 189, 189, 0.18),
    0 0 0 58px rgba(194, 58, 122, 0.12);
}

.sh-avatar-ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffe8c8, #ffd4a8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  overflow: hidden;
}

.sh-avatar-ring-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* —— Sections —— */
.sh-section {
  padding: 56px 0;
}

.sh-section-alt {
  background: #fff;
}

.sh-section-head {
  margin-bottom: 28px;
}

.sh-section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 8px;
  font-weight: 800;
}

.sh-section-head p {
  margin: 0;
  color: var(--sh-muted);
  max-width: 40em;
}

/* —— Cards —— */
.sh-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sh-card {
  background: var(--sh-card);
  border-radius: var(--sh-radius);
  padding: 24px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 160px;
}

a.sh-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
  color: inherit;
}

.sh-card-orange {
  background: linear-gradient(145deg, #ffb347, #f28c28);
  color: #1a1a1a;
  border: none;
}

.sh-card-orange h3,
.sh-card-teal h3 {
  color: inherit;
}

.sh-card-teal {
  background: linear-gradient(145deg, #8ed4d4, #5ebdbd);
  color: #123;
  border: none;
}

.sh-card-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.sh-card h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.sh-card p {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.9;
  flex: 1;
}

.sh-card .sh-card-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: inherit;
  opacity: 0.85;
}

/* —— Content page —— */
.sh-page-hero {
  background: linear-gradient(125deg, #f28c28 0%, #ff9f43 55%, #ff7b54 100%);
  color: #fff;
  padding: 52px 0 48px;
  position: relative;
  overflow: hidden;
}

.sh-page-hero--visual {
  padding: 56px 0 60px;
  min-height: 300px;
}

.sh-page-hero--visual::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -40px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.sh-page-hero--visual::after {
  content: "";
  position: absolute;
  right: 18%;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(194, 58, 122, 0.28);
  pointer-events: none;
}

.sh-page-hero--teal {
  background: linear-gradient(125deg, #3a9a9a 0%, #5ebdbd 50%, #7ec8c8 100%);
}

.sh-page-hero--warm {
  background: linear-gradient(125deg, #e06a10 0%, #f28c28 45%, #ff8fb8 100%);
}

.sh-page-hero--soft {
  background: linear-gradient(125deg, #c23a7a 0%, #e06a10 50%, #ff9f43 100%);
}

.sh-page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sh-page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 3.8vw, 2.65rem);
  font-weight: 800;
  line-height: 1.15;
}

.sh-page-hero p {
  margin: 0;
  opacity: 0.95;
  max-width: 40em;
  font-size: 1.02rem;
}

.sh-page-hero-media {
  display: flex;
  justify-content: center;
}

.sh-page-circle {
  width: min(280px, 68vw);
  height: min(280px, 68vw);
  border-radius: 50%;
  padding: 10px;
  background: linear-gradient(160deg, #5ebdbd, #2d7a9a 50%, #c23a7a);
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.2),
    0 0 0 12px rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.sh-page-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.sh-page-circle--teal {
  background: linear-gradient(160deg, #ffb347, #f28c28 55%, #c23a7a);
}

.sh-page-circle--warm {
  background: linear-gradient(160deg, #8ed4d4, #5ebdbd 45%, #2d7a9a);
}

.sh-page-circle--soft {
  background: linear-gradient(160deg, #ffd4a8, #ff8fb8 50%, #c23a7a);
}

.sh-breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 12px;
  opacity: 0.9;
}

.sh-breadcrumb a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Visual strip / split layouts */
.sh-visual-strip {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  background: #fff;
  min-height: 260px;
}

.sh-visual-strip--flip .sh-visual-strip-img {
  order: 2;
}

.sh-visual-strip--flip .sh-visual-strip-text {
  order: 1;
}

.sh-visual-strip-img {
  min-height: 260px;
  position: relative;
}

.sh-visual-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.sh-visual-strip-text {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, #fff8f0, #fff);
}

.sh-visual-strip-text h2 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
}

.sh-visual-strip-text p {
  margin: 0;
  color: var(--sh-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* Feature row with photo thumbs */
.sh-feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.sh-feature-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.15s, box-shadow 0.15s;
}

.sh-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.sh-feature-thumb {
  height: 160px;
  overflow: hidden;
}

.sh-feature-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.sh-feature-card:hover .sh-feature-thumb img {
  transform: scale(1.05);
}

.sh-feature-card h3 {
  margin: 16px 18px 6px;
  font-size: 1.1rem;
  font-weight: 800;
}

.sh-feature-card p {
  margin: 0 18px 18px;
  color: var(--sh-muted);
  font-size: 0.92rem;
}

/* Home split + start list */
.sh-section--photo {
  padding-top: 28px;
}

.sh-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.sh-photo-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
  aspect-ratio: 5 / 4;
  position: relative;
}

.sh-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sh-photo-frame--round {
  border-radius: 50%;
  aspect-ratio: 1;
  max-width: 420px;
  margin: 0 auto;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.14),
    0 0 0 16px rgba(242, 140, 40, 0.12),
    0 0 0 32px rgba(94, 189, 189, 0.1);
}

.sh-start-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sh-start-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  color: inherit !important;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.sh-start-item:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: rgba(242, 140, 40, 0.35);
  color: inherit !important;
}

.sh-start-icon {
  font-size: 1.45rem;
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(242, 140, 40, 0.12);
}

.sh-start-item strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 2px;
}

.sh-start-item small {
  display: block;
  color: var(--sh-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

/* Full-width banner CTA */
.sh-banner-cta {
  position: relative;
  color: #fff;
  padding: 72px 0;
  overflow: hidden;
}

.sh-banner-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}

.sh-banner-cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(224, 106, 16, 0.88) 0%, rgba(194, 58, 122, 0.78) 55%, rgba(45, 122, 154, 0.75) 100%);
}

.sh-banner-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.sh-banner-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
}

.sh-banner-cta p {
  margin: 0;
  max-width: 34em;
  opacity: 0.95;
  font-size: 1.05rem;
}

/* Treehole two-column */
.sh-treehole-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.sh-treehole-aside .sh-photo-frame {
  aspect-ratio: 1;
  border-radius: 50%;
  max-width: 280px;
  margin: 0 auto 18px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.12),
    0 0 0 12px rgba(94, 189, 189, 0.15);
}

.sh-treehole-aside-card {
  background: linear-gradient(145deg, #fff8f0, #fff);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(242, 140, 40, 0.15);
  text-align: center;
}

.sh-treehole-aside-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.sh-treehole-aside-card p {
  margin: 0;
  color: var(--sh-muted);
  font-size: 0.92rem;
}

.sh-treehole-box {
  max-width: none;
  margin: 0;
}

.sh-content {
  padding: 40px 0 64px;
}

.sh-block {
  background: #fff;
  border-radius: var(--sh-radius);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.sh-block h2 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--sh-ink);
}

.sh-block h3 {
  margin: 20px 0 10px;
  font-size: 1.1rem;
  font-weight: 700;
}

.sh-block p,
.sh-block li {
  color: #333;
  font-size: 0.98rem;
}

.sh-block ul,
.sh-block ol {
  padding-left: 1.25em;
  margin: 8px 0 12px;
}

.sh-block li {
  margin-bottom: 6px;
}

.sh-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.sh-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(94, 189, 189, 0.18);
  color: var(--sh-teal-deep);
  font-weight: 600;
  font-size: 0.88rem;
}

/* Accordion */
.sh-acc {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fafafa;
}

.sh-acc summary {
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: #fff;
}

.sh-acc summary::-webkit-details-marker {
  display: none;
}

.sh-acc summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--sh-orange);
  font-weight: 400;
}

.sh-acc[open] summary::after {
  content: "−";
}

.sh-acc .sh-acc-body {
  padding: 0 18px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
}

/* Table */
.sh-table-wrap {
  overflow-x: auto;
  margin: 12px 0;
}

.sh-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.sh-table th,
.sh-table td {
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.sh-table th {
  background: rgba(242, 140, 40, 0.12);
  font-weight: 700;
}

.sh-table tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.02);
}

/* Timeline */
.sh-timeline {
  position: relative;
  padding-left: 28px;
  margin: 0;
  list-style: none;
}

.sh-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: linear-gradient(var(--sh-orange), var(--sh-teal));
  border-radius: 2px;
}

.sh-timeline li {
  position: relative;
  margin-bottom: 22px;
  padding: 16px 18px;
  background: #fafafa;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.sh-timeline li::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sh-orange);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--sh-orange);
}

.sh-timeline .sh-step-meta {
  font-size: 0.82rem;
  color: var(--sh-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.sh-timeline h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

/* Channel grid */
.sh-channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.sh-channel {
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff, #fff8f0);
  border: 1px solid rgba(242, 140, 40, 0.2);
}

.sh-channel h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.sh-channel .sh-phone {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--sh-orange-deep);
  margin: 8px 0;
}

.sh-channel .sh-phone a {
  color: inherit;
}

/* Treehole (form shell; layout width handled by .sh-treehole-layout) */
.sh-treehole-box {
  max-width: none;
  margin: 0;
}

.sh-treehole-box textarea {
  width: 100%;
  min-height: 160px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  resize: vertical;
  background: #fff;
}

.sh-treehole-box textarea:focus {
  outline: 2px solid rgba(94, 189, 189, 0.5);
  border-color: var(--sh-teal);
}

.sh-treehole-box input[type="text"] {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  margin-top: 10px;
}

.sh-form-hint {
  font-size: 0.88rem;
  color: var(--sh-muted);
  margin: 8px 0 16px;
}

.sh-form-row {
  margin-bottom: 14px;
}

.sh-form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.sh-alert {
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  display: none;
}

.sh-alert.is-show {
  display: block;
}

.sh-alert-ok {
  background: rgba(94, 189, 189, 0.2);
  color: #0d5c5c;
}

.sh-alert-err {
  background: rgba(194, 58, 122, 0.12);
  color: #8a1f52;
}

/* Vote panel */
.sh-vote {
  background: #fff;
  border-radius: var(--sh-radius);
  padding: 24px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.sh-vote h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.sh-vote-q {
  margin: 18px 0 10px;
  font-weight: 700;
}

.sh-vote-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sh-vote-opts button {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.sh-vote-opts button:hover,
.sh-vote-opts button.is-selected {
  background: rgba(242, 140, 40, 0.15);
  border-color: var(--sh-orange);
  color: var(--sh-orange-deep);
}

.sh-vote-opts button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Checklist */
.sh-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sh-check li {
  position: relative;
  padding: 10px 12px 10px 36px;
  margin-bottom: 6px;
  background: rgba(94, 189, 189, 0.08);
  border-radius: 10px;
}

.sh-check li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 10px;
  color: var(--sh-teal-deep);
  font-weight: 800;
}

/* Notice */
.sh-notice {
  background: rgba(194, 58, 122, 0.08);
  border-left: 4px solid var(--sh-purple);
  padding: 14px 16px;
  border-radius: 0 12px 12px 0;
  margin: 16px 0;
  font-size: 0.92rem;
}

.sh-notice-soft {
  background: rgba(94, 189, 189, 0.12);
  border-left-color: var(--sh-teal);
}

/* Footer */
.sh-footer {
  background: #1f2a2e;
  color: rgba(255, 255, 255, 0.78);
  padding: 36px 0 28px;
  font-size: 0.88rem;
}

.sh-footer a {
  color: #9fe0e0;
}

.sh-footer h4 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 0.95rem;
}

.sh-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}

.sh-footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  font-size: 0.82rem;
  opacity: 0.8;
}

/* Bottom help bar */
.sh-helpbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  height: var(--sh-bar-h);
  background: var(--sh-teal-bar);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  padding: 0 8px;
}

.sh-helpbar a {
  flex: 1;
  max-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--sh-ink) !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px;
  border-radius: 10px;
  transition: background 0.15s;
}

.sh-helpbar a:hover {
  background: rgba(255, 255, 255, 0.35);
}

.sh-helpbar .sh-hb-icon {
  font-size: 1.1rem;
}

/* Home topic cards (large photo + color body) */
.sh-home-topics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: -48px;
  position: relative;
  z-index: 2;
  margin-bottom: 8px;
}

.sh-topic-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 148px;
  border-radius: 22px;
  overflow: hidden;
  color: var(--sh-ink) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.18s, box-shadow 0.18s;
  text-decoration: none !important;
}

.sh-topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.16);
  color: var(--sh-ink) !important;
}

.sh-topic-card--orange {
  background: linear-gradient(135deg, #ffb347 0%, #f28c28 100%);
}

.sh-topic-card--teal {
  background: linear-gradient(135deg, #8ed4d4 0%, #5ebdbd 100%);
}

.sh-topic-photo {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.sh-topic-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, transparent 35%, rgba(0, 0, 0, 0.08) 100%);
  pointer-events: none;
}

.sh-topic-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.sh-topic-card:hover .sh-topic-photo img {
  transform: scale(1.06);
}

.sh-topic-body {
  padding: 22px 22px 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sh-topic-body h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 800;
}

.sh-topic-body p {
  margin: 0 0 10px;
  font-size: 0.92rem;
  opacity: 0.9;
  line-height: 1.45;
}

.sh-topic-more {
  font-weight: 700;
  font-size: 0.88rem;
  opacity: 0.85;
}

/* Mobile */
@media (max-width: 900px) {
  .sh-hero {
    min-height: 0;
    padding: 48px 0 72px;
  }

  .sh-hero--home {
    padding: 48px 0 80px;
  }

  .sh-hero-grid,
  .sh-page-hero-grid,
  .sh-split,
  .sh-visual-strip,
  .sh-treehole-layout,
  .sh-feature-row {
    grid-template-columns: 1fr;
  }

  .sh-hero-grid,
  .sh-hero--home .sh-hero-grid {
    text-align: center;
    gap: 28px;
    width: min(1120px, calc(100% - 32px));
    grid-template-columns: 1fr;
  }

  .sh-hero-copy,
  .sh-hero--home .sh-hero-copy {
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
    max-width: 34em;
  }

  .sh-hero-kicker {
    justify-content: center;
  }

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

  .sh-hero p.lead {
    margin-left: auto;
    margin-right: auto;
  }

  .sh-hero-visual,
  .sh-hero--home .sh-hero-visual {
    min-height: min(320px, 78vw);
    order: -1;
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
  }

  .sh-hero--home .sh-hero-blob {
    width: min(360px, 86vw);
    height: min(360px, 86vw);
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .sh-hero--home .sh-avatar-ring--photo {
    width: min(300px, 78vw);
    height: min(300px, 78vw);
    min-width: 0;
    min-height: 0;
    box-shadow:
      0 22px 50px rgba(0, 0, 0, 0.2),
      0 0 0 12px rgba(255, 255, 255, 0.14),
      0 0 0 28px rgba(94, 189, 189, 0.16);
  }

  .sh-page-hero-copy {
    text-align: center;
  }

  .sh-page-hero-media {
    order: -1;
  }

  .sh-visual-strip--flip .sh-visual-strip-img,
  .sh-visual-strip--flip .sh-visual-strip-text {
    order: initial;
  }

  .sh-visual-strip-img {
    min-height: 200px;
    aspect-ratio: 16 / 9;
  }

  .sh-visual-strip-text {
    padding: 24px 20px;
  }

  .sh-photo-frame--round {
    max-width: 280px;
  }

  .sh-banner-cta {
    padding: 52px 0;
  }

  .sh-banner-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .sh-banner-cta .sh-hero-actions {
    justify-content: center;
  }

  .sh-cards {
    grid-template-columns: 1fr;
  }

  .sh-channels {
    grid-template-columns: 1fr;
  }

  .sh-home-topics {
    grid-template-columns: 1fr;
    margin-top: -36px;
  }

  .sh-topic-card {
    grid-template-columns: 120px 1fr;
    min-height: 128px;
  }

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

  .sh-treehole-aside .sh-photo-frame {
    max-width: 200px;
  }

  .sh-burger {
    display: block;
  }

  .sh-menu-wrap {
    display: none;
    position: absolute;
    top: var(--sh-nav-h);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 12px 16px 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }

  .sh-menu-wrap.is-open {
    display: block;
  }

  .sh-menu {
    flex-direction: column;
    align-items: stretch;
  }

  .sh-menu > li > a {
    border-radius: 10px;
  }

  .sh-dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    padding-left: 12px;
    background: transparent;
  }

  .sh-menu > li.is-open > .sh-dropdown {
    display: block;
  }

  .sh-nav {
    position: sticky;
  }

  .sh-nav-inner {
    position: relative;
    width: 100%;
    padding: 0 12px;
  }

  .sh-helpbar a {
    font-size: 0.72rem;
    flex-direction: column;
    gap: 2px;
    max-width: none;
  }

  .sh-helpbar .sh-hb-label {
    display: none;
  }

  .sh-exit {
    width: 48px;
    height: 48px;
    font-size: 0.68rem;
  }
}

@media (max-width: 480px) {
  .sh-hero {
    padding: 36px 0 56px;
  }

  .sh-hero--home {
    padding: 36px 0 64px;
  }

  .sh-block {
    padding: 18px;
  }

  .sh-topic-card {
    grid-template-columns: 96px 1fr;
  }

  .sh-topic-body {
    padding: 14px 14px 14px 10px;
  }

  .sh-topic-body h3 {
    font-size: 1.08rem;
  }

  .sh-topic-body p {
    font-size: 0.84rem;
  }

  .sh-avatar-ring--photo {
    width: min(280px, 78vw);
    height: min(280px, 78vw);
  }

  .sh-page-circle {
    width: min(220px, 70vw);
    height: min(220px, 70vw);
  }

  .sh-feature-thumb {
    height: 140px;
  }
}
