/* Author: VIVI x Codex */
:root {
  --bg: #eef4ef;
  --surface: rgba(248, 252, 249, 0.9);
  --surface-strong: #f8fcf9;
  --ink: #12161c;
  --muted: #4a5663;
  --line: rgba(18, 22, 28, 0.12);
  --line-strong: rgba(18, 22, 28, 0.32);
  --coral: #ef5b3f;
  --coral-strong: #af442e;
  --lime: #c6dc36;
  --sky: #43a4ff;
  --gold: #f4b23e;
  --mint: #62c6a6;
  --shadow: 0 24px 64px rgba(18, 22, 28, 0.12);
  --section-width: min(1180px, calc(100vw - 40px));
  --anchor-offset: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(67, 164, 255, 0.08) 0%, transparent 16%),
    linear-gradient(180deg, var(--bg) 0%, #f6fbf7 100%);
  font-family: "Noto Sans SC", sans-serif;
}

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

main[id],
section[id] {
  scroll-margin-top: var(--anchor-offset);
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 14px 20px;
  background: rgba(238, 244, 239, 0.84);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(18, 22, 28, 0.08);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: "Noto Serif SC", serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-nav a {
  white-space: nowrap;
}

.nav-label-short {
  display: none;
}

.site-nav a:hover,
.button:hover,
.filter-button:hover {
  transform: translateY(-1px);
}

.button {
  cursor: pointer;
  background: transparent;
}

.button-primary {
  background: var(--ink);
  color: #f7fbff;
  border-color: var(--ink);
}

.button-secondary {
  background: rgba(248, 252, 249, 0.14);
  color: #f7fbff;
  border-color: rgba(248, 252, 249, 0.56);
}

.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: stretch;
  padding: 28px 20px 52px;
  background:
    radial-gradient(circle at 14% 28%, rgba(98, 198, 166, 0.12) 0%, rgba(98, 198, 166, 0) 26%),
    radial-gradient(circle at 84% 22%, rgba(67, 164, 255, 0.12) 0%, rgba(67, 164, 255, 0) 24%),
    linear-gradient(180deg, #edf3ef 0%, #f6f4ed 100%);
}

.hero-inner {
  position: relative;
  width: var(--section-width);
  margin: 0 auto;
}

.hero-cover {
  position: relative;
  min-height: min(78vh, 720px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 3vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(18, 22, 28, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(246, 242, 234, 0.94)),
    #f7f3ed;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 30px 70px rgba(18, 22, 28, 0.08);
}

.hero-cover::before,
.hero-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-cover::before {
  background:
    radial-gradient(circle at 20% 18%, rgba(247, 163, 110, 0.3) 0%, rgba(247, 163, 110, 0) 22%),
    radial-gradient(circle at 56% 56%, rgba(239, 229, 84, 0.34) 0%, rgba(239, 229, 84, 0) 24%),
    radial-gradient(circle at 78% 22%, rgba(131, 188, 245, 0.3) 0%, rgba(131, 188, 245, 0) 26%),
    radial-gradient(circle at 72% 58%, rgba(183, 214, 167, 0.24) 0%, rgba(183, 214, 167, 0) 22%);
  filter: blur(34px);
  transform: scale(1.04);
}

.hero-cover::after {
  inset: 1px;
  border-radius: 15px;
  background-image:
    radial-gradient(circle, rgba(18, 22, 28, 0.18) 0.7px, transparent 0.8px);
  background-size: 8px 8px;
  opacity: 0.06;
}

.hero-cover-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-emoji {
  margin: 0 0 18px;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1;
}

.hero-kicker,
.section-kicker,
.photo-band-kicker {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-kicker,
.photo-band-kicker {
  color: rgba(18, 22, 28, 0.58);
}

.hero h1 {
  max-width: 8.8ch;
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(52px, 7vw, 98px);
  line-height: 0.96;
  color: #171c24;
}

.hero-title-line {
  display: block;
}

.hero-lede {
  max-width: 24ch;
  margin: 18px 0 0;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.45;
  color: rgba(18, 22, 28, 0.62);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.stat-chip {
  min-height: 108px;
  padding: 16px;
  border: 1px solid rgba(247, 251, 255, 0.18);
  border-radius: 6px;
  background: rgba(7, 13, 20, 0.3);
  backdrop-filter: blur(8px);
}

.stat-chip strong {
  display: block;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.stat-chip span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(247, 251, 255, 0.78);
}

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

.hero .button {
  min-height: 44px;
  border-color: rgba(18, 22, 28, 0.16);
  box-shadow: 0 10px 24px rgba(18, 22, 28, 0.06);
}

.hero .button-primary {
  background: #171c24;
  color: #f7fbff;
  border-color: #171c24;
}

.hero .button-secondary {
  background: rgba(255, 255, 255, 0.48);
  color: #171c24;
  border-color: rgba(18, 22, 28, 0.12);
}

.section {
  width: var(--section-width);
  margin: 0 auto;
  padding: 72px 0;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
}

.section-kicker {
  color: var(--coral-strong);
}

.section-heading h2 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
}

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

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

.goal-item,
.award-card,
.timeline-item,
.flag-card,
.person-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.goal-item {
  min-height: 176px;
  padding: 22px;
}

.goal-item h3,
.award-card h3 {
  margin: 0;
  font-size: 20px;
}

.goal-item p,
.award-card p,
.timeline-copy p,
.person-note,
.person-meta,
.flag-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.goal-item p {
  margin-top: 12px;
}

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

.principle-rule {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border-top: 3px solid var(--lime);
  background: rgba(98, 198, 166, 0.08);
}

.activation-panels {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  margin-bottom: 16px;
}

.activation-panel,
.activation-member-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.activation-panel {
  padding: 20px;
}

.activation-panel-kicker {
  margin: 0 0 12px;
  color: var(--coral-strong);
  font-size: 13px;
  font-weight: 800;
}

.activation-goals,
.activation-progress {
  display: grid;
  gap: 10px;
}

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

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

.activation-goal-card,
.activation-progress-card {
  min-height: 120px;
  padding: 16px;
  border: 1px solid rgba(18, 22, 28, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.76);
}

.activation-goal-card h3,
.activation-progress-card strong {
  margin: 0;
  color: var(--ink);
}

.activation-goal-card h3 {
  font-size: 26px;
  line-height: 1.08;
}

.activation-goal-card p,
.activation-progress-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.activation-progress-card strong {
  display: block;
  font-size: 42px;
  line-height: 1;
}

.activation-member-head {
  margin: 18px 0 12px;
}

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

.activation-member-card {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.activation-member-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
}

.activation-member-name {
  margin: 0;
  font-size: 22px;
  line-height: 1.08;
}

.activation-member-ladder,
.activation-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(18, 22, 28, 0.16);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.84);
}

.activation-member-ladder {
  white-space: nowrap;
}

.activation-member-row {
  display: grid;
  gap: 8px;
}

.activation-member-label {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.activation-member-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.activation-chip {
  background: rgba(67, 164, 255, 0.08);
}

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

.phase-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  min-height: 360px;
  padding: 22px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.phase-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: rgba(18, 22, 28, 0.12);
}

.phase-card[data-tone="1"]::before {
  background: rgba(239, 91, 63, 0.78);
}

.phase-card[data-tone="2"]::before {
  background: rgba(67, 164, 255, 0.8);
}

.phase-card[data-tone="3"]::before {
  background: rgba(198, 220, 54, 0.88);
}

.phase-card[data-tone="4"]::before {
  background: rgba(98, 198, 166, 0.88);
}

.phase-top {
  display: grid;
  align-items: start;
  justify-items: start;
  gap: 14px;
}

.phase-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.02;
}

.phase-card[data-tone="3"] .phase-title {
  font-size: clamp(24px, 2.4vw, 40px);
  white-space: nowrap;
}

.phase-card[data-tone="4"] .phase-title {
  margin-top: -8px;
  line-height: 0.88;
}

.phase-time {
  margin: 0;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(18, 22, 28, 0.14);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  white-space: nowrap;
}

.phase-goal {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.phase-steps {
  display: grid;
  align-content: start;
  gap: 10px;
}

.phase-step {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  align-items: start;
  padding-top: 10px;
  border-top: 1px solid rgba(18, 22, 28, 0.08);
}

.phase-step-dot {
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.28;
}

.phase-step-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.62;
  color: var(--muted);
}

.photo-band {
  position: relative;
  width: 100%;
  min-height: 52vh;
  overflow: hidden;
}

.photo-band img {
  width: 100%;
  height: 52vh;
  object-fit: cover;
}

.photo-band-copy {
  position: absolute;
  left: 20px;
  bottom: 24px;
  width: min(680px, calc(100vw - 40px));
  color: #f7fbff;
}

.photo-band-quote {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.08;
  text-shadow: 0 10px 28px rgba(18, 22, 28, 0.32);
}

.flag-intro {
  margin-bottom: 22px;
}

.flag-intro-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  padding: 18px 20px 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(251, 249, 244, 0.92));
  box-shadow: var(--shadow);
}

.flag-intro-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: rgba(239, 91, 63, 0.72);
}

.flag-intro-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.flag-template-label {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: var(--coral-strong);
  text-transform: uppercase;
}

.flag-template {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.flag-copy-button {
  min-height: 38px;
  padding: 0 14px;
}

.flag-groups {
  display: grid;
  gap: 24px;
}

.flag-group {
  display: grid;
  gap: 14px;
}

.flag-group-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.flag-group-title {
  margin: 0;
  font-size: 26px;
  line-height: 1.15;
}

.flag-group-note,
.flag-group-count {
  margin: 6px 0 0;
}

.flag-group-note {
  color: var(--muted);
  line-height: 1.6;
}

.flag-group-count {
  min-width: 42px;
  text-align: right;
  font-size: 32px;
  font-weight: 900;
}

.flag-group-summary {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.flag-group-toggle {
  display: none;
  min-height: 44px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
}

.flag-group-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
}

.flag-card {
  --flag-accent: rgba(198, 220, 54, 0.78);
  position: relative;
  overflow: hidden;
  min-height: 264px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 16px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 253, 250, 0.92));
  transform: rotate(var(--flag-tilt, 0deg));
  transform-origin: center top;
}

.flag-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: var(--flag-accent);
}

.flag-card::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 12px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--flag-accent) 22%, transparent) 0%, transparent 70%);
  pointer-events: none;
}

.flag-card:nth-child(2n) {
  --flag-accent: rgba(67, 164, 255, 0.72);
}

.flag-card:nth-child(3n) {
  --flag-accent: rgba(98, 198, 166, 0.76);
}

.flag-card:nth-child(4n) {
  --flag-accent: rgba(239, 91, 63, 0.64);
}

.flag-card:nth-child(4n + 1) {
  --flag-tilt: -0.25deg;
}

.flag-card:nth-child(4n + 2) {
  --flag-tilt: 0.32deg;
  margin-top: 12px;
}

.flag-card:nth-child(4n + 3) {
  --flag-tilt: -0.18deg;
  margin-top: 4px;
}

.flag-card:nth-child(4n + 4) {
  --flag-tilt: 0.22deg;
  margin-top: 18px;
}

.flag-card-top {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.flag-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.flag-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--ink);
  color: #f7fbff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.flag-name {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.flag-track {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
}

.flag-goal {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.52;
}

.flag-goal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 18px 16px;
  border: 1px solid rgba(18, 22, 28, 0.08);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.8));
  box-shadow: 0 8px 22px rgba(18, 22, 28, 0.04);
}

.flag-card:nth-child(4n + 2) .flag-goal-panel {
  margin-left: 6px;
}

.flag-card:nth-child(4n + 3) .flag-goal-panel {
  margin-right: 6px;
}

.flag-card:nth-child(4n + 4) .flag-goal-panel {
  margin-left: 4px;
}

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

.flag-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid rgba(18, 22, 28, 0.18);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.74);
}

.flag-chip-tool {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
}

.flag-meta-stack {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 10px;
}

.flag-chip-progress,
.flag-chip-blocker {
  width: fit-content;
  max-width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  justify-content: flex-start;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.flag-chip-progress {
  background: rgba(239, 247, 255, 0.96);
  border-color: rgba(67, 164, 255, 0.18);
}

.flag-chip-blocker {
  background: rgba(255, 246, 243, 0.96);
  border-color: rgba(239, 91, 63, 0.16);
}

.section-people .section-heading {
  margin-bottom: 18px;
}

.section-people .section-heading h2 {
  font-family: "Noto Sans SC", sans-serif;
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 900;
  line-height: 1.02;
}

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

.volunteer-card {
  position: relative;
  overflow: hidden;
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(18, 22, 28, 0.06);
}

.volunteer-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: rgba(18, 22, 28, 0.12);
}

.volunteer-card:nth-child(4n + 1)::before {
  background: rgba(239, 91, 63, 0.72);
}

.volunteer-card:nth-child(4n + 2)::before {
  background: rgba(67, 164, 255, 0.72);
}

.volunteer-card:nth-child(4n + 3)::before {
  background: rgba(98, 198, 166, 0.78);
}

.volunteer-card:nth-child(4n + 4)::before {
  background: rgba(198, 220, 54, 0.9);
}

.volunteer-name {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 900;
  line-height: 1.02;
  word-break: break-word;
}

.award-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: clamp(22px, 2.4vw, 34px);
}

.award-card::before,
.award-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.award-card-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: 100%;
}

.award-emoji {
  margin: 0;
  font-size: clamp(34px, 3vw, 54px);
  line-height: 1;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.award-icon {
  display: block;
  width: clamp(44px, 3.2vw, 66px);
  height: auto;
  image-rendering: pixelated;
}

.award-card h3 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(34px, 3.7vw, 60px);
  line-height: 1.02;
  color: var(--ink);
}

.award-copy {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.42;
  color: rgba(18, 22, 28, 0.74);
}

.award-card[data-tone="idea"] {
  background:
    radial-gradient(circle at 78% 22%, rgba(67, 164, 255, 0.22) 0%, rgba(67, 164, 255, 0) 24%),
    radial-gradient(circle at 18% 18%, rgba(239, 91, 63, 0.16) 0%, rgba(239, 91, 63, 0) 20%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 239, 0.94));
}

.award-card[data-tone="idea"]::before {
  top: 54px;
  right: 56px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(198, 220, 54, 0.36) 0%, rgba(198, 220, 54, 0) 66%);
}

.award-card[data-tone="idea"]::after {
  inset: 0;
  background:
    radial-gradient(circle, rgba(18, 22, 28, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.14;
}

.award-card[data-tone="speed"] {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 178, 62, 0.1)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(229, 242, 255, 0.92));
}

.award-card[data-tone="speed"]::before {
  inset: 0;
  background:
    repeating-linear-gradient(
      -26deg,
      transparent 0,
      transparent 26px,
      rgba(244, 178, 62, 0.12) 26px,
      rgba(244, 178, 62, 0.12) 34px
    );
  opacity: 0.8;
}

.award-card[data-tone="speed"]::after {
  top: 44px;
  right: 54px;
  width: 200px;
  height: 200px;
  border-radius: 999px;
  border: 2px solid rgba(67, 164, 255, 0.24);
  transform: skewX(-18deg);
}

.award-card[data-tone="wild"] {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(98, 198, 166, 0.12)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 255, 226, 0.92));
}

.award-card[data-tone="wild"] .award-copy {
  max-width: 100%;
  word-break: keep-all;
  overflow-wrap: normal;
}

.award-card[data-tone="wild"]::before {
  right: 46px;
  bottom: 44px;
  width: 180px;
  height: 180px;
  border: 2px dashed rgba(18, 22, 28, 0.2);
  border-radius: 18px;
  transform: rotate(-8deg);
}

.award-card[data-tone="wild"]::after {
  top: 34px;
  left: 48px;
  width: 132px;
  height: 18px;
  border-radius: 999px;
  background: rgba(198, 220, 54, 0.48);
  transform: rotate(-5deg);
}

.site-footer {
  padding: 28px 20px 48px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .hero-stats,
  .timeline,
  .goal-grid,
  .activation-goals,
  .activation-progress,
  .activation-grid,
  .award-grid,
  .flag-group-grid,
  .volunteer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .activation-panels {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 780px) {
  :root {
    --section-width: min(100vw - 24px, 100%);
    --anchor-offset: 116px;
  }

  .site-header {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    padding: 10px 12px 12px;
  }

  .wordmark {
    font-size: 16px;
    min-height: 44px;
  }

  .hero {
    min-height: auto;
    padding: 14px 12px 32px;
  }

  .hero-cover {
    min-height: 480px;
    padding: 20px 18px 22px;
    border-radius: 12px;
  }

  .hero-cover::after {
    border-radius: 11px;
  }

  .hero-emoji {
    margin-bottom: 18px;
    font-size: 44px;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(40px, 11.5vw, 60px);
  }

  .hero-lede {
    max-width: 20ch;
    font-size: 18px;
  }

  .site-nav {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: stretch;
    overflow-x: visible;
    gap: 6px;
    padding-bottom: 0;
  }

  .site-nav a {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 10px;
    font-size: 14px;
  }

  .nav-label-full {
    display: none;
  }

  .nav-label-short {
    display: inline;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-stats,
  .timeline,
  .goal-grid,
  .activation-goals,
  .activation-progress,
  .activation-grid,
  .award-grid,
  .principles,
  .flag-group-grid,
  .volunteer-grid {
    grid-template-columns: 1fr;
  }

  .award-card {
    min-height: 420px;
    padding: 22px 20px 28px;
  }

  .award-card-inner {
    width: 100%;
  }

  .award-card h3 {
    font-size: clamp(44px, 13vw, 72px);
  }

  .award-copy {
    font-size: clamp(22px, 6vw, 30px);
  }

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

  .flag-group-summary {
    width: 100%;
    justify-items: start;
  }

  .flag-group-count {
    min-width: 0;
    font-size: 28px;
    text-align: left;
    line-height: 1;
  }

  .flag-group-toggle {
    display: inline-flex;
  }

  .flag-group.is-mobile-collapsed .flag-card:nth-child(n + 5) {
    display: none;
  }

  .flag-card {
    min-height: auto;
    gap: 14px;
    padding: 16px;
    margin-top: 0;
    transform: none;
  }

  .flag-goal-panel,
  .flag-card:nth-child(4n + 2) .flag-goal-panel,
  .flag-card:nth-child(4n + 3) .flag-goal-panel,
  .flag-card:nth-child(4n + 4) .flag-goal-panel {
    margin-left: 0;
    margin-right: 0;
  }

  .section {
    padding: 56px 0;
  }

  .photo-band img {
    height: 42vh;
  }

  .photo-band-copy {
    left: 12px;
    bottom: 18px;
    width: calc(100vw - 24px);
  }

  .flag-template {
    font-size: 17px;
    line-height: 1.6;
  }

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

  .flag-copy-button {
    width: 100%;
    min-height: 44px;
  }

  .phase-time {
    font-size: 13px;
  }

  .phase-title {
    font-size: 30px;
  }

  .phase-goal {
    font-size: 17px;
  }

  .phase-step-text,
  .flag-group-note,
  .activation-goal-card p,
  .activation-progress-card p {
    font-size: 16px;
    line-height: 1.6;
  }

  .flag-goal-panel {
    padding: 16px 14px;
  }

  .flag-goal {
    font-size: clamp(19px, 5.3vw, 21px);
    line-height: 1.45;
  }

  .flag-name-row {
    gap: 8px;
  }

  .flag-number {
    min-width: 54px;
    min-height: 30px;
    font-size: 13px;
  }

  .flag-chip {
    font-size: 12px;
  }

  .flag-chip-progress,
  .flag-chip-blocker {
    min-height: auto;
    font-size: 14px;
    line-height: 1.55;
  }

  .person-card {
    min-height: auto;
  }
}
