@font-face {
  font-family: "Manrope Local";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond Local";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond Local";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-italic-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond Local";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("assets/cormorant-garamond-semibold-italic-latin.woff2") format("woff2");
}

:root {
  color-scheme: dark;
  --pointer-x: 0;
  --pointer-y: 0;
  --ink: #eef0ff;
  --font-text: "Manrope Local", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond Local", Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: #03040b;
}

body {
  width: 100%;
  height: auto;
  min-height: 100%;
  margin: 0;
  overflow: visible;
  background: #03040b;
  color: var(--ink);
  font-family: var(--font-text);
}

button { font: inherit; }

.experience,
.site-header { user-select: none; }

.site-header {
  position: fixed;
  top: max(14px, env(safe-area-inset-top));
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 28px), 1240px);
  color: #f3f1ff;
  visibility: visible;
  transform: translateX(-50%);
}

.site-header__surface {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 62px;
  padding: 7px 8px 7px 18px;
  border: 1px solid rgba(222, 218, 255, .14);
  border-radius: 18px;
  background: rgba(6, 7, 18, .56);
  box-shadow: 0 14px 44px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .035);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
  backdrop-filter: blur(20px) saturate(135%);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.site-brand__mark {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border: 1px solid rgba(209, 205, 255, .42);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #f2f0ff 0 7%, #8c83ee 9% 24%, #292052 55%, #0b0917 76%);
  box-shadow: 0 0 18px rgba(130, 118, 238, .28);
}

.site-brand__mark::after {
  content: "";
  position: absolute;
  inset: 3px 2px 3px 7px;
  border-radius: 50%;
  background: #090a16;
  transform: rotate(-18deg);
}

.site-brand__name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: .015em;
}

.site-brand__name em {
  color: #aaa3ff;
  font-style: normal;
  font-weight: 760;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.8vw, 28px);
  padding: 0 26px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(231, 229, 250, .66);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .018em;
  text-decoration: none;
  white-space: nowrap;
  transition: color .22s ease, text-shadow .22s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(174, 165, 255, .9), transparent);
  opacity: 0;
  transform: scaleX(.45);
  transition: opacity .2s ease, transform .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: #fff;
  text-shadow: 0 0 14px rgba(164, 153, 255, .76);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(211, 207, 255, .20);
  border-radius: 12px;
  color: #faf9ff;
  background: linear-gradient(135deg, rgba(127, 114, 232, .74), rgba(72, 60, 151, .72));
  box-shadow: 0 10px 28px rgba(45, 34, 119, .24), inset 0 1px 0 rgba(255, 255, 255, .16);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: .055em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.site-header__cta:hover,
.site-header__cta:focus-visible {
  border-color: rgba(226, 223, 255, .38);
  background: linear-gradient(135deg, rgba(145, 132, 247, .86), rgba(84, 70, 170, .82));
  transform: translateY(-1px);
}

.site-header__cta-short,
.site-menu-toggle { display: none; }

.site-brand:focus-visible,
.site-nav a:focus-visible,
.site-header__cta:focus-visible,
.site-menu-toggle:focus-visible {
  outline: 1px solid rgba(200, 194, 255, .82);
  outline-offset: 3px;
}

.back-to-top {
  position: fixed;
  top: max(94px, calc(env(safe-area-inset-top) + 84px));
  left: max(22px, env(safe-area-inset-left));
  z-index: 49;
  display: inline-flex;
  height: 58px;
  align-items: center;
  gap: 10px;
  padding: 0 18px 0 10px;
  border: 1px solid rgba(225, 221, 255, .38);
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, rgba(133, 118, 238, .94), rgba(63, 49, 143, .94));
  box-shadow:
    0 16px 40px rgba(29, 20, 91, .46),
    0 0 26px rgba(127, 111, 235, .24),
    inset 0 1px 0 rgba(255, 255, 255, .22);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px) scale(.90);
  transition: opacity .2s ease, transform .2s ease, border-color .2s ease, background .2s ease;
}

.back-to-top__icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 12px;
  background: rgba(5, 5, 18, .24);
  font-size: 22px;
  font-weight: 520;
  line-height: 1;
}

.back-to-top__label {
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.back-to-top[data-visible="true"] {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: rgba(241, 239, 255, .68);
  color: #fff;
  background: linear-gradient(135deg, rgba(153, 139, 255, .98), rgba(76, 59, 168, .98));
  transform: translateY(-2px);
}

.back-to-top:focus-visible {
  outline: 2px solid rgba(222, 218, 255, .92);
  outline-offset: 4px;
}

.experience {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  overflow: visible;
  background:
    radial-gradient(circle at 50% 45%, rgba(24, 26, 60, .24), transparent 42%),
    #03040b;
  opacity: 0;
  transition: opacity .28s ease-out;
}

body[data-scene-ready="true"] .experience { opacity: 1; }

.hero-identity {
  position: absolute;
  left: max(34px, 4vw);
  bottom: clamp(76px, 9vh, 108px);
  z-index: 5;
  width: min(500px, 38vw);
  color: #f4f3ff;
  pointer-events: auto;
  text-shadow: 0 3px 28px rgba(0, 0, 12, .92);
}

.hero-identity__kicker {
  margin: 0 0 12px;
  color: rgba(149, 205, 255, .78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.hero-identity h1 {
  position: relative;
  isolation: isolate;
  width: max-content;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(84px, 7.6vw, 124px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .72;
}

.hero-identity h1 span {
  position: relative;
  z-index: 2;
  display: block;
}

.hero-identity h1::before {
  content: attr(data-shadow-name);
  position: absolute;
  bottom: .05em;
  left: .02em;
  z-index: 1;
  color: rgba(157, 211, 255, .72);
  font-size: 1em;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.055em;
  white-space: nowrap;
  opacity: 0;
  filter: blur(10px);
  text-shadow:
    0 0 8px rgba(157, 218, 255, .82),
    0 0 28px rgba(79, 148, 255, .58);
  transform: perspective(420px) translateY(.18em) scale(.72) rotateX(48deg);
  transform-origin: center bottom;
  transition:
    opacity .38s ease,
    color .6s ease,
    filter .7s ease,
    transform .85s cubic-bezier(.16, .78, .18, 1);
}

.hero-identity h1::after {
  content: "";
  position: absolute;
  bottom: .08em;
  left: 5%;
  z-index: 0;
  width: 90%;
  height: 1.34em;
  background: linear-gradient(to top, rgba(96, 178, 255, .24), rgba(103, 169, 255, .075) 48%, transparent 88%);
  clip-path: polygon(45% 100%, 55% 100%, 100% 0, 0 0);
  opacity: 0;
  filter: blur(5px);
  mix-blend-mode: screen;
  pointer-events: none;
  transform: scaleY(.18);
  transform-origin: center bottom;
  transition: opacity .42s ease, transform .8s cubic-bezier(.16, .78, .18, 1), filter .7s ease;
}

.hero-identity:hover h1::before,
.hero-identity:focus-within h1::before {
  color: rgba(178, 225, 255, .82);
  opacity: .26;
  filter: blur(.25px);
  transform: perspective(420px) translate(-.03em, -.58em) scale(1.22) rotateX(4deg);
}

.hero-identity:hover h1::after,
.hero-identity:focus-within h1::after {
  opacity: .26;
  filter: blur(2.5px);
  transform: scaleY(1);
}

.hero-identity__origin {
  margin: 25px 0 0;
  color: rgba(190, 220, 244, .94);
  font-family: var(--font-display);
  font-size: 23px;
  font-style: italic;
  font-weight: 600;
  font-synthesis: none;
  line-height: 1.25;
}

.hero-identity__origin span { display: block; }

.hero-identity__origin span + span {
  color: rgba(202, 226, 246, .86);
  margin-left: .7em;
}

.hero-identity__copy {
  max-width: 360px;
  margin: 14px 0 0;
  color: rgba(202, 216, 239, .76);
  font-size: 15px;
  line-height: 1.68;
}

.hero-features,
.hero-promise {
  position: absolute;
  z-index: 5;
}

.hero-features {
  top: clamp(112px, 14vh, 158px);
  left: max(34px, 4vw);
  width: min(410px, 29vw);
  pointer-events: auto;
}

.hero-panel__eyebrow {
  margin: 0 0 18px;
  color: rgba(142, 198, 240, .72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.hero-features > .hero-panel__eyebrow {
  text-shadow:
    0 1px 1px #000,
    0 0 4px rgba(0, 0, 0, .98),
    0 0 12px rgba(0, 0, 0, .88),
    0 0 28px rgba(0, 0, 0, .62);
}

.hero-features__body {
  display: block;
}

.hero-features ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(229, 233, 250, .82);
  font-size: 16px;
  font-weight: 520;
  line-height: 1.4;
  text-shadow:
    0 1px 1px #000,
    0 0 3px rgba(0, 0, 0, .98),
    0 0 9px rgba(0, 0, 0, .94),
    0 0 20px rgba(0, 0, 0, .76),
    0 0 38px rgba(0, 0, 0, .48);
  transition: color .45s ease, font-weight .45s ease;
}

.hero-features button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.hero-features button:hover { color: #fff; }

.hero-features button:focus-visible {
  outline: 1px solid rgba(184, 219, 255, .76);
  outline-offset: 4px;
  border-radius: 3px;
}

.hero-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border: 1px solid rgba(136, 202, 255, .72);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(108, 180, 255, .42);
  transition: border-color .45s ease, background .45s ease, box-shadow .45s ease, transform .45s ease;
}

.hero-features li.is-active {
  color: #f7f8ff;
  font-weight: 760;
}

.hero-features li.is-active::before {
  border-color: #fff;
  background: #fff;
  box-shadow: 0 0 12px rgba(188, 225, 255, .82);
  transform: scale(1.08);
}

.hero-features__detail {
  margin: 20px 0 0 32px;
  color: rgba(235, 241, 252, .94);
  font-family: var(--font-display);
  font-size: clamp(20px, 1.65vw, 24px);
  font-style: italic;
  font-weight: 600;
  font-synthesis: none;
  line-height: 1.52;
  text-shadow:
    0 1px 1px #000,
    0 0 4px rgba(0, 0, 0, .98),
    0 0 11px rgba(0, 0, 0, .94),
    0 0 24px rgba(0, 0, 0, .78),
    0 0 42px rgba(0, 0, 0, .5);
  transition: opacity .28s ease, filter .35s ease, transform .35s cubic-bezier(.2, .72, .2, 1);
}

.hero-features__detail[data-phase="out"] {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(6px);
}

.hero-features__detail[data-phase="in"] {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

.hero-promise {
  top: clamp(148px, 20vh, 220px);
  right: max(30px, 3.5vw);
  z-index: 3;
  width: min(450px, 33vw);
  padding: 29px 31px 31px;
  border: 1px solid rgba(174, 202, 255, .13);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(7, 11, 29, .58), rgba(9, 12, 32, .26));
  box-shadow: 0 22px 70px rgba(0, 0, 10, .26), inset 0 1px 0 rgba(255, 255, 255, .04);
  -webkit-backdrop-filter: blur(13px) saturate(125%);
  backdrop-filter: blur(13px) saturate(125%);
}

.hero-promise__title {
  min-height: 1.72em;
  margin: 0;
  color: #f3f4ff;
  font-family: var(--font-display);
  font-size: clamp(40px, 3.35vw, 54px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .86;
  transition: opacity .28s ease, transform .38s cubic-bezier(.2, .72, .22, 1), filter .38s ease;
}

.hero-promise__title span,
.hero-promise__title em {
  display: block;
}

.hero-promise__title em {
  color: #91c9f2;
  font-style: italic;
  font-weight: 400;
}

.hero-promise__title[data-phase="out"] {
  opacity: 0;
  filter: blur(7px);
  transform: translateY(-9px);
}

.hero-promise__title[data-phase="in"] {
  animation: hero-promise-tide-in .68s cubic-bezier(.18, .72, .2, 1) both;
}

.hero-promise__copy {
  margin: 22px 0 0;
  color: rgba(220, 227, 247, .72);
  font-size: 15px;
  line-height: 1.68;
}

.hero-promise__cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 13px;
  margin-top: 27px;
  padding: 0 22px;
  border: 1px solid rgba(204, 220, 255, .24);
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, rgba(111, 164, 232, .92), rgba(105, 87, 203, .92));
  box-shadow: 0 12px 32px rgba(58, 76, 172, .28), inset 0 1px 0 rgba(255, 255, 255, .18);
  font-size: 14px;
  font-weight: 720;
  letter-spacing: .055em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.hero-promise__cta:hover,
.hero-promise__cta:focus-visible {
  border-color: rgba(226, 237, 255, .58);
  box-shadow: 0 15px 38px rgba(69, 91, 201, .42), 0 0 24px rgba(118, 182, 255, .18);
  transform: translateY(-2px);
}

.hero-promise__cta:focus-visible {
  outline: 2px solid rgba(205, 226, 255, .86);
  outline-offset: 4px;
}

.veil {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 14%, rgba(0, 2, 12, .08) 46%, rgba(0, 1, 8, .72) 100%),
    linear-gradient(180deg, rgba(4, 4, 15, .26), transparent 28%, rgba(1, 2, 9, .42));
}

.veil::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.26'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.scene {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  perspective: 1100px;
}

.aura {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(74vh, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -49%) scale(calc(1 + var(--pointer-y) * .008));
  background: radial-gradient(circle, rgba(109, 105, 255, .16), rgba(96, 54, 188, .07) 38%, transparent 68%);
  filter: blur(12px);
  animation: aura-breathe 6s ease-in-out infinite;
}

.portrait-flight {
  position: relative;
  width: min(116vh, 1200px);
  aspect-ratio: 4 / 3;
  flex: none;
  opacity: var(--hero-flight-opacity, 1);
  transform:
    translate3d(var(--hero-flight-x, 0px), var(--hero-flight-y, 0px), 0)
    scale(var(--hero-flight-scale, 1));
  transform-origin: center;
  transition: opacity .22s linear;
  will-change: transform, opacity;
}

.experience[data-flight-hidden="true"] .portrait-flight { visibility: hidden; }

@media (min-width: 941px) {
  .portrait-flight {
    width: max(
      clamp(864px, 45vw, 960px),
      min(clamp(1080px, 56.25vw, 1200px), calc(133.333vh - 216px))
    );
  }
}

.portrait {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  flex: none;
  transform-style: preserve-3d;
  transform:
    translate3d(calc(var(--pointer-x) * 7px), calc(var(--pointer-y) * 5px), 0)
    rotateX(calc(var(--pointer-y) * 1deg))
    rotateY(calc(var(--pointer-x) * -1.35deg));
  transition: transform .12s linear;
  will-change: transform;
}

.landing-content {
  position: relative;
  z-index: 3;
  display: grid;
  gap: clamp(28px, 3.5vw, 52px);
  padding: clamp(56px, 6vw, 88px) 0 clamp(64px, 7vw, 104px);
  color: #ebeafd;
  background: transparent;
}

.placeholder-section {
  position: relative;
  min-height: 0;
  padding: 0;
  scroll-margin-top: 96px;
}

.section-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.placeholder-section__inner {
  position: relative;
  width: min(calc(100% - 48px), 1120px);
  margin: 0 auto;
  padding: clamp(42px, 5.2vw, 72px);
  border: 1px solid rgba(195, 201, 235, .17);
  border-radius: clamp(24px, 2.4vw, 32px);
  background:
    radial-gradient(circle at 91% 4%, rgba(98, 89, 190, .1), transparent 34%),
    linear-gradient(145deg, rgba(4, 7, 19, .36), rgba(7, 9, 24, .26));
  box-shadow:
    0 30px 90px rgba(0, 0, 8, .38),
    inset 0 1px 0 rgba(255, 255, 255, .055);
  -webkit-backdrop-filter: brightness(.52) saturate(.72) blur(3px);
  backdrop-filter: brightness(.52) saturate(.72) blur(3px);
}

.placeholder-section--why .placeholder-section__inner,
.placeholder-section--examples .placeholder-section__inner {
  background:
    radial-gradient(circle at 8% 100%, rgba(47, 109, 153, .09), transparent 38%),
    linear-gradient(145deg, rgba(4, 7, 19, .38), rgba(7, 10, 23, .27));
}

.placeholder-section--start .placeholder-section__inner {
  border-color: rgba(159, 151, 231, .28);
  background:
    radial-gradient(circle at 82% 18%, rgba(122, 103, 223, .14), transparent 40%),
    linear-gradient(145deg, rgba(8, 8, 25, .42), rgba(16, 13, 43, .3));
}

.placeholder-section__eyebrow {
  margin: 0 0 22px;
  color: #9088e3;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.placeholder-section h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 5.2vw, 70px);
  font-weight: 500;
  letter-spacing: -.032em;
  line-height: .96;
  text-shadow: 0 2px 3px #000, 0 0 22px rgba(0, 0, 8, .9);
}

.placeholder-section h2 em {
  color: #9bcdf1;
  font-style: italic;
  font-weight: 400;
}

.placeholder-section__lead {
  max-width: 720px;
  color: rgba(235, 236, 250, .88);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.72;
  text-shadow: 0 1px 2px #000, 0 0 12px rgba(0, 0, 8, .88);
}

.placeholder-section__lead { margin: 26px 0 0; }

.placeholder-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.placeholder-steps article {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(221, 217, 255, .15);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(19, 22, 46, .32), rgba(7, 10, 26, .26));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035), 0 18px 42px rgba(0, 0, 8, .18);
}

.section-index {
  display: block;
  width: max-content;
  color: rgba(168, 182, 255, .9);
  font-family: var(--font-display);
  font-size: clamp(72px, 6.8vw, 108px);
  font-weight: 500;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: -.065em;
  line-height: .7;
  text-shadow:
    0 2px 2px rgba(0, 0, 8, .9),
    0 0 24px rgba(113, 117, 240, .38);
}

.placeholder-steps h3 {
  margin: 28px 0 12px;
  font-size: 18px;
  font-weight: 620;
}

.placeholder-steps p,
.placeholder-note {
  margin: 0;
  color: rgba(235, 236, 250, .82);
  font-size: 14px;
  line-height: 1.65;
}

.placeholder-note {
  margin-top: 22px;
  padding: 17px 20px;
  border: 1px solid rgba(176, 194, 238, .14);
  border-radius: 14px;
  background: rgba(12, 17, 38, .3);
}

.placeholder-note strong { color: #f3f5ff; }

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

.feature-card {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(207, 215, 247, .15);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(18, 23, 49, .32), rgba(6, 10, 27, .24));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.feature-card__head {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-card__head > span {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(163, 198, 241, .2);
  border-radius: 50%;
  color: #9bcdf1;
  background: rgba(43, 67, 110, .25);
  font-family: var(--font-display);
  font-size: 23px;
  box-shadow: 0 0 24px rgba(85, 135, 206, .12);
}

.sprite-icon {
  color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  background-image: url("assets/yemaya-icons-sprite-v2.webp") !important;
  background-repeat: no-repeat !important;
  background-position: var(--sprite-position) !important;
  background-size: 700% 300% !important;
  box-shadow: none !important;
}

.feature-card__head > .sprite-icon {
  width: 64px;
  height: 64px;
}

.feature-card h3 {
  margin: 0;
  color: #f3f5ff;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.3;
}

.feature-card p {
  margin: 20px 0 0;
  color: rgba(232, 234, 248, .76);
  font-size: 14px;
  line-height: 1.72;
}

.interpretation-list {
  display: grid;
  gap: 12px;
  margin-top: 46px;
}

.interpretation-example {
  overflow: hidden;
  border: 1px solid rgba(207, 215, 247, .16);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(17, 21, 46, .34), rgba(5, 9, 25, .26));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.interpretation-example summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 3vw, 36px);
  cursor: pointer;
  list-style: none;
}

.interpretation-example summary::-webkit-details-marker { display: none; }

.interpretation-example summary:focus-visible {
  outline: 2px solid rgba(171, 205, 249, .82);
  outline-offset: -4px;
}

.interpretation-example__tag {
  display: inline-flex;
  margin-bottom: 15px;
  padding: 7px 11px;
  border: 1px solid rgba(162, 194, 238, .18);
  border-radius: 999px;
  color: #9bcdf1;
  background: rgba(36, 62, 101, .24);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.interpretation-example summary p {
  max-width: 900px;
  margin: 0;
  color: rgba(244, 244, 255, .9);
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 24px);
  font-style: italic;
  line-height: 1.46;
}

.interpretation-example__chevron {
  color: #a9a2ef;
  font-size: 34px;
  line-height: 1;
  transition: transform .28s ease;
}

.interpretation-example[open] .interpretation-example__chevron { transform: rotate(180deg); }

.interpretation-example__body {
  padding: 8px clamp(24px, 4vw, 54px) clamp(30px, 4vw, 52px);
  border-top: 1px solid rgba(203, 211, 242, .11);
  color: rgba(231, 233, 247, .8);
  font-size: 15px;
  line-height: 1.78;
}

.interpretation-example__body h3 {
  margin: 32px 0 10px;
  color: #a9cef0;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 520;
}

.interpretation-example__body p { margin: 0 0 17px; }
.interpretation-disclaimer { margin-top: 30px; }

.placeholder-symbols {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 900px;
  margin-top: 42px;
}

.placeholder-symbols span,
.placeholder-symbols a {
  padding: 12px 18px;
  border: 1px solid rgba(216, 212, 255, .18);
  border-radius: 999px;
  color: rgba(241, 240, 255, .82);
  background: rgba(32, 31, 67, .28);
  font-size: 13px;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.placeholder-symbols a:hover,
.placeholder-symbols a:focus-visible {
  border-color: rgba(174, 165, 255, .48);
  color: #fff;
  transform: translateY(-2px);
}

.placeholder-start__cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
  padding: 0 22px;
  border: 1px solid rgba(205, 200, 255, .18);
  border-radius: 11px;
  color: #f4f2ff;
  background: rgba(121, 106, 221, .20);
  font-size: 14px;
  font-weight: 680;
  letter-spacing: .04em;
  text-decoration: none;
  box-shadow: 0 14px 38px rgba(53, 42, 143, .25), inset 0 1px 0 rgba(255, 255, 255, .08);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.placeholder-start__cta:hover,
.placeholder-start__cta:focus-visible {
  border-color: rgba(220, 216, 255, .42);
  background: rgba(129, 112, 230, .32);
  transform: translateY(-2px);
}

.start-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .82fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
}

.telegram-card {
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(181, 196, 242, .2);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(32, 37, 79, .42), rgba(10, 14, 37, .32));
  box-shadow: 0 22px 56px rgba(0, 0, 12, .24), inset 0 1px 0 rgba(255, 255, 255, .055);
}

.telegram-card__label {
  margin: 0 0 12px;
  color: #9bcdf1;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.telegram-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(27px, 2.8vw, 38px);
  font-weight: 520;
  line-height: 1.04;
}

.telegram-card ul {
  display: grid;
  gap: 14px;
  margin: 25px 0 0;
  padding: 0;
  color: rgba(235, 236, 250, .8);
  font-size: 14px;
  line-height: 1.55;
  list-style: none;
}

.telegram-card li {
  position: relative;
  padding-left: 22px;
}

.telegram-card li::before {
  content: "✦";
  position: absolute;
  top: 0;
  left: 0;
  color: #9bcdf1;
}

.telegram-card .placeholder-start__cta { width: 100%; }

.placeholder-section--finale .placeholder-section__inner {
  border-color: rgba(162, 192, 238, .22);
  background:
    radial-gradient(circle at 50% 22%, rgba(88, 146, 203, .2), transparent 36%),
    linear-gradient(145deg, rgba(5, 9, 24, .4), rgba(14, 11, 39, .3));
}

.finale-content {
  overflow: hidden;
  text-align: center;
}

.finale-content > * { position: relative; z-index: 1; }

.finale-content__mark {
  display: block;
  width: clamp(174px, 18vw, 220px);
  height: auto;
  margin: -8px auto 24px;
  color: #b8dff6;
}

.finale-content__mark svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.finale-tide__line {
  fill: none;
  stroke: url("#finale-tide-line");
  stroke-width: 1.15;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.finale-tide__line--upper {
  animation: finale-tide-upper 8s ease-in-out infinite;
}

.finale-tide__line--lower {
  animation: finale-tide-lower 8s ease-in-out infinite;
}

.finale-tide__line--current {
  opacity: .42;
  stroke-width: .85;
  animation: finale-tide-current 10s ease-in-out infinite;
}

.finale-tide__spark {
  fill: #e9e7ff;
  filter: url("#finale-tide-glow");
  transform-box: fill-box;
  transform-origin: center;
  animation: finale-tide-spark 5s ease-in-out infinite;
}

.finale-content h2 { max-width: 780px; margin: 0 auto; }

.finale-content > p:not(.placeholder-section__eyebrow) {
  max-width: 610px;
  margin: 26px auto 0;
  color: rgba(235, 236, 250, .82);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.65;
}

.site-footer {
  position: relative;
  z-index: 5;
  padding: 16px 24px 32px;
  color: rgba(224, 227, 245, .68);
}

.site-footer__inner {
  position: relative;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 38px 42px 24px;
  overflow: hidden;
  border: 1px solid rgba(181, 198, 236, .15);
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(91, 110, 180, .16), transparent 42%),
    linear-gradient(135deg, rgba(5, 9, 24, .7), rgba(10, 10, 28, .58));
  -webkit-backdrop-filter: brightness(.48) blur(10px);
  backdrop-filter: brightness(.48) blur(10px);
}

.site-footer__inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 42px;
  left: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(150, 212, 244, .42), rgba(184, 168, 255, .34), transparent);
}

.site-footer__main {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.site-footer__thought {
  position: relative;
  height: 2em;
  min-width: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.site-footer__thought > span {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  white-space: nowrap;
  color: transparent;
  background: linear-gradient(100deg,
    rgba(214, 221, 242, .56) 0%,
    rgba(214, 221, 242, .56) 39%,
    rgba(244, 247, 255, .98) 48%,
    rgba(179, 218, 244, .82) 54%,
    rgba(214, 221, 242, .56) 63%,
    rgba(214, 221, 242, .56) 100%);
  background-position: 125% 0;
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: footer-thought-cycle 90s ease infinite;
  animation-delay: calc(var(--thought-index) * 6s);
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #f3f3ff;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 600;
  line-height: .9;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer__brand .site-brand__mark {
  width: 24px;
  height: 24px;
}

.site-footer__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  margin-top: 34px;
  padding-top: 19px;
  border-top: 1px solid rgba(195, 201, 235, .1);
  color: rgba(205, 211, 234, .38);
  font-size: 12px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
}

.site-footer__links a {
  color: rgba(202, 211, 240, .68);
  text-decoration: none;
  transition: color .2s ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: #e7e9ff;
}

.site-footer__links a:focus-visible {
  outline: 1px solid rgba(200, 194, 255, .72);
  outline-offset: 4px;
}

@keyframes aura-breathe {
  0%, 100% { opacity: .62; scale: .96; }
  50% { opacity: 1; scale: 1.04; }
}

@keyframes hero-promise-tide-in {
  from { opacity: 0; filter: blur(7px); transform: translateY(11px); }
  to { opacity: 1; filter: blur(0); transform: none; }
}

@keyframes finale-tide-upper {
  0%, 100% { opacity: .56; transform: translateY(1px); }
  50% { opacity: .92; transform: translateY(-1px); }
}

@keyframes finale-tide-lower {
  0%, 100% { opacity: .9; transform: translateY(-1px); }
  50% { opacity: .54; transform: translateY(1px); }
}

@keyframes finale-tide-current {
  0%, 100% { opacity: .24; transform: translateX(-3px); }
  50% { opacity: .52; transform: translateX(3px); }
}

@keyframes finale-tide-spark {
  0%, 100% { opacity: .66; transform: scale(.82) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.08) rotate(45deg); }
}

@keyframes footer-thought-cycle {
  0% {
    opacity: 0;
    filter: blur(5px);
    background-position: 125% 0;
    transform: translateY(5px);
  }
  0.7% {
    opacity: 1;
    filter: blur(0);
    background-position: 125% 0;
    transform: none;
  }
  3.3% { background-position: -125% 0; }
  5.7% {
    opacity: 1;
    filter: blur(0);
    background-position: -125% 0;
    transform: none;
  }
  6.66%, 100% {
    opacity: 0;
    filter: blur(4px);
    background-position: -125% 0;
    transform: translateY(-4px);
  }
}

@media (max-width: 640px) {
  .portrait-flight {
    width: min(81.6vw, 432px);
    max-width: min(81.6vw, 432px);
  }
  .scene {
    place-items: start center;
    padding-top: max(82px, calc(env(safe-area-inset-top) + 74px));
  }

}

@media (min-width: 941px) and (pointer: fine) {
  .scene {
    position: fixed;
    z-index: 4;
    pointer-events: none;
  }
}

@media (min-width: 941px) and (max-height: 880px) {
  .hero-features { top: 96px; }
  .hero-features ul { gap: 5px; }
  .hero-features__detail {
    margin-top: 14px;
    font-size: 20px;
    line-height: 1.28;
  }
  .hero-identity { bottom: 32px; }
}

@media (max-width: 940px) {
  .hero-features,
  .hero-promise { display: none; }

  .start-layout { grid-template-columns: 1fr; }

  .site-header {
    top: max(8px, env(safe-area-inset-top));
    width: calc(100% - 16px);
  }

  .site-header__surface {
    grid-template-columns: auto 1fr auto auto;
    min-height: 56px;
    padding: 6px 6px 6px 14px;
    border-radius: 16px;
  }

  .back-to-top {
    top: max(78px, calc(env(safe-area-inset-top) + 70px));
    left: max(10px, env(safe-area-inset-left));
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 15px;
  }

  .back-to-top__icon { width: 38px; height: 38px; }
  .back-to-top__label { display: none; }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(222, 218, 255, .14);
    border-radius: 16px;
    background: rgba(6, 7, 18, .92);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .38);
    -webkit-backdrop-filter: blur(22px) saturate(130%);
    backdrop-filter: blur(22px) saturate(130%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(.985);
    transform-origin: top;
    transition: opacity .18s ease, transform .18s ease;
  }

  .site-header[data-open="true"] .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    padding: 12px 13px;
    border-radius: 10px;
    font-size: 16px;
  }

  .site-nav a::after { display: none; }
  .site-nav a:hover { background: rgba(255, 255, 255, .05); }

  .site-header__cta {
    min-height: 42px;
    margin-left: auto;
    padding: 0 14px;
  }

  .site-menu-toggle {
    position: relative;
    display: block;
    width: 42px;
    height: 42px;
    margin-left: 5px;
    padding: 0;
    border: 0;
    border-radius: 11px;
    color: #fff;
    background: rgba(255, 255, 255, .055);
    cursor: pointer;
  }

  .site-menu-toggle span {
    position: absolute;
    left: 13px;
    width: 16px;
    height: 1px;
    background: currentColor;
    transition: transform .18s ease, top .18s ease;
  }

  .site-menu-toggle span:first-child { top: 17px; }
  .site-menu-toggle span:last-child { top: 24px; }
  .site-header[data-open="true"] .site-menu-toggle span:first-child { top: 21px; transform: rotate(45deg); }
  .site-header[data-open="true"] .site-menu-toggle span:last-child { top: 21px; transform: rotate(-45deg); }
}

@media (max-width: 480px) {
  .site-brand__name { font-size: 13px; }
  .site-header__cta-long { display: none; }
  .site-header__cta-short { display: inline; }
}

@media (max-width: 640px) {
  .experience {
    height: max(100svh, 900px);
    min-height: max(100svh, 900px);
  }

  .hero-identity {
    top: calc(max(82px, calc(env(safe-area-inset-top) + 74px)) + min(51vw, 270px) + 8px);
    right: 18px;
    bottom: auto;
    left: 18px;
    width: auto;
  }

  .hero-identity__kicker { margin-bottom: 9px; font-size: 10px; }
  .hero-identity h1 { font-size: clamp(64px, 19vw, 88px); }
  .hero-identity__origin { margin-top: 20px; font-size: 18px; }
  .hero-identity__copy { margin-top: 10px; font-size: 13px; line-height: 1.55; }

  .hero-features {
    top: auto;
    right: 18px;
    bottom: 48px;
    left: 18px;
    display: block;
    width: auto;
    pointer-events: none;
  }

  .hero-features__body { display: block; }
  .hero-features__detail { display: none; }
  .hero-features ul { gap: 7px; }
  .hero-features li,
  .hero-features li.is-active {
    color: rgba(229, 233, 250, .76);
    font-size: 14px;
    font-weight: 520;
  }
  .hero-features li.is-active::before {
    border-color: rgba(136, 202, 255, .72);
    background: transparent;
    box-shadow: 0 0 8px rgba(108, 180, 255, .42);
    transform: none;
  }
  .hero-features button { cursor: default; }
}

@media (max-width: 760px) {
  .landing-content {
    gap: 20px;
    padding: 32px 0 48px;
  }

  .placeholder-section {
    min-height: 0;
    padding: 0;
  }

  .placeholder-section__inner {
    width: min(calc(100% - 20px), 1120px);
    padding: 32px 22px;
    border-radius: 22px;
    -webkit-backdrop-filter: brightness(.52) saturate(.72);
    backdrop-filter: brightness(.52) saturate(.72);
  }

  .placeholder-section h2 { font-size: clamp(38px, 12vw, 54px); }

  .placeholder-steps,
  .feature-grid,
  .start-layout {
    grid-template-columns: 1fr;
  }

  .placeholder-steps,
  .feature-grid { margin-top: 32px; }

  .interpretation-example summary {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
  }

  .interpretation-example__body {
    padding-right: 22px;
    padding-left: 22px;
    font-size: 14px;
  }

  .site-footer { padding: 0 10px 20px; }
  .site-footer__inner {
    padding: 30px 22px 22px;
    border-radius: 22px;
    -webkit-backdrop-filter: brightness(.55);
    backdrop-filter: brightness(.55);
  }

  .site-footer__inner::before { right: 22px; left: 22px; }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__thought {
    height: 2em;
    font-size: clamp(22px, 7vw, 30px);
    text-align: left;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 28px;
    padding-top: 18px;
  }

  .site-footer__links { justify-content: flex-start; }
}

@media (max-width: 760px),
       (pointer: coarse),
       (hover: none),
       (max-width: 960px) and (orientation: landscape) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  body { touch-action: pan-y; }

  .experience {
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
  }

  .site-header {
    top: max(8px, env(safe-area-inset-top));
    right: max(8px, env(safe-area-inset-right));
    left: auto;
    width: auto;
    transform: none;
  }

  .site-header__surface {
    display: block;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-brand,
  .site-nav,
  .site-menu-toggle {
    display: none !important;
  }

  .site-header__cta,
  .back-to-top {
    height: 48px;
    min-height: 48px;
    border: 1px solid rgba(225, 221, 255, .38);
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, rgba(133, 118, 238, .94), rgba(63, 49, 143, .94));
    box-shadow:
      0 12px 30px rgba(29, 20, 91, .4),
      0 0 22px rgba(127, 111, 235, .2),
      inset 0 1px 0 rgba(255, 255, 255, .2);
    -webkit-backdrop-filter: blur(16px) saturate(135%);
    backdrop-filter: blur(16px) saturate(135%);
    transition: none;
  }

  .site-header__cta {
    margin: 0;
    padding: 0 16px;
    font-size: 10px;
    letter-spacing: .08em;
  }

  .site-header__cta-long { display: none; }
  .site-header__cta-short { display: inline; }

  .back-to-top {
    top: max(8px, env(safe-area-inset-top));
    left: max(8px, env(safe-area-inset-left));
    width: auto;
    gap: 7px;
    padding: 0 13px 0 6px;
  }

  .back-to-top__icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 19px;
  }

  .back-to-top__label { display: inline; }

  .site-header__cta:hover,
  .site-header__cta:focus-visible,
  .back-to-top:hover,
  .back-to-top:focus-visible {
    transform: none;
  }

  .scene {
    place-items: start center;
    padding-top: max(15px, env(safe-area-inset-top));
  }

  .portrait-flight {
    width: min(81.6vw, 432px);
    max-width: min(81.6vw, 432px);
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .portrait {
    transition: none !important;
    transform: none !important;
  }

  .aura,
  .portrait-css__glow,
  .portrait-css__eyes:not(.portrait-css__eyes--ambient) {
    display: none !important;
  }

  .veil { opacity: .42; }

  .hero-features { display: none !important; }

  .hero-promise {
    top: 53svh;
    right: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    width: auto;
    min-height: 30svh;
    justify-content: center;
    padding: 22px 24px 24px;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(7, 11, 29, .72), rgba(9, 12, 32, .46));
    box-shadow: 0 18px 48px rgba(0, 0, 10, .3), inset 0 1px 0 rgba(255, 255, 255, .05);
    pointer-events: none;
  }

  .hero-promise .hero-panel__eyebrow {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: .15em;
  }

  .hero-promise__title {
    min-height: 1.72em;
    font-size: clamp(31px, 9vw, 40px);
  }

  .hero-promise__copy {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.52;
  }

  .hero-promise__cta { display: none; }

  .hero-identity {
    top: 33svh;
    right: auto;
    bottom: auto;
    left: 50%;
    width: calc(100% - 40px);
    pointer-events: none;
    text-align: center;
    text-shadow: none;
    transform: translateX(-50%);
  }

  .hero-identity__kicker,
  .hero-identity__copy {
    display: none;
  }

  .hero-identity h1 {
    font-size: clamp(62px, 19vw, 82px);
    line-height: .78;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-identity h1::before,
  .hero-identity h1::after {
    display: none;
  }

  .hero-identity__origin {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.2;
  }

  .hero-identity__origin span + span { margin-left: 0; }

  body:not(.subpage) .experience {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto auto;
    gap: 12px;
    padding:
      max(20px, env(safe-area-inset-top))
      20px
      max(20px, env(safe-area-inset-bottom));
  }

  body:not(.subpage) .experience .scene {
    position: relative;
    inset: auto;
    display: flex;
    min-width: 0;
    min-height: 0;
    padding: 0;
    align-items: flex-start;
    justify-content: center;
  }

  body:not(.subpage) .experience .portrait-flight {
    width: auto;
    height: min(100%, calc(147.75vw - 147.75px));
    max-width: calc(197vw - 197px);
    max-height: 100%;
    margin-inline: auto;
  }

  body:not(.subpage) .experience .hero-identity,
  body:not(.subpage) .experience .hero-promise {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  body:not(.subpage) .experience .hero-promise {
    min-height: 0;
  }

  .finale-tide__line { animation: none; }
}

@media (max-width: 760px) and (max-height: 700px),
       (pointer: coarse) and (max-height: 700px) {
  .hero-promise__copy { display: none; }
  .hero-promise { min-height: 0; }
}

@media (max-width: 960px) and (orientation: landscape),
       (pointer: coarse) and (orientation: landscape),
       (hover: none) and (orientation: landscape) {
  body:not(.subpage) .experience {
    grid-template:
      "identity scene promise" minmax(0, 1fr)
      / minmax(0, .86fr) minmax(0, 1fr) minmax(0, 1.14fr);
    gap: clamp(10px, 2vw, 22px);
    align-items: center;
    padding:
      max(20px, env(safe-area-inset-top))
      max(20px, env(safe-area-inset-right))
      max(20px, env(safe-area-inset-bottom))
      max(20px, env(safe-area-inset-left));
  }

  body:not(.subpage) .experience .scene {
    position: absolute;
    inset:
      max(20px, env(safe-area-inset-top))
      max(20px, env(safe-area-inset-right))
      max(20px, env(safe-area-inset-bottom))
      max(20px, env(safe-area-inset-left));
    display: grid;
    width: auto;
    height: auto;
    place-items: center;
  }

  body:not(.subpage) .experience .portrait-flight {
    width: calc(133.333vh - 53.333px) !important;
    width: calc(133.333svh - 53.333px) !important;
    height: calc(100vh - 40px) !important;
    height: calc(100svh - 40px) !important;
    max-width: none;
    max-height: none;
    margin: 0;
  }

  body:not(.subpage) .experience .portrait,
  body:not(.subpage) .experience .portrait-css,
  body:not(.subpage) .experience .portrait-css__face {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  body:not(.subpage) .experience .hero-identity {
    grid-area: identity;
    align-self: center;
    min-width: 0;
  }

  body:not(.subpage) .experience .hero-promise {
    grid-area: promise;
    align-self: center;
    min-width: 0;
    padding: clamp(14px, 2.4vw, 22px);
  }

  body:not(.subpage) .experience .hero-identity h1 {
    max-width: 100%;
    font-size: clamp(42px, 8vw, 76px);
  }

  body:not(.subpage) .experience .hero-identity__origin {
    margin-top: 10px;
    font-size: clamp(11px, 1.8vw, 16px);
  }

  body:not(.subpage) .experience .hero-promise .hero-panel__eyebrow {
    margin-bottom: 8px;
    font-size: 8px;
  }

  body:not(.subpage) .experience .hero-promise__title {
    font-size: clamp(26px, 4.5vw, 40px);
  }

  body:not(.subpage) .experience .hero-promise__copy {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .aura { animation: none; }
  .portrait,
  .experience { transition: none; }
  .hero-promise__title { animation: none; transition: none; }
  .hero-identity h1::before,
  .hero-identity h1::after { transition: none; }
  .hero-features li,
  .hero-features li::before,
  .hero-features__detail { transition: none; }
  .finale-tide__line,
  .finale-tide__spark { animation: none; }
  .site-footer__thought > span { animation: none; }
  .site-footer__thought > span:first-child { opacity: 1; }
}
