@font-face {
  font-family: "Nunito";
  src: url("/assets/fonts/nunito/nunito-v32-latin-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("/assets/fonts/nunito/nunito-v32-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("/assets/fonts/nunito/nunito-v32-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("/assets/fonts/nunito/nunito-v32-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("/assets/fonts/nunito/nunito-v32-latin-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --blue: #6681d3;
  --orange: #ffcd8f;
  --ink: #0f172a;
  --ink-soft: #3a4767;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.2);
  --glass-strong: rgba(255, 255, 255, 0.35);
  --shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
  --shadow-soft: 0 12px 32px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

html {
  overflow-y: auto;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: var(--ink);
  background: #f6f7fb;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: visible;
  overscroll-behavior-y: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.ambient {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
  opacity: 0.75;
}

.orb--blue {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(102, 129, 211, 0.6), transparent 70%);
  top: -80px;
  left: -120px;
  animation: float 10s ease-in-out infinite;
}

.orb--orange {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 205, 143, 0.7), transparent 70%);
  bottom: -120px;
  right: -80px;
  animation: float 12s ease-in-out infinite 1s;
}

.orb--mist {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.65), transparent 70%);
  top: 40vh;
  left: 55vw;
  animation: float 14s ease-in-out infinite 0.5s;
}

.hero {
  min-height: 100vh;
  padding: 120px clamp(20px, 6vw, 96px) 80px;
  background: linear-gradient(135deg, rgba(102, 129, 211, 0.92), rgba(255, 205, 143, 0.92));
  position: relative;
  overflow: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #f8fafc;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 14px clamp(20px, 6vw, 96px);
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}


.nav-toggle {
  display: none;
  width: 36px;
  height: 32px;
  border-radius: 0;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #ffffff;
  display: block;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav--dark .nav-toggle span {
  background: #0f172a;
}

/* keep hamburger lines visible, no X morph */

.nav-cta {
  display: none;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.5px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(15, 23, 42, 0.35));
}

.nav-links {
  display: flex;
  gap: 20px;
  font-weight: 600;
}

.nav-menu-logo {
  display: none;
}

.nav-menu-logo-link {
  display: none;
}

.nav-links a {
  opacity: 0.9;
  transition: opacity 0.25s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lang-switch--footer {
  order: 2;
  padding-left: 0;
  border-left: none;
}

.lang-switch .lang-link {
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.lang-switch .lang-link.is-active {
  opacity: 1;
  text-decoration: underline;
}

.lang-switch .lang-sep {
  opacity: 0.5;
}

.nav--dark {
  color: var(--ink);
}

.nav--dark .nav-links a {
  opacity: 0.8;
}

.nav--dark .lang-switch {
  border-left-color: rgba(15, 23, 42, 0.18);
}

.nav--hidden {
  transform: translateY(-120%);
  opacity: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 64px;
  align-items: center;
  margin-top: 60px;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

.scroll-arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(255, 255, 255, 0.95);
  border-bottom: 2px solid rgba(255, 255, 255, 0.95);
  transform: rotate(45deg);
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

.hero-content {
  color: #f8fafc;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  font-weight: 700;
  opacity: 0.75;
}

.hero-title {
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  margin: 18px 0 12px;
  line-height: 1.05;
  text-align: center;
}

.hero-title-line {
  display: block;
  font-style: italic;
  margin-bottom: 10px;
}

.hero-title-line:last-child {
  margin-bottom: 0;
}

.hero-title-line--light {
  font-weight: 300;
}

.hero-title-line--strong {
  font-weight: 800;
  position: relative;
}

.hero-title-line--strong::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  --underline-width: 85%;
  width: 0%;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(102, 129, 211, 0.9),
    rgba(255, 205, 143, 0.9),
    rgba(102, 129, 211, 0.9)
  );
  background-size: 200% 100%;
  background-position: 0% 50%;
  border-radius: 999px;
  z-index: -1;
  animation: underline 1.8s ease forwards, underline-flow 6s linear infinite 1.8s;
}

.subhead {
  font-size: 1.2rem;
  margin: 0 0 28px;
  max-width: 480px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.store-section {
  padding: 60px clamp(20px, 6vw, 96px) 90px;
  background: #f6f7fb;
}

.hero-store-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  color: #f8fafc;
  text-align: center;
}

.store-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  width: fit-content;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.store-badge-wrap {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  transition: transform 0.2s ease;
}

.store-badge-wrap:hover {
  transform: translateY(-2px);
}

.store-badge {
  height: 56px;
  width: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

.cta {
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.22);
}

.cta--small {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.cta-note {
  font-weight: 600;
  opacity: 0.9;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(32px, 4vw, 48px);
  justify-content: center;
}

.hero-pill {
  padding: clamp(8px, 1.4vw, 10px) clamp(14px, 2vw, 18px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #f8fafc;
  font-weight: 600;
  font-size: clamp(0.88rem, 1.2vw, 0.98rem);
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.device-frame {
  position: relative;
  width: min(420px, 92vw);
  max-width: 100%;
  aspect-ratio: 1242 / 1945;
  --screen-top: 1.8%;
  --screen-right: 16.4%;
  --screen-bottom: 4%;
  --screen-left: 15%;
  --screen-radius: 32px;
}

.device-frame__screen {
  position: absolute;
  top: var(--screen-top);
  right: var(--screen-right);
  bottom: var(--screen-bottom);
  left: var(--screen-left);
  border-radius: var(--screen-radius);
  overflow: hidden;
  z-index: 1;
  background: #000;
}

.device-frame .hero-screenshot {
  animation: none;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.device-frame__overlay {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  display: block;
  pointer-events: none;
}

.hero-screenshot {
  width: min(420px, 92vw);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 35px;
  box-shadow: none;
  border: none;
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.9s ease forwards;
}

.hero-visual.reveal {
  animation: none !important;
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(1) {
  animation-delay: 0.05s;
}

.reveal:nth-child(2) {
  animation-delay: 0.15s;
}

.reveal:nth-child(3) {
  animation-delay: 0.25s;
}

.reveal:nth-child(4) {
  animation-delay: 0.35s;
}

.reveal:nth-child(5) {
  animation-delay: 0.45s;
}

.imprint-page .reveal {
  animation-delay: 0s !important;
}

main {
  background: #f6f7fb;
}

.imprint-page main {
  background: #ffffff;
}

section {
  padding: 90px clamp(20px, 6vw, 96px);
}

.section-header {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 12px 0 12px;
}

.section-header p {
  color: var(--ink-soft);
  margin: 0;
}

.features {
  background: #ffffff;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.5vw, 32px);
  max-width: none;
  margin: 0;
}

.features .feature-grid .step-card.reveal {
  opacity: 0;
  animation: none;
}

.features .feature-grid .step-card.reveal:nth-child(1),
.features .feature-grid .step-card.reveal:nth-child(3) {
  transform: translateX(-56px);
}

.features .feature-grid .step-card.reveal:nth-child(2) {
  transform: translateX(56px);
}

.features .feature-grid .step-card.reveal.is-visible:nth-child(1),
.features .feature-grid .step-card.reveal.is-visible:nth-child(3) {
  animation: fly-in-left 0.9s ease forwards;
}

.features .feature-grid .step-card.reveal.is-visible:nth-child(2) {
  animation: fly-in-right 0.9s ease forwards;
}

.step-card {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  position: relative;
  transition: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3.5vw, 52px);
}

.step-card + .step-card {
  margin-top: 0;
}

.step-card:nth-child(even) {
  flex-direction: row-reverse;
}

.step-card::after {
  content: none;
}

.step-card:hover {
  transform: none;
  box-shadow: none;
}

.step-head {
  display: grid;
  gap: 10px;
}

.step-content {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 14px;
  max-width: 580px;
  align-self: center;
}

.step-media {
  width: clamp(280px, 34vw, 520px);
  height: auto;
  border-radius: 0;
  background: transparent;
  border: none;
  display: grid;
  place-items: center;
  box-shadow: none;
  flex: 0 0 auto;
  align-self: center;
}

.step-visual {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

.step-number {
  display: inline-block;
  font-size: 2.6rem;
  font-weight: 500;
  color: #8b93a7;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 10px;
}

.step-number::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 64px;
  height: 2px;
  background: #8b93a7;
  border-radius: 999px;
  opacity: 0.6;
}

.step-card h3 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  text-wrap: balance;
}

.step-card p {
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.8;
  font-size: 1.06rem;
}

.step-card p:last-child {
  margin-bottom: 0;
}

.feature-showcase {
  position: relative;
  background: linear-gradient(180deg, #f4f8ff 0%, #e9efff 60%, #edf2ff 100%);
  padding-top: clamp(92px, 10vw, 128px);
  padding-bottom: clamp(122px, 13vw, 172px);
}

.feature-showcase-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1fr 1.05fr;
  column-gap: clamp(24px, 3vw, 38px);
  row-gap: clamp(14px, 2vw, 24px);
  align-items: stretch;
  padding: clamp(18px, 2vw, 24px) clamp(18px, 2vw, 24px) clamp(44px, 4vw, 58px);
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.feature-column {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  padding: clamp(8px, 1vw, 12px);
  min-width: 0;
}

.feature-column--list {
  grid-column: 1;
  grid-row: 1;
}

.feature-column--preview {
  grid-column: 2;
  grid-row: 1;
  padding-right: clamp(12px, 1.8vw, 24px);
}

.feature-column--details {
  grid-column: 3;
  grid-row: 1;
  padding-left: clamp(16px, 2.2vw, 30px);
}

.feature-column-title {
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.feature-list {
  display: grid;
  gap: 10px;
}

.feature-list-item {
  width: 100%;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 16px;
  padding: 13px 14px;
  text-align: left;
  display: grid;
  gap: 4px;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-list-item:hover {
  background: rgba(102, 129, 211, 0.08);
  border-color: rgba(102, 129, 211, 0.2);
}

.feature-list-item.is-active {
  background: rgba(102, 129, 211, 0.15);
  border-color: rgba(102, 129, 211, 0.45);
  box-shadow: 0 10px 24px rgba(102, 129, 211, 0.2);
}

.feature-list-item:focus-visible {
  outline: 3px solid rgba(102, 129, 211, 0.4);
  outline-offset: 2px;
}

.feature-list-index {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.62);
}

.feature-list-label {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.38;
}

.feature-preview-stage {
  height: 100%;
  overflow: hidden;
}

.feature-preview-item {
  display: none;
  height: 100%;
}

.feature-preview-item.is-active {
  display: block;
}

.feature-screenshot {
  border-radius: 24px;
  aspect-ratio: 1242 / 1945;
  min-height: 420px;
  height: 100%;
  overflow: hidden;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.feature-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.feature-detail-item {
  display: none;
  gap: 14px;
}

.feature-detail-item.is-active {
  display: grid;
}

.feature-detail-item h4 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.2;
  text-wrap: balance;
}

.feature-detail-item p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 1.02rem;
}

.founder {
  position: relative;
  background: linear-gradient(180deg, #fffdf8 0%, #f7f9ff 38%, #eef3ff 100%);
  padding-top: clamp(118px, 12vw, 158px);
  padding-bottom: clamp(96px, 11vw, 132px);
}

.founder-panel {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 230px) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: start;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.founder-media {
  padding: 0;
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 12px;
}

.founder-badge {
  justify-self: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(102, 129, 211, 0.16);
  border: 1px solid rgba(102, 129, 211, 0.34);
  color: #27385b;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.founder-linkedin {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
  flex-shrink: 0;
}

.founder-linkedin:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.founder-linkedin:focus-visible {
  outline: 2px solid #6681d3;
  outline-offset: 2px;
}

.founder-linkedin img {
  width: 18px;
  height: auto;
  display: block;
}

.founder-contact-links {
  display: inline-grid;
  justify-items: start;
  gap: 8px;
  margin-top: 6px;
}

.founder-photo {
  width: min(100%, 220px);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.16);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
  display: block;
}

.founder-content {
  padding: 0 0 0 clamp(16px, 2.3vw, 26px);
  display: grid;
  gap: 14px;
  align-content: start;
  border-left: 2px solid rgba(102, 129, 211, 0.24);
}

.founder-kicker {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: #6681d3;
}

.founder-content h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.7vw, 2.25rem);
  line-height: 1.1;
}

.founder-role {
  margin: 2px 0 0;
  font-size: 1rem;
  font-weight: 800;
  color: #203252;
}

.founder-content p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.founder-content a {
  color: #27385b;
  font-weight: 700;
}

.about {
  position: relative;
}

.about-inner {
  display: grid;
  gap: 18px;
  padding: 36px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 32px;
  border: 1px solid rgba(102, 129, 211, 0.2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.about p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.mission-tagline {
  color: #000;
}

.mission-divider {
  --underline-width: min(500px, 82vw);
  width: 0;
  height: 4px;
  margin: -15px auto 6px;
  background: linear-gradient(
    90deg,
    rgba(102, 129, 211, 0.1),
    rgba(102, 129, 211, 0.4),
    rgba(255, 205, 143, 0.3)
  );
  background-size: 200% 100%;
  background-position: 0% 50%;
  border-radius: 999px;
  animation: none;
}

.mission-divider.is-visible {
  animation: underline 1.8s ease forwards, underline-flow 6s linear infinite 1.8s;
}

.supported {
  background: linear-gradient(180deg, #f6f7fb, rgba(255, 205, 143, 0.2));
}

.supported .section-header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.logo-carousel {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  --logo-fade-edge: clamp(24px, 5vw, 80px);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 var(--logo-fade-edge),
    #000 calc(100% - var(--logo-fade-edge)),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 var(--logo-fade-edge),
    #000 calc(100% - var(--logo-fade-edge)),
    transparent 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.logo-track {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 18px;
  min-width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px dashed rgba(15, 23, 42, 0.15);
  text-align: center;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.45);
  letter-spacing: 0.04em;
  flex: 0 0 160px;
}

.logo-tile img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.logo-track .logo-tile.reveal {
  opacity: 1;
  transform: none;
  animation: none;
}

@media (min-width: 1025px) {
  .logo-carousel {
    max-width: 1600px;
  }

  .logo-track {
    gap: 36px;
  }

  .logo-tile {
    min-height: 184px;
    flex: 0 0 320px;
    padding: 28px;
  }

  .logo-tile img {
    max-height: 112px;
  }
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px clamp(20px, 6vw, 96px) 32px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  background: #f6f7fb;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-copy {
  order: 1;
  flex: 1;
}

.footer-note {
  flex-basis: 100%;
  align-items: center;
  order: 4;
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.5;
  color: rgba(15, 23, 42, 0.55);
}

.footer-note--center {
  text-align: center;
}

.imprint-page {
  background: #ffffff;
  color: #0f172a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.imprint-language-note {
  margin: 0;
  padding: 10px clamp(20px, 6vw, 96px);
  font-size: 0.9rem;
  line-height: 1.4;
  color: #334155;
  text-align: center;
  background: rgba(102, 129, 211, 0.1);
  border-bottom: 1px solid rgba(102, 129, 211, 0.25);
}

.imprint-header {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  padding: 24px clamp(20px, 6vw, 96px);
}

.imprint-header-inner {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
}

.imprint-logo {
  height: 46px;
  width: auto;
  display: block;
}

.imprint-title {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
}

.imprint-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #6681d3;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
}

.imprint-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 22px clamp(20px, 6vw, 96px) 60px;
  display: grid;
  gap: 0;
  line-height: 1.7;
  flex: 1;
  width: 100%;
}

.imprint-lead {
  margin: 0 0 20px;
  font-size: 1rem;
  color: #334155;
}

.imprint-section h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}

.imprint-section--tight p {
  margin-top: 0;
}

.imprint-page section,
.imprint-section {
  padding: 0;
  margin: 0;
}

.imprint-section {
  display: grid;
  gap: 4px;
  margin-top: 20px;
}

.imprint-section:first-of-type {
  margin-top: 0;
}

.imprint-section.imprint-section--spaced {
  margin-top: 36px;
}

.imprint-section.imprint-section--divider {
  margin-top: 0;
  position: relative;
}

.imprint-section.imprint-section--divider::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: rgba(15, 23, 42, 0.08);
  margin: 18px 0;
}

.imprint-section.imprint-section--divider.imprint-section--spaced {
  margin-top: 0;
}

.imprint-section.imprint-section--divider.imprint-section--spaced::before {
  margin: 28px 0;
}

.imprint-section p {
  margin: 0;
  color: #334155;
  font-size: 0.98rem;
}

.revocation-page .imprint-lead {
  text-align: left;
  max-width: 640px;
  margin: 0 0 6px;
}

.revocation-page .imprint-container {
  display: block;
}

.revocation-page .imprint-lead::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 520px;
  height: 1px;
  background: rgba(15, 23, 42, 0.08);
  margin: 12px 0 0;
}

.revocation-page .revocation-actions {
  display: grid;
  gap: 2px;
  justify-items: start;
  margin: 8px 0 0;
  max-width: none;
  width: 100%;
}

.revocation-page .revocation-button {
  width: auto;
  padding: 0;
  background: transparent;
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 0;
  box-shadow: none;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.revocation-page .revocation-button:hover {
  color: #6681d3;
}

.revocation-page .revocation-icon {
  margin-right: 6px;
}

.data-protection-page .policy-stack {
  display: grid;
  gap: 10px;
}

.data-protection-page .policy-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: #334155;
}

.data-protection-page .policy-subtitle {
  margin: 12px 0 4px;
  font-weight: 700;
  color: #0f172a;
}

.data-protection-page .policy-key {
  font-weight: 700;
  color: #0f172a;
}

.data-protection-page .policy-note {
  font-weight: 700;
  color: #0f172a;
}

.data-protection-page .policy-small {
  color: #64748b;
  font-size: 0.95rem;
}

.data-protection-page .policy-purpose {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.data-protection-page .policy-purpose:last-child {
  border-bottom: none;
}

.data-protection-page .policy-purpose h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.imprint-list {
  display: grid;
  grid-template-columns: minmax(180px, 220px) 1fr;
  gap: 8px 24px;
  margin: 0;
}

.imprint-list dt {
  font-weight: 700;
  color: #0f172a;
}

.imprint-list dd {
  margin: 0;
  color: #334155;
}

.imprint-list a,
.imprint-section a {
  color: #0f172a;
  text-decoration: underline;
}

.imprint-footer {
  margin-top: auto;
  padding: 24px clamp(20px, 6vw, 96px) 36px;
  color: #64748b;
  font-size: 0.85rem;
  text-align: center;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
}

@media (max-width: 640px) {
  .imprint-language-note {
    padding: 10px 16px;
    font-size: 0.84rem;
  }

  .imprint-header {
    padding: 16px;
  }

  .imprint-header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .imprint-logo {
    height: 38px;
  }

  .imprint-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .imprint-button {
    width: 100%;
    justify-content: center;
  }

  .imprint-container {
    padding: 18px 16px 48px;
  }

  .imprint-lead {
    font-size: 0.95rem;
  }

  .imprint-list {
    grid-template-columns: 1fr;
    gap: 6px 0;
  }

  .imprint-list dt {
    margin-top: 10px;
  }

  .imprint-list dt:first-child {
    margin-top: 0;
  }

  .imprint-list dd {
    margin-bottom: 6px;
  }

  .imprint-section {
    gap: 6px;
    margin-top: 18px;
  }

  .imprint-section--divider {
    padding-top: 12px;
  }

  .imprint-section h2 {
    font-size: 1rem;
  }

  .imprint-section p {
    font-size: 0.95rem;
  }

  .revocation-page .revocation-actions {
    width: 100%;
    margin-top: 14px;
    max-width: 100%;
    gap: 2px;
  }

  .revocation-page .revocation-button {
    width: auto;
    font-size: 0.95rem;
  }

  .data-protection-page .policy-stack {
    gap: 8px;
  }

  .data-protection-page .policy-list {
    gap: 4px;
  }

  .data-protection-page .policy-purpose {
    padding: 10px 0;
  }

}

.notfound-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: linear-gradient(135deg, rgba(102, 129, 211, 0.2), rgba(255, 205, 143, 0.3));
}

.notfound-card {
  --card-radius: 40px;
  width: min(720px, 100%);
  background: transparent;
  border: none;
  text-align: center;
}

.notfound-card-inner {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.2);
  padding: clamp(28px, 4vw, 48px);
}

.notfound-logo {
  height: 48px;
  width: auto;
  display: block;
  margin: 0 auto 16px;
}

.notfound-illustration {
  width: min(280px, 72vw);
  height: auto;
  display: block;
  margin: 0 auto 12px;
}

.notfound-card h1 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: #0f172a;
}

.notfound-card p {
  margin: 0 0 24px;
  color: #3a4767;
  font-size: 0.95rem;
  line-height: 1.6;
}

.notfound-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.notfound-link {
  font-weight: 700;
  color: #0f172a;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .notfound-page {
    padding: 20px;
  }

  .notfound-card {
    --card-radius: 24px;
    width: min(420px, 92%);
  }

  .notfound-actions {
    flex-direction: column;
  }

  .notfound-actions .cta {
    width: 100%;
    justify-content: center;
  }
}

.footer-links {
  display: flex;
  gap: 18px;
  order: 3;
  flex: 1;
  justify-content: flex-end;
}

@media (max-width: 640px) {
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-copy {
    order: 1;
    flex: none;
  }

  .lang-switch--footer {
    order: 2;
  }

  .footer-links {
    order: 3;
    flex: none;
    justify-content: center;
  }

  .footer-note {
    text-align: center;
  }
}

@media (max-width: 860px) {
  .device-frame {
    --screen-top: 1.2%;
  }

  .feature-showcase {
    padding-top: 86px;
    padding-bottom: 112px;
  }

  .founder {
    padding-top: 96px;
    padding-bottom: 84px;
  }

  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    z-index: 90;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: 0;
    margin-right: 8px;
    order: -1;
    position: absolute;
    left: auto;
    right: 20px;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.42);
    justify-content: center;
    align-items: center;
    gap: 5px;
    box-shadow: none;
    z-index: 95;
  }

  .nav-toggle span {
    width: 18px;
  }

  .nav-cta-desktop {
    display: none;
  }

  .logo {
    margin-left: 0;
    order: 0;
  }

  .nav-links {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 64px 16px 16px;
    background: #ffffff;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-top: none;
    color: var(--ink);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transform-origin: top center;
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0s linear 0.16s;
    z-index: 55;
    width: auto;
    max-width: none;
    margin: 0;
    overflow: hidden;
  }

  .nav-menu-logo {
    display: block;
    width: min(62vw, 210px);
    height: auto;
    margin: 0 auto 16px;
  }

  .nav-menu-logo-link {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 0;
    padding: 0;
    margin: 0 0 12px;
    border: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  .nav--menu-open .nav-toggle {
    background: rgba(15, 23, 42, 0.08);
    border-color: rgba(15, 23, 42, 0.28);
  }

  .nav--menu-open .nav-toggle span {
    background: #0f172a;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0s linear 0s;
  }

  .nav-links a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 16px;
    margin: 0 0 10px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
    color: #0f172a;
    font-weight: 600;
    letter-spacing: 0.01em;
    opacity: 1;
    transform: none;
    transition: background 0.16s ease, color 0.16s ease;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: #f8fafc;
    color: #1f376d;
    outline: none;
  }

  .nav-links a.nav-menu-logo-link,
  .nav-links a.nav-menu-logo-link:hover,
  .nav-links a.nav-menu-logo-link:focus-visible {
    min-height: 0;
    padding: 0;
    margin: 0 0 12px;
    border: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    color: inherit;
  }

  .nav-cta {
    width: 100%;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border-radius: 12px;
    box-shadow: none;
    opacity: 1;
    transform: none;
    transition: filter 0.16s ease;
  }

  .nav-links a.nav-cta {
    background: var(--blue);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-soft);
  }

  .nav-links a.nav-cta:hover,
  .nav-links a.nav-cta:focus-visible {
    background: var(--blue);
    color: var(--white);
    filter: brightness(1.05);
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero-visual {
    order: -1;
  }

  .hero {
    padding-top: 150px;
  }

  .feature-showcase-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .feature-column--list,
  .feature-column--preview,
  .feature-column--details {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-column--preview,
  .feature-column--details {
    padding-left: 8px;
    padding-right: 8px;
  }

  .feature-column {
    padding: 8px;
  }

  .feature-column--details {
    margin-top: 26px;
    padding-top: 0;
    border-top: none;
  }

  .feature-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 14px 14px 24px;
    margin: -14px -14px -12px;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

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

  .feature-list-item {
    flex: 0 0 min(72vw, 270px);
    padding: 10px 11px;
    scroll-snap-align: start;
  }

  .feature-list-item.is-active {
    position: relative;
    z-index: 1;
  }

  .feature-list-index {
    font-size: 0.76rem;
  }

  .feature-list-label {
    font-size: 0.88rem;
    line-height: 1.32;
  }

  .feature-screenshot {
    min-height: 260px;
  }

  .feature-preview-stage {
    touch-action: pan-y pinch-zoom;
    -webkit-user-select: none;
    user-select: none;
  }

  .feature-column--preview img {
    -webkit-user-drag: none;
    user-select: none;
  }

  .feature-detail-item h4 {
    font-size: 1.32rem;
  }

  .feature-detail-item p {
    font-size: 0.97rem;
    line-height: 1.66;
  }

  .founder-panel {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .founder-media {
    justify-items: center;
    gap: 10px;
  }

  .founder-badge {
    justify-self: center;
  }

  .founder-photo {
    width: min(48vw, 190px);
    border-radius: 50%;
  }

  .founder-content {
    border-left: 0;
    border-top: 1px solid rgba(102, 129, 211, 0.22);
    padding: 16px 0 0;
    gap: 12px;
  }

  .founder-content h2 {
    font-size: 1.7rem;
  }

  .founder-role {
    font-size: 0.95rem;
  }

}

@media (min-width: 861px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
  }

  .nav-cta-desktop {
    display: inline-flex;
  }
}

@media (max-width: 1350px) {
  .step-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-card:nth-child(even) {
    flex-direction: column;
  }

  .step-content {
    max-width: 100%;
    width: 100%;
  }

  .step-media {
    width: min(80vw, 520px);
  }

  .step-card + .step-card {
    margin-top: 0;
  }
}

@media (max-width: 1024px) and (min-width: 861px) {
  section {
    padding: 80px 32px;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  }

  .hero-title-line {
    margin-bottom: 8px;
  }

  .hero-pills {
    margin-top: 36px;
  }

  .hero-screenshot {
    width: min(100%, 360px);
  }

  .step-number {
    font-size: 2.2rem;
  }

  .step-card h3 {
    font-size: 1.4rem;
  }

  .step-card p {
    font-size: 1.02rem;
    line-height: 1.75;
  }

  .step-media {
    width: min(70vw, 440px);
  }

  .step-card + .step-card {
    margin-top: 0;
  }

  .feature-screenshot {
    min-height: 360px;
  }

  .founder-panel {
    grid-template-columns: minmax(160px, 200px) 1fr;
    gap: 24px;
  }

  .founder-photo {
    width: min(100%, 190px);
  }
}

@media (max-width: 640px) {
  section {
    padding: 70px 20px;
  }

  .feature-showcase {
    padding-top: 74px;
    padding-bottom: 98px;
  }

  .founder {
    padding-top: 82px;
    padding-bottom: 62px;
  }

  .hero {
    padding-top: 0;
  }

  .hero-grid {
    gap: 32px;
    margin-top: 0px;
  }

  .hero-title {
    font-size: clamp(2.1rem, 7vw, 2.8rem);
  }

  .hero-title-line {
    margin-bottom: 6px;
  }

  .hero-title-line--strong::after {
    --underline-width: 75%;
    bottom: -10px;
  }

  .mission-divider {
    --underline-width: min(260px, 62vw);
  }

  .hero-screenshot {
    width: min(100%, 320px);
  }

  .hero-pills {
    gap: 10px;
    margin-top: 28px;
  }

  .hero-pill {
    font-size: 0.82rem;
  }

  .step-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 28px 0;
  }

  .step-card + .step-card {
    margin-top: 0;
  }

  .step-content {
    max-width: 100%;
  }

  .step-card,
  .step-content,
  .step-head {
    text-align: center;
  }

  .step-head {
    justify-items: center;
  }

  .step-number::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .step-media {
    width: min(90vw, 340px);
    height: auto;
  }

  .step-visual {
    width: 100%;
    height: auto;
  }

  .step-number {
    font-size: 1.9rem;
  }

  .step-card h3 {
    font-size: 1.25rem;
  }

  .step-card p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .feature-showcase-grid {
    padding: 14px;
    gap: 14px;
  }

  .feature-column {
    padding: 6px;
  }

  .feature-column--details {
    margin-top: 44px;
    padding-top: 0;
  }

  .feature-column-title {
    margin-bottom: 10px;
    font-size: 0.92rem;
  }

  .feature-list-item {
    flex-basis: min(74vw, 240px);
    padding: 9px 10px;
  }

  .feature-list-index {
    font-size: 0.7rem;
  }

  .feature-list-label {
    font-size: 0.82rem;
    line-height: 1.28;
  }

  .feature-screenshot {
    min-height: 220px;
  }

  .feature-detail-item {
    gap: 10px;
  }

  .feature-detail-item h4 {
    font-size: 1.22rem;
  }

  .feature-detail-item p {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .founder-panel {
    gap: 14px;
  }

  .founder-media {
    gap: 9px;
  }

  .founder-photo {
    width: min(52vw, 160px);
  }

  .founder-content {
    padding-top: 14px;
    gap: 10px;
  }

  .founder-content h2 {
    font-size: 1.42rem;
  }

  .founder-role {
    font-size: 0.9rem;
  }

  .founder-content p {
    font-size: 0.93rem;
    line-height: 1.6;
  }

  .store-badge {
    height: 40px;
  }

  .scroll-indicator {
    bottom: 16px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 10px 16px;
  }

  .logo img {
    height: 48px;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.9rem;
  }

  .cta--small {
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-screenshot {
    width: min(100%, 300px);
  }

  .hero-pill {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .step-media {
    width: min(92vw, 300px);
  }

  .step-number {
    font-size: 1.8rem;
  }

  .step-card h3 {
    font-size: 1.18rem;
  }

  .step-card p {
    font-size: 0.95rem;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes scroll-bounce {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(6px) rotate(45deg);
  }
}

@keyframes underline {
  0% {
    width: 0%;
    opacity: 0;
  }
  100% {
    width: var(--underline-width);
    opacity: 1;
  }
}

@keyframes underline-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes rise {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fly-in-left {
  0% {
    opacity: 0;
    transform: translateX(-56px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fly-in-right {
  0% {
    opacity: 0;
    transform: translateX(56px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .orb,
  .hero-screenshot,
  .reveal {
    animation: none !important;
    transform: none !important;
  }

  .scroll-arrow {
    animation: none !important;
    transform: rotate(45deg) !important;
  }

  .hero-title-line--strong::after {
    animation: none !important;
    width: var(--underline-width);
  }

  .mission-divider {
    animation: none !important;
    width: var(--underline-width);
  }

  .nav {
    transition: none !important;
  }
}

/* Force light mode to prevent browser dark mode interference */
@media (prefers-color-scheme: dark) {
  body {
    background: #f6f7fb !important;
    color: #0f172a !important;
  }
  body.notfound-page {
    background: linear-gradient(135deg, rgba(102, 129, 211, 0.2), rgba(255, 205, 143, 0.3)) !important;
  }
  body.imprint-page {
    background: #ffffff !important;
  }
  body.imprint-page main {
    background: #ffffff !important;
  }
  html {
     color-scheme: light;
    background: #f6f7fb !important;
  }
}
