:root {
  --ink: #2c3413;
  --ink-soft: #657048;
  --paper: #fbfcf7;
  --surface: #ffffff;
  --surface-tint: #f3fae8;
  --line: #dfeacc;
  --line-strong: #c5dc9b;
  --teal: #8cc63f;
  --teal-deep: #476622;
  --teal-bright: #a9d65d;
  --gold: #f5a64a;
  --gold-deep: #cf771b;
  --gold-soft: #fff0dc;
  --coral: #df7f34;
  --coral-deep: #ad5518;
  --coral-soft: #fde9d5;
  --amber: #b87b1b;
  --amber-soft: #fff2d6;
  --blue: #6b8e4e;
  --blue-soft: #eff6e2;
  --violet: #7b764f;
  --violet-soft: #f3f0e0;
  --shadow-lg: 0 24px 60px rgba(80, 115, 34, 0.15);
  --shadow-md: 0 14px 34px rgba(80, 115, 34, 0.1);
  --shadow-sm: 0 6px 18px rgba(80, 115, 34, 0.08);
  --radius: 10px;
  --radius-lg: 18px;
  --content: 1220px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(140, 198, 63, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 198, 63, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 36px 36px;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.68;
}

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

a {
  color: var(--teal);
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: -64px;
  left: 16px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--teal-deep);
  color: #fff;
  text-decoration: none;
  transition: top 0.22s ease;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(184, 209, 202, 0.7);
  background: rgba(249, 252, 250, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  max-width: var(--content);
  min-height: 72px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
}

.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--teal-deep);
  color: #fff;
  box-shadow: 0 8px 18px rgba(8, 63, 55, 0.2);
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--gold);
}

.brand-sub {
  display: block;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 500;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
  color: var(--teal-deep);
  background: var(--surface-tint);
  transform: translateY(-1px);
}

.main-nav a[aria-current="page"] {
  color: #fff;
  background: var(--teal-deep);
}

.nav-toggle {
  display: none;
  min-width: 46px;
  min-height: 44px;
  margin-left: auto;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.page {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 86px;
}

.home-page {
  padding-top: 34px;
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 38px;
  align-items: center;
  overflow: hidden;
  margin-bottom: 38px;
  padding: 36px 38px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(120deg, rgba(140, 198, 63, 0.16), transparent 52%),
    linear-gradient(300deg, rgba(245, 166, 74, 0.12), transparent 42%),
    url("ginkgo-pattern.svg"),
    var(--surface);
  background-repeat: no-repeat, no-repeat, repeat, no-repeat;
  background-size: auto, auto, 360px 360px, auto;
}

.page-hero-copy {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin-bottom: 12px;
}

.page-hero .lead {
  margin-bottom: 0;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.page-hero-mark {
  position: relative;
  z-index: 1;
  min-height: 184px;
  display: grid;
  place-content: center;
  justify-items: center;
  border-radius: 20px;
  background: var(--teal-deep);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.page-hero-glyph {
  display: block;
  color: var(--gold);
  font-size: 78px;
  font-weight: 900;
  line-height: 1;
}

.page-hero-tag {
  display: block;
  margin-top: 10px;
  color: #e6ebd8;
  font-size: 14px;
  font-weight: 700;
}

.btn-ghost {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--teal-deep);
}

.btn-ghost:hover {
  background: var(--surface-tint);
}

.center-profile {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.center-profile-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.center-profile-image img {
  width: 100%;
}

.center-profile-copy p {
  color: var(--ink-soft);
}

.voucher-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-bottom: 18px;
  padding: 22px 24px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  background: var(--gold-soft);
}

.voucher-callout h3 {
  margin-bottom: 6px;
  color: var(--coral-deep);
  font-size: 23px;
}

.voucher-callout p {
  margin: 0;
  color: #785126;
}

.voucher-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
  white-space: nowrap;
}

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

.service-item {
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.service-index {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 900;
}

.service-item h3 {
  margin-bottom: 4px;
}

.service-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

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

.process-step {
  position: relative;
  min-height: 170px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.process-step::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: var(--surface-tint);
}

.process-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: var(--teal-deep);
  color: #fff;
  font-weight: 900;
}

.process-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 22px;
  align-items: start;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list li:first-child {
  padding-top: 0;
}

.contact-list li:last-child {
  border-bottom: 0;
}

.contact-label {
  color: var(--ink-soft);
  font-weight: 700;
}

.contact-value {
  color: var(--ink);
  font-weight: 800;
}

.contact-value a {
  color: var(--teal-deep);
}

.contact-card-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.contact-card-image img {
  width: 100%;
}

.share-qr-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.share-qr-card img {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.share-qr-card h3 {
  margin-bottom: 6px;
}

.share-qr-card p {
  margin: 0;
  color: var(--ink-soft);
}

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

.source-thumb {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.source-thumb img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
}

.source-thumb span {
  display: block;
  padding: 10px 12px;
  color: var(--ink-soft);
  font-size: 13px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 12px;
  padding: 4px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: 46px;
  line-height: 1.16;
}

h2 {
  margin-bottom: 12px;
  font-size: 29px;
  line-height: 1.28;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.4;
}

.lead {
  max-width: 800px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 18px;
}

.hero-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(140, 198, 63, 0.18), transparent 44%),
    linear-gradient(300deg, rgba(245, 166, 74, 0.16), transparent 38%),
    url("ginkgo-pattern.svg"),
    #fff;
  background-repeat: no-repeat, no-repeat, repeat, no-repeat;
  background-size: auto, auto, 360px 360px, auto;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(140, 198, 63, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 198, 63, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--content), calc(100% - 48px));
  min-height: 560px;
  margin: 0 auto;
  padding: 74px 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 64px;
  align-items: center;
}

.hero-copy {
  animation: hero-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--teal-deep);
  font-size: 14px;
  font-weight: 700;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 7px rgba(140, 198, 63, 0.18);
  animation: pulse 2.2s ease-in-out infinite;
}

.hero-band h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 58px;
  line-height: 1.1;
}

.hero-highlight {
  position: relative;
  display: inline-block;
  color: var(--gold-deep);
}

.hero-highlight::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 1px;
  left: 2px;
  height: 8px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(140, 198, 63, 0.48);
  transform-origin: left;
  animation: line-in 0.8s 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 19px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(245, 166, 74, 0.28);
}

.btn-primary:hover {
  background: #e68b2f;
}

.btn-secondary {
  border-color: var(--teal);
  background: #fff;
  color: var(--teal-deep);
}

.btn-secondary:hover {
  background: var(--surface-tint);
}

.page .btn-secondary {
  border-color: var(--teal);
  background: transparent;
  color: var(--teal-deep);
}

.hero-board {
  padding: 28px;
  border: 2px solid rgba(140, 198, 63, 0.5);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 60px rgba(80, 115, 34, 0.14);
  backdrop-filter: blur(14px);
  animation: hero-in 0.8s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-logo {
  width: 184px;
  height: 184px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.board-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 800;
}

.board-title {
  display: block;
  margin-bottom: 24px;
  font-size: 28px;
  line-height: 1.2;
  color: var(--ink);
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-stat {
  min-height: 112px;
  padding: 16px;
  border-radius: 12px;
  background: var(--surface-tint);
}

.hero-stat-number {
  display: block;
  margin-bottom: 2px;
  color: var(--gold-deep);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
}

.hero-stat-label {
  color: var(--ink-soft);
  font-size: 13px;
}

.board-note {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.hero-ticker {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--surface-tint);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 34s linear infinite;
}

.ticker-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 26px;
  color: var(--teal-deep);
  font-size: 14px;
  white-space: nowrap;
}

.ticker-item::after {
  content: "";
  position: absolute;
  right: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.section-block {
  margin-top: 54px;
}

section[id],
.care-article {
  scroll-margin-top: 96px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 20px;
}

.section-head p {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
}

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

.entry-card {
  position: relative;
  min-height: 190px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.entry-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.entry-card-wide {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(216, 170, 47, 0.12), transparent 58%),
    var(--surface);
}

.entry-number {
  display: block;
  margin-bottom: 22px;
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 900;
}

.entry-title {
  display: block;
  margin-bottom: 8px;
  font-size: 21px;
  font-weight: 900;
}

.entry-desc {
  display: block;
  color: var(--ink-soft);
  font-size: 15px;
}

.entry-arrow {
  position: absolute;
  right: 20px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-deep);
  color: #fff;
  font-size: 18px;
  transition: transform 0.25s ease;
}

.entry-card:hover .entry-arrow {
  transform: translateX(4px);
}

.focus-grid {
  display: grid;
  grid-template-columns: 1.28fr 0.86fr 0.86fr;
  gap: 16px;
}

.focus-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.focus-card-featured {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(145deg, rgba(216, 170, 47, 0.22), transparent 58%),
    var(--teal-deep);
  color: #fff;
}

.focus-label {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.focus-card-featured .focus-label {
  color: #f2d477;
}

.focus-number {
  display: block;
  margin: 14px 0 4px;
  color: var(--gold);
  font-size: 66px;
  font-weight: 900;
  line-height: 1;
}

.focus-card h3 {
  margin-top: 18px;
  font-size: 25px;
}

.focus-copy {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 15px;
}

.focus-card-featured .focus-copy {
  color: #e4e6c5;
}

.focus-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.focus-card-featured .focus-link {
  color: #fff;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.checklist-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.checklist-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, var(--surface-tint), #fff);
}

.checklist-head h3 {
  margin: 0;
}

.check-progress {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #dce9e4;
}

.check-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal-bright), var(--gold));
  transition: width 0.3s ease;
}

.check-progress-wrap {
  padding: 12px 22px 0;
}

.check-score {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.check-score strong {
  color: var(--teal-deep);
  font-size: 18px;
}

.reset-btn {
  min-height: 38px;
  padding: 6px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-soft);
  cursor: pointer;
}

.reset-btn:hover {
  border-color: var(--coral);
  color: var(--coral-deep);
}

.check-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}

.check-item:hover {
  background: #f8fbfa;
}

.check-item:last-child {
  border-bottom: 0;
}

.check-item input {
  width: 22px;
  height: 22px;
  margin: 4px 0 0;
  accent-color: var(--teal);
}

.check-item label {
  cursor: pointer;
}

.check-item.done label {
  color: #8b9c97;
  text-decoration: line-through;
}

.check-note {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.care-side-stack {
  display: grid;
  gap: 14px;
}

.care-side-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.care-side-card.accent {
  background: var(--coral-soft);
  border-color: #efc8bd;
}

.care-side-card h3 {
  margin-bottom: 12px;
}

.care-side-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.care-side-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.care-side-list span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--surface-tint);
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 900;
}

.care-side-card.accent .care-side-list span {
  background: #fff;
  color: var(--coral-deep);
}

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

.card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.card-link {
  display: block;
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-link:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card-link:hover .card-title {
  color: var(--teal);
}

.card-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--surface-tint);
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 900;
}

.card-title {
  margin-bottom: 6px;
  font-size: 19px;
  font-weight: 900;
}

.card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.card strong {
  color: var(--ink);
}

.policy-card p,
.policy-nums {
  color: var(--ink-soft);
}

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

.step-card {
  min-height: 165px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.step-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 15px;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  font-weight: 900;
}

.step-card h3 {
  margin-bottom: 6px;
}

.step-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.update-list {
  display: grid;
  gap: 10px;
}

.update-item {
  display: flex;
  gap: 18px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.update-date {
  flex: 0 0 112px;
  color: var(--teal-deep);
  font-weight: 900;
}

.update-item p {
  margin: 0;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 22px 0 24px;
}

.search-input {
  flex: 1 1 300px;
  min-height: 48px;
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  outline: none;
}

.search-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(111, 138, 50, 0.14);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  min-height: 40px;
  padding: 6px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-soft);
  cursor: pointer;
  font-weight: 700;
}

.chip:hover,
.chip.active {
  border-color: var(--teal);
  background: var(--teal-deep);
  color: #fff;
}

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

.policy-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.policy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.policy-card.is-hidden {
  display: none;
}

.policy-card h3 {
  margin: 0;
}

.policy-nums {
  margin: 0;
  padding-left: 18px;
  font-size: 15px;
}

.policy-nums li + li {
  margin-top: 6px;
}

.policy-source {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
}

.highlight-list {
  display: grid;
  gap: 12px;
}

.highlight-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.highlight-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 900;
}

.highlight-item h3 {
  margin-bottom: 4px;
}

.highlight-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

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

.stat-box {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.stat-box strong {
  display: block;
  color: var(--teal-deep);
  font-size: 28px;
  line-height: 1.2;
}

.stat-box span {
  color: var(--ink-soft);
  font-size: 14px;
}

.insight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.image-card img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: top;
}

.image-caption {
  padding: 14px 18px;
  color: var(--ink-soft);
  font-size: 14px;
}

.notice {
  padding: 18px;
  border-left: 5px solid var(--amber);
  border-radius: var(--radius);
  background: var(--amber-soft);
  color: #4d3b18;
}

.notice p {
  margin: 0;
}

.care-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.care-article {
  margin-bottom: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.care-article > h2 {
  margin-bottom: 8px;
}

.care-summary {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--surface-tint);
  color: var(--ink-soft);
}

.care-list {
  margin: 0;
  padding-left: 20px;
}

.care-list li + li {
  margin-top: 8px;
}

.flag-list {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--coral-soft);
}

.flag-list p {
  margin: 0 0 6px;
  color: var(--coral-deep);
  font-weight: 900;
}

.side-sticky {
  position: sticky;
  top: 94px;
}

.side-card {
  margin-bottom: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.side-card h3 {
  margin-bottom: 10px;
}

.side-card ul {
  margin: 0;
  padding-left: 20px;
}

.side-card li + li {
  margin-top: 6px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--surface-tint);
  color: var(--teal-deep);
  font-weight: 900;
}

tr:last-child td {
  border-bottom: 0;
}

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

.text-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.text-card h3 {
  margin-bottom: 8px;
}

.text-card p {
  margin: 0;
  color: var(--ink-soft);
}

.site-footer {
  padding: 28px 24px;
  border-top: 1px solid var(--line);
  background: var(--teal-deep);
  color: #d9dcba;
  font-size: 14px;
}

.footer-inner {
  width: min(var(--content), 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1), transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes line-in {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(114, 227, 189, 0.12);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(114, 227, 189, 0.02);
    transform: scale(1.08);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1020px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-band h1 {
    font-size: 50px;
  }

  .entry-grid,
  .card-grid,
  .four-grid,
  .stat-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .entry-card-wide {
    grid-column: span 2;
  }

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

  .center-profile,
  .contact-grid,
  .share-qr-card {
    grid-template-columns: 1fr;
  }

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

  .focus-card-featured {
    grid-column: span 2;
  }

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

  .care-layout,
  .dashboard-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .side-sticky {
    position: static;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .header-inner {
    min-height: 64px;
    padding: 9px 16px;
    flex-wrap: wrap;
  }

  .brand-sub {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0 4px;
    border-top: 1px solid var(--line);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    justify-content: center;
  }

  .page,
  .hero-inner {
    width: min(100% - 32px, var(--content));
  }

  .page {
    padding: 34px 0 64px;
  }

  .page-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px 24px;
  }

  .page-hero-mark {
    min-height: 124px;
  }

  .page-hero-glyph {
    font-size: 58px;
  }

  .home-page {
    padding-top: 24px;
  }

  .hero-inner {
    min-height: auto;
    padding: 52px 0 42px;
  }

  .hero-band h1 {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-board {
    padding: 20px;
  }

  .hero-logo {
    width: 150px;
    height: 150px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 24px;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 8px;
  }

  .entry-grid,
  .card-grid,
  .four-grid,
  .stat-strip,
  .policy-grid,
  .two-col,
  .focus-grid,
  .service-grid,
  .process-grid,
  .source-gallery {
    grid-template-columns: 1fr;
  }

  .voucher-callout {
    grid-template-columns: 1fr;
  }

  .contact-list li {
    display: block;
  }

  .contact-label {
    display: block;
    margin-bottom: 2px;
  }

  .entry-card-wide,
  .focus-card-featured {
    grid-column: auto;
  }

  .entry-card,
  .focus-card {
    min-height: 180px;
  }

  .filter-bar {
    display: block;
  }

  .search-input {
    width: 100%;
    margin-bottom: 12px;
  }

  .update-item {
    display: block;
  }

  .update-date {
    display: block;
    margin-bottom: 4px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
