:root {
  --ink: #0b1f33;
  --navy: #062b4d;
  --blue: #075b96;
  --blue-bright: #00a2c7;
  --aqua: #5ad1d8;
  --gold: #f3c96b;
  --green: #1b8a65;
  --paper: #f5f5f1;
  --white: #ffffff;
  --muted: #607084;
  --line: #dce3e8;
  --danger: #a72b3f;
  --shadow: 0 26px 70px rgba(7, 32, 54, 0.12);
  --radius: 4px;
  --shell: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Aptos, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  border-radius: var(--radius);
}

:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow {
  max-width: 880px;
  margin-left: max(24px, calc((100vw - 1180px) / 2));
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 76px;
  border-bottom: 1px solid rgba(11, 31, 51, 0.1);
  background: rgba(245, 245, 241, 0.96);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
  height: 100%;
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  min-height: 44px;
}

.brand-mark {
  display: flex;
  gap: 3px;
  align-items: end;
  width: 31px;
  height: 31px;
  padding: 6px;
  background: var(--navy);
}

.brand-mark i {
  display: block;
  width: 5px;
  background: var(--gold);
  transform: skewY(-25deg);
}

.brand-mark i:nth-child(1) { height: 9px; }
.brand-mark i:nth-child(2) { height: 15px; }
.brand-mark i:nth-child(3) { height: 21px; }

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.21em;
}

.primary-nav {
  display: flex;
  gap: 28px;
  justify-content: center;
}

.primary-nav a,
.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #30465b;
  font-size: 13px;
  font-weight: 700;
}

.primary-nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--blue-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-actions form {
  margin: 0;
}

.language-selector {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 8px 0 11px;
  border: 1px solid rgba(11, 31, 51, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.language-selector > span {
  color: var(--blue);
  font-size: 16px;
  line-height: 1;
}

.language-selector select {
  width: 106px;
  min-height: 44px;
  padding: 0 24px 0 8px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.language-selector select:focus-visible {
  outline-offset: 0;
}

.language-selector noscript button {
  min-height: 38px;
  border: 0;
  background: transparent;
}

.cta-short { display: none; }

.button {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--navy);
  color: var(--white);
  background: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  box-shadow: 0 12px 25px rgba(6, 43, 77, 0.18);
  transform: translateY(-2px);
}

.button-compact {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 10px;
}

.button-outline {
  color: var(--navy);
  background: transparent;
}

.button-dark {
  color: var(--white);
  background: var(--navy);
}

.button-gold {
  border-color: var(--gold);
  color: #132434;
  background: var(--gold);
}

.button-glass {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.button-back {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.button-full {
  width: 100%;
}

.menu-toggle {
  display: none;
  min-height: 44px;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

:lang(am),
:lang(ti) {
  font-family: "Noto Sans Ethiopic", Nyala, Ebrima, Aptos, "Segoe UI", sans-serif;
}

:lang(am) h1,
:lang(am) h2,
:lang(am) h3,
:lang(am) blockquote,
:lang(ti) h1,
:lang(ti) h2,
:lang(ti) h3,
:lang(ti) blockquote,
:lang(am) .brand-copy strong,
:lang(ti) .brand-copy strong {
  font-family: "Noto Sans Ethiopic", Nyala, Ebrima, Aptos, "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
}

:lang(am) .eyebrow,
:lang(ti) .eyebrow,
:lang(am) .button,
:lang(ti) .button {
  letter-spacing: 0.01em;
  text-transform: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  color: var(--white);
  background: #031e36;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  background: url("../images/ecosystem-hero.png") center center / cover no-repeat;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(2, 25, 46, 0.92) 0%, rgba(2, 31, 55, 0.62) 45%, rgba(2, 27, 48, 0.05) 78%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 76px);
  padding-block: 70px 42px;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: var(--aqua);
}

.hero h1,
.page-hero h1,
.registration-aside h1,
.auth-card h1,
.message-card h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6.4vw, 94px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.hero h1 em {
  color: var(--gold);
  font-weight: inherit;
}

.hero-lede {
  max-width: 590px;
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof {
  display: flex;
  gap: 48px;
  margin-top: auto;
  padding-top: 54px;
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  padding-left: 14px;
  border-left: 2px solid rgba(90, 209, 216, 0.5);
}

.hero-proof strong {
  font-family: Georgia, serif;
  font-size: 15px;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section {
  padding-block: 116px;
}

.split-heading,
.trust-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 100px;
  align-items: end;
}

.split-heading h2,
.trust-grid h2,
.closing-grid h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.6vw, 66px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.split-heading > p,
.section-copy {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 64px;
}

.role-card {
  display: flex;
  flex-direction: column;
  min-height: 490px;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 0 0 rgba(7, 32, 54, 0);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.role-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.role-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.role-number {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.role-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--navy);
  background: #edf5f7;
  font-size: 24px;
}

.role-founder .role-icon { background: #e9f7f4; }
.role-talent .role-icon { background: #fff4d8; }

.card-label {
  margin: 58px 0 8px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.role-card h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 39px;
  font-weight: 500;
  line-height: 1.03;
}

.role-card > p:not(.card-label) {
  color: var(--muted);
  font-size: 14px;
}

.role-card > a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-dark,
.closing-cta {
  color: var(--white);
  background: var(--navy);
}

.manifesto-band {
  padding-block: 110px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 100px 1fr 310px;
  gap: 48px;
}

.manifesto-index {
  padding-top: 48px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
  font-weight: 800;
  writing-mode: vertical-rl;
}

blockquote {
  max-width: 690px;
  margin: 0 0 40px;
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 57px);
  line-height: 1.11;
  letter-spacing: -0.025em;
}

.line-link {
  display: inline-flex;
  gap: 34px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.principle-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.principle-list div {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.principle-list strong {
  color: var(--aqua);
  font-size: 10px;
}

.principle-list span {
  font-family: Georgia, serif;
  font-size: 19px;
}

.trust-grid {
  align-items: center;
}

.section-copy {
  margin: 28px 0 34px;
}

.trust-panel {
  padding: 34px;
  color: var(--white);
  background: #0d385b;
  box-shadow: var(--shadow);
}

.trust-badge {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--aqua);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.trust-badge span {
  display: grid;
  width: 28px;
  height: 28px;
  border: 1px solid var(--aqua);
  border-radius: 50%;
  place-items: center;
}

.trust-panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-panel li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-panel li > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
}

.trust-panel li strong {
  font-family: Georgia, serif;
  font-size: 20px;
}

.trust-panel li p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.closing-cta {
  padding-block: 74px;
  background: linear-gradient(115deg, var(--navy), #084c73);
}

.closing-grid {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr auto;
  gap: 40px;
  align-items: center;
}

.closing-grid h2 {
  font-size: clamp(36px, 4vw, 55px);
}

.page-hero {
  padding-block: 118px;
  color: var(--white);
  background: linear-gradient(120deg, #062b4d 10%, #075b75 100%);
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.02;
}

.page-hero p:not(.eyebrow) {
  max-width: 670px;
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.role-page-hero {
  background: linear-gradient(115deg, #062b4d 25%, #08748d);
}

.process-grid,
.status-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.process-grid article {
  min-height: 270px;
  padding: 30px;
  border-top: 3px solid var(--blue-bright);
  background: var(--white);
}

.process-grid article > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
}

.process-grid h2,
.timeline h2,
.status-grid h2,
.disclosure h2,
.project-grid h2 {
  margin: 35px 0 12px;
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.15;
}

.process-grid p,
.timeline p,
.status-grid p,
.disclosure p,
.project-grid p {
  color: var(--muted);
}

.notice-card,
.disclosure,
.finance-gate-note {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-top: 22px;
  padding: 28px 32px;
  color: var(--white);
  background: var(--navy);
}

.notice-card strong,
.disclosure h2 {
  min-width: 270px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: 23px;
}

.notice-card p,
.disclosure p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.prose-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.prose-lead {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 31px;
  line-height: 1.35;
}

.prose-grid h2 {
  margin: 0 0 10px;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 500;
}

.prose-grid h2:not(:first-child) {
  margin-top: 42px;
}

.prose-grid p:not(.prose-lead) {
  color: var(--muted);
}

.timeline {
  max-width: 900px;
}

.timeline article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.timeline article > span {
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 900;
}

.timeline h2 {
  margin: 0;
  font-size: 31px;
}

.timeline p {
  margin-bottom: 0;
}

.status-grid article {
  min-height: 290px;
  padding: 34px;
  background: var(--white);
}

.status-grid article > span {
  padding: 6px 10px;
  color: var(--white);
  background: var(--green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.status-gated { border-top: 4px solid var(--gold); }
.status-never { border-top: 4px solid var(--danger); }
.status-gated > span { background: #91650c !important; }
.status-never > span { background: var(--danger) !important; }

.disclosure {
  margin-top: 16px;
}

.project-grid > article {
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(6, 43, 77, 0.08);
}

.project-visual {
  display: flex;
  align-items: end;
  height: 210px;
  padding: 22px;
  background: linear-gradient(140deg, #0a566b, #8fbf9b);
}

.pv-two { background: linear-gradient(140deg, #142d46, #b38241); }
.pv-three { background: linear-gradient(140deg, #063b62, #2ba3a5); }

.project-visual span {
  padding: 6px 9px;
  color: var(--white);
  background: rgba(6, 43, 77, 0.8);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.project-body {
  padding: 28px;
}

.project-body small {
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.project-body h2 {
  margin: 8px 0 12px;
}

.project-body dl {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.project-body dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-body dd {
  margin: 3px 0 0;
  font-size: 12px;
  font-weight: 700;
}

.registration-page {
  display: grid;
  grid-template-columns: minmax(360px, 0.74fr) minmax(560px, 1.26fr);
  min-height: calc(100vh - 76px);
  background: var(--white);
}

.registration-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px clamp(48px, 6vw, 110px);
  color: var(--white);
  background: linear-gradient(rgba(4, 39, 69, 0.87), rgba(4, 39, 69, 0.95)), url("../images/ecosystem-hero.png") 70% center / cover;
}

.registration-brand {
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 700;
}

.registration-brand span {
  display: block;
  color: var(--aqua);
  font-family: Inter, sans-serif;
  font-size: 8px;
  letter-spacing: 0.2em;
}

.registration-aside h1 {
  font-size: clamp(50px, 5vw, 72px);
}

.registration-aside p:not(.eyebrow) {
  max-width: 450px;
  color: rgba(255, 255, 255, 0.68);
}

.registration-aside small {
  color: rgba(255, 255, 255, 0.52);
}

.registration-main {
  display: grid;
  min-height: 820px;
  padding: 58px clamp(38px, 7vw, 110px);
  place-items: center;
}

.registration-main form {
  width: min(100%, 690px);
}

.form-progress {
  margin-bottom: 45px;
}

.form-progress div {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

progress {
  width: 100%;
  height: 4px;
  border: 0;
  border-radius: 0;
  background: var(--line);
  accent-color: var(--blue-bright);
}

progress::-webkit-progress-bar { background: var(--line); }
progress::-webkit-progress-value { background: var(--blue-bright); }
progress::-moz-progress-bar { background: var(--blue-bright); }

.form-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  scroll-margin-top: 96px;
}

[data-registration-form][data-enhanced] .form-step:not(.is-active) {
  display: none;
}

.form-step legend {
  width: 100%;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.form-intro {
  margin: 12px 0 32px;
  color: var(--muted);
}

.path-options {
  display: grid;
  gap: 10px;
}

.path-option {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 100px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.path-option:has(input:checked) {
  border-color: var(--blue-bright);
  box-shadow: inset 4px 0 0 var(--blue-bright);
}

.path-option:has(input:focus-visible) {
  outline: 3px solid var(--aqua);
  outline-offset: 3px;
}

.path-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.path-glyph {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--blue);
  background: #eef6f7;
  font-size: 22px;
}

.path-option strong,
.path-option small {
  display: block;
}

.path-option strong {
  font-family: Georgia, serif;
  font-size: 20px;
}

.path-option small {
  color: var(--muted);
  font-size: 12px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #30465b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #bdc9d2;
  color: var(--ink);
  background: var(--white);
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-bright);
  outline: 3px solid rgba(0, 162, 199, 0.14);
}

.field > small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

.field-validation-error,
.field-validation,
.field > span {
  display: block;
  margin-top: 5px;
  color: var(--danger);
  font-size: 11px;
  font-weight: 700;
}

.validation-summary {
  margin-bottom: 22px;
  padding: 0;
  color: var(--danger);
  font-size: 12px;
}

.validation-summary:empty,
.validation-summary-valid {
  display: none;
}

.validation-summary ul {
  margin: 0;
  padding: 14px 18px 14px 34px;
  border-left: 3px solid var(--danger);
  background: #fff0f2;
}

.role-fields[hidden] {
  display: none;
}

.check-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-height: 44px;
  color: #30465b;
  font-size: 13px;
  cursor: pointer;
}

.check-row input {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.step-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.step-actions-end {
  justify-content: end;
}

.consent-card {
  padding: 24px;
  color: var(--white);
  background: var(--navy);
}

.consent-card strong {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 20px;
}

.consent-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.consent-check {
  margin-top: 24px;
}

.auth-page,
.message-page {
  display: grid;
  min-height: 720px;
  padding: 70px 24px;
  background: linear-gradient(125deg, #e8efef, #f8f6ef);
  place-items: center;
}

.auth-card,
.message-card {
  width: min(100%, 510px);
  padding: clamp(32px, 6vw, 62px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.auth-card h1,
.message-card h1 {
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.02;
}

.auth-card > p:not(.eyebrow),
.message-card > p:not(.eyebrow) {
  margin: 20px 0 30px;
  color: var(--muted);
}

.auth-footer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.auth-footer a {
  color: var(--blue);
  font-weight: 800;
}

.message-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  place-items: center;
  font-size: 24px;
}

.message-card code {
  display: block;
  overflow-wrap: anywhere;
  margin: 20px 0;
  padding: 12px;
  color: #30465b;
  background: #edf1f3;
}

.dashboard-page {
  min-height: 820px;
  padding-block: 80px 110px;
  background: #eef1f1;
}

.dashboard-header {
  display: flex;
  gap: 40px;
  align-items: end;
  justify-content: space-between;
}

.dashboard-header h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(42px, 5vw, 65px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.dashboard-header p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
}

.dashboard-identity {
  display: flex;
  gap: 24px;
  align-items: center;
}

.profile-photo-link,
.profile-photo-current img,
.profile-photo-current > span {
  width: 104px;
  height: 104px;
  flex: 0 0 104px;
  border-radius: 50%;
}

.profile-photo-link {
  display: grid;
  overflow: hidden;
  place-items: center;
  border: 3px solid var(--white);
  background: var(--blue);
  box-shadow: 0 8px 28px rgba(20, 42, 55, 0.16);
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 30px;
  text-decoration: none;
}

.profile-photo-link img,
.profile-photo-current img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-photo-action {
  display: inline-block;
  margin-top: 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-photo-page {
  padding-block: 70px;
}

.profile-photo-card {
  width: min(720px, calc(100% - 32px));
}

.profile-photo-current {
  display: flex;
  margin: 24px 0;
  gap: 18px;
  align-items: center;
}

.profile-photo-current img,
.profile-photo-current > span {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #eef1f1;
  color: var(--blue);
  font-size: 34px;
}

.profile-photo-current p {
  margin: 0;
  color: var(--muted);
}

.photo-crop-workspace {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(180px, 0.7fr);
  gap: 24px;
  margin: 20px 0;
  align-items: center;
}

.photo-crop-workspace[hidden] {
  display: none;
}

.photo-crop-workspace canvas {
  width: min(100%, 420px);
  height: auto;
  border-radius: 50%;
  background: #e5eaeb;
  box-shadow: inset 0 0 0 2px var(--white), 0 0 0 1px var(--line);
}

.photo-crop-controls {
  display: grid;
  gap: 18px;
}

.photo-crop-controls label {
  color: #30465b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.photo-crop-controls input {
  width: 100%;
  margin-top: 8px;
}

.photo-status {
  min-height: 22px;
  color: var(--blue);
  font-size: 12px;
}

.profile-score {
  width: 240px;
  padding: 22px;
  color: var(--white);
  background: var(--navy);
}

.profile-score span,
.metric-grid span,
.metric-grid small {
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-score strong {
  display: block;
  margin: 5px 0 10px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 34px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 42px;
}

.metric-grid article {
  padding: 25px;
  background: var(--white);
}

.metric-grid span,
.metric-grid small {
  color: var(--muted);
}

.metric-grid strong {
  display: block;
  margin: 12px 0 5px;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 500;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 12px;
  margin-top: 12px;
}

.focus-card,
.task-card {
  padding: 34px;
  background: var(--white);
}

.focus-card {
  color: var(--white);
  background: linear-gradient(135deg, #07446a, #087b8c);
}

.focus-card h2,
.task-card h2 {
  margin: 70px 0 14px;
  font-family: Georgia, serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.08;
}

.focus-card > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.focus-card .button {
  margin-top: 30px;
}

.task-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.task-heading h2 {
  margin: 0;
}

.task-heading span {
  color: var(--green);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.task-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.task-card li {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.task-card li > span {
  width: 9px;
  height: 9px;
  border: 2px solid var(--blue-bright);
  border-radius: 50%;
}

.task-card li strong {
  font-family: Georgia, serif;
  font-size: 17px;
}

.task-card li p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.task-card li small {
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.finance-gate-note {
  margin-top: 12px;
  background: #fff6df;
  color: var(--ink);
}

.finance-gate-note strong {
  color: #7b580d;
}

.finance-gate-note span {
  color: var(--muted);
  font-size: 12px;
}

.dashboard-profile-links,
.ecosystem-report-actions,
.proposal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.ecosystem-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.network-card,
.ecosystem-report-card {
  min-width: 0;
  padding: 34px;
  background: var(--white);
}

.network-card > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.network-totals,
.ecosystem-report-metrics,
.capital-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 22px 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.network-totals > div,
.ecosystem-report-metrics > div,
.capital-metrics article {
  min-width: 0;
  padding: 18px;
  background: var(--white);
}

.network-totals strong,
.ecosystem-report-metrics strong,
.capital-metrics strong {
  display: block;
  overflow-wrap: anywhere;
  font-family: Georgia, serif;
  font-size: clamp(22px, 3vw, 31px);
  font-weight: 500;
}

.network-totals span,
.ecosystem-report-metrics span,
.capital-metrics span,
.referral-link > span,
.proposal-numbers dt,
.active-roles > span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.referral-link input,
.capital-action-card input,
.proposal-invest input {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px;
  background: #f8faf8;
  color: var(--ink);
  font: inherit;
}

.network-members {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.network-members li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.network-members small {
  color: var(--muted);
}

.ecosystem-report-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.active-roles {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.ecosystem-report-actions {
  margin-top: 24px;
}

.ecosystem-page {
  min-height: 720px;
  padding-block: 74px 110px;
  background: #eef1f1;
}

.ecosystem-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 34px;
}

.ecosystem-hero h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(44px, 6vw, 74px);
  font-weight: 500;
  letter-spacing: -.035em;
}

.ecosystem-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
}

.proposal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.proposal-card,
.capital-action-card,
.capital-disabled-card {
  min-width: 0;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  background: var(--white);
}

.proposal-card > header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.proposal-sector,
.proposal-status {
  color: var(--green);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.proposal-status-approved { color: #286846; }
.proposal-status-rejected { color: #9b3e37; }

.proposal-card h2,
.capital-action-card h2,
.capital-disabled-card h2 {
  margin: 28px 0 12px;
  font-family: Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
}

.proposal-card > p,
.capital-action-card p,
.capital-disabled-card li {
  color: var(--muted);
  line-height: 1.65;
}

.proposal-numbers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.proposal-numbers div {
  padding: 14px;
  background: #f4f6f4;
}

.proposal-numbers dd {
  margin: 0;
  font-weight: 750;
}

.proposal-actions .button {
  min-height: 38px;
  padding: 10px 16px;
}

.proposal-actions .is-selected {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.proposal-owner-note {
  font-size: 12px;
  font-weight: 700;
}

.proposal-invest {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.proposal-invest label span,
.capital-action-card label span {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 800;
}

.proposal-form-card {
  width: min(860px, calc(100% - 32px));
}

.form-grid-two,
.capital-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.capital-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}

.capital-actions {
  margin-top: 20px;
}

.capital-action-card h2,
.capital-disabled-card h2 {
  margin-top: 0;
}

.capital-action-card .button {
  margin-top: 18px;
}

.capital-disabled-card {
  margin-top: 20px;
}

.phone-verification-status {
  display: grid;
  gap: 4px;
  margin: 22px 0;
  padding: 16px;
  border-left: 4px solid #b98722;
  background: #fff6df;
}

.phone-verification-status.is-confirmed {
  border-color: #398b5b;
  background: #e3f3e7;
}

.phone-verification-status span {
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  padding-block: 70px 24px;
  color: var(--white);
  background: #031b2f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.brand-light .brand-mark {
  background: var(--white);
}

.brand-light .brand-copy small {
  color: var(--aqua);
}

.footer-grid > div:first-child p {
  max-width: 400px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.footer-grid h2 {
  margin: 0 0 16px;
  color: var(--aqua);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) a {
  display: block;
  min-height: 38px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

@media (max-width: 1020px) {
  .primary-nav { display: none; }
  .menu-toggle { display: inline-flex; grid-column: 2; justify-self: end; }
  .nav-shell { grid-template-columns: auto 1fr auto; }
  .primary-nav.is-open {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }
  .primary-nav.is-open a { border-bottom: 1px solid var(--line); }
  .manifesto-grid { grid-template-columns: 55px 1fr; }
  .principle-list { grid-column: 2; }
  .closing-grid { grid-template-columns: 1fr auto; }
  .closing-grid .eyebrow { grid-column: 1 / -1; }
  .registration-page { grid-template-columns: 1fr; }
  .registration-aside { min-height: 430px; padding: 48px; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 32px, 1180px); }
  .site-header { height: 68px; }
  .brand-copy { display: none; }
  .nav-actions .text-link { display: none; }
  .nav-actions { gap: 8px; }
  .nav-actions .button { padding-inline: 12px; }
  .language-selector { padding-inline: 8px 5px; }
  .language-selector > span { display: none; }
  .language-selector select { width: 84px; padding-left: 4px; }
  .menu-toggle { grid-column: auto; }
  .nav-shell { gap: 10px; grid-template-columns: auto 1fr auto; }
  .primary-nav.is-open { top: 68px; }
  .hero { min-height: 850px; }
  .hero-content { min-height: 850px; padding-block: 64px 34px; }
  .hero-image { background-position: 63% center; opacity: 0.65; }
  .hero-shade { background: linear-gradient(180deg, rgba(2, 25, 46, 0.7), rgba(2, 25, 46, 0.96) 72%); }
  .hero h1 { font-size: clamp(48px, 15vw, 66px); }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof { gap: 18px; overflow-x: auto; }
  .hero-proof div { min-width: 155px; }
  .section { padding-block: 76px; }
  .split-heading,
  .trust-grid,
  .prose-grid,
  .dashboard-grid { grid-template-columns: 1fr; gap: 38px; }
  .role-grid,
  .process-grid,
  .status-grid,
  .project-grid,
  .metric-grid { grid-template-columns: 1fr; }
  .role-card { min-height: 420px; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-index { display: none; }
  .principle-list { grid-column: auto; }
  .closing-grid { grid-template-columns: 1fr; }
  .page-hero { padding-block: 82px; }
  .narrow { margin-inline: auto; }
  .notice-card,
  .disclosure,
  .finance-gate-note { align-items: flex-start; flex-direction: column; gap: 12px; }
  .registration-aside { min-height: 320px; padding: 28px 24px; }
  .registration-aside h1 { font-size: clamp(42px, 13vw, 58px); }
  .registration-aside p:not(.eyebrow) { margin-bottom: 12px; }
  .registration-main { min-height: auto; padding: 48px 24px; }
  .field-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .step-actions { gap: 10px; }
  .step-actions .button { flex: 1; padding-inline: 12px; }
  .dashboard-header { align-items: stretch; flex-direction: column; }
  .dashboard-identity { align-items: flex-start; }
  .profile-score { width: 100%; }
  .task-card li { grid-template-columns: 12px 1fr; }
  .task-card li small { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-base { align-items: flex-start; flex-direction: column; gap: 10px; }
  .photo-crop-workspace { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .cta-full { display: none; }
  .cta-short { display: inline; }
  .nav-actions .button { min-width: 56px; }
  .language-selector select { width: 70px; }
  .registration-aside {
    min-height: 275px;
  }
  .registration-aside h1 {
    font-size: 38px;
  }
  .registration-aside p:not(.eyebrow),
  .registration-aside > small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Ebrima ships with Windows and renders Ethiopic text cleanly at display sizes. */
html:lang(am) body,
html:lang(ti) body,
html:lang(am) h1,
html:lang(am) h2,
html:lang(am) h3,
html:lang(am) blockquote,
html:lang(ti) h1,
html:lang(ti) h2,
html:lang(ti) h3,
html:lang(ti) blockquote,
html:lang(am) .form-step legend,
html:lang(ti) .form-step legend {
  font-family: Ebrima, "Noto Sans Ethiopic", Nyala, Aptos, "Segoe UI", sans-serif;
}

.content-announcement { background: var(--gold, #e4b957); color: #142f26; }
.content-announcement .shell { min-height: 48px; display: flex; align-items: center; gap: 16px; }
.content-announcement span { border: 1px solid rgba(20, 47, 38, .35); border-radius: 30px; padding: 3px 9px; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.content-announcement p { margin: 0; font-size: 14px; font-weight: 600; }
.compact-hero { min-height: 360px; display: grid; align-items: center; }
.compact-hero .narrow-shell { max-width: 900px; margin-inline: auto; }
.compact-hero h1 { margin-bottom: 18px; }
.compact-hero p:last-child { max-width: 700px; color: rgba(255,255,255,.72); font-size: clamp(17px,2vw,21px); }
.form-shell { max-width: 1180px; }
.contact-layout { display: grid; grid-template-columns: minmax(250px,.75fr) minmax(0,1.35fr); gap: clamp(32px,7vw,90px); align-items: start; }
.contact-aside { position: sticky; top: 120px; }
.contact-aside h2 { font-size: clamp(31px,4vw,48px); line-height: 1.08; }
.contact-aside>p:last-child { color: var(--muted,#616c65); line-height: 1.75; }
.form-card { background: #fff; border: 1px solid #dce2dc; padding: clamp(24px,4vw,46px); box-shadow: 0 24px 60px rgba(19,46,37,.08); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.form-grid label,.community-composer label { display: block; color: #30463d; font-size: 13px; font-weight: 700; }
.form-grid label>span:first-child,.community-composer label>span:first-child { display: block; margin-bottom: 7px; }
.form-grid input,.form-grid select,.form-grid textarea,.community-composer textarea,.report-panel select,.report-panel textarea { width: 100%; border: 1px solid #cbd5ce; background: #fbfcfa; padding: 12px 13px; font: inherit; border-radius: 2px; outline: none; }
.form-grid input:focus,.form-grid select:focus,.form-grid textarea:focus,.community-composer textarea:focus { border-color: #356b58; box-shadow: 0 0 0 3px rgba(53,107,88,.11); background: #fff; }
.form-grid .field-wide { grid-column: 1/-1; }
.form-grid [data-valmsg-for] { display: block; color: #9d3e37; font-size: 11px; margin-top: 4px; }
.feedback { padding: 13px 15px; margin-bottom: 18px; font-size: 14px; font-weight: 700; border-left: 4px solid; }
.feedback-success { background: #e3f3e7; color: #245e3f; border-color: #398b5b; }
.feedback-error { background: #f9e4e1; color: #86342e; border-color: #ae4a41; }
.validation-summary { color: #943a34; font-size: 13px; margin-bottom: 15px; }
.community-section { background: #f5f6f2; }
.community-layout { max-width: 1120px; display: grid; grid-template-columns: minmax(250px,.7fr) minmax(0,1.3fr); gap: 30px; align-items: start; }
.community-composer { position: sticky; top: 110px; }
.community-composer textarea { resize: vertical; min-height: 130px; margin-bottom: 14px; }
.comment-stream { display: flex; flex-direction: column; gap: 14px; }
.comment-card,.empty-state { background: #fff; border: 1px solid #dce2dc; padding: 22px; }
.comment-card header { display: flex; align-items: center; gap: 10px; }
.comment-card header strong,.comment-card header time { display: block; }
.comment-card header time { color: #7b847f; font-size: 11px; margin-top: 2px; }
.avatar-small { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #173d31; font-weight: 800; }
.comment-card>p { white-space: pre-line; line-height: 1.7; color: #3e4b45; }
.report-panel { margin-top: 13px; font-size: 12px; color: #68726d; }
.report-panel summary { cursor: pointer; width: max-content; text-decoration: underline; }
.report-panel form { display: grid; gap: 8px; margin-top: 10px; }
.empty-state { text-align: center; padding-block: 55px; }
.empty-state>span { display: block; color: #567c6d; font-size: 25px; }
.empty-state h2 { margin: 8px 0 3px; }
.empty-state p { color: #6e7772; margin: 0; }
.editorial-hero { padding-block: clamp(72px, 10vw, 130px); }
.editorial-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, .75fr); gap: clamp(34px, 8vw, 110px); align-items: end; }
.editorial-hero h1 { max-width: 760px; margin: 0; color: #fff; font-size: clamp(46px, 7vw, 88px); line-height: .96; }
.editorial-hero-grid > p { max-width: 570px; margin: 0; color: rgba(255,255,255,.72); font-size: clamp(17px, 2vw, 21px); line-height: 1.65; }
.editorial-section,.governance-section { background: #f5f6f2; }
.editorial-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.editorial-card { min-width: 0; padding: clamp(26px, 4vw, 42px); border: 1px solid #dce2dc; background: #fff; box-shadow: 0 20px 50px rgba(19,46,37,.06); }
.editorial-card-meta { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 26px; color: #6c7771; font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.editorial-card-meta span { color: #315f4e; }
.editorial-card h2 { margin: 0 0 13px; font-size: clamp(25px, 3vw, 38px); line-height: 1.08; overflow-wrap: anywhere; }
.editorial-summary { margin: 0 0 18px; color: #3f5048; font-size: 17px; font-weight: 650; line-height: 1.55; }
.editorial-body { margin: 0; color: #626e68; line-height: 1.75; white-space: pre-line; overflow-wrap: anywhere; }
.public-empty { max-width: 760px; margin-inline: auto; padding: clamp(42px, 8vw, 82px); border: 1px solid #dce2dc; background: #fff; text-align: center; }
.public-empty > span { display: grid; width: 52px; height: 52px; place-items: center; margin: 0 auto 18px; border-radius: 50%; background: #e8f2ed; color: #2e6652; font-size: 23px; font-weight: 800; }
.public-empty h2 { margin: 0 0 8px; font-size: clamp(28px, 4vw, 44px); }
.public-empty p { margin: 0; color: #69736e; line-height: 1.65; }
.public-empty-warning { border-color: #e0c47e; background: #fffaf0; }
.public-empty-warning > span { background: #f4e8c8; color: #785d17; }
.governance-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.governance-grid article { padding: clamp(26px, 3vw, 38px); border-top: 4px solid #d7ad48; background: #fff; }
.governance-grid article > span { color: #8c712e; font-size: 12px; font-weight: 850; letter-spacing: .15em; }
.governance-grid h2 { margin: 34px 0 13px; font-size: clamp(25px, 3vw, 36px); line-height: 1.08; }
.governance-grid p { margin: 0; color: #626e68; line-height: 1.72; }
.governance-action { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.governance-action a { min-height: 44px; }
@media (max-width: 760px) {
  .contact-layout,.community-layout { grid-template-columns: 1fr; }
  .contact-aside,.community-composer { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .field-wide { grid-column: auto; }
  .content-announcement .shell { align-items: flex-start; padding-block: 11px; }
  .editorial-hero-grid,.editorial-grid,.governance-grid { grid-template-columns: 1fr; }
  .editorial-hero-grid { align-items: start; }
  .editorial-card-meta { align-items: flex-start; flex-direction: column; gap: 6px; }
  .governance-action { align-items: stretch; flex-direction: column; }
  .governance-action .button { width: 100%; }
  .ecosystem-summary-grid,
  .proposal-grid,
  .capital-actions,
  .form-grid-two { grid-template-columns: 1fr; }
  .capital-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ecosystem-hero { align-items: stretch; flex-direction: column; }
  .ecosystem-hero .button { width: 100%; }
  .proposal-invest { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .network-totals,
  .ecosystem-report-metrics,
  .capital-metrics { grid-template-columns: 1fr; }
  .network-members li { align-items: flex-start; flex-direction: column; gap: 3px; }
}

.hero-path-action {
  display: flex;
  min-width: 190px;
  flex-direction: column;
  gap: 10px;
}

.hero-path-action .button {
  justify-content: center;
}

.hero-learn-link {
  align-self: center;
  padding: 2px 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: rgba(228, 185, 87, 0.62);
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.hero-learn-link:hover,
.hero-learn-link:focus-visible {
  color: var(--gold);
}

.explainer-section {
  overflow: hidden;
  background: #f7f5ef;
}

.explainer-section-home {
  padding-top: 28px;
}

.explainer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-areas:
    "photo copy"
    "media media";
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
}

.explainer-photo {
  grid-area: photo;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #d8e2dc;
  box-shadow: 0 28px 70px rgba(7, 32, 54, 0.13);
}

.explainer-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.explainer-copy {
  grid-area: copy;
  min-width: 0;
}

.explainer-copy h2 {
  max-width: 680px;
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.2vw, 61px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.explainer-copy > p:last-child,
.explainer-goal p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.explainer-goal {
  margin-bottom: 20px;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: var(--white);
}

.explainer-goal strong {
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.explainer-goal p {
  margin: 7px 0 0;
}

.explainer-media {
  grid-area: media;
  width: min(100%, 960px);
  margin-inline: auto;
}

.explainer-video,
.video-pending {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 28px 70px rgba(7, 32, 54, 0.2);
}

.explainer-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-pending {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 34px;
  color: var(--white);
  text-align: center;
}

.video-pending::before {
  content: "▶";
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--gold);
  font-size: 22px;
}

.video-pending strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
}

.video-pending p {
  max-width: 540px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 760px) {
  .hero-path-action { width: 100%; }
  .hero-learn-link { padding-bottom: 7px; }
  .explainer-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "photo" "copy" "media";
  }
  .explainer-section-home { padding-top: 76px; }
}
