:root {
  color-scheme: light;
  --rs-canvas: #f5f5f5;
  --rs-canvas-soft: #fafafa;
  --rs-ink: #0c0a09;
  --rs-body: #4e4e4e;
  --rs-muted: #6f6962;
  --rs-hairline: #e7e5e4;
  --rs-focus: #4c3ed7;
  --rs-focus-halo: #d9d4ff;
  --rs-cta: #5748e8;
  --rs-cta-hover: #4838d1;
  --rs-cta-active: #392bb4;
  --rs-cta-glow: rgba(221, 216, 255, .58);
  --rs-spectrum-red-orange: #b9472e;
  --rs-spectrum-red-orange-hover: #9d3824;
  --rs-spectrum-red-orange-active: #7f2b1c;
  --rs-spectrum-amber: #a65f08;
  --rs-spectrum-amber-hover: #884c05;
  --rs-spectrum-amber-active: #6f3d04;
  --rs-spectrum-green: #2e6a58;
  --rs-spectrum-green-hover: #245648;
  --rs-spectrum-green-active: #1b4438;
  --rs-spectrum-blue: #315f8a;
  --rs-spectrum-blue-hover: #274d72;
  --rs-spectrum-blue-active: #1e3d5c;
}

/* Semantic pathway tones. Universal brand actions intentionally inherit violet. */
.rs-tone-spiral-1 {
  --rs-context-cta: var(--rs-spectrum-red-orange);
  --rs-context-cta-hover: var(--rs-spectrum-red-orange-hover);
  --rs-context-cta-active: var(--rs-spectrum-red-orange-active);
  --rs-pathway-accent: var(--rs-spectrum-red-orange);
  --rs-pathway-soft: #f7ded7;
}

.rs-tone-spiral-2 {
  --rs-context-cta: var(--rs-spectrum-amber);
  --rs-context-cta-hover: var(--rs-spectrum-amber-hover);
  --rs-context-cta-active: var(--rs-spectrum-amber-active);
  --rs-pathway-accent: var(--rs-spectrum-amber);
  --rs-pathway-soft: #f7e8c9;
}

.rs-tone-spiral-3,
.rs-tone-family {
  --rs-context-cta: var(--rs-spectrum-green);
  --rs-context-cta-hover: var(--rs-spectrum-green-hover);
  --rs-context-cta-active: var(--rs-spectrum-green-active);
  --rs-pathway-accent: var(--rs-spectrum-green);
  --rs-pathway-soft: #dcede6;
}

.rs-tone-spiral-4,
.rs-tone-certification {
  --rs-context-cta: var(--rs-spectrum-blue);
  --rs-context-cta-hover: var(--rs-spectrum-blue-hover);
  --rs-context-cta-active: var(--rs-spectrum-blue-active);
  --rs-pathway-accent: var(--rs-spectrum-blue);
  --rs-pathway-soft: #dce8f2;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  background: var(--rs-canvas);
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 0;
  overflow-x: hidden;
}

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

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

button, select, input, textarea, a {
  -webkit-tap-highlight-color: transparent;
}

button, [role="button"], input, select, textarea {
  min-height: 44px;
}

:focus-visible {
  outline: 3px solid var(--rs-focus);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--rs-focus-halo) 65%, transparent);
}

a:focus-visible {
  border-radius: 4px;
}

.rs-brand-link {
  display: inline-flex;
  min-width: 0;
  flex: 0 1 auto;
  align-items: center;
  gap: 9px;
  color: var(--rs-ink);
  text-decoration: none;
  white-space: nowrap;
}

.rs-brand-link__mark {
  width: 42px;
  height: 31px;
  flex: 0 0 auto;
  object-fit: contain;
}

.rs-brand-link__name {
  font-family: "EB Garamond", serif;
  font-size: 19px;
  font-weight: 300;
  letter-spacing: .2px;
}

.rs-brand-link:hover .rs-brand-link__name {
  color: var(--rs-cta);
}

@media (min-width: 920px) and (max-width: 1099px) {
  .rs-brand-link__name {
    display: none;
  }
}

:where(a, button)[style*="background:var(--rs-cta)"] {
  transition: background-color 240ms ease, transform 240ms cubic-bezier(.22, 1, .36, 1), box-shadow 240ms ease;
}

:where(a, button)[style*="background:var(--rs-cta)"]:hover {
  background: var(--rs-cta-hover) !important;
  transform: translateY(-2px);
}

:where(a, button)[style*="background:var(--rs-cta)"]:active {
  background: var(--rs-cta-active) !important;
  transform: translateY(0);
}

button[style*="background:var(--rs-cta)"]:disabled {
  cursor: wait !important;
  opacity: .65;
  transform: none;
}

/* Shared conversion interaction: applied progressively by cta-effects.js. */
.rs-cta-interactive {
  --rs-glow-x: 50%;
  --rs-glow-y: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: var(--rs-context-cta, var(--rs-cta)) !important;
  background-color: var(--rs-context-cta, var(--rs-cta)) !important;
  background-image: none !important;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--rs-context-cta, var(--rs-cta)) 22%, transparent);
  color: #fff !important;
  text-decoration: none !important;
  will-change: transform;
}

.rs-cta-interactive::before {
  position: absolute;
  right: 50%;
  bottom: 8px;
  left: 50%;
  z-index: -1;
  height: 1px;
  background: rgba(255, 255, 255, .82);
  content: "";
  transition: right 260ms cubic-bezier(.22, 1, .36, 1), left 260ms cubic-bezier(.22, 1, .36, 1);
}

.rs-cta-final::after {
  display: inline-block;
  margin-left: .72em;
  content: "\2192";
  font-size: 1.08em;
  line-height: 1;
  transform: translateX(0);
  transition: transform 240ms cubic-bezier(.22, 1, .36, 1);
}

.rs-cta-enter {
  animation: rs-cta-enter 560ms cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes rs-cta-enter {
  from { opacity: 0; filter: blur(8px); transform: translateY(12px); }
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

@media (hover: hover) and (pointer: fine) {
  .rs-cta-interactive:hover {
    border-color: var(--rs-context-cta-hover, var(--rs-cta-hover)) !important;
    background-color: var(--rs-context-cta-hover, var(--rs-cta-hover)) !important;
    background-image: radial-gradient(circle at var(--rs-glow-x) var(--rs-glow-y), rgba(255, 255, 255, .34) 0, rgba(255, 255, 255, .14) 20%, transparent 54%) !important;
    box-shadow: 0 12px 32px color-mix(in srgb, var(--rs-context-cta, var(--rs-cta)) 30%, transparent), 0 0 0 5px color-mix(in srgb, var(--rs-context-cta, var(--rs-cta)) 18%, transparent);
    transform: translateY(-2px) scale(1.015);
  }

  .rs-cta-interactive:hover::before { right: 18%; left: 18%; }
  .rs-cta-final:hover::after { transform: translateX(5px); }
}

.rs-cta-interactive:active {
  border-color: var(--rs-context-cta-active, var(--rs-cta-active)) !important;
  background-color: var(--rs-context-cta-active, var(--rs-cta-active)) !important;
  transform: translateY(0) scale(.985) !important;
}

.rs-cta-interactive:focus-visible {
  outline-color: var(--rs-context-cta, var(--rs-focus));
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--rs-context-cta, var(--rs-focus)) 20%, transparent);
}

.rs-cta-final:disabled::after { opacity: .55; }

.rs-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 9999px;
  background: var(--rs-ink);
  color: #fff;
  font: 500 15px/1.4 Inter, sans-serif;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.rs-trust-strip {
  padding: 28px 32px;
  border-top: 1px solid var(--rs-hairline);
  border-bottom: 1px solid var(--rs-hairline);
  background: rgba(250, 250, 250, 0.86);
}

.rs-trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.rs-trust-strip__people {
  display: flex;
  flex: 0 0 auto;
  padding-left: 9px;
}

.rs-trust-strip__person {
  display: grid;
  width: 38px;
  height: 38px;
  margin-left: -9px;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--rs-canvas-soft);
  border-radius: 50%;
  background: linear-gradient(135deg, #d9f2ea, #e2d9f0 55%, #f5d9cc);
  color: #3f3a37;
  font: 600 12px/1 Inter, sans-serif;
}

.rs-trust-strip__person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rs-about-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 20px 48px;
}

.rs-about-hero::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 8%, rgba(200,184,224,.55), transparent 36%), radial-gradient(circle at 90% 18%, rgba(168,200,232,.4), transparent 32%);
  content: "";
}

.rs-about-hero__inner {
  position: relative;
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  gap: 32px;
  align-items: center;
}

.rs-about-hero h1 {
  margin: 0 0 20px;
  font-family: "EB Garamond", serif;
  font-size: clamp(42px, 9vw, 68px);
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: 1;
}

.rs-about-hero p { max-width: 640px; margin: 0; color: var(--rs-body); font-size: 18px; line-height: 1.65; }
.rs-about-portrait { overflow: hidden; margin: 0; border-radius: 24px; background: #e7e5e4; box-shadow: 0 24px 70px rgba(76,67,59,.14); }
.rs-about-portrait img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; object-position: center 24%; }
.rs-about-portrait figcaption { padding: 12px 16px; background: #fff; color: var(--rs-muted); font-size: 12px; line-height: 1.5; }

.rs-about-kicker {
  display: block;
  color: var(--rs-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.rs-about-hero__themes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.rs-about-hero__themes span {
  border: 1px solid rgba(49, 95, 85, .18);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, .52);
  color: #315f55;
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.rs-about-shell {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.rs-about-story,
.rs-about-beliefs,
.rs-about-principles,
.rs-about-next-step {
  padding-block: 76px;
}

.rs-about-section-heading {
  display: grid;
  gap: 22px;
  margin-bottom: 38px;
}

.rs-about-section-heading h2,
.rs-about-framework h2,
.rs-about-guardrails h2,
.rs-about-next-step h2 {
  margin: 12px 0 0;
  font-family: "EB Garamond", serif;
  font-size: clamp(34px, 7vw, 52px);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: 1.04;
}

.rs-about-section-heading > p {
  max-width: 520px;
  margin: 0;
  color: #4e4e4e;
  font-family: "EB Garamond", serif;
  font-size: clamp(20px, 4vw, 26px);
  font-style: italic;
  line-height: 1.5;
}

.rs-about-section-heading--stacked {
  display: block;
  max-width: 720px;
}

.rs-about-journey {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 1px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--rs-hairline);
  list-style: none;
}

.rs-about-journey li {
  display: grid;
  min-width: 0;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 18px;
  padding: 26px 22px;
  background: rgba(255, 255, 255, .82);
  transition: background-color 180ms ease, transform 180ms ease;
}

.rs-about-journey li:hover {
  background: #fff;
}

.rs-about-journey__number {
  color: #315f55;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
}

.rs-about-journey h3,
.rs-about-belief-grid h3 {
  margin: -4px 0 8px;
  font-family: "EB Garamond", serif;
  font-size: 25px;
  font-weight: 400;
}

.rs-about-journey p,
.rs-about-framework > p,
.rs-about-next-step p {
  margin: 0;
  color: var(--rs-body);
  font-size: 15px;
  line-height: 1.72;
}

.rs-about-quote {
  position: relative;
  overflow: hidden;
  padding-block: 82px;
  background:
    radial-gradient(circle at 14% 25%, rgba(167, 229, 211, .72), transparent 34%),
    radial-gradient(circle at 86% 72%, rgba(200, 184, 224, .62), transparent 34%),
    #f8faf9;
}

.rs-about-quote::after {
  position: absolute;
  top: 18%;
  left: 50%;
  width: min(520px, 76vw);
  aspect-ratio: 1;
  border: 1px solid rgba(49, 95, 85, .1);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.rs-about-quote blockquote {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.rs-about-quote blockquote > span {
  display: block;
  height: 36px;
  color: rgba(49, 95, 85, .34);
  font-family: "EB Garamond", serif;
  font-size: 72px;
  line-height: 1;
}

.rs-about-quote p {
  margin: 12px 0 20px;
  color: var(--rs-ink);
  font-family: "EB Garamond", serif;
  font-size: clamp(38px, 8vw, 66px);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: 1.04;
}

.rs-about-quote cite {
  color: var(--rs-muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rs-about-belief-grid {
  display: grid;
  gap: 14px;
}

.rs-about-belief-grid article {
  min-width: 0;
  border: 1px solid var(--rs-hairline);
  border-radius: 20px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(76, 67, 59, .05);
}

.rs-about-belief-grid article > span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 12px;
  background: #d9f2ea;
  color: #315f55;
  font-size: 11px;
  font-weight: 600;
}

.rs-about-belief-grid p {
  margin: 0;
  color: var(--rs-body);
  font-family: "EB Garamond", serif;
  font-size: 19px;
  line-height: 1.55;
}

.rs-about-principles {
  border-block: 1px solid var(--rs-hairline);
  background: var(--rs-canvas-soft);
}

.rs-about-principles__grid {
  display: grid;
  gap: 18px;
}

.rs-about-framework,
.rs-about-guardrails {
  border: 1px solid var(--rs-hairline);
  border-radius: 22px;
  padding: 28px;
  background: #fff;
}

.rs-about-framework__flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 30px 0 24px;
}

.rs-about-framework__flow span {
  border-radius: 999px;
  padding: 10px 14px;
  background: #e8f3ef;
  color: #315f55;
  font-size: 13px;
  font-weight: 600;
}

.rs-about-framework__flow b {
  color: #8a847d;
  font-weight: 400;
}

.rs-about-guardrails {
  border-color: rgba(49, 95, 85, .24);
  background: linear-gradient(145deg, #eef7f3, #fff 72%);
}

.rs-about-guardrails h2 {
  font-size: clamp(30px, 6vw, 42px);
}

.rs-about-guardrails ul {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.rs-about-guardrails li {
  position: relative;
  border-top: 1px solid rgba(49, 95, 85, .16);
  padding: 16px 0 16px 28px;
  color: var(--rs-body);
  font-size: 14px;
  line-height: 1.55;
}

.rs-about-guardrails li::before {
  position: absolute;
  top: 21px;
  left: 2px;
  width: 9px;
  height: 9px;
  border: 2px solid #315f55;
  border-radius: 50%;
  content: "";
}

.rs-about-next-step__inner {
  display: grid;
  gap: 30px;
  overflow: hidden;
  border: 1px solid rgba(49, 95, 85, .18);
  border-radius: 26px;
  padding: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(167, 229, 211, .58), transparent 38%),
    linear-gradient(135deg, #fff, #f4f8f6);
  box-shadow: 0 24px 64px rgba(49, 95, 85, .08);
}

.rs-about-next-step h2 {
  max-width: 740px;
}

.rs-about-next-step p {
  max-width: 650px;
  margin-top: 16px;
}

.rs-about-next-step__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rs-about-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rs-ink);
  border-radius: 999px;
  padding: 12px 22px;
  color: var(--rs-ink);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.rs-about-button:hover {
  transform: translateY(-2px);
}

.rs-about-button--primary {
  border-color: var(--rs-cta);
  background: var(--rs-cta);
  color: #fff;
}

.rs-about-button--primary:hover {
  border-color: var(--rs-cta-hover);
  background: var(--rs-cta-hover);
}

.rs-about-button--secondary:hover {
  background: #f0efed;
}

.rs-about-hero--institutional::before {
  background:
    radial-gradient(circle at 10% 8%, rgba(200, 184, 224, .62), transparent 34%),
    radial-gradient(circle at 92% 16%, rgba(168, 200, 232, .46), transparent 34%),
    linear-gradient(145deg, #f8f7fb, #f3f7f5);
}

.rs-about-portrait figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.rs-about-portrait figcaption strong {
  color: var(--rs-ink);
  font-weight: 600;
}

.rs-about-portrait figcaption span {
  text-align: right;
}

.rs-about-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: #315f55;
  font-size: 14px;
  font-weight: 600;
  text-underline-offset: 5px;
}

.rs-about-text-link span {
  transition: transform 180ms ease;
}

.rs-about-text-link:hover span {
  transform: translateX(3px);
}

.rs-about-purpose-copy {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin-bottom: 38px;
}

.rs-about-purpose-copy p {
  margin: 0;
  color: var(--rs-body);
  font-size: 16px;
  line-height: 1.75;
}

.rs-about-belief-grid--purpose article {
  background: linear-gradient(155deg, #fff, #f8fbfa);
}

.rs-about-practice {
  padding-block: 28px;
  background: #10231c;
  color: #fff;
}

.rs-about-practice__grid {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 26px;
  background: rgba(255, 255, 255, .04);
}

.rs-about-practice__visual {
  min-height: 340px;
  background:
    linear-gradient(0deg, rgba(10, 24, 19, .28), rgba(10, 24, 19, .04)),
    url("./assets/editorial/home-community-editorial.jpg") center 34% / cover no-repeat;
}

.rs-about-practice__copy {
  padding: 32px 24px;
}

.rs-about-practice .rs-about-kicker {
  color: rgba(255, 255, 255, .58);
}

.rs-about-practice h2,
.rs-about-founder h2 {
  margin: 12px 0 18px;
  font-family: "EB Garamond", serif;
  font-size: clamp(36px, 7vw, 56px);
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: 1.02;
}

.rs-about-practice__copy > p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  line-height: 1.72;
}

.rs-about-practice__steps {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.rs-about-practice__steps li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-block: 18px;
}

.rs-about-practice__steps li > span {
  color: #a7e5d3;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
}

.rs-about-practice__steps h3 {
  margin: -4px 0 5px;
  font-family: "EB Garamond", serif;
  font-size: 24px;
  font-weight: 400;
}

.rs-about-practice__steps p {
  margin: 0;
  color: rgba(255, 255, 255, .64);
  font-size: 14px;
  line-height: 1.55;
}

.rs-about-founder {
  padding-block: 82px;
  background: #fbfaf7;
}

.rs-about-founder__header {
  display: grid;
  gap: 20px;
  margin-bottom: 36px;
}

.rs-about-founder__header > p {
  max-width: 500px;
  margin: 0;
  color: var(--rs-body);
  font-family: "EB Garamond", serif;
  font-size: clamp(20px, 4vw, 27px);
  font-style: italic;
  line-height: 1.45;
}

.rs-about-founder__body {
  display: grid;
  gap: 18px;
}

.rs-about-founder__story,
.rs-about-founder__role {
  border: 1px solid var(--rs-hairline);
  border-radius: 22px;
  padding: 28px 24px;
  background: #fff;
}

.rs-about-founder__story p,
.rs-about-founder__role p,
.rs-about-guardrails--vision p {
  margin: 0;
  color: var(--rs-body);
  font-size: 15px;
  line-height: 1.72;
}

.rs-about-founder__story p + p,
.rs-about-founder__role p + p {
  margin-top: 16px;
}

.rs-about-founder__story blockquote {
  margin: 28px 0 0;
  border-left: 2px solid #315f55;
  padding: 4px 0 4px 20px;
  color: var(--rs-ink);
  font-family: "EB Garamond", serif;
  font-size: clamp(24px, 5vw, 32px);
  font-style: italic;
  line-height: 1.25;
}

.rs-about-founder__role {
  border-color: rgba(49, 95, 85, .22);
  background:
    radial-gradient(circle at 100% 0%, rgba(167, 229, 211, .5), transparent 44%),
    #f3f8f6;
}

.rs-about-founder__role h3 {
  margin: 12px 0 16px;
  font-family: "EB Garamond", serif;
  font-size: clamp(30px, 6vw, 42px);
  font-weight: 300;
  line-height: 1.05;
}

.rs-about-belief-grid--four {
  grid-template-columns: 1fr;
}

.rs-about-guardrails--vision p {
  margin-top: 18px;
}

.rs-about-guardrails--vision .rs-about-text-link {
  margin-top: 22px;
}

/* Bigger Vision / Planetary Symbiosis Network */
.rs-vision-page { background: #f5f5f5; }

.rs-vision-hero {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 32px;
  background: #f5f5f5;
  color: #fff;
  isolation: isolate;
}

.rs-vision-hero__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #13211c;
}

.rs-vision-hero__image,
.rs-vision-hero__media::after {
  position: absolute;
  inset: 0;
}

.rs-vision-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.rs-vision-hero__media::after {
  background: linear-gradient(0deg, rgba(7, 18, 14, .48), transparent 58%);
  content: "";
}

.rs-vision-hero__inner {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  margin: 16px auto 0;
}

.rs-vision-hero__copy {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 26px;
  padding: 28px 24px;
  background: linear-gradient(145deg, rgba(8, 22, 17, .99), rgba(14, 24, 21, .97));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .2);
  backdrop-filter: blur(14px);
}

.rs-vision-kicker {
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.rs-vision-hero h1 {
  max-width: 680px;
  margin: 18px 0;
  font-family: "EB Garamond", serif;
  font-size: clamp(42px, 12vw, 58px);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: .96;
}

.rs-vision-hero p {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
}

.rs-vision-hero__themes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.rs-vision-hero__themes span {
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .88);
  font-size: 12px;
}

/* Home bridge into the Planetary Symbiosis Network. */
.rs-home-vision {
  position: relative;
  display: grid;
  min-height: 620px;
  overflow: hidden;
  place-items: end center;
  padding: 56px 20px;
  background: #13211c;
  color: #fff;
  isolation: isolate;
}

.rs-home-vision::before,
.rs-home-vision__image {
  position: absolute;
  inset: 0;
}

.rs-home-vision__image {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.rs-home-vision::before {
  z-index: -1;
  background: linear-gradient(0deg, rgba(7, 18, 14, .9) 0%, rgba(7, 18, 14, .4) 62%, rgba(7, 18, 14, .16) 100%);
  content: "";
}

.rs-home-vision__card {
  width: min(760px, 100%);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 24px;
  padding: 30px 24px;
  background: rgba(8, 20, 16, .68);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .25);
  text-align: center;
  backdrop-filter: blur(14px);
}

.rs-home-vision__kicker {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rs-home-vision h2 {
  margin: 18px 0;
  font-family: "EB Garamond", serif;
  font-size: clamp(34px, 9vw, 48px);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: 1.04;
}

.rs-home-vision p {
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.7;
}

.rs-home-vision__link {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 999px;
  padding: 13px 27px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.rs-home-vision__link:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .12);
  transform: translateY(-2px);
}

.rs-vision-shell {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.rs-vision-intro { padding-block: 76px 54px; }

.rs-vision-intro p {
  max-width: 940px;
  margin: 0;
  color: #292524;
  font-family: "EB Garamond", serif;
  font-size: clamp(27px, 5vw, 42px);
  font-weight: 300;
  letter-spacing: -.02em;
  line-height: 1.25;
}

.rs-vision-anchor-band {
  display: grid;
  gap: 26px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 24px;
  padding: 30px 24px;
  background: linear-gradient(135deg, #171925, #30285c 72%, #5748e8);
  color: #fff;
}

.rs-vision-anchor-band__number {
  font-family: "EB Garamond", serif;
  font-size: clamp(84px, 24vw, 164px);
  font-weight: 300;
  line-height: .7;
}

.rs-vision-anchor-band h2,
.rs-vision-card h2 {
  margin: 0;
  font-family: "EB Garamond", serif;
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 300;
  line-height: 1.08;
}

.rs-vision-anchor-band p,
.rs-vision-card p,
.rs-vision-bridge p,
.rs-vision-status p {
  margin: 14px 0 0;
  line-height: 1.7;
}

.rs-vision-anchor-band p { color: rgba(255, 255, 255, .76); }

.rs-vision-grid {
  display: grid;
  gap: 14px;
  padding-bottom: 72px;
}

.rs-vision-card {
  min-width: 0;
  border: 1px solid var(--rs-hairline);
  border-radius: 22px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, .84);
}

.rs-vision-card__number {
  display: block;
  margin-bottom: 42px;
  color: #5748e8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
}

.rs-vision-card p,
.rs-vision-bridge p,
.rs-vision-status p { color: var(--rs-body); }

.rs-vision-close {
  padding: 72px 0 84px;
  background: #fafafa;
}

.rs-vision-close__grid {
  display: grid;
  gap: 14px;
}

.rs-vision-bridge,
.rs-vision-status {
  border-radius: 22px;
  padding: 28px 24px;
}

.rs-vision-bridge { border: 1px solid #d9d4ff; background: #f3f1ff; }
.rs-vision-status { border: 1px solid var(--rs-hairline); background: #fff; }
.rs-vision-bridge a { color: #392bb4; font-weight: 600; }

.rs-vision-close__cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

@media (min-width: 820px) {
  .rs-about-hero { padding: 80px 32px 72px; }
  .rs-about-hero__inner { grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr); gap: 56px; }
  .rs-about-section-heading { grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); align-items: end; }
  .rs-about-section-heading--stacked { display: block; }
  .rs-about-journey { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rs-about-journey li { min-height: 220px; padding: 34px; }
  .rs-about-belief-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .rs-about-principles__grid { grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); }
  .rs-about-framework, .rs-about-guardrails { padding: 38px; }
  .rs-about-next-step__inner { grid-template-columns: minmax(0, 1fr) auto; align-items: end; padding: 48px; }
  .rs-about-next-step__actions { justify-content: flex-end; }
  .rs-about-purpose-copy { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
  .rs-about-practice { padding-block: 64px; }
  .rs-about-practice__grid { grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr); }
  .rs-about-practice__visual { min-height: 720px; }
  .rs-about-practice__copy { padding: 52px 48px; }
  .rs-about-founder__header { grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); align-items: end; }
  .rs-about-founder__body { grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); }
  .rs-about-founder__story, .rs-about-founder__role { padding: 38px; }
  .rs-about-belief-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rs-vision-hero { display: flex; min-height: 760px; overflow: hidden; align-items: flex-end; padding: 144px 40px 64px; background: #13211c; }
  .rs-vision-hero__media { position: absolute; inset: 0; z-index: -1; aspect-ratio: auto; }
  .rs-vision-hero__media::after { background: linear-gradient(90deg, rgba(7, 18, 14, .9) 0%, rgba(7, 18, 14, .66) 42%, rgba(7, 18, 14, .12) 76%), linear-gradient(0deg, rgba(7, 18, 14, .66), transparent 52%); }
  .rs-vision-hero__image { object-position: 57% center; }
  .rs-vision-hero__inner { width: min(1240px, 100%); margin: 0 auto; }
  .rs-vision-hero__copy { max-width: 720px; padding: 40px; background: rgba(10, 20, 16, .48); }
  .rs-vision-hero h1 { font-size: clamp(46px, 6vw, 78px); }
  .rs-home-vision { min-height: 680px; place-items: center; padding: 96px 32px; }
  .rs-home-vision::before { background: linear-gradient(90deg, rgba(7, 18, 14, .66), rgba(7, 18, 14, .1) 48%, rgba(7, 18, 14, .42)), linear-gradient(0deg, rgba(7, 18, 14, .62), transparent 60%); }
  .rs-home-vision__card { padding: 42px 48px; }
  .rs-home-vision h2 { font-size: 48px; }
  .rs-vision-anchor-band { grid-template-columns: 220px minmax(0, 1fr); align-items: center; padding: 46px; }
  .rs-vision-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rs-vision-card { min-height: 330px; padding: 38px; }
  .rs-vision-close__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rs-vision-bridge, .rs-vision-status { padding: 36px; }
}

@media (min-width: 1120px) {
  .rs-about-belief-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .rs-about-next-step__actions,
  .rs-about-next-step__actions .rs-about-button {
    width: 100%;
  }
}

.rs-trust-strip__copy {
  margin: 0;
  color: var(--rs-body);
  font: 400 15px/1.55 Inter, sans-serif;
}

.rs-trust-strip__copy strong {
  color: var(--rs-ink);
  font-weight: 500;
}

.rs-form-notice {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid #d6d3d1;
  border-radius: 10px;
  background: var(--rs-canvas-soft);
  color: var(--rs-body);
  font-size: 14px;
  line-height: 1.55;
}

.rs-form-notice--error {
  border-color: #dc2626;
  color: #991b1b;
  background: #fef2f2;
}

.rs-field-help {
  margin: 0;
  color: #6f6962;
  font-size: 12px;
  line-height: 1.55;
}

.rs-consent-field {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: #4e4e4e;
  font-size: 13px;
  line-height: 1.55;
}

.rs-consent-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #0c0a09;
}

.rs-consent-field a,
.rs-legal-page a {
  color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.rs-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
  border-top: 1px solid #e7e5e4;
  padding-top: 24px;
  color: #6f6962;
  font-size: 13px;
}

footer a {
  color: #4e4e4e;
  font-size: 15px;
  text-decoration: none;
}

footer a:hover,
footer a:focus-visible {
  color: #0c0a09;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.rs-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.rs-footer-legal a {
  color: #6f6962;
  text-decoration: none;
}

.rs-footer-legal a:hover,
.rs-footer-legal a:focus-visible {
  color: #0c0a09;
  text-decoration: underline;
  text-underline-offset: 4px;
}

footer::after {
  display: block;
  content: "Participation is personal and outcomes vary. Please review the Wellbeing Disclaimer before enrolling.";
  width: min(1280px, calc(100% - 64px));
  margin: 22px auto 0;
  padding-top: 18px;
  border-top: 1px solid #e7e5e4;
  color: #8a857f;
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

.rs-footer-summary {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 48px;
}

.rs-legal-back {
  flex: 0 0 auto;
  color: #4e4e4e;
  font-size: 14px;
  text-decoration: none;
}

.rs-legal-page {
  background:
    radial-gradient(circle at 14% 8%, rgba(167, 229, 211, .35), transparent 28rem),
    radial-gradient(circle at 86% 4%, rgba(232, 184, 196, .28), transparent 26rem),
    #f5f5f5;
}

.rs-legal-shell {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.rs-legal-hero {
  padding: 80px 0 56px;
  border-bottom: 1px solid #e7e5e4;
}

.rs-legal-kicker {
  display: block;
  margin-bottom: 18px;
  color: #526d68;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rs-legal-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: "EB Garamond", serif;
  font-size: clamp(44px, 9vw, 72px);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: .98;
}

.rs-legal-hero > div > p:not(.rs-legal-updated) {
  max-width: 720px;
  margin: 24px 0 0;
  color: #4e4e4e;
  font-family: "EB Garamond", serif;
  font-size: clamp(20px, 4vw, 26px);
  line-height: 1.45;
}

.rs-legal-updated {
  margin: 28px 0 0;
  color: #6f6962;
  font-size: 12px;
}

.rs-legal-layout {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 720px);
  justify-content: space-between;
  gap: 48px;
  padding-block: 64px 96px;
}

.rs-legal-toc {
  align-self: start;
  position: sticky;
  top: 104px;
}

.rs-legal-toc > strong {
  display: block;
  margin-bottom: 14px;
  color: #6f6962;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rs-legal-toc nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rs-legal-toc a {
  color: #6f6962;
  font-size: 13px;
  text-decoration: none;
}

.rs-legal-toc a:hover,
.rs-legal-toc a:focus-visible {
  color: #0c0a09;
}

.rs-legal-content {
  min-width: 0;
}

.rs-legal-status {
  margin-bottom: 44px;
  padding: 20px;
  border: 1px solid #d8d5d0;
  border-left: 4px solid #6b8f86;
  border-radius: 12px;
  background: rgba(255, 255, 255, .72);
}

.rs-legal-status strong {
  font-size: 13px;
}

.rs-legal-status p {
  margin: 7px 0 0;
  color: #5f5a54;
  font-size: 13px;
  line-height: 1.65;
}

.rs-legal-status code {
  font-size: .92em;
}

.rs-legal-section {
  scroll-margin-top: 112px;
  padding: 0 0 40px;
  border-bottom: 1px solid #dedbd7;
}

.rs-legal-section + .rs-legal-section {
  padding-top: 40px;
}

.rs-legal-section h2,
.rs-legal-section h3 {
  font-family: "EB Garamond", serif;
  font-weight: 400;
}

.rs-legal-section h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 5vw, 36px);
  line-height: 1.15;
}

.rs-legal-section h3 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.rs-legal-section p,
.rs-legal-section li {
  color: #4e4e4e;
  font-size: 15px;
  line-height: 1.75;
}

.rs-legal-section p {
  margin: 0 0 16px;
}

.rs-legal-section ul {
  margin: 0 0 18px;
  padding-left: 20px;
}

.rs-legal-section li + li {
  margin-top: 8px;
}

@media (max-width: 760px) {
  .rs-legal-hero {
    padding: 56px 0 40px;
  }

  .rs-legal-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 36px 72px;
  }

  .rs-legal-toc {
    position: static;
    padding: 18px;
    border: 1px solid #dedbd7;
    border-radius: 12px;
    background: rgba(255, 255, 255, .55);
  }

  .rs-legal-toc nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rs-footer-bottom,
  .rs-footer-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .rs-footer-legal {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
}

@media (max-width: 420px) {
  .rs-legal-toc nav,
  .rs-footer-legal {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 919px) {
  .rs-desktop-only {
    display: none !important;
  }
}

@media (max-width: 700px) {
  section, footer {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  h1 {
    font-size: clamp(40px, 12vw, 52px) !important;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(28px, 8vw, 36px) !important;
  }

  [style*="minmax(380px"],
  [style*="minmax(320px"],
  [style*="minmax(280px"],
  [style*="minmax(240px"] {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  [style*="padding:40px 36px"],
  [style*="padding:48px"],
  form[style*="padding:36px"] {
    padding: 24px !important;
  }

  input, select, textarea {
    width: 100%;
    max-width: 100%;
    font-size: 16px !important;
  }

  footer [style*="grid-template-columns"] {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .rs-trust-strip {
    padding: 24px 20px !important;
  }

  .rs-trust-strip__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

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

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