:root {
  --ink-950: #061522;
  --ink-900: #071827;
  --ink-850: #0a2032;
  --ink-800: #0d273b;
  --ink-700: #17384d;
  --paper: #f6f2e9;
  --paper-muted: #c9d2d7;
  --paper-dim: #95a7b1;
  --gold: #f3b55f;
  --gold-deep: #d58f38;
  --mint: #9bc9c0;
  --line: rgba(222, 232, 236, 0.16);
  --line-strong: rgba(222, 232, 236, 0.24);
  --card: rgba(255, 255, 255, 0.035);
  --card-strong: rgba(255, 255, 255, 0.055);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 92% 12%, rgba(243, 181, 95, 0.07), transparent 26rem),
    radial-gradient(circle at 15% 85%, rgba(155, 201, 192, 0.05), transparent 32rem),
    linear-gradient(135deg, var(--ink-950), var(--ink-900) 42%, #0a2438);
  color: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

body::after {
  content: "";
  position: fixed;
  right: -15rem;
  top: 37rem;
  width: 38rem;
  height: 38rem;
  z-index: -1;
  pointer-events: none;
  border: 4rem solid rgba(155, 201, 192, 0.035);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(155, 201, 192, 0.018),
    0 0 0 8rem rgba(155, 201, 192, 0.012);
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
  border-radius: 0.35rem;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  transform: translateY(-160%);
  border-radius: 0.5rem;
  background: var(--paper);
  color: var(--ink-950);
  font-weight: 700;
  transition: transform 160ms ease;
}

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

.page-shell {
  width: min(100% - 3rem, 1240px);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-small {
  margin-bottom: 0.22rem;
  color: var(--paper-muted);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.brand-large {
  color: var(--paper);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.92rem;
  border: 1px solid rgba(243, 181, 95, 0.4);
  border-radius: 999px;
  color: #f8ca88;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  background: rgba(243, 181, 95, 0.055);
}

.status-pill span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0.25rem rgba(243, 181, 95, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(25rem, 0.92fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  min-height: 760px;
  padding-block: 5.75rem 5.25rem;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 1.35rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 6.4vw, 6.65rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 strong {
  margin-top: 0.26em;
  color: var(--gold);
  font-weight: 700;
}

.hero-intro {
  max-width: 43rem;
  margin: 2rem 0 0;
  color: var(--paper-muted);
  font-size: 1.2rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.78rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: var(--ink-950);
  box-shadow: 0 12px 30px rgba(243, 181, 95, 0.14);
}

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

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.018);
  color: var(--paper);
}

.button-secondary:hover {
  border-color: rgba(243, 181, 95, 0.55);
  background: rgba(243, 181, 95, 0.04);
}

.hero-note {
  max-width: 43rem;
  margin: 1.1rem 0 0;
  color: var(--paper-dim);
  font-size: 0.88rem;
  line-height: 1.55;
}

.hero-note a {
  color: var(--paper-muted);
}

.hero-visual {
  display: grid;
  min-height: 500px;
  place-items: center;
}

.orbital-field {
  position: relative;
  width: min(100%, 470px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(214, 229, 235, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-1 { width: 43%; height: 43%; }
.orbit-2 { width: 57%; height: 57%; }
.orbit-3 { width: 70%; height: 70%; }
.orbit-4 { width: 83%; height: 83%; }
.orbit-5 { width: 96%; height: 96%; }

.hero-mark {
  position: relative;
  z-index: 2;
  width: 50%;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.24));
}

.orbit-label {
  position: absolute;
  z-index: 3;
  padding: 0.32rem 0.58rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(4, 17, 28, 0.88);
  color: var(--paper-muted);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.label-breathe {
  top: 22%;
  right: 1%;
}

.label-connect {
  left: -3%;
  top: 57%;
}

.label-practice {
  right: -2%;
  bottom: 22%;
}

.path-section {
  padding-block: 5.75rem 6rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: end;
}

.section-heading h2,
.network-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.4vw, 4.7rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.section-heading > p {
  max-width: 34rem;
  margin: 0 0 0.35rem;
  color: var(--paper-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 3.2rem;
}

.feature-card {
  min-height: 285px;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background:
    linear-gradient(145deg, var(--card-strong), transparent 68%),
    var(--card);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.feature-icon {
  display: grid;
  width: 3.15rem;
  height: 3.15rem;
  place-items: center;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(243, 181, 95, 0.28);
  border-radius: 50%;
  background: rgba(243, 181, 95, 0.06);
  color: var(--gold);
}

.feature-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.feature-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.16rem;
  line-height: 1.3;
}

.feature-card p {
  margin: 0;
  color: var(--paper-muted);
  line-height: 1.6;
}

.network-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 4rem;
  align-items: center;
  margin-block: 0 6rem;
  padding: clamp(2.5rem, 5vw, 4.1rem);
  border: 1px solid rgba(155, 201, 192, 0.18);
  border-radius: 1.7rem;
  background:
    radial-gradient(circle at 0 50%, rgba(155, 201, 192, 0.13), transparent 38%),
    rgba(4, 22, 35, 0.33);
  box-shadow: var(--shadow);
}

.network-copy h2 {
  max-width: 8.7em;
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.network-links {
  display: grid;
  gap: 0.75rem;
}

.network-links a {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.025);
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.network-links a:hover {
  transform: translateX(3px);
  border-color: rgba(243, 181, 95, 0.25);
  background: rgba(243, 181, 95, 0.045);
}

.network-links span {
  color: var(--mint);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.network-links strong {
  font-size: 0.93rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: center;
  min-height: 130px;
  border-top: 1px solid var(--line);
  color: var(--paper-dim);
  font-size: 0.78rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--paper-muted);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .hero-visual {
    min-height: auto;
  }

  .orbital-field {
    width: min(100%, 520px);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .network-section {
    grid-template-columns: 1fr;
  }

  .network-copy h2 {
    max-width: 11em;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 0.3rem;
    padding-block: 2rem;
  }
}

@media (max-width: 620px) {
  .page-shell {
    width: min(100% - 2rem, 1240px);
  }

  .site-header {
    min-height: 90px;
  }

  .brand {
    gap: 0.5rem;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

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

  .brand-large {
    font-size: 0.78rem;
  }

  .status-pill {
    padding: 0.46rem 0.66rem;
    font-size: 0.56rem;
    letter-spacing: 0.11em;
  }

  .hero {
    min-height: auto;
    padding-block: 3.1rem 4rem;
  }

  .eyebrow {
    margin-bottom: 1rem;
    font-size: 0.61rem;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.35rem);
    line-height: 0.94;
  }

  .hero-intro {
    margin-top: 1.4rem;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero-actions {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.6rem;
  }

  .button {
    width: 100%;
  }

  .hero-note {
    margin-top: 1rem;
    font-size: 0.76rem;
  }

  .hero-visual {
    margin-top: 1.5rem;
  }

  .orbital-field {
    width: min(100%, 360px);
  }

  .path-section {
    padding-block: 4rem;
  }

  .section-heading h2,
  .network-copy h2 {
    font-size: 2.65rem;
  }

  .section-heading > p {
    font-size: 0.9rem;
  }

  .feature-grid {
    margin-top: 2rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    margin-bottom: 2rem;
  }

  .network-section {
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 1.55rem;
    border-radius: 1.25rem;
  }

  .network-links a {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .site-footer {
    font-size: 0.72rem;
  }
}

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

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