:root {
  color-scheme: light;
  --cream: #f6f1e7;
  --paper: #fffdf8;
  --ink: #172326;
  --muted: #5e6b70;
  --line: #ddd5c8;
  --green: #064d2e;
  --green-strong: #03361f;
  --green-soft: #dceee9;
  --gold: #c99b3f;
  --red: #b54536;
  --shadow: 0 20px 55px rgba(23, 35, 38, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 54px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(221, 213, 200, 0.75);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(14px);
}

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

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

.brand-logo {
  width: 56px;
  height: 56px;
  display: block;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

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

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.primary-nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 22px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.primary-nav {
  justify-content: center;
  flex-wrap: wrap;
}

.nav-actions {
  justify-content: flex-end;
  gap: 10px;
}

.primary-nav a:hover,
.nav-login:hover,
.site-footer a:hover {
  color: var(--green);
}

.primary-nav a[aria-current="page"],
.nav-login[aria-current="page"] {
  color: var(--ink);
}

.nav-login {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--green);
  border-radius: 7px;
  color: var(--green);
}

.nav-cta {
  min-height: 38px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  border-radius: 7px;
  background: var(--green);
  color: #fff !important;
}

.mobile-menu-toggle,
.mobile-menu-panel {
  display: none;
}

.mobile-menu-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--green);
  place-items: center;
  gap: 4px;
}

.mobile-menu-toggle span[aria-hidden="true"] {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu-panel {
  grid-column: 1 / -1;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.mobile-menu-panel a {
  min-height: 42px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  border-radius: 7px;
  color: var(--ink);
  font-weight: 850;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a[aria-current="page"] {
  background: var(--green-soft);
  color: var(--green-strong);
}

.page-hero {
  min-height: 320px;
  padding: clamp(52px, 7vw, 86px) 0 clamp(32px, 5vw, 54px);
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(7, 33, 30, 0.92), rgba(7, 33, 30, 0.62)),
    url("assets/harare-cbd-evening-1440.webp") center / cover;
  color: #fff;
}

.signup-hero {
  background:
    linear-gradient(90deg, rgba(7, 33, 30, 0.92), rgba(7, 33, 30, 0.66)),
    url("assets/harare-palms-city-960.webp") center / cover;
}

.login-hero {
  background:
    linear-gradient(90deg, rgba(7, 33, 30, 0.92), rgba(7, 33, 30, 0.64)),
    url("assets/harare-cbd-evening-960.webp") center / cover;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(1.2rem, 2.1vw, 2.1rem);
  line-height: 1.14;
}

.button.disabled {
  pointer-events: none;
  opacity: 0.72;
  background: #e8eee9;
  color: #5f6f68;
}

.signup-next-steps {
  margin-top: 18px;
  padding: 16px 18px;
  display: grid;
  gap: 5px;
  border: 1px solid rgba(12, 64, 49, 0.14);
  border-radius: 12px;
  color: #52635b;
  background: #f6faf6;
  font-size: 0.9rem;
  line-height: 1.55;
}

.signup-next-steps strong {
  color: #17442f;
}

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

.join-heading .eyebrow,
.form-panel-heading .eyebrow {
  color: #765a18;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(1.45rem, 3vw, 3rem);
  line-height: 1.04;
  font-weight: 950;
}

h2 {
  max-width: 760px;
  font-size: clamp(1.65rem, 3vw, 3.15rem);
  line-height: 1.05;
  font-weight: 930;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.65;
}

.hero-copy {
  max-width: 410px;
  margin: 8px 0 0;
  font-size: clamp(0.78rem, 1.1vw, 0.92rem);
  line-height: 1.42;
}

.button,
button {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  background: var(--gold);
  color: #1d211b;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button:hover,
button:hover {
  background: #d9ad56;
}

.button.secondary,
button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}

button.secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

button.secondary:hover,
.button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

button.secondary:hover {
  background: #f5efe4;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.section {
  padding: clamp(54px, 8vw, 104px) 0;
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.text-link {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

.public-job-card,
.public-job-empty {
  padding: clamp(18px, 3vw, 24px);
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(23, 35, 38, 0.07);
}

.public-job-card {
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.3fr);
  align-items: start;
}

.job-card-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.job-pill,
.job-source {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.job-pill {
  padding: 8px 10px;
  background: rgba(207, 157, 55, 0.16);
  color: #9a6d07;
  text-transform: uppercase;
}

.job-source {
  padding: 7px 9px;
  background: var(--green-soft);
  color: var(--green-strong);
}

.public-job-card h3,
.public-job-empty h3 {
  margin: 0 0 8px;
  color: var(--green-strong);
  font-size: clamp(1.08rem, 1.7vw, 1.38rem);
  line-height: 1.2;
}

.job-description,
.public-job-empty p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.join-section {
  background: #efe7d8;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 18px;
  align-items: start;
}

.contact-panel {
  padding: clamp(20px, 4vw, 34px);
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-aside {
  align-content: start;
}

.contact-aside img {
  max-width: 170px;
  height: auto;
}

.contact-aside p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.join-heading {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 24px;
  align-items: end;
}

.progress-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(23, 35, 38, 0.08);
}

.form-panel {
  padding: clamp(20px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow);
}

.form-optional-note {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(201, 155, 63, 0.35);
  border-radius: 8px;
  background: rgba(201, 155, 63, 0.1);
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.form-optional-note strong {
  color: var(--green);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
}

.field {
  min-width: 0;
}

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

.field > span {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.3;
}

.required-mark {
  color: var(--red);
}

.note {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 500;
}

input,
select {
  min-height: 46px;
  padding: 0 13px;
}

.password-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
}

.password-input-row input {
  border-radius: 7px 0 0 7px;
}

.password-toggle {
  min-height: 46px;
  width: auto;
  padding: 0 13px;
  border-radius: 0 7px 7px 0;
  border-left: 0;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
}

.form-helper-link {
  justify-self: start;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 850;
}

.field > span small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.signup-summary-card {
  align-content: center;
  gap: 6px;
}

.signup-summary-card strong {
  color: var(--green);
  font-size: 0.9rem;
}

.signup-summary-card span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.terms-toggle {
  margin-top: 18px;
}

.terms-toggle a {
  color: var(--green);
  font-weight: 850;
}

.signup-actions {
  margin-top: 20px;
}

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

.signup-path-card {
  min-height: 148px;
  padding: 18px;
  display: grid;
  gap: 8px;
  align-content: start;
  border: 1px solid rgba(7, 61, 46, 0.14);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.96);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 12px 28px rgba(23, 35, 38, 0.07);
}

body:not(.dashboard-body):not(.jobs-page) .signup-path-card,
body:not(.dashboard-body):not(.jobs-page) .signup-path-card:not(.secondary) {
  background: rgba(255, 253, 248, 0.96);
  color: var(--ink);
}

.signup-path-card span {
  color: var(--gold-dark);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.signup-path-card strong {
  color: var(--green);
  font-size: 1.05rem;
  line-height: 1.15;
}

.signup-path-card small {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.signup-path-card:hover,
.signup-path-card:focus-visible,
.signup-path-card.active {
  border-color: rgba(201, 155, 63, 0.65);
  background: linear-gradient(180deg, rgba(255, 251, 239, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: 0 16px 34px rgba(8, 50, 40, 0.11);
  outline: none;
  transform: translateY(-1px);
}

body:not(.dashboard-body):not(.jobs-page) .signup-path-card:hover,
body:not(.dashboard-body):not(.jobs-page) .signup-path-card:focus-visible,
body:not(.dashboard-body):not(.jobs-page) .signup-path-card.active {
  background: linear-gradient(180deg, rgba(255, 251, 239, 0.98), rgba(255, 255, 255, 0.98));
  color: var(--ink);
}

.form-panel-heading {
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.form-panel-heading h3 {
  margin: 0;
  color: var(--green);
  font-size: clamp(1.25rem, 2.3vw, 1.8rem);
  line-height: 1.15;
}

.form-panel-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.access-request-form[hidden] {
  display: none;
}

textarea {
  resize: vertical;
  min-height: 132px;
  padding: 13px;
  line-height: 1.45;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(12, 91, 82, 0.18);
  border-color: var(--green);
}


.toggle {
  min-height: 42px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  cursor: pointer;
}


.toggle span {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.35;
  overflow-wrap: anywhere;
}


.toggle input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--green);
}


.toggle:has(input:checked) {
  border-color: var(--green);
  background: var(--green-soft);
}

.error {
  display: none;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
}

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

.wizard-actions {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.save-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.save-status.success {
  color: var(--green-strong);
}

.save-status.error {
  color: var(--red);
}

.save-status a {
  color: var(--green-strong);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 28px clamp(18px, 4vw, 54px);
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.footer-brand {
  display: grid;
  gap: 7px;
}

.footer-brand strong {
  color: var(--green-strong);
  font-size: 0.98rem;
}

.footer-powered {
  display: inline-grid;
  grid-template-columns: 48px minmax(0, auto);
  align-items: center;
  column-gap: 10px;
  width: fit-content;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.35;
}

.footer-powered::before {
  content: "";
  grid-row: 1 / span 2;
  width: 48px;
  height: 32px;
  border-radius: 6px;
  background: #fff url("assets/aramunj-logo.webp") center / contain no-repeat;
  box-shadow: 0 0 0 1px rgba(8, 77, 50, 0.16);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 15px;
}

.site-footer a {
  min-height: 32px;
  padding-block: 4px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.registration-note {
  max-width: 780px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.dashboard-body {
  background: #f7f2e9;
}

.role-badge {
  min-height: 30px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-strong);
  font-size: 0.76rem;
  font-weight: 950;
}


.dashboard-note {
  color: var(--muted);
  line-height: 1.55;
}

.dashboard-body .button.secondary,
.dashboard-body button.secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--green-strong);
}

.dashboard-body .button.secondary:hover,
.dashboard-body button.secondary:hover {
  background: #f5efe4;
}

.dashboard-body {
  background:
    radial-gradient(circle at top right, rgba(201, 155, 63, 0.1), transparent 34rem),
    #faf7ef;
  font-size: 15px;
}

.dashboard-body .eyebrow {
  margin-bottom: 7px;
  font-size: 0.68rem;
  font-weight: 720;
}

.role-badge {
  min-height: 26px;
  padding: 0 9px;
  font-size: 0.68rem;
  font-weight: 760;
}


.dashboard-note {
  font-size: 0.9rem;
  line-height: 1.5;
}

.dashboard-body .button,
.dashboard-body button {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 720;
}

.dashboard-body .button:focus-visible,
.dashboard-body button:focus-visible {
  outline: 3px solid rgba(201, 155, 63, 0.35);
  outline-offset: 2px;
}

[hidden] {
  display: none !important;
}

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

  .primary-nav {
    display: none;
  }

  .nav-actions {
    width: auto;
    gap: 8px;
  }

  .nav-login,
  .nav-cta {
    min-height: 36px;
    padding-inline: 10px;
    font-size: 0.82rem;
  }

  .mobile-menu-toggle {
    display: grid;
  }

  .mobile-menu-panel:not([hidden]) {
    display: grid;
  }
}

@media (max-width: 900px) {
  .split,
  .join-heading,
  .contact-layout,
  .public-job-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    padding: 10px 12px;
  }

  .primary-nav {
    display: none;
  }

  .nav-actions {
    width: auto;
    gap: 8px;
  }

  .nav-login,
  .nav-cta {
    min-height: 36px;
    padding-inline: 10px;
    font-size: 0.82rem;
  }

  .mobile-menu-toggle {
    display: grid;
  }

  .mobile-menu-panel:not([hidden]) {
    display: grid;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  
  .section-inner {
    width: min(100% - 20px, 1180px);
  }

  .hero-copy {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .page-hero {
    min-height: 300px;
  }

  
  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .field-grid,
  .signup-path-grid {
    grid-template-columns: 1fr;
  }

  .signup-path-card {
    min-height: 0;
    padding: 15px;
  }

  .form-panel-heading {
    display: grid;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .button,
  button {
    width: 100%;
  }

  
  .password-toggle {
    width: auto;
  }

  .mobile-menu-toggle {
    width: 42px;
  }
}

@media (max-width: 420px) {
  .nav-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }
}

/* ZGTN member network polish */

/* ZGTN professional dashboard refresh */
.dashboard-body {
  --dash-bg: #f5f8f4;
  --dash-surface: #fffef9;
  --dash-surface-soft: #f7fbf6;
  --dash-border: rgba(8, 77, 50, 0.13);
  --dash-shadow: 0 18px 46px rgba(20, 38, 32, 0.08);
  --dash-shadow-soft: 0 10px 26px rgba(20, 38, 32, 0.055);
  background:
    radial-gradient(circle at 88% 4%, rgba(217, 165, 29, 0.12), transparent 360px),
    linear-gradient(180deg, #f7faf5 0%, var(--dash-bg) 42%, #fbf8ef 100%);
  color: #142326;
}

.dashboard-note {
  color: #596b69;
}

/* Final dashboard mobile and feed stabilization */

/* Lively member dashboard refresh */
.dashboard-body {
  --dash-sage: #eaf4ee;
  --dash-cream: #fffaf0;
  --dash-rust: #a73e2b;
  --dash-teal: #0f7568;
  --dash-gold-strong: #d19a27;
  background:
    linear-gradient(145deg, rgba(234, 244, 238, 0.92) 0%, rgba(255, 250, 240, 0.96) 48%, rgba(245, 249, 243, 0.95) 100%);
}

/* Public communications and admin publishing */

.communication-card {
  min-height: 190px;
  padding: 20px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid rgba(8, 77, 50, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 247, 0.96));
  box-shadow: 0 18px 42px rgba(20, 38, 32, 0.075);
}

.communication-card span {
  width: fit-content;
  min-height: 24px;
  padding: 4px 9px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(217, 165, 29, 0.16);
  color: #835c0b;
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.communication-card h3 {
  margin: 0;
  color: var(--green-strong);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.25;
}

.communication-card small,
.communication-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.communication-card details {
  margin-top: 4px;
  color: var(--ink);
  font-size: 0.88rem;
}

.communication-card summary {
  width: fit-content;
  cursor: pointer;
  color: var(--green);
  font-weight: 850;
}

@media (max-width: 620px) {

  
  .communication-card {
    border-radius: 14px;
  }
}

/* Canva-inspired member dashboard refresh */

/* Canva public site refresh */

/* Responsive polish: calmer public heroes and cleaner member header. */

/* ZGTN Canva polish: compact public hero and clean member navigation. */

/* Final compact type pass after the Canva-inspired layer. */

/* Network page: keep typography aligned with the compact homepage style. */

/* Site-wide ZGTN design refresh inspired by the Canva boards. */
body:not(.dashboard-body) {
  background:
    linear-gradient(180deg, rgba(236, 246, 241, 0.82), rgba(255, 253, 248, 0.96) 420px),
    #fffdf8;
  color: #13211e;
  font-size: 15px;
}

body:not(.dashboard-body):not(.jobs-page) .site-header {
  min-height: 70px;
  padding: 10px clamp(18px, 3.2vw, 48px);
  grid-template-columns: minmax(190px, 300px) minmax(0, 1fr) auto;
  gap: 14px;
  border-bottom: 1px solid rgba(7, 61, 46, 0.12);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 10px 28px rgba(8, 50, 40, 0.06);
}

body:not(.dashboard-body):not(.jobs-page) .brand {
  gap: 10px;
}

body:not(.dashboard-body):not(.jobs-page) .brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

body:not(.dashboard-body):not(.jobs-page) .brand strong {
  color: #073d2e;
  font-size: 1rem;
  letter-spacing: 0;
}

body:not(.dashboard-body):not(.jobs-page) .brand small {
  color: #5b6965;
  font-size: 0.68rem;
  line-height: 1.18;
}

body:not(.dashboard-body):not(.jobs-page) .primary-nav {
  flex-wrap: nowrap;
  gap: clamp(5px, 0.9vw, 12px);
  justify-content: center;
  white-space: nowrap;
}

body:not(.dashboard-body):not(.jobs-page) .primary-nav a {
  padding: 7px 9px;
  border-radius: 999px;
  color: #52635e;
  font-size: clamp(0.7rem, 0.82vw, 0.82rem);
  font-weight: 820;
  line-height: 1;
}

body:not(.dashboard-body):not(.jobs-page) .primary-nav a:hover,
body:not(.dashboard-body):not(.jobs-page) .primary-nav a:focus-visible {
  background: rgba(7, 92, 67, 0.08);
  color: #073d2e;
}

body:not(.dashboard-body):not(.jobs-page) .primary-nav a[aria-current="page"] {
  background: #073d2e;
  color: #fff;
}

body:not(.dashboard-body):not(.jobs-page) .nav-login,
body:not(.dashboard-body):not(.jobs-page) .nav-cta {
  min-height: 38px;
  padding-inline: 14px;
  border-radius: 9px;
  font-size: 0.82rem;
  font-weight: 850;
}

body:not(.dashboard-body):not(.jobs-page) .nav-login {
  border-color: rgba(7, 61, 46, 0.42);
  background: #fff;
  color: #073d2e;
}

body:not(.dashboard-body):not(.jobs-page) .nav-cta {
  background: linear-gradient(135deg, #073d2e, #0a6449);
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(7, 61, 46, 0.16);
}

body:not(.dashboard-body):not(.jobs-page) .page-hero {
  min-height: clamp(300px, 36vw, 430px);
  padding: clamp(40px, 7vw, 78px) 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(4, 47, 36, 0.95) 0%, rgba(8, 92, 66, 0.84) 58%, rgba(201, 155, 63, 0.36) 100%),
    url("assets/harare-cbd-evening-960.webp") center / cover;
  color: #fff;
}

body:not(.dashboard-body):not(.jobs-page) .page-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -34%;
  width: min(48vw, 560px);
  aspect-ratio: 1;
  border: 18px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

body:not(.dashboard-body):not(.jobs-page) .page-hero .section-inner {
  position: relative;
  z-index: 1;
}

body:not(.dashboard-body):not(.jobs-page) .page-hero .eyebrow {
  color: #f2c65c;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

body:not(.dashboard-body):not(.jobs-page) .page-hero h1 {
  max-width: 760px;
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3.8rem);
  font-weight: 790;
  line-height: 1.02;
  letter-spacing: 0;
}

body:not(.dashboard-body):not(.jobs-page) .page-hero .hero-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  line-height: 1.62;
}

body:not(.dashboard-body):not(.jobs-page) .section {
  padding: clamp(46px, 6vw, 78px) 0;
}


body:not(.dashboard-body):not(.jobs-page) .split h2,
body:not(.dashboard-body):not(.jobs-page) .join-heading h2 {
  color: #073d2e;
  font-size: clamp(1.35rem, 2.2vw, 2.15rem);
  font-weight: 780;
  line-height: 1.14;
  letter-spacing: 0;
}


body:not(.dashboard-body):not(.jobs-page) .registration-note {
  color: #52635e;
  font-size: 0.94rem;
  line-height: 1.65;
}


body:not(.dashboard-body):not(.jobs-page) .form-panel,
body:not(.dashboard-body):not(.jobs-page) .progress-card {
  border: 1px solid rgba(15, 80, 61, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(8, 50, 40, 0.08);
}

body:not(.dashboard-body):not(.jobs-page) .button,
body:not(.dashboard-body):not(.jobs-page) button {
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 840;
}

body:not(.dashboard-body):not(.jobs-page) .button:not(.secondary),
body:not(.dashboard-body):not(.jobs-page) button:not(.secondary) {
  background: linear-gradient(135deg, #0a573f, #073d2e);
  color: #fff;
}

body:not(.dashboard-body):not(.jobs-page) .button.secondary,
body:not(.dashboard-body):not(.jobs-page) button.secondary {
  border-color: rgba(7, 61, 46, 0.2);
  background: #fff;
  color: #073d2e;
}

body:not(.dashboard-body):not(.jobs-page) input,
body:not(.dashboard-body):not(.jobs-page) select,
body:not(.dashboard-body):not(.jobs-page) textarea {
  border-radius: 10px;
  background: #fbfdfc;
  font-size: 0.92rem;
}

body:not(.dashboard-body):not(.jobs-page) .site-footer {
  margin-top: 0;
  padding: clamp(24px, 4vw, 40px) clamp(18px, 4vw, 54px);
  border-top: 1px solid rgba(7, 61, 46, 0.12);
  background:
    linear-gradient(180deg, #fffdf8, #f3f8f5);
  color: #52635e;
}

body:not(.dashboard-body):not(.jobs-page) .site-footer a {
  color: #43514d;
  font-size: 0.8rem;
}

body:not(.dashboard-body):not(.jobs-page) .footer-brand strong {
  font-size: 1rem;
}

body:not(.dashboard-body):not(.jobs-page) .footer-powered {
  color: #073d2e;
  font-size: 0.72rem;
}

.dashboard-body {
  background:
    radial-gradient(circle at 18% 0%, rgba(221, 238, 231, 0.8), transparent 28%),
    linear-gradient(180deg, #f7fbf8, #fffdf8 42%, #f5f1e8);
}

@media (max-width: 1180px) {
  body:not(.dashboard-body):not(.jobs-page) .site-header {
    grid-template-columns: minmax(170px, 260px) minmax(0, 1fr) auto;
  }

  body:not(.dashboard-body):not(.jobs-page) .primary-nav {
    gap: 4px;
  }

  body:not(.dashboard-body):not(.jobs-page) .primary-nav a {
    padding-inline: 7px;
  }
}

@media (max-width: 980px) {
  body:not(.dashboard-body):not(.jobs-page) .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  body:not(.dashboard-body):not(.jobs-page) .nav-cta {
    max-width: 170px;
    justify-content: center;
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  body:not(.dashboard-body):not(.jobs-page) {
    font-size: 14px;
  }

  body:not(.dashboard-body):not(.jobs-page) .site-header {
    min-height: 66px;
    padding: 9px 12px;
  }

  body:not(.dashboard-body):not(.jobs-page) .brand-logo {
    width: 44px;
    height: 44px;
  }

  body:not(.dashboard-body):not(.jobs-page) .brand strong {
    font-size: 0.94rem;
  }

  body:not(.dashboard-body):not(.jobs-page) .brand small {
    max-width: 150px;
    font-size: 0.64rem;
  }

  body:not(.dashboard-body):not(.jobs-page) .nav-login {
    min-height: 34px;
    padding-inline: 10px;
    font-size: 0.76rem;
  }

  body:not(.dashboard-body):not(.jobs-page) .nav-cta {
    display: none;
  }

  body:not(.dashboard-body):not(.jobs-page) .page-hero {
    min-height: 260px;
    padding: 34px 0;
  }

  body:not(.dashboard-body):not(.jobs-page) .page-hero h1 {
    max-width: 14ch;
    font-size: clamp(1.55rem, 8vw, 2.25rem);
    line-height: 1.08;
  }

  body:not(.dashboard-body):not(.jobs-page) .page-hero .hero-copy {
    font-size: 0.88rem;
  }
}

/* Final public-page guardrails for the compact Canva-inspired refresh. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body:not(.dashboard-body):not(.jobs-page) .page-hero {
  position: relative !important;
  overflow: hidden;
}

body:not(.dashboard-body):not(.jobs-page) .page-hero::after {
  content: none !important;
  display: none !important;
}

body:not(.dashboard-body):not(.jobs-page) .page-hero h1 {
  max-width: 780px !important;
  font-size: clamp(1.65rem, 3vw, 2.9rem) !important;
  font-weight: 760 !important;
  line-height: 1.08 !important;
}

body:not(.dashboard-body):not(.jobs-page) .page-hero .hero-copy {
  max-width: 680px;
  font-size: clamp(0.92rem, 1.25vw, 1.05rem) !important;
}

body:not(.dashboard-body):not(.jobs-page) .mobile-menu-toggle {
  background: #fff;
  color: #073d2e;
}

@media (max-width: 760px) {
  body:not(.dashboard-body):not(.jobs-page) .page-hero h1 {
    max-width: 15ch !important;
    font-size: clamp(1.45rem, 7.2vw, 2.1rem) !important;
  }
}

/* Homepage development showcase: convert the partnership visual into an interactive page section. */

/* True final dashboard override: keeps account pages usable on phones after all
   page-specific styles have loaded. */
.dashboard-body,
.dashboard-body * {
  min-width: 0;
}

.dashboard-body h1,
.dashboard-body h2,
.dashboard-body h3,
.dashboard-body p,
.dashboard-body small,
.dashboard-body span,
.dashboard-body strong,
.dashboard-body a,
.dashboard-body button,
.dashboard-body label {
  overflow-wrap: anywhere;
}

@media (max-width: 820px) {
  .dashboard-body {
    font-size: 14px !important;
  }

  
  .dashboard-body .dashboard-note {
    font-size: 0.84rem !important;
    line-height: 1.48 !important;
  }
}

/* Final mobile dashboard navigation pass */

/* Keep the approved three-metric homepage strip balanced at the bottom. */
