:root {
  color-scheme: light;
  --forest: #153f2e;
  --forest-2: #0f2f23;
  --app-green: #1c5a1a;
  --app-green-dark: #11420f;
  --deep-green: #326813;
  --bright-green: #9fc77d;
  --canva-gold: #d4a52a;
  --canva-red: #9f3047;
  --leaf: #2f7d4f;
  --mint: #e8f4eb;
  --gold: #f2b84b;
  --gold-soft: #fff3cf;
  --red: #bf4438;
  --red-soft: #ffe8e5;
  --blue: #2f6f95;
  --blue-soft: #e7f3fa;
  --ink: #17251f;
  --muted: #5e7168;
  --line: #d9e5de;
  --surface: #ffffff;
  --page: #f7f8f4;
  --shadow: 0 18px 42px rgba(18, 56, 40, 0.12);
  --shadow-strong: 0 24px 70px rgba(18, 56, 40, 0.16);
  --radius: 8px;
  --focus: 0 0 0 4px rgba(242, 184, 75, 0.45);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--page);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  line-height: 1.45;
}

body.offline .app-header::after {
  content: "Offline shell";
  position: absolute;
  right: 1rem;
  bottom: -0.75rem;
  background: var(--gold-soft);
  border: 1px solid #e3c36d;
  color: #614914;
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 800;
}

a {
  color: inherit;
}

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

button,
a.btn {
  min-height: 48px;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 20;
  transform: translateY(-180%);
  background: var(--forest);
  color: white;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

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

#legacy-contracts {
  display: none;
}

.pwa-root {
  min-height: 100vh;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 96px;
  min-height: 0;
  padding: 0.25rem clamp(1rem, 3.2vw, 3rem);
  color: #ffffff;
  background: linear-gradient(90deg, var(--app-green), var(--app-green-dark));
  border-bottom: 0;
  box-shadow: 0 10px 26px rgba(15, 47, 35, 0.18);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  height: 100%;
  text-decoration: none;
  min-width: 0;
}

.brand-lockup img {
  flex: 0 0 auto;
  width: auto;
  height: 87px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

.brand-name,
.brand-context {
  margin: 0;
}

.brand-name {
  color: #ffffff;
  font-size: 1.32rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  transform: translateY(0.08rem);
}

.brand-context {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 850;
}

.public-nav {
  display: none;
  align-items: center;
  gap: 0.45rem;
  height: 100%;
}

.public-nav.open {
  display: grid;
  position: absolute;
  top: calc(100% - 0.35rem);
  left: 1rem;
  right: 1rem;
  gap: 0.35rem;
  padding: 0.75rem;
  background: #ffffff;
  border: 1px solid rgba(21, 63, 46, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.public-nav.open .btn.navlink,
.public-nav.open .btn.small {
  justify-content: flex-start;
  width: 100%;
  color: var(--forest);
}

.menu-line {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
  border-radius: 2px;
}

.ui-icon,
.topic-svg,
.step-icon {
  flex: 0 0 auto;
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topic-svg {
  width: 1.65rem;
  height: 1.65rem;
}

.topic-icon-image {
  display: block;
  width: 2.15rem;
  height: 2.15rem;
  object-fit: contain;
}

.step-icon {
  width: 1.45rem;
  height: 1.45rem;
}

.route-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(0.9rem, 2.4vw, 1.6rem);
  padding-bottom: 6.5rem;
}

.hero-panel {
  display: grid;
  gap: 1.2rem;
  align-items: center;
  padding: clamp(1.1rem, 4vw, 2.2rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy-wrap {
  min-width: 0;
}

.hero-panel h1,
.auth-card h1,
.modal-like-card h1 {
  margin: 0.65rem 0 0.65rem;
  max-width: 760px;
  color: var(--forest-2);
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.lede {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions,
.button-row,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.72rem 1rem;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.btn.icon-menu {
  width: 48px;
  padding: 0;
  color: #ffffff;
  background: transparent;
  border-color: transparent;
  font-size: 1.8rem;
  line-height: 1;
}

.app-back {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  text-decoration: none;
  font-size: 2.2rem;
  font-weight: 700;
}

.appbar-title {
  flex: 1;
  color: #ffffff;
  font-size: 1.05rem;
}

.secure-marker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 850;
}

.secure-marker::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 45% 45%;
}

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

.btn.primary {
  background: var(--leaf);
  color: white;
}

.btn.secondary {
  background: white;
  color: var(--forest);
  border-color: #afc9b9;
}

.btn.ghost {
  background: transparent;
  color: var(--forest);
  border-color: transparent;
}

.btn.navlink,
.btn.small {
  min-height: 40px;
  padding: 0.48rem 0.7rem;
  font-size: 0.9rem;
  line-height: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  border-radius: 999px;
  padding: 0.28rem 0.58rem;
  background: var(--mint);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 900;
}

.badge.gold {
  background: var(--gold-soft);
  color: #684b10;
}

.badge.red {
  background: var(--red-soft);
  color: #842a22;
}

.content-band,
.split-grid,
.choice-grid,
.country-grid,
.plan-grid,
.dashboard-grid,
.organization-grid,
.archive-list,
.preview-section-grid {
  margin-top: 1rem;
}

.content-band h2,
.form-card h2,
.card h2,
.info-card h2 {
  margin: 0 0 0.75rem;
  color: var(--forest-2);
  font-size: 1.25rem;
  letter-spacing: 0;
}

.choice-grid,
.country-grid,
.dashboard-grid,
.organization-grid,
.archive-list,
.preview-section-grid {
  display: grid;
  gap: 0.9rem;
}

.split-grid,
.report-reader-layout {
  display: grid;
  gap: 1rem;
}

.plan-grid {
  display: grid;
  gap: 0.9rem;
}

.card,
.choice-card,
.country-card,
.plan-card,
.form-card,
.auth-card,
.order-card,
.privacy-card,
.profile-side,
.dashboard-card,
.upgrade-card,
.archive-item,
.report-card,
.report-inbox-panel,
.preview-section,
.preview-boundary,
.preview-sources,
.preview-cta,
.info-card,
.context-panel,
.modal-like-card,
.state-card,
.personalized-card,
.personalized-action-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 7px 18px rgba(18, 56, 40, 0.06);
}

.personalized-demo {
  display: grid;
  gap: 1rem;
}

.personalized-summary-grid,
.personalized-grid,
.personalized-action-grid,
.action-meta-grid {
  display: grid;
  gap: 0.85rem;
  min-width: 0;
}

.personalized-card,
.personalized-action-card {
  display: grid;
  gap: 0.8rem;
}

.personalized-card h2,
.personalized-action-card h3,
.personalized-reader h2,
.section-heading h2 {
  margin: 0;
  color: var(--forest-2);
  letter-spacing: 0;
}

.personalized-card h2,
.personalized-reader h2,
.section-heading h2 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.personalized-action-card h3,
.reader-section h3,
.personalized-card h3 {
  margin: 0;
  color: var(--forest-2);
  font-size: 1rem;
  line-height: 1.25;
}

.personalized-reader {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.section-heading {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}

.personalized-action-card {
  background: #fbfdfb;
  border-color: #bdd4c6;
}

.personalized-action-card p,
.personalized-card p {
  margin: 0;
}

.action-meta-grid {
  padding: 0.75rem;
  background: #f4f8f5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.caveat-note {
  padding: 0.75rem;
  background: var(--gold-soft);
  border: 1px solid #e3c36d;
  border-radius: var(--radius);
  color: #60450d;
  font-weight: 750;
}

.missing-card {
  border-color: #e3c36d;
}

.reader-section,
.archive-row {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
  padding: 0.75rem;
  background: #fbfdfb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.archive-row span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.choice-card h3,
.country-card h3,
.plan-card h3 {
  margin: 0.75rem 0 0.35rem;
  color: var(--forest-2);
}

.choice-card p,
.country-card p,
.plan-card p,
.dashboard-card p,
.info-card p {
  color: var(--muted);
}

.option-button.selected,
.entitlement-grid,
.outbox-list {
  min-width: 0;
}

.plan-card.recommended {
  border-color: var(--gold);
  box-shadow: 0 11px 28px rgba(242, 184, 75, 0.2);
}

.gated-plan {
  border-color: #b9cfc2;
  background: #fbfdfb;
}

.price {
  color: var(--forest);
  font-weight: 950;
  font-size: 1.35rem;
}

.clean-list {
  margin: 0.75rem 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.field-grid {
  display: grid;
  gap: 0.8rem;
}

.field-card {
  display: grid;
  align-self: start;
  gap: 0.35rem;
  min-width: 0;
  color: var(--forest-2);
}

.field-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.field-card-head {
  display: flex;
  min-height: 1.35rem;
  align-items: baseline;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.field-card-head strong {
  color: var(--forest-2);
}

.field-card input,
.field-card select,
.field-card textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #b9cfc2;
  border-radius: var(--radius);
  padding: 0.72rem 0.8rem;
  background: white;
  color: var(--ink);
}

.field-card textarea {
  min-height: 96px;
  resize: vertical;
}

.error-summary,
.review-note,
.success-note {
  display: grid;
  gap: 0.45rem;
  margin: 0.85rem 0;
  padding: 0.85rem;
  border-radius: var(--radius);
}

.error-summary {
  border: 1px solid #d87970;
  background: var(--red-soft);
  color: #6e1f18;
}

.review-note {
  border: 1px solid #e3c36d;
  background: var(--gold-soft);
  color: #60450d;
}

.success-note {
  border: 1px solid #9ac8aa;
  background: var(--mint);
  color: var(--forest);
}

.choice-row,
.consent-row,
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  min-height: 48px;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.checkbox-row {
  align-items: center;
  min-height: 76px;
}

.choice-row.selected {
  border-color: var(--leaf);
  background: #f0f8f2;
}

.choice-row input,
.consent-row input,
.checkbox-row input {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  margin-top: -0.12rem;
}

.checkbox-row input {
  width: 38px;
  height: 38px;
  margin-top: 0;
}

.checkbox-row img.registration-option-icon {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  min-width: 58px;
  max-width: 58px;
  min-height: 58px;
  max-height: 58px;
  object-fit: contain;
}

.conditional-write-in {
  margin-top: 0.65rem;
}

.conditional-write-in[hidden] {
  display: none;
}

.checkbox-label {
  align-self: center;
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-weight: 750;
}

.geo-location-field {
  gap: 0.65rem;
  align-self: start;
}

.geo-location-label {
  display: grid;
  gap: 0.45rem;
}

.geo-location-label input {
  width: 100%;
  min-height: 52px;
}

.geo-location-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.geo-location-controls .btn {
  min-width: 168px;
}

.geo-location-status {
  flex: 1 1 220px;
  min-width: min(100%, 220px);
  color: var(--muted);
  font-weight: 750;
  line-height: 1.35;
}

.geo-location-status.pending {
  color: #6a4a09;
}

.geo-location-status.success {
  color: var(--leaf);
}

.geo-location-status.error {
  color: var(--berry);
}

.checkbox-grid {
  display: grid;
  gap: 0.55rem;
}

.progress-shell {
  margin: 0.85rem 0;
}

.progress-track {
  height: 10px;
  overflow: hidden;
  background: #dce8df;
  border-radius: 999px;
}

.progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--leaf), var(--gold));
}

.map-panel {
  position: relative;
  display: grid;
  min-height: 240px;
  padding: 1rem;
  overflow: hidden;
  background: linear-gradient(180deg, #edf6f8 0%, #d8ebef 100%);
  border: 1px solid #b8d2d6;
  border-radius: var(--radius);
}

.world-map {
  align-self: center;
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
}

.world-country {
  fill: #c8cdc7;
  stroke: #ffffff;
  stroke-linejoin: round;
  stroke-width: 0.55;
}

.world-country.active {
  fill: var(--leaf);
}

.world-country.pending {
  fill: var(--gold);
}

.world-map-marker circle {
  fill: #ffffff;
  stroke: var(--gold);
  stroke-width: 5;
}

.world-map-marker.active circle {
  stroke: var(--leaf);
}

.world-map-marker text {
  fill: var(--forest-2);
  font-size: 18px;
  font-weight: 900;
  paint-order: stroke;
  stroke: #ffffff;
  stroke-width: 4px;
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-self: end;
  margin-top: 0.7rem;
  color: var(--forest-2);
  font-size: 0.78rem;
  font-weight: 850;
}

.map-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.map-swatch {
  width: 0.72rem;
  height: 0.72rem;
  border: 1px solid rgba(11, 54, 36, 0.18);
  border-radius: 50%;
  background: #c8cdc7;
}

.map-swatch.active {
  background: var(--leaf);
}

.map-swatch.pending {
  background: var(--gold);
}

.metric-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
  padding: 0.62rem 0;
  border-bottom: 1px solid var(--line);
}

.metric-line:last-child {
  border-bottom: 0;
}

.report-meta {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: #f4f8f5;
  border-radius: var(--radius);
}

.report-list-item {
  display: grid;
  gap: 0.2rem;
  width: 100%;
  min-height: 72px;
  margin-bottom: 0.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem;
  background: white;
  color: var(--ink);
  text-align: left;
}

.report-list-item.selected {
  border-color: var(--leaf);
  background: #f0f8f2;
}

.feedback-panel {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.national-preview {
  display: grid;
  gap: 1rem;
}

.preview-summary-grid {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  padding: 0.75rem;
  background: #f4f8f5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.preview-boundary {
  display: grid;
  gap: 0.25rem;
}

.preview-section {
  display: grid;
  gap: 0.85rem;
}

.preview-section h2,
.preview-sources h2,
.preview-cta h2,
.preview-boundary h2 {
  margin: 0;
  color: var(--forest-2);
  font-size: 1.2rem;
  line-height: 1.18;
}

.preview-section h3 {
  margin: 0;
  color: var(--forest-2);
  font-size: 1rem;
}

.preview-section-meta,
.preview-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.7rem;
  align-items: center;
  min-width: 0;
}

.preview-section-meta {
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line);
}

.preview-item {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfb;
}

.preview-item p {
  margin: 0;
}

.preview-item-meta {
  color: var(--muted);
  font-size: 0.86rem;
}

.source-link-row,
.source-chip,
.preview-section-meta .muted {
  overflow-wrap: anywhere;
}

.preview-missing {
  display: grid;
  gap: 0.4rem;
  padding: 0.8rem;
  border: 1px solid #e3c36d;
  border-radius: var(--radius);
  background: var(--gold-soft);
}

.caveat-section {
  border-color: #e3c36d;
}

.source-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.source-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid #afc9b9;
  border-radius: 999px;
  padding: 0.32rem 0.58rem;
  background: #f4f8f5;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 850;
}

.preview-cta {
  display: grid;
  gap: 0.85rem;
  border-color: #afc9b9;
}

.preview-cta-grid {
  display: grid;
  gap: 0.7rem;
}

.preview-cta-item {
  display: grid;
  gap: 0.25rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f4f8f5;
}

.preview-cta-item span {
  color: var(--muted);
}

.action-list {
  display: grid;
  gap: 0.7rem;
}

.action-item {
  display: grid;
  gap: 0.2rem;
  min-height: 64px;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfb;
}

.upgrade-card {
  color: white;
  background: linear-gradient(135deg, #153f2e, #2f7d4f);
  border-color: transparent;
}

.upgrade-card h2,
.upgrade-card p {
  color: white;
}

.upgrade-card .btn.ghost {
  color: white;
}

.auth-card,
.modal-like-card {
  width: min(680px, 100%);
  margin: 1.5rem auto 0;
}

.otp-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 1rem 0;
}

.otp-row input {
  min-width: 0;
  min-height: 52px;
  border: 1px solid #b9cfc2;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 900;
}

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12;
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.25rem;
  padding: 0.45rem;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 28px rgba(18, 56, 40, 0.11);
}

.bottom-nav.visible {
  display: grid;
}

.btn.nav-item {
  min-width: 0;
  min-height: 52px;
  padding: 0.42rem 0.25rem;
  background: transparent;
  color: var(--muted);
  border-color: transparent;
  font-size: 0.86rem;
}

.btn.nav-item.active {
  background: var(--mint);
  color: var(--forest);
}

.muted {
  color: var(--muted);
}

.public-page {
  display: grid;
  gap: clamp(1.3rem, 3vw, 2.2rem);
  color: var(--ink);
}

.public-title {
  display: grid;
  gap: 0.55rem;
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}

.public-title h1,
.public-title h2,
.public-section h2,
.public-section h3,
.public-tier h3,
.public-report-hero h1 {
  margin: 0;
  color: var(--forest-2);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.04;
}

.public-title h1,
.public-report-hero h1 {
  font-size: 2.25rem;
}

.public-title h2,
.public-section h2 {
  font-size: 1.55rem;
}

.public-title p,
.narrow-copy,
.story-panel {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 560;
}

.public-note {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-weight: 800;
}

.public-hero,
.public-section,
.public-report-hero {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
}

.public-hero {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  overflow: hidden;
  min-height: auto;
  scroll-margin-top: 96px;
  padding: clamp(1rem, 3vw, 1.4rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.public-hero-copy {
  display: grid;
  gap: clamp(1rem, 2.4vw, 1.5rem);
  min-width: 0;
  padding: 0;
}

.public-hero-support {
  display: grid;
  gap: 0.85rem;
  min-width: 0;
}

.public-hero-visual .map-panel {
  margin: 0;
  min-height: 260px;
  box-shadow: none;
}

.country-choice-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.8rem;
  align-items: stretch;
  width: 100%;
  margin: 0 auto;
}

.country-choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  min-height: 82px;
  padding: 0.9rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 9px 26px rgba(18, 56, 40, 0.08);
  text-decoration: none;
}

.country-choice:hover {
  border-color: rgba(47, 125, 79, 0.42);
  transform: translateY(-1px);
}

.country-choice strong {
  display: block;
  color: var(--forest-2);
  font-size: 1.05rem;
  line-height: 1.15;
}

.country-choice p {
  margin: 0;
  color: var(--muted);
}

.country-status,
.country-cta {
  width: fit-content;
  max-width: 100%;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.15;
}

.country-status {
  grid-column: 2;
  grid-row: 2;
  padding: 0.4rem 0.55rem;
  color: var(--forest);
  background: #e6f2dc;
  border-radius: 999px;
}

.country-cta {
  grid-column: 3;
  grid-row: 1 / span 2;
  margin-top: auto;
  color: var(--forest);
  font-size: 1.5rem;
}

.country-emblem {
  grid-row: 1 / span 2;
  width: 60px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.country-emblem.uga {
  background:
    radial-gradient(circle at 50% 50%, #ffffff 0 13%, transparent 14%),
    linear-gradient(to bottom, #000000 0 16.66%, #f6d313 16.66% 33.33%, #d71920 33.33% 50%, #000000 50% 66.66%, #f6d313 66.66% 83.33%, #d71920 83.33% 100%);
}

.country-emblem.has-image {
  display: grid;
  place-items: center;
  background: #ffffff;
}

.country-emblem.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-emblem.phl.has-image img {
  object-fit: contain;
}

.country-choice.waitlist img {
  width: clamp(78px, 24vw, 150px);
  height: clamp(78px, 24vw, 150px);
}

.country-request-asset {
  width: 60px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.country-request-globe {
  width: 123%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.country-choice.waitlist .country-request-globe {
  width: 123%;
  height: auto;
}

.agriculture-landscape {
  position: relative;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(47, 125, 79, 0.18);
  border-radius: var(--radius);
  background: #dcead6;
}

.agriculture-landscape-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% center;
}

.trust-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 0.55rem;
  align-items: center;
  text-align: center;
  margin: -2rem 0.8rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(47, 125, 79, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(18, 56, 40, 0.12);
}

.hero-report-card {
  display: grid;
  gap: 0.55rem;
  width: min(100%, 430px);
  justify-self: end;
  margin-top: -0.2rem;
  padding: 1rem;
  background: #fffdf4;
  border: 1px solid #edd485;
  border-radius: var(--radius);
  box-shadow: 0 16px 32px rgba(18, 56, 40, 0.1);
}

.hero-report-card p {
  margin: 0;
  color: var(--muted);
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--deep-green);
  border: 2px solid currentColor;
  border-radius: var(--radius);
  font-weight: 950;
}

.trust-icon .ui-icon {
  width: 34px;
  height: 34px;
}

.sponsored-cohort-section {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  padding: clamp(1rem, 3vw, 1.35rem);
  background: #f3f8ed;
  border: 1px solid #d8e8d0;
  border-radius: var(--radius);
}

.sponsored-cohort-icon {
  display: grid;
  place-items: center;
  width: 81px;
  height: 81px;
  color: var(--deep-green);
  background: #ffffff;
  border: 1px solid rgba(47, 125, 79, 0.28);
  border-radius: var(--radius);
  overflow: hidden;
}

.sponsored-cohort-icon img {
  display: block;
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.sponsored-cohort-copy {
  display: grid;
  gap: 0.25rem;
}

.sponsored-cohort-copy h2,
.sponsored-cohort-copy p {
  margin: 0;
}

.sponsored-cohort-copy h2 {
  color: var(--forest-2);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.sponsored-cohort-copy p {
  color: var(--muted);
  font-weight: 700;
}

.sponsored-cohort-form {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.75rem;
  align-items: end;
}

.story-panel {
  display: grid;
  gap: 1.15rem;
  width: 100%;
  max-width: none;
  padding: clamp(1.1rem, 2.4vw, 1.65rem);
  background: #eff7e9;
  border: 1px solid #d8e9ce;
  border-radius: var(--radius);
  box-shadow: 0 18px 34px rgba(18, 56, 40, 0.08);
}

.story-panel p {
  margin: 0;
}

.story-panel > h3 {
  justify-self: center;
  text-align: center;
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
}

.story-steps,
.problem-solution {
  display: grid;
  gap: 0.85rem;
}

.story-step,
.problem-solution .info-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  padding: 0.9rem 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.problem-solution .info-card {
  grid-template-columns: auto minmax(0, 1fr);
  padding: 0.55rem 0;
}

.story-step p,
.problem-solution .info-card p {
  margin: 0;
  color: var(--muted);
}

.story-step p {
  padding-left: 0;
}

.problem-solution .info-card p {
  grid-column: 2;
}

.story-step strong {
  color: var(--forest-2);
}

.story-step-heading {
  display: grid;
  grid-template-columns: auto clamp(68px, 7vw, 88px) minmax(0, 1fr);
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  min-height: clamp(76px, 8vw, 96px);
}

.story-step-heading strong {
  min-width: 0;
  align-self: center;
  font-size: clamp(1.1rem, 1.4vw, 1.32rem);
}

.story-icon,
.step-icon-badge {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--deep-green);
  font-weight: 950;
}

.step-number {
  flex: 0 0 auto;
  width: 1.45rem;
  height: 1.45rem;
  display: grid;
  place-items: center;
  color: var(--deep-green);
  background: #e6f2dc;
  border: 1px solid #c7dfbd;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
}

.step-icon-badge {
  flex: 0 0 auto;
  width: clamp(68px, 7vw, 88px);
  height: clamp(68px, 7vw, 88px);
}

.step-icon-badge.brand,
.step-icon-badge.asset {
  width: clamp(68px, 7vw, 88px);
  height: clamp(68px, 7vw, 88px);
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.step-brand-globe {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step-icon-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.story-icon.warning {
  background: var(--canva-red);
}

.story-icon.check {
  background: var(--deep-green);
}

.quote-card {
  margin: 0;
  padding: 1.35rem 1.45rem;
  color: var(--forest);
  background: #edf6e6;
  border: 1px solid #dbe9d2;
  border-radius: var(--radius);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 950;
  line-height: 1.35;
  text-align: center;
}

.agreport-topic-band {
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #a8ce86;
  border: 1px solid #91bc70;
  border-radius: var(--radius);
}

.agreport-topic-band h3 {
  margin: 0;
  color: var(--forest-2);
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.icon-token {
  display: grid;
  place-items: center;
  gap: 0.3rem;
  min-width: 0;
  min-height: 90px;
  padding: 0.75rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(21, 63, 46, 0.12);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
}

.icon-symbol,
.topic-svg,
.topic-icon-image {
  color: var(--deep-green);
  line-height: 1;
}

.public-plan-grid {
  display: grid;
  gap: 0.8rem;
}

.public-tier {
  display: grid;
  position: relative;
  gap: 0.72rem;
  min-width: 0;
  min-height: 220px;
  padding: 1.05rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 32px rgba(18, 56, 40, 0.1);
  text-decoration: none;
}

.public-tier.free_national {
  border-color: var(--canva-gold);
  background: #fff8e3;
}

.public-tier.smallholder {
  border-color: #9cc483;
  background: #eef8e8;
}

.public-tier.pro_agripreneur {
  color: #ffffff;
  border-color: var(--deep-green);
  background: linear-gradient(145deg, #285f14, #173f0e);
}

.public-tier.sponsored {
  color: #ffffff;
  border-color: var(--canva-red);
  background: linear-gradient(145deg, #b33851, #7c1930);
}

.public-tier h3,
.public-tier.pro_agripreneur h3,
.public-tier.sponsored h3 {
  color: var(--forest-2);
}

.public-tier.pro_agripreneur h3,
.public-tier.sponsored h3,
.public-tier.pro_agripreneur p,
.public-tier.sponsored p {
  color: #ffffff;
}

.public-tier h3 {
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  line-height: 1.02;
  text-align: center;
}

.public-plan-grid.four .public-tier h3 {
  justify-self: center;
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
}

.tier-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.55rem;
  align-items: start;
}

.public-tier .tier-price,
.public-tier p,
.public-tier ul {
  margin: 0;
}

.public-tier p {
  font-size: 0.95rem;
  line-height: 1.48;
}

.public-tier .tier-price {
  justify-self: start;
  padding: 0.3rem 0.55rem;
  color: var(--forest);
  background: #ffffff;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 950;
  white-space: nowrap;
}

.public-tier ul {
  padding-left: 1.1rem;
  color: var(--muted);
  font-weight: 700;
}

.tier-note {
  color: inherit;
  font-size: 0.88rem;
  font-weight: 750;
  opacity: 0.9;
}

.btn.tier-arrow {
  position: absolute;
  right: 0.65rem;
  top: 50%;
  min-width: 0;
  min-height: 0;
  width: 34px;
  height: 34px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  transform: translateY(-50%);
  font-size: 1.8rem;
}

.tier-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: end;
  width: fit-content;
  max-width: 100%;
  margin-top: 0.4rem;
  color: inherit;
  font-weight: 950;
}

.country-tier-section .public-tier {
  align-content: start;
  min-height: 260px;
}

.country-tier-section .public-tier p {
  font-size: 1rem;
}

.country-tier-section .tier-price {
  max-width: 100%;
  white-space: normal;
}

.country-tier-section .tier-card-cta {
  margin-top: auto;
  font-size: 1rem;
  line-height: 1.25;
}

.country-tier-section .tier-discount-note {
  max-width: 760px;
  margin: 1.35rem auto 0;
  text-align: center;
  color: var(--forest-2);
  font-size: 1.18rem;
  font-weight: 950;
}

.cohort-visual,
.org-preview-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  font-weight: 750;
}

.org-preview-card {
  padding: clamp(1rem, 3vw, 1.8rem);
  background: #f3f8ed;
  border: 1px solid #d8e8d0;
  border-radius: var(--radius);
}

.monitor-illustration {
  width: min(520px, 100%);
  aspect-ratio: 1672 / 941;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(21, 63, 46, 0.16);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(18, 56, 40, 0.14);
}

.monitor-illustration.large {
  width: min(560px, 100%);
}

.monitor-illustration img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.report-strip-stack {
  display: grid;
  gap: 0.7rem;
  width: min(860px, 100%);
  margin: 0 auto;
}

.landscape-strip {
  display: grid;
  align-items: end;
  min-height: 74px;
  padding: 0.75rem;
  border: 1px solid rgba(47, 125, 79, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10% 22%, #ffffff 0 3%, transparent 4%),
    radial-gradient(circle at 28% 20%, #ffffff 0 4%, transparent 5%),
    radial-gradient(circle at 84% 18%, #ffffff 0 5%, transparent 6%),
    linear-gradient(180deg, #bdebf6 0 56%, #79a90f 57% 76%, #9bc862 77% 100%);
}

.landscape-strip span {
  width: fit-content;
  max-width: 100%;
  padding: 0.35rem 0.55rem;
  background: rgba(255, 255, 255, 0.86);
  border-radius: var(--radius);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 900;
}

.idea-about-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem 1.1rem;
  align-items: center;
  width: min(680px, 100%);
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 1.4rem);
  background: #fbfff1;
  color: var(--deep-green);
}

.idea-about-card img {
  grid-row: span 2;
}

.idea-about-card strong {
  font-size: clamp(1.7rem, 5vw, 3.2rem);
  line-height: 0.95;
  font-weight: 950;
  text-transform: uppercase;
}

.idea-about-card span {
  font-family: Impact, "Arial Black", "Franklin Gothic Heavy", sans-serif;
  font-size: clamp(1rem, 3vw, 1.7rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.language-button-row,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.btn.language-choice {
  min-width: 128px;
  display: grid;
  gap: 0.25rem;
  background: var(--deep-green);
  color: #ffffff;
  border-color: transparent;
}

.btn.language-choice.selected {
  background: #ffffff;
  color: var(--forest);
  border-color: #9cc483;
}

.language-helper {
  color: inherit;
  font-size: 0.72rem;
  font-weight: 650;
  opacity: 0.82;
}

.public-registration .form-card,
.public-waitlist .form-card,
.public-payment .form-card,
.public-payment .order-card {
  width: min(430px, 100%);
  margin: 0 auto;
  box-shadow: 0 12px 28px rgba(18, 56, 40, 0.08);
}

.public-registration .split-grid,
.public-payment .split-grid {
  align-items: start;
}

.profile-builder .field-card input,
.profile-builder .field-card select,
.profile-builder .field-card textarea {
  box-sizing: border-box;
  font: inherit;
}

.profile-builder .field-card select {
  height: 52px;
  min-height: 52px;
}

.profile-builder .conditional-write-in {
  margin-top: 0.45rem;
}

.public-registration,
.public-waitlist,
.public-payment,
.public-flow {
  width: min(430px, 100%);
  margin: 0 auto;
}

.public-registration .public-title,
.public-waitlist .public-title,
.public-payment .public-title {
  text-align: center;
}

.form-card h1 {
  margin: 0 0 0.15rem;
  color: var(--forest);
  font-size: 1.15rem;
  text-align: center;
}

.summary-line {
  margin: 0 0 0.65rem;
  color: var(--forest-2);
  text-align: center;
  font-weight: 800;
}

.phone-field-row {
  display: grid;
  grid-template-columns: minmax(145px, 0.42fr) minmax(0, 1fr);
  align-items: start;
  gap: 0.55rem;
}

.phone-field-row .field-card {
  grid-template-rows: 1.35rem 52px auto;
  gap: 0.35rem;
}

.phone-field-row .field-card > strong {
  display: flex;
  align-items: flex-end;
  min-height: 1.35rem;
}

.phone-field-row .field-card input,
.phone-field-row .field-card select {
  height: 52px;
  min-height: 52px;
}

.form-footnote {
  margin: 0.2rem 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 750;
}

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

.field-helper {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.field-card-head .field-helper {
  display: inline;
}

.field-card.invalid,
.consent-row.invalid,
.choice-control.invalid {
  border-color: var(--canva-red);
  background: #fff7f7;
}

.field-error {
  display: block;
  color: var(--canva-red);
  font-size: 0.78rem;
  font-weight: 800;
}

.multi-field {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  gap: 0.55rem;
  padding: 0.65rem 0.75rem 0.75rem;
  background: #fbfdfb;
}

.multi-field legend {
  color: var(--forest-2);
  font-weight: 850;
  margin-inline-start: -0.15rem;
  margin-bottom: 0.25rem;
  padding: 0 0.35rem;
  background: #fbfdfb;
  line-height: 1.2;
}

.checkbox-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.public-registration .checkbox-grid.compact {
  grid-template-columns: 1fr;
}

.profile-builder .multi-field {
  display: grid;
  gap: 0.55rem;
  padding: 0.65rem 0.75rem 0.75rem;
  border-radius: var(--radius);
  background: #fbfdfb;
}

.profile-builder .multi-field legend {
  padding: 0 0.2rem;
}

.profile-builder .checkbox-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.profile-builder .checkbox-row {
  min-height: 58px;
  gap: 0.5rem;
  padding: 0.5rem 0.55rem;
}

.profile-builder .checkbox-row input {
  width: 30px;
  height: 30px;
}

.profile-builder .checkbox-row img.registration-option-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  max-width: 42px;
  min-height: 42px;
  max-height: 42px;
}

.profile-builder .checkbox-label {
  font-size: 0.88rem;
}

.btn.quiet {
  background: transparent;
  border-color: transparent;
  color: var(--muted);
}

.waitlist-intro {
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  text-align: center;
}

.globe-illustration {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: contain;
}

.checkout-plan-list,
.checkout-checklist,
.payment-method-list,
.checkout-currency-toggle {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.currency-option-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.currency-option {
  display: grid;
  gap: 0.15rem;
  min-height: 58px;
  padding: 0.72rem;
  color: var(--forest);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: left;
}

.currency-option small,
.currency-note {
  color: var(--muted);
  font-weight: 650;
}

.currency-option.selected {
  border-color: #9cc483;
  background: #eef8e8;
  box-shadow: 0 10px 20px rgba(18, 56, 40, 0.08);
}

.checkout-plan {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.1rem 0.7rem;
  min-height: 66px;
  padding: 0.72rem;
  text-align: left;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.checkout-plan.selected .radio-dot::after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--deep-green);
  border-radius: 50%;
}

.checkout-plan small {
  grid-column: 2;
  color: var(--muted);
}

.checkout-plan b {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  font-size: 1.15rem;
}

.checkout-plan.selected {
  background: #eef8e8;
  border-color: #9cc483;
}

.radio-dot {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--deep-green);
  border: 2px solid #9ab68e;
  border-radius: 50%;
}

.checkout-checklist h2,
.payment-method-list h2 {
  margin: 0 0 0.25rem;
  color: var(--forest-2);
  font-size: 0.95rem;
}

.checkout-checklist p {
  margin: 0;
  color: var(--forest);
  font-size: 0.9rem;
}

.payment-method {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem;
  color: var(--forest);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: left;
}

.payment-method small {
  grid-column: 2;
  color: var(--muted);
  font-weight: 650;
}

.payment-method.selected {
  border-color: #9cc483;
  background: #eef8e8;
  box-shadow: 0 10px 20px rgba(18, 56, 40, 0.08);
}

.checkout-summary,
.payment-detail {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem;
  background: #f8fbf6;
  border: 1px solid #d8e8d0;
  border-radius: var(--radius);
}

.auto-renew-control {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding: 0.9rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.auto-renew-control input {
  width: 24px;
  height: 24px;
  margin-top: 0.1rem;
}

.auto-renew-control span {
  display: grid;
  gap: 0.18rem;
}

.auto-renew-control small {
  color: var(--muted);
  font-weight: 650;
}

.btn.disabled-payment,
.btn.disabled-payment:hover {
  width: 100%;
  color: #ffffff;
  background: #b8bfbc;
  border-color: #b8bfbc;
  cursor: not-allowed;
  transform: none;
}

.idea-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  color: #ffffff;
  background: linear-gradient(90deg, var(--app-green), var(--app-green-dark));
  border-radius: var(--radius);
}

.public-waitlist .idea-footer {
  grid-column: 1 / -1;
  width: 100%;
}

.footer-copy {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
  line-height: 1.35;
}

.footer-copy p {
  margin: 0;
  font-size: 0.86rem;
}

.footer-copy strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.15;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand img {
  width: min(180px, 100%);
  height: auto;
  padding: 0.25rem 0.4rem;
  background: #ffffff;
  border-radius: var(--radius);
}

.org-hero,
.organizations-page .organization-form {
  display: grid;
  gap: 1rem;
}

.org-hero {
  align-items: center;
  padding: clamp(1rem, 3vw, 1.8rem);
  background: #f3f8ed;
  border: 1px solid #d8e8d0;
  border-radius: var(--radius);
}

.org-hero .public-title {
  text-align: left;
  margin: 0;
}

.organization-form {
  width: min(980px, 100%);
  margin: 0 auto;
}

@media (max-width: 679px) {
  .profile-builder .checkbox-grid.compact {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 680px) {
  .public-nav {
    display: flex;
    position: static;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .public-nav.open {
    display: flex;
    position: static;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .btn.icon-menu {
    display: none;
  }

  .hero-panel {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  }

  .choice-grid,
  .country-grid,
  .dashboard-grid,
  .organization-grid,
  .preview-section-grid,
  .preview-cta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-grid,
  .split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-reader-layout {
    grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  }

  .report-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .preview-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .personalized-summary-grid,
  .personalized-grid,
  .personalized-action-grid,
  .action-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topic-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .topic-grid .icon-token:nth-child(-n + 3),
  .topic-grid .icon-token:nth-child(n + 8) {
    grid-column: span 4;
  }

  .topic-grid .icon-token:nth-child(n + 4):nth-child(-n + 7) {
    grid-column: span 3;
  }

  .public-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .public-plan-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cohort-visual {
    grid-template-columns: minmax(0, 1fr);
  }

  .org-preview-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: clamp(2rem, 5vw, 5rem);
    padding: 1.25rem 2rem;
  }

  .org-preview-card > div:last-child {
    padding-left: clamp(0.5rem, 2vw, 2rem);
  }

  .idea-footer {
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1fr);
    align-items: center;
  }

  .footer-copy {
    align-content: center;
  }

  .org-hero {
    grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  }

  .organization-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .organization-form > h2,
  .organization-form > .btn,
  .organization-form > .success-note,
  .organization-form > .error-summary {
    grid-column: 1 / -1;
  }

  .public-flow {
    width: min(900px, 100%);
  }

  .language-button-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .app-header {
    padding-inline: clamp(1.5rem, 4vw, 3rem);
  }

  .route-shell {
    width: min(1240px, 100%);
    padding-bottom: 2.5rem;
  }

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

  .organization-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: stretch;
  }

  .organization-grid > .choice-card {
    grid-column: span 3;
    min-height: 178px;
  }

  .organization-grid > .choice-card:nth-child(n + 5) {
    grid-column: span 2;
  }

  .bottom-nav.visible {
    display: none;
  }

  .personalized-action-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .public-title h1,
  .public-report-hero h1 {
    font-size: 3.7rem;
  }

  .public-title h2,
  .public-section h2 {
    font-size: 2.25rem;
  }

  .public-plan-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .public-home {
    gap: 2.5rem;
  }

  .public-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
    align-items: stretch;
    min-height: 520px;
    padding: clamp(1.4rem, 3vw, 2rem);
  }

  .public-hero .public-title {
    margin: 0;
    text-align: left;
  }

  .public-hero .public-title h1 {
    max-width: 650px;
  }

  .public-hero .public-title p {
    max-width: 600px;
  }

  .country-choice-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .country-choice.waitlist {
    grid-column: 1 / -1;
    min-height: 126px;
  }

  .country-choice {
    min-height: 116px;
    padding: 1.05rem;
  }

  .country-emblem,
  .country-request-asset {
    width: 78px;
  }

  .public-hero-support {
    align-content: stretch;
  }

  .agriculture-landscape {
    min-height: 300px;
  }

  .trust-card {
    margin-top: -2.8rem;
    margin-inline: 1.2rem;
  }

  .sponsored-cohort-section {
    grid-template-columns: auto minmax(0, 0.9fr) minmax(360px, 0.7fr);
  }

  .sponsored-cohort-form {
    grid-column: auto;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .hero-report-card {
    margin-top: 0;
  }

  .what-section {
    grid-template-columns: minmax(260px, 0.5fr) minmax(0, 1fr);
    align-items: start;
  }

  .what-section > .public-title {
    position: static;
    margin: 0;
    text-align: left;
  }

  .problem-solution {
    grid-column: 2;
  }

  .story-panel {
    grid-column: 1 / -1;
  }

  .quote-card {
    grid-column: 1 / -1;
  }

  .story-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .story-step {
    align-content: start;
    min-height: 236px;
    padding: clamp(1rem, 2vw, 1.35rem);
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 22px rgba(18, 56, 40, 0.06);
  }

  .story-step p {
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    font-weight: 760;
    line-height: 1.45;
  }

  .tier-section {
    gap: 1.1rem;
  }

  .tier-section > .public-title {
    max-width: 840px;
  }

  .public-tier {
    min-height: 320px;
  }

  .org-preview-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 280px;
  }

  .monitor-illustration {
    width: 100%;
  }

  .public-registration,
  .public-waitlist,
  .public-payment {
    width: min(1040px, 100%);
  }

  .public-registration .form-card,
  .public-waitlist .form-card,
  .public-payment .form-card {
    width: min(980px, 100%);
    padding: clamp(1.35rem, 3vw, 2rem);
    box-shadow: var(--shadow-strong);
  }

  .public-registration .form-card,
  .public-waitlist .form-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1rem;
  }

  .public-registration .form-card > h1,
  .public-registration .form-card > p,
  .public-registration .form-card > .phone-field-row,
  .public-registration .form-card > .consent-row,
  .public-registration .form-card > .btn,
  .public-registration .form-card > .form-footnote,
  .public-registration .form-card > .review-note,
  .public-registration .form-card > .success-note,
  .public-registration .form-card > .error-summary,
  .public-waitlist .form-card > .consent-row,
  .public-waitlist .form-card > .btn,
  .public-waitlist .form-card > .form-footnote,
  .public-waitlist .form-card > .review-note,
  .public-waitlist .form-card > .success-note,
  .public-waitlist .form-card > .error-summary {
    grid-column: 1 / -1;
  }

  .public-registration .form-card > h1,
  .public-waitlist .form-card > h1,
  .public-payment .form-card > h1 {
    font-size: 2rem;
  }

  .phone-field-row {
    grid-template-columns: minmax(190px, 0.32fr) minmax(0, 1fr);
  }

  .public-waitlist {
    grid-template-columns: minmax(260px, 0.46fr) minmax(0, 0.74fr);
    align-items: center;
  }

  .waitlist-intro {
    justify-items: start;
    text-align: left;
  }

  .waitlist-intro .public-title {
    margin: 0;
    text-align: left;
  }

  .globe-illustration {
    width: 180px;
    height: 180px;
  }

  .public-payment .form-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    gap: 1rem 1.25rem;
  }

  .public-payment .form-card > h1,
  .public-payment .form-card > .summary-line,
  .public-payment .form-card > p:not(.form-footnote),
  .public-payment .form-card > .disabled-payment,
  .public-payment .form-card > .form-footnote,
  .public-payment .form-card > .quiet,
  .public-payment .form-card > .review-note {
    grid-column: 1 / -1;
  }

  .checkout-plan-list,
  .checkout-checklist,
  .payment-method-list,
  .checkout-currency-toggle {
    margin-top: 0;
  }

  .checkout-checklist {
    align-content: start;
    padding: 1rem;
    background: #f3f8ed;
    border: 1px solid #d8e8d0;
    border-radius: var(--radius);
  }
}

@media (min-width: 1200px) {
  .public-flow {
    width: min(1180px, 100%);
  }

  .public-plan-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .app-header {
    box-sizing: border-box;
    align-items: center;
    height: 78px;
    min-height: 0;
    padding: 0.25rem 0.85rem;
  }

  .brand-lockup img {
    width: auto;
    height: 69px;
  }

  .brand-name {
    font-size: 1.16rem;
  }

  .brand-context {
    display: none;
  }

  .route-shell {
    padding: 0.7rem;
  }

  .public-hero {
    gap: 0.75rem;
    padding: 0.75rem;
  }

  .public-title {
    gap: 0.4rem;
  }

  .public-title h1,
  .public-report-hero h1 {
    font-size: 1.95rem;
  }

  .public-title p {
    font-size: 0.88rem;
  }

  .hero-panel h1,
  .auth-card h1,
  .modal-like-card h1 {
    font-size: 1.65rem;
  }

  .hero-actions .btn,
  .button-row .btn {
    width: 100%;
  }

  .public-page {
    gap: 2rem;
  }

  .country-choice-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.55rem;
  }

  .country-choice.waitlist {
    grid-column: 1 / -1;
  }

  .country-choice {
    min-height: 70px;
    padding: 0.65rem;
  }

  .country-emblem,
  .country-request-asset {
    width: 52px;
  }

  .country-choice strong {
    font-size: 0.98rem;
  }

  .country-choice p {
    font-size: 0.86rem;
  }

  .agriculture-landscape {
    min-height: 118px;
  }

  .trust-card {
    margin-top: -1.65rem;
    margin-inline: 0.6rem;
    padding: 0.7rem;
  }

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

  .topic-grid .icon-token {
    grid-column: auto;
  }

  .idea-about-card {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    text-align: center;
  }

  .idea-about-card img {
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
