:root {
  --ink: #18332a;
  --soft: #5a6f66;
  --forest: #176b45;
  --forest-dark: #105137;
  --mint: #eaf4ee;
  --paper: #fffefa;
  --line: #dfe7e1;
  --orange: #d46b30;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.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: 20;
  border-bottom: 1px solid rgba(24, 51, 42, 0.08);
  background: rgba(255, 254, 250, 0.94);
  backdrop-filter: blur(16px);
}
.header-inner {
  max-width: 1180px;
  height: 76px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.brand {
  min-width: 245px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: white;
  background: var(--forest);
}
.brand-mark svg {
  width: 31px;
  height: 31px;
}
.brand strong,
.brand small,
.visual-caption strong,
.visual-caption small,
.service-card strong,
.service-card small,
.phase strong,
.phase small {
  display: block;
}
.brand strong {
  font-size: 17px;
  letter-spacing: 0.04em;
}
.brand small {
  margin-top: 3px;
  color: #7a8b84;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.top-nav {
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}
.top-nav a {
  position: relative;
  padding: 27px 0 24px;
  color: #66776f;
  font-size: 14px;
  font-weight: 600;
}
.top-nav a:hover,
.top-nav a.active {
  color: var(--forest);
}
.top-nav a.active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 17px;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--forest);
  transform: translateX(-50%);
}
.login-button {
  min-width: 112px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #cbd9d1;
  border-radius: 11px;
  color: var(--forest-dark);
  background: white;
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
}
.login-button:hover {
  border-color: var(--forest);
  background: var(--mint);
}
.login-button svg {
  width: 18px;
  height: 18px;
}
.mobile-menu-toggle,
.mobile-nav {
  display: none;
}
.mobile-menu-toggle {
  width: 40px;
  height: 40px;
  padding: 10px;
  border: 1px solid #d7e1db;
  border-radius: 11px;
  background: white;
  cursor: pointer;
}
.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: var(--forest-dark);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.mobile-menu-toggle span + span {
  margin-top: 5px;
}
.mobile-menu-toggle[aria-expanded='true'] span:first-child {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle[aria-expanded='true'] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  max-width: 1180px;
  min-height: 535px;
  margin: 0 auto;
  padding: 70px 24px 48px;
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  align-items: center;
  gap: 62px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
}
.eyebrow span {
  width: 22px;
  height: 2px;
  background: var(--orange);
}
.hero h1 {
  margin: 18px 0 20px;
  font-family: 'Songti SC', 'STSong', serif;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.16;
  letter-spacing: -0.04em;
}
.hero h1 em {
  color: var(--forest);
  font-style: normal;
}
.hero-copy {
  max-width: 590px;
  margin: 0;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.85;
}
.search-panel {
  margin-top: 32px;
  padding: 6px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  border: 1px solid #d6e0d9;
  border-radius: 15px;
  background: white;
  box-shadow: 0 12px 35px rgba(31, 67, 54, 0.09);
}
.location-picker {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--forest-dark);
  background: transparent;
  cursor: pointer;
  font-weight: 650;
  white-space: nowrap;
}
.location-picker svg,
.search-field svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}
.search-field {
  min-width: 0;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #85968e;
}
.search-field input {
  width: 100%;
  padding: 12px 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
}
.search-field input::placeholder {
  color: #9baaa3;
}
.search-button {
  padding: 12px 23px;
  border: 0;
  border-radius: 10px;
  color: white;
  background: var(--forest);
  cursor: pointer;
  font-weight: 700;
}
.search-button:hover,
.submit-login:hover {
  background: var(--forest-dark);
}
.status-line {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #718279;
  font-size: 12px;
}
.status-line a {
  margin-left: 6px;
  color: var(--forest);
  font-weight: 700;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c5cec9;
}
.status-dot.online {
  background: #30a568;
  box-shadow: 0 0 0 4px rgba(48, 165, 104, 0.12);
}
.status-dot.offline {
  background: #c44d3c;
}
.trust-points {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-points span {
  padding: 7px 10px;
  border: 1px solid #dce8e0;
  border-radius: 999px;
  color: #5f766b;
  background: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 650;
}
.trust-points span::before {
  content: '✓';
  margin-right: 5px;
  color: var(--forest);
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 390px;
}
.landscape {
  position: absolute;
  inset: 10px 0 42px;
  overflow: hidden;
  border-radius: 38% 38% 28px 28px;
  background: #f1ead9;
}
.sun {
  position: absolute;
  top: 47px;
  right: 68px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #e8a34c;
}
.hill {
  position: absolute;
  border-radius: 50% 50% 0 0;
}
.hill-back {
  right: -75px;
  bottom: 112px;
  width: 430px;
  height: 210px;
  background: #abc8ad;
  transform: rotate(-4deg);
}
.hill-front {
  left: -100px;
  bottom: 78px;
  width: 480px;
  height: 220px;
  background: #6a9b74;
  transform: rotate(7deg);
}
.road {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -60px;
  width: 110px;
  height: 260px;
  border-radius: 50%;
  background: #e9d7b7;
  transform: translateX(-20%) rotate(18deg);
}
.house {
  position: absolute;
  z-index: 3;
  width: 62px;
  height: 49px;
  border-radius: 3px;
  background: #f8f0df;
}
.house::before {
  content: '';
  position: absolute;
  left: -7px;
  top: -27px;
  border-left: 38px solid transparent;
  border-right: 38px solid transparent;
  border-bottom: 31px solid #b84c3e;
}
.house span {
  position: absolute;
  left: 24px;
  bottom: 0;
  width: 17px;
  height: 27px;
  background: #7e5e44;
}
.house-a {
  left: 87px;
  bottom: 101px;
}
.house-b {
  right: 83px;
  bottom: 91px;
  transform: scale(0.78);
}
.tree {
  position: absolute;
  z-index: 4;
  width: 21px;
  height: 53px;
  border-radius: 50% 50% 45% 45%;
  background: #2f704b;
}
.tree::after {
  content: '';
  position: absolute;
  left: 9px;
  bottom: -20px;
  width: 4px;
  height: 24px;
  background: #70533c;
}
.tree-a {
  left: 51px;
  bottom: 95px;
}
.tree-b {
  right: 43px;
  bottom: 117px;
  transform: scale(0.82);
}
.field-lines {
  position: absolute;
  z-index: 1;
  left: -15%;
  right: -15%;
  bottom: 0;
  height: 103px;
  background: repeating-linear-gradient(9deg, #d7bb74 0 5px, #ead597 5px 16px);
}
.visual-caption {
  position: absolute;
  z-index: 6;
  right: -8px;
  bottom: 15px;
  width: 230px;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(23, 107, 69, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 13px 32px rgba(34, 64, 52, 0.13);
}
.caption-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--forest);
  background: var(--mint);
}
.caption-icon svg {
  width: 23px;
  height: 23px;
}
.visual-caption strong {
  font-size: 13px;
}
.visual-caption small {
  margin-top: 4px;
  color: #809087;
  font-size: 10px;
}

.service-section {
  padding: 78px max(24px, calc((100% - 1132px) / 2)) 86px;
  background: #f7f9f5;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.section-heading h2,
.progress-copy h2 {
  margin: 9px 0 0;
  font-family: 'Songti SC', 'STSong', serif;
  font-size: 30px;
  letter-spacing: -0.03em;
}
.section-kicker {
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.section-heading > p {
  max-width: 360px;
  margin: 0 0 3px;
  color: #7a8b83;
  font-size: 13px;
  line-height: 1.7;
  text-align: right;
}
.section-actions {
  max-width: 410px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}
.section-actions p {
  margin: 0;
  color: #7a8b83;
  font-size: 13px;
  line-height: 1.7;
  text-align: right;
}
.publish-button {
  flex: 0 0 auto;
  padding: 10px 15px;
  border: 1px solid var(--forest);
  border-radius: 10px;
  color: white;
  background: var(--forest);
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}
.publish-button:hover {
  background: var(--forest-dark);
}
.service-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service-card {
  position: relative;
  min-height: 118px;
  padding: 21px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #e2e8e3;
  border-radius: 15px;
  color: var(--ink);
  background: white;
  cursor: pointer;
  text-align: left;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: #a9c6b4;
}
.service-icon {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
}
.service-icon svg {
  width: 26px;
  height: 26px;
}
.service-icon.green {
  color: #28734e;
  background: #e5f2e9;
}
.service-icon.blue {
  color: #356f83;
  background: #e5f0f2;
}
.service-icon.orange {
  color: #a85b2e;
  background: #f7ebdf;
}
.service-icon.gold {
  color: #927026;
  background: #f6efd9;
}
.service-icon.outdoor {
  color: #176b50;
  background: #dcefe4;
}
.service-icon.purple {
  color: #675d91;
  background: #eeeaf5;
}
.service-icon.red {
  color: #9a4e42;
  background: #f5e8e4;
}
.service-icon.circle {
  color: #315f9b;
  background: #e7eef9;
}

.service-icon.teal {
  color: #087d70;
  background: #dff7f1;
}

.errand-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.8fr);
  gap: 18px;
  margin: 18px 0 24px;
}

.errand-workspace .publish-form {
  margin: 0;
  border: 1px solid #dce8e4;
  border-radius: 18px;
  padding: 18px;
  background: #fbfefd;
}

.errand-workspace h3,
.workspace-title {
  margin: 0 0 14px;
  color: #183d37;
}

.workspace-title {
  margin-top: 22px;
}

.errand-route {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #47645f;
  font-size: 13px;
}

.errand-route b {
  color: #087d70;
}

@media (max-width: 780px) {
  .errand-workspace {
    grid-template-columns: 1fr;
  }
}
.service-card strong {
  font-size: 15px;
}
.service-card small {
  margin-top: 6px;
  color: #819087;
  font-size: 11px;
}
.service-card i {
  position: absolute;
  top: 13px;
  right: 13px;
  padding: 4px 7px;
  border-radius: 6px;
  color: #7b8982;
  background: #f1f3f1;
  font-size: 9px;
  font-style: normal;
}
.service-card i.ready {
  color: var(--forest);
  background: #e5f2e9;
  font-weight: 700;
}

.catalog-panel {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid #dfe8e1;
  border-radius: 18px;
  background: white;
}
.catalog-heading {
  min-height: 68px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #edf1ee;
}
.catalog-heading div {
  display: grid;
  gap: 4px;
}
.catalog-heading span {
  color: #84938b;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
}
.catalog-heading strong {
  font-size: 14px;
}
.catalog-heading button {
  padding: 7px 11px;
  border: 1px solid #d5e0d9;
  border-radius: 8px;
  color: var(--forest);
  background: #f7faf8;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}
.catalog-heading button:disabled {
  cursor: wait;
  opacity: 0.6;
}
.catalog-filters {
  padding: 12px 20px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  border-bottom: 1px solid #edf1ee;
  background: #fbfcfb;
  scrollbar-width: none;
}
.catalog-filters::-webkit-scrollbar {
  display: none;
}
.catalog-filters button {
  min-width: max-content;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #6d8177;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}
.catalog-filters button:hover {
  color: var(--forest);
  background: #edf6f0;
}
.catalog-filters button.active {
  border-color: #bcd5c6;
  color: white;
  background: var(--forest);
}
.catalog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.catalog-card {
  min-height: 160px;
  padding: 22px;
  border-right: 1px solid #edf1ee;
  border-bottom: 1px solid #edf1ee;
}
.catalog-card:nth-child(3n) {
  border-right: 0;
}
.catalog-card .catalog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #75877e;
  font-size: 10px;
}
.catalog-card .catalog-type {
  padding: 4px 7px;
  border-radius: 6px;
  color: var(--forest);
  background: var(--mint);
  font-weight: 750;
}
.catalog-card h3 {
  margin: 16px 0 8px;
  font-size: 17px;
}
.catalog-card p {
  min-height: 36px;
  margin: 0;
  overflow: hidden;
  color: #74867d;
  font-size: 12px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.catalog-card > strong,
.catalog-card-footer > strong {
  margin-top: 15px;
  display: block;
  color: #b05d2f;
  font-size: 16px;
}

.catalog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.catalog-card-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}
.catalog-card-footer button,
.order-actions button {
  padding: 9px 13px;
  border: 0;
  border-radius: 9px;
  color: white;
  background: var(--forest);
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
}
.catalog-card-footer button.secondary {
  border: 1px solid #d8e4dc;
  color: var(--forest);
  background: #f5f9f6;
}
.catalog-card-footer button.secondary:hover {
  border-color: #aac9b7;
  background: #eaf4ee;
}
.order-actions button.secondary {
  color: #786156;
  background: #f3ece7;
}
.catalog-empty {
  padding: 42px 24px;
  text-align: center;
}
.catalog-empty > span {
  width: 42px;
  height: 42px;
  margin: 0 auto 13px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #84938b;
  background: #eef2ef;
  font-size: 11px;
  font-weight: 800;
}
.catalog-empty strong {
  display: block;
  font-size: 14px;
}
.catalog-empty p {
  max-width: 560px;
  margin: 8px auto 0;
  color: #7b8c83;
  font-size: 11px;
  line-height: 1.7;
}

.local-circle-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 24px 20px;
}
.local-circle-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}
.local-circle-heading h2 {
  margin: 10px 0 10px;
  font-family: 'Songti SC', 'STSong', serif;
  font-size: clamp(34px, 4vw, 48px);
}
.local-circle-heading p {
  max-width: 680px;
  margin: 0;
  color: #71837a;
  font-size: 13px;
  line-height: 1.75;
}
.local-circle-actions,
.local-circle-scopes {
  display: flex;
  gap: 9px;
}
.local-circle-actions button,
.local-circle-controls button,
.local-circle-controls select,
.local-circle-card-footer button {
  min-height: 41px;
  padding: 0 14px;
  border: 1px solid #cfdcd4;
  border-radius: 10px;
  color: var(--forest);
  background: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
}
.local-circle-actions .primary,
.local-circle-card-footer button,
.local-circle-scopes button.active {
  border-color: var(--forest);
  color: white;
  background: var(--forest);
}
.local-circle-controls {
  margin-top: 26px;
  padding: 15px;
  display: flex;
  align-items: end;
  gap: 10px;
  border: 1px solid #dfe8e2;
  border-radius: 15px;
  background: #f8faf8;
}
.local-circle-controls label {
  display: grid;
  gap: 5px;
  color: #6f8078;
  font-size: 9px;
  font-weight: 750;
}
.local-circle-controls > span {
  margin-left: auto;
  color: #75867e;
  font-size: 11px;
}
.local-circle-list {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.local-circle-topic-strip {
  margin: 0 0 22px;
  display: flex;
  gap: 9px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.local-circle-topic-strip button,
.local-circle-detail-topics button {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid #d5dfda;
  border-radius: 999px;
  color: #496359;
  background: #fff;
}
.local-circle-topic-strip button.active {
  color: #fff;
  border-color: #176b50;
  background: #176b50;
}
.local-circle-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid #dfe7e2;
  border-radius: 18px;
  background: white;
  box-shadow: 0 10px 30px rgba(29, 65, 50, 0.05);
}
.local-circle-card-header,
.local-circle-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.local-circle-card-header > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.local-circle-card-header > div > span {
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: var(--forest);
  font-size: 13px;
  font-weight: 800;
}
.local-circle-card-header p {
  min-width: 0;
  margin: 0;
}
.local-circle-card-header strong,
.local-circle-card-header small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.local-circle-card-header strong {
  font-size: 12px;
}
.local-circle-card-header small {
  margin-top: 3px;
  color: #84938b;
  font-size: 9px;
}
.local-circle-category {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 999px;
  color: #9a572f;
  background: #f6e9dd;
  font-size: 9px;
  font-weight: 750;
}
.local-circle-card h3 {
  margin: 18px 0 9px;
  font-size: 17px;
  line-height: 1.45;
}
.local-circle-card-body {
  min-height: 48px;
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  color: #60736a;
  font-size: 12px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.local-circle-card-location {
  margin: 14px 0 17px;
  color: #87958e;
  font-size: 10px;
}
.local-circle-card-footer {
  padding-top: 15px;
  border-top: 1px solid #edf1ee;
}
.local-circle-card-footer > span {
  color: #7a8b83;
  font-size: 10px;
}
.local-circle-card-footer button {
  min-height: 35px;
}
.local-circle-empty {
  margin-top: 18px;
  padding: 45px 24px;
  border: 1px dashed #cfdbd3;
  border-radius: 17px;
  text-align: center;
  background: #fafbf9;
}
.local-circle-empty[hidden] {
  display: none;
}
.local-circle-empty strong {
  display: block;
  font-size: 14px;
}
.local-circle-empty p {
  max-width: 560px;
  margin: 8px auto 0;
  color: #7c8c84;
  font-size: 11px;
  line-height: 1.7;
}

.outdoor-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 24px 20px;
}
.outdoor-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
}
.outdoor-heading h2 {
  max-width: 720px;
  margin: 10px 0 12px;
  font-family: 'Songti SC', 'STSong', serif;
  font-size: clamp(30px, 4vw, 43px);
  line-height: 1.25;
}
.outdoor-heading p {
  max-width: 700px;
  margin: 0;
  color: #71837a;
  font-size: 13px;
  line-height: 1.75;
}
.outdoor-filters {
  min-width: 390px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 9px;
}
.outdoor-filters label,
.outdoor-signup-settings label {
  display: grid;
  gap: 6px;
  color: #6b7c73;
  font-size: 10px;
  font-weight: 750;
}
.outdoor-filters select,
.outdoor-filters button,
.outdoor-signup-settings input {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #d8e4dc;
  border-radius: 10px;
  background: white;
  font: inherit;
}
.outdoor-filters button {
  color: white;
  background: var(--forest);
  cursor: pointer;
  font-weight: 800;
}
.outdoor-signup-settings {
  margin-top: 24px;
  padding: 15px;
  display: grid;
  grid-template-columns: 130px minmax(240px, 1fr) auto;
  align-items: end;
  gap: 12px;
  border: 1px solid #deebe3;
  border-radius: 15px;
  background: #f5f9f6;
}
.outdoor-signup-settings > span {
  align-self: center;
  color: #547066;
  font-size: 11px;
  font-weight: 800;
}
.outdoor-list {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.outdoor-card {
  padding: 23px;
  display: flex;
  flex-direction: column;
  border: 1px solid #dde8e1;
  border-radius: 18px;
  background: white;
  box-shadow: 0 14px 38px rgba(31, 78, 62, 0.07);
}
.outdoor-card-top,
.outdoor-card-facts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.outdoor-card-badge,
.outdoor-card-difficulty {
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 850;
}
.outdoor-card-badge {
  color: #176b50;
  background: #e3f2ea;
}
.outdoor-card-difficulty {
  color: #81582d;
  background: #f7eadc;
}
.outdoor-card-difficulty.hard {
  color: #9d443a;
  background: #f8e2df;
}
.outdoor-card h3 {
  margin: 18px 0 8px;
  font-size: 19px;
}
.outdoor-card-time,
.outdoor-card-address,
.outdoor-card-deadline {
  margin: 5px 0 0;
  color: #74867d;
  font-size: 11px;
}
.outdoor-card-facts {
  margin-top: 12px;
  color: #2b6b53;
  font-size: 11px;
  font-weight: 800;
}
.outdoor-card-description {
  margin: 14px 0 0;
  color: #53675d;
  font-size: 12px;
  line-height: 1.65;
}
.outdoor-card-info {
  margin-top: 11px;
  padding: 10px;
  border-radius: 10px;
  color: #755127;
  background: #fbf1e5;
  font-size: 10px;
  line-height: 1.55;
}
.outdoor-card button {
  width: 100%;
  min-height: 42px;
  margin-top: auto;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  color: white;
  background: var(--forest);
  cursor: pointer;
  font-weight: 800;
}
.outdoor-card button[disabled] {
  color: #738178;
  background: #e6ece8;
  cursor: not-allowed;
}
.outdoor-empty {
  margin-top: 16px;
  padding: 38px 24px;
  border: 1px dashed #cadbd0;
  border-radius: 16px;
  color: #61756b;
  background: #f8faf9;
  text-align: center;
}
.outdoor-empty p {
  margin: 8px 0 0;
  font-size: 11px;
}

.runner-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 24px 34px;
}
.runner-shell {
  position: relative;
  overflow: hidden;
  padding: 52px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 70px;
  border-radius: 28px;
  color: white;
  background:
    radial-gradient(circle at 88% 2%, rgba(108, 218, 184, 0.22), transparent 35%),
    linear-gradient(135deg, #0c4c42 0%, #123a34 100%);
  box-shadow: 0 30px 70px rgba(19, 61, 52, 0.18);
}
.runner-shell::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  right: -120px;
  bottom: -170px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 38px rgba(255, 255, 255, 0.035),
    0 0 0 78px rgba(255, 255, 255, 0.025);
}
.runner-overview,
.runner-steps {
  position: relative;
  z-index: 1;
}
.runner-badge {
  width: max-content;
  margin-bottom: 24px;
  padding: 7px 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #cfece3;
  background: rgba(255, 255, 255, 0.07);
  font-size: 11px;
  font-weight: 700;
}
.runner-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6ed3ad;
  box-shadow: 0 0 0 4px rgba(110, 211, 173, 0.12);
}
.runner-overview .section-kicker {
  color: #82dbbd;
}
.runner-overview h2 {
  margin: 12px 0 18px;
  font-family: 'Songti SC', 'STSong', serif;
  font-size: clamp(31px, 4vw, 44px);
  line-height: 1.24;
  letter-spacing: -0.035em;
}
.runner-overview > p:not(.runner-runtime-note) {
  max-width: 560px;
  margin: 0;
  color: #c1d7d0;
  font-size: 14px;
  line-height: 1.85;
}
.runner-actions {
  margin-top: 27px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}
.runner-actions button {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 11px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}
.runner-primary {
  border: 1px solid #f6b470;
  color: #173b33;
  background: #f6b470;
}
.runner-primary:hover {
  background: #ffc58a;
}
.runner-secondary {
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: white;
  background: rgba(255, 255, 255, 0.08);
}
.runner-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}
.runner-runtime-note {
  margin: 15px 0 0;
  color: #9dbab1;
  font-size: 11px;
  line-height: 1.65;
}
.runner-steps {
  margin: 0;
  padding: 8px 0;
  list-style: none;
}
.runner-steps li {
  position: relative;
  min-height: 78px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 15px;
}
.runner-steps li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  bottom: 0;
  left: 21px;
  width: 1px;
  background: rgba(255, 255, 255, 0.17);
}
.runner-steps li > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  color: #8de0c4;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 800;
}
.runner-steps strong,
.runner-steps small {
  display: block;
}
.runner-steps strong {
  padding-top: 3px;
  font-size: 14px;
}
.runner-steps small {
  margin-top: 7px;
  color: #a7c0b8;
  font-size: 11px;
  line-height: 1.55;
}
.runner-guardrails {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.runner-guardrails article {
  min-height: 158px;
  padding: 23px;
  border: 1px solid #dfe8e2;
  border-radius: 17px;
  background: white;
}
.runner-guardrails span {
  padding: 4px 7px;
  border-radius: 6px;
  color: #087d70;
  background: #e1f4ee;
  font-size: 9px;
  font-weight: 800;
}
.runner-guardrails strong {
  margin-top: 15px;
  display: block;
  font-size: 15px;
}
.runner-guardrails p {
  margin: 9px 0 0;
  color: #74867d;
  font-size: 11px;
  line-height: 1.7;
}

.progress-section {
  max-width: 1132px;
  margin: 0 auto;
  padding: 92px 0;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}
.progress-copy p {
  margin: 20px 0 24px;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.85;
}
.progress-copy a {
  color: var(--forest);
  font-size: 13px;
  font-weight: 750;
  border-bottom: 1px solid #7eaa92;
}
.phase-list {
  border-top: 1px solid var(--line);
}
.phase {
  min-height: 76px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}
.phase > span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #84938b;
  background: #f1f3f1;
  font-size: 11px;
  font-weight: 800;
}
.phase p {
  margin: 0;
}
.phase strong {
  font-size: 14px;
}
.phase small {
  margin-top: 4px;
  color: #84938b;
  font-size: 11px;
}
.phase > i {
  color: #8a9790;
  font-size: 10px;
  font-style: normal;
}
.phase.done > span {
  color: white;
  background: var(--forest);
}
.phase.done > i {
  color: var(--forest);
  font-weight: 700;
}
.phase.current > span {
  color: #98511f;
  background: #f4e7d7;
}
.phase.current > i {
  padding: 5px 8px;
  border-radius: 6px;
  color: #98511f;
  background: #f4e7d7;
}

footer {
  padding: 28px max(24px, calc((100% - 1132px) / 2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #84928b;
  background: #16382d;
  font-size: 11px;
}
footer div {
  display: flex;
  align-items: center;
  gap: 16px;
}
footer strong {
  color: white;
  font-size: 13px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  padding: 20px;
  display: grid;
  place-items: center;
  background: rgba(13, 35, 27, 0.55);
  backdrop-filter: blur(6px);
}
.modal-backdrop[hidden] {
  display: none;
}
.login-modal {
  position: relative;
  width: min(420px, 100%);
  padding: 34px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}
.location-modal {
  position: relative;
  width: min(620px, 100%);
  padding: 34px;
  border-radius: 22px;
  background: white;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}
.location-modal h2 {
  margin: 9px 0 7px;
  font-family: 'Songti SC', 'STSong', serif;
  font-size: 29px;
}
.location-modal > p {
  margin: 0;
  color: #73847c;
  font-size: 12px;
  line-height: 1.7;
}
.location-current {
  margin-top: 20px;
  padding: 12px 14px;
  border: 1px solid #dbe8df;
  border-radius: 11px;
  color: var(--forest);
  background: #f3f9f5;
  font-size: 12px;
  font-weight: 750;
}
.location-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.location-grid label {
  display: grid;
  gap: 7px;
  color: #53675e;
  font-size: 11px;
  font-weight: 750;
}
.location-grid select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid #d5ded8;
  border-radius: 10px;
  outline: 0;
  color: var(--ink);
  background: white;
}
.location-grid select:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(23, 107, 69, 0.1);
}
.location-grid select:disabled {
  color: #97a39d;
  background: #f5f7f5;
}
.location-modal .location-message {
  min-height: 20px;
  margin-top: 14px;
  color: #71827a;
  font-size: 11px;
}
.location-actions {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.location-actions button {
  padding: 11px 17px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}
.location-actions .secondary {
  border: 1px solid #cbd9d0;
  color: var(--forest);
  background: white;
}
.location-actions .primary {
  border: 1px solid var(--forest);
  color: white;
  background: var(--forest);
}
.location-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  color: #77867f;
  background: transparent;
  cursor: pointer;
  font-size: 27px;
  font-weight: 300;
}
.modal-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: var(--forest);
}
.modal-mark svg {
  width: 33px;
  height: 33px;
}
.login-modal h2 {
  margin: 20px 0 6px;
  font-size: 24px;
}
.login-modal > p {
  margin: 0 0 24px;
  color: #7a8b83;
  font-size: 13px;
}
.login-modal label {
  display: grid;
  gap: 8px;
  color: #53675e;
  font-size: 12px;
  font-weight: 700;
}
.login-modal input {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #d5ded8;
  border-radius: 10px;
  outline: 0;
  color: var(--ink);
}
.login-modal input:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(23, 107, 69, 0.1);
}
.code-row {
  margin-top: 15px;
  display: grid;
  grid-template-columns: 1fr 116px;
  align-items: end;
  gap: 10px;
}
.code-row button {
  height: 43px;
  border: 1px solid #bdd0c4;
  border-radius: 10px;
  color: var(--forest);
  background: var(--mint);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}
.code-row button:disabled {
  cursor: wait;
  opacity: 0.6;
}
.form-help {
  min-height: 18px;
  margin: 10px 0 15px;
  color: #87958e;
  font-size: 10px;
}
.form-help.error {
  color: #b34e3f;
}
.submit-login {
  width: 100%;
  padding: 13px;
  border: 0;
  border-radius: 10px;
  color: white;
  background: var(--forest);
  cursor: pointer;
  font-weight: 750;
}
.publish-modal {
  position: relative;
  width: min(780px, 100%);
  max-height: calc(100vh - 40px);
  padding: 32px;
  overflow: auto;
  border-radius: 20px;
  background: white;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}
.detail-modal {
  position: relative;
  width: min(650px, 100%);
  max-height: calc(100vh - 40px);
  padding: 34px;
  overflow: auto;
  border-radius: 22px;
  background: white;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}
.local-circle-detail-modal {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100vh - 40px);
  padding: 34px;
  overflow: auto;
  border-radius: 22px;
  background: white;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}
.local-circle-detail-heading > div {
  padding-right: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.local-circle-detail-heading span {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--forest);
  background: var(--mint);
  font-size: 10px;
  font-weight: 800;
}
.local-circle-detail-heading strong,
.local-circle-detail-heading p {
  color: #788981;
  font-size: 11px;
}
.local-circle-detail-heading h2 {
  margin: 18px 0 8px;
  font-family: 'Songti SC', 'STSong', serif;
  font-size: 30px;
}
.local-circle-detail-heading p {
  margin: 0;
}
.local-circle-detail-body {
  margin: 24px 0;
  color: #4e6258;
  font-size: 13px;
  line-height: 1.9;
  white-space: pre-wrap;
}
.local-circle-detail-topics {
  margin: 18px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.local-circle-relations {
  margin: 20px 0;
  display: grid;
  gap: 10px;
}
.local-circle-relations h3 {
  margin: 0 0 3px;
  font-size: 18px;
}
.local-circle-relations article {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #dbe5df;
  border-radius: 14px;
  background: #f8faf8;
}
.local-circle-relations article > div {
  min-width: 0;
  flex: 1;
  display: grid;
  gap: 4px;
}
.local-circle-relations span {
  overflow: hidden;
  color: #708078;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.local-circle-relations em {
  color: #a45b22;
  font-style: normal;
  font-weight: 800;
}
.local-circle-relations button {
  padding: 9px 12px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: #176b50;
}
.local-circle-publish-topics {
  margin: 0;
  padding: 14px;
  border: 1px solid #dce4df;
  border-radius: 14px;
}
.local-circle-publish-topics legend {
  padding: 0 6px;
  font-weight: 700;
}
.local-circle-publish-topics > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #718078;
}
.local-circle-publish-topics label {
  padding: 8px 10px;
  border-radius: 999px;
  background: #eef4f0;
}
.local-circle-interactions {
  padding: 15px 0;
  display: flex;
  gap: 8px;
  border-top: 1px solid #e7ece9;
  border-bottom: 1px solid #e7ece9;
}
.local-circle-interactions button,
.local-circle-comments form button {
  padding: 9px 13px;
  border: 1px solid #cfdbd3;
  border-radius: 9px;
  color: var(--forest);
  background: #f6faf7;
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
}
.local-circle-interactions button.danger {
  margin-left: auto;
  color: #a54c40;
  border-color: #e4cbc7;
  background: #fff9f8;
}
.local-circle-comments {
  margin-top: 24px;
}
.local-circle-comments-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.local-circle-comments-heading h3 {
  margin: 0;
  font-size: 15px;
}
.local-circle-comments-heading span {
  color: #7b8c83;
  font-size: 10px;
}
.local-circle-comments form {
  margin-top: 13px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}
.local-circle-comments form input {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid #d5ded8;
  border-radius: 9px;
  outline: 0;
  font-size: 11px;
}
.local-circle-comment-list {
  margin-top: 12px;
}
.local-circle-comment-list article {
  padding: 13px 0;
  border-bottom: 1px solid #edf1ee;
}
.local-circle-comment-list article > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}
.local-circle-comment-list strong {
  font-size: 11px;
}
.local-circle-comment-list time {
  color: #8a9891;
  font-size: 9px;
}
.local-circle-comment-list p {
  margin: 7px 0 0;
  color: #64766d;
  font-size: 11px;
  line-height: 1.7;
}
.detail-heading {
  padding-right: 28px;
}
.detail-badge {
  padding: 5px 9px;
  display: inline-flex;
  border-radius: 999px;
  color: var(--forest);
  background: var(--mint);
  font-size: 10px;
  font-weight: 800;
}
.detail-heading h2 {
  margin: 16px 0 8px;
  font-family: 'Songti SC', 'STSong', serif;
  font-size: 30px;
}
.detail-heading p,
.detail-description {
  color: #74867d;
  font-size: 12px;
  line-height: 1.75;
}
.detail-heading p {
  margin: 0;
}
.detail-description {
  margin: 22px 0;
  padding: 18px;
  border-radius: 13px;
  white-space: pre-wrap;
  background: #f7f9f7;
}
.detail-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.detail-action-row strong {
  color: #b05d2f;
  font-size: 20px;
}
.detail-action-row button {
  padding: 11px 18px;
  border: 0;
  border-radius: 10px;
  color: white;
  background: var(--forest);
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}
.detail-action-row button[hidden] {
  display: none;
}
.detail-reviews {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #e5ebe7;
}
.detail-reviews[hidden] {
  display: none;
}
.detail-reviews > div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}
.detail-reviews h3 {
  margin: 0;
  font-size: 15px;
}
.detail-reviews > div:first-child span {
  color: #73857c;
  font-size: 11px;
}
.detail-review-list {
  margin-top: 13px;
  display: grid;
  gap: 9px;
}
.detail-review-card {
  padding: 13px 14px;
  border: 1px solid #e2e9e4;
  border-radius: 11px;
  background: #fbfcfb;
}
.detail-review-card strong {
  color: #d67c3d;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.detail-review-card p {
  margin: 7px 0;
  color: #435d52;
  font-size: 12px;
  line-height: 1.65;
}
.detail-review-card small {
  color: #89978f;
  font-size: 10px;
}
.publish-intro h2 {
  margin: 8px 0 6px;
  font-size: 24px;
}
.publish-intro p {
  margin: 0;
  color: #788981;
  font-size: 12px;
  line-height: 1.6;
}
.workspace-session {
  min-height: 52px;
  margin-top: 18px;
  padding: 10px 12px 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid #dce7e0;
  border-radius: 13px;
  background: #f7faf8;
}
.workspace-session[hidden] {
  display: none;
}
.workspace-session span,
.workspace-session strong,
.workspace-session small {
  display: block;
}
.workspace-session strong {
  color: #23493c;
  font-size: 12px;
}
.workspace-session small {
  margin-top: 3px;
  color: #829188;
  font-size: 10px;
}
.workspace-session button {
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid #d7e2dc;
  border-radius: 8px;
  color: #6f5148;
  background: white;
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
}
.workspace-session button:hover {
  border-color: #c99f91;
  background: #fcf5f2;
}
.publish-tabs {
  margin: 24px 0 20px;
  padding: 4px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-radius: 11px;
  background: #f0f4f1;
}
.publish-tabs button {
  padding: 9px;
  border: 0;
  border-radius: 8px;
  color: #6d7d75;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}
.publish-tabs button.active {
  color: var(--forest-dark);
  background: white;
  box-shadow: 0 2px 8px rgba(24, 51, 42, 0.08);
}
.publish-pane[hidden] {
  display: none;
}
.publish-form,
.publish-form label {
  display: grid;
  gap: 8px;
}
.publish-form {
  gap: 15px;
}
.publish-form label {
  color: #53675e;
  font-size: 11px;
  font-weight: 700;
}
.publish-form input,
.publish-form select,
.publish-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #d5ded8;
  border-radius: 9px;
  outline: 0;
  color: var(--ink);
  background: white;
}
.publish-form textarea {
  resize: vertical;
}
.publish-form input:focus,
.publish-form select:focus,
.publish-form textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(23, 107, 69, 0.1);
}
.publish-form select:disabled {
  color: #9ba7a1;
  background: #f4f6f4;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.field-grid.four {
  grid-template-columns: repeat(4, 1fr);
}
.publish-message {
  min-height: 17px;
  margin: 0;
  color: #7b8a83;
  font-size: 10px;
}
.publish-message.error {
  color: #b34e3f;
}
.my-status-list {
  display: grid;
  gap: 10px;
  color: #74847c;
  font-size: 12px;
}
.account-overview {
  margin-bottom: 13px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}
.account-overview article {
  min-width: 0;
  padding: 14px;
  border: 1px solid #dfe8e2;
  border-radius: 12px;
  background: linear-gradient(145deg, #fbfdfb, #f0f7f3);
}
.account-overview span,
.account-overview strong,
.account-overview small {
  display: block;
}
.account-overview span {
  color: #71837a;
  font-size: 10px;
  font-weight: 700;
}
.account-overview strong {
  margin: 8px 0 5px;
  color: var(--forest);
  font-size: 24px;
}
.account-overview small {
  overflow: hidden;
  color: #8a9891;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.account-shortcuts {
  margin-bottom: 19px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.account-shortcuts button {
  padding: 8px 11px;
  border: 1px solid #d5e2da;
  border-radius: 9px;
  color: var(--forest);
  background: white;
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
}
.account-shortcuts button:hover {
  background: var(--mint);
}
.status-card {
  padding: 14px 15px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  border: 1px solid #e0e7e2;
  border-radius: 11px;
  background: #fafbf9;
}
.status-card strong {
  color: var(--ink);
  font-size: 13px;
}
.status-card span {
  color: var(--forest);
  font-size: 10px;
  font-weight: 750;
}
.status-card small {
  grid-column: 1 / -1;
  color: #87968f;
}
.status-card .appeal-progress {
  color: #80632b;
  font-weight: 700;
}
.status-card .local-circle-appeal-button {
  grid-column: 1 / -1;
  justify-self: start;
  padding: 7px 12px;
  border: 1px solid #b9d5c2;
  border-radius: 8px;
  color: var(--forest);
  background: #edf7f0;
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
}

.transaction-notice {
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid #d8e5dc;
  border-radius: 10px;
  color: #62776d;
  background: #f2f8f4;
  font-size: 11px;
  line-height: 1.6;
}
.order-card {
  grid-template-columns: minmax(0, 1.2fr) auto minmax(190px, auto);
}
.order-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.order-progress {
  grid-column: 1 / -1;
  margin: 5px 0 3px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
}
.order-progress span {
  position: relative;
  padding: 7px 5px;
  border-radius: 7px;
  color: #89968f;
  background: #eef2ef;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
}
.order-progress span.done {
  color: #4c7563;
  background: #e6f1ea;
}
.order-progress span.current {
  color: white;
  background: var(--forest);
}
.order-progress span.terminal {
  grid-column: 1 / -1;
  color: #765e54;
  background: #f2ebe7;
}
.toast {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: 28px;
  padding: 11px 18px;
  border-radius: 9px;
  color: white;
  background: #193c30;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: 0.2s ease;
  font-size: 12px;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 900px) {
  .header-inner {
    gap: 20px;
  }
  .top-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    order: 2;
  }
  .login-button {
    order: 3;
  }
  .mobile-nav {
    padding: 10px 24px 16px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    border-top: 1px solid rgba(24, 51, 42, 0.06);
    background: rgba(255, 254, 250, 0.98);
  }
  .mobile-nav[hidden] {
    display: none;
  }
  .mobile-nav a {
    padding: 10px 8px;
    border-radius: 9px;
    color: #5d7167;
    background: #f4f8f5;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
  }
  .brand {
    min-width: 0;
    margin-right: auto;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }
  .hero-visual {
    min-height: 340px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .local-circle-heading {
    align-items: stretch;
    flex-direction: column;
  }
  .local-circle-controls {
    flex-wrap: wrap;
  }
  .local-circle-controls > span {
    width: 100%;
    margin: 4px 0 0;
  }
  .outdoor-heading {
    align-items: stretch;
    flex-direction: column;
  }
  .outdoor-filters {
    min-width: 0;
  }
  .outdoor-list {
    grid-template-columns: 1fr 1fr;
  }
  .catalog-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-card:nth-child(3n) {
    border-right: 1px solid #edf1ee;
  }
  .catalog-card:nth-child(2n) {
    border-right: 0;
  }
  .field-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }
  .account-overview {
    grid-template-columns: repeat(2, 1fr);
  }
  .progress-section {
    padding: 72px 24px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .runner-shell {
    padding: 42px;
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 600px) {
  .header-inner {
    height: 66px;
    padding: 0 16px;
  }
  .brand small,
  .login-button span {
    display: none;
  }
  .brand strong {
    font-size: 15px;
  }
  .brand-mark {
    width: 39px;
    height: 39px;
  }
  .login-button {
    min-width: auto;
    padding: 9px;
  }
  .mobile-nav {
    padding: 8px 16px 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero {
    padding: 42px 18px 34px;
    gap: 30px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero-copy {
    font-size: 14px;
  }
  .search-panel {
    grid-template-columns: 1fr auto;
  }
  .location-picker {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .hero-visual {
    min-height: 300px;
  }
  .landscape {
    inset: 0 0 28px;
  }
  .service-section {
    padding: 58px 18px;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p,
  .section-actions p {
    margin-top: 12px;
    text-align: left;
  }
  .section-actions {
    width: 100%;
    max-width: none;
    margin-top: 16px;
    align-items: flex-start;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .local-circle-section {
    padding: 64px 18px 10px;
  }
  .local-circle-actions,
  .local-circle-scopes,
  .local-circle-controls {
    display: grid;
    grid-template-columns: 1fr;
  }
  .local-circle-actions {
    grid-template-columns: 1fr 1fr;
  }
  .local-circle-scopes {
    grid-template-columns: repeat(3, 1fr);
  }
  .local-circle-controls label,
  .local-circle-controls select,
  .local-circle-controls > button {
    width: 100%;
  }
  .local-circle-list {
    grid-template-columns: 1fr;
  }
  .outdoor-section {
    padding-top: 64px;
  }
  .outdoor-filters,
  .outdoor-signup-settings,
  .outdoor-list {
    grid-template-columns: 1fr;
  }
  .catalog-list {
    grid-template-columns: 1fr;
  }
  .catalog-card,
  .catalog-card:nth-child(2n),
  .catalog-card:nth-child(3n) {
    border-right: 0;
  }
  .catalog-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .catalog-card-actions {
    width: 100%;
  }
  .catalog-card-actions button {
    flex: 1;
  }
  .detail-modal,
  .local-circle-detail-modal,
  .publish-modal {
    padding: 26px 18px;
  }
  .local-circle-detail-heading > div,
  .local-circle-comments-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .local-circle-comments form {
    grid-template-columns: 1fr;
  }
  .detail-action-row {
    align-items: stretch;
    flex-direction: column;
  }
  .progress-section {
    padding: 60px 18px;
  }
  .runner-section {
    padding: 62px 18px 16px;
  }
  .runner-shell {
    padding: 30px 22px;
    border-radius: 22px;
  }
  .runner-overview h2 {
    font-size: 31px;
  }
  .runner-actions {
    display: grid;
  }
  .runner-guardrails {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 25px 18px;
    display: block;
    line-height: 1.8;
  }
  footer > span,
  footer div span {
    display: block;
    margin-top: 8px;
  }
  footer div {
    display: block;
  }
  .login-modal,
  .location-modal {
    padding: 28px 22px;
  }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }
  .location-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }
  .publish-modal {
    padding: 26px 18px;
  }
  .field-grid,
  .field-grid.four {
    grid-template-columns: 1fr;
  }
  .publish-tabs,
  .order-card {
    grid-template-columns: repeat(2, 1fr);
  }
}
