@font-face {
  font-family: "Akari New York";
  src:
    url("assets/fonts/NewYork.woff2") format("woff2"),
    url("assets/fonts/NewYork.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@property --page {
  syntax: "<color>";
  inherits: true;
  initial-value: #1d1b07;
}

@property --ink {
  syntax: "<color>";
  inherits: true;
  initial-value: #f1eac6;
}

@property --accent {
  syntax: "<color>";
  inherits: true;
  initial-value: #ebcc4b;
}

:root {
  color-scheme: dark;
  --page: #1d1b07;
  --ink: #f1eac6;
  --accent: #ebcc4b;
  --card: #f1eac6;
  --card-ink: #1d1b07;
  --cta-bg: var(--accent);
  --cta-ink: var(--card-ink);
  --focus-ring: var(--accent);
  --page-rgb: 29, 27, 7;
  --ink-rgb: 241, 234, 198;
  --serif: "Akari New York", "New York", serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--page);
  transition: --page 500ms var(--ease), --ink 500ms var(--ease), --accent 500ms var(--ease);
}

:root[data-theme="forest"] {
  --page: #151a0c;
  --ink: #e6f4d1;
  --accent: #a9eb4b;
  --card: #e6f4d1;
  --card-ink: #151a0c;
  --page-rgb: 21, 26, 12;
  --ink-rgb: 230, 244, 209;
}

:root[data-theme="coast"] {
  --page: #0d1920;
  --ink: #d7edf8;
  --accent: #4baceb;
  --card: #d7edf8;
  --card-ink: #0d1920;
  --page-rgb: 13, 25, 32;
  --ink-rgb: 215, 237, 248;
}

:root[data-theme="canyon"] {
  --page: #1a100c;
  --ink: #f4ddd1;
  --accent: #eb804b;
  --card: #f4ddd1;
  --card-ink: #1a100c;
  --page-rgb: 26, 16, 12;
  --ink-rgb: 244, 221, 209;
}

:root[data-mode="light"] {
  color-scheme: light;
  --page: #f1eac6;
  --ink: #1d1b07;
  --accent: #ebcc4b;
  --card: #fffdf1;
  --card-ink: #1d1b07;
  --focus-ring: var(--ink);
  --page-rgb: 241, 234, 198;
  --ink-rgb: 29, 27, 7;
}

:root[data-mode="light"][data-theme="forest"] {
  --page: #e6f4d1;
  --ink: #151a0c;
  --accent: #a9eb4b;
  --card: #fbfff4;
  --card-ink: #151a0c;
  --page-rgb: 230, 244, 209;
  --ink-rgb: 21, 26, 12;
}

:root[data-mode="light"][data-theme="coast"] {
  --page: #d7edf8;
  --ink: #0d1920;
  --accent: #4baceb;
  --card: #f6fcff;
  --card-ink: #0d1920;
  --page-rgb: 215, 237, 248;
  --ink-rgb: 13, 25, 32;
}

:root[data-mode="light"][data-theme="canyon"] {
  --page: #f4ddd1;
  --ink: #1a100c;
  --accent: #eb804b;
  --card: #fff8f4;
  --card-ink: #1a100c;
  --page-rgb: 244, 221, 209;
  --ink-rgb: 26, 16, 12;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background: var(--page);
  font-family: var(--serif);
  font-optical-sizing: auto;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

main,
.site-header,
.hero-footer {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a[href],
button:not(:disabled),
[role="button"] {
  cursor: pointer;
}

button {
  font: inherit;
}

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

.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;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--card-ink);
  background: var(--accent);
  border-radius: 8px;
  font-weight: 700;
  transform: translateY(-160%);
}

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

.skip-link:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

main:focus {
  outline: none;
}

.site-header {
  position: relative;
  z-index: 30;
  height: 98px;
}

.site-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1280px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
}

.header-controls,
.header-control-section {
  display: contents;
}

.mobile-control-label,
.mobile-menu-toggle {
  display: none;
}

.brand {
  position: relative;
  display: block;
  grid-column: 2;
  grid-row: 1;
  width: 89px;
  height: 50px;
  justify-self: center;
}

.brand img {
  width: 100%;
  height: 100%;
}

.language-switch {
  position: relative;
  display: flex;
  grid-column: 1;
  grid-row: 1;
  align-items: center;
  justify-self: start;
  margin-left: 24px;
  padding: 3px;
  border: 1px solid rgba(var(--ink-rgb), 0.24);
  border-radius: 999px;
  isolation: isolate;
  transition: border-color 500ms var(--ease);
}

.language-switch::before {
  position: absolute;
  z-index: 0;
  top: 3px;
  left: 3px;
  width: 38px;
  height: 28px;
  background: var(--ink);
  border-radius: 999px;
  content: "";
  transform: translateX(0);
  transition: background 500ms var(--ease), transform 300ms cubic-bezier(0.22, 1.25, 0.36, 1);
}

:root[data-language="de"] .language-switch::before {
  transform: translateX(38px);
}

.language-button {
  position: relative;
  z-index: 1;
  display: grid;
  width: 38px;
  height: 28px;
  margin: 0;
  padding: 0;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  line-height: 1;
  transition: color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.language-button:hover {
  transform: scale(1.04);
}

.language-button[aria-pressed="true"] {
  color: var(--page);
  background: transparent;
}

.appearance-controls,
.theme-controls {
  display: flex;
  align-items: center;
}

.appearance-controls {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  gap: 0;
  margin-right: 24px;
}

.theme-dot,
.mode-button {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.theme-dot[data-theme-target="meadow"] {
  --theme-swatch: #ebcc4b;
}

.theme-dot[data-theme-target="forest"] {
  --theme-swatch: #a9eb4b;
}

.theme-dot[data-theme-target="coast"] {
  --theme-swatch: #4baceb;
}

.theme-dot[data-theme-target="canyon"] {
  --theme-swatch: #eb804b;
}

.theme-ring,
.mode-ring {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 2px solid transparent;
  border-radius: 50%;
  pointer-events: none;
}

.theme-swatch {
  display: block;
  width: 24px;
  height: 24px;
  background: var(--theme-swatch);
  border-radius: 50%;
  pointer-events: none;
  transition: background-color 160ms var(--ease);
}

.theme-dot:hover .theme-swatch {
  background-color: color-mix(in srgb, var(--theme-swatch) 88%, white);
}

.mode-swatch {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  background: #9d977a;
  border-radius: 50%;
  pointer-events: none;
  transition: background-color 160ms var(--ease);
}

.mode-swatch img {
  width: 24px;
  height: 24px;
  max-width: none;
  pointer-events: none;
}

.mode-button:hover .mode-swatch {
  background-color: color-mix(in srgb, #9d977a 88%, white);
}

.mode-button[aria-pressed="true"] .mode-ring {
  border-color: currentColor;
}

.theme-dot[aria-pressed="true"] .theme-ring {
  border-color: currentColor;
}

.theme-dot:focus-visible,
.mode-button:focus-visible,
.language-button:focus-visible,
.mobile-menu-toggle:focus-visible,
.cta:focus-visible,
.brand:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 4px;
}

model-viewer[inert] {
  pointer-events: none;
}

.hero,
.beta,
.why,
.answers {
  position: relative;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.hero,
.beta {
  display: grid;
  min-height: 755px;
  place-items: center;
  isolation: isolate;
}

.hero-phone {
  --phone-base-rotate-y: 0deg;
  --phone-base-rotate-z: -14deg;
  --phone-base-position-x: 65px;
  --phone-base-position-y: 30px;
  position: absolute;
  z-index: 3;
  top: 46%;
  left: clamp(-72px, -4vw, -24px);
  width: clamp(310px, 35vw, 468px);
  height: min(680px, 78vh);
  pointer-events: none;
  translate: var(--phone-base-position-x) var(--phone-base-position-y);
  user-select: none;
  transition: translate 420ms var(--ease);
}

@media (min-width: 761px) {
  :root[data-language="de"] .hero-phone {
    --phone-base-position-x: 20px;
  }
}

.hero-phone__float {
  position: relative;
  width: 100%;
  height: 100%;
  transform: perspective(1100px) translate3d(var(--phone-drift-x, 0), calc(-50% + var(--phone-drift-y, 0px)), 0) rotateX(var(--phone-rotate-x, 0deg)) rotateY(calc(var(--phone-base-rotate-y) + var(--phone-rotate-y, 0deg))) rotateZ(var(--phone-base-rotate-z));
  transform-origin: 50% 55%;
  will-change: transform;
}

.hero-phone__float::after {
  display: none;
  position: absolute;
  z-index: -1;
  right: 8%;
  bottom: 7%;
  left: 8%;
  height: 18%;
  background: rgba(0, 0, 0, 0.24);
  border-radius: 50%;
  filter: blur(28px);
  content: "";
  opacity: 0.72;
  transform: scaleY(0.32);
}

.hero-phone model-viewer {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: transparent;
  --poster-color: transparent;
  --progress-bar-color: transparent;
  --progress-bar-height: 0px;
  pointer-events: none;
  transition: opacity 700ms var(--ease);
}

.hero-phone model-viewer.is-loaded {
  opacity: 1;
}

.beta-phone {
  position: absolute;
  z-index: 3;
  top: calc(50% - 70px);
  right: clamp(-60px, calc(-0.7vw - 42px), -48px);
  width: clamp(310px, 33vw, 440px);
  height: 0;
  pointer-events: none;
  user-select: none;
}

.beta-phone__float {
  position: relative;
  width: 100%;
  height: min(660px, 76vh);
  transform: perspective(1100px) translate3d(var(--phone-drift-x, 0), calc(-50% + var(--phone-drift-y, 0px)), 0) rotateX(var(--phone-rotate-x, 0deg)) rotateY(var(--phone-rotate-y, 0deg)) rotateZ(14deg);
  transform-origin: 50% 55%;
  will-change: transform;
}

.beta-phone model-viewer {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: transparent;
  --poster-color: transparent;
  --progress-bar-color: transparent;
  --progress-bar-height: 0px;
  pointer-events: none;
  transition: opacity 700ms var(--ease);
}

.beta-phone model-viewer.is-loaded {
  opacity: 1;
}

.hero__content,
.beta__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(720px, 100%);
  text-align: center;
}

.hero h1,
.beta h2 {
  margin: 0;
  font-size: clamp(5rem, 7.78vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.012em;
  line-height: 0.928571;
  text-wrap: balance;
}

:root[data-language="de"] .hero .headline-line:nth-child(2) {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

:root[data-language="de"] .hero .headline-heart {
  margin-right: 0.08em;
}

.headline-line,
.beta-line,
.trust-line span {
  display: block;
}

.hero-y {
  display: inline-block;
  margin-right: -0.075em;
}

.headline-heart {
  position: relative;
  display: inline-block;
  vertical-align: 0.03em;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 0.72em;
  font-variant-emoji: emoji;
  letter-spacing: 0;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.why-emoji,
.answers-emoji {
  position: relative;
  display: inline-block;
  pointer-events: none;
  user-select: none;
}

.trust-line {
  margin: 40px 0 0;
  font-size: clamp(1.05rem, 1.67vw, 1.5rem);
  line-height: 1.34;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 40px;
  padding: 18px 32px;
  color: var(--cta-ink);
  background: var(--cta-bg);
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: box-shadow 220ms var(--ease), filter 220ms var(--ease);
}

.cta:hover {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  filter: brightness(1.08);
}

.cta:active {
  filter: brightness(0.94);
}

.why {
  padding: 80px 0 144px;
}

.why__intro {
  display: grid;
  grid-template-columns: 376px 1fr;
  align-items: start;
  margin-bottom: 80px;
}

.why__intro h2,
.why__intro p {
  margin: 0;
  font-size: clamp(2.35rem, 3.33vw, 3rem);
  line-height: 1;
}

.why__intro h2 {
  font-weight: 600;
  letter-spacing: 0;
}

.why__intro h2 .why-emoji {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.8em;
  vertical-align: 0.05em;
}

.why__intro p {
  max-width: 904px;
  font-weight: 400;
  letter-spacing: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-grid:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: -3px;
  border-radius: 20px;
}

.feature-card {
  position: relative;
  display: grid;
  min-width: 0;
  height: auto;
  max-height: 440px;
  aspect-ratio: 0.92;
  margin: 0;
  overflow: hidden;
  color: var(--card-ink);
  background: var(--card);
  border-radius: 24px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.09);
  isolation: isolate;
  transition: background 500ms var(--ease);
}

.feature-card__ui {
  position: absolute;
  inset: 18px 18px auto;
  aspect-ratio: 1088 / 834;
  overflow: hidden;
  padding: 20px;
  color: #f4ddd1;
  background: #15110f;
  border: 1px solid rgba(244, 221, 209, 0.13);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 32px rgba(0, 0, 0, 0.18);
}

:root[data-mode="light"] .feature-card__ui {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.shot-ui {
  padding: 0;
  background: #191411;
}

.feature-shot {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

.day-ui {
  display: block;
  padding: 0;
  background: #191411;
}

.day-ui__story {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  color: #f3ddd2;
  font-size: clamp(2.12rem, 2.8vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.day-ui__sentence,
.day-ui__sentence > span {
  display: block;
}

.day-ui__sentence + .day-ui__sentence {
  margin-top: 0;
}

.day-ui__story i {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 1em;
  font-style: normal;
  letter-spacing: 0;
  vertical-align: 0.02em;
}

.context-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 18px 17px;
}

.context-ui__title {
  display: flex;
  align-items: center;
  gap: 7px;
  align-self: stretch;
  height: 27px;
  font-size: 0.96rem;
}

.context-ui__title img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(36%) sepia(99%) saturate(2620%) hue-rotate(345deg) brightness(102%) contrast(95%);
}

.context-ui__back {
  display: grid;
  width: 27px;
  height: 27px;
  margin-right: 1px;
  place-items: center;
  color: #fff9f5;
  background: #302925;
  border: 1px solid rgba(244, 221, 209, 0.16);
  border-radius: 50%;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 0.7;
}

.context-ui__period {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  height: 31px;
  margin-top: 8px;
  padding: 3px;
  align-items: center;
  color: #fff9f5;
  background: #4b3e3a;
  border-radius: 18px;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.68rem;
  text-align: center;
}

.context-ui__period b {
  display: grid;
  height: 25px;
  place-items: center;
  background: #8b8182;
  border-radius: 14px;
}

.context-ui__value {
  display: flex;
  align-items: baseline;
  margin-top: 11px;
}

.context-ui__value strong {
  font-size: clamp(3.3rem, 4.5vw, 4.05rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.82;
}

.context-ui__value small {
  margin-left: 5px;
  color: rgba(244, 221, 209, 0.58);
  font-size: 1.25rem;
  font-weight: 700;
}

.context-ui__status {
  margin-top: 7px;
  color: #25a744;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.context-ui__range {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  height: 7px;
  margin-top: 12px;
  overflow: visible;
  border-radius: 8px;
}

.context-ui__range span:first-child { background: #28a0a8; border-radius: 8px 0 0 8px; }
.context-ui__range span:nth-child(2) { background: #299e4d; }
.context-ui__range span:nth-child(3) { background: #d99926; }
.context-ui__range span:nth-child(4) { background: #db3d2e; border-radius: 0 8px 8px 0; }

.context-ui__range i {
  position: absolute;
  top: 50%;
  left: 30%;
  width: 16px;
  height: 16px;
  background: #29ae4d;
  border: 4px solid #24542f;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(48, 199, 89, 0.12);
  transform: translate(-50%, -50%);
}

.context-ui p {
  order: 4;
  margin: 4px 0 0;
  color: rgba(244, 221, 209, 0.88);
  font-size: 0.78rem;
  text-align: center;
}

.context-ui__range { order: 5; }

.life-ui {
  padding: 16px;
  background: radial-gradient(circle at 18% 66%, rgba(39, 215, 82, 0.11), transparent 42%), #15110f;
}

.life-ui__move {
  height: 164px;
  padding: 13px 14px;
  background: linear-gradient(135deg, rgba(25, 82, 39, 0.72), rgba(48, 39, 34, 0.82) 70%);
  border: 1px solid rgba(37, 199, 80, 0.26);
  border-radius: 25px;
}

.life-ui__move-title {
  display: grid;
  grid-template-columns: 34px 1fr 25px;
  align-items: center;
  gap: 10px;
}

.life-ui__move-title > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: rgba(39, 199, 80, 0.2);
  border-radius: 10px;
}

.life-ui__move-title img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(64%) sepia(98%) saturate(1051%) hue-rotate(82deg) brightness(100%) contrast(96%);
}

.life-ui__move-title b {
  font-size: 1.12rem;
}

.life-ui__move-title i {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #16351f;
  background: #29d257;
  border-radius: 50%;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 900;
}

.life-ui__move-value {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  margin-top: 15px;
}

.life-ui__move-value strong {
  font-size: clamp(2.7rem, 4vw, 3.35rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.82;
}

.life-ui__move-value small {
  margin-left: 6px;
  color: rgba(244, 221, 209, 0.63);
  font-size: 0.78rem;
}

.life-ui__move-value em {
  padding: 5px 8px;
  color: #12a9b9;
  background: rgba(18, 169, 185, 0.18);
  border-radius: 10px;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
}

.app-tabs {
  position: absolute;
  right: 13px;
  bottom: 12px;
  left: 13px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 88px;
  padding: 6px;
  background: rgba(51, 45, 41, 0.92);
  border: 1px solid rgba(244, 221, 209, 0.2);
  border-radius: 28px;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

.app-tab {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #fff8f2;
  border-radius: 20px;
}

.app-tab.is-active {
  color: #ff9b61;
  background: rgba(244, 221, 209, 0.16);
}

.app-tab img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.app-tab.is-active img {
  filter: brightness(0) saturate(100%) invert(69%) sepia(49%) saturate(1717%) hue-rotate(319deg) brightness(104%) contrast(101%);
}

.app-tab b {
  overflow: hidden;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.68rem;
  text-overflow: ellipsis;
}

.feature-card__copy {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 0 30px 28px;
  color: var(--card-ink);
}

.feature-card h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
}

.feature-card p {
  margin: 7px 0 0;
  color: var(--card-ink);
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
  opacity: 0.72;
}

.beta__content {
  width: min(760px, 100%);
}

.beta__content p {
  width: min(540px, 100%);
  margin: 40px 0 0;
  font-size: clamp(1.05rem, 1.67vw, 1.5rem);
  line-height: 1.34;
}

.answers {
  padding: 104px 0 144px;
}

.answers__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 376px;
  align-items: start;
  gap: 32px;
  margin-bottom: 56px;
}

.answers__intro h2,
.answers__intro > p {
  margin: 0;
  font-size: clamp(2.35rem, 3.33vw, 3rem);
  line-height: 1;
}

.answers__intro h2 {
  grid-column: 2;
  grid-row: 1;
  justify-self: stretch;
  font-weight: 600;
  letter-spacing: 0;
  text-align: right;
}

.answers__intro h2 .answers-emoji {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.8em;
  vertical-align: 0.05em;
}

.answers__intro > p {
  grid-column: 1;
  grid-row: 1;
  max-width: 904px;
  font-weight: 400;
  letter-spacing: 0;
}

.answers__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
}

.answers__item {
  min-width: 0;
  padding: 30px;
  background: rgba(var(--ink-rgb), 0.045);
  border: 1px solid rgba(var(--ink-rgb), 0.14);
  border-radius: 20px;
  transition: background-color 500ms var(--ease), border-color 500ms var(--ease);
}

.answers dt {
  font-size: 1.35rem;
  font-weight: 650;
  line-height: 1.2;
}

.footer-disclaimer {
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.answers dd {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 450;
  line-height: 1.5;
  opacity: 0.76;
}

.answers dd a {
  color: inherit;
  font-weight: 700;
  text-underline-offset: 0.18em;
}

.hero-footer {
  display: grid;
  gap: 4px;
  padding: 0 24px 48px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
}

.footer-name,
.footer-made,
.footer-disclaimer {
  color: rgba(var(--ink-rgb), 0.62);
}

.footer-disclaimer {
  width: min(540px, 100%);
  margin: 12px auto 0;
  font-size: 0.75rem;
  font-weight: 450;
  line-height: 1.45;
}

.credits-heart {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin: -16px -14px;
  padding: 0;
  place-items: center;
  vertical-align: middle;
  color: var(--accent);
  font-size: 1.06em;
  line-height: 1;
  text-decoration: none;
  transition: color 500ms var(--ease), transform 180ms var(--ease);
}

.credits-heart:hover { transform: scale(1.25); }

.credits-heart:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 50%;
}

:root[data-mode="light"] .credits-heart {
  color: var(--ink);
}

@media (max-width: 1050px) {
  .hero h1,
  .beta h2 {
    font-size: clamp(4.25rem, 9vw, 5.75rem);
  }

  .hero-phone {
    left: -30px;
    width: clamp(280px, 34vw, 350px);
    height: 560px;
  }

  .beta-phone {
    right: -50px;
    width: clamp(280px, 34vw, 350px);
    height: 0;
  }

  .beta-phone__float {
    height: 560px;
  }

  .why__intro {
    grid-template-columns: minmax(220px, 30%) 1fr;
    gap: 24px;
  }

  .answers__intro {
    grid-template-columns: 1fr minmax(220px, 32%);
    gap: 24px;
  }

}

@media (min-width: 761px) and (max-width: 1099px) {
  .why__intro {
    margin-bottom: 56px;
  }

  .feature-grid {
    grid-auto-columns: min(44vw, 340px);
    grid-template-columns: none;
    grid-auto-flow: column;
    gap: 18px;
    margin: -56px -24px -72px;
    padding: 56px 48px 98px 24px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-left: 24px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .feature-grid::-webkit-scrollbar {
    display: none;
  }

  .feature-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 74px;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 74px;
    width: min(100% - 32px, 1280px);
    min-height: 0;
  }

  .header-controls {
    position: absolute;
    z-index: 40;
    top: calc(100% - 2px);
    right: 0;
    display: flex;
    visibility: hidden;
    width: min(320px, calc(100vw - 32px));
    padding: 14px;
    flex-direction: column;
    gap: 12px;
    color: var(--ink);
    background: rgb(var(--page-rgb));
    border: 1px solid rgba(var(--ink-rgb), 0.2);
    border-radius: 18px;
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -8px, 0) scale(0.98);
    transform-origin: top right;
    transition:
      visibility 0s linear 180ms,
      opacity 150ms ease-out,
      transform 220ms var(--ease),
      color 500ms var(--ease),
      background-color 500ms var(--ease),
      border-color 500ms var(--ease);
  }

  .mobile-menu-is-open .header-controls {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
    transition-delay: 0s;
  }

  .header-control-section {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .header-control-section:last-child {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-control-label {
    display: block;
    flex: 0 0 auto;
    font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.04em;
    line-height: 1;
    opacity: 0.66;
    text-transform: uppercase;
  }

  .language-switch {
    justify-self: auto;
    margin-left: 0;
  }

  .language-switch::before {
    width: 44px;
    height: 44px;
  }

  :root[data-language="de"] .language-switch::before {
    transform: translateX(44px);
  }

  .language-button {
    width: 44px;
    height: 44px;
  }

  .appearance-controls {
    width: 100%;
    justify-self: auto;
    justify-content: space-between;
    margin-right: 0;
  }

  .theme-dot,
  .mode-button {
    width: 44px;
    height: 44px;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: 76px;
    height: auto;
  }

  .mobile-menu-toggle {
    display: grid;
    grid-column: 3;
    grid-row: 1;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    justify-self: end;
    color: var(--ink);
    background: rgba(var(--ink-rgb), 0.055);
    border: 1px solid rgba(var(--ink-rgb), 0.2);
    border-radius: 50%;
    transition:
      color 500ms var(--ease),
      background-color 180ms var(--ease),
      border-color 500ms var(--ease),
      transform 220ms var(--ease);
  }

  .mobile-menu-toggle:hover {
    background: rgba(var(--ink-rgb), 0.1);
  }

  .mobile-menu-toggle:active {
    transform: scale(0.94);
  }

  .mobile-menu-toggle svg {
    width: 22px;
    height: 22px;
    overflow: visible;
    fill: var(--page);
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.5;
    transition: transform 300ms var(--ease);
  }

  .mobile-menu-is-open .mobile-menu-toggle svg {
    transform: rotate(90deg);
  }

  .hero,
  .beta,
  .why,
  .answers {
    width: min(100% - 32px, 1280px);
  }

  .hero,
  .beta {
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding: 72px 0 96px;
  }

  .hero {
    padding-top: clamp(448px, 140vw, 570px);
  }

  .hero-phone {
    --phone-base-rotate-y: 0deg;
    --phone-base-rotate-z: -7deg;
    --phone-base-position-x: -50%;
    --phone-base-position-y: 0px;
    top: clamp(230px, 72vw, 300px);
    left: 50%;
    width: min(96vw, 380px);
    height: min(540px, 135vw);
  }

  .hero-phone__float {
    transform: perspective(900px) translate3d(var(--phone-drift-x, 0), calc(-50% + var(--phone-drift-y, 0px)), 0) rotateX(var(--phone-rotate-x, 0deg)) rotateY(calc(var(--phone-base-rotate-y) + var(--phone-rotate-y, 0deg))) rotateZ(var(--phone-base-rotate-z));
  }

  .beta-phone {
    top: clamp(225px, 70vw, 290px);
    right: auto;
    left: 50%;
    width: min(92vw, 370px);
    height: 0;
    translate: -50% 0;
  }

  .beta-phone__float {
    height: min(520px, 132vw);
    transform: perspective(900px) translate3d(var(--phone-drift-x, 0), calc(-50% + var(--phone-drift-y, 0px)), 0) rotateX(var(--phone-rotate-x, 0deg)) rotateY(var(--phone-rotate-y, 0deg)) rotateZ(7deg);
  }

  .hero h1,
  .beta h2 {
    font-size: clamp(3.25rem, 16vw, 5.2rem);
    line-height: 0.94;
  }

  :root[data-language="de"] .hero h1 {
    font-size: clamp(3.05rem, 13.8vw, 3.55rem);
  }

  .hero__content {
    transform: none;
  }

  .trust-line,
  .beta__content p {
    margin-top: 28px;
    font-size: 1.05rem;
  }

  .cta {
    margin-top: 28px;
  }

  .why {
    padding: 72px 0 96px;
  }

  .answers {
    padding: 72px 0 104px;
  }

  .why__intro {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }

  .why__intro h2 {
    font-size: clamp(2.3rem, 11vw, 3.3rem);
    line-height: 1.02;
  }

  .why__intro p {
    font-size: clamp(1.9rem, 8.2vw, 2.5rem);
    line-height: 1.04;
  }

  .answers__intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 32px;
    margin-bottom: 40px;
  }

  .answers__intro h2 {
    grid-column: 1;
    grid-row: 1;
    font-size: clamp(2.3rem, 11vw, 3.3rem);
    line-height: 1.02;
    text-align: left;
  }

  .answers__intro > p {
    grid-column: 1;
    grid-row: 2;
    max-width: none;
    font-size: clamp(1.9rem, 8.2vw, 2.5rem);
    line-height: 1.04;
  }

  .answers__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .answers__item {
    padding: 24px;
  }

  .feature-grid {
    grid-auto-columns: min(82vw, 340px);
    grid-template-columns: none;
    grid-auto-flow: column;
    gap: 16px;
    margin: -56px -16px -72px -28px;
    padding: 56px 44px 98px 28px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-left: 28px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .feature-grid::-webkit-scrollbar {
    display: none;
  }

  .feature-card {
    scroll-snap-align: start;
  }

  .feature-card__copy {
    padding: 0 28px 28px;
  }

  .beta {
    padding-top: clamp(455px, 138vw, 560px);
  }
}

@media (max-width: 430px) {
  .hero h1,
  .beta h2 {
    font-size: clamp(3.05rem, 15vw, 4rem);
  }

  .feature-grid {
    grid-auto-columns: 84vw;
  }
}

@media (max-width: 350px) {
  .header-controls {
    padding: 12px;
  }
}

.motion-ready .reveal {
  --reveal-x: 0px;
  --reveal-y: 30px;
  --reveal-scale: 0.985;
  --reveal-rotate: 0deg;
  opacity: 0;
  filter: blur(7px);
  backface-visibility: hidden;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale)) rotate(var(--reveal-rotate));
  transition:
    opacity 650ms var(--ease) var(--reveal-delay),
    filter 720ms var(--ease) var(--reveal-delay),
    transform 850ms var(--ease) var(--reveal-delay);
}

.motion-ready .reveal.reveal--armed {
  will-change: opacity, filter, transform;
}

@media (prefers-reduced-motion: no-preference) {
  :root.language-view-transition {
    view-transition-name: none;
  }

  ::view-transition-group(*) {
    animation-duration: 240ms;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  }

  ::view-transition-image-pair(*) {
    isolation: auto;
  }

  ::view-transition-old(*) {
    animation: language-copy-out 150ms ease-out both;
    mix-blend-mode: normal;
  }

  ::view-transition-new(*) {
    animation: language-copy-in 210ms 30ms ease-out both;
    mix-blend-mode: normal;
  }
}

@keyframes language-copy-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes language-copy-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.language-copy-fallback {
  transition: opacity 90ms ease-out !important;
}

.language-copy-fallback.language-copy-fallback--enter {
  transition-duration: 150ms !important;
}

.language-copy-fallback.is-language-hidden {
  opacity: 0 !important;
}

.motion-boot .brand,
.motion-boot .language-button,
.motion-boot .mobile-menu-toggle,
.motion-boot .theme-dot,
.motion-boot .mode-button,
.motion-boot .hero .headline-line,
.motion-boot .hero .trust-line,
.motion-boot .hero .cta {
  opacity: 0;
}

.phone-motion-boot .hero-phone {
  opacity: 0;
  filter: none;
  transform: translate3d(calc(-100% - 18vw), 0, 0) scale(0.94) rotate(-7deg);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
}

.motion-ready .reveal--drop {
  --reveal-y: -22px;
}

.motion-ready .reveal--left {
  --reveal-x: -38px;
  --reveal-y: 0px;
}

.motion-ready .reveal--right {
  --reveal-x: 38px;
  --reveal-y: 0px;
}

.motion-ready .hero-phone.reveal--phone {
  --reveal-x: calc(-100% - 18vw);
  --reveal-y: 0px;
  --reveal-scale: 0.94;
  --reveal-rotate: -7deg;
  filter: none;
  transition:
    opacity 320ms var(--ease) var(--reveal-delay),
    transform 1150ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay);
}

.motion-ready .beta-phone.reveal--phone-right {
  --reveal-x: calc(100% + 18vw);
  --reveal-y: 0px;
  --reveal-scale: 0.94;
  --reveal-rotate: 7deg;
  filter: none;
  transition:
    opacity 320ms var(--ease) var(--reveal-delay),
    transform 1150ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay);
}

.motion-ready .reveal--pop {
  --reveal-y: 10px;
  --reveal-scale: 0.78;
  filter: blur(4px);
}

.motion-ready .theme-dot.reveal--pop,
.motion-ready .mode-button.reveal--pop {
  filter: none;
}

.motion-ready .reveal--line {
  --reveal-y: 0.72em;
  --reveal-scale: 1;
  filter: blur(5px);
}

.motion-ready .feature-card.reveal--card {
  --reveal-y: 48px;
  --reveal-scale: 0.94;
  --reveal-rotate: -1.6deg;
}

.motion-ready .feature-card:nth-child(2).reveal--card {
  --reveal-rotate: 1.25deg;
}

.motion-ready .feature-card:nth-child(3).reveal--card {
  --reveal-rotate: -0.8deg;
}

.motion-ready .why__intro h2.reveal--left.is-visible .why-emoji {
  display: inline-block;
  animation: sun-arrive 800ms 180ms both var(--ease);
}

.motion-ready .headline-line.reveal--line.is-visible .headline-heart,
.motion-ready .beta-line.reveal--line.is-visible .headline-heart {
  animation: heart-arrive 760ms calc(var(--reveal-delay) + 260ms) both cubic-bezier(0.22, 1.35, 0.36, 1);
}

@keyframes sun-arrive {
  0% { opacity: 0; transform: rotate(-70deg) scale(0.45); }
  65% { opacity: 1; transform: rotate(14deg) scale(1.13); }
  100% { opacity: 1; transform: rotate(0) scale(1); }
}

@keyframes heart-arrive {
  0% { opacity: 0; transform: translate(var(--drag-x, 0), calc(var(--drag-y, 0) + 0.34em)) rotate(-12deg) scale(0.3); }
  65% { opacity: 1; transform: translate(var(--drag-x, 0), var(--drag-y, 0)) rotate(6deg) scale(1.14); }
  100% { opacity: 1; transform: translate(var(--drag-x, 0), var(--drag-y, 0)) rotate(0) scale(1); }
}

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

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