:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #eaf3fa;
  --text: #17202a;
  --muted: #667085;
  --line: #d9e2ec;
  --primary: #e85d8c;
  --primary-dark: #0a355c;
  --button-primary: #e85d8c;
  --button-primary-dark: #c94a76;
  --accent: #e94f7c;
  --warning: #f6b73c;
  --shadow: 0 20px 50px rgba(22, 34, 51, 0.12);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family:
    "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui,
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  background: var(--bg);
}

body.lightbox-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--text);
  color: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 12px 30px rgba(22, 34, 51, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 32px, var(--max));
  min-height: 72px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  font-weight: 800;
}

.brand-logo {
  width: min(230px, 48vw);
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  min-height: 44px;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #344054;
  font-weight: 700;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: #eaf3fa;
  color: var(--primary-dark);
  outline: none;
}

.nav-links .nav-cta {
  margin-left: 8px;
  background: var(--button-primary);
  color: #fff;
  box-shadow: 0 10px 22px rgba(232, 93, 140, 0.2);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  background: var(--button-primary-dark);
  color: #fff;
  transform: scale(1.04);
}

main {
  overflow-x: hidden;
  overflow-y: visible;
}

.section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100dvh - 72px);
  padding: clamp(28px, 5vw, 56px) 0 48px;
  background: #fff;
}

.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 540px);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: #344054;
  font-size: clamp(17px, 2.2vw, 21px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.btn-primary {
  background: var(--button-primary);
  color: #fff;
  box-shadow: 0 12px 28px rgba(232, 93, 140, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--button-primary-dark);
  outline: none;
}

.btn-glass {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(183, 198, 212, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 253, 0.94)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
  color: var(--button-primary);
  box-shadow: 0 16px 34px rgba(232, 93, 140, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-glass::before {
  content: "";
  position: absolute;
  inset: 1px 1px auto 1px;
  height: 46%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.btn-glass:hover,
.btn-glass:focus-visible {
  background:
    linear-gradient(180deg, #fff, #fce4ec),
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  color: var(--button-primary-dark);
  box-shadow: 0 18px 38px rgba(232, 93, 140, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.btn-secondary {
  border-color: #b7c6d4;
  background: #fff;
  color: #243447;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: #f5a3be;
  background: #fce4ec;
  color: var(--button-primary-dark);
  outline: none;
}

.hero-panel {
  align-self: end;
}

.phone-shot {
  width: min(100%, 520px);
  margin-left: auto;
  filter: drop-shadow(0 24px 34px rgba(22, 34, 51, 0.24));
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: min(100% - 32px, var(--max));
  margin: 28px auto 0;
}

.metric {
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(217, 226, 236, 0.8);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
}

.metric strong {
  display: block;
  font-size: 22px;
}

.metric span {
  color: var(--muted);
  font-size: 14px;
}

.hero-notice {
  width: min(100% - 32px, var(--max));
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.hero-notice-spaced {
  margin-top: 28px;
}

.hero-notice a {
  color: var(--button-primary-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-notice a:hover,
.hero-notice a:focus-visible {
  color: var(--button-primary);
  outline: none;
}

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

.section-title {
  width: min(100%, clamp(320px, 58vw, 720px));
}

.section-title h2 {
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 900;
}

.section-title p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.section-grid {
  margin-top: 28px;
}

.flow-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(22, 34, 51, 0.06);
}

.flow-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: #eaf3fa;
  color: var(--primary-dark);
  font-weight: 900;
}

.flow-item h3 {
  font-size: 22px;
}

.flow-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.about {
  background: #fff;
}

.about .section-head {
  align-items: flex-start;
  margin-bottom: 36px;
}

.journey-kicker {
  display: block;
  margin-bottom: 8px;
  color: rgba(15, 76, 131, 0.42);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 8vw, 86px);
  font-style: italic;
  line-height: 0.9;
}

.journey-subtitle {
  max-width: 520px;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  right: -24px;
  left: -24px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.icon-btn {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #fff;
  color: var(--primary-dark);
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 14px 30px rgba(22, 34, 51, 0.16);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  border-color: #fff;
  background: #fce4ec;
  box-shadow: 0 18px 36px rgba(22, 34, 51, 0.22);
  outline: none;
}

.carousel-stage {
  position: relative;
}

.card-track {
  display: grid;
  grid-auto-columns: calc((100% - 40px) / 3);
  grid-auto-flow: column;
  gap: 20px;
  overflow-x: auto;
  padding: 4px 0 0px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.about-card {
  position: relative;
  display: flex;
  min-height: 450px;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 36px rgba(22, 34, 51, 0.12);
  scroll-snap-align: start;
}

.about-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: #f0f4f8;
}


.about-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px 18px 18px;
}

.about-card h3 {
  font-size: clamp(21px, 2vw, 25px);
}

.about-card p {
  margin: 20px 0 0;
  color: var(--muted);
}

.journey-details {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.journey-details li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  color: #344054;
  font-size: 15px;
}

.journey-details strong {
  color: var(--primary-dark);
  font-weight: 900;
}

.journey-date {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  color: #7a8797;
  font-size: 14px;
  font-weight: 800;
}

.journey-date::before {
  content: "";
  width: 32px;
  height: 1px;
  background: #c9d6df;
}

.scam-cases {
  --case-color: #e85d8c;
  --case-color-dark: #c94a76;
  --case-color-soft: rgba(232, 93, 140, 0.14);
  background: linear-gradient(180deg, #f6f8fb 0%, #fff 100%);
}

.scam-cases .section-title {
  width: 100%;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 26px;
}

.case-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid #cfdbe8;
  border-radius: 999px;
  background: #fff;
  color: #344054;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.case-filter:hover,
.case-filter:focus-visible {
  border-color: rgba(232, 93, 140, 0.5);
  color: var(--case-color-dark);
  outline: 0;
}

.case-filter.is-active {
  border-color: var(--case-color);
  background: var(--case-color);
  color: #fff;
}

.case-carousel {
  margin-top: 0;
}

.case-carousel-shell {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 14px;
}

.case-carousel-viewport {
  min-width: 0;
}

.case-carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid #fff;
  border-radius: 999px;
  background: #fff;
  color: var(--case-color-dark);
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(22, 34, 51, 0.1);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.case-carousel-arrow:hover,
.case-carousel-arrow:focus-visible {
  border-color: #fff;
  background: #fce4ec;
  color: var(--case-color);
  box-shadow: 0 18px 36px rgba(22, 34, 51, 0.18);
  outline: 0;
}

.case-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-top: 18px;
}

.case-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 180ms ease;
}

.case-dot::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #cfdbe8;
  transition:
    background 180ms ease,
    width 180ms ease;
}

.case-dot:hover,
.case-dot:focus-visible {
  outline: 3px solid rgba(232, 93, 140, 0.24);
  outline-offset: 4px;
}

.case-dot.is-active::before {
  width: 28px;
  background: var(--case-color);
}

.case-grid {
  display: block;
}

.case-card {
  display: flex;
  min-width: 0;
  min-height: 380px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(22, 34, 51, 0.08);
}

.case-slide[hidden] {
  display: none;
}

.case-card-wide {
  grid-column: 1 / -1;
}

.case-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 24px 24px 18px;
  text-align: left;
}

.case-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--case-color-soft);
  color: var(--case-color-dark);
  font-size: 14px;
  font-weight: 900;
}

.case-card h3 {
  font-size: clamp(28px, 3vw, 36px);
}

.case-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.75;
}

.case-gallery {
  flex: 0 0 238px;
  display: flex;
  gap: 0;
  max-width: 238px;
  overflow-x: auto;
  padding: 24px 18px 18px 0;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.case-gallery::-webkit-scrollbar {
  display: none;
}

.case-gallery figure {
  flex: 0 0 220px;
  width: 220px;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.case-gallery img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  background: transparent;
  cursor: zoom-in;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.case-gallery img:hover,
.case-gallery img:focus-visible {
  opacity: 0.9;
  outline: 3px solid rgba(15, 76, 131, 0.32);
  outline-offset: -3px;
}

.case-gallery img:active {
  transform: scale(0.98);
}

.case-gallery figcaption {
  display: none;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 40px);
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 18, 28, 0.72);
  backdrop-filter: blur(8px);
}

.image-lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 940px);
  max-height: min(88dvh, 900px);
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(183, 207, 228, 0.8);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary-dark);
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(22, 34, 51, 0.18);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: #fce4ec;
  outline: 3px solid rgba(255, 255, 255, 0.72);
}

#lightboxImage {
  width: 100%;
  max-height: calc(88dvh - 70px);
  object-fit: contain;
  background: #f8fafc;
}

#lightboxCaption {
  margin: 0;
  padding: 14px 18px;
  border-top: 1px solid #edf2f7;
  color: #344054;
  font-weight: 900;
  text-align: center;
}

.risk-band {
  background: linear-gradient(180deg, var(--surface) 0%, #f6f8fb 100%);
}

.risk-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 400px);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
}

.risk-copy h2 {
  max-width: 760px;
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 900;
  white-space: nowrap;
}

.risk-copy > p {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.risk-steps {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.risk-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.risk-step span {
  display: grid;
  grid-row: span 2;
  align-self: center;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
}

.risk-step strong {
  color: var(--primary-dark);
  font-size: 18px;
  font-weight: 900;
}

.risk-step p {
  margin: 0;
  color: var(--muted);
}

.risk-mockup {
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
}

.risk-mockup img {
  width: min(100%, 430px);
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(22, 34, 51, 0.16));
}

.risk-levels {
  margin-top: clamp(36px, 6vw, 64px);
}

.risk-levels-head {
  display: grid;
  gap: 10px;
  width: 100%;
}

.risk-levels-head h3 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
}

.risk-levels-head p {
  max-width: none;
  margin: 0;
  color: var(--muted);
}

.risk-carousel {
  display: block;
  margin-top: 22px;
}

.risk-carousel-viewport {
  min-width: 0;
}

.risk-carousel-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid #fff;
  border-radius: 999px;
  background: #fff;
  color: var(--primary-dark);
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(22, 34, 51, 0.1);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.risk-carousel-arrow:hover,
.risk-carousel-arrow:focus-visible {
  border-color: #fff;
  background: #fce4ec;
  color: var(--button-primary-dark);
  box-shadow: 0 18px 36px rgba(22, 34, 51, 0.18);
  outline: 0;
}

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

.risk-slide[hidden] {
  display: none;
}

.risk-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 22px rgba(22, 34, 51, 0.06);
}

.risk-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.risk-card span {
  display: block;
  padding: 12px;
  font-size: 14px;
  font-weight: 800;
}

.risk-dots,
.training-dots,
.sdg-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-top: 16px;
}

.risk-dot,
.training-dot,
.sdg-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.risk-dot::before,
.training-dot::before,
.sdg-dot::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #cfdbe8;
  transition:
    background 180ms ease,
    width 180ms ease;
}

.risk-dot:hover,
.risk-dot:focus-visible,
.training-dot:hover,
.training-dot:focus-visible,
.sdg-dot:hover,
.sdg-dot:focus-visible {
  outline: 3px solid rgba(232, 93, 140, 0.24);
  outline-offset: 4px;
}

.risk-dot.is-active::before,
.training-dot.is-active::before,
.sdg-dot.is-active::before {
  width: 28px;
  background: var(--button-primary);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
}

.volunteer-content {
  min-width: 0;
}

.volunteer-content h2 {
  max-width: 760px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
}

.volunteer-intro {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-top: 20px;
}

.volunteer-intro p,
.volunteer-panel > p {
  margin: 0;
  color: var(--muted);
}

.volunteer-callout {
  width: 100%;
  max-width: 100%;
  margin: 18px 0 4px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.volunteer-callout strong {
  display: block;
  color: var(--primary-dark);
  font-size: 22px;
  font-weight: 900;
}

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

.volunteer-columns {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 0;
}

.volunteer-panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}

.volunteer-heading {
  margin-top: 0;
  font-size: 22px;
  font-weight: 900;
}

.training-flow-panel {
  grid-column: 1 / -1;
  padding-top: 10px;
  text-align: center;
}

.training-flow-panel .volunteer-heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0;
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.2;
}

.training-flow-panel .volunteer-heading::before,
.training-flow-panel .volunteer-heading::after {
  content: "";
  display: block;
  width: clamp(42px, 7vw, 92px);
  height: 4px;
  border-radius: 999px;
  background: var(--primary);
}

.training-flow-panel > p {
  max-width: 760px;
  margin-inline: auto;
}

.training-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) 28px minmax(250px, 1fr) 28px minmax(250px, 1fr) 28px minmax(250px, 1fr);
  gap: 10px;
  align-items: stretch;
  margin-top: 22px;
  padding-top: 44px;
}

.training-step {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 310px;
  height: 100%;
  padding: 52px 18px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 22px rgba(22, 34, 51, 0.06);
}

.training-step-featured {
  border-color: rgba(44, 90, 160, 0.28);
  background: var(--surface);
}

.training-step-featured h4 {
  color: #2c5aa0;
}

.training-step-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.training-step-number {
  position: absolute;
  top: -22px;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--primary);
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  transform: translateX(-50%);
}

.training-step-featured .training-step-number {
  border-color: #2c5aa0;
  background: #2c5aa0;
  color: #fff;
}

.training-step-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  padding: 0;
}

.training-step h4 {
  margin: 0;
  color: var(--text);
  font-size: 19px;
  line-height: 1.5;
  font-weight: 900;
  text-align: center;
}

.training-step h4::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin: 20px auto;
  background: var(--primary);
}

.training-step p {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.training-flow-arrow {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 310px;
  place-items: center;
  align-self: stretch;
  color: var(--primary);
}

.training-flow-arrow svg {
  width: 28px;
  height: 16px;
}

.training-outcome-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.training-outcome-list li {
  position: relative;
  padding-left: 30px;
}

.training-outcome-list li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2c5aa0;
}

.training-outcome-list li::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 6px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.training-outcome-list strong,
.training-outcome-list span {
  display: block;
}

.training-outcome-list strong {
  color: var(--text);
  font-weight: 900;
}

.training-outcome-list span {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  flex: 1;
}

.participation-note {
  margin: 0 0 18px;
}

.compact-list {
  margin-top: 16px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.check {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #eaf3fa;
  color: var(--primary-dark);
  font-weight: 900;
}

.feature-icon {
  display: block;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  object-fit: contain;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.feature strong {
  display: block;
  margin-bottom: 3px;
}

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

.volunteer-action {
  grid-column: 1 / -1;
  margin-top: 28px;
}

.volunteer-pledge {
  grid-column: 1 / -1;
  margin-top: 38px;
  padding-top: 4px;
}

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

.volunteer-pledge p {
  margin: 0 0 12px;
  color: var(--muted);
}

.volunteer-pledge .volunteer-action {
  margin-top: 18px;
}

.mascot {
  position: sticky;
  top: 96px;
  display: grid;
  align-self: start;
  gap: 18px;
}

.mascot img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.cta {
  position: relative;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(201, 74, 118, 0.94), rgba(169, 46, 92, 0.88)),
    #c94a76;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: clamp(24px, 5vw, 56px);
}

.cta h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
}

.eyebrow-light {
  color: #dbeafe;
}

.cta .eyebrow::before {
  background: #dbeafe;
}

.cta p {
  color: rgba(255, 255, 255, 0.84);
}

.cta .btn-primary {
  background: #fff;
  color: var(--button-primary);
  box-shadow: none;
}

.cta .btn-primary:hover,
.cta .btn-primary:focus-visible {
  background: #fce4ec;
  color: var(--button-primary-dark);
}

.cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
  color: #fff;
}

.cta .btn-secondary:hover,
.cta .btn-secondary:focus-visible {
  border-color: #fff;
  background: #fce4ec;
  color: #e85d8c;
  outline: none;
}

.contact-box {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

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

.contact-row strong {
  color: #fff;
}

.contact-row span {
  color: rgba(255, 255, 255, 0.78);
  text-align: right;
}

.site-footer {
  padding: 26px 0;
  color: #617083;
  background: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer-inner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 0;
  border-radius: 999px;
  background: #fce4ec;
  color: var(--primary-dark);
  font-weight: 800;
  line-height: 1.3;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  background: #fce4ec;
  color: #c94a76;
  outline: none;
}

.statement-hero {
  padding-bottom: 32px;
  background:
    linear-gradient(180deg, rgba(15, 76, 131, 0.04), rgba(255, 255, 255, 0)),
    #fff;
}

.statement-hero-inner {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.statement-hero h1 {
  max-width: none;
  width: 100%;
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.08;
  white-space: nowrap;
}

.statement-hero p:not(.eyebrow) {
  max-width: 820px;
  width: 100%;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.statement-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.statement-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(15, 76, 131, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 800;
}

.statement-section {
  padding-top: 20px;
  background: var(--bg);
}

.statement-stack {
  display: grid;
  gap: 18px;
}

.statement-grid-top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.statement-panel {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(22, 34, 51, 0.08);
}

.statement-panel-head {
  min-width: 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #edf2f7;
}

.statement-panel-head > div {
  min-width: 0;
}

.statement-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.statement-panel h2 {
  font-size: clamp(24px, 3vw, 34px);
  overflow-wrap: anywhere;
}

.statement-panel-body {
  display: grid;
  gap: 16px;
}

.statement-label {
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.statement-panel p,
.statement-panel li {
  color: var(--muted);
}

.statement-panel p {
  margin: 0;
}

.statement-panel-wide {
  padding: 10px 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.statement-panel-wide .statement-panel-head {
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 0;
  border-bottom: 0;
}

.statement-panel-wide .statement-panel-head > div {
  display: grid;
  grid-template-columns: max-content minmax(80px, 1fr);
  align-items: center;
  column-gap: 16px;
  row-gap: 0;
}

.statement-panel-wide .statement-panel-head > div::after {
  content: "";
  height: 2px;
  border-radius: 999px;
  background: #d9e2ec;
  grid-column: 2;
  grid-row: 1 / span 2;
}

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

.sdg-item {
  display: grid;
  gap: 14px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(22, 34, 51, 0.08);
}

.sdg-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  background: #f0f4f8;
}

.sdg-item figcaption {
  display: grid;
  gap: 6px;
  padding: 0 16px 16px;
}

.statement-panel .sdg-grid {
  margin-top: 8px;
}

.sdg-item strong {
  color: var(--primary-dark);
  font-weight: 900;
}

.sdg-item span {
  color: var(--muted);
}

.line-float {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 40;
  display: block;
  width: min(116px, 24vw);
  transition: transform 180ms ease;
}

.line-float:hover,
.line-float:focus-visible {
  outline: none;
}

.line-float img {
  width: 100%;
}

@media (max-width: 940px) {
  .hero {
    min-height: auto;
    background: #fff;
  }

  .hero .container,
  .split-section,
  .cta-grid,
  .statement-stack {
    grid-template-columns: 1fr;
  }

  .statement-grid-top {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    justify-self: center;
  }

  .phone-shot {
    margin: 0 auto;
  }

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

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

  .risk-mockup {
    justify-self: center;
    width: min(100%, 430px);
  }

  .risk-copy h2 {
    max-width: 680px;
    font-size: clamp(30px, 4.2vw, 48px);
    white-space: normal;
  }

  .risk-levels-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .training-flow-panel {
    padding-top: 8px;
  }

  .training-flow {
    grid-template-columns: minmax(250px, 1fr) 28px minmax(250px, 1fr) 28px minmax(250px, 1fr) 28px minmax(250px, 1fr);
    overflow-x: auto;
    padding: 44px 2px 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .training-step {
    scroll-snap-align: start;
  }

  .training-flow-arrow {
    min-height: 310px;
  }

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

  .card-track {
    grid-auto-columns: minmax(300px, calc((100% - 20px) / 2));
  }

  .carousel-controls {
    right: -14px;
    left: -14px;
  }
}

@media (max-width: 680px) {
  .statement-hero h1 {
    font-size: clamp(32px, 10vw, 42px);
    white-space: normal;
  }

  .statement-panel {
    padding: 20px;
  }

  .statement-panel-head,
  .statement-panel-wide .statement-panel-head {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
  }

  .statement-icon {
    width: 44px;
    height: 44px;
  }

  .statement-panel h2 {
    font-size: clamp(22px, 7vw, 28px);
  }

  .statement-panel-wide .statement-panel-head > div {
    grid-template-columns: minmax(0, max-content) minmax(48px, 1fr);
  }

  .mascot {
    position: static;
  }

  .volunteer-callout {
    gap: 10px;
  }

  .feature {
    min-height: 92px;
  }

  .training-flow-panel {
    padding-top: 6px;
  }

  .training-flow {
    display: block;
    overflow-x: visible;
    padding: 44px 2px 0;
    scroll-snap-type: none;
  }

  .training-step {
    max-width: min(100%, 520px);
    margin-inline: auto;
    min-height: 300px;
  }

  .training-step[hidden] {
    display: none;
  }

  .training-flow-arrow {
    display: none;
  }

  .training-dots {
    display: flex;
  }

  .nav {
    min-height: 64px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 12px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding-inline: 12px;
    font-size: 15px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .card-track {
    grid-auto-columns: 100%;
    gap: 16px;
    padding-inline: 0;
  }

  .carousel-controls {
    right: 4px;
    left: 4px;
  }

  .about-card {
    min-height: 430px;
  }

  .about-card img {
    height: 240px;
    object-fit: cover;
  }

  .journey-details li {
    grid-template-columns: 64px 1fr;
  }

  .risk-carousel {
    display: block;
  }

  .risk-carousel-arrow {
    display: none;
  }

  .risk-grid {
    display: block;
  }

  .risk-card {
    max-width: min(100%, 520px);
    margin-inline: auto;
  }

  .risk-dots {
    display: flex;
  }

  .sdg-grid {
    display: block;
    gap: 14px;
    margin-inline: 0;
  }

  .sdg-item {
    max-width: min(100%, 520px);
    margin-inline: auto;
  }

  .sdg-item[hidden] {
    display: none;
  }

  .sdg-dots {
    display: flex;
  }

  .risk-step {
    grid-template-columns: 40px 1fr;
    padding: 14px;
  }

  .risk-mockup {
    padding: 14px;
  }

  .case-tags {
    flex-wrap: nowrap;
    margin: 12px -18px 22px;
    overflow-x: auto;
    padding: 0 18px 4px;
    scrollbar-width: thin;
  }

  .case-filter {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 8px 12px;
    font-size: 14px;
  }

  .case-carousel {
    margin-top: 0;
  }

  .case-carousel-shell {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 6px;
  }

  .case-carousel-arrow {
    width: 44px;
    height: 44px;
  }

  .case-card {
    flex-direction: column;
  }

  .case-card-body {
    flex: 1;
    padding: 20px 18px 10px;
    text-align: left;
  }

  .case-gallery {
    flex: 0 0 auto;
    width: min(220px, 100%);
    max-width: min(220px, 100%);
    gap: 0;
    justify-content: flex-start;
    margin-inline: auto;
    padding: 8px 0 20px;
    scroll-padding-inline: 0;
  }

  .case-gallery figure {
    flex: 0 0 min(220px, 100%);
    width: min(220px, 100%);
    scroll-snap-align: start;
  }

  .case-gallery img {
    height: min(72vw, 360px);
  }

  .image-lightbox {
    padding: 12px;
  }

  .image-lightbox-panel {
    max-height: 86dvh;
  }

  .lightbox-close {
    top: 8px;
    right: 8px;
  }

  #lightboxImage {
    max-height: calc(86dvh - 64px);
  }

  .footer-inner,
  .contact-row {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .contact-row span {
    text-align: left;
  }

  .line-float {
    width: min(92px, 30vw);
    right: max(14px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  .statement-panel-head,
  .statement-panel-wide .statement-panel-head {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .statement-icon {
    width: 40px;
    height: 40px;
  }

  .statement-panel-wide .statement-panel-head > div {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .statement-panel-wide .statement-panel-head > div::after {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
