@font-face {
  font-family: "Apple Garamond";
  src: url("/applegaramond.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --content-edge: clamp(28px, 4vw, 56px);
  --bg: #f5f5f7;
  --panel: rgba(255, 255, 255, 0.66);
  --panel-strong: rgba(255, 255, 255, 0.88);
  --panel-muted: rgba(247, 248, 251, 0.78);
  --text: #111318;
  --muted: #636872;
  --line: rgba(17, 19, 24, 0.08);
  --shadow: 0 28px 80px rgba(14, 19, 30, 0.12);
  --blue: #0071e3;
  --blue-deep: #0059b3;
  --hero-glow: radial-gradient(circle at top, rgba(90, 146, 255, 0.22), rgba(90, 146, 255, 0) 56%);
  --hero-warm: radial-gradient(circle at 16% 18%, rgba(255, 218, 179, 0.44), rgba(255, 218, 179, 0) 32%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  color: var(--text);
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  background: #8d9198;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url("./images/wall.jpeg") center/cover no-repeat;
  filter: brightness(0.72) saturate(1.06);
  transform: none;
  transform-origin: center;
}

body::after {
  content: "";
  position: fixed;
  inset: -10%;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 28%),
    radial-gradient(circle at 82% 14%, rgba(150, 198, 255, 0.28), rgba(150, 198, 255, 0) 26%),
    radial-gradient(circle at 54% 86%, rgba(255, 189, 135, 0.22), rgba(255, 189, 135, 0) 32%),
    url("./images/wall.jpeg") center/cover no-repeat;
  background-blend-mode: screen, screen, soft-light, normal;
  filter: blur(96px) saturate(156%) brightness(0.82);
  opacity: 0.96;
  transform: scale(1.32);
  transform-origin: center;
  pointer-events: none;
  transition: filter 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 520ms cubic-bezier(0.22, 1, 0.36, 1), transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.page-shell {
  width: min(1260px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 56px;
  opacity: 0.7;
}

.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 26;
  width: min(1260px, calc(100% - 40px));
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0.7;
}

.site-header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 var(--content-edge);
}

.language-menu {
  position: relative;
  pointer-events: auto;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

body.theme-black-copy .language-trigger {
  color: #111318;
}

.language-trigger::-webkit-details-marker {
  display: none;
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 100%;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(14, 19, 30, 0.68);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
}

.language-option {
  appearance: none;
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.94);
  text-align: left;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-family: inherit;
  white-space: nowrap;
  cursor: pointer;
}

.language-option.is-active {
  background: rgba(255, 255, 255, 0.08);
}

.slide-progress {
  position: fixed;
  top: 50%;
  left: 26px;
  z-index: 25;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
  opacity: 0.7;
}

.slide-progress-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), background 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.slide-progress-dot.is-active {
  background: rgba(255, 255, 255, 0.96);
  transform: scale(1.55);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.slide-progress-dot:hover {
  background: rgba(255, 255, 255, 0.72);
}

body.theme-dark-scene .slide-progress-dot {
  background: rgba(17, 19, 24, 0.26);
}

body.theme-dark-scene .slide-progress-dot.is-active {
  background: rgba(17, 19, 24, 0.92);
  box-shadow: 0 0 0 4px rgba(17, 19, 24, 0.12);
}

body.theme-dark-scene .slide-progress-dot:hover {
  background: rgba(17, 19, 24, 0.62);
}

.moom-float {
  position: fixed;
  top: 104px;
  left: calc(50% + 250px);
  z-index: 20;
  display: grid;
  gap: 0;
  width: min(340px, calc(100vw - 40px));
  pointer-events: none;
  opacity: 0;
  transform: translateY(var(--moom-offset-y, 0px));
  transition: opacity 360ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-loaded .moom-float {
  opacity: 1;
}

.moom-float.is-lowered {
  --moom-offset-y: 33vh;
}

.button {
  text-decoration: none;
}

main {
  position: relative;
  padding-right: 420px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.7rem, 8vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.01;
  letter-spacing: -0.055em;
  font-weight: 700;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 650;
}

.hero {
  position: sticky;
  top: 0;
  z-index: 12;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: var(--content-edge);
  border: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border-radius: 0;
  pointer-events: none;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 940px;
  color: white;
  pointer-events: none;
}

.hero-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.24rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1;
  pointer-events: auto;
}

.hero-brand-bold {
  font-weight: 800;
}

.hero-brand-thin {
  font-family: "Apple Garamond", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

body.theme-black-copy .hero-brand {
  color: rgba(17, 19, 24, 0.88);
}

html[dir="rtl"] .site-header-inner {
  flex-direction: row-reverse;
}

html[dir="rtl"] .hero-copy {
  align-items: flex-end;
  text-align: right;
}

html[dir="rtl"] .site-footer {
  text-align: right;
}

html[dir="rtl"] .slide-progress {
  left: auto;
  right: 26px;
}

html[dir="rtl"] .language-dropdown {
  right: auto;
  left: 0;
}

.hero-title {
  display: grid;
  gap: 26px;
}

.hero-title-mark {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.028em;
  color: white;
  font-size: clamp(8.2rem, 17vw, 15rem);
  line-height: 1;
  letter-spacing: 0;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-weight: 800;
  transition: font-size 360ms cubic-bezier(0.22, 1, 0.36, 1), color 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-mark-letter {
  display: inline-block;
  font-family: inherit;
  font-weight: inherit;
  font-size: 1em;
  line-height: 0.74;
  transition: color 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.theme-black-copy .hero-mark-letter {
  color: #111318;
}

.hero-mark-dot {
  display: inline-block;
  width: 0.54em;
  height: 0.54em;
  border-radius: 999px;
  background: white;
  flex: 0 0 auto;
  transform: translateY(-0.01em);
  box-shadow: inset 0 0 0 0.012em rgba(255, 255, 255, 0.92);
  transition: background 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.theme-black-copy .hero-mark-dot {
  background: #111318;
  box-shadow: inset 0 0 0 0.012em rgba(17, 19, 24, 0.14);
}

.hero-title-sub {
  display: block;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(2.34rem, 4.55vw, 3.9rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
  transition: font-size 360ms cubic-bezier(0.22, 1, 0.36, 1), color 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease, transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-middle-copy .hero-title-mark {
  font-size: clamp(2.34rem, 4.55vw, 3.9rem);
}

body.is-middle-copy .hero-title-sub {
  font-size: clamp(8.2rem, 17vw, 15rem);
}

.hero-title-sub.is-transitioning {
  opacity: 0;
  transform: translateY(10px);
}

body.theme-black-copy .hero-title-sub {
  color: #111318;
}

.hero-actions {
  margin-top: 24px;
  pointer-events: auto;
}

.download-actions {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 240ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.download-choice {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px;
  max-width: 100%;
  flex: 0 0 auto;
}

.download-choice-windows {
  width: auto;
}

.download-choice-mac {
  width: auto;
}

.download-button {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  width: 100%;
  min-width: 0;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: #ffffff;
  color: #111318;
  text-decoration: none;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(17, 19, 24, 0.16);
  transition: background 280ms cubic-bezier(0.22, 1, 0.36, 1), border-color 280ms cubic-bezier(0.22, 1, 0.36, 1), color 280ms cubic-bezier(0.22, 1, 0.36, 1), transform 220ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease, box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.download-button:hover {
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 18px 42px rgba(17, 19, 24, 0.22);
  transform: translateY(-1px);
}

.download-button-text {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.28rem;
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
  color: inherit;
}

.download-button-platform {
  font-weight: 400;
}

.download-button-text > span:empty {
  display: none;
}

.download-actions.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
}

.download-button.is-disabled {
  color: #111318;
  cursor: default;
}

.download-button.is-disabled:hover {
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 14px 34px rgba(17, 19, 24, 0.16);
  transform: none;
}

.download-soon {
  display: inline-flex;
  justify-content: center;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.download-button-windows {
  min-height: 58px;
  width: auto;
  min-width: 148px;
  padding: 0 30px;
}

.download-button-mac {
  width: auto;
  min-width: 104px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  color: rgba(17, 19, 24, 0.82);
  box-shadow: 0 10px 26px rgba(17, 19, 24, 0.1);
}

.download-button-mac:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #111318;
  box-shadow: 0 14px 34px rgba(17, 19, 24, 0.16);
}

body.is-final-slide .download-button,
body.is-final-slide .download-button:hover,
body.is-final-slide .download-button:focus-visible,
body.is-final-slide .download-button.is-disabled,
body.is-final-slide .download-button.is-disabled:hover,
body.is-final-slide .download-button-mac,
body.is-final-slide .download-button-mac:hover,
body.is-final-slide .download-button-windows,
body.is-final-slide .download-button-windows:hover {
  background: #111318;
  border-color: #111318;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(17, 19, 24, 0.26);
}

body.is-final-slide .download-soon {
  color: rgba(255, 255, 255, 0.78);
}

body.theme-black-copy .download-button,
body.theme-black-copy .download-button:hover,
body.theme-black-copy .download-button:focus-visible,
body.theme-black-copy .download-button.is-disabled,
body.theme-black-copy .download-button.is-disabled:hover,
body.theme-black-copy .download-button-mac,
body.theme-black-copy .download-button-mac:hover,
body.theme-black-copy .download-button-windows,
body.theme-black-copy .download-button-windows:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #111318;
  box-shadow: 0 14px 34px rgba(17, 19, 24, 0.16);
}

body.theme-black-copy .download-soon {
  color: rgba(17, 19, 24, 0.72);
}

.slide-rail {
  position: relative;
}

.slide-panel {
  min-height: 100svh;
  scroll-snap-align: start;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 26;
  width: min(1260px, calc(100% - 40px));
  transform: translateX(-50%);
  padding: 0 var(--content-edge);
  pointer-events: none;
}

.site-footer a {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  letter-spacing: -0.02em;
  pointer-events: auto;
}

body.theme-black-copy .site-footer a {
  color: rgba(17, 19, 24, 0.76);
}

.moom-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
}



.moom-avatar {
  --breath: 1;
  --head-x: 0px;
  --head-y: 0px;
  --head-rot: 0deg;
  --shell-size: clamp(143px, 18vw, 198px);
  --eye-size: clamp(46px, 5.9vw, 64px);
  --eye-gap: 38px;
  --eye-left-x: 0px;
  --eye-left-y: 0px;
  --eye-right-x: 0px;
  --eye-right-y: 0px;
  --eye-left-open: 1;
  --eye-right-open: 1;
  --eye-scale: 1;
  --eye-left-size: var(--eye-size);
  --eye-right-size: var(--eye-size);
  --eye-tilt-left: 0deg;
  --eye-tilt-right: 0deg;
  --sleep-opacity: 1;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  opacity: var(--sleep-opacity);
  transform: scale(var(--breath));
  transition: opacity 240ms ease;
}

.moom-shell {
  width: var(--shell-size);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 26.2%;
  background: #1d2128;
  box-shadow: none;
  transition: width 520ms cubic-bezier(0.22, 1, 0.36, 1), background 520ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.moom-avatar[data-color="whiteBlack"] .moom-shell {
  background: #eef1f6;
  box-shadow: none;
}

.moom-eyes {
  display: flex;
  align-items: center;
  gap: var(--eye-gap);
  transform: translateY(calc(var(--shell-size) * -0.13));
}

.moom-eye {
  display: block;
  width: var(--eye-size);
  height: var(--eye-size);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #edf2ff 100%);
  box-shadow: 0 0 26px rgba(255, 255, 255, 0.18);
  transition: width 520ms cubic-bezier(0.22, 1, 0.36, 1), height 520ms cubic-bezier(0.22, 1, 0.36, 1), background 520ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.moom-avatar[data-color="whiteBlack"] .moom-eye {
  background: linear-gradient(180deg, #111318 0%, #2b313d 100%);
  box-shadow: 0 0 18px rgba(17, 19, 24, 0.12);
}

.moom-eye-left {
  width: var(--eye-left-size);
  height: var(--eye-left-size);
  transform: translate3d(var(--eye-left-x), var(--eye-left-y), 0) rotate(var(--eye-tilt-left)) scaleY(var(--eye-left-open));
}

.moom-eye-right {
  width: var(--eye-right-size);
  height: var(--eye-right-size);
  transform: translate3d(var(--eye-right-x), var(--eye-right-y), 0) rotate(var(--eye-tilt-right)) scaleY(var(--eye-right-open));
}

.moom-avatar.is-snap-transition .moom-shell,
.moom-avatar.is-snap-transition .moom-eye {
  transition-duration: 72ms;
}

@keyframes drift {
  0% {
    transform: translate3d(-8px, -6px, 0) scale(1);
  }
  100% {
    transform: translate3d(10px, 8px, 0) scale(1.08);
  }
}

@media (max-width: 1120px) {
  main {
    padding-right: 0;
  }

  .moom-float {
    left: auto;
    right: 24px;
    top: auto;
    bottom: 90px;
    width: min(240px, 48vw);
  }
}

@media (max-width: 720px) {
  .page-shell,
  .site-header,
  .site-footer {
    width: calc(100% - 28px);
  }

  .hero {
    padding: 26px 0;
  }

  .hero-title {
    gap: 18px;
  }

  .hero-title-mark {
    font-size: clamp(4.9rem, 23vw, 8rem);
  }

  .hero-title-sub {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
  }

  .download-actions {
    flex-wrap: wrap;
    gap: 10px;
  }

  .download-button {
    min-height: 48px;
    padding: 0 20px;
  }

  .download-choice {
    width: 220px;
  }

  .download-button-text {
    font-size: 0.92rem;
  }

  .moom-float {
    right: 12px;
    bottom: 94px;
    width: min(180px, 42vw);
  }

  .slide-progress {
    left: 14px;
  }

  html[dir="rtl"] .slide-progress {
    left: auto;
    right: 14px;
  }

  .site-footer {
    bottom: 14px;
  }
}