:root {
  --bg: #030305;
  --panel: rgba(11, 13, 22, 0.76);
  --panel-strong: rgba(20, 22, 36, 0.92);
  --text: #f8fbff;
  --muted: #a8b2c7;
  --pink: #ff2ec4;
  --blue: #22d8ff;
  --line: rgba(255, 255, 255, 0.13);
  --shadow-pink: rgba(255, 46, 196, 0.32);
  --shadow-blue: rgba(34, 216, 255, 0.3);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 46, 196, 0.16), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(34, 216, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #050507 0%, var(--bg) 42%, #070911 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main {
  overflow-x: hidden;
}

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

button,
input,
select,
textarea {
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 5vw, 64px);
  background: linear-gradient(180deg, rgba(3, 3, 5, 0.86), rgba(3, 3, 5, 0));
}

.brand {
  display: inline-grid;
  gap: 3px;
  font-family: "Space Grotesk", Inter, sans-serif;
}

.brand-name {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
}

.brand-alias {
  position: relative;
  width: max-content;
  color: var(--text);
  font-size: clamp(0.72rem, 1.45vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: lowercase;
  opacity: 0.92;
  text-shadow:
    0 0 10px rgba(255, 46, 196, 0.48),
    0 0 16px rgba(34, 216, 255, 0.36);
}

.brand-alias::before,
.brand-alias::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.brand-alias::before {
  color: var(--pink);
  transform: translate(-1px, 0);
  clip-path: inset(0 0 52% 0);
  animation: glitch-shift-pink 2.8s infinite steps(2, end);
}

.brand-alias::after {
  color: var(--blue);
  transform: translate(1px, 0);
  clip-path: inset(50% 0 0 0);
  animation: glitch-shift-blue 3.1s infinite steps(2, end);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav-links a {
  min-height: 36px;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  transition: border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  border-color: rgba(34, 216, 255, 0.45);
  color: var(--text);
  box-shadow: 0 0 20px var(--shadow-blue);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 92vh;
  overflow: hidden;
  padding: 130px clamp(20px, 6vw, 80px) 70px;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background: linear-gradient(180deg, transparent, var(--bg));
  z-index: -1;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(960px, 116vw);
  aspect-ratio: 1;
  object-fit: cover;
  opacity: 0.72;
  transform: translate(-50%, -48%);
  filter: saturate(1.12) contrast(1.08);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 3, 5, 0.9), transparent 32%, transparent 68%, rgba(3, 3, 5, 0.9)),
    radial-gradient(circle, rgba(3, 3, 5, 0.08), rgba(3, 3, 5, 0.82) 76%);
}

.geometry {
  position: absolute;
  fill: none;
  stroke-width: 1.4;
  opacity: 0.28;
  filter: drop-shadow(0 0 18px currentColor);
}

.geometry-a {
  right: -110px;
  top: 88px;
  width: min(430px, 62vw);
  color: var(--blue);
  stroke: currentColor;
}

.geometry-b {
  left: -90px;
  bottom: 20px;
  width: min(380px, 58vw);
  color: var(--pink);
  stroke: currentColor;
}

.hero-content {
  width: min(920px, 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  line-height: 0.96;
}

h1 {
  font-size: clamp(3.25rem, 8vw, 7.6rem);
  overflow-wrap: anywhere;
  text-shadow:
    0 0 28px rgba(255, 46, 196, 0.5),
    0 0 58px rgba(34, 216, 255, 0.42);
}

.alias-glitch {
  position: relative;
  display: inline-block;
  margin: 14px 0 0;
  color: var(--text);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.25rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: lowercase;
  text-shadow:
    0 0 12px rgba(255, 46, 196, 0.58),
    0 0 24px rgba(34, 216, 255, 0.45);
}

.alias-glitch::before,
.alias-glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.alias-glitch::before {
  color: var(--pink);
  transform: translate(-2px, 0);
  clip-path: inset(0 0 54% 0);
  animation: glitch-shift-pink 2.8s infinite steps(2, end);
}

.alias-glitch::after {
  color: var(--blue);
  transform: translate(2px, 0);
  clip-path: inset(48% 0 0 0);
  animation: glitch-shift-blue 3.1s infinite steps(2, end);
}

@keyframes glitch-shift-pink {
  0%,
  78%,
  100% {
    transform: translate(-2px, 0);
  }

  80% {
    transform: translate(-7px, -1px);
  }

  82% {
    transform: translate(4px, 1px);
  }
}

@keyframes glitch-shift-blue {
  0%,
  72%,
  100% {
    transform: translate(2px, 0);
  }

  74% {
    transform: translate(7px, 1px);
  }

  76% {
    transform: translate(-4px, -1px);
  }
}

h2 {
  font-size: clamp(2rem, 5vw, 4.5rem);
}

.hero-copy {
  width: min(690px, 100%);
  margin: 22px auto 0;
  color: #dce5f5;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(90deg, var(--pink), var(--blue));
  color: #030305;
  box-shadow: 0 0 32px var(--shadow-pink), 0 0 42px var(--shadow-blue);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.link-section {
  padding: 76px clamp(20px, 6vw, 80px) 48px;
}

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

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.link-card {
  display: grid;
  gap: 14px;
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 46, 196, 0.1), transparent 42%),
    linear-gradient(315deg, rgba(34, 216, 255, 0.11), transparent 46%),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.link-card:hover,
.link-card:focus-visible {
  border-color: rgba(34, 216, 255, 0.48);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35), 0 0 28px rgba(34, 216, 255, 0.18);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: 0 0 22px rgba(34, 216, 255, 0.2);
}

.card-label {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.card-copy {
  color: var(--muted);
  line-height: 1.6;
}

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

.social-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--text);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.social-card-link:hover,
.social-card-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 46, 196, 0.58);
  box-shadow: 0 0 24px rgba(255, 46, 196, 0.14), 0 0 18px rgba(34, 216, 255, 0.12);
}

.consciousness-section {
  position: relative;
  scroll-margin-top: 112px;
  width: min(1180px, calc(100% - 40px));
  margin: 46px auto 88px;
  padding: clamp(28px, 5vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 46, 196, 0.14), transparent 36%),
    linear-gradient(315deg, rgba(34, 216, 255, 0.14), transparent 42%),
    rgba(7, 9, 17, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.consciousness-section::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.consciousness-heading {
  position: relative;
  max-width: 880px;
  margin-bottom: 34px;
  z-index: 1;
}

.consciousness-heading h2 {
  font-size: clamp(2.35rem, 6vw, 5.2rem);
  text-shadow:
    0 0 24px rgba(255, 46, 196, 0.25),
    0 0 42px rgba(34, 216, 255, 0.2);
}

.consciousness-heading p:last-child {
  max-width: 760px;
  margin: 20px 0 0;
  color: #dce5f5;
  font-size: clamp(1.02rem, 1.9vw, 1.22rem);
  line-height: 1.72;
}

.consciousness-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: start;
  z-index: 1;
}

.consciousness-shell:has(.guide-panel.is-active) {
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
}

.consciousness-tabs {
  display: grid;
  gap: 12px;
}

.consciousness-tab {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 7px 14px;
  width: 100%;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 46, 196, 0.08), transparent 45%),
    rgba(8, 10, 18, 0.78);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.consciousness-tab:hover,
.consciousness-tab:focus-visible,
.consciousness-tab.is-active {
  transform: translateY(-2px);
  border-color: rgba(34, 216, 255, 0.52);
  background:
    linear-gradient(135deg, rgba(255, 46, 196, 0.15), transparent 46%),
    linear-gradient(315deg, rgba(34, 216, 255, 0.13), transparent 46%),
    rgba(12, 15, 25, 0.9);
  box-shadow: 0 0 28px rgba(34, 216, 255, 0.14);
}

.consciousness-tab:focus-visible {
  outline: 2px solid rgba(34, 216, 255, 0.72);
  outline-offset: 3px;
}

.consciousness-tab span {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 0 18px rgba(34, 216, 255, 0.12);
}

.consciousness-tab strong {
  min-width: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.12rem;
  line-height: 1.18;
}

.consciousness-tab em {
  min-width: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-style: normal;
  line-height: 1.48;
}

.consciousness-panels {
  position: sticky;
  top: 96px;
  align-self: start;
}

.consciousness-panels:has(.guide-panel.is-active) {
  position: static;
}

.consciousness-panel {
  min-height: 360px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(34, 216, 255, 0.11), transparent 42%),
    linear-gradient(315deg, rgba(255, 46, 196, 0.11), transparent 45%),
    rgba(5, 7, 14, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 48px rgba(34, 216, 255, 0.1);
  animation: panel-fade 220ms ease;
}

.panel-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 24px;
  padding: 0 13px;
  border: 1px solid rgba(255, 46, 196, 0.34);
  border-radius: 999px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.consciousness-panel h3 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1;
}

.consciousness-panel p:last-child {
  margin: 22px 0 0;
  color: #dce5f5;
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.72;
}

.guide-panel {
  display: grid;
  gap: 30px;
}

.guide-hero p:last-child {
  max-width: 680px;
  margin: 18px 0 0;
  color: #dce5f5;
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  line-height: 1.68;
}

.guide-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 216, 255, 0.5), rgba(255, 46, 196, 0.36), transparent);
  box-shadow: 0 0 24px rgba(34, 216, 255, 0.22);
}

.guide-section {
  display: grid;
  gap: 14px;
  animation: guide-fade 520ms ease both;
}

.guide-section:nth-of-type(2) {
  animation-delay: 60ms;
}

.guide-section:nth-of-type(3) {
  animation-delay: 120ms;
}

.guide-section:nth-of-type(4) {
  animation-delay: 180ms;
}

.guide-section:nth-of-type(5) {
  animation-delay: 240ms;
}

.guide-section:nth-of-type(6) {
  animation-delay: 300ms;
}

.guide-section:nth-of-type(7) {
  animation-delay: 360ms;
}

.guide-section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.guide-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--blue);
  font-weight: 800;
  box-shadow:
    0 0 18px rgba(34, 216, 255, 0.14),
    inset 0 0 18px rgba(255, 46, 196, 0.06);
}

.guide-section h4 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.05;
}

.guide-section p {
  margin: 0;
  color: #dce5f5;
  font-size: clamp(1rem, 1.7vw, 1.08rem);
  line-height: 1.78;
}

.guide-list {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding-left: 20px;
  color: #dce5f5;
  line-height: 1.65;
}

.guide-list li::marker {
  color: var(--blue);
}

.guide-quote {
  margin: 8px 0;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(34, 216, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(34, 216, 255, 0.12), transparent 46%),
    rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.35rem, 3.4vw, 2.1rem);
  font-weight: 700;
  line-height: 1.24;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 30px rgba(34, 216, 255, 0.08);
}

.practice-grid,
.reflection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.step-grid,
.exercise-grid,
.identity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.practice-card,
.reflection-card,
.step-card,
.exercise-card,
.identity-card,
.alignment-tracker,
.release-ritual,
.future-starfield,
.future-letter,
.completion-panel,
.soft-note,
.challenge-card,
.timeline-item {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 46, 196, 0.1), transparent 46%),
    linear-gradient(315deg, rgba(34, 216, 255, 0.09), transparent 48%),
    rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.practice-card {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.practice-card span {
  font-size: 1.6rem;
}

.practice-card h5 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.15rem;
}

.practice-card p {
  font-size: 0.95rem;
  line-height: 1.58;
}

.belief-card:nth-child(5) {
  grid-column: 1 / -1;
}

.step-card {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 128px;
  padding: 18px;
}

.step-card:nth-child(5) {
  grid-column: 1 / -1;
}

.step-number {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.step-card p {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  font-weight: 700;
  line-height: 1.38;
}

.soft-note {
  margin-top: 4px;
  padding: 18px;
  color: #dce5f5;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.58;
}

.exercise-card {
  display: grid;
  gap: 10px;
  min-height: 240px;
  padding: 18px;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.exercise-card span {
  font-size: 1.8rem;
}

.exercise-card strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.15rem;
}

.exercise-card p {
  font-size: 0.95rem;
  line-height: 1.62;
}

.exercise-card:hover,
.exercise-card:focus-visible,
.exercise-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(34, 216, 255, 0.5);
  background:
    linear-gradient(145deg, rgba(34, 216, 255, 0.14), transparent 46%),
    linear-gradient(315deg, rgba(255, 46, 196, 0.13), transparent 48%),
    rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 26px rgba(34, 216, 255, 0.12), 0 0 18px rgba(255, 46, 196, 0.09);
}

.exercise-card:focus-visible {
  outline: 2px solid rgba(34, 216, 255, 0.72);
  outline-offset: 3px;
}

.identity-card {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.identity-card span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.4;
}

.identity-card strong {
  color: var(--text);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.18rem, 2.2vw, 1.5rem);
  line-height: 1.2;
}

.alignment-tracker {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border-color: rgba(34, 216, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 42px rgba(34, 216, 255, 0.1);
}

.alignment-tracker-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.alignment-tracker-head .panel-kicker {
  margin: 0 0 14px;
}

.alignment-tracker-head h4 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.alignment-tracker-head strong {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  min-width: 76px;
  min-height: 54px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 46, 196, 0.38);
  border-radius: 999px;
  color: var(--blue);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.2rem;
  box-shadow: 0 0 24px rgba(255, 46, 196, 0.12);
}

.alignment-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.alignment-checklist label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #dce5f5;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.35;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.alignment-checklist label:has(input:checked) {
  border-color: rgba(34, 216, 255, 0.48);
  background:
    linear-gradient(145deg, rgba(34, 216, 255, 0.12), transparent 46%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 22px rgba(34, 216, 255, 0.1);
}

.alignment-checklist input {
  accent-color: var(--blue);
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.control-map {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(240px, 1.1fr);
  gap: 18px;
  margin-top: 8px;
}

.control-circle,
.control-orbit {
  display: grid;
  gap: 10px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 46, 196, 0.1), transparent 46%),
    linear-gradient(315deg, rgba(34, 216, 255, 0.09), transparent 48%),
    rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.control-circle {
  border-radius: 50%;
  aspect-ratio: 1;
  place-content: center;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 42px rgba(34, 216, 255, 0.12);
}

.control-orbit {
  border-radius: 8px;
}

.control-circle h5,
.control-orbit h5 {
  margin: 0;
  color: var(--blue);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.1rem;
}

.control-circle span,
.control-orbit span {
  color: #dce5f5;
  font-weight: 800;
  line-height: 1.35;
}

.release-ritual,
.future-letter,
.completion-panel {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border-color: rgba(34, 216, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 42px rgba(34, 216, 255, 0.1);
}

.release-ritual .panel-kicker,
.future-letter .panel-kicker,
.completion-panel .panel-kicker {
  margin: 0;
  width: fit-content;
}

.release-ritual h4,
.future-letter h4,
.completion-panel h4 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.release-ritual label,
.future-letter label {
  display: grid;
  gap: 8px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.release-ritual textarea,
.future-letter textarea {
  width: 100%;
  min-height: 96px;
  resize: vertical;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font: inherit;
  line-height: 1.55;
  padding: 14px;
}

.release-ritual textarea:focus,
.future-letter textarea:focus {
  border-color: rgba(34, 216, 255, 0.62);
  outline: none;
  box-shadow: 0 0 22px rgba(34, 216, 255, 0.12);
}

.future-letter textarea {
  min-height: 240px;
}

.future-letter-actions,
.completion-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

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

.future-letter-actions .guide-next,
.completion-actions .guide-next {
  margin-top: 0;
}

.completion-actions a.guide-next {
  text-decoration: none;
}

.future-letter-status,
.journey-continues span {
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 800;
}

.release-download {
  margin-top: 0;
}

.release-status {
  margin: -4px 0 0;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 800;
}

.future-starfield {
  position: relative;
  display: grid;
  gap: 16px;
  overflow: hidden;
  padding: clamp(24px, 5vw, 44px);
  border-color: rgba(255, 46, 196, 0.28);
  isolation: isolate;
}

.future-starfield::before,
.future-starfield::after {
  content: "";
  position: absolute;
  inset: -30%;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 255, 255, 0.8) 0 1px, transparent 2px),
    radial-gradient(circle at 32% 62%, rgba(34, 216, 255, 0.75) 0 1px, transparent 2px),
    radial-gradient(circle at 58% 36%, rgba(255, 46, 196, 0.55) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.65) 0 1px, transparent 2px);
  background-size: 170px 170px;
  opacity: 0.42;
  animation: star-drift 18s linear infinite;
}

.future-starfield::after {
  background-size: 240px 240px;
  opacity: 0.22;
  animation-duration: 28s;
  animation-direction: reverse;
}

.future-starfield h4 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.02;
}

.future-starfield p {
  max-width: 760px;
}

.journey-continues {
  display: grid;
  gap: 8px;
  width: 100%;
  margin-top: 6px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 46, 196, 0.1), transparent 46%),
    linear-gradient(315deg, rgba(34, 216, 255, 0.09), transparent 48%),
    rgba(255, 255, 255, 0.055);
}

.journey-continues strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
}

.reflection-card {
  min-height: 108px;
  padding: 18px;
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.38;
  text-align: left;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.reflection-card:hover,
.reflection-card:focus-visible,
.reflection-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(255, 46, 196, 0.48);
  background:
    linear-gradient(145deg, rgba(255, 46, 196, 0.16), transparent 46%),
    linear-gradient(315deg, rgba(34, 216, 255, 0.13), transparent 48%),
    rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 26px rgba(255, 46, 196, 0.11), 0 0 18px rgba(34, 216, 255, 0.1);
}

.reflection-card:focus-visible {
  outline: 2px solid rgba(34, 216, 255, 0.72);
  outline-offset: 3px;
}

.reflection-card::after {
  content: "Tap to hold this question";
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.reflection-card.is-active::after {
  color: var(--blue);
  content: "Active reflection";
}

.breath-timeline {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 14px 16px;
  color: #dce5f5;
  font-weight: 800;
  line-height: 1.35;
}

.timeline-item span {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(34, 216, 255, 0.1);
  box-shadow: inset 0 0 16px rgba(255, 46, 196, 0.08);
}

.challenge-card {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border-color: rgba(34, 216, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 42px rgba(34, 216, 255, 0.1);
}

.challenge-card .panel-kicker {
  margin: 0;
  width: fit-content;
}

.challenge-card h4 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.progress-tracker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.progress-dot {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.progress-dot:hover,
.progress-dot:focus-visible,
.progress-dot.is-active {
  transform: translateY(-2px);
  border-color: rgba(255, 46, 196, 0.55);
  background:
    radial-gradient(circle, rgba(255, 46, 196, 0.32), rgba(34, 216, 255, 0.16));
  box-shadow: 0 0 20px rgba(255, 46, 196, 0.16), 0 0 16px rgba(34, 216, 255, 0.13);
}

.progress-dot:focus-visible {
  outline: 2px solid rgba(34, 216, 255, 0.72);
  outline-offset: 3px;
}

.guide-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.guide-next {
  display: grid;
  gap: 8px;
  width: 100%;
  margin-top: 6px;
  padding: 20px;
  border: 1px solid rgba(34, 216, 255, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 46, 196, 0.18), rgba(34, 216, 255, 0.16)),
    rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.guide-next:hover,
.guide-next:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(34, 216, 255, 0.58);
  box-shadow: 0 0 30px rgba(34, 216, 255, 0.16);
}

.guide-next span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guide-next strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
}

@keyframes guide-fade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes star-drift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(110px, 90px, 0);
  }
}

@keyframes panel-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-band h2 {
  overflow-wrap: anywhere;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 28px;
  align-items: end;
  width: min(1180px, calc(100% - 40px));
  margin: 34px auto 90px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 46, 196, 0.16), rgba(34, 216, 255, 0.12)),
    var(--panel-strong);
}

.feature-band p:last-child {
  margin: 0;
  color: #d9e1ef;
  font-size: 1.08rem;
  line-height: 1.7;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 64px);
  width: min(1180px, calc(100% - 40px));
  margin: -34px auto 68px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 10%, rgba(34, 216, 255, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 46, 196, 0.1), transparent 42%),
    rgba(6, 8, 15, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about-heading {
  align-self: start;
  min-width: 0;
}

.about-heading h2 {
  max-width: 100%;
  font-size: clamp(2.5rem, 3.4vw, 3.45rem);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.about-copy {
  min-width: 0;
  color: #dce5f5;
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.78;
}

.about-copy p {
  margin: 0 0 18px;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-signature {
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.support-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 68vh;
  overflow: hidden;
  padding: 150px clamp(20px, 6vw, 80px) 82px;
  isolation: isolate;
}

.support-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, var(--bg));
  z-index: -1;
}

.support-hero-art {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.support-hero-art img {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(760px, 128vw);
  aspect-ratio: 1;
  object-fit: cover;
  opacity: 0.42;
  transform: translate(-50%, -44%);
  filter: saturate(1.16) contrast(1.08);
}

.support-hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 34%, rgba(3, 3, 5, 0.12), rgba(3, 3, 5, 0.82) 72%),
    linear-gradient(90deg, rgba(3, 3, 5, 0.94), transparent 38%, transparent 62%, rgba(3, 3, 5, 0.94));
}

.support-hero-content {
  width: min(880px, 100%);
  text-align: center;
}

.support-hero h1 {
  font-size: clamp(2.6rem, 7vw, 6.4rem);
}

.support-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.35fr);
  gap: clamp(22px, 4vw, 42px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 76px;
  align-items: start;
}

.support-sidebar {
  display: grid;
  gap: 18px;
}

.support-panel,
.support-form,
.privacy-panel {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 46, 196, 0.1), transparent 45%),
    linear-gradient(315deg, rgba(34, 216, 255, 0.1), transparent 46%),
    rgba(8, 10, 18, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.support-panel {
  padding: clamp(24px, 4vw, 38px);
}

.privacy-callout {
  display: grid;
  gap: 18px;
}

.privacy-callout .button {
  width: 100%;
}

.support-panel h2,
.form-heading h2,
.privacy-panel h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  overflow-wrap: anywhere;
}

.support-tips {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding-left: 20px;
  color: #dce5f5;
  line-height: 1.62;
}

.support-tips li::marker {
  color: var(--blue);
}

.support-form {
  padding: clamp(24px, 4vw, 40px);
}

.hidden-field {
  display: none;
}

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

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 9px;
  color: #dce5f5;
  font-weight: 800;
}

.form-field span {
  color: var(--blue);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field input,
.form-field select {
  min-height: 50px;
  padding: 0 14px;
}

.form-field textarea {
  min-height: 180px;
  margin-top: 18px;
  padding: 14px;
  resize: vertical;
}

.form-field select {
  color-scheme: dark;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(220, 229, 245, 0.52);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(34, 216, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(34, 216, 255, 0.12);
}

.full-field {
  margin-top: 18px;
}

.support-submit {
  margin-top: 24px;
  border: 0;
  cursor: pointer;
}

.success-hero {
  min-height: 100vh;
}

.privacy-hero {
  min-height: 62vh;
}

.privacy-date {
  margin: 18px auto 0;
  width: fit-content;
  border: 1px solid rgba(34, 216, 255, 0.32);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--blue);
  font-weight: 800;
}

.privacy-section {
  display: grid;
  gap: 22px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 76px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.privacy-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(24px, 4vw, 38px);
}

.privacy-overview {
  border-color: rgba(34, 216, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 42px rgba(34, 216, 255, 0.1);
}

.privacy-panel p,
.privacy-list {
  color: #dce5f5;
  line-height: 1.66;
}

.privacy-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.privacy-list li::marker {
  color: var(--blue);
}

.privacy-button {
  margin-top: 6px;
  width: fit-content;
}

.energy-hero {
  min-height: 72vh;
}

.energy-section {
  display: grid;
  gap: 22px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 76px;
}

.energy-panel,
.reading-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 46, 196, 0.1), transparent 45%),
    linear-gradient(315deg, rgba(34, 216, 255, 0.1), transparent 46%),
    rgba(8, 10, 18, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.energy-panel {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 38px);
}

.energy-intro {
  border-color: rgba(34, 216, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 42px rgba(34, 216, 255, 0.1);
}

.energy-panel h2,
.reading-card h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  overflow-wrap: anywhere;
}

.energy-panel p,
.reading-card p,
.energy-steps {
  color: #dce5f5;
  line-height: 1.66;
}

.reading-grid,
.energy-process {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.reading-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 40px);
}

.reading-card::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -18%;
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 46, 196, 0.26), transparent 65%);
  pointer-events: none;
}

.reading-card-featured {
  border-color: rgba(34, 216, 255, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 44px rgba(34, 216, 255, 0.12),
    0 0 28px rgba(255, 46, 196, 0.1);
}

.reading-price {
  margin-top: 10px;
  color: var(--blue);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
}

.reading-card .button {
  width: 100%;
}

.energy-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.energy-steps li::marker {
  color: var(--blue);
  font-weight: 900;
}

.energy-disclaimer {
  border-color: rgba(255, 46, 196, 0.24);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 80px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
}

.site-footer a {
  color: var(--blue);
  font-weight: 700;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav-links {
    max-width: 240px;
  }

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

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

  .consciousness-shell {
    grid-template-columns: 1fr;
  }

  .consciousness-shell:has(.guide-panel.is-active) {
    grid-template-columns: 1fr;
  }

  .consciousness-panels {
    position: static;
  }

  .about-section,
  .support-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 16px;
    padding: 18px 16px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-alias {
    font-size: 0.72rem;
  }

  .nav-links {
    gap: 6px;
    max-width: min(100%, 360px);
  }

  .nav-links a {
    min-height: 34px;
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 88svh;
    padding: 168px 16px 58px;
  }

  .support-hero {
    min-height: 64svh;
    padding: 168px 16px 62px;
  }

  .hero-image {
    width: min(760px, 150vw);
  }

  .geometry-a {
    right: -150px;
    top: 120px;
    width: min(360px, 80vw);
  }

  .geometry-b {
    left: -130px;
    width: min(320px, 76vw);
  }

  .link-section {
    padding: 54px 14px 34px;
  }

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

  .section-heading h2 {
    font-size: clamp(2.15rem, 12vw, 3.5rem);
    overflow-wrap: anywhere;
  }

  .feature-band,
  .consciousness-section,
  .about-section,
  .support-section,
  .privacy-section,
  .energy-section {
    width: min(100% - 28px, 1180px);
  }

  .feature-band h2 {
    font-size: clamp(2.15rem, 11vw, 3.5rem);
  }

  .feature-band {
    margin-bottom: 70px;
  }

  .about-section {
    margin-bottom: 48px;
  }

  .about-heading h2 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .support-panel h2,
  .form-heading h2,
  .privacy-panel h2,
  .energy-panel h2,
  .reading-card h2 {
    font-size: clamp(2rem, 9vw, 2.9rem);
  }
}

@media (max-width: 620px) {
  .site-header,
  .site-footer {
    flex-direction: column;
  }

  .site-header {
    gap: 12px;
  }

  .brand {
    gap: 4px;
  }

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

  .hero {
    min-height: 92svh;
    padding-top: 178px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4.55rem);
  }

  .alias-glitch {
    margin-top: 10px;
    font-size: clamp(1.05rem, 7vw, 1.85rem);
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.55;
  }

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

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

  .link-card {
    min-height: 218px;
    padding: 22px;
  }

  .consciousness-section {
    margin-top: 34px;
    padding: 24px;
  }

  .consciousness-tab {
    min-height: 0;
    padding: 16px;
  }

  .consciousness-tab em {
    font-size: 0.9rem;
  }

  .practice-grid,
  .reflection-grid,
  .step-grid,
  .exercise-grid,
  .identity-grid,
  .alignment-checklist,
  .control-map,
  .guide-nav,
  .future-letter-actions,
  .completion-actions {
    grid-template-columns: 1fr;
  }

  .alignment-tracker-head {
    display: grid;
  }

  .control-circle {
    border-radius: 8px;
    aspect-ratio: auto;
    text-align: left;
  }

  .step-card:nth-child(5),
  .belief-card:nth-child(5) {
    grid-column: auto;
  }

  .guide-section-heading {
    align-items: flex-start;
  }

  .guide-icon {
    width: 38px;
    height: 38px;
  }

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

  .social-card-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .social-card-link {
    width: 100%;
  }

  .about-section,
  .support-sidebar,
  .support-panel,
  .support-form,
  .privacy-panel,
  .reading-card {
    margin-top: -50px;
    padding: 24px;
  }

  .energy-panel {
    padding: 24px;
  }

  .energy-intro {
    margin-top: -50px;
  }

  .support-sidebar .support-panel,
  .privacy-grid .privacy-panel,
  .reading-grid .reading-card,
  .energy-process .energy-panel {
    margin-top: 0;
  }

  .support-form {
    margin-top: 0;
  }

  .privacy-grid,
  .reading-grid,
  .energy-process {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding: 16px 14px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero,
  .support-hero {
    padding-top: 245px;
  }

  .hero h1,
  .support-hero h1 {
    font-size: clamp(2rem, 9.8vw, 2.9rem);
    overflow-wrap: normal;
  }

  .hero h1 {
    white-space: nowrap;
  }

  .eyebrow {
    letter-spacing: 0.12em;
  }

  .hero-actions {
    gap: 10px;
  }

  .feature-band,
  .consciousness-section,
  .about-section,
  .support-panel,
  .support-form {
    padding: 20px;
  }
}
