:root {
  --bg: #edf1f4;
  --bg-soft: #f6f3ee;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-dark: rgba(11, 28, 45, 0.88);
  --text: #0b1c2d;
  --muted: #46586d;
  --line: rgba(11, 28, 45, 0.12);
  --line-strong: rgba(255, 255, 255, 0.18);
  --accent: #b78456;
  --accent-deep: #8b5f39;
  --shadow: 0 24px 70px rgba(13, 28, 43, 0.15);
  --shadow-soft: 0 18px 36px rgba(13, 28, 43, 0.08);
  --section-space: 28px;
  --section-pad-y: clamp(36px, 4.1vw, 44px);
  --section-pad-x: clamp(24px, 3vw, 34px);
  --editorial-gap: clamp(28px, 4vw, 44px);
  --module-gap: clamp(18px, 2.4vw, 24px);
  --heading-gap: 10px;
  --heading-space: clamp(24px, 3vw, 32px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(183, 132, 86, 0.16), transparent 28%),
    linear-gradient(180deg, #dfe7ee 0%, #edf1f4 22%, #f4efe7 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 80% 10%, rgba(11, 28, 45, 0.08), transparent 24%);
  pointer-events: none;
}

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

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

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

.visually-hidden {
  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 {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px;
}

.centered-shell {
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.hero,
.section,
.footer,
.quote-band {
  border-radius: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 910px;
  padding: 26px 30px 30px;
  background:
    linear-gradient(180deg, rgba(183, 132, 86, 0.08), rgba(11, 28, 45, 0.14)),
    url("assets/fellowship-conversation.jpg") 74% center / cover no-repeat,
    var(--surface-dark);
  color: #f4f0e9;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
      to right,
      rgba(8, 20, 35, 0.85),
      rgba(8, 20, 35, 0.65),
      rgba(8, 20, 35, 0.25)
    );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 132, 86, 0.55), rgba(183, 132, 86, 0));
  filter: blur(20px);
  pointer-events: none;
}

.topbar,
.hero-content,
.story-grid,
.story-panels,
.process-grid,
.values-grid,
.audience-layout,
.audience-grid,
.organizations-grid,
.join-layout,
.intake-grid,
.footer-grid,
.field-grid {
  display: grid;
  gap: 24px;
}

.topbar,
.hero-content {
  position: relative;
  z-index: 1;
}

.topbar {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.brand-name {
  max-width: 14ch;
  line-height: 1.1;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 0.92rem;
  color: rgba(244, 240, 233, 0.78);
}

.nav-links a,
.footer-card a {
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover,
.footer-card a:hover {
  color: #ffffff;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  min-height: calc(910px - 110px);
  padding-top: 68px;
}

.hero-copy {
  max-width: 680px;
}

.hero-media {
  display: none;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 44px rgba(5, 14, 24, 0.24);
}

.hero-media img {
  width: 100%;
  height: auto;
}

.eyebrow,
.panel-label,
.step-tag {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
}

.eyebrow,
.panel-label {
  color: #dcc3ab;
}

h1,
h2,
h3,
.quote-band-copy,
.hero-quote {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  margin-top: 14px;
  font-size: clamp(3.05rem, 6.8vw, 6rem);
  max-width: 11.5ch;
  line-height: 0.96;
}

h2 {
  font-size: clamp(2.05rem, 3.4vw, 3.2rem);
  line-height: 1.02;
}

h3 {
  font-size: clamp(1.45rem, 1.75vw, 1.7rem);
  line-height: 1.08;
}

p,
li,
label span,
input,
select,
textarea {
  line-height: 1.7;
  text-wrap: pretty;
}

.hero-text,
.story-copy p,
.comparison-card p,
.process-card p,
.value-card p,
.audience-card p,
.pilot-card p,
.org-card p,
.footer-copy,
.form-footnote,
.form-status {
  color: rgba(244, 240, 233, 0.78);
}

.section .eyebrow,
.footer .eyebrow,
.join .eyebrow {
  color: var(--accent-deep);
}

.section,
.footer {
  margin-top: var(--section-space);
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--surface);
  backdrop-filter: blur(18px);
}

.section-heading {
  display: grid;
  gap: var(--heading-gap);
  margin-bottom: var(--heading-space);
}

.section-heading > * {
  margin: 0;
}

.section-heading h2 {
  max-width: 24ch;
}

.story .section-heading h2,
.process .section-heading h2 {
  max-width: 21ch;
}

.audience .section-heading h2,
.organizations .section-heading h2 {
  max-width: 28ch;
}

.join .section-heading h2 {
  max-width: 18ch;
}

.compact-heading {
  gap: 8px;
  margin-bottom: 0;
}

.join-note {
  margin: 0;
  max-width: 48ch;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.join .section-heading .eyebrow {
  margin-bottom: 0;
}

.section h2,
.section h3,
.footer h2,
.section p,
.section li,
.footer p,
.footer a,
.join-form label span {
  color: var(--text);
}

.section p,
.section li,
.footer p,
.footer a,
.join-form label span,
input,
select,
textarea {
  font-size: 0.98rem;
}

.hero-text {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: clamp(1.02rem, 0.28vw + 0.98rem, 1.08rem);
  line-height: 1.74;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
  margin-top: 28px;
}

.hero-primary-cta {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.hero-cta-note {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  text-align: center;
  color: rgba(244, 240, 233, 0.72);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
  cursor: pointer;
}

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

.button-primary {
  background: #f3ebe1;
  color: #081320;
}

.button-primary:hover {
  background: #ffffff;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff8f0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
}

.hero-highlights,
.clean-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-highlights li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff8f0;
  backdrop-filter: blur(10px);
}

.hero-foundation {
  max-width: 52ch;
  margin: 26px 0 0;
  color: rgba(244, 240, 233, 0.74);
}

.hero-panel,
.comparison-card,
.process-card,
.value-card,
.audience-card,
.pilot-card,
.org-card,
.intake-card,
.join-form,
.footer-card {
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  padding: 20px;
  background: rgba(249, 245, 239, 0.76);
  backdrop-filter: blur(16px);
  color: var(--text);
}

.hero-panel .panel-label {
  color: #22374a;
  opacity: 0.92;
}

.hero-panel-stack {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.fellowship-model {
  width: 100%;
  max-width: 500px;
  justify-self: end;
  margin-top: 250px;
  transform: translateX(30px);
}

.detail-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 28, 45, 0.1);
}

.detail-card h2 {
  margin-top: 8px;
  font-size: clamp(1.55rem, 1.8vw, 1.72rem);
  line-height: 1.04;
  color: var(--text);
}

.detail-card p,
.hero-quote,
.form-footnote {
  margin-top: 10px;
}

.detail-card p,
.comparison-card p,
.process-card p,
.value-card p,
.audience-card p,
.pilot-card p,
.org-card p,
.intake-card li,
.story-copy p,
.join-copy p,
.footer-copy,
.footer-card p,
.form-footnote,
.form-status {
  color: var(--muted);
}

.detail-number {
  font-weight: 800;
  color: var(--accent-deep);
}

.hero-quote {
  padding-top: 14px;
  color: var(--text);
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  line-height: 1.14;
}

.story-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: var(--editorial-gap);
}

.founder-origin {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 239, 232, 0.82));
}

.founder-origin-layout {
  display: grid;
  width: min(100%, 1180px);
  margin-inline: auto;
  grid-template-columns: minmax(380px, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(24px, 3vw, 34px);
  align-items: center;
}

.founder-portrait {
  margin: 0;
  width: 100%;
  max-width: 448px;
  justify-self: center;
  align-self: center;
}

.founder-attribution {
  display: grid;
  gap: 2px;
  margin: 12px 4px 0;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--muted);
}

.founder-portrait-shell {
  position: relative;
  overflow: hidden;
  padding: 8px;
  border-radius: 30px;
  border: 1px solid rgba(11, 28, 45, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(236, 229, 219, 0.9));
  box-shadow: var(--shadow-soft);
}

.founder-portrait-shell::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(183, 132, 86, 0.24), rgba(183, 132, 86, 0));
  pointer-events: none;
}

.founder-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 22px;
}

.founder-origin-copy {
  display: grid;
  gap: 16px;
  max-width: 64ch;
}

.founder-origin-copy .eyebrow {
  margin: 0;
}

.founder-origin-copy h2 {
  max-width: 35ch;
  font-size: clamp(2.15rem, 3.15vw, 3.05rem);
  line-height: 1.02;
}

.founder-origin-copy > p {
  margin: 0;
  color: var(--muted);
}

.founder-origin-copy h2 + p {
  margin-top: 2px;
}

.story-copy {
  display: grid;
  gap: 18px;
}

.story-copy p,
.join-copy p,
.org-card p,
.footer-copy,
.footer-card p {
  margin: 0;
}

.story-panels,
.values-grid,
.organizations-grid,
.intake-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--module-gap);
}

.comparison-card,
.process-card,
.value-card,
.audience-card,
.pilot-card,
.org-card,
.intake-card,
.join-form,
.footer-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.contrast-card {
  background: linear-gradient(180deg, rgba(11, 28, 45, 0.94), rgba(20, 42, 66, 0.92));
}

.contrast-card h3,
.contrast-card li {
  color: #f6f1ea;
}

.contrast-card li {
  opacity: 0.9;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--module-gap);
}

.process-card,
.value-card,
.audience-card,
.org-card,
.intake-card {
  min-height: 100%;
}

.step-tag {
  color: var(--accent-deep);
}

.process-card h3,
.value-card h3,
.audience-card h3,
.pilot-card h3,
.org-card h3,
.intake-card h3,
.comparison-card h3 {
  margin-top: 14px;
  line-height: 1.05;
}

.values-grid {
  align-items: stretch;
}

.value-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 238, 230, 0.82));
}

.audience-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: start;
  gap: var(--editorial-gap);
}

.audience-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--module-gap);
}

.pilot-card {
  background: linear-gradient(180deg, rgba(14, 31, 47, 0.96), rgba(27, 51, 76, 0.96));
}

.pilot-card h3,
.pilot-card p,
.pilot-card .panel-label {
  color: #f4efe7;
}

.quote-band {
  position: relative;
  overflow: hidden;
  margin-top: var(--section-space);
  padding: var(--section-pad-y) var(--section-pad-x);
  background: linear-gradient(135deg, rgba(11, 28, 45, 0.98), rgba(25, 52, 79, 0.95));
  color: #f4efe7;
}

.quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 28, 45, 0.26), rgba(11, 28, 45, 0.02));
}

.quote-band-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: var(--editorial-gap);
  align-items: center;
}

.quote-band-copy {
  max-width: 24ch;
  font-size: clamp(1.9rem, 3.5vw, 3.15rem);
  line-height: 1.05;
}

.quote-band-visual {
  margin: 0;
  justify-self: end;
  width: 100%;
  max-width: 440px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 44px rgba(5, 14, 24, 0.24);
}

.quote-band-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center top;
}

.join-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: start;
  gap: var(--editorial-gap);
}

.join-copy {
  display: grid;
  gap: 18px;
}

.join-copy > p {
  margin: 0;
  max-width: 54ch;
}

.join-copy .intake-grid {
  margin-top: 6px;
}

.intake-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(11, 28, 45, 0.08);
  box-shadow: none;
}

.dark-card {
  background: linear-gradient(180deg, rgba(24, 48, 72, 0.86), rgba(42, 67, 90, 0.82));
  border-color: rgba(11, 28, 45, 0.06);
}

.dark-card h3,
.dark-card li {
  color: #f4efe7;
}

.dark-card li {
  opacity: 0.92;
}

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

.clean-list li {
  position: relative;
  padding-left: 18px;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.contrast-card .clean-list li::before,
.dark-card .clean-list li::before,
.pilot-card .clean-list li::before {
  background: #dcc3ab;
}

.join-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 46px rgba(13, 28, 43, 0.12);
}

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

.join-form label span {
  font-size: 0.88rem;
  font-weight: 600;
}

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

input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(11, 28, 45, 0.14);
  border-radius: 16px;
  background: #fbf9f6;
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(70, 88, 109, 0.7);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(139, 95, 57, 0.55);
  box-shadow: 0 0 0 4px rgba(183, 132, 86, 0.12);
}

textarea {
  resize: vertical;
  min-height: 132px;
}

.button-submit {
  width: 100%;
  background: var(--text);
  color: #f7f2eb;
}

.button-submit:hover {
  background: #10253a;
}

.form-footnote,
.form-privacy,
.form-status {
  margin: 0;
  font-size: 0.88rem;
}

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

.form-privacy {
  margin-top: -6px;
  color: rgba(70, 88, 109, 0.86);
  font-size: 0.8rem;
}

.form-status {
  min-height: 1.4em;
  font-weight: 600;
  color: var(--accent-deep);
}

.footer-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: start;
  gap: var(--editorial-gap);
}

.footer-card {
  display: grid;
  gap: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(241, 236, 229, 0.9));
}

.org-card > h3 + p {
  margin-top: 24px;
}

.footer-card a {
  font-weight: 700;
}

.thanks-section {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.thanks-title {
  margin-top: 12px;
  max-width: 10ch;
  color: var(--text);
}

.thanks-copy {
  max-width: 58ch;
  margin: 18px 0 0;
  color: var(--muted);
}

.inline-link {
  color: var(--accent-deep);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (min-width: 1024px) {
  .section-heading {
    max-width: 1080px;
  }

  .section-heading h2 {
    max-width: 32ch;
  }

  .story .section-heading h2,
  .process .section-heading h2 {
    max-width: 28ch;
  }

  .story .section-heading,
  .process .section-heading {
    max-width: 1140px;
  }

  .story .section-heading h2,
  .process .section-heading h2 {
    max-width: 42ch;
  }

  .story .section-heading h2 {
    max-width: 50ch;
  }

  .audience .section-heading h2,
  .organizations .section-heading h2 {
    max-width: 36ch;
  }

  .organizations .section-heading {
    max-width: 1160px;
  }

  .organizations .section-heading h2 {
    max-width: 43ch;
  }

  .join .section-heading h2 {
    max-width: 24ch;
  }

  .quote-band-copy {
    max-width: 28ch;
  }

  .founder-origin-layout {
    width: min(100%, 1200px);
    grid-template-columns: minmax(400px, 0.98fr) minmax(0, 1.02fr);
  }

  .founder-origin-copy {
    max-width: 68ch;
  }

  .founder-origin-copy h2 {
    max-width: 39ch;
  }

  .founder-portrait {
    max-width: 460px;
    margin-top: clamp(10px, 1.8vw, 20px);
  }
}

@media (max-width: 768px) {
  .section,
  .footer,
  .quote-band {
    padding: 32px 22px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .hero-content,
  .story-grid,
  .founder-origin-layout,
  .audience-layout,
  .join-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    align-items: start;
    min-height: auto;
    padding-top: 24px;
    gap: 24px;
  }

  .hero {
    min-height: auto;
    padding: 18px 20px 24px;
    background: linear-gradient(180deg, rgba(11, 28, 45, 0.98), rgba(24, 49, 73, 0.94));
  }

  .hero-overlay,
  .hero::after {
    display: none;
  }

  .hero-media {
    display: block;
    order: 1;
  }

  .hero-copy {
    order: 2;
    max-width: none;
  }

  .hero-copy .eyebrow {
    margin-bottom: 12px;
  }

  .hero-copy h1 {
    max-width: none;
    margin-bottom: 16px;
    font-size: clamp(2.55rem, 10vw, 3.85rem);
  }

  .hero-text {
    margin: 0 0 20px;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin: 0 0 24px;
  }

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

  .hero-highlights {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .hero-foundation {
    margin-top: 20px;
    font-size: 0.95rem;
  }

  .fellowship-model {
    order: 3;
    max-width: none;
    justify-self: stretch;
    margin-top: 0;
    transform: none;
  }

  .topbar,
  .hero-content,
  .story-panels,
  .process-grid,
  .values-grid,
  .audience-grid,
  .organizations-grid,
  .intake-grid,
  .two-up,
  .quote-band-layout {
    grid-template-columns: 1fr;
  }

  .process-card {
    padding: 20px 18px;
  }

  .process-card h3 {
    margin-top: 10px;
  }

  .process-card p {
    margin: 10px 0 0;
  }

  .topbar {
    gap: 18px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .quote-band-visual {
    justify-self: stretch;
    max-width: none;
  }

  .quote-band-visual img {
    min-height: 0;
    height: auto;
  }

  .quote-band-copy {
    font-size: clamp(1.8rem, 7.8vw, 2.55rem);
    max-width: none;
  }

  .founder-origin-layout {
    gap: 24px;
  }

  .founder-portrait {
    max-width: 320px;
    justify-self: center;
  }

  .founder-attribution {
    margin-top: 10px;
    font-size: 0.88rem;
  }

  .founder-origin-copy {
    gap: 16px;
  }

  .founder-origin-copy,
  .section-heading h2,
  .founder-origin-copy h2 {
    max-width: none;
  }

  .founder-origin-copy h2 {
    font-size: clamp(1.95rem, 7.2vw, 2.5rem);
  }

  .join-note {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 12px;
  }

  .hero,
  .section,
  .footer,
  .quote-band {
    border-radius: 24px;
  }

  .section,
  .footer,
  .quote-band {
    padding: 30px 20px;
  }

  .section-heading {
    gap: 8px;
    margin-bottom: 20px;
  }

  .button-submit {
    width: 100%;
  }
}
