@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 240ms;
  animation-timing-function: var(--ease-soft);
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #f6f7fb;
  --paper-deep: #eef0f7;
  --card: #ffffff;
  --ink: #0d0e12;
  --ink-soft: rgba(13, 14, 18, 0.62);
  --ink-faint: rgba(13, 14, 18, 0.42);
  --line: rgba(13, 14, 18, 0.09);
  --pink: #e289d2;
  --violet: #ae9ee8;
  --blue: #79bde8;
  --orange: #ff8a24;
  --success: #29c563;
  --danger: #e6332f;
  --gradient: linear-gradient(135deg, var(--pink), var(--violet) 52%, var(--blue));
  --gradient-text: linear-gradient(135deg, #a33391, #6653b7 52%, #2874a6);
  --gradient-soft: linear-gradient(135deg, rgba(226, 137, 210, 0.16), rgba(174, 158, 232, 0.17) 52%, rgba(121, 189, 232, 0.19));
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --radius-xl: 56px;
  --shadow: 0 28px 80px rgba(20, 22, 31, 0.1);
  --shadow-soft: 0 14px 40px rgba(20, 22, 31, 0.07);
  --ease-soft: cubic-bezier(0.22, 0.74, 0.2, 1);
  --motion-soft: 300ms var(--ease-soft);
  --container: min(1320px, calc(100vw - 64px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/* Translated words can be wider than a narrow heading or text column. */
main :is(h1, h2, h3, p, li, summary) {
  overflow-wrap: break-word;
  hyphens: auto;
}

html.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.menu-open {
  position: fixed;
  top: var(--page-scroll-lock-top, 0);
  right: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: none;
  padding-right: var(--page-scrollbar-width, 0px);
}

site-header {
  display: contents;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid #5345a6;
  outline-offset: 4px;
}

::selection {
  background: rgba(174, 158, 232, 0.42);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 11px 16px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  transition: transform 160ms ease;
}

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

.shell {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 17px 0;
  border-bottom: 1px solid transparent;
  background: rgba(246, 247, 251, 0.84);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(20, 22, 31, 0.05);
}

.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  text-decoration: none;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.brand img {
  width: 45px;
  height: 45px;
}

.mobile-menu-panel {
  display: none;
}

.mobile-menu-brand,
.mobile-menu-label,
.mobile-menu-note,
.mobile-menu-language,
.mobile-menu-close,
.menu-backdrop {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.nav-links a {
  position: relative;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color var(--motion-soft);
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--motion-soft);
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.nav-links a[aria-current="location"] {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after,
.nav-links a[aria-current="location"]::after {
  transform: scaleX(1);
}

.nav-action {
  justify-self: end;
}

.desktop-nav-action {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-header-actions {
  display: none;
}

.language-switcher {
  position: relative;
  z-index: 5;
  flex: 0 0 auto;
}

.language-switcher summary {
  display: flex;
  min-width: 64px;
  height: 38px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 9px;
  border: 1px solid rgba(13, 14, 18, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.46);
  color: var(--ink-soft);
  cursor: pointer;
  list-style: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: color var(--motion-soft), border-color var(--motion-soft), background-color var(--motion-soft), box-shadow var(--motion-soft);
}

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

.language-switcher summary::marker {
  content: "";
}

.language-switcher summary svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.language-code {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.language-chevron {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform var(--motion-soft);
}

.language-switcher[open] summary {
  border-color: rgba(174, 158, 232, 0.38);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(20, 22, 31, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.language-switcher[open] .language-chevron {
  transform: translateY(2px) rotate(225deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 11px);
  right: 0;
  width: min(260px, calc(100vw - 32px));
  max-height: min(480px, calc(100svh - 120px));
  align-content: start;
  display: grid;
  gap: 4px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(121, 189, 232, 0.18), transparent 42%),
    #111218;
  box-shadow: 0 24px 58px rgba(13, 14, 18, 0.22);
  opacity: 0;
  transform: translateY(-7px) scale(0.98);
  transform-origin: top right;
  transition: opacity 180ms ease, transform 260ms var(--ease-soft);
}

.language-switcher[open] .language-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.language-menu::before {
  content: "";
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 1px;
  background: var(--gradient);
  opacity: 0.85;
}

.language-menu a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 12px;
  border-radius: 11px;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: color var(--motion-soft), background-color var(--motion-soft);
}

.language-menu a small {
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.language-menu a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.language-menu a[aria-current="page"] small {
  color: var(--blue);
  font-size: 11px;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 17px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(13, 14, 18, 0.14);
  transition: transform var(--motion-soft), box-shadow var(--motion-soft), background-color var(--motion-soft), border-color var(--motion-soft);
}

.nav-cta {
  min-height: 44px;
  padding-inline: 18px;
  border-radius: 15px;
  font-size: 13px;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 32px rgba(13, 14, 18, 0.16);
}

.button--light {
  border-color: rgba(255, 255, 255, 0.14);
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  box-shadow: none;
}

.button--gradient {
  border: 0;
  background: var(--gradient);
  color: #111218;
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  box-shadow: none;
  transition: color var(--motion-soft);
}

.mobile-menu-glyph {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
}

.mobile-menu-glyph > span {
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: top 360ms var(--ease-soft), bottom 360ms var(--ease-soft), transform 360ms var(--ease-soft);
}

.mobile-menu-glyph > span:first-child {
  top: 0;
}

.mobile-menu-glyph:not(.mobile-menu-glyph--close) > span:nth-child(2) {
  top: 7px;
}

.mobile-menu-glyph > span:last-child {
  bottom: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--gradient);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.62);
}

.gradient-text {
  background: var(--gradient-text);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero {
  min-height: calc(100svh - 79px);
  display: grid;
  align-items: center;
  padding: clamp(68px, 8vw, 124px) 0 clamp(90px, 10vw, 150px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(34px, 5vw, 92px);
}

.hero-copy {
  position: relative;
  z-index: 4;
  min-width: 0;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(41px, 4.76vw, 77px);
  font-weight: 800;
  letter-spacing: -0.078em;
  line-height: 0.92;
}

.hero h1 .line {
  display: block;
}

.hero-lede {
  max-width: 610px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.45vw, 23px);
  letter-spacing: -0.025em;
  line-height: 1.56;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 37px;
}

.store-badges {
  --badge-height: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.store-badge {
  display: block;
  padding: 2px 0;
  border-radius: 10px;
  line-height: 0;
  text-decoration: none;
  transition: transform var(--motion-soft), filter var(--motion-soft);
}

.store-badge:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 8px 14px rgba(13, 14, 18, 0.11));
}

.store-badge img {
  width: auto;
  max-width: none;
  height: var(--badge-height);
}

.store-badge-crop {
  position: relative;
  display: block;
  width: auto;
  height: var(--badge-height);
  aspect-ratio: 47 / 14;
  overflow: hidden;
  border-radius: calc(var(--badge-height) * 0.17);
}

.store-badge--google img {
  position: absolute;
  top: -24.405%;
  left: -7.27%;
  width: 114.54%;
  height: 148.81%;
  max-width: none;
}

.store-badges--nav {
  --badge-height: 34px;
  flex-wrap: nowrap;
  gap: 8px;
}

.store-badge-icon {
  display: none;
}

.store-badges--hero {
  --badge-height: 52px;
  gap: 12px;
}

.store-badges--footer {
  --badge-height: 36px;
  margin-top: 24px;
}

.store-badges--final {
  --badge-height: 48px;
}

.platform-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-faint);
  font-size: 13px;
  font-weight: 600;
}

.platform-note::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 0 5px rgba(174, 158, 232, 0.13);
}

.hero-stage {
  position: relative;
  min-height: 690px;
  isolation: isolate;
}

.hero-stage::before {
  content: none;
}

.wake-signal {
  position: absolute;
  top: -18%;
  left: -26%;
  z-index: 0;
  width: 160%;
  max-width: none;
  height: auto;
  overflow: visible;
  pointer-events: none;
}

.wake-signal path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wake-signal-sun {
  stroke: rgba(13, 14, 18, 0.1);
  stroke-width: 12;
}

.wake-signal-check {
  stroke: rgba(13, 14, 18, 0.14);
  stroke-width: 12;
}

.wake-signal-rays {
  stroke: rgba(13, 14, 18, 0.1);
  stroke-width: 10;
}

.wake-signal-horizon {
  stroke: url(#wake-horizon-gradient);
  stroke-width: 16;
  stroke-linejoin: miter;
  opacity: 0.62;
  filter: drop-shadow(0 20px 32px rgba(174, 158, 232, 0.13));
}

.js .wake-signal-rise {
  opacity: 0;
  transform: translateY(78px);
  transform-box: fill-box;
  transform-origin: center;
}

.js .wake-signal-rays {
  opacity: 0;
}

.js .wake-signal-horizon {
  opacity: 0;
  transform: scaleX(0.88);
  transform-box: fill-box;
  transform-origin: center;
}

.js .hero-stage.is-visible .wake-signal-rise {
  animation: wake-signal-rise 1050ms cubic-bezier(0.2, 0.76, 0.2, 1) 260ms forwards;
}

.js .hero-stage.is-visible .wake-signal-horizon {
  animation: wake-horizon-in 900ms cubic-bezier(0.2, 0.76, 0.2, 1) 180ms forwards;
}

.js .hero-stage.is-visible .wake-signal-rays--one {
  animation: wake-ray-in 360ms ease-out 850ms forwards;
}

.js .hero-stage.is-visible .wake-signal-rays--two {
  animation: wake-ray-in 360ms ease-out 930ms forwards;
}

@keyframes wake-signal-rise {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes wake-horizon-in {
  to { opacity: 0.62; transform: scaleX(1); }
}

@keyframes wake-ray-in {
  to { opacity: 1; }
}

.phone {
  position: absolute;
  width: 298px;
  aspect-ratio: 390 / 844;
  padding: 10px;
  border: 2px solid #2a2c33;
  border-radius: 54px;
  background: linear-gradient(145deg, #31343c, #08090c 38%, #262832 70%, #050608);
  box-shadow: 0 35px 80px rgba(13, 14, 18, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transform-style: preserve-3d;
  transition: transform 260ms ease-out;
}

.phone::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 50%;
  width: 31%;
  height: 23px;
  border-radius: 999px;
  background: #050507;
  transform: translateX(-50%);
}

.phone::after {
  content: "";
  position: absolute;
  top: 18%;
  left: -5px;
  width: 4px;
  height: 72px;
  border-radius: 4px 0 0 4px;
  background: #161820;
  box-shadow: 0 94px 0 #161820;
}

.phone img {
  width: 100%;
  height: 100%;
  border-radius: 43px;
  object-fit: cover;
  background: var(--paper);
}

.hero-device {
  position: absolute;
  width: 318px;
  margin: 0;
  line-height: 0;
  transform-style: preserve-3d;
  filter: drop-shadow(0 34px 42px rgba(13, 14, 18, 0.18));
  transition: transform 360ms var(--ease-soft), filter 360ms var(--ease-soft);
}

.hero-device img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-device--home {
  top: 12%;
  left: 2%;
  z-index: 1;
  transform: rotate(-7deg);
}

.hero-device--missions {
  top: 1%;
  right: -1%;
  z-index: 2;
  transform: rotate(7deg);
}

.hero-proof {
  position: absolute;
  right: 1%;
  bottom: 2.5%;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  width: max-content;
  min-width: 0;
  padding: 9px 14px 9px 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 17px;
  background: rgba(13, 14, 18, 0.92);
  box-shadow: 0 20px 44px rgba(13, 14, 18, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
}

.hero-proof::after {
  content: "";
  position: absolute;
  top: 0;
  right: 17px;
  left: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--pink), var(--violet) 52%, var(--blue));
  opacity: 0.88;
}

.proof-check {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  background: var(--gradient);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.proof-check svg {
  width: 19px;
  height: 19px;
}

.proof-copy,
.proof-copy strong,
.proof-copy > span {
  display: block;
}

.proof-copy strong {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.proof-copy > span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1.25;
}

.section {
  padding: clamp(90px, 10vw, 160px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.45fr);
  align-items: end;
  gap: 50px;
  margin-bottom: clamp(54px, 7vw, 92px);
}

.section-head h2,
.center-head h2,
.mission-copy h2,
.final-cta h2,
.legal-hero h1,
.support-hero h1 {
  margin: 0;
  font-size: clamp(43px, 5vw, 76px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section-head p,
.center-head p {
  max-width: 530px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.center-head {
  max-width: 920px;
  margin: 0 auto clamp(54px, 7vw, 92px);
  text-align: center;
}

.center-head .eyebrow {
  justify-content: center;
}

.center-head p {
  margin: 24px auto 0;
}

.how-section {
  background: #fff;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.step-card {
  min-width: 0;
}

.step-media {
  position: relative;
  display: grid;
  height: clamp(500px, 50vw, 680px);
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(13, 14, 18, 0.06);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.step-card:nth-child(2) .step-media {
  background: #0b0c10;
}

.step-card:nth-child(3) .step-media {
  background: var(--gradient-soft);
}

.step-number {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.step-card:nth-child(2) .step-number {
  background: #fff;
  color: var(--ink);
}

.step-media .step-device {
  position: relative;
  width: min(76%, 300px);
  margin: 0;
  line-height: 0;
  filter: drop-shadow(0 24px 32px rgba(13, 14, 18, 0.16));
}

.step-device img {
  display: block;
  width: 100%;
  height: auto;
}

.step-copy {
  padding: 26px 4px 0;
}

.step-copy h3 {
  margin: 0 0 12px;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.step-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.missions-section {
  position: relative;
  overflow: hidden;
}

.missions-section::before {
  content: "";
  position: absolute;
  top: 12%;
  left: -10%;
  width: 60vw;
  aspect-ratio: 1.3;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 137, 210, 0.18), transparent 67%);
  filter: blur(24px);
  pointer-events: none;
}

.mission-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(46px, 8vw, 130px);
}

.mission-copy {
  position: sticky;
  top: 130px;
  align-self: start;
  padding-top: 30px;
}

.mission-copy p {
  max-width: 490px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.mission-copy .mission-more {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 800;
}

.mission-count {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 36px;
}

.mission-count strong {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.mission-count span {
  color: var(--ink-faint);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mission-list {
  display: grid;
  gap: 15px;
}

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

.mission-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 106px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.78);
  transition: border-color var(--motion-soft), box-shadow var(--motion-soft), background-color var(--motion-soft);
}

.mission-item:hover {
  transform: none;
  border-color: rgba(174, 158, 232, 0.32);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(20, 22, 31, 0.05);
}

.mission-art {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.mission-art img {
  display: block;
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.mission-item strong,
.mission-item > span:last-child,
.mission-item > span:last-child > span {
  display: block;
}

.mission-item strong {
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 800;
}

.mission-item span {
  color: var(--ink-soft);
  font-size: 12px;
}

.mission-carousel-controls {
  display: none;
}

.mission-carousel-button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  cursor: pointer;
  transition: border-color var(--motion-soft), background-color var(--motion-soft), color var(--motion-soft), opacity var(--motion-soft);
}

.mission-carousel-button span {
  margin-top: -2px;
  font-size: 20px;
  line-height: 1;
}

.mission-carousel-button:disabled {
  cursor: default;
  opacity: 0.28;
}

.mission-carousel-progress {
  position: relative;
  display: block;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(13, 14, 18, 0.11);
}

.mission-carousel-progress > span {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--gradient);
  transform: scaleX(var(--mission-progress, 0.1667));
  transform-origin: left center;
  transition: transform 360ms var(--ease-soft);
}

.mission-carousel-index {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  color: var(--ink-faint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.mission-carousel-index strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.proof-section {
  background: var(--ink);
  color: #fff;
}

.proof-section .section-head p {
  color: rgba(255, 255, 255, 0.58);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.feature-panel {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 34px;
  background: #15161c;
}

.feature-panel--camera {
  grid-row: span 2;
  min-height: 700px;
  display: grid;
  align-items: end;
  padding: 42px;
  background: linear-gradient(155deg, #1c1d25, #090a0e 68%);
}

.feature-panel--camera::before {
  content: "";
  position: absolute;
  top: 4%;
  left: 12%;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 158, 232, 0.31), transparent 67%);
}

.feature-panel--camera::after {
  content: "";
  position: absolute;
  inset: 28% 0 0;
  z-index: 1;
  background: linear-gradient(to bottom, transparent, rgba(9, 10, 14, 0.8) 56%, #090a0e 78%);
  pointer-events: none;
}

.feature-camera-device {
  position: absolute;
  top: 54px;
  left: 50%;
  width: min(58%, 330px);
  margin: 0;
  line-height: 0;
  transform: translateX(-50%) rotate(3deg);
  filter: drop-shadow(0 35px 52px rgba(0, 0, 0, 0.34));
}

.feature-camera-device img {
  display: block;
  width: 100%;
  height: auto;
}

.feature-panel-copy {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.feature-panel-copy h3 {
  margin: 0 0 13px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.feature-panel-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.feature-panel--history,
.feature-panel--bedtime {
  padding: 32px;
}

.feature-panel--history {
  background: linear-gradient(135deg, rgba(226, 137, 210, 0.14), rgba(174, 158, 232, 0.15) 54%, rgba(121, 189, 232, 0.15)), #15161c;
}

.history-chart {
  display: flex;
  height: 164px;
  align-items: end;
  gap: 9px;
  margin: 22px 0 28px;
  padding: 20px 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.history-chart i {
  flex: 1;
  min-width: 10px;
  height: var(--h);
  border-radius: 9px 9px 3px 3px;
  background: var(--gradient);
  opacity: var(--o, 1);
}

.bedtime-lockup {
  position: absolute;
  top: 24px;
  right: 26px;
  width: 122px;
  height: 122px;
  border-radius: 36px;
  background: #fff;
  color: var(--ink);
  transform: rotate(6deg);
}

.bedtime-lockup svg {
  position: absolute;
  top: 28px;
  left: 31px;
  width: 60px;
}

.feature-panel--bedtime .feature-panel-copy {
  max-width: 67%;
  margin-top: 152px;
}

.privacy-line {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-line svg {
  width: 28px;
  height: 28px;
  color: var(--violet);
}

.privacy-line span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
}

.faq-wrap {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 8vw, 132px);
}

.faq-intro {
  align-self: start;
  position: sticky;
  top: 130px;
}

.faq-intro h2 {
  margin: 0;
  font-size: clamp(52px, 7vw, 94px);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.faq-intro p {
  max-width: 380px;
  margin: 24px 0 0;
  color: var(--ink-soft);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  overflow: clip;
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  display: grid;
  min-height: 95px;
  grid-template-columns: 1fr 36px;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  list-style: none;
  cursor: pointer;
  user-select: none;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background-color: #fff;
  background-image: var(--gradient-soft);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 0% 0%;
  transition: background-size 440ms var(--ease-soft), border-color 360ms var(--ease-soft), box-shadow 360ms var(--ease-soft);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 280ms cubic-bezier(0.2, 0.72, 0.22, 1);
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-item summary[aria-expanded="true"] .faq-icon::after {
  transform: rotate(0);
}

.faq-item summary:focus-visible {
  outline-offset: -3px;
}

.faq-item summary:focus-visible .faq-icon {
  border-color: rgba(174, 158, 232, 0.36);
  background-size: 100% 100%;
  box-shadow: 0 9px 24px rgba(98, 83, 183, 0.1);
}

.faq-answer {
  max-width: 690px;
  padding: 0 70px 30px 0;
  color: var(--ink-soft);
}

.faq-answer p {
  margin: 0;
}

.faq-more {
  margin-top: 34px;
}

:where(.faq-intro, .faq-answer, .faq-more, .mission-more, .legal-copy, .support-card, .final-cta-copy, .footer-column, .footer-bottom) a:not(.button):not(.store-badge) {
  text-decoration: none;
  background-image: linear-gradient(90deg, var(--pink), var(--violet) 52%, var(--blue));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 2px;
  transition: color var(--motion-soft), background-size 360ms var(--ease-soft), opacity var(--motion-soft);
}

.final-section {
  padding: 0 0 30px;
}

.final-cta {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.76fr);
  align-items: center;
  gap: 40px;
  overflow: hidden;
  padding: clamp(48px, 7vw, 94px);
  border-radius: var(--radius-xl);
  background: var(--ink);
  color: #fff;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -26%;
  left: -8%;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 137, 210, 0.25), transparent 65%);
}

.final-cta-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 690px;
}

.final-cta-copy p {
  max-width: 560px;
  margin: 27px 0 33px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
}

.final-cta-copy a:not(.store-badge) {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.final-mark {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1;
  justify-self: center;
  color: #fff;
}

.final-mark::before {
  content: "";
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255, 255, 255, 0.025), 0 0 0 84px rgba(255, 255, 255, 0.018);
}

.final-mark img {
  position: absolute;
  inset: 18%;
  width: 64%;
  height: 64%;
  opacity: 1;
}

.site-footer {
  padding: 72px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) repeat(2, minmax(150px, 0.4fr));
  gap: 64px;
  padding-bottom: 58px;
}

.footer-brand p {
  max-width: 400px;
  margin: 20px 0 0;
  color: var(--ink-soft);
}

.footer-brand .footer-store-note {
  margin-top: 11px;
  color: var(--ink-faint);
  font-size: 11px;
  font-weight: 600;
}

.footer-column h3 {
  margin: 7px 0 18px;
  color: var(--ink-faint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color var(--motion-soft);
}

.footer-column a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: 12px;
}

.footer-bottom a {
  text-decoration: none;
}

/* Inner pages */
.inner-main {
  min-height: 70svh;
}

.legal-hero,
.support-hero {
  padding: clamp(75px, 9vw, 132px) 0 70px;
}

.legal-hero-grid {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr) minmax(170px, 220px);
  align-items: end;
  gap: clamp(48px, 6vw, 84px);
}

.legal-hero-grid > :first-child {
  grid-column: 1 / 3;
}

.support-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.48fr);
  align-items: end;
  gap: 60px;
}

.legal-hero h1,
.support-hero h1 {
  max-width: 950px;
}

.legal-hero-meta,
.support-hero-copy {
  color: var(--ink-soft);
  font-size: 17px;
}

.legal-hero-meta {
  grid-column: 3;
  width: 100%;
  justify-self: stretch;
  text-align: right;
}

.legal-hero-meta p,
.support-hero-copy p {
  margin: 0;
}

.legal-hero-meta strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-body {
  padding: 20px 0 130px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 84px);
}

.legal-toc {
  position: sticky;
  top: 120px;
  align-self: start;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.6);
}

.legal-toc strong {
  display: block;
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-toc ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-toc a {
  position: relative;
  display: block;
  padding-left: 13px;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transform: translateX(0);
  transition: color var(--motion-soft), transform var(--motion-soft);
}

.legal-toc a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 17px;
  border-radius: 999px;
  background: var(--gradient);
  opacity: 0;
  transform: translateY(-50%) scaleY(0.25);
  transition: opacity var(--motion-soft), transform var(--motion-soft);
}

.legal-toc a:hover,
.legal-toc a.is-active {
  color: var(--ink);
}

.legal-toc a.is-active {
  font-weight: 800;
  transform: translateX(4px);
}

.legal-toc a.is-active::before {
  opacity: 1;
  transform: translateY(-50%) scaleY(1);
}

.legal-copy {
  min-width: 0;
}

.legal-notice {
  margin-bottom: 44px;
  padding: 22px 24px;
  border: 1px solid rgba(174, 158, 232, 0.3);
  border-radius: 22px;
  background: var(--gradient-soft);
  color: var(--ink-soft);
  font-size: 14px;
}

.legal-copy section {
  padding: 40px 0;
  border-top: 1px solid var(--line);
}

.legal-copy section:first-of-type {
  border-top: 0;
}

.legal-copy h2 {
  margin: 0 0 19px;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.legal-copy h3 {
  margin: 28px 0 10px;
  font-size: 18px;
  font-weight: 800;
}

.legal-copy p,
.legal-copy li {
  color: var(--ink-soft);
}

.legal-copy p {
  margin: 0 0 16px;
}

.legal-copy ul,
.legal-copy ol {
  display: grid;
  gap: 11px;
  padding-left: 22px;
}

.legal-copy strong {
  color: var(--ink);
}

.legal-copy a {
  color: #51429b;
  font-weight: 700;
}

.support-hero {
  padding-bottom: 92px;
}

.inner-faq-section {
  padding-top: 20px;
}

.platform-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(13, 14, 18, 0.06);
  background:
    radial-gradient(circle at 79% 22%, rgba(121, 189, 232, 0.16), transparent 28%),
    radial-gradient(circle at 9% 90%, rgba(226, 137, 210, 0.12), transparent 31%);
}

.platform-hero::before {
  content: "";
  position: absolute;
  right: -13vw;
  bottom: -31vw;
  width: min(58vw, 860px);
  aspect-ratio: 1;
  border: 2px solid rgba(174, 158, 232, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(121, 189, 232, 0.035),
    0 0 0 96px rgba(226, 137, 210, 0.025);
  pointer-events: none;
}


.missions-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(226, 137, 210, 0.14), transparent 28%),
    radial-gradient(circle at 8% 88%, rgba(121, 189, 232, 0.14), transparent 31%);
}

.platform-hero .support-hero-grid {
  position: relative;
  z-index: 1;
}

.platform-hero-copy {
  display: grid;
  gap: 22px;
}

.release-status {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(174, 158, 232, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.release-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 0 4px rgba(174, 158, 232, 0.12);
}

.release-status--planned i {
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 138, 36, 0.11);
}

.product-body {
  padding-top: 42px;
}

.product-mission-art {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  gap: 18px;
  max-width: 420px;
  margin: 28px 0;
}

.product-mission-art img {
  width: 100%;
  max-width: 112px;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.product-copy .eyebrow {
  margin-bottom: 14px;
  color: var(--ink-faint);
  font-size: 10px;
}

.product-copy .eyebrow::before {
  width: 19px;
  height: 2px;
}

.product-copy .legal-notice strong {
  color: var(--ink);
}

.mission-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.mission-catalog-grid .mission-item {
  min-height: 118px;
  background: rgba(255, 255, 255, 0.76);
}

.mission-catalog-grid .mission-item > span:last-child > span {
  line-height: 1.38;
}

.final-cta--compact {
  min-height: 540px;
}

.final-cta--compact h2 {
  hyphens: none;
  text-wrap: balance;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: 130px;
}

.support-card {
  position: relative;
  grid-column: span 6;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #fff;
}

.support-card--wide {
  grid-column: span 8;
}

.support-card--small {
  grid-column: span 4;
}

.support-card--dark {
  background: var(--ink);
  color: #fff;
}

.support-card--gradient {
  background: var(--gradient-soft);
}

.support-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 19px;
  background: var(--gradient-soft);
}

.support-card--dark .support-icon {
  background: rgba(255, 255, 255, 0.1);
}

.support-icon svg {
  width: 28px;
  height: 28px;
}

.support-card h2 {
  margin: 36px 0 12px;
  font-size: 31px;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.support-card p {
  max-width: 520px;
  margin: 0 0 27px;
  color: var(--ink-soft);
}

.support-card--dark p {
  color: rgba(255, 255, 255, 0.58);
}

.support-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.support-card-link::after {
  content: "↗";
  font-size: 18px;
  transition: transform var(--motion-soft);
}

.delete-flow {
  display: grid;
  counter-reset: delete-step;
  gap: 14px;
  margin: 28px 0 8px;
}

.delete-step {
  counter-increment: delete-step;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 15px;
  min-height: 76px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: #fff;
  color: var(--ink-soft);
}

.delete-step::before {
  content: counter(delete-step, decimal-leading-zero);
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 15px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.danger-note {
  padding: 22px 24px;
  border: 1px solid rgba(230, 51, 47, 0.18);
  border-radius: 22px;
  background: rgba(230, 51, 47, 0.06);
}

.danger-note strong {
  color: var(--danger);
}

.error-page {
  min-height: 72svh;
  display: grid;
  place-items: center;
  padding: 80px 0;
  text-align: center;
}

.error-code {
  margin: 0;
  background: var(--gradient-text);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(100px, 22vw, 260px);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.error-page h1 {
  margin: 34px 0 12px;
  font-size: 38px;
  letter-spacing: -0.05em;
}

.error-page p {
  max-width: 520px;
  margin: 0 auto 28px;
  color: var(--ink-soft);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms cubic-bezier(0.2, 0.72, 0.22, 1), transform 680ms cubic-bezier(0.2, 0.72, 0.22, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js [data-reveal-delay="1"] { transition-delay: 90ms; }
.js [data-reveal-delay="2"] { transition-delay: 180ms; }
.js [data-reveal-delay="3"] { transition-delay: 270ms; }

@media (hover: hover) and (pointer: fine) {
  .language-switcher summary:hover {
    border-color: rgba(174, 158, 232, 0.32);
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
  }

  .language-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .faq-item summary:hover .faq-icon {
    border-color: rgba(174, 158, 232, 0.36);
    background-size: 100% 100%;
    box-shadow: 0 9px 24px rgba(98, 83, 183, 0.1);
  }

  :where(.faq-intro, .faq-answer, .faq-more, .mission-more, .legal-copy, .support-card, .final-cta-copy, .footer-column, .footer-bottom) a:not(.button):not(.store-badge):hover {
    background-size: 100% 2px;
    color: var(--ink);
  }

  .final-cta-copy a:not(.button):not(.store-badge):hover {
    color: #fff;
  }

  .support-card--dark .support-card-link:hover {
    color: #fff;
  }

  .support-card-link:hover::after {
    transform: translate(2px, -2px);
  }

  .legal-toc a:not(.is-active):hover {
    transform: translateX(2px);
  }

  .legal-toc a:not(.is-active):hover::before {
    opacity: 0.38;
    transform: translateY(-50%) scaleY(0.64);
  }

  .mobile-menu-button:hover {
    color: rgba(13, 14, 18, 0.58);
  }

  .mobile-menu-close:hover {
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.16);
  }

  .mission-carousel-button:not(:disabled):hover {
    border-color: rgba(174, 158, 232, 0.44);
    background: rgba(255, 255, 255, 0.96);
    color: #5345a6;
  }
}

@media (max-width: 1100px) {
  :root {
    --container: min(100% - 46px, 980px);
  }

  .nav-wrap {
    gap: 16px;
  }

  .desktop-navigation {
    gap: 24px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1fr);
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(38px, 4.9vw, 53px);
  }

  .hero-stage {
    min-height: 610px;
  }

  .phone {
    width: 260px;
  }

  .hero-device {
    width: 276px;
  }

  .mission-layout {
    gap: 55px;
  }

  .mission-item {
    grid-template-columns: 52px 1fr;
    padding-inline: 14px;
  }

  .mission-art {
    width: 52px;
    height: 52px;
    border-radius: 0;
  }

  .legal-hero-grid {
    grid-template-columns: 220px minmax(0, 1fr) 180px;
    gap: 38px;
  }

  .legal-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 38px;
  }

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

  .feature-panel--camera {
    min-height: 640px;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100% - 36px, 720px);
  }

  .site-header {
    padding: 13px 0;
  }

  .nav-wrap {
    grid-template-columns: 1fr auto auto;
    column-gap: 16px;
  }

  .desktop-navigation,
  .language-switcher--desktop {
    display: none;
  }

  .store-badges--header {
    gap: 6px;
  }

  .store-badges--header .store-badge {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: #0a0a0c;
  }

  .store-badges--header .store-badge-full {
    display: none;
  }

  .store-badges--header .store-badge-icon {
    position: static;
    display: block;
    width: 24px;
    height: 24px;
  }

  .mobile-header-actions {
    position: relative;
    z-index: 104;
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 4px;
  }

  .language-switcher--mobile summary {
    min-width: 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
  }

  .language-switcher--mobile .language-code,
  .language-switcher--mobile .language-chevron {
    display: none;
  }

  .language-switcher--mobile summary svg {
    width: 20px;
    height: 20px;
  }

  .language-switcher--mobile .language-menu {
    top: calc(100% + 8px);
  }

  .mobile-menu-button {
    display: grid;
    position: relative;
    z-index: 104;
    justify-self: end;
  }

  .mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 103;
    display: flex;
    width: min(88vw, 390px);
    height: auto;
    min-height: 0;
    flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    padding: max(24px, env(safe-area-inset-top)) 25px max(25px, env(safe-area-inset-bottom));
    background:
      radial-gradient(circle at 84% 0%, rgba(121, 189, 232, 0.22), transparent 34%),
      radial-gradient(circle at 0 39%, rgba(226, 137, 210, 0.15), transparent 38%),
      #0d0e12;
    box-shadow: -30px 0 80px rgba(7, 8, 12, 0.28);
    color: #fff;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(calc(100% + 28px));
    transition: transform 520ms cubic-bezier(0.2, 0.82, 0.2, 1), visibility 0s linear 520ms;
  }

  site-header.menu-active .mobile-menu-panel {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition: transform 520ms cubic-bezier(0.2, 0.82, 0.2, 1), visibility 0s;
  }

  .mobile-menu-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 58px;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.045em;
  }

  .mobile-menu-brand img {
    width: 45px;
    height: 45px;
  }

  .mobile-menu-close {
    position: absolute;
    top: max(24px, env(safe-area-inset-top));
    right: 25px;
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    transition: background-color var(--motion-soft), border-color var(--motion-soft);
  }

  .mobile-menu-glyph--close > span:first-child {
    top: 7px;
    transform: rotate(45deg);
  }

  .mobile-menu-glyph--close > span:last-child {
    bottom: 7px;
    transform: rotate(-45deg);
  }

  .mobile-menu-label {
    display: block;
    margin: clamp(54px, 11vh, 94px) 0 12px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
  }

  .mobile-menu-panel .nav-links {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    counter-reset: mobile-nav;
    text-align: left;
  }

  .mobile-menu-panel .nav-links a {
    counter-increment: mobile-nav;
    display: block;
    padding: 14px 0 16px 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.61);
    font-size: clamp(25px, 7.7vw, 34px);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.08;
    opacity: 0;
    transform: translateX(26px);
    transition: color var(--motion-soft), opacity 260ms var(--ease-soft), transform 420ms var(--ease-soft);
  }

  .mobile-menu-panel .nav-links a::before {
    content: "0" counter(mobile-nav);
    position: absolute;
    top: 50%;
    left: 0;
    color: rgba(255, 255, 255, 0.3);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    transform: translateY(-50%);
  }

  .mobile-menu-panel .nav-links a::after {
    right: auto;
    bottom: 10px;
    left: 34px;
    width: 0;
    height: 2px;
    transform: none;
    transition: width 360ms var(--ease-soft);
  }

  .mobile-menu-panel .nav-links a[aria-current="page"],
  .mobile-menu-panel .nav-links a[aria-current="location"] {
    color: #fff;
  }

  .mobile-menu-panel .nav-links a[aria-current="page"]::after,
  .mobile-menu-panel .nav-links a[aria-current="location"]::after {
    width: 48px;
  }

  site-header.menu-active .mobile-menu-panel .nav-links a {
    opacity: 1;
    transform: translateX(0);
  }

  site-header.menu-active .mobile-menu-panel .nav-links a:nth-child(1) { transition-delay: 90ms; }
  site-header.menu-active .mobile-menu-panel .nav-links a:nth-child(2) { transition-delay: 135ms; }
  site-header.menu-active .mobile-menu-panel .nav-links a:nth-child(3) { transition-delay: 180ms; }
  site-header.menu-active .mobile-menu-panel .nav-links a:nth-child(4) { transition-delay: 225ms; }

  .mobile-menu-panel .nav-action {
    display: flex;
    width: 100%;
    margin-top: auto;
    padding-top: 48px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 300ms var(--ease-soft), transform 420ms var(--ease-soft);
  }

  site-header.menu-active .mobile-menu-panel .nav-action {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 280ms;
  }

  .mobile-menu-panel .store-badges--nav {
    width: 100%;
    justify-content: flex-start;
  }

  .mobile-menu-language {
    display: block;
    margin-top: 18px;
  }

  .language-switcher--drawer summary {
    width: 100%;
    height: 45px;
    justify-content: flex-start;
    padding: 0 13px;
    border-color: rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.72);
    box-shadow: none;
  }

  .language-switcher--drawer .language-chevron {
    margin-left: auto;
  }

  .language-switcher--drawer[open] summary {
    border-color: rgba(174, 158, 232, 0.35);
    background: rgba(255, 255, 255, 0.11);
    color: #fff;
    box-shadow: none;
  }

  .language-switcher--drawer .language-menu {
    position: static;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
    transform-origin: top center;
  }

  .mobile-menu-note {
    display: block;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.43);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 102;
    display: block;
    width: auto;
    height: auto;
    background: rgba(7, 8, 12, 0.42);
    opacity: 0;
    pointer-events: none;
    touch-action: none;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    transition: opacity 420ms var(--ease-soft);
  }

  site-header.menu-active .menu-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 62px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero h1 {
    max-width: 690px;
    font-size: clamp(40px, 8.54vw, 64px);
  }

  .hero-lede {
    max-width: 660px;
  }

  .hero-stage {
    width: min(100%, 670px);
    min-height: 630px;
    margin-inline: auto;
  }

  .phone {
    width: 275px;
  }

  .hero-device {
    width: 292px;
  }

  .hero-device--home { left: 5%; }
  .hero-device--missions { right: 5%; }

  .section-head,
  .mission-layout,
  .faq-wrap,
  .legal-hero-grid,
  .support-hero-grid {
    grid-template-columns: 1fr;
  }

  .legal-hero-grid > :first-child,
  .legal-hero-meta {
    grid-column: 1;
  }

  .legal-hero-meta {
    justify-self: start;
    max-width: 640px;
    text-align: left;
  }

  .section-head {
    align-items: start;
    gap: 25px;
  }

  .step-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .step-media {
    height: min(720px, 110vw);
  }

  .step-media .step-device {
    width: min(52%, 320px);
  }

  .mission-copy,
  .faq-intro {
    position: static;
  }

  .mission-copy p {
    max-width: 660px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .feature-panel--camera {
    grid-row: auto;
    min-height: 700px;
  }

  .feature-panel--history,
  .feature-panel--bedtime {
    min-height: 390px;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-mark {
    width: min(70vw, 420px);
  }

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

  .legal-toc {
    position: static;
  }

  .support-card,
  .support-card--wide,
  .support-card--small {
    grid-column: span 12;
  }

  .platform-hero::before {
    right: -34vw;
    bottom: -42vw;
    width: 92vw;
  }
}

@media (max-width: 600px) {
  :root {
    --container: calc(100% - 28px);
    --radius-lg: 28px;
    --radius-xl: 34px;
  }

  html {
    scroll-padding-top: 90px;
  }

  .nav-wrap {
    grid-template-columns: minmax(0, 1fr) auto auto;
    column-gap: 6px;
  }

  .mobile-header-actions {
    gap: 0;
  }

  .brand {
    font-size: 19px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .site-header .brand {
    gap: 6px;
    font-size: 17px;
  }

  .site-header .brand img {
    width: 30px;
    height: 30px;
  }

  .hero {
    padding: 48px 0 86px;
  }

  .hero h1 {
    font-size: clamp(34px, 10.64vw, 50px);
    letter-spacing: -0.075em;
  }

  .hero-lede {
    margin-top: 26px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 30px;
  }

  .store-badges--hero {
    width: 100%;
  }

  .hero-stage {
    min-height: 545px;
    margin-top: -6px;
  }

  .wake-signal {
    display: none;
  }

  .phone {
    width: 218px;
    padding: 7px;
    border-radius: 42px;
  }

  .phone img {
    border-radius: 34px;
  }

  .phone::before {
    top: 14px;
    height: 17px;
  }

  .hero-device {
    width: 222px;
    filter: drop-shadow(0 24px 30px rgba(13, 14, 18, 0.17));
  }

  .hero-device--home {
    top: 20%;
    left: 5%;
  }

  .hero-device--missions {
    top: 2%;
    right: 5%;
  }

  .hero-proof {
    right: 1%;
    bottom: 1%;
    min-width: 0;
  }

  .section {
    padding: 88px 0;
  }

  .section-head h2,
  .center-head h2,
  .mission-copy h2,
  .final-cta h2,
  .legal-hero h1,
  .support-hero h1 {
    font-size: clamp(39px, 12vw, 58px);
  }

  .section-head p,
  .center-head p,
  .mission-copy p {
    font-size: 16px;
  }

  .center-head {
    text-align: left;
  }

  .center-head .eyebrow {
    justify-content: flex-start;
  }

  .center-head p {
    margin-inline: 0;
  }

  .step-media {
    height: 550px;
  }

  .step-media .step-device {
    width: 248px;
  }

  .step-copy h3 {
    font-size: 21px;
  }

  .mission-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 4px 0 15px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .mission-list::-webkit-scrollbar {
    display: none;
  }

  .mission-list:focus-visible {
    border-radius: 24px;
    outline: 2px solid #5345a6;
    outline-offset: 4px;
  }

  .mission-slide {
    display: grid;
    flex: 0 0 calc(100% - 28px);
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, minmax(91px, 1fr));
    gap: 12px;
    scroll-snap-align: start;
  }

  .mission-item {
    min-height: 91px;
  }

  .mission-list.is-carousel-ready + .mission-carousel-controls {
    display: grid;
  }

  .mission-carousel-controls {
    grid-template-columns: 44px minmax(56px, 1fr) auto 44px;
    align-items: center;
    gap: 12px;
    margin-top: 2px;
  }

  .feature-panel--camera {
    min-height: 630px;
    padding: 28px;
  }

  .feature-camera-device {
    width: 235px;
  }

  .feature-panel--history,
  .feature-panel--bedtime {
    min-height: 355px;
    padding: 26px;
  }

  .bedtime-lockup {
    width: 100px;
    height: 100px;
  }

  .bedtime-lockup svg {
    top: 23px;
    left: 25px;
    width: 50px;
  }

  .feature-panel--bedtime .feature-panel-copy {
    max-width: 100%;
    margin-top: 145px;
  }

  .feature-panel-copy h3 {
    font-size: 26px;
  }

  .faq-item summary {
    min-height: 82px;
    font-size: 17px;
  }

  .faq-answer {
    padding-right: 0;
  }

  .final-cta {
    min-height: 630px;
    padding: 43px 28px 30px;
  }

  .final-mark {
    width: min(80vw, 330px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .legal-layout {
    gap: 38px;
  }

  .legal-toc {
    padding: 20px;
  }

  .legal-copy section {
    padding: 32px 0;
  }

  .support-card {
    min-height: 330px;
    padding: 28px;
    border-radius: 28px;
  }

  .support-card h2 {
    font-size: 27px;
  }

  .mission-catalog-grid {
    grid-template-columns: 1fr;
  }

  .final-cta--compact {
    min-height: 610px;
  }

  .final-cta--compact h2 {
    font-size: clamp(32px, 9vw, 44px);
  }
}

@media (max-width: 360px) {
  .site-header .brand {
    gap: 5px;
    font-size: 16px;
  }

  .site-header .brand img {
    width: 26px;
    height: 26px;
  }
}

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

  .js .wake-signal-rise,
  .js .wake-signal-rays,
  .js .wake-signal-horizon {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

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

  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .legal-toc,
  .skip-link {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .legal-hero,
  .legal-body {
    padding: 20px 0;
  }

  .legal-layout {
    display: block;
  }

  .legal-copy section {
    break-inside: avoid;
  }
}
