:root {
  --ink: #14211d;
  --muted: #60706a;
  --paper: #fbfcf7;
  --surface: #fff;
  --line: #dbe3dc;
  --green: #154d3a;
  --green-2: #1d6b4d;
  --gold: #b99036;
  --clay: #b45f43;
  --blue: #285c7a;
  --shadow: 0 24px 70px rgba(20, 33, 29, 0.17);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 247, 0.91);
  border-bottom: 1px solid rgba(219, 227, 220, 0.8);
  backdrop-filter: blur(18px);
}

.brand { display: flex; align-items: center; gap: 12px; min-width: 290px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 44px;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  font-weight: 800;
}
.brand strong, .brand small { display: block; }
.brand small { margin-top: 2px; color: var(--muted); font-size: 0.78rem; }
.nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 12px; color: #3d4d47; font-size: 0.94rem; }
.nav-menu { position: relative; }
.nav-menu > button {
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  padding: 0 12px;
  color: #3d4d47;
  background: transparent;
  font-weight: 750;
  cursor: pointer;
}
.nav-menu > button::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}
.nav-menu:hover > button,
.nav-menu:focus-within > button {
  color: var(--green);
  background: #edf5ef;
}
.menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 25;
  display: grid;
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(6px);
  visibility: hidden;
  transition: 150ms ease;
}
.nav-menu:hover .menu-panel,
.nav-menu:focus-within .menu-panel {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.menu-panel a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: #31443d;
  font-weight: 700;
}
.menu-panel a:hover,
.menu-panel a:focus {
  color: #fff;
  background: var(--green);
}

.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  cursor: pointer;
}
.nav-cta, .button.primary { color: #fff; background: var(--green); }
.button.secondary { color: #fff; border-color: rgba(255, 255, 255, 0.55); background: rgba(255, 255, 255, 0.08); }
.button.ghost { color: var(--green); border-color: var(--line); background: #fff; }
.text-link {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.section-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

body.account-mode .nav,
body.account-mode .nav-cta,
body.account-mode .hero-actions,
body.account-mode .campaign-section,
body.account-mode #platform > .section-heading,
body.account-mode .auth-page,
body.account-mode .account-type-grid,
body.account-mode .pathway-switch,
body.account-mode .platform-grid,
body.account-mode #membership,
body.account-mode #sponsorship,
body.account-mode #investment,
body.account-mode #partnership {
  display: none;
}

body.account-mode .hero {
  min-height: 360px;
  padding-bottom: 120px;
}

body.account-mode #platform {
  padding-top: clamp(28px, 5vw, 56px);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 6vw, 80px);
  overflow: hidden;
}
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media {
  background:
    radial-gradient(circle at 78% 34%, rgba(185, 144, 54, 0.45), transparent 34%),
    linear-gradient(135deg, #0d352b, #285c7a 54%, #b99036);
  transform: scale(1.01);
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 900ms ease;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(9, 36, 28, 0.97) 0%, rgba(16, 64, 48, 0.8) 43%, rgba(16, 64, 48, 0.16) 74%);
}
.hero-slide.active { opacity: 1; }
.hero-overlay { background: linear-gradient(0deg, rgba(20, 33, 29, 0.2), rgba(20, 33, 29, 0)); }
.hero-content { position: relative; z-index: 1; width: min(820px, 100%); color: #fff; }
.eyebrow { margin: 0 0 12px; color: var(--gold); font-size: 0.76rem; font-weight: 850; letter-spacing: 0; text-transform: uppercase; }
.hero h1 { margin: 0; font-size: 5.6rem; line-height: 0.95; letter-spacing: 0; }
.hero-copy { max-width: 640px; margin: 24px 0 0; color: rgba(255, 255, 255, 0.86); font-size: 1.3rem; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.slide-dots {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.slide-dot {
  width: 36px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}
.slide-dot.active {
  border-color: #fff;
  background: #fff;
}
.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: 28px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 1px;
  width: min(530px, calc(100% - 36px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}
.hero-panel div { padding: 18px; color: rgba(255, 255, 255, 0.78); background: rgba(255, 255, 255, 0.08); }
.metric { display: block; color: #fff; font-size: 1.35rem; font-weight: 850; }

.section, .band { padding: clamp(56px, 8vw, 104px) clamp(18px, 6vw, 80px); }
.band { background: #fff; }
.campaign-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(48px, 7vw, 88px) clamp(18px, 6vw, 80px);
  background: #f3f7f1;
}
.campaign-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.65;
}
.campaign-card {
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(20, 33, 29, 0.1);
}
.campaign-topline,
.campaign-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.campaign-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  text-transform: uppercase;
}
.campaign-topline strong {
  display: block;
  font-size: 1.6rem;
}
.campaign-progress {
  height: 18px;
  margin: 24px 0 18px;
  overflow: hidden;
  border-radius: 999px;
  background: #dce7df;
}
.campaign-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transition: width 450ms ease;
}
.campaign-meta {
  color: var(--muted);
  line-height: 1.45;
}
.campaign-meta strong {
  display: block;
  color: var(--ink);
}
.webhook-status {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 14px 16px;
  border: 1px solid #cfe0d3;
  border-radius: 8px;
  background: #f2faf4;
}
.webhook-status strong,
.webhook-status span {
  display: block;
}
.webhook-status span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.9rem;
}
.section-heading { max-width: 760px; margin-bottom: 26px; }
h2, h3, p { overflow-wrap: anywhere; }
h2 { margin: 0; font-size: 3.2rem; line-height: 1; }
h3 { margin: 0; }
.intro { background: linear-gradient(180deg, #fbfcf7, #eef5ef); }
.account-access,
.auth-page {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 16px;
  margin-bottom: 22px;
}
.auth-page[hidden] { display: none; }
.auth-page {
  grid-template-columns: minmax(280px, 720px);
  justify-content: center;
}
.auth-form {
  width: 100%;
}
.standalone-form {
  margin-top: 28px;
}
.access-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(20, 33, 29, 0.07);
}
.access-form .form-head p {
  margin-bottom: 0;
}
.compact {
  margin-top: 0;
}
.activation-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}
.signup-panel[hidden] { display: none; }
.account-type-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin: 22px 0;
}
.account-type-card:not(.active) { display: none; }
.account-type-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(20, 33, 29, 0.07);
}
.account-type-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.account-type-card .button,
.section-heading .button,
.split .button {
  justify-self: start;
  margin-top: auto;
}
.member-dashboard {
  margin: 0 0 22px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid #cfe0d3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(20, 33, 29, 0.08);
}
.member-dashboard[hidden] { display: none; }
.dashboard-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.dashboard-head p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.dashboard-grid div {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf5;
}
.dashboard-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}
.dashboard-grid strong {
  display: block;
  overflow-wrap: anywhere;
}
.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.dashboard-commitment {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 14px;
  margin-top: 18px;
}
.commitment-tool,
.review-tool,
.commitment-table-wrap {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.commitment-tool .button {
  margin-top: 18px;
}
.review-tool ol {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.75;
}
.commitment-table-wrap {
  margin-top: 14px;
  overflow-x: auto;
}
.commitment-table-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.commitment-total {
  text-align: right;
}
.commitment-total span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}
.commitment-total strong {
  display: block;
  margin-top: 4px;
  color: var(--green);
  font-size: 1.45rem;
}
.commitment-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 0.92rem;
}
.commitment-table th,
.commitment-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.commitment-table th {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.pathway-switch {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.pathway-tab { min-height: 44px; border: 0; border-radius: 6px; color: var(--muted); background: transparent; font-weight: 750; cursor: pointer; }
.pathway-tab.active { color: #fff; background: var(--green); }
.platform-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.8fr); gap: 18px; align-items: start; }
.workspace-form, .insight-panel > div, .feature-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 38px rgba(20, 33, 29, 0.07);
}
.workspace-form { padding: clamp(18px, 3vw, 32px); }
.form-head p { max-width: 760px; color: var(--muted); line-height: 1.6; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 24px; }
label { display: grid; gap: 8px; color: #32433d; font-size: 0.92rem; font-weight: 720; }
.wide { grid-column: 1 / -1; }
input, select, textarea { width: 100%; border: 1px solid #cfdad2; border-radius: 8px; padding: 12px 13px; color: var(--ink); background: #fff; outline: none; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--green-2); box-shadow: 0 0 0 4px rgba(29, 107, 77, 0.12); }
.checks { display: grid; gap: 10px; margin-top: 18px; }
.checks label { grid-template-columns: 18px 1fr; align-items: start; color: var(--muted); font-weight: 650; line-height: 1.45; }
.checks input { width: 18px; height: 18px; margin: 2px 0 0; }
.form-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.fine-print { margin: 20px 0 0; color: var(--muted); font-size: 0.85rem; line-height: 1.55; }

.insight-panel { display: grid; gap: 14px; }
.insight-panel > div { padding: 22px; }
.status-dot { display: inline-block; width: 10px; height: 10px; margin-right: 8px; border-radius: 99px; background: var(--green-2); box-shadow: 0 0 0 5px rgba(29, 107, 77, 0.12); }
.status-card p, .queue-card li, .calc-card span { color: var(--muted); }
.slider-row, .preview-numbers { display: flex; justify-content: space-between; gap: 16px; }
.slider-row { margin-top: 18px; font-weight: 750; }
#commitmentRange { accent-color: var(--green); margin: 16px 0; padding: 0; }
.preview-numbers { flex-wrap: wrap; }
.preview-numbers strong { display: block; color: var(--ink); font-size: 1.25rem; }
.queue-card ol { margin: 16px 0 0; padding-left: 20px; line-height: 1.8; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-grid article { padding: 24px; }
.feature-icon { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 18px; border-radius: 8px; color: #fff; background: var(--blue); font-weight: 850; }
.feature-grid p, .split p, .investment-band p { color: var(--muted); line-height: 1.65; }
.split { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr); gap: clamp(24px, 6vw, 80px); align-items: center; }
.tier-grid, .partner-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.tier { min-height: 132px; border: 1px solid var(--line); border-radius: 8px; background: #fff; text-align: left; padding: 20px; cursor: pointer; }
.tier strong, .tier span { display: block; }
.tier strong { font-size: 1.2rem; }
.tier span { margin-top: 12px; color: var(--green); font-size: 1.7rem; font-weight: 850; }
.tier.active { color: #fff; background: var(--green); border-color: var(--green); }
.tier.active span { color: #fff; }

.investment-band { background: #102c25; color: #fff; }
.investment-band .section-heading p { color: rgba(255, 255, 255, 0.74); }
.investment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 8px; background: rgba(255, 255, 255, 0.16); }
.investment-grid div { min-height: 170px; padding: 22px; background: rgba(255, 255, 255, 0.08); }
.investment-grid strong, .investment-grid span { display: block; }
.investment-grid span { margin-top: 12px; color: rgba(255, 255, 255, 0.72); line-height: 1.55; }
.partner-list span { display: flex; align-items: center; min-height: 64px; padding: 16px; border-left: 5px solid var(--clay); border-radius: 8px; background: #fff; box-shadow: 0 12px 36px rgba(20, 33, 29, 0.07); font-weight: 750; }

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: min(360px, calc(100vw - 36px));
  padding: 14px 16px;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: 180ms ease;
}
.toast.show { opacity: 1; transform: translateY(0); }
.footer { display: flex; justify-content: space-between; gap: 16px; padding: 28px clamp(18px, 6vw, 80px); color: rgba(255, 255, 255, 0.78); background: #0b211b; }
.benefits-hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: clamp(64px, 10vw, 130px) clamp(18px, 6vw, 80px);
  background: linear-gradient(135deg, #f4f8f1, #ffffff 54%, #eef5ef);
}
.benefits-hero > div {
  width: min(840px, 100%);
}
.benefits-hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.96;
}
.benefits-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.65;
}
.benefits-hero .button {
  margin-top: 14px;
}
.benefits-page {
  align-items: start;
}
.benefits-page h2 {
  margin: 14px 0 24px;
  color: var(--green);
  font-size: clamp(1.8rem, 4vw, 3rem);
}
.benefits-content {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}
.benefits-content section {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(20, 33, 29, 0.07);
}
.benefits-content h3 {
  color: var(--green);
}
.benefits-content ul {
  margin: 14px 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.7;
}
.benefits-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}
.contact-form .button {
  justify-self: start;
}
.qr-layout {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(280px, 1fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: start;
  margin-top: 34px;
}
.qr-display,
.qr-controls {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(20, 33, 29, 0.07);
}
.qr-display {
  display: grid;
  justify-items: center;
  text-align: center;
}
.qr-display img {
  width: min(100%, 340px);
  aspect-ratio: 1;
  border: 10px solid #fff;
}
.qr-caption {
  margin: 14px 0 0;
  color: var(--green);
  font-weight: 850;
}
.qr-controls label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-weight: 800;
}
.campaign-offer-page > div {
  width: min(780px, 100%);
}
.campaign-offer-form {
  margin-top: 30px;
}
.campaign-screen-body {
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  background: #071d18;
}
.campaign-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(7, 29, 24, 0.96), rgba(21, 77, 58, 0.94) 48%, rgba(185, 144, 54, 0.78)),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.16), transparent 34%);
}
.campaign-screen-panel {
  width: min(1500px, 100%);
}
.campaign-screen-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.campaign-screen h1 {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 8.8rem);
  line-height: 0.92;
}
.screen-link {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}
.screen-raised {
  margin-top: clamp(34px, 6vw, 86px);
}
.screen-raised span,
.screen-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  text-transform: uppercase;
}
.screen-raised strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(4rem, 13vw, 14rem);
  line-height: 0.9;
}
.screen-progress-wrap {
  height: clamp(36px, 5vw, 74px);
  margin: clamp(28px, 5vw, 64px) 0 clamp(24px, 4vw, 52px);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}
.screen-progress-wrap span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffffff, #f1c75a);
  box-shadow: 0 0 42px rgba(241, 199, 90, 0.38);
  transition: width 600ms ease;
}
.screen-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.screen-stats div {
  min-height: 150px;
  padding: clamp(18px, 2.6vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}
.screen-stats strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(1.8rem, 3.4vw, 4rem);
}
.screen-sync {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.6vw, 1.4rem);
}

@media (max-width: 920px) {
  .topbar { align-items: flex-start; flex-direction: column; }
  .nav-cta { display: none; }
  .nav { justify-content: flex-start; }
  .menu-panel { position: static; display: none; min-width: 100%; margin-top: 4px; box-shadow: none; opacity: 1; transform: none; visibility: visible; }
  .nav-menu:hover .menu-panel,
  .nav-menu:focus-within .menu-panel { display: grid; }
  .hero { min-height: 760px; align-items: start; }
  .hero h1 { font-size: 4.2rem; }
  .hero-copy { font-size: 1.15rem; }
  h2 { font-size: 2.55rem; }
  .hero-panel, .campaign-section, .account-access, .auth-page, .dashboard-grid, .dashboard-commitment, .platform-grid, .split, .investment-grid, .qr-layout, .screen-stats { grid-template-columns: 1fr; }
  .campaign-screen-head { flex-direction: column; }
  .hero-panel { left: 18px; right: 18px; }
  .pathway-switch, .account-type-grid, .feature-grid, .tier-grid, .partner-list { grid-template-columns: repeat(2, 1fr); }
}

@media print {
  .topbar,
  .footer,
  .qr-controls,
  .benefits-hero > div > p:not(.eyebrow) {
    display: none;
  }
  .benefits-hero {
    min-height: auto;
    padding: 24px;
    background: #fff;
  }
  .benefits-hero > div {
    width: 100%;
  }
  .qr-layout {
    display: block;
    margin-top: 24px;
  }
  .qr-display {
    box-shadow: none;
    border: 0;
  }
  .qr-display img {
    width: 520px;
    max-width: 86vw;
  }
}

@media (max-width: 620px) {
  .hero { min-height: 820px; }
  .hero h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  .hero-panel, .campaign-topline, .campaign-meta, .form-grid, .pathway-switch, .account-type-grid, .feature-grid, .tier-grid, .partner-list { grid-template-columns: 1fr; }
  .hero-panel { bottom: 18px; }
  .footer, .slider-row { flex-direction: column; }
}
