:root {
  --bg: #f4f7ee;
  --surface: #ffffff;
  --surface-soft: #eef5e2;
  --surface-strong: #163820;
  --ink: #17291a;
  --muted: #526854;
  --primary: #23863b;
  --primary-strong: #176a2f;
  --primary-soft: #dff0d3;
  --accent: #e7a93a;
  --line: #d8e3c8;
  --shadow: 0 18px 44px rgba(24, 52, 26, 0.12);
  --shadow-soft: 0 12px 28px rgba(24, 52, 26, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "PT Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% -10%, rgba(143, 191, 43, 0.16), transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(231, 169, 58, 0.12), transparent 24%),
    linear-gradient(180deg, #f8fbf3, #f2f7eb 40%, #f4f7ee 100%);
  line-height: 1.55;
  overflow-x: hidden;
  position: relative;
}
body::before,
body::after {
  content: "";
  position: fixed;
  top: 92px;
  bottom: 0;
  width: min(14vw, 240px);
  pointer-events: none;
  z-index: -1;
}
body::before {
  left: -2vw;
  background:
    radial-gradient(circle at 35% 18%, rgba(88, 170, 58, 0.14), transparent 34%),
    radial-gradient(circle at 45% 62%, rgba(35, 134, 59, 0.1), transparent 30%);
}
body::after {
  right: -2vw;
  background:
    radial-gradient(circle at 62% 20%, rgba(231, 169, 58, 0.12), transparent 28%),
    radial-gradient(circle at 55% 64%, rgba(35, 134, 59, 0.09), transparent 26%);
}

a { color: inherit; }
h1, h2, h3, h4 {
  margin: 0 0 0.65rem;
  font-family: "Exo 2", "Trebuchet MS", sans-serif;
  line-height: 1.15;
}
p { margin: 0 0 1rem; }
ul { margin-top: 0; }
.container { width: min(1820px, calc(100% - 72px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(10px);
  background: rgba(244, 247, 238, 0.88);
  border-bottom: 1px solid rgba(216, 227, 200, 0.95);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.brand-mark {
  gap: 0;
}
.brand-logo {
  width: 54px;
  height: 68px;
  object-fit: contain;
}
.brand-text {
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.lang-switcher {
  margin-left: 0;
  width: auto;
  min-width: 76px;
  max-width: 92px;
  border-radius: 999px;
  border: 1px solid #b8caa8;
  background: rgba(255, 255, 255, 0.94);
  padding: 0.42rem 1.2rem 0.42rem 0.52rem;
  font-weight: 700;
  font-size: 0.76rem;
  color: var(--ink);
}
.online-counter {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  min-width: 112px;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  border: 1px solid #cfe0bb;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  position: fixed;
  right: 14px;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 10px);
  z-index: 1200;
  box-shadow: 0 8px 22px rgba(14, 36, 22, 0.18);
}
.online-counter strong {
  color: var(--primary-strong);
  font-weight: 800;
  min-width: 1.5rem;
  text-align: right;
}
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-left: auto;
  position: relative;
  overflow: hidden;
  min-width: 152px;
  min-height: 54px;
  padding: 0.82rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(135deg, #1f7f36, #3ea13a 54%, #5bb13b);
  color: #fff;
  box-shadow:
    0 14px 28px rgba(35, 134, 59, 0.28),
    0 0 0 7px rgba(35, 134, 59, 0.08);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 200ms ease, filter 200ms ease;
}
.menu-toggle::before {
  content: "≡";
  font-size: 1.18rem;
  line-height: 1;
  font-weight: 900;
  transition: transform 180ms ease;
}
.menu-toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.24) 45%, transparent 72%);
  transform: translateX(-120%);
  transition: transform 280ms ease;
}
.menu-toggle:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow:
    0 18px 34px rgba(35, 134, 59, 0.34),
    0 0 0 9px rgba(35, 134, 59, 0.1);
}
.menu-toggle:hover::after { transform: translateX(120%); }
.menu-toggle:active { transform: translateY(1px) scale(0.985); }
.menu-toggle[aria-expanded="true"]::before { transform: rotate(90deg); }
.menu-toggle[aria-expanded="true"] {
  box-shadow:
    0 18px 36px rgba(35, 134, 59, 0.34),
    0 0 0 10px rgba(35, 134, 59, 0.12);
}
.nav-links {
  position: absolute;
  top: 78px;
  right: 4%;
  width: min(350px, 92vw);
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: left;
}
.nav-links.open { display: flex; }
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
}
.nav-links a:hover {
  color: var(--primary-strong);
  background: #f3f9eb;
}
.nav-links a[aria-current="page"] {
  color: var(--primary-strong);
  background: linear-gradient(180deg, #f1f8e8, #e5f1d8);
  box-shadow: inset 0 0 0 1px #cfe0bb;
}

.hero {
  padding: 4rem 0 2.6rem;
}
.hero-home {
  padding-top: 4.4rem;
}
.hero-home-wide {
  position: relative;
  overflow: clip;
}
.hero-home-wide::before {
  content: "";
  position: absolute;
  inset: 0.75rem -6vw 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 18%, rgba(96, 173, 68, 0.22), transparent 24%),
    radial-gradient(circle at 86% 22%, rgba(231, 169, 58, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(233,243,220,0.9));
  border: 1px solid rgba(216, 227, 200, 0.9);
  box-shadow: var(--shadow-soft);
  z-index: 0;
}
.hero-home-wide .container {
  position: relative;
  z-index: 1;
}
.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(380px, 0.7fr);
  gap: 1.4rem;
  align-items: start;
}
.hero-grid-wide {
  grid-template-columns: minmax(0, 1.38fr) minmax(400px, 0.62fr);
}
.hero-grid-single {
  grid-template-columns: minmax(0, 1fr);
}
.hero-copy,
.page-hero-panel,
.hero-panel {
  min-width: 0;
}
.eyebrow,
.section-kicker,
.panel-label {
  display: inline-block;
  margin: 0 0 0.8rem;
  color: var(--primary-strong);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.84rem;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  max-width: 28ch;
  line-height: 1.08;
}
.hero-text {
  max-width: 96ch;
  color: var(--muted);
  font-size: 1.08rem;
}
.hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}
.hero-grid-single .hero-copy {
  padding: 1.35rem 1rem 1.5rem;
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}
.hero-grid-single .eyebrow,
.hero-grid-single .hero-text {
  margin-left: auto;
  margin-right: auto;
}
.hero-grid-single .hero-text {
  max-width: 62ch;
}
.hero-grid-single .hero-actions,
.hero-grid-single .hero-metrics {
  justify-content: center;
}
.hero-grid-single .hero-actions {
  margin-bottom: 1.35rem;
}
.hero-grid-single .hero-metrics {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.hero-panel,
.page-hero-panel,
.story-card,
.join-card,
.table-shell,
.service-card,
.project-card,
.metric-card,
.structure-card,
.news-card,
.card,
.editor-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.hero-panel,
.page-hero-panel {
  padding: 1.1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(239,246,227,0.98));
}
.hero-panel-top {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1rem;
}
.hero-logo {
  width: 72px;
  height: 92px;
  object-fit: contain;
  flex-shrink: 0;
}
.hero-panel h2,
.page-hero-panel h2 {
  font-size: 1.2rem;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.4rem;
}
.metric-card {
  padding: 0.95rem 1rem;
  background: linear-gradient(180deg, #fdfefb, #eff7e4);
}
.metric-card strong {
  display: block;
  font-size: 1.35rem;
  font-family: "Exo 2", sans-serif;
  color: var(--primary-strong);
}
.metric-card span {
  color: var(--muted);
  font-size: 0.94rem;
}
.hero-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}
.hero-visual-grid img:first-child {
  grid-column: span 2;
}
.hero-visual-grid img,
.story-image-stack img,
.mission-images img,
.direction-image {
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #ccdbc1;
}
.hero-visual-grid img {
  aspect-ratio: 16 / 10;
}
.quick-points {
  margin: 0;
  padding-left: 1.1rem;
}
.quick-points li + li { margin-top: 0.35rem; }

.section {
  padding: 3.7rem 0;
}
.render-section {
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}
.section > .container {
  position: relative;
}
.section-alt {
  background: rgba(255, 255, 255, 0.68);
  border-top: 1px solid rgba(216, 227, 200, 0.9);
  border-bottom: 1px solid rgba(216, 227, 200, 0.9);
}
.lead {
  font-size: 1.08rem;
  color: #243829;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.55rem;
}
.section-head > div:first-child {
  min-width: 0;
}
.section-head h2 {
  max-width: 17ch;
}
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(320px, 0.66fr);
  gap: 1.2rem;
  align-items: start;
}
.story-side {
  display: grid;
  gap: 0.72rem;
  align-content: start;
}
.story-card,
.join-card {
  padding: 1rem 1.05rem;
}
.story-card ul,
.join-card ul,
.membership-grid ul {
  padding-left: 1.05rem;
  margin-bottom: 0;
}
.story-image-stack {
  display: grid;
  gap: 0.55rem;
}
.story-image-stack img {
  aspect-ratio: 16 / 9;
  max-height: 250px;
  object-position: center;
}
.service-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
.service-grid {
  align-items: stretch;
}
.steps-grid,
.roadmap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.roadmap {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.service-card,
.project-card,
.step-card,
.roadmap-card {
  padding: 1rem;
}
.service-card,
.step-card,
.roadmap-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 232, 0.95));
}
.project-card {
  position: relative;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.project-card::after {
  content: "";
  position: absolute;
  top: 1.1rem;
  right: 1rem;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(28, 85, 40, 0.45);
  border-right: 2px solid rgba(28, 85, 40, 0.45);
  transform: rotate(45deg);
  transition: transform 180ms ease, border-color 180ms ease;
}
.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(44, 132, 53, 0.35);
  box-shadow: 0 18px 32px rgba(35, 84, 41, 0.1);
  outline: none;
}
.project-card.is-active {
  border-color: rgba(44, 132, 53, 0.45);
  background: linear-gradient(180deg, #fbfff6, #eef7e2);
  box-shadow: 0 20px 36px rgba(35, 84, 41, 0.12);
}
.project-card.is-active::after {
  transform: rotate(135deg);
  border-color: rgba(28, 85, 40, 0.72);
}
.project-card > p {
  margin-bottom: 0;
  padding-right: 1.4rem;
}
.service-card h3,
.project-card h3,
.step-card h3 {
  font-size: 1.06rem;
}
.project-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.4rem;
  padding-right: 1.5rem;
}
.project-title-row h3 {
  margin-bottom: 0;
}
.project-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.26rem 0.58rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.project-status-concept {
  color: #7a5a12;
  background: #fff3cc;
  border: 1px solid rgba(155, 121, 24, 0.18);
}
.project-live-link {
  color: #156c2e;
  background: #e9f7ea;
  border: 1px solid rgba(35, 117, 46, 0.18);
  text-decoration: none;
  max-width: 210px;
  text-align: center;
}
.project-live-link:hover {
  background: #dff2e1;
}
.project-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-weight: 800;
  margin-bottom: 0.7rem;
}
.step-card {
  position: relative;
  overflow: hidden;
}
.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  color: #fff;
  font-weight: 800;
}
.step-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 134, 59, 0.08), transparent 70%);
}
.roadmap-card {
  border-left: 4px solid var(--accent);
  background: linear-gradient(180deg, #fffef8, #f7fbef);
}
.roadmap-card strong {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: #7a5a12;
  font-family: "Exo 2", sans-serif;
}
.accent-card {
  background: linear-gradient(180deg, #f9fcf4, #e8f4d9);
}
.project-details {
  margin-top: 0.9rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(85, 126, 75, 0.18);
}
.project-details[hidden] {
  display: none;
}
.project-details-inner {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(96, 139, 81, 0.18);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(251, 255, 246, 0.98), rgba(235, 244, 221, 0.95));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.project-details-kicker {
  margin: 0 0 0.4rem;
  color: #2f6e33;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.project-details-title {
  margin: 0 0 0.65rem;
}
.project-details p {
  margin: 0 0 0.7rem;
  max-width: 90ch;
  color: var(--muted);
}
.project-details p:last-child {
  margin-bottom: 0;
}
.gallery-lead {
  max-width: 92ch;
  color: var(--muted);
}
.news-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
.news-list-compact {
  margin-top: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.news-card {
  padding: 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 231, 0.92)),
    radial-gradient(circle at top right, rgba(231, 169, 58, 0.1), transparent 28%);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.news-card:hover {
  transform: translateY(-2px);
  border-color: rgba(44, 132, 53, 0.26);
  box-shadow: 0 18px 32px rgba(35, 84, 41, 0.1);
}
.news-card h2,
.news-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}
.news-meta {
  color: #47684c;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}
.news-card p {
  color: #35553a;
  margin-bottom: 0;
  flex: 1;
}
.news-card a {
  font-weight: 700;
  color: #1d6d36;
  text-decoration: none;
  margin-top: 0.2rem;
}
.news-card a:hover { text-decoration: underline; }
.contact-grid,
.membership-grid {
  align-items: start;
}
.join-card,
.contact-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 245, 226, 0.96));
}
.contact-form {
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 1.15rem;
}

.region-groups {
  display: grid;
  gap: 0.85rem;
}
.region-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.region-card summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  font-weight: 800;
  font-family: "Exo 2", sans-serif;
  background: linear-gradient(180deg, #fbfdf8, #edf5e0);
}
.region-card summary::-webkit-details-marker {
  display: none;
}
.region-title {
  font-size: 1.08rem;
}
.region-meta {
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
}
.region-empty {
  padding: 1rem 1.1rem;
  color: var(--muted);
}
.region-table-wrap {
  padding: 0.8rem 0.9rem 0.95rem;
}
.greenhouse-table .org-cell {
  min-width: 260px;
  font-weight: 700;
  color: #223a27;
}
.greenhouse-table .facts-cell {
  min-width: 420px;
}
.table-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem 0.5rem;
}
.table-facts span {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.45rem;
  border: 1px solid #dce7ce;
  border-radius: 999px;
  background: #f7fbef;
  color: #365339;
  font-size: 0.89rem;
}
.table-facts strong {
  margin-right: 0.22rem;
}

.filter {
  display: grid;
  gap: 0.25rem;
  min-width: 290px;
  color: var(--muted);
  font-weight: 700;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid #b8caa8;
  border-radius: 12px;
  padding: 0.72rem 0.8rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(35, 134, 59, 0.12);
  border-color: #7fb06b;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}
.card {
  padding: 0.9rem 0.95rem;
}
.card-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  align-items: start;
}
.direction-image {
  height: 150px;
}
.card-head h3 {
  font-size: 1.08rem;
  margin-bottom: 0;
}
.card-goal {
  margin: 0;
  color: var(--muted);
}
.details-toggle {
  width: 100%;
  border: 1px solid #aec892;
  border-radius: 12px;
  background: #f2f8e7;
  color: #255229;
  padding: 0.58rem 0.8rem;
  font-weight: 700;
  cursor: pointer;
}
.details {
  display: none;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px dashed #cadab9;
}
.details.open { display: block; }
.details h4 {
  margin: 0.2rem 0 0.35rem;
  font-size: 1rem;
}
.details ul {
  margin-bottom: 0.75rem;
  padding-left: 1rem;
}

.membership-grid,
.contact-grid,
.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(340px, 0.76fr);
  gap: 1.2rem;
  align-items: start;
}
.contact-form {
  display: grid;
  gap: 0.8rem;
  max-width: 100%;
}
.contact-form label,
.editor-card label {
  display: grid;
  gap: 0.25rem;
  font-weight: 700;
}
.mbozor-panel label {
  display: grid;
  gap: 0.25rem;
  font-weight: 700;
}
.contact-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 134, 59, 0.08), transparent 26%),
    transparent;
}
.membership-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.membership-modal.is-open {
  display: flex;
}
.membership-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 34, 20, 0.56);
  backdrop-filter: blur(8px);
}
.membership-modal__dialog {
  position: relative;
  width: min(780px, calc(100vw - 40px));
  max-height: min(88vh, 920px);
  overflow: auto;
  padding: 30px 28px 26px;
  border-radius: 28px;
  border: 1px solid rgba(216, 227, 200, 0.92);
  background: linear-gradient(180deg, #fffef9, #eef6e4);
  box-shadow: 0 28px 60px rgba(17, 37, 20, 0.26);
}
.membership-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid #d2dfc1;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
}
.membership-modal__eyebrow {
  margin-bottom: 0.6rem;
  color: var(--primary-strong);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.membership-modal__lead,
.membership-modal__note {
  color: var(--muted);
}
.membership-modal__body h4 {
  margin-top: 1.4rem;
}
.membership-modal__rules {
  margin: 0;
  padding-left: 1.1rem;
}
.membership-modal__rules li + li {
  margin-top: 0.65rem;
}
.membership-modal__note--soft {
  font-size: 0.96rem;
}
.membership-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
body.modal-open {
  overflow: hidden;
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.registry-toolbar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 0.85rem;
}
.compact-toolbar {
  margin-top: 0;
}
.registry-toolbar input {
  min-width: 280px;
  max-width: 520px;
}
.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid #c8dbb5;
  background: #f4faeb;
  color: #2a5c32;
  border-radius: 999px;
  padding: 0.32rem 0.75rem;
  font-weight: 700;
  font-size: 0.92rem;
}
.table-shell {
  padding: 0.8rem;
}
.table-status-note {
  margin: 0.3rem 0 0.9rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid #d9e6c6;
  border-radius: 12px;
  background: #f5faee;
  color: #2e5d34;
  font-weight: 700;
}
.table-wrap {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.registry-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.registry-table th,
.registry-table td {
  padding: 0.7rem 0.7rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e5edd8;
  font-size: 0.95rem;
}
.registry-table td.greenhouse-org {
  font-weight: 800;
  font-size: 1rem;
  color: #173c20;
}
.registry-table td.member-org {
  font-weight: 800;
  font-size: 1rem;
  color: #173c20;
}
.registry-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #eef6e2;
  color: #2b5630;
}
.registry-table tr:hover td {
  background: #fbfdf7;
}
.registry-pager {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.structure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}
.org-chart {
  position: relative;
  padding-top: 0.4rem;
}
.org-chart::before {
  content: "";
  position: absolute;
  top: 142px;
  left: 50%;
  width: 2px;
  height: 36px;
  background: #b7cf9b;
  transform: translateX(-50%);
}
.org-node {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}
.org-node-root {
  max-width: 360px;
  margin: 0 auto 3.6rem;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #eef7df);
}
.org-branches {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
.org-branches::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: #b7cf9b;
}
.org-branches .org-node {
  position: relative;
}
.org-branches .org-node::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  width: 2px;
  height: 18px;
  background: #b7cf9b;
  transform: translateX(-50%);
}
.org-node h3,
.org-node h2 {
  margin-bottom: 0.55rem;
}
.org-node ul {
  margin-bottom: 0;
  padding-left: 1rem;
}
.org-node-accent {
  background: linear-gradient(180deg, #fffdfa, #f8f0d9);
}
.structure-grid-strong .structure-card:nth-child(1) {
  grid-column: span 2;
}
.structure-card {
  padding: 1rem 1.05rem;
}
.structure-card h2 { font-size: 1.1rem; }
.structure-card h3 { font-size: 1rem; margin-top: 0.65rem; }
.structure-card ul { padding-left: 1rem; margin-bottom: 0.25rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 46px;
  padding: 0.68rem 1.05rem;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary-strong), var(--primary), #5aa92d);
  color: #fff;
  box-shadow: 0 10px 20px rgba(35, 134, 59, 0.16);
}
.btn-outline {
  background: #f4f9ea;
  border-color: #a9c885;
  color: #24582e;
}

.site-footer {
  padding: 1.4rem 0;
  color: #4f644f;
}
.site-footer-rich {
  background: #183822;
  color: rgba(255, 255, 255, 0.84);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1rem;
}
.footer-brand {
  color: #fff;
  margin-bottom: 0.6rem;
}
.site-footer-rich a {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  margin-bottom: 0.3rem;
}
.site-footer-rich a:hover { color: #fff; }
.site-footer-rich h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: #fff;
}

.editor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
.editor-sticky {
  position: sticky;
  top: 92px;
  z-index: 20;
}
.editor-card {
  padding: 1rem 1.05rem;
}
.editor-card input,
.editor-card textarea,
.editor-card select {
  margin-top: 0;
}
.editor-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.7rem;
}
.editor-actions.compact {
  margin-top: 0;
  gap: 0.3rem;
}
.editor-subcard {
  border: 1px solid #dce7c7;
  border-radius: 12px;
  background: #fbfdf7;
  padding: 0.7rem;
  margin-bottom: 0.6rem;
}
.editor-subcard summary {
  cursor: pointer;
  font-weight: 700;
}
.editor-muted { color: var(--muted); }
.editor-block-preview {
  margin-top: 0.35rem;
}
.editor-block-preview img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #ccdbc1;
}

.builder-section {
  padding-top: 1.2rem;
}
.builder-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.9rem;
}
.builder-block {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 0.9rem 0.95rem;
}
.builder-block.size-s { grid-column: span 3; }
.builder-block.size-m { grid-column: span 4; }
.builder-block.size-l { grid-column: span 6; }
.builder-block.size-full { grid-column: 1 / -1; }
.builder-block h3 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}
.builder-block p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}
.builder-block img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #ccdbc1;
  margin-bottom: 0.55rem;
}

@media (max-width: 1080px) {
  .builder-block.size-s,
  .builder-block.size-m,
  .builder-block.size-l {
    grid-column: span 6;
  }
}

@media (max-width: 720px) {
  .builder-grid {
    grid-template-columns: 1fr;
  }
  .builder-block.size-s,
  .builder-block.size-m,
  .builder-block.size-l,
  .builder-block.size-full {
    grid-column: auto;
  }
}
.mbozor-hero {
  padding-top: 2.2rem;
}
.mbozor-top-grid,
.mbozor-hero-grid,
.mbozor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.95fr);
  gap: 1.25rem;
}
.mbozor-top-grid {
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  grid-auto-rows: 1fr;
}
.mbozor-panel {
  padding: 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(216, 227, 200, 0.95);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}
.mbozor-panel-compact {
  padding: 0.95rem 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.mbozor-panel-hero {
  background:
    radial-gradient(circle at top right, rgba(231, 169, 58, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 230, 0.98));
}
.mbozor-panel-hero h1 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  margin-bottom: 0.65rem;
}
.mbozor-panel-hero .gallery-lead {
  font-size: 0.98rem;
  margin-bottom: 0.8rem;
}
.mbozor-actions {
  margin-bottom: 1rem;
}
.mbozor-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}
.mbozor-active-filters {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.mbozor-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 0.9rem;
  align-items: start;
}
.mbozor-rules {
  display: grid;
  gap: 0.38rem;
  padding-left: 1.1rem;
  font-size: 0.92rem;
}
.mbozor-form-panel {
  align-self: start;
  max-width: 1160px;
  margin: 0 auto;
}
.mbozor-form-wrap {
  max-width: 1240px;
}
.mbozor-market-panel {
  min-height: auto;
}
.mbozor-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}
.mbozor-column {
  min-width: 0;
}
.mbozor-column-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}
.mbozor-column-head h3 {
  margin: 0;
  font-size: 1.02rem;
}
.mbozor-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 0.9rem;
}
.mbozor-field-full {
  grid-column: 1 / -1;
}
.mbozor-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
}
.mbozor-gallery-picker {
  margin: 0;
  padding: 0;
  border: 0;
}
.mbozor-gallery-picker legend {
  margin-bottom: 0.65rem;
  font-weight: 700;
  color: var(--ink);
}
.mbozor-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.mbozor-upload-preview img,
.mbozor-preview-card img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(55, 86, 30, 0.12);
}
.mbozor-upload-preview {
  margin-top: 0.55rem;
}
.mbozor-preview-card {
  margin: 0;
}
.mbozor-empty {
  padding: 1rem 1.1rem;
  border: 1px dashed #c9d8b9;
  border-radius: 18px;
  color: var(--muted);
  background: rgba(239, 246, 230, 0.8);
}
.mbozor-board {
  display: grid;
  gap: 0.7rem;
}
.mbozor-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 0.8rem;
  padding: 0.8rem;
  border: 1px solid #d8e3c8;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f7faef);
}
.mbozor-card.is-featured {
  border-color: rgba(231, 169, 58, 0.64);
  box-shadow: 0 12px 24px rgba(231, 169, 58, 0.12);
}
.mbozor-card-image {
  width: 100%;
  height: 88px;
  object-fit: cover;
  border-radius: 12px;
  background: #edf5e0;
}
.mbozor-image-trigger {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.mbozor-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  border-radius: 12px;
  background: #edf5e0;
  color: var(--muted);
  font-size: 0.88rem;
}
.mbozor-card-body {
  min-width: 0;
}
.mbozor-card-id {
  margin-bottom: 0.18rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: "Exo 2", "Trebuchet MS", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary-strong);
  letter-spacing: 0.03em;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.mbozor-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.4rem;
}
.mbozor-card-top h3 {
  margin: 0.08rem 0 0;
  font-size: 1rem;
}
.mbozor-price {
  white-space: nowrap;
  font-family: "Exo 2", "Trebuchet MS", sans-serif;
  color: var(--primary-strong);
  font-size: 0.95rem;
}
.mbozor-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.18rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #e8f4db;
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}
.mbozor-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.8rem;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.mbozor-tag-filter {
  appearance: none;
  border: 1px solid #c8dbb5;
  background: #f4faeb;
  color: #2a5c32;
  border-radius: 999px;
  padding: 0.24rem 0.62rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}
.mbozor-tag-filter:hover {
  background: #e9f5da;
}
.mbozor-contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.86rem;
}
.mbozor-contact-block[hidden] {
  display: none !important;
}
.mbozor-card-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.42;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mbozor-panel-compact .editor-actions {
  margin-top: auto;
}
.mbozor-gallery-modal {
  width: min(920px, 92vw);
  border: 0;
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}
.mbozor-gallery-modal::backdrop {
  background: rgba(16, 24, 15, 0.55);
}
.mbozor-gallery-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}
.mbozor-gallery-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
.mbozor-gallery-modal-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 1280px) {
  .container {
    width: min(1820px, calc(100% - 48px));
  }
}

@media (max-width: 1200px) {
  .mbozor-columns {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.btn-xs {
  padding: 0.3rem 0.52rem;
  min-height: 34px;
  border-radius: 9px;
  font-size: 0.82rem;
}
#globalStatus[data-type="ok"] {
  background: #eaf9e6;
  border-color: #b6dca8;
  color: #1f6d31;
}
#globalStatus[data-type="error"] {
  background: #ffecec;
  border-color: #efbbbb;
  color: #9f2222;
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid,
  .story-grid,
  .membership-grid,
  .contact-grid,
  .mission-grid,
  .mbozor-top-grid,
  .mbozor-hero-grid,
  .mbozor-layout {
    grid-template-columns: 1fr;
  }
  .mbozor-top-grid {
    grid-auto-rows: auto;
  }
  .mbozor-panel-compact {
    height: auto;
  }
  .service-grid,
  .project-grid,
  .roadmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps-grid,
  .org-branches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .news-list-compact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .container {
    width: min(1820px, calc(100% - 28px));
  }
  .nav-wrap {
    min-height: 70px;
    gap: 0.55rem;
  }
  .brand-logo {
    width: 46px;
    height: 58px;
  }
  .menu-toggle {
    min-width: 124px;
    min-height: 46px;
    padding: 0.64rem 1rem;
    font-size: 0.9rem;
  }
  .online-counter {
    min-width: 108px;
    padding: 0.34rem 0.58rem;
    font-size: 0.72rem;
  }
  .lang-switcher {
    min-width: 72px;
    max-width: 88px;
    padding: 0.38rem 1.05rem 0.38rem 0.5rem;
    font-size: 0.72rem;
  }
  .hero-metrics,
  .structure-grid,
  .footer-grid,
  .news-list {
    grid-template-columns: 1fr;
  }
  .org-chart::before,
  .org-branches::before,
  .org-branches .org-node::before {
    display: none;
  }
  .structure-grid-strong .structure-card:nth-child(1) {
    grid-column: auto;
  }
  .section-head h2 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(1820px, calc(100% - 20px));
  }
  .section {
    padding: 2.2rem 0;
  }
  .hero {
    padding: 2.4rem 0 1.6rem;
  }
  .menu-toggle {
    min-width: 120px;
    min-height: 44px;
    padding: 0.6rem 0.9rem;
    font-size: 0.86rem;
  }
  .lang-switcher {
    min-width: 72px;
    max-width: 86px;
    padding: 0.38rem 1.1rem 0.38rem 0.52rem;
    font-size: 0.72rem;
    font-weight: 800;
  }
  .online-counter {
    left: 50%;
    right: auto;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 8px);
    transform: translateX(-50%);
    z-index: 1200;
    font-size: 0.72rem;
    min-width: 110px;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(14, 36, 22, 0.18);
  }
  .hero h1,
  .page-hero h1 {
    max-width: none;
    font-size: clamp(1.38rem, 6.8vw, 1.95rem);
    line-height: 1.14;
  }
  .hero-home-wide .hero-copy .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.52rem;
  }
  .hero-home-wide .hero-copy h1 {
    font-size: clamp(1.18rem, 5.7vw, 1.62rem);
    line-height: 1.18;
    letter-spacing: 0.01em;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }
  .hero-text {
    font-size: 0.94rem;
    line-height: 1.42;
  }
  .hero-home-wide .hero-copy .hero-text {
    font-size: 0.9rem;
    line-height: 1.38;
    max-width: 34ch;
  }
  .hero-grid-single .hero-copy {
    padding: 0.55rem 0.15rem 0.6rem;
  }
  .hero-grid-single .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.52rem;
    max-width: 290px;
    width: 100%;
    margin: 0.9rem auto 1rem;
  }
  .hero-grid-single .hero-actions .btn {
    width: 100%;
  }
  .section-head {
    display: grid;
    align-items: start;
  }
  .filter { min-width: 0; }
  .card-top,
  .service-grid,
  .project-grid,
  .steps-grid,
  .roadmap,
  .org-branches,
  .mbozor-stats,
  .mbozor-form,
  .mbozor-form-grid,
  .mbozor-meta,
  .mbozor-card,
  .mbozor-columns,
  .mbozor-gallery-modal-grid {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .mbozor-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-metrics,
  .hero-visual-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual-grid img:first-child {
    grid-column: auto;
  }
  .registry-toolbar input {
    min-width: 0;
  }
  .region-table-wrap {
    padding: 0.55rem;
  }
  .nav-links {
    top: 68px;
    right: 10px;
    width: calc(100% - 20px);
  }
  .mbozor-card-image {
    height: 140px;
  }
  .metric-card {
    padding: 0.78rem 0.82rem;
  }
  .metric-card strong {
    font-size: 1.1rem;
  }
  .registry-table th,
  .registry-table td {
    padding: 0.55rem 0.5rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 1280px) {
  body::before,
  body::after {
    width: min(12vw, 160px);
  }
}

@media (max-width: 920px) {
  body::before,
  body::after {
    display: none;
  }
  .hero-home-wide .container {
    width: calc(100% - 16px);
  }
  .hero-grid-single .hero-copy {
    max-width: 100%;
    width: 100%;
    padding: 0.5rem 0.05rem 0.55rem;
  }
  .hero-home-wide .hero-copy h1 {
    font-size: clamp(1.08rem, 4.9vw, 1.52rem);
    line-height: 1.16;
    max-width: 100%;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }
  .hero-home-wide .hero-copy .hero-text {
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.38;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-grid-single .hero-actions {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-grid-single .hero-actions .btn {
    width: 100%;
  }
  .hero-metrics {
    grid-template-columns: 1fr !important;
  }
  .online-counter {
    display: none !important;
  }
}

/* Keep online counter pinned at the bottom on all devices. */
.online-counter {
  position: fixed !important;
  top: auto !important;
  right: 14px !important;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 10px) !important;
  left: auto !important;
  transform: none !important;
}

@media (max-width: 720px) {
  .online-counter {
    left: 50% !important;
    right: auto !important;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 8px) !important;
    transform: translateX(-50%) !important;
  }
}
