:root {
  --jade-950: #02110f;
  --jade-900: #042f2e;
  --jade-800: #073f3d;
  --jade-600: #0f8f8b;
  --jade-700: #0e7490;
  --cyan-500: #06b6d4;
  --cyan-400: #22d3ee;
  --cyan-300: #67e8f9;
  --pearl: #fbfffd;
  --paper: #f6fbf8;
  --mist: #e9f6f2;
  --mist-strong: #d7eee8;
  --text: #16332f;
  --text-soft: #4e6863;
  --text-muted: #78908a;
  --blessing: #d8b96f;
  --mint-50: #f1faf8;
  --mint-100: #dff7f3;
  --ink: #f8fffd;
  --ink-soft: #cce9e4;
  --ink-muted: #8fb5b0;
  --line: rgba(199, 255, 246, 0.18);
  --line-strong: rgba(103, 232, 249, 0.42);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 4%, rgba(216, 185, 111, 0.18), transparent 24rem),
    radial-gradient(circle at 12% 12%, rgba(34, 211, 238, 0.16), transparent 26rem),
    linear-gradient(180deg, #fbfffd 0%, #f4fbf8 42%, #ecf7f3 100%);
  font-family: var(--sans);
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 4px;
  background: var(--cyan-400);
  color: #031513;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 700;
}

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

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

section[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(20px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid rgba(15, 143, 139, 0.1);
  background: rgba(251, 255, 253, 0.62);
  backdrop-filter: blur(20px);
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(15, 143, 139, 0.16);
  background: rgba(251, 255, 253, 0.92);
  box-shadow: 0 12px 40px rgba(4, 47, 46, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(34, 211, 238, 0.34));
}

.brand__text {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand__text span {
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1;
  color: var(--text);
}

.brand__text small {
  color: var(--cyan-300);
  font-size: 0.68rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(22, 51, 47, 0.82);
  font-size: 0.92rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cyan-300);
}

.nav-action {
  color: var(--jade-600);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-height: 34px;
  border: 1px solid rgba(15, 143, 139, 0.18);
  border-radius: 4px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 10px 28px rgba(4, 47, 46, 0.05);
}

.language-switch button {
  min-width: 36px;
  height: 28px;
  border: 0;
  border-radius: 3px;
  padding: 0 9px;
  color: var(--text-soft);
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.language-switch button[aria-pressed="true"] {
  color: #ffffff;
  background: linear-gradient(135deg, #0f8f8b, #23cad7);
  box-shadow: 0 8px 20px rgba(15, 143, 139, 0.18);
}

.language-switch button:focus-visible {
  outline: 2px solid rgba(15, 143, 139, 0.38);
  outline-offset: 2px;
}

.site-nav svg,
.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 76svh;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 42px) 0 42px;
}

.hero__background,
.hero__veil,
.hero__geometry {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero__background {
  background-image: url("/assets/hero-awakening-light.png");
  background-size: cover;
  background-position: center;
  transform: none;
}

.hero__veil {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(251, 255, 253, 0.95), rgba(251, 255, 253, 0.74) 38%, rgba(251, 255, 253, 0.18) 70%, rgba(251, 255, 253, 0.04)),
    linear-gradient(180deg, rgba(251, 255, 253, 0.88), rgba(251, 255, 253, 0.1) 38%, rgba(251, 255, 253, 0.88) 100%);
}

.hero__geometry {
  z-index: -1;
  opacity: 0.34;
  background:
    linear-gradient(rgba(15, 143, 139, 0.15), rgba(15, 143, 139, 0.15)) 24% 41% / 1px 46% no-repeat,
    linear-gradient(90deg, rgba(15, 143, 139, 0.12), rgba(15, 143, 139, 0.12)) 24% 45% / 28% 1px no-repeat;
}

.hero__geometry::before,
.hero__geometry::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 39%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(103, 232, 249, 0.2);
  border-radius: 50%;
}

.hero__geometry::before {
  width: 390px;
  height: 390px;
}

.hero__geometry::after {
  width: 540px;
  height: 540px;
  opacity: 0.48;
}

.hero__content {
  text-align: left;
  display: grid;
  justify-items: start;
  margin-inline: auto;
}

.hero__mark {
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 10px 28px rgba(6, 182, 212, 0.24));
}

.hero h1 {
  font-family: var(--serif);
  font-size: 5.7rem;
  line-height: 0.94;
  font-weight: 400;
  color: var(--text);
  text-wrap: balance;
  text-shadow: 0 18px 48px rgba(255, 255, 255, 0.7);
}

.hero__name {
  margin-top: 14px;
  color: var(--jade-600);
  font-size: 1.15rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero__subtitle {
  max-width: 760px;
  margin-top: 20px;
  font-family: var(--serif);
  font-size: 2.62rem;
  line-height: 1.06;
  font-weight: 400;
  color: var(--text);
  text-wrap: balance;
  text-shadow: 0 16px 42px rgba(255, 255, 255, 0.66);
}

.hero__vi {
  margin-top: 19px;
  color: var(--jade-600);
  font-family: var(--serif);
  font-size: 1.9rem;
  line-height: 1.2;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 0 28px;
  font-size: 0.98rem;
  font-weight: 650;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(15, 143, 139, 0.72);
}

.button--primary {
  border-color: rgba(15, 143, 139, 0.72);
  background: linear-gradient(135deg, #12aaa6, #23cad7);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 143, 139, 0.22);
}

.button--ghost {
  border-color: rgba(15, 143, 139, 0.28);
  background: rgba(251, 255, 253, 0.58);
  color: var(--jade-900);
  box-shadow: 0 14px 36px rgba(4, 47, 46, 0.06);
}

.section-eyebrow {
  margin: 0 0 14px;
  color: var(--jade-600);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-heading .section-eyebrow {
  margin-inline: auto;
}

.hero__legacy {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.4;
}

.section-band {
  position: relative;
  border-top: 1px solid rgba(15, 143, 139, 0.1);
  border-bottom: 1px solid rgba(15, 143, 139, 0.1);
  background:
    radial-gradient(circle at 10% 0%, rgba(34, 211, 238, 0.1), transparent 34rem),
    linear-gradient(180deg, #fbfffd, #f2faf6);
}

.legacy {
  padding: 64px 0 104px;
}

.legacy__grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 72px;
  align-items: center;
}

.legacy__copy {
  max-width: 520px;
}

.legacy__copy .section-eyebrow,
.legacy__copy .legacy__quote {
  margin-top: 0;
}

.legacy__quote {
  margin-top: 16px;
  color: var(--jade-600);
  font-family: var(--serif);
  font-size: 1.72rem;
  line-height: 1.24;
}

.poem-card {
  border: 1px solid rgba(15, 143, 139, 0.16);
  border-radius: 8px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(225, 247, 242, 0.58)),
    rgba(251, 255, 253, 0.88);
  box-shadow: 0 24px 70px rgba(4, 47, 46, 0.1);
}

.poem-card p {
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.36rem;
  line-height: 1.82;
}

.value-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.value-card {
  border: 1px solid rgba(15, 143, 139, 0.14);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(4, 47, 46, 0.06);
}

.value-card span,
.level-card span,
.ecosystem-card span {
  color: var(--jade-600);
  font-size: 0.78rem;
  font-weight: 800;
}

.value-card h3,
.level-card h3,
.ecosystem-card h3 {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 1.78rem;
  line-height: 1.12;
  font-weight: 400;
}

.value-card p,
.level-card p,
.ecosystem-card p {
  margin-top: 10px;
  color: var(--text-soft);
  line-height: 1.7;
}

.mission {
  padding: 82px 0;
  color: #06211e;
  background: linear-gradient(135deg, var(--mint-50), #ffffff 52%, var(--mint-100));
}

.mission__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.mission-card {
  border: 1px solid rgba(4, 47, 46, 0.12);
  border-radius: 8px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.62);
}

.mission-card .section-eyebrow {
  color: var(--jade-700);
}

.mission-card h2 {
  color: var(--jade-900);
  font-family: var(--serif);
  font-size: 2.35rem;
  line-height: 1.08;
  font-weight: 400;
  text-wrap: balance;
}

.mission-card p:last-child {
  margin-top: 16px;
  color: #355c58;
  font-size: 1.02rem;
  line-height: 1.75;
}

.lineage {
  padding: 70px 0 96px;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 50%, rgba(34, 211, 238, 0.18), transparent 24rem),
    radial-gradient(circle at 92% 38%, rgba(216, 185, 111, 0.08), transparent 20rem),
    linear-gradient(180deg, #073f3d, #032421 54%, #02110f);
  border-color: rgba(209, 255, 247, 0.12);
}

.lineage .section-heading h2,
.lineage .turning-card h3 {
  color: var(--ink);
}

.lineage .section-heading p,
.lineage .turning-card > p:last-child {
  color: var(--ink-soft);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading--left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.legacy h2,
.course h2,
.ecosystem h2,
.experience h2,
.policy-archive h2,
.manifesto h2,
.foundation h2,
.sangha h2 {
  font-family: var(--serif);
  font-size: 3.55rem;
  line-height: 1.03;
  font-weight: 400;
  color: var(--text);
  text-wrap: balance;
}

.section-heading p,
.legacy__copy p,
.course__intro p,
.experience__copy p,
.manifesto__copy p,
.foundation p,
.sangha p {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.8;
}

.turning-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.turning-card {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  min-height: 388px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(2, 17, 15, 0.42);
  box-shadow: var(--shadow);
}

.turning-card::after {
  content: "";
  position: absolute;
  top: 77px;
  right: -23px;
  width: 28px;
  height: 1px;
  background: rgba(103, 232, 249, 0.42);
}

.turning-card:last-child::after {
  display: none;
}

.turning-card--active {
  border-color: rgba(103, 232, 249, 0.58);
  background:
    linear-gradient(180deg, rgba(34, 211, 238, 0.13), rgba(255, 255, 255, 0.018)),
    rgba(2, 17, 15, 0.56);
}

.turning-icon {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin-bottom: 22px;
  border: 1px solid rgba(199, 255, 246, 0.34);
  border-radius: 50%;
  color: var(--ink-soft);
  background: radial-gradient(circle at 50% 38%, rgba(199, 255, 246, 0.12), rgba(2, 17, 15, 0.2));
}

.turning-icon svg {
  width: 70px;
  height: 70px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.turning-icon--logo {
  border-color: rgba(103, 232, 249, 0.7);
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.16);
}

.turning-icon img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.turning-step {
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.turning-card h3 {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 2.15rem;
  line-height: 1.05;
  font-weight: 400;
}

.turning-tag {
  margin-top: 18px;
  color: var(--cyan-300);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.turning-card > p:last-child {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.65;
}

.manifesto {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 18% 82%, rgba(34, 211, 238, 0.12), transparent 24rem),
    linear-gradient(180deg, #fbfffd, #edf8f4);
}

.manifesto::before {
  content: "";
  position: absolute;
  left: 6%;
  bottom: 52px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(103, 232, 249, 0.12);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 70px rgba(15, 143, 139, 0.022),
    inset 0 0 0 138px rgba(15, 143, 139, 0.018);
}

.manifesto__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.manifesto__copy {
  max-width: 500px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: var(--jade-600);
  font-weight: 700;
}

.vow-grid {
  display: grid;
  gap: 14px;
}

.vow-grid article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: start;
  border-top: 1px solid rgba(15, 143, 139, 0.14);
  padding: 24px 0;
}

.vow-grid span {
  grid-row: 1 / span 2;
  color: var(--jade-600);
  font-family: var(--serif);
  font-size: 2rem;
}

.vow-grid h3 {
  grid-column: 2;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.vow-grid p {
  grid-column: 2;
  margin-top: 8px;
  color: var(--text-soft);
  line-height: 1.72;
}

.awakening-path {
  padding: 98px 0 104px;
}

.level-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.level-card {
  position: relative;
  min-height: 246px;
  border: 1px solid rgba(15, 143, 139, 0.14);
  border-radius: 8px;
  padding: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 211, 238, 0.12), transparent 14rem),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(4, 47, 46, 0.06);
}

.level-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(103, 232, 249, 0.08);
  border-radius: 6px;
  pointer-events: none;
}

.path-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.path {
  padding: 98px 0 106px;
}

.path__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 74px;
  align-items: start;
}

.path-list {
  display: grid;
  gap: 18px;
}

.path-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  align-items: start;
  border: 1px solid rgba(15, 143, 139, 0.14);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 50px rgba(4, 47, 46, 0.06);
}

.path-symbol {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(15, 143, 139, 0.28);
  border-radius: 50%;
  color: var(--jade-600);
}

.path-symbol svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.path-item h3 {
  color: var(--jade-600);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.path-item p {
  margin-top: 8px;
  color: var(--text-soft);
  line-height: 1.72;
}

.course {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(34, 211, 238, 0.12), transparent 25rem),
    radial-gradient(circle at 0% 72%, rgba(216, 185, 111, 0.1), transparent 20rem),
    linear-gradient(180deg, #fbfffd, #f4fbf8 55%, #ecf8f4);
}

.course__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 58px;
  align-items: start;
}

.course__intro {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.course__intro .section-eyebrow,
.experience__copy .section-eyebrow {
  margin-top: 0;
}

.course-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.course-stats span {
  border: 1px solid rgba(15, 143, 139, 0.2);
  border-radius: 4px;
  padding: 9px 12px;
  color: var(--jade-600);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
}

.curriculum {
  border: 1px solid rgba(15, 143, 139, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 70px rgba(4, 47, 46, 0.1);
  overflow: hidden;
}

.curriculum details {
  border-top: 1px solid rgba(15, 143, 139, 0.12);
}

.curriculum details:first-child {
  border-top: 0;
}

.curriculum summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 0 24px;
  color: var(--text);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.42rem;
  line-height: 1.2;
}

.curriculum summary span {
  color: var(--jade-600);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 800;
}

.curriculum ol {
  columns: 2;
  column-gap: 30px;
  margin: 0;
  padding: 6px 28px 28px 48px;
  color: var(--text-soft);
  line-height: 1.64;
}

.curriculum li {
  break-inside: avoid;
  padding: 6px 0;
}

.dharma-app {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 18%, rgba(103, 232, 249, 0.22), transparent 24rem),
    radial-gradient(circle at 86% 20%, rgba(216, 185, 111, 0.1), transparent 21rem),
    linear-gradient(135deg, #052f2d 0%, #031b19 58%, #020b0a 100%);
}

.dharma-app::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(199, 255, 246, 0.08), rgba(199, 255, 246, 0.08)) 14% 22% / 18% 1px no-repeat,
    linear-gradient(90deg, rgba(199, 255, 246, 0.06), rgba(199, 255, 246, 0.06)) 14% 22% / 1px 42% no-repeat;
  pointer-events: none;
}

.dharma-app__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 76px;
  align-items: center;
}

.dharma-app .section-eyebrow {
  color: var(--cyan-300);
}

.dharma-app h2 {
  max-width: 760px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 3.8rem;
  line-height: 1.02;
  font-weight: 400;
  text-wrap: balance;
}

.dharma-app__copy > p:last-of-type {
  max-width: 650px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.82;
}

.dharma-app__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.dharma-app__stats span {
  border: 1px solid rgba(199, 255, 246, 0.18);
  border-radius: 4px;
  padding: 10px 13px;
  color: var(--cyan-300);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.86rem;
  font-weight: 760;
}

.dharma-app__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.dharma-app .button--ghost {
  color: var(--ink);
  border-color: rgba(199, 255, 246, 0.2);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.dharma-phone {
  display: flex;
  justify-content: center;
}

.dharma-phone__screen {
  position: relative;
  width: min(430px, 100%);
  min-height: 590px;
  border: 1px solid rgba(199, 255, 246, 0.26);
  border-radius: 32px;
  padding: 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(103, 232, 249, 0.24), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(2, 17, 15, 0.78);
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.38),
    inset 0 0 0 10px rgba(255, 255, 255, 0.025);
}

.dharma-phone__screen::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 74px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(199, 255, 246, 0.24);
}

.dharma-phone__top {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 10px;
}

.dharma-phone__top img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(34, 211, 238, 0.28));
}

.dharma-phone__top span {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.42rem;
  line-height: 1;
}

.dharma-phone__top small {
  display: block;
  margin-top: 6px;
  color: var(--cyan-300);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dharma-phone__hero {
  margin-top: 42px;
  border: 1px solid rgba(199, 255, 246, 0.15);
  border-radius: 8px;
  padding: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 211, 238, 0.18), transparent 12rem),
    rgba(255, 255, 255, 0.055);
}

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

.dharma-phone__hero h3 {
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 2.32rem;
  line-height: 1.02;
  font-weight: 400;
}

.dharma-phone__progress {
  height: 8px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(199, 255, 246, 0.12);
}

.dharma-phone__progress span {
  display: block;
  width: var(--progress);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #12aaa6, #67e8f9);
  box-shadow: 0 0 22px rgba(103, 232, 249, 0.3);
}

.dharma-phone__modules {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.dharma-phone__modules article {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  column-gap: 14px;
  border: 1px solid rgba(199, 255, 246, 0.13);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.dharma-phone__modules span {
  grid-row: 1 / span 2;
  color: var(--cyan-300);
  font-size: 0.78rem;
  font-weight: 800;
}

.dharma-phone__modules h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 400;
}

.dharma-phone__modules p {
  margin-top: 5px;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.ecosystem {
  padding: 98px 0 106px;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ecosystem-card {
  min-height: 292px;
  border: 1px solid rgba(15, 143, 139, 0.14);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(232, 248, 244, 0.58)),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 50px rgba(4, 47, 46, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.ecosystem-card:hover,
.ecosystem-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(103, 232, 249, 0.58);
  background:
    linear-gradient(180deg, rgba(34, 211, 238, 0.12), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.92);
}

.experience {
  padding: 110px 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(34, 211, 238, 0.12), transparent 26rem),
    linear-gradient(180deg, #f6fbf8, #fbfffd);
}

.experience__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 58px;
  align-items: start;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.social-links a {
  border: 1px solid rgba(15, 143, 139, 0.22);
  border-radius: 4px;
  padding: 10px 13px;
  color: var(--jade-600);
  font-size: 0.9rem;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.72);
}

.experience__media {
  display: grid;
  gap: 16px;
}

.video-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(15, 143, 139, 0.16);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(4, 47, 46, 0.12);
}

.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 240ms ease, opacity 240ms ease;
}

.video-frame:hover img,
.video-frame:focus-visible img {
  transform: scale(1.04);
  opacity: 1;
}

.video-frame__play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #0f8f8b, #23cad7);
  box-shadow: 0 18px 52px rgba(15, 143, 139, 0.28);
}

.video-frame__play svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 238px;
  border: 1px solid rgba(15, 143, 139, 0.16);
  border-radius: 8px;
  object-fit: cover;
}

.gallery-grid img:nth-child(2) {
  opacity: 0.9;
}

.foundation {
  padding: 74px 0;
  color: #06211e;
  background: linear-gradient(135deg, var(--mint-50), #ffffff 48%, var(--mint-100));
}

.foundation__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.foundation h2 {
  color: var(--jade-900);
  max-width: 760px;
}

.foundation p {
  color: #355c58;
  max-width: 780px;
}

.foundation .button--ghost {
  color: var(--jade-900);
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(4, 47, 46, 0.18);
}

.foundation__actions {
  display: grid;
  gap: 14px;
  min-width: 250px;
}

.policy-archive {
  padding: 94px 0 106px;
}

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

.policy-card {
  border: 1px solid rgba(15, 143, 139, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(4, 47, 46, 0.06);
}

.policy-card summary {
  min-height: 64px;
  padding: 20px 22px;
  color: var(--text);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.2;
}

.policy-card p {
  margin: 0;
  padding: 0 22px 18px;
  color: var(--text-soft);
  line-height: 1.7;
}

.sangha {
  position: relative;
  overflow: hidden;
  padding: 118px 0 126px;
  background:
    radial-gradient(circle at 16% 60%, rgba(216, 185, 111, 0.1), transparent 22rem),
    radial-gradient(circle at 50% 52%, rgba(34, 211, 238, 0.16), transparent 24rem),
    #020b0a;
}

.sangha h2 {
  color: var(--ink);
}

.sangha__inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.sangha__mark {
  width: 116px;
  height: 116px;
  object-fit: contain;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 30px rgba(34, 211, 238, 0.34));
}

.sangha p {
  color: var(--ink-soft);
  max-width: 760px;
  margin-bottom: 34px;
}

.sangha__quote {
  color: var(--cyan-300);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.site-footer {
  border-top: 1px solid rgba(209, 255, 247, 0.12);
  padding: 30px 0;
  color: var(--ink-muted);
  background: #020b0a;
}

.site-footer .brand__text span {
  color: var(--ink);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand--footer .brand__mark {
  width: 42px;
  height: 42px;
}

.site-footer p {
  font-size: 0.92rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1120px) {
  :root {
    --header-height: 70px;
  }

  .site-nav {
    position: fixed;
    z-index: 60;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    border: 1px solid rgba(15, 143, 139, 0.16);
    border-radius: 8px;
    padding: 14px;
    color: var(--text);
    background: #fbfffd;
    box-shadow: 0 22px 60px rgba(4, 47, 46, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a {
    min-height: 48px;
    padding: 0 10px;
  }

  .language-switch {
    width: fit-content;
    margin: 6px 10px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(15, 143, 139, 0.2);
    border-radius: 4px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.64);
  }

  .nav-toggle__line {
    width: 18px;
    height: 1px;
    background: currentColor;
  }

  .hero {
    min-height: 78svh;
    padding-top: calc(var(--header-height) + 36px);
  }

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

  .hero__subtitle {
    font-size: 2.34rem;
  }

  .turning-track,
  .legacy__grid,
  .mission__grid,
  .manifesto__grid,
  .path__grid,
  .course__grid,
  .dharma-app__grid,
  .experience__grid,
  .foundation__inner {
    grid-template-columns: 1fr;
  }

  .course__intro {
    position: static;
  }

  .turning-card::after {
    display: none;
  }

  .turning-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .level-grid,
  .ecosystem-grid,
  .policy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .manifesto__grid,
  .path__grid,
  .legacy__grid,
  .course__grid,
  .dharma-app__grid,
  .experience__grid {
    gap: 46px;
  }

  .foundation__actions {
    min-width: 0;
    width: min(390px, 100%);
  }
}

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

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

  .brand__text span {
    font-size: 1.08rem;
  }

  .brand__text small {
    font-size: 0.58rem;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 76svh;
    align-items: start;
    padding-bottom: 38px;
  }

  .hero__mark {
    width: 76px;
    height: 76px;
    margin-bottom: 18px;
  }

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

  .hero__name {
    font-size: 0.96rem;
  }

  .hero__subtitle {
    margin-top: 28px;
    font-size: 1.82rem;
  }

  .hero__vi {
    font-size: 1.35rem;
  }

  .hero__actions,
  .foundation__actions {
    width: 100%;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding-inline: 18px;
  }

  .hero__geometry::before {
    width: 300px;
    height: 300px;
  }

  .hero__geometry::after {
    width: 410px;
    height: 410px;
  }

  .lineage,
  .legacy,
  .mission,
  .awakening-path,
  .path {
    padding: 62px 0 76px;
  }

  .manifesto,
  .course,
  .dharma-app,
  .ecosystem,
  .experience,
  .policy-archive,
  .sangha {
    padding: 78px 0;
  }

  .section-heading h2,
  .legacy h2,
  .course h2,
  .dharma-app h2,
  .ecosystem h2,
  .experience h2,
  .policy-archive h2,
  .manifesto h2,
  .foundation h2,
  .sangha h2 {
    font-size: 2.45rem;
  }

  .mission-card h2 {
    font-size: 2rem;
  }

  .turning-track,
  .value-row,
  .level-grid,
  .ecosystem-grid,
  .policy-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .poem-card,
  .mission-card,
  .level-card {
    padding: 24px;
  }

  .poem-card p {
    font-size: 1.18rem;
    line-height: 1.75;
  }

  .curriculum summary {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 20px;
  }

  .curriculum ol {
    columns: 1;
    padding: 0 22px 24px 42px;
  }

  .gallery-grid img {
    height: 220px;
  }

  .dharma-phone__screen {
    min-height: auto;
    border-radius: 24px;
    padding: 22px;
  }

  .dharma-phone__hero {
    margin-top: 30px;
    padding: 22px;
  }

  .dharma-phone__hero h3 {
    font-size: 2rem;
  }

  .vow-grid article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .vow-grid span,
  .vow-grid h3,
  .vow-grid p {
    grid-column: auto;
    grid-row: auto;
  }

  .path-item {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    display: grid;
  }
}

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