:root {
  --ink: #002c5c;
  --ink-soft: #0a356c;
  --ink-mute: #174a86;
  --paper: #f8fbff;
  --paper-soft: #eef7ff;
  --paper-warm: #fff9f3;
  --white: #ffffff;
  --line: #d7e5f2;
  --line-dark: rgba(255, 255, 255, 0.12);
  --text: #102a43;
  --muted: #667d95;
  --teal: #0f62fe;
  --teal-dark: #0052ac;
  --green: #17c6a3;
  --amber: #f8b84e;
  --rust: #ff7a59;
  --red-soft: #f45b69;
  --sky: #47b5ff;
  --lilac: #7b6cff;
  --mint-soft: #e8fbf6;
  --sky-soft: #eef8ff;
  --amber-soft: #fff5dd;
  --coral-soft: #fff0eb;
  --surface: #f7fbff;
  --surface-strong: #eef7ff;
  --shadow: 0 24px 60px rgba(0, 44, 92, 0.14);
  --shadow-soft: 0 12px 30px rgba(0, 44, 92, 0.08);
  --radius: 8px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(15, 98, 254, 0.34);
  outline-offset: 3px;
}

.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;
}

.page-shell {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(20px, calc((100vw - 1200px) / 2));
  color: var(--white);
  background: rgba(0, 30, 65, 0.56);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(0, 30, 65, 0.94);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 36px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--teal), var(--lilac));
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}

.brand-text {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 750;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
}

.nav-action {
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(920px, 86svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -4;
  background-image: url("assets/hero-platform-dashboard.png");
  background-position: center right;
  background-size: cover;
  opacity: 0.5;
  filter: saturate(0.92) contrast(1.05);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 20, 45, 0.98) 0%, rgba(0, 20, 45, 0.9) 50%, rgba(0, 20, 45, 0.7) 100%),
    linear-gradient(180deg, rgba(0, 20, 45, 0.12) 0%, rgba(0, 20, 45, 0.76) 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.72fr);
  gap: 46px;
  align-items: center;
  padding-top: calc(var(--header-height) + 30px);
  padding-bottom: 42px;
}

.hero-copy-block {
  max-width: 740px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: 4.05rem;
  line-height: 1.03;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.button svg,
.filter-button svg,
.portal-list svg,
.prereg-points svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-primary {
  background: linear-gradient(135deg, var(--teal), var(--sky));
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 98, 254, 0.24);
}

.button-primary:hover {
  background: linear-gradient(135deg, #2e8bff, var(--lilac));
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.hero-proof div {
  min-height: 96px;
  padding: 18px;
  background: rgba(0, 30, 65, 0.52);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1.2;
}

.hero-proof span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.hero-impact-panel {
  align-self: end;
  width: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
    rgba(0, 35, 76, 0.76);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.impact-panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.impact-panel-head strong,
.impact-panel-head small {
  display: block;
}

.impact-panel-head strong {
  color: var(--white);
  font-size: 1.1rem;
}

.impact-panel-head small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.64);
  font-weight: 800;
}

.impact-steps {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.impact-steps article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.impact-steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: var(--teal);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 950;
}

.impact-steps article:nth-child(2) span {
  background: var(--green);
}

.impact-steps article:nth-child(3) span {
  background: var(--amber);
  color: var(--ink);
}

.impact-steps strong {
  display: block;
  color: var(--white);
}

.impact-steps p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.impact-summary {
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(23, 198, 163, 0.16), rgba(123, 108, 255, 0.12)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(23, 198, 163, 0.28);
}

.impact-summary strong {
  display: block;
  color: #c8e9fb;
}

.impact-summary p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.signal-band {
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.signal-grid div {
  min-height: 128px;
  padding: 24px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-grid span {
  display: block;
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 900;
}

.signal-grid div:nth-child(2) span {
  color: var(--green);
}

.signal-grid div:nth-child(3) span {
  color: #9f9aff;
}

.signal-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 1.02rem;
}

.signal-grid p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.section {
  padding: 94px 0;
}

.section-platform,
.section-flow,
.section-faq {
  background: var(--paper);
}

.section-firms {
  background:
    linear-gradient(135deg, rgba(232, 251, 246, 0.72), rgba(238, 248, 255, 0.9)),
    var(--paper-soft);
}

.section-model {
  background:
    linear-gradient(180deg, #f7fbff 0%, var(--surface-strong) 100%),
    var(--paper-soft);
}

.section-showcase {
  background: var(--white);
}

.section-donations {
  background:
    linear-gradient(135deg, rgba(255, 245, 221, 0.72), rgba(238, 248, 255, 0.88)),
    var(--paper-soft);
}

.section-social-score {
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(232, 251, 246, 0.72) 54%, rgba(255, 240, 235, 0.48) 100%),
    var(--white);
}

.section-products {
  background:
    linear-gradient(135deg, rgba(238, 248, 255, 0.96), rgba(255, 249, 243, 0.76)),
    #f4f9ff;
}

.section-trust {
  background: var(--ink);
  color: var(--white);
}

.section-pre-register {
  background:
    linear-gradient(180deg, rgba(232, 251, 246, 0.72), rgba(255, 249, 243, 0.94)),
    var(--paper-warm);
}

.application-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 12% 12%, rgba(15, 98, 254, 0.28), transparent 34%),
    radial-gradient(circle at 88% 2%, rgba(123, 108, 255, 0.2), transparent 30%),
    radial-gradient(circle at 82% 74%, rgba(23, 198, 163, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(0, 44, 92, 0.97) 0%, rgba(0, 44, 92, 0.92) 52%, #eef7ff 52%, #f7fbff 100%),
    var(--paper);
}

.application-hero {
  padding: calc(var(--header-height) + 74px) 0 92px;
  color: var(--white);
}

.application-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  gap: 52px;
  align-items: start;
}

.application-copy {
  position: sticky;
  top: calc(var(--header-height) + 34px);
}

.application-copy h1 {
  margin: 0;
  max-width: 720px;
  font-size: 3.25rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.application-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.application-insight-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  max-width: 640px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 98, 254, 0.24), rgba(123, 108, 255, 0.14)),
    rgba(0, 44, 92, 0.34);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
}

.application-insight-card > span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: #c8e9fb;
}

.application-insight-card svg {
  width: 22px;
  height: 22px;
}

.application-insight-card strong,
.application-insight-card p {
  display: block;
}

.application-insight-card strong {
  color: var(--white);
  font-size: 1.08rem;
}

.application-insight-card p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.application-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.application-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(0, 44, 92, 0.24);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.application-highlights svg {
  width: 20px;
  height: 20px;
  color: #c8e9fb;
}

.application-wizard {
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.application-wizard::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--sky), var(--amber), var(--rust));
}

.wizard-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 2px 0;
}

.wizard-card-head .eyebrow {
  margin-bottom: 8px;
}

.wizard-card-head strong {
  display: block;
  max-width: 520px;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.24;
}

.wizard-card-head > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(15, 98, 254, 0.26);
  border-radius: var(--radius);
  background: var(--mint-soft);
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.wizard-card-head svg {
  width: 18px;
  height: 18px;
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.wizard-progress span {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 9px;
  align-items: center;
  min-height: 72px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  overflow: hidden;
}

.wizard-progress em {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-style: normal;
  font-weight: 950;
  box-shadow: 0 1px 0 rgba(0, 44, 92, 0.06);
}

.wizard-progress svg {
  grid-column: 1;
  width: 19px;
  height: 19px;
  margin-left: 5px;
  color: var(--teal-dark);
}

.wizard-progress span.is-active {
  border-color: rgba(15, 98, 254, 0.46);
  background:
    linear-gradient(180deg, rgba(15, 98, 254, 0.14), rgba(255, 255, 255, 0.88)),
    var(--mint-soft);
  color: var(--teal-dark);
  box-shadow: 0 12px 26px rgba(15, 98, 254, 0.12);
}

.wizard-progress span.is-active em {
  background: var(--teal);
  color: #ffffff;
}

.wizard-progress span.is-complete {
  border-color: rgba(23, 198, 163, 0.34);
  background: #eefaf2;
}

.wizard-progress span.is-complete em {
  background: var(--green);
  color: #ffffff;
}

.wizard-step {
  display: none;
}

.wizard-step.is-active {
  display: grid;
  gap: 18px;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.application-wizard .button-secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink-soft);
}

.application-wizard .button-secondary:hover {
  background: var(--surface-strong);
}

.wizard-review {
  display: grid;
  gap: 12px;
}

.wizard-review article,
.consent-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.wizard-review article {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.wizard-review article span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--mint-soft);
  color: var(--teal-dark);
}

.wizard-review article svg {
  width: 22px;
  height: 22px;
}

.wizard-review article strong {
  color: var(--ink);
}

.wizard-review article p {
  margin: 0;
  color: var(--muted);
}

.consent-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  color: var(--text);
  font-weight: 800;
}

.consent-box input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--teal);
}

.split-layout,
.showcase-layout,
.model-layout,
.trust-layout,
.prereg-layout,
.faq-layout {
  display: grid;
  gap: 52px;
  align-items: start;
}

.split-layout {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.18fr);
}

.showcase-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.9fr);
  align-items: center;
}

.model-layout,
.trust-layout,
.prereg-layout,
.faq-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.social-score-layout,
.community-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 52px;
  align-items: start;
}

.community-layout {
  margin-top: 36px;
}

.distribution-layout,
.distribution-intro {
  display: grid;
  grid-template-columns: minmax(1fr);
  gap: 48px;
  align-items: center;
}

.section-heading h2 {
  margin: 0;
  max-width: 1080px;
  color: var(--ink);
  font-size: 2.62rem;
  line-height: 1.11;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  max-width: 1080px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading.centered {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.centered h2,
.section-heading.centered p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.section-trust .section-heading h2,
.section-trust .section-heading p:not(.eyebrow) {
  color: var(--white);
}

.section-trust .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.mission-grid,
.benefit-grid,
.product-grid,
.trust-grid {
  display: grid;
  gap: 16px;
}

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

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

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

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

.mission-card,
.benefit-card,
.product-card,
.trust-card,
.model-cards article,
.flow-step,
.prereg-form,
.faq-list details {
  border-radius: var(--radius);
}

.mission-card,
.benefit-card,
.product-card,
.model-cards article,
.flow-step,
.faq-list details {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.mission-card {
  min-height: 240px;
  padding: 24px;
}

.benefit-card {
  min-height: 272px;
  padding: 24px;
}

.institution-logo {
  display: grid;
  place-items: center;
  flex: 0 0 104px;
  width: 104px;
  height: 70px;
  padding: 9px 11px;
  border: 1px solid rgba(214, 226, 238, 0.92);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.institution-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.institution-logo img[src$="yardimeli-dernegi.gif"],
.institution-logo img[src$="turkiye-diyanet-vakfi.png"],
.institution-logo img[src$="dogal-hayati-koruma-vakfi.png"],
.institution-logo img[src$="turk-kalp-vakfi.png"],
.institution-logo img[src$="turk-egitim-vakfi.png"],
.institution-logo img[src$="ilim-yayma-cemiyeti.png"],
.institution-logo img[src$="iyilik-yardimlasma-dayanisma-dernegi.png"],
.institution-logo img[src$="turk-egitim-dernegi.jpg"],
.institution-logo img[src$="tohum-turkiye-otizm-vakfi.png"] {
  max-width: 88%;
  max-height: 88%;
}

.logo-tev {
  background: #2267a8;
}

.logo-tegv {
  background: #2e8bff;
}

.logo-losev {
  background: #ff7a59;
}

.logo-tema {
  background: #0052ac;
}

.logo-dar {
  background: #173f73;
}

.logo-yesilay {
  background: #0f62fe;
}

.logo-mehmetcik {
  background: #002c5c;
}

.logo-ttgv {
  background: #174a86;
}

.logo-education {
  background: #315d9b;
}

.logo-health {
  background: #ff7a59;
}

.logo-access {
  background: #5a87ff;
}

.logo-aid {
  background: #0052ac;
}

.logo-nature {
  background: #0a356c;
}

.logo-tech {
  background: #0f62fe;
}

.logo-solidarity {
  background: #002c5c;
}

.donation-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 28px;
  align-items: stretch;
}

.donation-principle,
.donation-flow article,
.donation-directory,
.institution-row {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.donation-principle {
  display: grid;
  align-content: center;
  min-height: 260px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 245, 221, 0.78), rgba(232, 251, 246, 0.58)),
    var(--white);
}

.donation-principle span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--mint-soft);
  color: #0a7b68;
}

.donation-principle svg {
  width: 24px;
  height: 24px;
}

.donation-principle strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.22rem;
}

.donation-principle p {
  margin: 10px 0 0;
  color: var(--muted);
}

.donation-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.donation-flow article {
  min-height: 190px;
  padding: 24px;
}

.donation-flow span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 950;
}

.donation-flow article:nth-child(2) span {
  background: var(--amber);
  color: var(--ink);
}

.donation-flow article:nth-child(3) span {
  background: var(--green);
  color: #053c34;
}

.donation-flow h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.24;
}

.donation-flow p {
  margin: 10px 0 0;
  color: var(--muted);
}

.donation-directory {
  margin-top: 28px;
  padding: 26px;
}

.directory-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 24px;
  align-items: end;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.directory-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1.18;
}

.directory-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.institution-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.institution-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.institution-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 124px;
  padding: 15px 36px 15px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.institution-row:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 98, 254, 0.34);
  box-shadow: var(--shadow-soft);
}

.institution-row::after {
  content: "↗";
  position: absolute;
  right: 12px;
  bottom: 10px;
  color: rgba(0, 82, 172, 0.68);
  font-size: 0.9rem;
  font-weight: 950;
}

.institution-row.is-hidden {
  display: none;
}

.institution-row strong,
.institution-row small,
.institution-row em {
  display: block;
}

.institution-row strong {
  color: var(--ink);
  line-height: 1.22;
  font-size: 0.98rem;
}

.institution-row small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.institution-row em {
  margin-top: 7px;
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 900;
}

.trust-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
}

.mission-card:hover,
.benefit-card:hover,
.product-card:hover,
.flow-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.mission-card,
.benefit-card,
.product-card,
.flow-step {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.icon-pill,
.benefit-card span,
.product-icon,
.trust-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
}

.icon-pill,
.benefit-card span,
.product-icon {
  background: var(--mint-soft);
  color: #0a7b68;
}

.benefit-card:nth-child(2) span,
.product-card:nth-child(4n + 2) .product-icon {
  background: var(--amber-soft);
  color: #9a640f;
}

.benefit-card:nth-child(3) span,
.product-card:nth-child(4n + 3) .product-icon {
  background: var(--sky-soft);
  color: #0052ac;
}

.benefit-card:nth-child(4) span,
.product-card:nth-child(4n + 4) .product-icon {
  background: var(--coral-soft);
  color: var(--rust);
}

.benefit-card:nth-child(5) span,
.product-card:nth-child(4n + 1) .product-icon {
  background: #f1efff;
  color: var(--lilac);
}

.benefit-card:nth-child(6) span {
  background: var(--mint-soft);
  color: #0a7b68;
}

.icon-pill svg,
.benefit-card svg,
.product-icon svg,
.trust-card svg {
  width: 22px;
  height: 22px;
}

.mission-card h3,
.benefit-card h3,
.product-card h3,
.trust-card h3,
.model-cards h3,
.flow-step h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.25;
}

.mission-card p,
.benefit-card p,
.product-card p,
.flow-step p {
  margin: 12px 0 0;
  color: var(--muted);
}

.trust-card h3 {
  color: var(--white);
}

.trust-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.trust-card span {
  background: rgba(15, 98, 254, 0.16);
  color: #c8e9fb;
}

.showcase-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--ink);
}

.showcase-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: inherit;
  pointer-events: none;
}

.showcase-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.ecosystem-map {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  isolation: isolate;
}

.ecosystem-map::before,
.ecosystem-map::after {
  content: "";
  position: absolute;
  inset: 9% 8%;
  border: 1px solid rgba(15, 98, 254, 0.18);
  transform: rotate(-8deg);
}

.ecosystem-map::after {
  inset: 18% 17%;
  border-color: rgba(123, 108, 255, 0.22);
  transform: rotate(11deg);
}

.map-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 50%, rgba(15, 98, 254, 0.2), transparent 32%),
    linear-gradient(rgba(0, 44, 92, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 44, 92, 0.08) 1px, transparent 1px);
  background-size: auto, 46px 46px, 46px 46px;
  mask-image: radial-gradient(circle at center, #000 28%, transparent 78%);
}

.map-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 176px;
  height: 176px;
  padding: 18px;
  border: 1px solid rgba(15, 98, 254, 0.38);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.18), transparent 38%),
    #06224a;
  color: var(--white);
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 28px 70px rgba(0, 44, 92, 0.2), 0 0 0 14px rgba(15, 98, 254, 0.06);
}

.map-core span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--teal), var(--lilac));
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0;
}

.map-core strong,
.map-core small {
  display: block;
}

.map-core strong {
  margin-top: 8px;
  font-size: 1rem;
}

.map-core small {
  margin-top: -6px;
  color: rgba(255, 255, 255, 0.64);
  font-weight: 800;
}

.map-node {
  position: absolute;
  z-index: 3;
  width: min(220px, 42%);
  min-height: 116px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.map-node::before {
  content: "";
  position: absolute;
  width: 78px;
  height: 2px;
  top: 50%;
  background: linear-gradient(90deg, rgba(15, 98, 254, 0.7), transparent);
  transform-origin: left center;
}

.map-node svg {
  width: 22px;
  height: 22px;
  color: var(--teal-dark);
}

.map-node strong,
.map-node span {
  display: block;
}

.map-node strong {
  margin-top: 10px;
  color: var(--ink);
  line-height: 1.2;
}

.map-node span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.node-firms {
  left: 2%;
  top: 8%;
}

.node-firms::before,
.node-demand::before,
.node-impact::before {
  right: -78px;
}

.node-products {
  right: 0;
  top: 8%;
}

.node-products::before,
.node-activation::before,
.node-cloud::before {
  left: -78px;
  transform: rotate(180deg);
}

.node-activation {
  right: 0;
  top: 40%;
}

.node-demand {
  left: 0;
  top: 40%;
}

.node-impact {
  left: 7%;
  bottom: 6%;
}

.node-cloud {
  right: 5%;
  bottom: 6%;
}

.portal-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.portal-list div,
.prereg-points div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
}

.portal-list svg,
.prereg-points svg {
  margin-top: 3px;
  color: var(--teal-dark);
}

.product-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 26px;
}

.filter-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink-soft);
  font-weight: 900;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.filter-button.is-active {
  border-color: rgba(15, 98, 254, 0.38);
  background: var(--ink);
  color: var(--white);
}

.product-card {
  min-height: 356px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.product-card.is-hidden {
  display: none;
}

.product-primary {
  border-color: rgba(15, 98, 254, 0.44);
  background:
    linear-gradient(180deg, rgba(238, 248, 255, 0.8), rgba(255, 255, 255, 0.94)),
    var(--white);
  box-shadow: var(--shadow);
}

.product-tech {
  background: linear-gradient(180deg, rgba(255, 245, 221, 0.78), rgba(255, 255, 255, 0.9));
  border-color: rgba(248, 184, 78, 0.38);
}

.product-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 900;
  white-space: nowrap;
}

.status-ready {
  background: var(--mint-soft);
  color: #0a7b68;
}

.status-beta {
  background: var(--amber-soft);
  color: #9a640f;
}

.status-planned {
  background: #f1efff;
  color: var(--lilac);
}

.product-card ul,
.model-cards ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.product-card li,
.model-cards li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.product-card li + li,
.model-cards li + li {
  margin-top: 8px;
}

.product-card li::before,
.model-cards li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
}

.model-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.model-cards article {
  min-height: 420px;
  padding: 26px;
}

.model-cards article:nth-child(2) {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.model-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: var(--radius);
  background: var(--mint-soft);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.model-cards article:nth-child(2) .model-kicker {
  background: rgba(248, 184, 78, 0.18);
  color: #c8e9fb;
}

.model-cards article:nth-child(2) h3,
.model-cards article:nth-child(2) li {
  color: var(--white);
}

.model-cards article:nth-child(2) li {
  color: rgba(255, 255, 255, 0.72);
}

.distribution-intro {
  align-items: end;
}

.distribution-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.distribution-summary div {
  min-height: 112px;
  padding: 18px;
  background: var(--white);
}

.distribution-summary strong,
.distribution-summary span {
  display: block;
}

.distribution-summary strong {
  color: var(--ink);
  font-size: 1.38rem;
  line-height: 1;
}

.distribution-summary span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 820;
  line-height: 1.35;
}

.distribution-map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "hub windows android"
    "hub cloud cloud";
  gap: 16px;
  margin-top: 34px;
}

.distribution-map::before {
  content: "";
  position: absolute;
  inset: 28px 26px;
  border: 1px dashed rgba(15, 98, 254, 0.36);
  border-radius: var(--radius);
  pointer-events: none;
}

.distribution-hub,
.distribution-channel,
.distribution-principles div {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.distribution-hub {
  grid-area: hub;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 396px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(15, 98, 254, 0.16), rgba(248, 184, 78, 0.08)),
    var(--ink);
  color: var(--white);
}

.distribution-hub::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -58px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.distribution-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--mint-soft);
  color: var(--teal-dark);
}

.distribution-icon svg {
  width: 25px;
  height: 25px;
}

.distribution-hub .distribution-icon {
  background: var(--teal);
  color: #ffffff;
}

.distribution-hub p {
  margin: auto 0 10px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 900;
  text-transform: uppercase;
}

.distribution-hub h3 {
  max-width: 360px;
  margin: 0;
  color: var(--white);
  font-size: 2rem;
  line-height: 1.08;
}

.hub-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.hub-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 880;
}

.distribution-channel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  min-height: 190px;
  padding: 22px;
}

.distribution-channel::before {
  content: "";
  position: absolute;
  left: -17px;
  top: 50%;
  width: 17px;
  height: 2px;
  background: rgba(15, 98, 254, 0.48);
}

.distribution-channel-windows {
  grid-area: windows;
}

.distribution-channel-android {
  grid-area: android;
}

.distribution-channel-cloud {
  grid-area: cloud;
  grid-template-columns: auto minmax(0, 0.98fr);
  align-items: center;
}

.distribution-channel small,
.distribution-channel h3,
.distribution-channel p {
  display: block;
}

.distribution-channel small {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.distribution-channel h3 {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.18;
}

.distribution-channel p {
  margin: 10px 0 0;
  color: var(--muted);
}

.distribution-channel-android .distribution-icon {
  background: var(--amber-soft);
  color: #0052ac;
}

.distribution-channel-cloud .distribution-icon {
  background: var(--sky-soft);
  color: #0052ac;
}

.distribution-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.distribution-principles div {
  min-height: 172px;
  padding: 20px;
}

.distribution-principles svg {
  width: 24px;
  height: 24px;
  color: var(--teal-dark);
}

.distribution-principles strong,
.distribution-principles span {
  display: block;
}

.distribution-principles strong {
  margin-top: 14px;
  color: var(--ink);
  font-size: 1.05rem;
}

.distribution-principles span {
  margin-top: 8px;
  color: var(--muted);
}

.flow-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.flow-step {
  position: relative;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
}

.flow-step::before {
  content: "";
  position: absolute;
  top: 42px;
  right: -32px;
  width: 64px;
  height: 2px;
  background: var(--line);
}

.flow-step:last-child::before {
  display: none;
}

.flow-step span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

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

.score-panel article,
.leaderboard,
.request-board {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.score-panel article {
  min-height: 190px;
  padding: 22px;
}

.score-panel span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 950;
}

.score-panel strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.04rem;
}

.score-panel p {
  margin: 10px 0 0;
  color: var(--muted);
}

.leaderboard,
.request-board {
  padding: 24px;
}

.leaderboard-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.34rem;
  line-height: 1.18;
}

.leaderboard ol {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.leaderboard li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.leaderboard li span {
  color: var(--amber);
  font-weight: 950;
}

.leaderboard li strong {
  color: var(--ink);
}

.leaderboard li em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.request-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.request-list article {
  display: grid;
  gap: 10px;
}

.request-list strong {
  color: var(--ink);
}

.request-list span {
  position: relative;
  display: block;
  min-height: 32px;
  padding-top: 12px;
  color: var(--teal-dark);
  font-weight: 950;
}

.request-list span::before,
.request-list span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 8px;
  border-radius: 999px;
}

.request-list span::before {
  right: 0;
  background: #e4edf7;
}

.request-list span::after {
  width: var(--score);
  background: linear-gradient(90deg, var(--teal), var(--green), var(--amber));
}

.social-pulse-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.social-pulse-grid article,
.software-demand-board,
.firm-impact-board,
.activity-strip {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.social-pulse-grid article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px 16px;
  align-items: center;
  min-height: 128px;
  padding: 22px;
}

.social-pulse-grid span {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--mint-soft);
  color: #0a7b68;
}

.social-pulse-grid article:nth-child(2) span {
  background: var(--amber-soft);
  color: #9a640f;
}

.social-pulse-grid article:nth-child(3) span {
  background: #f1efff;
  color: var(--lilac);
}

.social-pulse-grid svg {
  width: 22px;
  height: 22px;
}

.social-pulse-grid strong {
  color: var(--ink);
  font-size: 1.76rem;
  line-height: 1;
}

.social-pulse-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.social-board-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  gap: 18px;
  margin-top: 18px;
}

.software-demand-board,
.firm-impact-board {
  padding: 24px;
}

.software-rank-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.software-rank-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7fbff;
}

.rank-badge {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-weight: 950;
}

.rank-content strong {
  display: block;
  color: var(--ink);
  font-size: 1.12rem;
}

.rank-content p {
  margin: 7px 0 0;
  color: var(--muted);
}

.rank-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.rank-metrics span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 850;
}

.rank-content em {
  position: relative;
  display: block;
  min-height: 34px;
  margin-top: 14px;
  padding-top: 14px;
  color: var(--teal-dark);
  font-style: normal;
  font-weight: 950;
}

.rank-content em::before,
.rank-content em::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 8px;
  border-radius: 999px;
}

.rank-content em::before {
  right: 0;
  background: #e4edf7;
}

.rank-content em::after {
  width: var(--score);
  background: linear-gradient(90deg, var(--teal), var(--green), var(--amber));
}

.firm-impact-board ol {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.firm-impact-board li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.firm-impact-board li > span {
  color: var(--amber);
  font-weight: 950;
}

.firm-impact-board strong,
.firm-impact-board small,
.firm-impact-board em {
  display: block;
}

.firm-impact-board strong {
  color: var(--ink);
}

.firm-impact-board small {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 760;
}

.firm-impact-board em {
  grid-column: 2;
  color: var(--teal-dark);
  font-style: normal;
  font-weight: 950;
}

.activity-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  background: var(--line);
}

.activity-strip span {
  min-height: 76px;
  padding: 16px;
  background: var(--white);
  color: var(--muted);
}

.activity-strip strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.prereg-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.58rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.prereg-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
}

.prereg-points {
  display: grid;
  gap: 13px;
  margin-top: 28px;
}

.application-entry {
  display: grid;
  gap: 20px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.entry-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.entry-head > span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--mint-soft);
  color: var(--teal-dark);
}

.entry-head svg {
  width: 24px;
  height: 24px;
}

.entry-head strong,
.entry-head small {
  display: block;
}

.entry-head strong {
  color: var(--ink);
  font-size: 1.16rem;
}

.entry-head small {
  margin-top: 2px;
  color: var(--muted);
  font-weight: 850;
}

.application-entry ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.application-entry li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.application-entry li span {
  color: var(--amber);
  font-weight: 950;
}

.application-entry li strong {
  color: var(--ink);
}

.prereg-form {
  display: grid;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.96)),
    var(--white);
  box-shadow: var(--shadow);
}

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

.form-wide {
  grid-column: 1 / -1;
}

.prereg-form label,
.prereg-form legend {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.prereg-form label {
  display: grid;
  gap: 8px;
}

.prereg-form input,
.prereg-form select,
.prereg-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cbdff2;
  border-radius: var(--radius);
  background: #f8fcff;
  color: var(--text);
  box-shadow: 0 1px 0 rgba(0, 44, 92, 0.03);
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.prereg-form input,
.prereg-form select {
  padding: 0 13px;
}

.prereg-form textarea {
  min-height: 104px;
  resize: vertical;
  padding: 13px;
}

.prereg-form input:focus,
.prereg-form select:focus,
.prereg-form textarea:focus {
  outline: 3px solid rgba(15, 98, 254, 0.18);
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 10px 22px rgba(15, 98, 254, 0.08);
}

.prereg-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(234, 245, 255, 0.3), rgba(255, 255, 255, 0.72)),
    var(--white);
}

.prereg-form legend {
  padding: 0 10px;
  color: var(--teal-dark);
  font-size: 0.98rem;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin-top: 6px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  color: var(--text);
  font-weight: 750;
}

.checkbox-grid input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--teal);
}

.prereg-form .button {
  width: 100%;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 900;
  line-height: 1.45;
}

body.application-body {
  min-height: 100svh;
  background: #f4f9ff;
}

.application-fullscreen {
  min-height: 100svh;
  background:
    radial-gradient(circle at 10% 14%, rgba(15, 98, 254, 0.18), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(123, 108, 255, 0.16), transparent 28%),
    radial-gradient(circle at 72% 86%, rgba(248, 184, 78, 0.16), transparent 30%),
    linear-gradient(135deg, #f8fcff 0%, #eef8ff 45%, #fff9f3 100%);
}

.wizard-stage {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 28px;
}

.wizard-shell {
  width: min(1160px, 100%);
  min-height: min(720px, calc(100svh - 56px));
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: 18px;
  align-items: stretch;
  margin: 0 auto;
}

.wizard-side,
.wizard-panel {
  border-radius: var(--radius);
}

.wizard-side {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(160deg, rgba(0, 44, 92, 0.96), rgba(0, 82, 172, 0.88), rgba(23, 198, 163, 0.2)),
    var(--ink);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(0, 44, 92, 0.2);
}

.wizard-side::after {
  content: "";
  position: absolute;
  right: -82px;
  bottom: -82px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: rgba(15, 98, 254, 0.08);
  pointer-events: none;
}

.wizard-brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  min-height: 44px;
  color: var(--white);
  font-weight: 950;
}

.wizard-side-copy {
  position: relative;
  z-index: 1;
  margin-top: clamp(54px, 9vh, 104px);
}

.wizard-side .eyebrow {
  color: #c8e9fb;
}

.wizard-side h1 {
  max-width: 360px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.1rem, 4.1vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.wizard-side p:not(.eyebrow) {
  max-width: 370px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.wizard-side-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.wizard-side-steps span,
.wizard-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius);
  font-weight: 900;
}

.wizard-side-steps span {
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.wizard-side-steps svg,
.wizard-back-link svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.wizard-side-steps svg {
  color: #c8e9fb;
}

.wizard-back-link {
  position: relative;
  z-index: 1;
  width: max-content;
  min-height: 44px;
  margin-top: auto;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: background 160ms ease, transform 160ms ease;
}

.wizard-back-link:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.wizard-panel {
  align-self: stretch;
  align-content: start;
  padding: 30px;
  border: 1px solid rgba(207, 225, 241, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.98)),
    var(--white);
  box-shadow: 0 24px 58px rgba(0, 44, 92, 0.13);
}

.wizard-panel.application-wizard::before {
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--green), var(--amber), var(--lilac));
}

.wizard-panel .wizard-card-head {
  padding: 2px 0 0;
}

.wizard-panel .wizard-card-head strong {
  max-width: none;
  color: var(--ink);
  font-size: 1.18rem;
}

.wizard-panel .wizard-card-head > span {
  min-height: 34px;
  background: var(--sky-soft);
  border-color: rgba(123, 108, 255, 0.24);
  color: #0052ac;
}

.wizard-panel .wizard-progress {
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f4f9ff;
}

.wizard-panel .wizard-progress span {
  min-height: 58px;
  border-color: transparent;
  background: transparent;
  color: var(--muted);
  box-shadow: none;
}

.wizard-panel .wizard-progress span.is-active {
  border-color: rgba(15, 98, 254, 0.26);
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: 0 10px 22px rgba(0, 44, 92, 0.08);
}

.wizard-panel .wizard-progress span.is-complete {
  border-color: rgba(23, 198, 163, 0.24);
  background: #edf7ff;
  color: #0052ac;
}

.wizard-panel .wizard-progress em {
  background: #eef7ff;
}

.wizard-panel .wizard-step {
  min-width: 0;
}

.wizard-panel .wizard-step.is-active {
  gap: 16px;
}

.wizard-panel fieldset {
  padding: 22px;
  border-color: #cfe1f1;
  background: #ffffff;
}

.wizard-panel legend {
  color: var(--ink);
  font-size: 1rem;
}

.wizard-panel label {
  color: var(--ink-soft);
}

.wizard-panel input,
.wizard-panel select,
.wizard-panel textarea {
  border-color: #cbdff2;
  background: #f8fcff;
}

.wizard-panel input:focus,
.wizard-panel select:focus,
.wizard-panel textarea:focus {
  border-color: var(--teal);
  outline-color: rgba(15, 98, 254, 0.2);
  box-shadow: 0 10px 24px rgba(15, 98, 254, 0.1);
}

.wizard-panel .wizard-actions {
  align-items: center;
}

.wizard-panel .button {
  width: auto;
  min-width: 150px;
}

.wizard-panel .button-primary {
  background: linear-gradient(135deg, var(--teal), var(--sky));
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 98, 254, 0.22);
}

.wizard-panel .button-primary:hover {
  background: linear-gradient(135deg, #2e8bff, var(--lilac));
}

.wizard-panel .button-secondary {
  border-color: #cfe1f1;
  background: #f6fbff;
  color: var(--ink-soft);
}

.wizard-panel .button-secondary:hover {
  background: #eef7ff;
}

.wizard-panel .wizard-review article,
.wizard-panel .consent-box {
  border-color: #cfe1f1;
  background: #f8fcff;
}

.wizard-panel .form-note {
  color: var(--teal-dark);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 54px 0 28px;
  background:
    radial-gradient(circle at 14% 0%, rgba(15, 98, 254, 0.16), transparent 34%),
    linear-gradient(180deg, #002c5c 0%, #061a36 100%),
    #061a36;
  color: var(--white);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.4fr) minmax(280px, 0.54fr);
  gap: 34px;
}

.footer-main p {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

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

.footer-company {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 640px;
  margin-top: 22px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 820;
}

.footer-company svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: #c8e9fb;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 820;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-cta {
  align-self: start;
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(23, 198, 163, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 98, 254, 0.12), rgba(23, 198, 163, 0.1), rgba(248, 184, 78, 0.08));
}

.footer-cta strong {
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.32;
}

.footer-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
}

.footer-action svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.92rem;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal.reveal-ready {
  opacity: 1;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal,
  .reveal.reveal-ready {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 14px;
    font-size: 0.9rem;
  }

  .hero-layout,
  .application-shell,
  .split-layout,
  .showcase-layout,
  .model-layout,
  .distribution-intro,
  .social-score-layout,
  .community-layout,
  .social-board-layout,
  .trust-layout,
  .prereg-layout,
  .faq-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-layout {
    gap: 28px;
  }

  .hero-impact-panel {
    max-width: 620px;
    align-self: auto;
  }

  .donation-hero,
  .directory-head,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .application-copy {
    position: static;
  }

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

  .distribution-map {
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
    grid-template-areas:
      "hub windows"
      "hub android"
      "cloud cloud";
  }

  .flow-step::before {
    display: none;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(0, 30, 65, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a,
  .nav-action {
    min-height: 46px;
    padding: 0 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    padding-top: calc(var(--header-height) + 42px);
    padding-bottom: 42px;
  }

  .hero-media {
    background-position: center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 20, 45, 0.96), rgba(0, 20, 45, 0.76));
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .application-copy h1 {
    font-size: 2.72rem;
  }

  .wizard-card-head {
    display: grid;
  }

  .wizard-card-head > span {
    justify-self: start;
    white-space: normal;
  }

  .hero-lead {
    font-size: 1.04rem;
  }

  .signal-grid,
  .benefit-grid,
  .donation-flow,
  .institution-list,
  .social-pulse-grid,
  .activity-strip,
  .distribution-summary,
  .distribution-principles,
  .product-grid,
  .trust-grid,
  .model-cards,
  .score-panel,
  .flow-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .distribution-map {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hub"
      "windows"
      "android"
      "cloud";
  }

  .distribution-map::before,
  .distribution-channel::before {
    display: none;
  }

  .distribution-hub {
    min-height: 300px;
  }

  .distribution-channel-cloud {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .prereg-copy h2 {
    font-size: 2.18rem;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(1200px, calc(100% - 44px));
  }

  .site-header {
    padding: 0 14px;
  }

  .brand-text {
    max-width: 58vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-layout {
    padding-top: calc(var(--header-height) + 30px);
    width: min(1200px, calc(100vw - 44px));
    max-width: calc(100vw - 44px);
    overflow: hidden;
  }

  .hero-layout > * {
    max-width: 100%;
    min-width: 0;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2rem, 8vw, 2.28rem);
    line-height: 1.08;
    overflow-wrap: normal;
  }

  .hero-copy-block,
  .hero-impact-panel,
  .impact-steps article > div {
    width: 100%;
    min-width: 0;
  }

  .hero-lead {
    max-width: 34ch;
    overflow-wrap: break-word;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    padding: 0 14px;
  }

  .hero-proof,
  .signal-grid,
  .benefit-grid,
  .donation-flow,
  .institution-list,
  .social-pulse-grid,
  .activity-strip,
  .distribution-summary,
  .distribution-principles,
  .product-grid,
  .trust-grid,
  .model-cards,
  .score-panel,
  .flow-timeline,
  .form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

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

  .wizard-actions {
    display: grid;
  }

  .wizard-card-head strong {
    font-size: 1.08rem;
  }

  .wizard-card-head > span {
    width: 100%;
    justify-content: center;
  }

  .application-insight-card {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    min-height: auto;
    padding: 14px 16px;
  }

  .institution-row {
    align-items: center;
    gap: 12px;
    min-height: 112px;
    padding: 14px 32px 14px 14px;
  }

  .institution-logo {
    flex-basis: 86px;
    width: 86px;
    height: 58px;
    padding: 8px;
  }

  .hero-impact-panel {
    padding: 18px;
  }

  .distribution-map {
    margin-top: 24px;
  }

  .distribution-summary div {
    min-height: auto;
  }

  .distribution-channel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .distribution-hub h3 {
    font-size: 1.62rem;
  }

  .signal-grid div {
    min-height: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .section-heading.centered {
    text-align: left;
  }

  .section-heading h2,
  .prereg-copy h2 {
    font-size: 1.82rem;
  }

  .product-toolbar {
    justify-content: stretch;
  }

  .filter-button {
    width: 100%;
    justify-content: center;
  }

  .product-card,
  .benefit-card,
  .mission-card,
  .trust-card,
  .model-cards article,
  .flow-step {
    min-height: auto;
  }

  .product-head {
    align-items: center;
  }

  .status-chip {
    white-space: normal;
    text-align: right;
  }

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

  .leaderboard li em {
    grid-column: 2;
    white-space: normal;
  }

  .prereg-form {
    padding: 18px;
  }

  .ecosystem-map {
    min-height: 1000px;
  }

  .map-core {
    width: 144px;
    height: 144px;
  }

  .map-node {
    width: min(100%, 260px);
    transform: translateX(-50%);
  }

  .map-node::before {
    display: none;
  }

  .node-firms,
  .node-products,
  .node-activation,
  .node-demand,
  .node-impact,
  .node-cloud {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .node-firms {
    top: 0;
  }

  .node-products {
    top: 130px;
  }

  .node-activation {
    top: 260px;
  }

  .node-demand {
    top: 610px;
  }

  .node-impact {
    top: 870px;
    bottom: auto;
  }

  .node-cloud {
    top: 740px;
    bottom: auto;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-action {
    justify-content: center;
  }
}

@media (max-width: 1120px) {
  .wizard-shell {
    grid-template-columns: minmax(250px, 0.58fr) minmax(0, 1.42fr);
  }
}

@media (max-width: 920px) {
  .wizard-stage {
    align-items: start;
    padding: 18px;
  }

  .wizard-shell {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .wizard-side {
    min-height: auto;
  }

  .wizard-side-copy {
    margin-top: 30px;
  }

  .wizard-side h1 {
    max-width: 520px;
    font-size: 2.32rem;
  }

  .wizard-side p:not(.eyebrow) {
    max-width: 620px;
  }

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

  .wizard-back-link {
    margin-top: 24px;
  }
}

@media (max-width: 680px) {
  .application-fullscreen {
    background:
      radial-gradient(circle at 8% 4%, rgba(15, 98, 254, 0.16), transparent 28%),
      linear-gradient(180deg, #f8fcff 0%, #eef7ff 100%);
  }

  .wizard-stage {
    padding: 12px;
  }

  .wizard-shell {
    gap: 12px;
  }

  .wizard-side,
  .wizard-panel {
    padding: 18px;
  }

  .wizard-side {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .wizard-side::after {
    display: none;
  }

  .wizard-brand {
    min-width: 0;
  }

  .wizard-brand strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .wizard-side-copy {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .wizard-side h1 {
    max-width: none;
    font-size: 1.46rem;
  }

  .wizard-side p:not(.eyebrow) {
    display: none;
  }

  .wizard-side-steps {
    display: none;
  }

  .wizard-back-link {
    display: none;
  }

  .wizard-panel .wizard-card-head {
    gap: 12px;
  }

  .wizard-panel .wizard-card-head > span {
    display: none;
  }

  .wizard-panel .wizard-progress {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    padding: 5px;
  }

  .wizard-panel .wizard-progress span {
    min-height: 52px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 4px;
    padding: 7px 4px;
    text-align: center;
    font-size: 0.72rem;
  }

  .wizard-panel .wizard-progress svg {
    display: none;
  }

  .wizard-panel .wizard-progress em {
    width: 28px;
    height: 28px;
  }

  .wizard-panel fieldset {
    padding: 18px;
  }

  .wizard-panel .button {
    width: 100%;
  }
}
