/* ============================================================
   Mindtricks – Landing Page
   Helles, ruhiges Layout: viel Weißraum, große leise Typografie,
   Farbe nur dort, wo sie etwas bedeutet.

   Wichtig fürs Produkt: Die Versuchsflächen (.demo__stage) bleiben
   neutralgrau bzw. tragen ihre eigenen Hintergründe im Canvas. Ein bunter
   oder heller Untergrund würde die Kontrast- und Helligkeitstäuschungen
   verfälschen – das ist keine gestalterische Laune, sondern Voraussetzung.
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-alt: #f5f5f7;
  --card: #ffffff;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(0, 0, 0, 0.08);
  --line-2: rgba(0, 0, 0, 0.16);

  --violet: #6E56CF;
  --violet-ink: #5B45B8;
  --violet-soft: #F1EDFF;
  --amber: #B26A00;
  --teal: #0F8A80;
  --green: #1A8F4C;
  --red: #C4342A;

  /* Neutralgrau der Versuchsflächen – bewusst unbunt. */
  --stage: #8a8a8a;

  --r: 22px;
  --r-sm: 14px;
  --container: 1120px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 24px 60px rgba(0, 0, 0, 0.10);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; overflow-x: clip; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 720px; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }

h1 {
  font-size: clamp(42px, 7.4vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 700;
}
.h1__line { display: block; }
.h1__line--accent { color: var(--violet); }
h2 {
  font-size: clamp(29px, 3.9vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
}
h3 { font-size: 20px; line-height: 1.3; letter-spacing: -0.015em; font-weight: 600; }
h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

.tag {
  display: block; margin-bottom: 14px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--violet);
}
.section { padding: clamp(72px, 10vw, 120px) 0; }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 760px; margin-bottom: clamp(38px, 5vw, 60px); }
.section__head--center { max-width: 720px; margin-inline: auto; text-align: center; }
.section__lead { color: var(--muted); font-size: clamp(17px, 1.6vw, 20px); margin-top: 16px; }
.lead { color: var(--muted); font-size: clamp(17px, 1.7vw, 21px); }
.lead--hero { max-width: 56ch; margin: 22px auto 0; }
.fineprint { color: var(--muted); font-size: 13px; margin-top: 16px; }

/* Scroll-Reveal – ohne JS bzw. bei reduzierter Bewegung bleibt alles sichtbar */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------------- NAV ---------------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; gap: 22px; height: 56px; }
.brand { display: flex; align-items: center; gap: 8px; font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }
.brand__icon { border-radius: 6px; }
.brand__accent { color: var(--muted); }
.nav__links { display: flex; align-items: center; gap: 26px; margin-left: auto; font-size: 14px; color: var(--muted); }
.nav__links a { transition: color .15s ease; }
.nav__links a:hover { color: var(--ink); }
.nav__right { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav__links + .nav__right { margin-left: 0; }
.lang { display: flex; gap: 2px; }
.lang__btn {
  display: grid; place-items: center; width: 32px; height: 26px;
  background: transparent; border: 1px solid transparent; border-radius: 7px;
  cursor: pointer; opacity: 0.4; transition: opacity .15s ease, background .15s ease;
}
.lang__btn:hover { opacity: 0.8; }
.lang__btn--active { opacity: 1; background: rgba(0, 0, 0, 0.05); }
.lang__btn svg { border-radius: 2px; box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.18); }

@media (max-width: 940px) { .nav__links { display: none; } }

/* ---------------- BUTTONS ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px; border: 1px solid transparent;
  font-size: 16px; font-weight: 500; cursor: pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s var(--ease), opacity .18s ease;
}
.btn--sm { padding: 9px 17px; font-size: 14.5px; }
.btn--primary { background: var(--violet); color: #fff; }
.btn--primary:hover { background: var(--violet-ink); }
.btn--ghost { background: transparent; border-color: var(--line-2); color: var(--ink); }
.btn--ghost:hover { background: rgba(0, 0, 0, 0.04); }
.btn--link { color: var(--violet); padding-inline: 6px; }
.btn--link::after { content: " ›"; }
.btn--link:hover { color: var(--violet-ink); }
.btn:disabled { opacity: 0.4; cursor: default; }

/* ---------------- HERO ---------------- */
.hero { padding: clamp(56px, 8vw, 96px) 0 clamp(56px, 7vw, 88px); text-align: center; }
.pill {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: var(--violet-soft); color: var(--violet-ink);
  font-size: 13px; font-weight: 600; margin-bottom: 26px;
}
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; margin-top: 32px; }
.hero__demo { margin-top: clamp(44px, 6vw, 72px); }

.teaser {
  border-radius: var(--r); overflow: hidden; background: var(--card);
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.teaser__stage { background: var(--stage); line-height: 0; }
.teaser__stage canvas { width: 100%; height: auto; }
.teaser__bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px; padding: 16px 20px; text-align: left;
}
.teaser__text { font-size: 15.5px; font-weight: 500; }

.trust {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 30px;
  margin-top: clamp(34px, 4vw, 52px);
}
.trust li { color: var(--muted); font-size: 14.5px; display: flex; align-items: center; gap: 8px; }
.trust li::before {
  content: ""; width: 16px; height: 16px; flex: none; border-radius: 50%;
  background: var(--violet-soft);
  box-shadow: inset 0 0 0 1.5px var(--violet);
}

/* ---------------- FORTSCHRITT ---------------- */
.prog { display: flex; align-items: center; gap: 14px; margin-top: 28px; max-width: 460px; }
.prog__track { flex: 1; height: 6px; border-radius: 999px; background: rgba(0, 0, 0, 0.09); overflow: hidden; }
.prog__fill { height: 100%; width: 0; border-radius: 999px; background: var(--violet); transition: width .5s var(--ease); }
.prog__label { font-size: 13.5px; color: var(--muted); font-weight: 500; white-space: nowrap; }

/* ---------------- FILTER-CHIPS ---------------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.chip {
  padding: 9px 18px; border-radius: 999px; cursor: pointer;
  background: var(--card); border: 1px solid var(--line-2); color: var(--muted);
  font-size: 14.5px; font-weight: 500;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.chip:hover { color: var(--ink); }
.chip--on { background: var(--violet); border-color: var(--violet); color: #fff; }

/* Münzreihe im Spielerfehlschluss */
.coins { display: flex; flex-wrap: wrap; gap: 6px; min-height: 34px; }
.coin {
  width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
  font-size: 13px; font-weight: 800; border: 1px solid var(--line-2); color: var(--muted);
}
.coin--h { background: rgba(178, 106, 0, 0.12); border-color: var(--amber); color: var(--amber); }

/* ---------------- SPIELPLATZ-GRID ---------------- */
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.demo--wide { grid-column: 1 / -1; }
@media (max-width: 860px) { .grid { grid-template-columns: 1fr; } }

.demo {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: clamp(20px, 2.4vw, 28px);
  box-shadow: var(--shadow-sm);
}
.demo__head { margin-bottom: 18px; }
.demo__kicker {
  display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 7px;
}
.demo__stage {
  border-radius: var(--r-sm); overflow: hidden; background: var(--stage); line-height: 0;
}
.demo__stage canvas { width: 100%; height: auto; display: block; }
.demo__stage--tap canvas { cursor: crosshair; }
/* Eigene Bühnenfarben: die Punktwolke und das MIB-Gitter brauchen Schwarz,
   Necker und Kanizsa ein neutrales Hellgrau. */
.demo__stage--void { background: #0b0d11; }
.demo__stage--light { background: #ededed; }
.demo__controls { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.demo__body { color: var(--muted); font-size: 15.5px; margin-top: 18px; }

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

.score {
  display: inline-block; padding: 8px 14px; border-radius: 999px;
  background: var(--violet-soft); color: var(--violet-ink);
  font-size: 14.5px; font-weight: 600;
}
.score--static { background: transparent; color: var(--muted); font-weight: 500; padding-inline: 0; }

/* Erklärung – erscheint erst nach dem Ausprobieren */
.why {
  margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line);
  animation: whyIn .5s var(--ease) both;
}
.why h4 { color: var(--violet); margin-bottom: 8px; }
.why p { font-size: 15.5px; color: var(--ink); }
@keyframes whyIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .why { animation: none; } }

/* ---------------- SCHALTER & REGLER ---------------- */
.switch { display: inline-flex; align-items: center; gap: 11px; cursor: pointer; user-select: none; }
.switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.switch__track {
  width: 46px; height: 27px; border-radius: 999px; background: rgba(0, 0, 0, 0.14);
  position: relative; flex: none; transition: background .22s ease;
}
.switch__knob {
  position: absolute; top: 2.5px; left: 2.5px; width: 22px; height: 22px; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
  transition: transform .22s var(--ease);
}
.switch input:checked + .switch__track { background: var(--violet); }
.switch input:checked + .switch__track .switch__knob { transform: translateX(19px); }
.switch input:focus-visible + .switch__track { outline: 2px solid var(--violet); outline-offset: 3px; }
.switch__label { font-size: 15px; }

.range { display: flex; flex-direction: column; gap: 8px; }
.range__label { font-size: 13.5px; color: var(--muted); font-weight: 500; }
input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 5px;
  background: rgba(0, 0, 0, 0.12); border-radius: 999px; outline: none; cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%;
  background: #fff; border: 0.5px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.24);
}
input[type="range"]::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%; background: #fff;
  border: 0.5px solid rgba(0, 0, 0, 0.12); box-shadow: 0 1px 4px rgba(0, 0, 0, 0.24);
}
input[type="range"]:focus-visible { outline: 2px solid var(--violet); outline-offset: 5px; }

/* ---------------- AUSWAHLKNÖPFE ---------------- */
.choices { display: flex; flex-wrap: wrap; gap: 10px; }
.choices--stack { flex-direction: column; }
.choice {
  flex: 1 1 auto; text-align: left; cursor: pointer;
  display: flex; align-items: baseline; gap: 10px;
  padding: 13px 18px; border-radius: var(--r-sm);
  background: var(--bg-alt); border: 1px solid var(--line);
  font-size: 15.5px; transition: border-color .15s ease, background .15s ease;
}
.choice:hover:not(:disabled) { border-color: var(--line-2); }
.choice b { color: var(--violet); font-size: 13px; }
.choice--picked { border-color: var(--violet); background: var(--violet-soft); }
.choice:disabled { cursor: default; opacity: 0.55; }
.choice--picked:disabled { opacity: 1; }

.quote {
  background: var(--bg-alt); border-radius: var(--r-sm); padding: 18px 20px;
  font-size: 15.5px; color: var(--ink); border-left: 3px solid var(--violet);
}

/* Mengendiagramm zum Linda-Problem */
.venn { position: relative; height: 150px; }
.venn::before, .venn::after {
  content: ""; position: absolute; left: 50%; border-radius: 50%; transform: translateX(-50%);
}
.venn::before {
  top: 6px; width: 136px; height: 136px;
  background: rgba(110, 86, 207, 0.10); border: 1.5px solid var(--violet);
}
.venn::after {
  top: 62px; width: 62px; height: 62px;
  background: rgba(110, 86, 207, 0.28); border: 1.5px solid var(--violet-ink);
}
.venn__a, .venn__b {
  position: absolute; left: 50%; transform: translateX(-50%); z-index: 2;
  font-size: 13px; font-weight: 700; color: var(--violet-ink);
}
.venn__a { top: 22px; }
.venn__b { top: 82px; }

/* Linda: volle Kartenbreite, Inhalt aber in Lesebreite */
[data-demo="li"] .quote,
[data-demo="li"] .choices,
[data-demo="li"] .score { max-width: 640px; }
[data-demo="li"] .venn { max-width: 640px; }

/* ---------------- STROOP ---------------- */
.demo--dark { background: #14161b; border-color: rgba(255, 255, 255, 0.10); }
.demo--dark h3, .demo--dark .stat__v { color: #f5f5f7; }
.demo--dark .demo__kicker, .demo--dark .demo__body, .demo--dark .stat__l { color: #9aa0aa; }
.demo--dark .why { border-top-color: rgba(255, 255, 255, 0.12); }
.demo--dark .why p { color: #e6e8ec; }
.demo--dark .why h4 { color: #b3a4ff; }
.demo--dark .btn--ghost { border-color: rgba(255, 255, 255, 0.24); color: #f5f5f7; }
.demo--dark .btn--ghost:hover { background: rgba(255, 255, 255, 0.08); }
.demo--dark .switch__label { color: #f5f5f7; }
.demo--dark .range__label { color: #9aa0aa; }
.demo--dark .switch__track { background: rgba(255, 255, 255, 0.18); }
.demo--dark input[type="range"] { background: rgba(255, 255, 255, 0.18); }
.demo--dark .score { background: rgba(179, 164, 255, 0.16); color: #c5b8ff; }

.stroop__stage {
  position: relative; display: grid; place-items: center; gap: 14px;
  min-height: 168px; padding: 22px 20px;
  background: #0d0f13; border-radius: var(--r-sm);
}
.stroop__hint { font-size: 13.5px; color: #9aa0aa; text-align: center; }
.stroop__word { font-size: clamp(38px, 6vw, 60px); font-weight: 800; letter-spacing: 0.03em; line-height: 1.1; }
.stroop__bar { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255, 255, 255, 0.10); }
.stroop__fill { height: 100%; width: 0; background: #b3a4ff; transition: width .18s linear; }
.stroop__keys { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 16px; }
@media (max-width: 560px) { .stroop__keys { grid-template-columns: repeat(2, 1fr); } }
.key {
  padding: 15px 10px; border-radius: var(--r-sm); cursor: pointer;
  font-size: 15.5px; font-weight: 700; border: 1px solid transparent;
  transition: transform .1s var(--ease), filter .15s ease;
}
.key:active { transform: scale(0.97); }
.key--red { background: rgba(229, 72, 77, 0.16); border-color: rgba(229, 72, 77, 0.5); color: #ff8a8d; }
.key--green { background: rgba(48, 164, 108, 0.16); border-color: rgba(48, 164, 108, 0.5); color: #5fd39a; }
.key--blue { background: rgba(62, 143, 240, 0.16); border-color: rgba(62, 143, 240, 0.5); color: #7cb4ff; }
.key--yellow { background: rgba(232, 185, 49, 0.16); border-color: rgba(232, 185, 49, 0.5); color: #f0cc63; }

.stats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.stat {
  flex: 1 1 120px; padding: 13px 16px; border-radius: var(--r-sm);
  background: var(--bg-alt); border: 1px solid var(--line);
}
.demo--dark .stat { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.10); }
.stat__l { display: block; font-size: 11.5px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.stat__v { display: block; font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin-top: 3px; }
.stat--hi .stat__v { color: var(--violet); }
.demo--dark .stat--hi .stat__v { color: #b3a4ff; }

/* ---------------- ZIEGENPROBLEM ---------------- */
/* align-self statt margin-inline:auto – auto-Margins würden in der
   Flex-Spalte das Strecken abschalten und die Karte auf Inhaltsbreite
   zusammenfallen lassen. */
.doors {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  width: 100%; max-width: 600px; align-self: center;
}
.door {
  aspect-ratio: 3 / 4; border-radius: var(--r-sm); cursor: pointer;
  display: grid; place-items: center; position: relative;
  background: linear-gradient(170deg, #a9784f, #7c5533);
  border: 1px solid rgba(0, 0, 0, 0.18);
  transition: transform .18s var(--ease), box-shadow .18s ease;
}
.door:hover:not(:disabled) { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.door:disabled { cursor: default; }
.door__n { font-size: 30px; font-weight: 700; color: rgba(255, 255, 255, 0.9); }
.door--open { background: var(--bg-alt); border-color: var(--line); }
.door--open .door__n { display: none; }
.door--picked { outline: 3px solid var(--violet); outline-offset: 2px; }
.door__icon { font-size: 44px; line-height: 1; }

/* ---------------- SCHRITTE ---------------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15.5px; }
.step__n {
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%;
  background: var(--violet-soft); color: var(--violet-ink);
  font-weight: 700; font-size: 15px; margin-bottom: 16px;
}

/* ---------------- KATEGORIEN ---------------- */
.cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 20px; }
.cat { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 28px; box-shadow: var(--shadow-sm); }
.cat__n { display: block; font-size: 44px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; margin-bottom: 12px; }
.cat--violet .cat__n { color: var(--violet); }
.cat--amber .cat__n { color: var(--amber); }
.cat--teal .cat__n { color: var(--teal); }
.cat h3 { margin-bottom: 10px; }
.cat p { color: var(--muted); font-size: 15px; }
.cat__note { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--ink) !important; }

/* ---------------- SCREENSHOTS ---------------- */
.shots {
  display: flex; gap: 26px; overflow-x: auto; padding: 10px 24px 26px;
  scroll-snap-type: x mandatory;
}
.shot { flex: none; scroll-snap-align: center; }
.shot figcaption { text-align: center; color: var(--muted); font-size: 13.5px; margin-top: 14px; }
.phone {
  border-radius: 30px; padding: 8px; width: 216px;
  background: linear-gradient(165deg, #d8d8dc, #a8a8ae);
  box-shadow: var(--shadow);
}
.phone img { border-radius: 23px; width: 100%; height: auto; }

/* ---------------- BILDUNG ---------------- */
.edu { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.edu__item { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 26px; box-shadow: var(--shadow-sm); }
.edu__item h3 { margin-bottom: 10px; }
.edu__item p { color: var(--muted); font-size: 15.5px; }
.privacy {
  margin-top: 20px; padding: clamp(26px, 3.5vw, 40px); border-radius: var(--r);
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.privacy h3 { font-size: clamp(20px, 2.4vw, 26px); margin-bottom: 12px; letter-spacing: -0.02em; }
.privacy p { color: var(--muted); font-size: 16px; max-width: 68ch; }

/* ---------------- FAQ ---------------- */
.faq { display: flex; flex-direction: column; margin-top: 30px; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  cursor: pointer; padding: 20px 0; font-weight: 500; font-size: 17px;
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; color: var(--violet); font-size: 24px; font-weight: 300; flex: none;
  transition: transform .22s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--muted); font-size: 16px; padding-bottom: 22px; max-width: 70ch; }

/* ---------------- CTA & FOOTER ---------------- */
.cta { text-align: center; }
.cta .section__lead { margin-inline: auto; }
.stores { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.stores--center { justify-content: center; margin-top: 32px; }
.store-badge { transition: transform .18s var(--ease); }
.store-badge:hover { transform: translateY(-2px); }
.store-badge--soon { opacity: 0.42; cursor: default; }
.store-badge--soon:hover { transform: none; }
.store-soon {
  padding: 7px 14px; border-radius: 999px; background: var(--bg);
  border: 1px solid var(--line-2); color: var(--muted); font-size: 13px; font-weight: 500;
}
.section--alt .store-soon { background: var(--card); }

.footer { border-top: 1px solid var(--line); padding: 40px 0; }
.footer__inner { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer p { color: var(--muted); font-size: 13.5px; }
.footer__rights { opacity: 0.8; }
