:root {
  --ink: #17252c;
  --muted: #5d6e75;
  --paper: #fbfcf8;
  --soft: #eef5ef;
  --line: #d8e3dc;
  --white: #ffffff;
  --ocean: #086b83;
  --ocean-dark: #063746;
  --green: #2f7d5e;
  --leaf: #8aaa45;
  --coral: #d76652;
  --gold: #ebb45e;
  --shadow: 0 24px 70px rgba(6, 55, 70, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  line-height: 1.75;
}

body.nav-open {
  overflow: hidden;
}

img,
canvas {
  display: block;
}

img {
  max-width: 100%;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(6, 55, 70, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 14px 30px rgba(23, 37, 44, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--ocean-dark);
  background: var(--gold);
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 8px 11px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 800;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.site-header.is-solid .site-nav a:hover,
.site-header.is-solid .site-nav a:focus-visible {
  background: var(--soft);
}

.site-nav .nav-cta {
  color: var(--ocean-dark);
  background: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 4px;
  border: 1px solid rgba(6, 55, 70, 0.12);
  border-radius: 50%;
  color: var(--ocean-dark);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 20px rgba(6, 55, 70, 0.16);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(780px, 82vh);
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.connection-canvas,
.hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.connection-canvas {
  z-index: 1;
  opacity: 0.62;
}

.hero-wash {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5, 42, 52, 0.88) 0%, rgba(5, 42, 52, 0.58) 45%, rgba(5, 42, 52, 0.14) 100%),
    linear-gradient(0deg, rgba(5, 42, 52, 0.26), rgba(5, 42, 52, 0.1));
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(1160px, calc(100% - 36px));
  align-self: center;
  margin: 0 auto;
  padding: 78px 0 66px;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 5.45rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.25;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--ocean-dark);
  background: var(--gold);
  box-shadow: 0 16px 32px rgba(235, 180, 94, 0.24);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

.button.subtle {
  color: var(--ocean-dark);
  border-color: var(--line);
  background: var(--white);
}

.motion-strip {
  overflow: hidden;
  color: var(--white);
  background: var(--ocean-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.motion-track span {
  padding: 12px 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 800;
}

.signal-band {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1160px, calc(100% - 36px));
  margin: 24px auto 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.signal {
  min-height: 110px;
  padding: 22px;
  background: var(--white);
}

.signal strong {
  display: block;
  color: var(--green);
  font-size: 1.7rem;
  line-height: 1.2;
}

.signal span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.94rem;
}

.today-section {
  padding-top: clamp(56px, 7vw, 92px);
}

.today-dashboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.today-card {
  display: grid;
  gap: 6px;
  min-height: 120px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(6, 55, 70, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.today-card:hover,
.today-list-item:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 125, 94, 0.38);
  box-shadow: 0 16px 34px rgba(6, 55, 70, 0.08);
}

.today-card span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.today-card strong {
  color: var(--green);
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  line-height: 1.1;
}

.today-card small {
  color: var(--muted);
  font-weight: 850;
}

.today-card.live-card {
  background: linear-gradient(135deg, rgba(255, 241, 215, 0.96), rgba(238, 245, 239, 0.96));
}

.today-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(260px, 0.78fr);
  gap: 16px;
  align-items: stretch;
}

.today-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(6, 55, 70, 0.08);
}

.today-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(238, 245, 239, 0.72);
}

.today-panel-head .section-label {
  display: block;
  margin-bottom: 4px;
}

.today-panel-head h3 {
  margin: 0;
  line-height: 1.35;
}

.today-panel-head > span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
  text-align: right;
}

.today-list {
  display: grid;
}

.today-list-item {
  display: grid;
  gap: 7px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: inherit;
  background: var(--white);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.today-list-item strong {
  line-height: 1.4;
}

.today-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.84rem;
}

.live-panel {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(238, 245, 239, 0.94)),
    url("./assets/hachijo-hero.png") center / cover;
}

.live-placeholder {
  display: grid;
  gap: 12px;
  min-height: 260px;
  align-content: end;
  padding: 18px;
}

.live-placeholder strong {
  font-size: 1.15rem;
  line-height: 1.4;
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(250px, 0.62fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section h2,
.intro-copy h2 {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 3.25rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.section-heading p,
.intro-copy p,
.principles p,
.today-list-item p,
.live-placeholder p,
.topic-card p,
.project-card p,
.subsidy-card p,
.member-card p,
.join-copy p,
.flow-grid p {
  margin: 0;
  color: var(--muted);
}

.section.intro {
  position: relative;
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 38px;
  align-items: start;
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100% - 1160px) / 2));
  background:
    linear-gradient(90deg, rgba(251, 252, 248, 0.96), rgba(251, 252, 248, 0.88)),
    url("./assets/hachijo-hero.png") center 58% / cover;
}

.intro .section-label {
  color: var(--coral);
}

.intro-copy {
  display: grid;
  gap: 18px;
}

.principles {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principles article {
  padding: 28px 0;
}

.principles span {
  color: var(--coral);
  font-weight: 900;
}

.principles h3,
.topic-card h3,
.project-card h3,
.subsidy-card h3,
.member-card h3,
.flow-grid h3 {
  margin: 8px 0;
  line-height: 1.35;
  letter-spacing: 0;
}

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

.section.topic-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100% - 1160px) / 2));
  background:
    linear-gradient(90deg, rgba(251, 252, 248, 0.95), rgba(251, 252, 248, 0.86)),
    url("./assets/hachijo-hero.png") center 48% / cover;
}

.topic-card,
.project-card,
.subsidy-card,
.member-card,
.flow-grid article,
.join-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.topic-card,
.project-card,
.subsidy-card,
.member-card,
.flow-grid article {
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.topic-section .topic-card,
.intro .principles {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.topic-card:hover,
.project-card:hover,
.subsidy-card:hover,
.member-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(6, 55, 70, 0.1);
}

.news-section {
  padding-top: clamp(48px, 6vw, 84px);
}

.news-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(6, 55, 70, 0.08);
}

.news-panel-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(238, 245, 239, 0.74);
}

.news-panel-head span {
  color: var(--muted);
  font-size: 0.9rem;
}

.news-scroll {
  display: grid;
  gap: 12px;
  max-height: 340px;
  overflow-y: auto;
  padding: 14px;
  scrollbar-color: var(--green) rgba(12, 82, 61, 0.12);
}

.news-item {
  display: block;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  background: var(--white);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.news-item:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 125, 94, 0.4);
  box-shadow: 0 12px 28px rgba(6, 55, 70, 0.08);
}

.news-item strong {
  display: block;
  margin-top: 9px;
  font-size: 1.05rem;
}

.news-item p {
  margin-bottom: 0;
}

.topic-meta,
.project-meta,
.subsidy-meta,
.news-meta,
.member-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 9px;
  border-radius: 999px;
  color: var(--ocean-dark);
  background: var(--soft);
  font-weight: 850;
}

.badge.coral {
  color: #6d2419;
  background: #ffe8e2;
}

.badge.green {
  color: #0c523d;
  background: #ddf1e4;
}

.badge.gold {
  color: #5d3610;
  background: #fff1d7;
}

.project-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100% - 1160px) / 2));
  background:
    linear-gradient(180deg, rgba(238, 245, 239, 0.92), rgba(251, 252, 248, 0.98)),
    url("./assets/hachijo-hero.png") center / cover fixed;
}

.project-tabs,
.subsidy-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.project-tab,
.chip {
  min-height: 38px;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.project-tab.active,
.chip.active {
  color: var(--white);
  border-color: var(--ocean);
  background: var(--ocean);
}

.project-card {
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--ocean), var(--green), var(--gold));
}

.progress {
  height: 8px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--soft);
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.subsidy-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100% - 1160px) / 2));
  background: var(--soft);
}

.subsidy-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.subsidy-source {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
}

.members-section {
  padding-bottom: 68px;
}

.member-controls {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(170px, 0.32fr) minmax(170px, 0.32fr) auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.field {
  display: grid;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.choice-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-field legend {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 850;
}

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

.choice-grid label {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbf7;
  cursor: pointer;
}

.choice-grid input {
  width: 16px;
  min-height: 16px;
  flex: 0 0 auto;
}

.choice-grid span {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.choice-other {
  margin-top: 10px;
}

.field span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cbd8d2;
  border-radius: var(--radius);
  padding: 9px 11px;
  color: var(--ink);
  background: var(--white);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.project-tab:focus-visible,
.chip:focus-visible,
.today-card:focus-visible,
.today-list-item:focus-visible,
.button:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(235, 180, 94, 0.55);
  outline-offset: 2px;
}

.member-summary {
  margin: 6px 0 18px;
  color: var(--muted);
  font-weight: 850;
}

.member-card {
  display: grid;
  gap: 10px;
}

.member-card h3 {
  margin-bottom: 0;
}

.member-company {
  color: var(--ocean-dark);
  font-weight: 900;
}

.theme-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
}

.theme-list span {
  padding: 3px 8px;
  border-radius: 999px;
  color: #5d3610;
  background: #fff1d7;
  font-size: 0.82rem;
  font-weight: 850;
}

.join-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 28px;
  align-items: start;
  padding-top: 42px;
}

.join-copy {
  position: sticky;
  top: 96px;
}

.join-copy .section-label {
  color: var(--green);
}

.join-copy h2 {
  margin-bottom: 12px;
}

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

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-weight: 850;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 3px var(--white);
}

.join-form {
  padding: clamp(18px, 3vw, 28px);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.form-message {
  min-height: 1.6em;
  margin: 14px 0 0;
  color: var(--green);
  font-weight: 900;
}

.consult-section {
  border-top: 1px solid var(--line);
}

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

.flow-grid article {
  border-top: 4px solid var(--ocean);
}

.flow-grid article:nth-child(2) {
  border-top-color: var(--green);
}

.flow-grid article:nth-child(3) {
  border-top-color: var(--coral);
}

.flow-grid article:nth-child(4) {
  border-top-color: var(--gold);
}

.flow-grid span {
  color: var(--muted);
  font-weight: 900;
}

.empty {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 22px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--ocean-dark);
}

.site-footer p {
  margin: 0;
}

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

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

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

@keyframes heroDrift {
  from {
    transform: scale(1.015) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.055) translate3d(-1.2%, 0.8%, 0);
  }
}

@media (max-width: 1040px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 10px;
  }

  .brand {
    overflow: hidden;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    gap: 8px;
    min-width: 0;
    overflow-x: auto;
    padding: 0 0 2px;
    color: inherit;
    background: transparent;
    border: 0;
    box-shadow: none;
    scrollbar-width: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.14);
  }

  .signal-band,
  .today-dashboard,
  .today-grid,
  .principles,
  .topic-grid,
  .project-grid,
  .subsidy-list,
  .member-grid,
  .join-section,
  .flow-grid {
    grid-template-columns: 1fr 1fr;
  }

  .intro,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .member-controls {
    grid-template-columns: 1fr 1fr;
  }

  .project-section {
    background-attachment: scroll;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
    padding: 10px 16px;
  }

  .brand span:last-child {
    max-width: min(62vw, 230px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-nav {
    margin-inline: -2px;
  }

  .hero {
    min-height: 690px;
  }

  .hero h1 {
    font-size: 2.18rem;
    line-height: 1.18;
  }

  .hero-image {
    object-position: 54% center;
  }

  .hero-wash {
    background:
      linear-gradient(0deg, rgba(5, 42, 52, 0.88), rgba(5, 42, 52, 0.36)),
      linear-gradient(90deg, rgba(5, 42, 52, 0.48), rgba(5, 42, 52, 0.08));
  }

  .hero-inner {
    width: min(100% - 32px, 1160px);
    padding-top: 76px;
  }

  .hero-actions,
  .form-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .motion-track span {
    padding: 11px 18px;
  }

  .signal-band {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .section {
    width: min(100% - 32px, 1160px);
  }

  .signal-band,
  .today-dashboard,
  .today-grid,
  .principles,
  .topic-grid,
  .project-grid,
  .subsidy-list,
  .member-grid,
  .join-section,
  .flow-grid,
  .form-grid,
  .member-controls {
    grid-template-columns: 1fr;
  }

  .join-copy {
    position: static;
  }

  .field.full {
    grid-column: auto;
  }

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

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

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

  .connection-canvas {
    display: none;
  }
}
