:root {
  color-scheme: dark;
  --ink: #f7f5ff;
  --ink-muted: #b9b7ca;
  --surface: #11101a;
  --surface-raised: #191827;
  --surface-soft: #222034;
  --line: rgba(238, 233, 255, 0.14);
  --violet: #a78bfa;
  --violet-bright: #c4b5fd;
  --coral: #ff8c78;
  --mint: #77e6c5;
  --gold: #f8c66a;
  --max-width: 72rem;
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.28);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  background: #0a0910;
  scroll-behavior: smooth;
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(167, 139, 250, 0.14), transparent 30rem),
    radial-gradient(circle at 100% 16%, rgba(255, 140, 120, 0.1), transparent 28rem),
    linear-gradient(180deg, #0b0a12 0%, #11101a 48%, #0b0a12 100%);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--violet-bright);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  color: #ddd4ff;
}

a:focus-visible {
  outline: 0.2rem solid var(--mint);
  outline-offset: 0.25rem;
  border-radius: 0.25rem;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: #0b0a12;
  background: var(--mint);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease;
}

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

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  width: min(calc(100% - 2rem), var(--max-width));
  min-height: 5.5rem;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 2.55rem;
  height: 2.55rem;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.82rem;
  background:
    radial-gradient(circle at 28% 26%, rgba(255, 255, 255, 0.28), transparent 25%),
    linear-gradient(145deg, var(--violet), #7152d8 50%, #3d2f87);
  box-shadow: 0 0.75rem 2rem rgba(94, 63, 173, 0.35);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 0.43rem;
  width: 1.7rem;
  height: 0.55rem;
  border: 0.13rem solid rgba(255, 255, 255, 0.9);
  border-right-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
}

.brand-mark::before {
  top: 0.64rem;
  transform: rotate(-7deg);
}

.brand-mark::after {
  bottom: 0.58rem;
  transform: rotate(8deg) scaleX(0.72);
}

.site-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}

.site-nav a {
  display: inline-flex;
  min-height: 2.75rem;
  padding: 0.55rem 0.8rem;
  align-items: center;
  border-radius: 999px;
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(167, 139, 250, 0.16);
}

.site-nav .nav-feedback {
  margin-left: 0.35rem;
  border: 1px solid rgba(119, 230, 197, 0.38);
  color: var(--ink);
  background: rgba(119, 230, 197, 0.08);
}

.site-nav .nav-feedback:hover {
  border-color: rgba(119, 230, 197, 0.62);
  background: rgba(119, 230, 197, 0.14);
}

main {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.hero {
  display: grid;
  min-height: min(49rem, calc(100svh - 5.5rem));
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  align-items: center;
  grid-template-columns: minmax(0, 1.06fr) minmax(18rem, 0.94fr);
  gap: clamp(2.5rem, 7vw, 7rem);
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--mint);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-wrap: balance;
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3.3rem, 7.8vw, 7.25rem);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  color: var(--ink-muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.58;
}

.hero-copy blockquote {
  max-width: 40rem;
  margin: 1.8rem 0 0;
  padding: 0 0 0 1.25rem;
  border-left: 0.2rem solid var(--coral);
  color: #eeebf8;
  font-size: 0.98rem;
}

.hero-copy blockquote p {
  margin: 0;
}

.hero-copy > p:last-child {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-copy > p:last-child a {
  display: inline-flex;
  min-height: 3.2rem;
  padding: 0.75rem 1.2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.hero-copy > p:last-child a:first-child {
  border-color: transparent;
  color: #151020;
  background: var(--violet-bright);
}

.hero-copy > p:last-child a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
}

.hero-copy > p:last-child a:first-child:hover {
  background: #d9d0ff;
}

.sound-field {
  position: relative;
  min-height: 31rem;
  isolation: isolate;
}

.sound-field::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 3rem 5%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 50%, rgba(196, 181, 253, 0.54), transparent 5%),
    radial-gradient(circle at 48% 50%, rgba(113, 82, 216, 0.24), transparent 44%),
    radial-gradient(circle at 70% 32%, rgba(255, 140, 120, 0.16), transparent 28%);
  filter: blur(0.1rem);
}

.wave {
  position: absolute;
  left: 50%;
  width: 82%;
  height: 5.8rem;
  border: 0.18rem solid currentColor;
  border-right-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: translateX(-50%) rotate(var(--tilt));
  opacity: var(--alpha);
  filter: drop-shadow(0 0 1.1rem currentColor);
  animation: breathe 7s ease-in-out infinite alternate;
}

.wave:nth-child(1) {
  --tilt: -7deg;
  --alpha: 0.9;
  top: 15%;
  color: var(--violet-bright);
}

.wave:nth-child(2) {
  --tilt: 4deg;
  --alpha: 0.75;
  top: 31%;
  width: 96%;
  color: var(--coral);
  animation-delay: -2.2s;
}

.wave:nth-child(3) {
  --tilt: -2deg;
  --alpha: 0.8;
  top: 48%;
  width: 72%;
  color: var(--mint);
  animation-delay: -3.6s;
}

.wave:nth-child(4) {
  --tilt: 8deg;
  --alpha: 0.7;
  top: 64%;
  width: 89%;
  color: var(--gold);
  animation-delay: -1.1s;
}

.sound-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 7.25rem;
  height: 7.25rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2.2rem;
  color: white;
  background: rgba(16, 13, 29, 0.62);
  box-shadow:
    inset 0 0 2.8rem rgba(196, 181, 253, 0.18),
    0 1.5rem 5rem rgba(0, 0, 0, 0.45);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.12em;
  transform: translate(-50%, -50%) rotate(10deg);
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
}

.sound-core span {
  transform: rotate(-10deg) translateX(-0.06em);
}

@keyframes breathe {
  from {
    transform: translateX(-50%) rotate(var(--tilt)) scaleX(0.96);
  }
  to {
    transform: translateX(-50%) rotate(var(--tilt)) scaleX(1.04);
  }
}

.content-section {
  display: grid;
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(14rem, 0.72fr) minmax(0, 1.28fr);
  column-gap: clamp(2.5rem, 8vw, 8rem);
}

.content-section h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
}

.section-body > p:first-child {
  margin-top: 0.35rem;
}

.section-body p,
.section-body li {
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.section-body strong {
  color: var(--ink);
}

.section-body ul,
.section-body ol {
  margin: 1.75rem 0 0;
  padding: 0;
}

.section-body li {
  margin: 0.85rem 0 0;
}

.content-section--inside-the-studio,
.content-section--three-places-to-begin {
  display: block;
}

.content-section--inside-the-studio h2,
.content-section--three-places-to-begin h2 {
  max-width: 15ch;
}

.content-section--inside-the-studio .section-body > p,
.content-section--three-places-to-begin .section-body > p {
  max-width: 42rem;
}

.content-section--inside-the-studio ul,
.content-section--three-places-to-begin ul {
  display: grid;
  margin-top: 2.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
}

.content-section--inside-the-studio li,
.content-section--three-places-to-begin li {
  min-height: 10.5rem;
  margin: 0;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent),
    var(--surface-raised);
}

.content-section--three-places-to-begin li:nth-child(1) {
  border-top-color: var(--violet);
}

.content-section--three-places-to-begin li:nth-child(2) {
  border-top-color: var(--mint);
}

.content-section--three-places-to-begin li:nth-child(3) {
  border-top-color: var(--gold);
}

.content-section--listen-in-stereo,
.content-section--wellness-oriented-not-medical {
  margin: 2rem 0;
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(119, 230, 197, 0.12), transparent 20rem),
    var(--surface-raised);
  box-shadow: var(--shadow);
}

.content-section--wellness-oriented-not-medical {
  margin-bottom: 7rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 140, 120, 0.12), transparent 20rem),
    var(--surface-raised);
}

.article-shell {
  width: min(100%, 57rem);
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 8rem) 0 7rem;
}

.page-intro {
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.page-intro h1 {
  max-width: 14ch;
  font-size: clamp(3rem, 7vw, 6rem);
}

.page-intro > p:not(.eyebrow) {
  max-width: 44rem;
  margin: 1.5rem 0 0;
  color: var(--ink-muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.article-section {
  padding: clamp(2.3rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--line);
}

.article-section h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.85rem, 4vw, 2.8rem);
}

.article-section p,
.article-section li {
  color: var(--ink-muted);
}

.article-section p {
  margin: 1rem 0 0;
}

.article-section ul,
.article-section ol {
  margin: 1.25rem 0 0;
  padding-left: 1.4rem;
}

.article-section li {
  margin: 0.75rem 0;
  padding-left: 0.3rem;
}

.article-section strong {
  color: var(--ink);
}

.article-section a {
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(5, 5, 9, 0.38);
}

.footer-inner {
  display: grid;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 2.4rem 0 3rem;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
}

.footer-inner p {
  max-width: 38rem;
  margin: 0;
  color: #9693a7;
  font-size: 0.86rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-nav a {
  color: var(--ink-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.not-found {
  display: grid;
  min-height: calc(100svh - 11rem);
  padding: 5rem 0;
  place-items: center;
  text-align: center;
}

.not-found-inner {
  max-width: 42rem;
}

.not-found-code {
  margin: 0 0 1rem;
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.not-found h1 {
  max-width: none;
  font-size: clamp(3rem, 7vw, 5.75rem);
}

.not-found p {
  color: var(--ink-muted);
  font-size: 1.15rem;
}

.not-found a {
  display: inline-flex;
  min-height: 3.2rem;
  margin-top: 1rem;
  padding: 0.75rem 1.2rem;
  align-items: center;
  border-radius: 999px;
  color: #151020;
  background: var(--violet-bright);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 52rem) {
  .site-header {
    padding: 0.8rem 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .site-nav ul {
    width: max-content;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
    grid-template-columns: 1fr;
  }

  .sound-field {
    min-height: 22rem;
  }

  .content-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 38rem) {
  main,
  .site-header,
  .footer-inner {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.5rem);
  }

  .sound-field {
    min-height: 17rem;
  }

  .sound-core {
    width: 5.75rem;
    height: 5.75rem;
    border-radius: 1.65rem;
    font-size: 2rem;
  }

  .wave {
    height: 4rem;
  }

  .content-section--inside-the-studio ul,
  .content-section--three-places-to-begin ul {
    grid-template-columns: 1fr;
  }

  .content-section--inside-the-studio li,
  .content-section--three-places-to-begin li {
    min-height: auto;
  }
}

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

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

@media (forced-colors: active) {
  .brand-mark,
  .sound-core,
  .content-section--listen-in-stereo,
  .content-section--wellness-oriented-not-medical {
    border: 1px solid CanvasText;
  }
}
