@font-face {
  font-family: Instrument Sans;
  src: url("/assets/fonts/instrument-sans.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: Instrument Serif;
  src: url("/assets/fonts/instrument-serif.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Instrument Serif;
  src: url("/assets/fonts/instrument-serif-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
:root {
  color-scheme: light;
  --paper: #f6f3ed;
  --ink: #29212e;
  --muted: #6b626e;
  --plum: #57354e;
  --line: #dfd8d8;
  --peach: #f2bc99;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Instrument Sans", "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid #be824f;
  outline-offset: 5px;
}
::selection {
  background: #dfb4c5;
  color: #211524;
}
.shell,
.inner {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(44px, 5.1vw, 68px);
  line-height: 1.04;
  letter-spacing: -1.5px;
}
h2 em {
  color: #856171;
  font-weight: 400;
}
p {
  line-height: 1.7;
}
.eyebrow {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: 1.5;
  margin-bottom: 23px;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  padding: 12px;
  background: var(--paper);
  z-index: 100;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1160px, calc(100% - 48px));
  margin: 24px auto;
  padding: 12px 20px;
}
.brand {
  display: block;
  text-decoration: none;
}
.brand img {
  width: 84px;
  height: auto;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  gap: 20px;
}
.site-nav a:hover {
  opacity: 0.75;
}
.site-nav .nav-cta {
  padding: 0 18px;
  border-radius: 40px;
  background: #fff1e812;
  border: 1px solid #fff1e826;
}
.homepage > .site-header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  border: 1px solid #ffffff26;
  border-radius: 60px;
  background: #ffffff08;
  color: #fff4e9;
  backdrop-filter: blur(14px);
}
.homepage > .site-header .brand img {
  filter: brightness(0) invert(1);
}
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #19121d;
  color: #fff7ed;
  padding-top: 132px;
}
.ambient {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 36% 12%, #9d442b 0, transparent 58%),
    radial-gradient(ellipse at 88% 36%, #66374f 0, transparent 55%), #19121d;
}
.ambient:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #19121d00 30%,
    #19121d80 66%,
    #19121d 100%
  );
}
.ambient-art {
  position: absolute;
  inset: 0;
  background: url("/assets/default-2.jpg") center top/100% auto no-repeat;
  mix-blend-mode: soft-light;
  opacity: 0.42;
}
.glow {
  position: absolute;
  width: 80%;
  height: 75%;
  border-radius: 50%;
  filter: blur(65px);
  opacity: 0.58;
  animation-duration: 22s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-play-state: paused;
}
.glow-one {
  left: -20%;
  top: -26%;
  background: radial-gradient(
    ellipse,
    #ed7b3c 0,
    #be503c88 38%,
    transparent 70%
  );
  animation-name: drift-one;
}
.glow-two {
  right: -22%;
  top: 10%;
  background: radial-gradient(
    ellipse,
    #a976af 0,
    #99657555 42%,
    transparent 70%
  );
  animation-duration: 28s;
  animation-name: drift-two;
}
body[data-motion="running"] .glow {
  animation-play-state: running;
}
@keyframes drift-one {
  to {
    transform: translate(22%, 22%) scale(1.1);
  }
}
@keyframes drift-two {
  to {
    transform: translate(-22%, -15%) scale(1.2);
  }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 50px 0 70px;
}
.hero-copy .eyebrow {
  color: #edcebf;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tiny-star {
  font-size: 23px;
  color: var(--peach);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(60px, 6.5vw, 92px);
  line-height: 1.02;
  letter-spacing: -2.4px;
}
.hero h1 em {
  color: #e9baad;
  font-weight: 400;
}
.hero-description {
  max-width: 460px;
  color: #e1ced0;
  font-size: 16px;
  margin-top: 28px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 27px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 17px 24px;
  border: 1px solid transparent;
  border-radius: 50px;
  background: var(--plum);
  color: white;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  min-height: 52px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #704760;
  transform: translateY(-2px);
}
.hero .button {
  background: #f6e2d4;
  color: #33212d;
}
.hero .button:hover {
  background: white;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 44px;
  font-size: 12px;
  text-decoration: none;
  border-bottom: 1px solid #bfa19e60;
}
.hero-footnote {
  font-size: 11px;
  color: #bba6b1;
  margin-top: 22px;
}
.hero-product {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 360px;
}
.screen-frame {
  border: 1px solid #ffffff55;
  border-radius: 25px;
  padding: 5px;
  background: #f4ecdf;
  box-shadow: 0 28px 80px #0003;
  overflow: hidden;
}
.screen-frame img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: contain;
}
.hero-phone {
  max-width: 278px;
  margin: auto;
  box-shadow:
    0 0 0 6px #fff1e809,
    0 35px 80px #09030b66;
  transform: rotate(2deg);
}
.orbit-label {
  font-size: 11px;
  color: #edd6c8;
  text-align: center;
  margin-bottom: 23px;
  letter-spacing: 0.3px;
}
.orbit-label span {
  color: var(--peach);
  margin-right: 8px;
}
.product-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 10px;
  color: #b6a4b7;
  margin-top: 27px;
}
.live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ddba9a;
}
.hero-baseline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid #ffffff18;
  padding: 19px 0 22px;
  font-size: 10px;
  letter-spacing: 1px;
  color: #bca8b9;
}
.motion-toggle {
  padding: 12px 0 12px 16px;
  min-height: 44px;
  border: 0;
  background: none;
  color: #cbb9c5;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.3px;
}
.motion-toggle span {
  margin-left: 9px;
}
[hidden] {
  display: none !important;
}
body[data-app-live="false"] .app-live,
body[data-app-live="true"] .app-coming {
  display: none;
}
.introduction {
  padding-block: 110px 70px;
  text-align: center;
}
.introduction .eyebrow {
  color: var(--muted);
}
.introduction h2 {
  font-size: clamp(39px, 4.6vw, 61px);
}
.introduction > p:last-child {
  font-size: 15px;
  color: var(--muted);
  margin-top: 25px;
}
.experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  padding-block: 25px 110px;
}
.experience-demo {
  background: #ebe5de;
  border: 1px solid #ddd3cb;
  border-radius: 14px;
  padding: 30px;
}
.demo-topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 30px;
}
.demo-topline .eyebrow {
  font-size: 8px;
  margin: 0;
}
.sample-label {
  font-size: 8px;
  color: var(--muted);
}
.voice-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--plum);
  font-size: 10px;
}
.voice-mark {
  display: flex;
  align-items: center;
  height: 20px;
  gap: 3px;
}
.voice-mark span {
  width: 2px;
  height: 9px;
  background: #996f76;
  border-radius: 3px;
}
.voice-mark span:nth-child(2n) {
  height: 18px;
}
.voice-mark span:nth-child(3n) {
  height: 13px;
}
.spoken {
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.25;
  margin-top: 15px;
  color: #625359;
}
.transformation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 25px 0;
  color: #947681;
}
.transformation span {
  height: 1px;
  background: #cfc0bd;
  width: 30%;
}
.entry-paper {
  padding: 26px;
  background: #fffcf5;
  border: 1px solid #fff;
  border-radius: 5px;
  box-shadow: 0 12px 22px #4d354708;
}
.entry-paper .eyebrow {
  font-size: 8px;
  color: #8d6c7b;
  margin-bottom: 12px;
}
.entry-paper h3 {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.05;
}
.entry-paper > p:not(.eyebrow) {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  margin-top: 16px;
}
.entry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}
.entry-tags span {
  font-size: 8px;
  border: 1px solid #e5d7da;
  padding: 5px 9px;
  border-radius: 30px;
  color: #785a69;
}
.experience-copy > p:not(.eyebrow),
.lore-copy > p:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
  margin-top: 24px;
  max-width: 445px;
}
.output-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
  font-size: 11px;
  color: #67515f;
}
.output-list span {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}
.lore-section {
  background: #241b29;
  color: #fff3e6;
  padding: 90px 0;
  overflow: hidden;
}
.lore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}
.lore-copy .eyebrow {
  color: #c6a8ba;
}
.lore-copy h2 em {
  color: #d5adc5;
}
.lore-copy > p:not(.eyebrow) {
  color: #c7b9c9;
}
.lore-note {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid #ffffff1f;
}
.lore-note > span {
  font-size: 40px;
  color: #c497b1;
}
.lore-note p {
  font-size: 12px;
  color: #d1bdd1;
  line-height: 1.6;
}
.lore-display {
  padding: 28px 30px 0;
  border: 1px solid #ffffff19;
  border-radius: 180px 180px 10px 10px;
  background: radial-gradient(ellipse at 50% 20%, #98687355, transparent 70%);
}
.connection-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 10px;
  margin-bottom: 23px;
  color: #cab7ca;
}
.connection-map i {
  height: 26px;
  border-left: 1px solid #c497b166;
  margin: 10px 0;
}
.connection-map strong {
  font-weight: 500;
  padding: 9px 15px;
  border: 1px solid #a9879b55;
  border-radius: 30px;
}
.lore-screen .screen-frame {
  max-width: 267px;
  margin: auto;
}
.lore-screen figcaption {
  text-align: center;
  font-size: 10px;
  color: #bda9bc;
  padding: 23px 0;
}
.journeys {
  padding-block: 100px 80px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 43px;
}
.section-heading > p {
  max-width: 370px;
  font-size: 15px;
  color: var(--muted);
}
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.journey-card {
  min-width: 0;
}
.journey-art {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.journey-art > img:first-child {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  object-fit: contain;
  transition: filter 0.25s;
}
.journey-art .journey-symbol {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.journey-card:hover .journey-art > img:first-child {
  filter: brightness(1.12);
}
.journey-copy {
  padding-top: 20px;
}
.journey-copy > span {
  font-size: 8px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #736471;
}
.journey-copy h3 {
  font-family: var(--serif);
  font-size: 34px;
  margin-top: 8px;
}
.journey-copy p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 8px;
  max-width: 210px;
}
.journey-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  margin-top: 35px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}
.membership {
  background: #ece6e1;
  padding: 80px 0;
}
.membership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.membership-grid > div > p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  margin-top: 23px;
  max-width: 420px;
}
.membership .button {
  margin-top: 25px;
}
.price-row {
  padding: 24px 0;
  border-bottom: 1px solid #d6cbd0;
}
.price-row > span {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.price-row small {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  background: #dfd4dd;
  border-radius: 20px;
  padding: 5px 9px;
  color: #684d64;
}
.price-row p {
  margin-top: 8px;
}
.price-row strong {
  font-family: var(--serif);
  font-size: 45px;
  font-weight: 400;
}
.price-row p > span {
  font-size: 12px;
  color: var(--muted);
}
.pricing .price-note {
  font-size: 10px;
  line-height: 1.7;
  margin-top: 19px;
  color: var(--muted);
}
.privacy-link {
  display: block;
  font-size: 11px;
  margin-top: 25px;
  text-underline-offset: 5px;
  line-height: 1.7;
}
.beta-card {
  padding: 36px;
  border: 1px solid #d6cbd0;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 24px 70px rgba(74, 51, 67, 0.08);
}
.beta-card .eyebrow {
  margin-bottom: 18px;
}
.beta-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.04em;
}
.beta-card ul {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid #d6cbd0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.beta-card li::before {
  content: "✦";
  margin-right: 10px;
  color: #8c6278;
}
.closing {
  text-align: center;
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 50% 140%, #d3b4bd 0, transparent 65%),
    var(--paper);
}
.closing .text-link {
  margin-top: 30px;
}
.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.footer-inner .brand img {
  width: 68px;
}
.footer-inner p {
  font-size: 9px;
  color: var(--muted);
}
.footer-inner nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-inner a:not(.brand) {
  font-size: 10px;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-inner a:hover {
  text-decoration: underline;
}
/* Shared legal/support pages retain a light, readable document layout. */
.brand:not(:has(img)) {
  font-size: 34px;
  color: var(--plum);
}
.legal-shell {
  padding: 35px 0 70px;
  min-height: 80vh;
}
.legal {
  width: min(760px, calc(100% - 48px));
  margin: auto;
}
.legal h1 {
  font-family: var(--serif);
  font-size: 60px;
  line-height: 1.05;
}
.legal h2 {
  font-family: var(--sans);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 36px 0 15px;
}
.legal h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 25px 0 10px;
}
.legal p,
.legal li {
  font-size: 16px;
  line-height: 1.75;
  color: #514854;
}
.legal .updated {
  margin: 15px 0 30px;
}
.legal .eyebrow {
  font-size: 11px;
}
.legal table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.legal td,
.legal th {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.callout {
  margin: 25px 0;
  padding: 22px;
  background: #e9e0e6;
  border-left: 3px solid var(--plum);
}
@media (min-width: 1500px) {
  .hero-grid {
    padding-top: 65px;
    padding-bottom: 90px;
  }
}
@media (max-width: 1000px) {
  .hero-grid {
    gap: 35px;
    grid-template-columns: 1.15fr 1fr;
  }
  .hero h1 {
    font-size: 69px;
  }
  .experience,
  .lore-grid,
  .membership-grid {
    gap: 50px;
  }
  .journey-grid {
    gap: 15px;
  }
  .journey-copy > span {
    font-size: 7px;
  }
  .footer-inner {
    flex-wrap: wrap;
  }
  .footer-inner nav {
    margin-left: auto;
  }
}
@media (max-width: 720px) {
  .shell,
  .inner {
    width: calc(100% - 40px);
  }
  .homepage > .site-header {
    width: calc(100% - 32px);
    margin-top: 16px;
    padding: 7px 15px;
    gap: 12px;
  }
  .brand img {
    width: 67px;
  }
  .site-nav {
    gap: 12px;
  }
  .site-nav a {
    font-size: 10px;
  }
  .site-nav a:not(.nav-cta):not(.nav-keep) {
    display: none;
  }
  .site-nav .nav-cta {
    padding: 0 14px;
    min-height: 38px;
  }
  .hero {
    padding-top: 118px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 15px 0 34px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-copy .eyebrow {
    justify-content: center;
    font-size: 8px;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
  }
  .tiny-star {
    font-size: 18px;
  }
  .hero h1 {
    font-size: clamp(51px, 10.8vw, 75px);
    letter-spacing: -1.8px;
    line-height: 1.03;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.7;
    max-width: 395px;
    margin: 21px auto 0;
  }
  .hero-actions {
    justify-content: center;
    gap: 10px 22px;
    margin-top: 24px;
  }
  .button {
    font-size: 12px;
    min-height: 50px;
    padding: 14px 22px;
  }
  .text-link {
    font-size: 11px;
  }
  .hero-footnote {
    font-size: 9px;
    margin-top: 17px;
  }
  .hero-phone {
    max-width: 234px;
    transform: rotate(1deg);
  }
  .hero-product {
    max-width: 310px;
  }
  .orbit-label {
    font-size: 9px;
    margin-bottom: 18px;
  }
  .product-caption {
    font-size: 9px;
    margin-top: 21px;
  }
  .hero-baseline {
    font-size: 8px;
    letter-spacing: 0.2px;
    padding-block: 9px;
  }
  .motion-toggle {
    font-size: 9px;
  }
  .ambient-art {
    background-size: auto 680px;
    background-position: center top;
  }
  .glow {
    width: 140%;
    height: 55%;
    filter: blur(38px);
  }
  .glow-one {
    left: -50%;
    top: -12%;
  }
  .glow-two {
    right: -60%;
    top: 10%;
  }
  .introduction {
    padding-block: 70px 48px;
  }
  .introduction h2 {
    font-size: 42px;
    letter-spacing: -1px;
  }
  .introduction > p:last-child {
    font-size: 13px;
    margin-top: 20px;
  }
  .desktop-break {
    display: none;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 17px;
  }
  h2 {
    font-size: 49px;
    letter-spacing: -1.2px;
  }
  .experience {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 0 65px;
  }
  .experience-copy {
    order: -1;
  }
  .experience-copy > p:not(.eyebrow),
  .lore-copy > p:not(.eyebrow) {
    font-size: 14px;
    margin-top: 20px;
    max-width: none;
  }
  .experience-demo {
    padding: 24px;
  }
  .spoken {
    font-size: 27px;
  }
  .entry-paper {
    padding: 24px;
  }
  .entry-paper h3 {
    font-size: 31px;
  }
  .output-list {
    font-size: 10px;
    margin-top: 24px;
  }
  .lore-section {
    padding: 60px 0;
  }
  .lore-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .lore-copy h2 {
    font-size: 55px;
  }
  .lore-note {
    margin-top: 25px;
    padding-top: 20px;
  }
  .lore-note > span {
    font-size: 32px;
  }
  .lore-display {
    max-width: 420px;
    width: 100%;
    margin: auto;
    padding: 28px 18px 0;
  }
  .lore-screen .screen-frame {
    max-width: 244px;
  }
  .journeys {
    padding-block: 65px 55px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p {
    font-size: 14px;
    margin-top: 22px;
  }
  .journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 16px;
  }
  .journey-copy {
    padding-top: 13px;
  }
  .journey-copy h3 {
    font-size: 31px;
  }
  .journey-copy > span {
    font-size: 7px;
    letter-spacing: 0.3px;
    line-height: 1.5;
    display: block;
  }
  .journey-copy p {
    font-size: 11px;
    margin-top: 6px;
  }
  .journey-art .journey-symbol {
    width: 33px;
    height: 33px;
  }
  .journey-bottom {
    flex-direction: column;
    font-size: 9px;
    gap: 8px;
    margin-top: 28px;
    padding-top: 20px;
  }
  .membership {
    padding: 60px 0;
  }
  .membership-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .membership-grid > div > p:not(.eyebrow) {
    font-size: 14px;
    max-width: none;
  }
  .pricing .price-note {
    font-size: 10px;
  }
  .price-row {
    padding: 19px 0;
  }
  .closing {
    padding: 65px 0;
  }
  .closing h2 {
    font-size: 43px;
  }
  .footer-inner {
    justify-content: flex-start;
    gap: 18px;
  }
  .footer-inner nav {
    margin-left: 0;
    width: 100%;
    gap: 22px;
  }
  .footer-inner p {
    font-size: 8px;
    max-width: 210px;
  }
  .site-footer {
    padding: 24px 0 15px;
  }
  .legal {
    width: calc(100% - 40px);
  }
  .legal h1 {
    font-size: 48px;
  }
  .legal table {
    display: block;
    overflow-x: auto;
  }
  .site-header {
    width: calc(100% - 40px);
    padding: 0;
    margin: 18px auto;
  }
  .legal-shell {
    padding-top: 20px;
  }
}
@media (max-width: 360px) {
  .hero h1 {
    font-size: 48px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 8px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-copy .eyebrow {
    font-size: 7px;
  }
  .hero-grid {
    gap: 32px;
  }
  .introduction h2 {
    font-size: 36px;
  }
  .experience-demo {
    padding: 18px;
  }
  .sample-label {
    font-size: 7px;
  }
  .entry-paper {
    padding: 18px;
  }
  .journey-copy h3 {
    font-size: 28px;
  }
  .journey-copy > span {
    font-size: 6px;
  }
  .closing h2 {
    font-size: 36px;
  }
  .hero-baseline > span {
    max-width: 150px;
  }
  .hero-baseline {
    gap: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .glow {
    animation: none !important;
  }
  .button,
  .journey-art > img {
    transition: none;
  }
  .button:hover {
    transform: none;
  }
}
/* Fade the grain into the base color without a visible image boundary. */
.ambient-art {
  mask-image: linear-gradient(#000 0%, #000 35%, transparent 78%);
}
@media (max-width: 720px) {
  .hero-copy .eyebrow {
    font-size: 9px;
    letter-spacing: 0.9px;
  }
  .hero-footnote,
  .orbit-label,
  .product-caption {
    font-size: 10px;
  }
  .journey-copy > span {
    font-size: 8px;
  }
  .footer-inner p {
    font-size: 10px;
  }
  .sample-label {
    font-size: 9px;
  }
  .demo-topline .eyebrow {
    font-size: 9px;
  }
  .entry-tags span {
    font-size: 10px;
  }
  .entry-paper .eyebrow {
    font-size: 10px;
  }
  .hero-baseline {
    font-size: 9px;
  }
}
.ambient-art {
  inset: 0 0 auto;
  aspect-ratio: 2 / 1;
  background-size: 100% 100%;
  mask-image: linear-gradient(#000, #0008 45%, transparent 100%);
}
@media (min-width: 721px) and (max-width: 1000px) {
  .hero h1 {
    font-size: clamp(52px, 6.6vw, 66px);
  }
}
