:root {
  --ink: #101726;
  --ink-soft: #263247;
  --paper: #fffaf3;
  --paper-2: #f6efe7;
  --mist: #edf4f2;
  --teal: #0f7b7d;
  --teal-dark: #0a4f59;
  --coral: #ef4f5f;
  --coral-dark: #c83247;
  --gold: #c99b42;
  --blue: #263a89;
  --line: rgba(16, 23, 38, 0.14);
  --shadow: 0 22px 60px rgba(16, 23, 38, 0.15);
  --shadow-soft: 0 14px 34px rgba(16, 23, 38, 0.1);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.95), rgba(246, 239, 231, 0.78)),
    radial-gradient(circle at 16% 12%, rgba(15, 123, 125, 0.14), transparent 28%),
    radial-gradient(circle at 88% 28%, rgba(239, 79, 95, 0.13), transparent 30%);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 6px;
  transition: top 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(255, 250, 243, 0.82);
  border-bottom: 1px solid rgba(16, 23, 38, 0.08);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 243, 0.94);
  box-shadow: 0 12px 30px rgba(16, 23, 38, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  width: clamp(82px, 7.4vw, 104px);
  height: auto;
  flex: 0 0 auto;
}

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

.brand strong {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1.05;
}

.brand small {
  margin-top: 2px;
  color: rgba(16, 23, 38, 0.62);
  font-size: 12px;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}

.site-nav a {
  position: relative;
  border-radius: 999px;
  color: rgba(16, 23, 38, 0.76);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 10px;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(15, 123, 125, 0.1);
  color: var(--ink);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  max-width: 100%;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 11px 16px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease, color 170ms ease, box-shadow 170ms ease;
}

.header-cta,
.btn.primary {
  background: var(--coral);
  color: white;
  box-shadow: 0 12px 26px rgba(239, 79, 95, 0.22);
}

.header-cta:hover,
.btn.primary:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
  color: white;
}

.btn.secondary.dark {
  background: white;
  border-color: var(--line);
  color: var(--ink);
}

.btn.ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn.ghost:hover,
.btn.secondary.dark:hover {
  border-color: rgba(15, 123, 125, 0.42);
  box-shadow: 0 12px 24px rgba(15, 123, 125, 0.1);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.page-shell {
  min-height: 70vh;
}

.route {
  transform-origin: 50% 0;
  animation: routeIn 560ms cubic-bezier(0.19, 1, 0.22, 1) both;
  will-change: opacity, transform, filter;
}

@keyframes routeIn {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(18px) scale(0.992);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  min-height: clamp(610px, 82vh, 780px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  isolation: isolate;
}

.hero.compact {
  min-height: 520px;
}

.hero.showcase-hero {
  min-height: clamp(300px, 35vh, 360px);
}

.hero-media,
.hero-canvas,
.hero::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.04);
}

.hero::after {
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 13, 24, 0.9), rgba(8, 13, 24, 0.62) 44%, rgba(8, 13, 24, 0.18)),
    linear-gradient(0deg, rgba(8, 13, 24, 0.78), rgba(8, 13, 24, 0.04) 48%);
}

.hero-canvas {
  z-index: -1;
  opacity: 0.6;
}

.hero-content {
  width: min(var(--max), calc(100% - 36px));
  min-width: 0;
  margin: 0 auto;
  padding: 148px 0 72px;
}

.showcase-hero .hero-content {
  padding: 102px 0 32px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.section-head h2,
.page-title,
.article h1 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1.02;
}

.hero h1 {
  max-width: 760px;
  margin-top: 14px;
  font-size: clamp(44px, 8vw, 86px);
  overflow-wrap: break-word;
  text-wrap: balance;
}

.showcase-hero h1 {
  max-width: 860px;
  font-size: clamp(36px, 5vw, 56px);
}

.hero p {
  max-width: 690px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2.2vw, 22px);
  overflow-wrap: break-word;
}

.showcase-hero p {
  max-width: 780px;
  margin-top: 16px;
}

.showcase-hero .hero-actions {
  margin-top: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  max-width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.metric {
  padding: 16px;
}

.metric strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 26px;
}

.metric span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0;
}

.section.tight {
  padding: 56px 0;
}

.section-band {
  background: rgba(255, 255, 255, 0.45);
  border-block: 1px solid rgba(16, 23, 38, 0.08);
}

.section-angled {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.72), rgba(237, 244, 242, 0.72) 48%, rgba(255, 250, 243, 0.92));
}

.section-angled::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(130deg, transparent 0 62%, rgba(15, 123, 125, 0.08) 62% 73%, transparent 73%),
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(16, 23, 38, 0.035) 54px 55px);
}

.section-angled > .section {
  position: relative;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2,
.page-title,
.article h1 {
  font-size: clamp(34px, 4.8vw, 58px);
}

.section-head p {
  margin: 0;
  color: rgba(16, 23, 38, 0.68);
  font-size: 17px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-weight: 800;
  text-transform: uppercase;
}

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

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

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

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

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.card.pad {
  padding: 24px;
}

.card.dark {
  background: var(--ink);
  color: white;
}

.card h3 {
  margin: 0 0 8px;
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  line-height: 1.12;
}

.card p {
  margin: 0;
  color: rgba(16, 23, 38, 0.68);
}

.card.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.card-action {
  display: inline-flex;
  margin-top: 18px;
  color: var(--coral-dark);
  font-weight: 800;
}

.feature-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card .number {
  color: var(--coral);
  font-family: "Outfit", sans-serif;
  font-size: 42px;
  font-weight: 700;
}

.image-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.image-card .card-copy {
  padding: 22px;
}

.signal-strip {
  width: min(var(--max), calc(100% - 36px));
  margin: -34px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(16, 23, 38, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}

.signal {
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
}

.signal span {
  display: block;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.signal strong {
  display: block;
  margin-top: 5px;
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  line-height: 1.15;
}

.award-steps {
  width: min(var(--max), calc(100% - 36px));
  margin: -28px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(16, 23, 38, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.award-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 2px;
  align-items: center;
  min-height: 76px;
  padding: 15px 17px;
  border-right: 1px solid var(--line);
  transition: background 170ms ease, transform 170ms ease;
}

.award-step:last-child {
  border-right: 0;
}

.award-step:hover {
  background: rgba(237, 244, 242, 0.82);
}

.award-step span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(15, 123, 125, 0.1);
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.award-step strong,
.award-step small {
  min-width: 0;
}

.award-step strong {
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  line-height: 1.1;
}

.award-step small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.award-step-prize {
  background: linear-gradient(135deg, rgba(16, 23, 38, 0.98), rgba(15, 123, 125, 0.92));
  color: white;
}

.award-step-prize:hover {
  background: linear-gradient(135deg, rgba(16, 23, 38, 0.94), rgba(239, 79, 95, 0.88));
}

.award-step-prize span {
  background: rgba(255, 255, 255, 0.16);
  color: white;
}

.award-step-prize small {
  color: rgba(255, 255, 255, 0.76);
}

.focus-path {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
  align-items: stretch;
}

.focus-node {
  position: relative;
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(237, 244, 242, 0.8)),
    white;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-soft);
}

.focus-node::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--coral);
}

.focus-node span,
.category-lane span,
.step-card span,
.mission-thread span,
.reward-row span {
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.focus-node h3,
.category-lane h3,
.step-card h3,
.mission-thread h3 {
  margin: 10px 0 10px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.03;
}

.focus-node p,
.category-lane p,
.step-card p,
.mission-thread p {
  margin: 0;
  color: rgba(16, 23, 38, 0.68);
}

.focus-node strong {
  margin-top: 22px;
  color: var(--coral-dark);
}

.focus-node-large {
  grid-row: span 2;
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(8, 13, 24, 0.2), rgba(8, 13, 24, 0.86)),
    url("../images/awards-hero.png") center / cover;
  color: white;
}

.focus-node-large p,
.focus-node-dark p {
  color: rgba(255, 255, 255, 0.74);
}

.focus-node-large strong,
.focus-node-dark strong,
.focus-node-large span,
.focus-node-dark span {
  color: #ff6b78;
}

.focus-node-dark {
  background:
    linear-gradient(135deg, rgba(15, 123, 125, 0.92), rgba(16, 23, 38, 0.96)),
    var(--ink);
  color: white;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.62fr);
  gap: 36px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(330px, 0.62fr) minmax(0, 0.9fr);
}

.visual-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.visual-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.video-panel,
.showcase-video {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0f1726;
  color: white;
  box-shadow: var(--shadow);
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #070b14;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-copy {
  padding: 22px;
}

.video-copy h3 {
  margin: 0 0 8px;
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  line-height: 1.12;
}

.video-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.video-copy .card-action {
  color: white;
}

.map-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.map-frame {
  width: 100%;
  min-height: 350px;
  aspect-ratio: 4 / 3;
  background: var(--mist);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-panel-copy {
  padding: 22px;
}

.map-panel-copy h3 {
  margin: 0 0 8px;
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  line-height: 1.12;
}

.map-panel-copy p {
  margin: 0 0 12px;
  color: rgba(16, 23, 38, 0.7);
}

.showcase-video {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  align-items: stretch;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.showcase-video .video-frame {
  height: 100%;
  min-height: 320px;
}

.showcase-video .card-copy {
  padding: 26px;
}

.category-lanes {
  display: grid;
  gap: 12px;
}

.category-lane {
  display: grid;
  grid-template-columns: 90px minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  border-top: 1px solid rgba(16, 23, 38, 0.16);
  padding: 22px 0;
}

.category-lane:last-child {
  border-bottom: 1px solid rgba(16, 23, 38, 0.16);
}

.category-lane span {
  color: var(--teal-dark);
  font-family: "Outfit", sans-serif;
  font-size: 28px;
}

.category-lane h3 {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 34px);
}

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

.submission-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.submission-column h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 21px;
  line-height: 1.12;
}

.submission-column > p {
  margin: 0;
  color: rgba(16, 23, 38, 0.68);
  font-size: 14px;
  line-height: 1.45;
}

.submission-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(16, 23, 38, 0.1);
  border-radius: 8px;
  background: white;
  padding: 15px;
}

.submission-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  object-fit: cover;
  background: var(--mist);
}

.submission-card h4 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  line-height: 1.15;
}

.submission-card p {
  margin: 0;
  color: rgba(16, 23, 38, 0.7);
}

.submission-meta,
.submission-empty {
  font-size: 14px;
}

.submission-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.showcase-section {
  width: min(1320px, calc(100% - 36px));
  padding-top: 22px;
}

.showcase-control-deck,
.showcase-kickoff {
  border-bottom: 1px solid var(--line);
}

.showcase-control-deck {
  display: grid;
  grid-template-columns: minmax(180px, 0.24fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
}

.showcase-kickoff {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 18px;
}

.showcase-control-copy h2,
.showcase-kickoff h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.04;
}

.showcase-control-copy p:not(.eyebrow),
.showcase-kickoff p {
  margin: 0;
  color: rgba(16, 23, 38, 0.68);
  font-size: 14px;
}

.showcase-control-copy p:not(.eyebrow) {
  max-width: 430px;
  margin-top: 5px;
}

.showcase-kickoff p {
  max-width: 610px;
}

.showcase-toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.segmented-control {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.segmented-control button,
.showcase-sort select,
.comment-form input,
.comment-form textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.segmented-control button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 36px;
  padding: 7px 10px;
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
}

.segmented-control button span {
  color: var(--teal);
  font-size: 12px;
}

.segmented-control button.is-active {
  background: var(--ink);
  color: white;
}

.segmented-control button.is-active span {
  color: rgba(255, 255, 255, 0.76);
}

.showcase-sort {
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgba(16, 23, 38, 0.68);
  font-weight: 800;
}

.showcase-sort select {
  min-height: 36px;
  padding: 7px 32px 7px 10px;
}

.showcase-explorer {
  display: grid;
  gap: 14px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
  gap: 18px;
  align-items: start;
  justify-items: start;
}

.showcase-card {
  display: grid;
  width: min(100%, 430px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.showcase-card:hover {
  border-color: rgba(15, 123, 125, 0.36);
  box-shadow: 0 18px 48px rgba(16, 23, 38, 0.14);
  transform: translateY(-2px);
}

.showcase-card-media {
  position: relative;
  background: var(--ink);
}

.showcase-thumb-button {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.showcase-thumb-button::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(0deg, rgba(8, 13, 24, 0.78), transparent);
  pointer-events: none;
}

.showcase-card-media img,
.showcase-thumb-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.showcase-card-media img {
  object-fit: cover;
}

.showcase-thumb-placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(15, 123, 125, 0.95), rgba(239, 79, 95, 0.82)),
    var(--teal);
  color: white;
  font-family: "Outfit", sans-serif;
  font-size: 34px;
  font-weight: 800;
}

.showcase-thumb-button span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.showcase-thumb-button span::before {
  content: "";
  width: 0;
  height: 0;
  margin-right: 8px;
  border-block: 6px solid transparent;
  border-left: 9px solid var(--coral-dark);
}

.showcase-card-content {
  display: grid;
  gap: 10px;
  padding: 16px 16px 12px;
}

.showcase-card-header {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
}

.showcase-card-header .pill {
  min-height: 0;
  padding: 5px 9px;
  font-size: 11px;
  line-height: 1.1;
}

.showcase-card-header small,
.showcase-summary {
  color: rgba(16, 23, 38, 0.62);
}

.showcase-card-header small {
  white-space: nowrap;
}

.showcase-card h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.08;
}

.showcase-card .submission-meta {
  margin: 0;
  color: rgba(16, 23, 38, 0.72);
  font-weight: 800;
}

.showcase-summary {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.showcase-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0 16px 16px;
}

.showcase-card-actions .btn {
  flex: 1 1 132px;
}

.showcase-card-engagement {
  border-top: 1px solid rgba(16, 23, 38, 0.1);
  padding: 0 16px 16px;
}

.showcase-card-engagement summary {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  color: rgba(16, 23, 38, 0.58);
  padding: 12px 0 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.showcase-card-engagement summary::-webkit-details-marker {
  display: none;
}

.showcase-card-engagement summary small {
  color: rgba(16, 23, 38, 0.46);
}

.showcase-list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 10px;
  scroll-snap-type: x proximity;
}

.showcase-entry-card {
  display: grid;
  flex: 0 0 min(340px, 82vw);
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  padding: 11px;
  scroll-snap-align: start;
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.showcase-entry-card:hover,
.showcase-entry-card.is-selected {
  border-color: rgba(15, 123, 125, 0.5);
  box-shadow: 0 18px 46px rgba(16, 23, 38, 0.14);
  transform: translateY(-2px);
}

.showcase-thumb {
  width: 42px;
  height: 42px;
  min-height: 0;
  border-radius: 6px;
  object-fit: cover;
  background: var(--mist);
}

.showcase-thumb.placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(15, 123, 125, 0.95), rgba(239, 79, 95, 0.82)),
    var(--teal);
  color: white;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.showcase-card-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.showcase-card-body .pill {
  align-self: start;
  min-height: 0;
  padding: 3px 7px;
  font-size: 10px;
  line-height: 1.15;
}

.showcase-card-body strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  line-height: 1.12;
}

.showcase-card-body small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.showcase-card-body small,
.showcase-card-body > span:not(.pill):not(.showcase-tags) {
  color: rgba(16, 23, 38, 0.68);
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.showcase-tags span {
  border: 1px solid rgba(15, 123, 125, 0.18);
  border-radius: 999px;
  background: rgba(237, 244, 242, 0.82);
  color: var(--teal-dark);
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 800;
}

.showcase-card-links {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.showcase-card-links a,
.showcase-card-button {
  border: 1px solid rgba(15, 123, 125, 0.22);
  border-radius: 999px;
  background: rgba(237, 244, 242, 0.8);
  color: var(--teal-dark);
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 800;
}

.showcase-card-button {
  cursor: pointer;
  font-family: inherit;
}

.showcase-vote-count {
  align-self: start;
  justify-self: end;
  min-width: 72px;
  border-left: 1px solid var(--line);
  padding-left: 16px;
  color: rgba(16, 23, 38, 0.62);
  text-align: right;
  font-size: 13px;
  font-weight: 800;
}

.showcase-vote-count strong {
  display: block;
  color: var(--coral-dark);
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.showcase-detail {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.showcase-focus {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 0.72fr);
  min-height: 0;
}

.showcase-media-column {
  background:
    linear-gradient(135deg, rgba(16, 23, 38, 0.98), rgba(15, 123, 125, 0.82)),
    var(--ink);
  padding: clamp(12px, 2vw, 18px);
}

.showcase-media {
  display: grid;
  gap: 10px;
}

.showcase-media-topline {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.showcase-media-topline a {
  color: white;
}

.showcase-media .video-frame {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.showcase-media-image,
.showcase-media-empty {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
}

.showcase-media-image {
  object-fit: cover;
}

.showcase-media-empty {
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 24px;
  font-family: "Outfit", sans-serif;
  font-size: 26px;
  font-weight: 800;
  text-align: center;
}

.detail-body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(18px, 3vw, 28px);
}

.detail-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-body h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.02;
}

.detail-body p {
  margin: 0;
  color: rgba(16, 23, 38, 0.7);
}

.showcase-primary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.engagement-drawer {
  border-top: 1px solid var(--line);
  margin-top: 4px;
  padding-top: 12px;
}

.engagement-drawer summary {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(16, 23, 38, 0.12);
  border-radius: 8px;
  background: rgba(237, 244, 242, 0.58);
  color: rgba(16, 23, 38, 0.72);
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 800;
}

.engagement-drawer summary::-webkit-details-marker {
  display: none;
}

.engagement-drawer summary small {
  color: rgba(16, 23, 38, 0.52);
  font-size: 12px;
}

.engagement-body {
  display: grid;
  gap: 14px;
  padding-top: 14px;
}

.detail-engagement {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
}

.detail-engagement small {
  max-width: 190px;
  color: rgba(16, 23, 38, 0.56);
  font-size: 12px;
  line-height: 1.35;
}

.comment-thread {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.comment-thread h4 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 22px;
}

.comment-list {
  display: grid;
  gap: 8px;
}

.comment {
  border: 1px solid rgba(16, 23, 38, 0.1);
  border-radius: 8px;
  background: rgba(237, 244, 242, 0.56);
  padding: 12px;
}

.comment p {
  margin-top: 4px;
}

.comment-form {
  display: grid;
  gap: 8px;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 11px 12px;
}

.comment-form textarea {
  resize: vertical;
}

.brief-dialog {
  width: min(1040px, calc(100vw - 32px));
  max-width: none;
  height: min(860px, calc(100vh - 32px));
  max-height: none;
  border: 0;
  border-radius: 8px;
  background: transparent;
  padding: 0;
}

.brief-dialog::backdrop {
  background: rgba(8, 13, 24, 0.72);
  backdrop-filter: blur(8px);
}

.brief-dialog-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: white;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.brief-dialog-header,
.brief-dialog-footer {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}

.brief-dialog-header {
  border-bottom: 1px solid var(--line);
}

.brief-dialog-header h3 {
  margin: 8px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.05;
}

.brief-close {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  padding: 9px 12px;
  cursor: pointer;
  font-weight: 800;
}

.brief-dialog iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #f5f5f5;
}

.brief-dialog-footer {
  border-top: 1px solid var(--line);
  color: rgba(16, 23, 38, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.video-dialog {
  width: min(1040px, calc(100vw - 32px));
  max-width: none;
  border: 0;
  border-radius: 8px;
  background: transparent;
  padding: 0;
}

.video-dialog::backdrop {
  background: rgba(8, 13, 24, 0.78);
  backdrop-filter: blur(8px);
}

.video-dialog-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #0b1020;
  color: white;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.video-dialog-header {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 16px;
}

.video-dialog-header h3 {
  margin: 8px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.05;
}

.video-dialog-frame {
  aspect-ratio: 16 / 9;
  background: black;
}

.video-dialog-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.showcase-empty {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 123, 125, 0.12), rgba(239, 79, 95, 0.08)),
    white;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow-soft);
}

.showcase-empty h3 {
  max-width: 680px;
  margin: 12px 0 8px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.04;
}

.showcase-empty p {
  max-width: 760px;
  margin: 0;
  color: rgba(16, 23, 38, 0.68);
}

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

.step-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.step-card {
  position: relative;
  min-height: 270px;
  padding: 26px;
}

.step-card + .step-card {
  border-left: 1px solid var(--line);
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(239, 79, 95, 0.12);
  color: var(--coral-dark);
  font-family: "Outfit", sans-serif;
  font-size: 16px;
}

.reward-stack {
  display: grid;
  gap: 0;
  border-block: 1px solid rgba(16, 23, 38, 0.16);
}

.reward-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.25fr) minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  border-top: 1px solid rgba(16, 23, 38, 0.12);
  padding: 22px 0;
}

.reward-row:first-child {
  border-top: 0;
}

.reward-row strong {
  font-family: "Outfit", sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.02;
}

.reward-row p {
  margin: 0;
  color: rgba(16, 23, 38, 0.68);
}

.form-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.form-frame {
  height: min(820px, 78vh);
  min-height: 620px;
  background: #f8fafc;
}

.form-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.form-panel-footer,
.registration-panel {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.form-panel-footer {
  border-top: 1px solid var(--line);
  padding: 16px 18px;
  color: rgba(16, 23, 38, 0.68);
}

.registration-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 123, 125, 0.12), rgba(239, 79, 95, 0.08)),
    rgba(255, 255, 255, 0.78);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow-soft);
}

.registration-panel h3 {
  margin: 16px 0 8px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.registration-panel p {
  max-width: 700px;
  margin: 0;
  color: rgba(16, 23, 38, 0.7);
}

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

.mission-thread {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-soft);
}

.mission-thread-wide {
  grid-row: span 2;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 250, 243, 0.92)),
    url("../images/resources-hero.png") center / cover;
}

.mission-thread-dark {
  background: #0f1726;
  color: white;
}

.mission-thread-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.statement-band {
  background: #0f1726;
  color: white;
}

.statement-split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 1px;
}

.statement-block {
  min-height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: clamp(26px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.06);
}

.statement-block-dark {
  background:
    linear-gradient(135deg, rgba(15, 123, 125, 0.34), rgba(239, 79, 95, 0.16)),
    rgba(255, 255, 255, 0.08);
}

.statement-block h3 {
  margin: 0 0 14px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
}

.statement-block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.prose {
  max-width: 760px;
}

.prose p {
  color: rgba(16, 23, 38, 0.72);
}

.timeline {
  position: relative;
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: start;
}

.timeline-date {
  color: var(--coral-dark);
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.pill-row,
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(15, 123, 125, 0.22);
  border-radius: 999px;
  background: rgba(15, 123, 125, 0.08);
  color: var(--teal-dark);
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 700;
}

.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  cursor: pointer;
  padding: 9px 13px;
  font-weight: 700;
}

.filter-btn.is-active {
  background: var(--ink);
  color: white;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  overflow: hidden;
}

.accordion-trigger {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 20px;
  text-align: left;
}

.accordion-trigger strong {
  font-family: "Outfit", sans-serif;
  font-size: 21px;
}

.accordion-trigger span {
  color: var(--coral);
  font-size: 26px;
  font-weight: 700;
}

.accordion-panel {
  display: none;
  padding: 0 20px 20px;
}

.accordion-item.is-open .accordion-panel {
  display: block;
}

.accordion-item.is-open .accordion-trigger span {
  transform: rotate(45deg);
}

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

.resource {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 16px;
}

.resource strong {
  display: block;
}

.resource small {
  color: rgba(16, 23, 38, 0.58);
}

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

.person {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  overflow: hidden;
}

.person img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.person div {
  padding: 12px;
}

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

.person small {
  color: rgba(16, 23, 38, 0.62);
  line-height: 1.3;
}

.article-wrap {
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: 84px 0;
}

.article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  padding: clamp(24px, 5vw, 54px);
  box-shadow: var(--shadow-soft);
}

.article-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  color: var(--coral-dark);
  font-weight: 800;
}

.back-link::before {
  content: "←";
  margin-right: 8px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 28px;
  color: rgba(16, 23, 38, 0.62);
  font-weight: 700;
}

.article img {
  border-radius: 8px;
  margin: 24px 0;
}

.article p {
  color: rgba(16, 23, 38, 0.74);
}

.site-footer {
  background: #0f1726;
  color: white;
  margin-top: 80px;
}

.footer-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0;
  display: grid;
  grid-template-columns: 1fr auto minmax(180px, 260px);
  gap: 40px;
  align-items: center;
}

.footer-brand .brand-logo {
  width: 108px;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.18));
}

.footer-brand small,
.site-footer p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover {
  color: white;
}

.footer-logo {
  display: block;
  border-radius: 8px;
  background: white;
  padding: 14px;
}

.footer-logo img {
  width: 100%;
}

.footer-bottom {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0 24px;
  color: rgba(255, 255, 255, 0.62);
}

.to-top {
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .site-nav {
    justify-content: end;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 1000px) {
  .section-head,
  .split,
  .split.reverse,
  .showcase-video,
  .focus-path,
  .mission-weave,
  .statement-split,
  .showcase-explorer,
  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

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

  .showcase-video .video-frame {
    min-height: 0;
  }

  .focus-node-large,
  .mission-thread-wide {
    grid-row: auto;
    min-height: 360px;
  }

  .category-lane,
  .reward-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

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

  .showcase-detail {
    position: static;
  }

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

  .step-card + .step-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .site-nav {
    position: fixed;
    inset: 82px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 250, 243, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 18px;
  }

  .site-nav.is-open {
    display: flex;
  }

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

  .award-step:nth-child(2n) {
    border-right: 0;
  }

  .award-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .showcase-control-deck,
  .showcase-focus {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 650px;
  }

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

  .hero h1 {
    font-size: clamp(30px, 8.2vw, 34px);
  }

  .hero-actions .btn {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
    line-height: 1.15;
    white-space: normal;
  }

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

  .form-panel-footer,
  .registration-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .form-panel-footer .btn,
  .registration-panel .btn {
    width: 100%;
  }

  .award-steps {
    grid-template-columns: 1fr;
    margin-top: -20px;
  }

  .award-step {
    min-height: 64px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .award-step:last-child {
    border-bottom: 0;
  }

  .submission-board {
    grid-template-columns: 1fr;
  }

  .showcase-toolbar,
  .showcase-control-deck,
  .showcase-kickoff,
  .showcase-empty,
  .detail-engagement {
    align-items: stretch;
    flex-direction: column;
  }

  .showcase-sort,
  .showcase-sort select,
  .showcase-empty .btn {
    width: 100%;
  }

  .showcase-entry-card {
    flex-basis: 86vw;
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .showcase-thumb {
    width: 38px;
    height: 38px;
    min-height: 0;
  }

  .showcase-card-links {
    grid-column: 1 / -1;
  }

  .brief-dialog {
    width: min(100vw - 18px, 760px);
    height: min(100vh - 18px, 820px);
  }

  .brief-dialog-header,
  .brief-dialog-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .showcase-vote-count {
    justify-self: stretch;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 12px 0 0;
    text-align: left;
  }

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

  .hero.showcase-hero {
    min-height: 500px;
  }

  .showcase-hero .hero-content {
    padding: 112px 0 42px;
  }

  .map-frame {
    min-height: 300px;
  }

  .form-frame {
    height: 680px;
    min-height: 0;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

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

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

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

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