:root {
  color-scheme: light;
  --ink: oklch(14% 0.012 250);
  --ink-soft: oklch(33% 0.012 250);
  --muted: oklch(53% 0.01 250);
  --paper: oklch(98.7% 0.003 250);
  --paper-deep: oklch(95.4% 0.004 250);
  --line: oklch(88% 0.004 250);
  --line-strong: oklch(66% 0.006 250);
  --surface: oklch(99.5% 0.002 250);
  --surface-2: oklch(96.2% 0.004 250);
  --dark: oklch(14% 0.012 250);
  --dark-2: oklch(18.5% 0.012 250);
  --dark-line: oklch(33% 0.015 250);
  --green: oklch(68% 0.135 164);
  --green-deep: oklch(46% 0.105 164);
  --blue: oklch(52% 0.105 248);
  --copper: oklch(61% 0.105 58);
  --shadow: 0 1px 1px oklch(10% 0.02 250 / 0.05), 0 2px 2px oklch(10% 0.02 250 / 0.04), 0 18px 32px -24px oklch(10% 0.02 250 / 0.24);
  --font-sans: "Geist", "Avenir Next", "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --radius: 8px;
  --radius-ui: 6px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

::selection {
  color: var(--surface);
  background: var(--ink);
}

.hero-video,
.frontier-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: 0;
  object-fit: cover;
  object-position: 62% center;
  opacity: 1;
  filter: saturate(1.02) contrast(1.12) brightness(0.98);
  pointer-events: none;
}

.frontier-field {
  z-index: 1;
  background: transparent;
  pointer-events: none;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  background: oklch(98.7% 0.003 250 / 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: var(--space-3);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 620;
}

.brand-mark {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px var(--surface);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.brand-mark::before {
  inset: 6px;
  border: 1px solid var(--green);
}

.brand-mark::after {
  top: 10px;
  left: 10px;
  width: 4px;
  height: 4px;
  background: var(--ink);
}

.nav-links {
  gap: clamp(0.9rem, 3vw, 2.25rem);
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 520;
}

.nav-links a {
  position: relative;
  padding: 0.85rem 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0.45rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 21rem);
  gap: clamp(2rem, 7vw, 8rem);
  min-height: calc(69svh - 64px);
  align-items: end;
  padding: clamp(2.75rem, 6vw, 5rem) clamp(1rem, 4vw, 4.5rem) clamp(1.5rem, 3vw, 2.5rem);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(180deg, oklch(98.7% 0.003 250 / 0.38), transparent 34%),
    linear-gradient(90deg, oklch(98.7% 0.003 250 / 0.78), oklch(98.7% 0.003 250 / 0.34) 46%, transparent 78%),
    linear-gradient(0deg, oklch(98.7% 0.003 250 / 0.3), transparent 42%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 74rem;
  animation: rise-in 780ms var(--ease-out) both;
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0;
  color: var(--green-deep);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-sans);
  font-weight: 610;
  line-height: 0.98;
}

h1 {
  max-width: 16ch;
  margin-bottom: var(--space-6);
  font-size: 3.15rem;
}

h2 {
  margin-bottom: 0;
  font-size: 2.35rem;
}

h3 {
  margin-bottom: var(--space-4);
  font-size: 1.8rem;
  line-height: 1.05;
}

.hero-thesis {
  max-width: 30ch;
  margin-bottom: var(--space-3);
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 520;
  line-height: 1.16;
}

.hero-text {
  max-width: 54ch;
  margin-bottom: var(--space-6);
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 0.72rem 1rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius-ui);
  font-size: 0.92rem;
  font-weight: 590;
  transition:
    transform 180ms var(--ease-out),
    background-color 180ms var(--ease-out),
    color 180ms var(--ease-out),
    border-color 180ms var(--ease-out);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--surface);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--ink);
  background: var(--green);
  border-color: var(--green);
}

.button-secondary {
  color: var(--ink);
  background: oklch(99.5% 0.002 250 / 0.58);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--line-strong);
  background: var(--surface);
}

.hero-axis {
  position: relative;
  z-index: 3;
  align-self: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  background: oklch(99.5% 0.002 250 / 0.72);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  animation: rise-in 900ms 120ms var(--ease-out) both;
}

.hero-axis span {
  display: block;
  padding: 0.92rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  line-height: 1.4;
}

.hero-axis span:first-child {
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 650;
  text-transform: uppercase;
}

.hero-axis span:last-child {
  border-bottom: 0;
}

.signal-strip {
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1rem, 4vw, 4.5rem);
  border-block: 1px solid var(--dark-line);
  background: var(--dark);
  color: var(--surface);
}

.signal-strip p {
  max-width: 74rem;
  margin: 0;
  font-size: 1.55rem;
  font-weight: 570;
  line-height: 1.2;
}

.section {
  padding: clamp(4.5rem, 10vw, 9rem) clamp(1rem, 4vw, 4.5rem);
}

.section > * {
  max-width: 1380px;
  margin-right: auto;
  margin-left: auto;
}

.section[id] {
  scroll-margin-top: 88px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.72fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--line);
}

.body-stack {
  display: grid;
  gap: var(--space-6);
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.thesis-visual,
.product-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.thesis-visual::after,
.product-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, oklch(99% 0 0 / 0.18), transparent 34%),
    linear-gradient(0deg, oklch(14% 0.012 250 / 0.08), transparent 48%);
}

.thesis-visual img,
.product-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.frontier-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: oklch(99.5% 0.002 250 / 0.78);
}

.frontier-notes p {
  min-height: 7.25rem;
  margin: 0;
  padding: var(--space-4);
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.45;
}

.frontier-notes p:last-child {
  border-right: 0;
}

.frontier-notes span {
  display: block;
  margin-bottom: var(--space-3);
  color: var(--green-deep);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 680;
  line-height: 1.1;
  text-transform: uppercase;
}

.body-stack p,
.pathways-heading p,
.pathway-card p,
.subpage-hero p,
.story-lab-copy p,
.story-status,
.story-empty,
.journey-copy p,
.journey-media p,
.story-method-grid p,
.practice-layout p,
.compass-heading p,
.symbiosis-heading p,
.stance-copy p,
.join-copy p,
.principle-panel p,
.practice-list p,
.synthesis-grid p,
.product-steps p,
.stance-matrix p,
.form-note,
.site-footer p {
  margin-bottom: 0;
}

.compass-section {
  border-block: 1px solid var(--dark-line);
  background:
    linear-gradient(90deg, oklch(99% 0 0 / 0.055) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(0deg, oklch(99% 0 0 / 0.045) 1px, transparent 1px) 0 0 / 88px 88px,
    var(--dark);
  color: var(--surface);
}

.compass-section .section-kicker,
.practice-section .section-kicker,
.join-section .section-kicker {
  color: var(--green);
}

.compass-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 33rem);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}

.compass-heading p {
  color: oklch(78% 0.009 250);
  font-size: 1.02rem;
}

.compass-grid {
  display: grid;
  grid-template-columns: minmax(14rem, 21rem) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  margin-top: clamp(2rem, 5vw, 4.5rem);
}

.principle-list {
  display: grid;
  align-self: start;
  border-top: 1px solid var(--dark-line);
}

.principle-tab {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: var(--space-4);
  padding: 1rem 0;
  border: 0;
  border-bottom: 1px solid var(--dark-line);
  color: oklch(70% 0.008 250);
  background: transparent;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 560;
  transition:
    color 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.principle-tab span {
  width: 2.5rem;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 650;
}

.principle-tab:hover,
.principle-tab:focus-visible,
.principle-tab.is-active {
  color: var(--surface);
}

.principle-tab.is-active {
  transform: translateX(8px);
}

.principle-panel {
  position: relative;
  min-height: 31rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, oklch(18.5% 0.012 250), oklch(14% 0.012 250)),
    var(--dark-2);
  box-shadow: none;
  animation: panel-in 360ms var(--ease-out) both;
}

.principle-panel p,
.principle-panel h3 {
  position: relative;
  z-index: 2;
}

.principle-panel h3 {
  max-width: 16ch;
  color: var(--surface);
}

.principle-panel > p:last-child {
  max-width: 52ch;
  color: oklch(78% 0.009 250);
  font-size: 1.08rem;
}

.principle-orbit {
  position: absolute;
  right: clamp(-6rem, -8vw, -2rem);
  bottom: clamp(-7rem, -9vw, -3rem);
  width: min(48vw, 32rem);
  aspect-ratio: 1;
  border: 1px solid oklch(52% 0.105 248 / 0.35);
  border-radius: 50%;
}

.principle-orbit span {
  position: absolute;
  inset: 13%;
  border: 1px solid oklch(68% 0.135 164 / 0.32);
  border-radius: 50%;
}

.principle-orbit span:nth-child(2) {
  inset: 26%;
  border-color: oklch(61% 0.105 58 / 0.3);
}

.principle-orbit span:nth-child(3) {
  inset: 41%;
  background: var(--surface);
  border: 0;
  box-shadow: 0 0 0 10px oklch(99% 0 0 / 0.08);
}

.pathways-section {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, oklch(14% 0.012 250 / 0.022) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(0deg, oklch(14% 0.012 250 / 0.018) 1px, transparent 1px) 0 0 / 88px 88px,
    var(--paper);
}

.pathways-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(18rem, 0.52fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}

.pathways-heading h2 {
  max-width: 13ch;
  margin-top: var(--space-4);
}

.pathways-heading p {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: clamp(2rem, 5vw, 4.5rem);
}

.pathway-card {
  display: grid;
  overflow: hidden;
  min-height: 34rem;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(99.5% 0.002 250 / 0.86);
  box-shadow: var(--shadow);
  transition:
    transform 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    background-color 220ms var(--ease-out);
}

.pathway-card:hover,
.pathway-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: var(--surface);
}

.pathway-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  filter: saturate(0.86) contrast(1.04);
}

.pathway-card:first-child img {
  object-position: center 38%;
}

.pathway-card span,
.pathway-card h3,
.pathway-card p {
  margin-right: var(--space-4);
  margin-left: var(--space-4);
}

.pathway-card span {
  margin-top: var(--space-4);
  color: var(--green-deep);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 680;
  text-transform: uppercase;
}

.pathway-card h3 {
  max-width: 14ch;
  margin-top: var(--space-4);
  margin-bottom: var(--space-3);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.pathway-card p {
  margin-bottom: var(--space-4);
  color: var(--ink-soft);
  line-height: 1.48;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.58fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  min-height: calc(58svh - 64px);
  padding: clamp(4.5rem, 10vw, 8rem) clamp(1rem, 4vw, 4.5rem) clamp(3rem, 7vw, 6rem);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, oklch(14% 0.012 250 / 0.028) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(0deg, oklch(14% 0.012 250 / 0.02) 1px, transparent 1px) 0 0 / 88px 88px,
    var(--paper);
}

.subpage-hero-copy,
.subpage-hero-media {
  max-width: 1380px;
}

.subpage-hero h1 {
  max-width: 11ch;
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
  font-size: clamp(3.2rem, 8vw, 7.6rem);
  line-height: 0.94;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 48rem;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
}

.back-link {
  display: inline-flex;
  margin-bottom: var(--space-6);
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 650;
  text-transform: uppercase;
}

.subpage-hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.subpage-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.subpage-hero-media figcaption {
  padding: var(--space-3) var(--space-4);
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.story-submit-section {
  border-bottom: 1px solid var(--dark-line);
  background:
    linear-gradient(90deg, oklch(99% 0 0 / 0.04) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(0deg, oklch(99% 0 0 / 0.032) 1px, transparent 1px) 0 0 / 88px 88px,
    var(--dark);
  color: var(--surface);
}

.story-submit-section .section-kicker {
  color: var(--green);
}

.story-lab {
  display: grid;
  grid-template-columns: minmax(18rem, 0.56fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.story-lab-copy h2 {
  max-width: 11ch;
  margin-top: var(--space-4);
}

.story-lab-copy p {
  max-width: 36rem;
  margin-top: var(--space-6);
  color: oklch(78% 0.009 250);
  font-size: 1.04rem;
}

.story-console {
  display: grid;
  gap: var(--space-4);
}

.story-form,
.story-feed {
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: var(--dark-2);
}

.story-form {
  display: grid;
  gap: var(--space-4);
  padding: clamp(1rem, 3vw, 1.5rem);
}

.story-field {
  display: grid;
  gap: var(--space-2);
}

.story-field-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.story-tools {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: flex-end;
}

.story-field label,
.story-feed-head h3,
.story-feed-head button,
.story-tools button,
.story-source summary {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 680;
  line-height: 1.2;
  text-transform: uppercase;
}

.story-field label,
.story-feed-head h3,
.story-source summary {
  color: var(--green);
}

.story-field input,
.story-field textarea {
  width: 100%;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-ui);
  color: var(--surface);
  background: oklch(14% 0.012 250);
}

.story-field input {
  min-height: 48px;
  padding: 0 1rem;
}

.story-field textarea {
  min-height: 12rem;
  padding: 0.85rem 1rem;
  resize: vertical;
  user-select: text;
  -webkit-user-select: text;
}

.story-field input::placeholder,
.story-field textarea::placeholder {
  color: oklch(68% 0.009 250);
}

.story-form > button[type="submit"],
.story-tools button,
.story-feed-head button {
  min-height: 44px;
  border-radius: var(--radius-ui);
  font-weight: 620;
  transition:
    transform 180ms var(--ease-out),
    background-color 180ms var(--ease-out),
    border-color 180ms var(--ease-out);
}

.story-form > button[type="submit"] {
  border: 1px solid var(--green);
  color: var(--ink);
  background: var(--green);
}

.story-feed-head button,
.story-tools button {
  border: 1px solid var(--dark-line);
  padding: 0 var(--space-4);
  color: var(--surface);
  background: transparent;
}

.story-tools button {
  min-height: 32px;
  padding: 0 var(--space-3);
  color: oklch(78% 0.009 250);
}

.story-form > button[type="submit"]:hover,
.story-form > button[type="submit"]:focus-visible,
.story-feed-head button:hover,
.story-feed-head button:focus-visible,
.story-tools button:hover,
.story-tools button:focus-visible {
  transform: translateY(-2px);
}

.story-form > button[type="submit"]:hover,
.story-form > button[type="submit"]:focus-visible {
  background: oklch(75% 0.12 164);
}

.story-tools button:hover,
.story-tools button:focus-visible {
  border-color: var(--green);
  color: var(--surface);
}

.story-form > button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.story-status {
  color: oklch(70% 0.009 250);
  font-size: 0.9rem;
}

.story-status[data-tone="success"] {
  color: var(--green);
}

.story-status[data-tone="error"] {
  color: oklch(78% 0.13 35);
}

.story-status[data-tone="reject"] {
  color: oklch(78% 0.105 58);
}

.story-feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4);
  border-bottom: 1px solid var(--dark-line);
}

.story-feed-head h3 {
  margin: 0;
  color: var(--surface);
}

.story-list {
  display: grid;
}

.story-list[aria-busy="true"] {
  opacity: 0.68;
}

.story-empty {
  padding: var(--space-4);
  color: oklch(70% 0.009 250);
}

.community-story {
  padding: clamp(1rem, 3vw, 1.5rem);
  border-bottom: 1px solid var(--dark-line);
}

.community-story:last-child {
  border-bottom: 0;
}

.community-story-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2) var(--space-4);
  color: oklch(70% 0.009 250);
  font-size: 0.9rem;
}

.community-story-meta strong {
  color: var(--surface);
  font-size: 0.96rem;
}

.community-statement {
  margin: var(--space-4) 0 0;
  color: var(--surface);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  font-weight: 540;
  line-height: 1.36;
}

.story-source {
  margin-top: var(--space-4);
  color: oklch(72% 0.009 250);
}

.story-source summary {
  cursor: pointer;
}

.story-source p {
  margin: var(--space-3) 0 0;
  color: oklch(76% 0.009 250);
  font-size: 0.94rem;
  line-height: 1.5;
}

.story-method-section {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.story-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.story-method-grid p {
  min-height: 9rem;
  padding: var(--space-6);
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 1rem;
}

.story-method-grid p:last-child {
  border-right: 0;
}

.story-method-grid span {
  display: block;
  margin-bottom: var(--space-3);
  color: var(--green-deep);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 680;
  text-transform: uppercase;
}

.journey-section {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, oklch(14% 0.012 250 / 0.026) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(0deg, oklch(14% 0.012 250 / 0.02) 1px, transparent 1px) 0 0 / 88px 88px,
    var(--paper-deep);
}

.journey-shell {
  display: grid;
  grid-template-columns: minmax(18rem, 0.74fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.journey-copy h2 {
  max-width: 11ch;
  margin-top: var(--space-4);
  font-size: clamp(2.55rem, 4.4vw, 4.75rem);
  line-height: 0.98;
}

.journey-lede {
  max-width: 44rem;
  margin-top: var(--space-6);
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.journey-arc {
  display: grid;
  margin-top: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--line-strong);
}

.journey-arc p {
  display: grid;
  grid-template-columns: minmax(5.5rem, 0.28fr) minmax(0, 1fr);
  gap: var(--space-4);
  margin: 0;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.journey-arc span,
.journey-media span {
  color: var(--green-deep);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 680;
  line-height: 1.2;
  text-transform: uppercase;
}

.journey-media {
  display: grid;
  grid-template-columns: minmax(13rem, 0.68fr) minmax(0, 1fr);
  gap: var(--space-4);
  align-items: stretch;
}

.journey-photo-card,
.journey-video-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.journey-photo-card {
  align-content: start;
}

.journey-photo-card img {
  width: 100%;
  aspect-ratio: 9 / 14;
  object-fit: cover;
  object-position: center 34%;
  border-bottom: 1px solid var(--line);
  filter: saturate(0.88) contrast(1.02);
}

.journey-photo-card span,
.journey-photo-card strong,
.journey-photo-card p {
  margin-right: var(--space-4);
  margin-left: var(--space-4);
}

.journey-photo-card span {
  margin-top: var(--space-4);
}

.journey-photo-card strong,
.journey-video-card strong {
  display: block;
  margin-top: var(--space-3);
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.18;
}

.journey-photo-card p,
.journey-video-card p {
  margin-top: var(--space-3);
  margin-bottom: var(--space-4);
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.48;
}

.journey-video-card {
  align-self: start;
}

.journey-video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  filter: saturate(0.82) contrast(1.02);
}

.journey-video-card div {
  padding: var(--space-4);
}

.practice-section {
  border-bottom: 1px solid var(--dark-line);
  background: var(--dark);
  color: var(--surface);
}

.practice-section p {
  color: oklch(78% 0.009 250);
}

.practice-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.42fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  margin-top: var(--space-6);
}

.practice-layout h2,
.symbiosis-heading h2 {
  max-width: 11.5ch;
  font-size: clamp(2.45rem, 4vw, 4.35rem);
  line-height: 0.98;
}

.practice-layout > div:first-child p {
  max-width: 31rem;
  margin-top: var(--space-4);
  font-size: 1.08rem;
}

.practice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.practice-list article {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 20rem;
  overflow: hidden;
  border: 1px solid oklch(99% 0 0 / 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, oklch(99% 0 0 / 0.055), transparent 48%),
    var(--dark-2);
  box-shadow: 0 18px 44px -34px oklch(0% 0 0 / 0.72);
}

.practice-list img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid oklch(99% 0 0 / 0.12);
  filter: saturate(0.78) contrast(1.04) brightness(0.9);
}

.practice-list article > div {
  display: grid;
  align-content: start;
  padding: var(--space-4);
}

.practice-list span {
  display: block;
  color: var(--surface);
  font-weight: 620;
  line-height: 1.2;
}

.practice-list p {
  margin-top: var(--space-3);
  color: oklch(75% 0.009 250);
  font-size: 0.93rem;
  line-height: 1.48;
}

.symbiosis-section {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, oklch(14% 0.012 250 / 0.035) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(0deg, oklch(14% 0.012 250 / 0.028) 1px, transparent 1px) 0 0 / 88px 88px,
    var(--paper);
}

.symbiosis-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.62fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
}

.symbiosis-heading p {
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.synthesis-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(2rem, 5vw, 4.5rem);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

.synthesis-grid article {
  min-height: 12rem;
  padding: clamp(1.1rem, 2.5vw, 1.75rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: oklch(99.5% 0.002 250 / 0.68);
  box-shadow: inset 0 1px 0 oklch(99% 0 0 / 0.72);
}

.synthesis-grid span,
.product-steps span {
  display: block;
  margin-bottom: var(--space-4);
  color: var(--green-deep);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.2;
  text-transform: uppercase;
}

.synthesis-grid p {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.product-lab {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(20rem, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
  margin-top: clamp(2rem, 6vw, 5rem);
  padding-top: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--line-strong);
}

.product-lab h3 {
  max-width: 14ch;
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.product-system {
  display: grid;
  gap: var(--space-4);
}

.product-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
}

.product-steps p {
  min-height: 8rem;
  padding: var(--space-4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.stance-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(22rem, 0.92fr);
  gap: clamp(1.75rem, 5vw, 5rem);
  align-items: stretch;
  padding-top: clamp(3.25rem, 7vw, 5.5rem);
  padding-bottom: clamp(3.25rem, 7vw, 5.5rem);
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, oklch(14% 0.012 250 / 0.026) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(0deg, oklch(14% 0.012 250 / 0.02) 1px, transparent 1px) 0 0 / 88px 88px,
    var(--paper-deep);
}

.stance-copy {
  display: grid;
  align-content: start;
  gap: var(--space-6);
}

.stance-copy h2 {
  max-width: 13ch;
  font-size: 2.75rem;
  line-height: 1;
}

.stance-copy p {
  max-width: 43rem;
  padding-top: var(--space-6);
  border-top: 1px solid var(--line-strong);
  color: var(--ink-soft);
  font-size: 1.08rem;
  font-weight: 430;
  line-height: 1.58;
}

.stance-matrix {
  display: grid;
  align-self: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(99.5% 0.002 250 / 0.78);
  box-shadow: var(--shadow);
}

.stance-matrix p {
  display: grid;
  grid-template-columns: minmax(8.5rem, 0.42fr) minmax(0, 1fr);
  gap: var(--space-6);
  align-items: start;
  padding: var(--space-6);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

.stance-matrix p:last-child {
  border-bottom: 0;
  color: var(--surface);
  background: var(--ink);
}

.stance-matrix span {
  display: block;
  color: var(--green-deep);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.25;
  text-transform: uppercase;
}

.stance-matrix p:last-child span {
  color: var(--green);
}

.join-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(19rem, 0.58fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  border-block: 1px solid var(--dark-line);
  background:
    linear-gradient(90deg, oklch(99% 0 0 / 0.055) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(0deg, oklch(99% 0 0 / 0.04) 1px, transparent 1px) 0 0 / 88px 88px,
    var(--dark);
  color: var(--surface);
}

.join-copy p {
  max-width: 48rem;
  margin-top: var(--space-6);
  color: oklch(78% 0.009 250);
  font-size: 1.08rem;
}

.join-form {
  display: grid;
  gap: var(--space-3);
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: var(--dark-2);
  box-shadow: none;
}

.join-form label {
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 650;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-2);
}

.form-row input,
.form-row button {
  min-height: 48px;
  border-radius: var(--radius-ui);
}

.form-row input {
  width: 100%;
  border: 1px solid var(--dark-line);
  padding: 0 1rem;
  color: var(--surface);
  background: oklch(14% 0.012 250);
}

.form-row input::placeholder {
  color: oklch(68% 0.009 250);
}

.form-row input:focus-visible,
.form-row button:focus-visible,
.story-field input:focus-visible,
.story-field textarea:focus-visible,
.story-form button:focus-visible,
.story-feed-head button:focus-visible,
.button:focus-visible,
.principle-tab:focus-visible,
.nav-links a:focus-visible,
.brand:focus-visible,
.back-link:focus-visible,
.pathway-card:focus-visible,
.site-footer a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.form-row button {
  border: 1px solid var(--green);
  padding: 0 1rem;
  color: var(--ink);
  background: var(--green);
  font-weight: 620;
  transition:
    transform 180ms var(--ease-out),
    background-color 180ms var(--ease-out);
}

.form-row button:hover {
  transform: translateY(-2px);
  background: oklch(75% 0.12 164);
}

.form-row button:disabled {
  cursor: wait;
  opacity: 0.64;
  transform: none;
}

.form-note {
  color: oklch(68% 0.009 250);
  font-size: 0.88rem;
}

.form-note[data-tone="success"] {
  color: var(--green);
}

.form-note[data-tone="error"] {
  color: oklch(77% 0.14 34);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-8) clamp(1rem, 4vw, 4.5rem);
  border-top: 1px solid var(--dark-line);
  color: oklch(76% 0.009 250);
  background: var(--dark);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--surface);
  font-weight: 620;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 760px) {
  h1 {
    font-size: 4.85rem;
  }

  h2 {
    font-size: 3.65rem;
  }

  h3 {
    font-size: 2.5rem;
  }

  .hero-thesis {
    font-size: 1.55rem;
  }

  .signal-strip p {
    font-size: 2rem;
  }

  .stance-copy h2 {
    font-size: 3.2rem;
  }
}

@media (min-width: 1180px) {
  h1 {
    font-size: 5.85rem;
  }

  h2 {
    font-size: 4.35rem;
  }

  h3 {
    font-size: 3rem;
  }

  .hero-thesis {
    font-size: 1.85rem;
  }

  .signal-strip p {
    font-size: 2.65rem;
  }

  .stance-copy h2 {
    font-size: 3.65rem;
  }
}

@media (max-width: 980px) {
  .hero,
  .split,
  .compass-heading,
  .compass-grid,
  .pathways-heading,
  .subpage-hero,
  .story-lab,
  .journey-shell,
  .practice-layout,
  .symbiosis-heading,
  .product-lab,
  .stance-section,
  .join-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    align-items: center;
    padding-top: clamp(3rem, 12vw, 6rem);
  }

  .hero-axis {
    max-width: 28rem;
  }

  .practice-list article {
    min-height: auto;
  }

  .stance-matrix p {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .synthesis-grid,
  .pathway-grid,
  .product-steps {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .journey-media {
    grid-template-columns: minmax(12rem, 0.72fr) minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 64px;
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-2);
    padding-top: var(--space-3);
    padding-bottom: var(--space-3);
  }

  .nav-links {
    display: grid;
    width: calc(100dvw - 2rem);
    grid-template-columns: repeat(5, minmax(0, 1fr));
    justify-content: initial;
    gap: var(--space-2);
    font-size: 0.72rem;
  }

  .nav-links a {
    min-width: 0;
    text-align: center;
  }

  .brand {
    font-size: 0.86rem;
  }

  .hero {
    padding-top: var(--space-8);
  }

  .hero-copy,
  .signal-strip p {
    max-width: calc(100dvw - 2.5rem);
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .button {
    width: 100%;
  }

  .hero-axis {
    display: none;
  }

  .section {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }

  .signal-strip p {
    font-size: 1.36rem;
  }

  .section[id] {
    scroll-margin-top: 112px;
  }

  .synthesis-grid,
  .pathway-grid,
  .story-method-grid,
  .journey-media,
  .practice-list,
  .frontier-notes,
  .product-steps {
    grid-template-columns: 1fr;
  }

  .journey-shell {
    gap: var(--space-8);
  }

  .subpage-hero {
    min-height: auto;
    padding-top: var(--space-16);
  }

  .subpage-hero h1 {
    font-size: 3.05rem;
  }

  .pathway-card {
    min-height: auto;
  }

  .story-method-grid p {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-method-grid p:last-child {
    border-bottom: 0;
  }

  .journey-copy h2 {
    max-width: 12ch;
    font-size: 2.35rem;
  }

  .journey-lede {
    font-size: 1rem;
  }

  .journey-arc p {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .journey-photo-card img {
    aspect-ratio: 16 / 10;
    object-position: center 38%;
  }

  .journey-photo-card strong,
  .journey-video-card strong {
    font-size: 1.05rem;
  }

  .synthesis-grid article,
  .product-steps p {
    min-height: auto;
  }

  .principle-panel {
    min-height: 27rem;
  }

  .principle-orbit {
    width: 22rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.72rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .nav-links {
    font-size: 0.76rem;
  }
}

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