/* StitchMotion v2 — dark, loud, brutalist-playful (unstopp-inspired).
   No external fonts, no third-party requests — the privacy promise holds. */

:root {
  --bg: #0a0a0b;
  --bg2: #101013;
  --ink: #f2ecdf;
  --muted: #97907f;
  --accent: #ff5a26;
  --accent-ink: #0a0a0b;
  --green: #2ee87e;
  --line: #29292e;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: var(--accent-ink); }

a { color: inherit; }

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

/* ---------- Topbar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(10, 10, 11, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.02em;
}

.brand-mark { display: grid; place-items: center; }

.brand-name { font-size: 1.05rem; text-transform: uppercase; }

.topnav {
  display: flex;
  align-items: center;
  gap: clamp(.6rem, 2vw, 1.4rem);
}

.topnav > a {
  text-decoration: none;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  transition: color .15s ease;
}

.topnav > a:hover { color: var(--ink); }

.nav-cta {
  padding: .45rem .9rem;
  border: 1px solid var(--accent);
  color: var(--accent) !important;
  border-radius: 999px;
}

.nav-cta:hover { background: var(--accent); color: var(--accent-ink) !important; }

/* Language toggle — segmented pill */

.lang-toggle {
  position: relative;
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg2);
  padding: 2px;
  cursor: pointer;
  font: inherit;
  color: var(--muted);
}

.lang-opt {
  position: relative;
  z-index: 1;
  padding: .22rem .6rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  border-radius: 999px;
  transition: color .15s ease;
  text-decoration: none;
  cursor: pointer;
}

.lang-toggle::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 2px;
  width: calc(50% - 2px);
  background: var(--accent);
  border-radius: 999px;
  transition: transform .18s ease;
}

.lang-toggle[data-active="en"]::before { transform: translateX(100%); }

.lang-toggle[data-active="de"] .lang-opt[data-lang="de"],
.lang-toggle[data-active="en"] .lang-opt[data-lang="en"] { color: var(--accent-ink); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.5rem;
  border: 1px solid var(--ink);
  border-radius: 0;
  text-decoration: none;
  font-weight: 800;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}

.btn-primary:hover { background: var(--ink); border-color: var(--ink); }

.btn-ghost { color: var(--ink); background: transparent; }

.btn-ghost:hover { background: var(--ink); color: var(--bg); }

.btn-lg { padding: 1.1rem 2.2rem; font-size: 1rem; }

/* ---------- Hero ---------- */

.hero {
  padding: clamp(3rem, 9vh, 6rem) clamp(1rem, 4vw, 2.5rem) 0;
  max-width: 1280px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 1rem;
  font-family: var(--mono);
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
}

.display {
  margin: 0;
  font-size: clamp(2.6rem, 9.5vw, 7.5rem);
  line-height: .95;
  font-weight: 800;
  letter-spacing: -.04em;
  text-transform: uppercase;
  max-width: 14ch;
}

.display .star { color: var(--accent); }

.lede {
  max-width: 56ch;
  margin: 1.6rem 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.hero-meta {
  margin-top: 1.2rem;
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .04em;
}

/* Status box (unstopp-style "current workload") */

.status-box {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .9rem;
  margin-top: 2.4rem;
  padding: .7rem 1.1rem;
  border: 1px solid var(--line);
  background: var(--bg2);
  font-family: var(--mono);
  font-size: .8rem;
}

.status-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .15em;
}

.status-value { display: inline-flex; align-items: center; gap: .5rem; }

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(46, 232, 126, .6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(46, 232, 126, .55); }
  70%  { box-shadow: 0 0 0 9px rgba(46, 232, 126, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 232, 126, 0); }
}

.hero-shot {
  margin: 3.2rem 0 0;
  border: 1px solid var(--line);
  background: var(--bg2);
  padding: clamp(.5rem, 1.5vw, 1rem);
}

/* Always preserve the screenshot's intrinsic ratio. object-fit:contain is
   belt-and-suspenders against any environment where height gets constrained —
   the shot letterboxes instead of stretching. */
.hero-shot img,
.shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Windows captures are full-bleed screenshots with hard, square corners —
   unlike the macOS Shottr shots, which come pre-rounded. Round the Windows
   ones in CSS so both platforms read the same. Scoped to the data-platform
   flag set by platform.js, so the macOS shots are never double-rounded. */
[data-platform="windows"] .hero-shot img,
[data-platform="windows"] .shot img {
  border-radius: 12px;
}

/* Windows-only highlight (e.g. the Open-dialog preview shot). Hidden on macOS,
   revealed when platform.js flags Windows. Kept a touch narrower than a full
   shot so a non-core detail doesn't compete with the hero. */
.win-only { display: none; }
[data-platform="windows"] .win-only { display: block; }
.win-highlight { max-width: 820px; margin: 2.4rem auto 0; }
.win-highlight .shot { margin: 0; }
.shot-note {
  margin: .9rem 0 0;
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
}

/* ---------- Marquee ---------- */

.marquee {
  margin-top: clamp(3rem, 8vh, 5rem);
  overflow: hidden;
  background: var(--accent);
  color: var(--accent-ink);
  border-block: 1px solid var(--accent);
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  padding: .7rem 0;
  font-weight: 800;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.marquee-track i {
  font-style: normal;
  margin: 0 .9rem;
  opacity: .75;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  /* The marquee is a gentle, decorative horizontal scroll and core to the
     page's energy — keep it running even with "reduce motion" enabled. */
  .dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Sections ---------- */

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3.5rem, 9vh, 6.5rem) clamp(1rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--line);
}

.section:last-of-type { border-bottom: 0; }

.sec-head { max-width: 880px; margin-bottom: 2.6rem; }

.kicker {
  display: flex;
  align-items: baseline;
  gap: .8rem;
  margin: 0 0 1.1rem;
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}

.kicker .idx { color: var(--accent); font-weight: 700; }

.section h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.sec-head p:not(.kicker) {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 62ch;
}

.sec-head-center { margin-inline: auto; text-align: center; }

.sec-head-center .kicker { justify-content: center; }

/* Origin — oversized statement */

.origin-body {
  margin: 1.4rem 0 0;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  line-height: 1.45;
  max-width: 38em;
  color: var(--ink);
  font-weight: 500;
}

.origin-sign {
  margin-top: 1.6rem;
  font-family: var(--mono);
  font-size: .8rem;
  color: var(--accent);
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* Card grids */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 0;
}

.card-grid li {
  background: var(--bg);
  padding: 1.6rem 1.4rem 1.8rem;
  transition: background .15s ease;
}

.card-grid li:hover { background: var(--bg2); }

.card-grid h3 {
  margin: 0 0 .55rem;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.card-grid h3::before {
  content: "→ ";
  color: var(--accent);
}

.card-grid p { margin: 0; color: var(--muted); font-size: .95rem; }

/* Aspect-ratio cards */

.aspect-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.aspect-card { text-align: center; }

.aspect-frame {
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  margin: 0 auto .9rem;
  font-weight: 800;
  font-family: var(--mono);
  font-size: 1rem;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}

.aspect-card:hover .aspect-frame {
  border-color: var(--accent);
  color: var(--accent);
}

.aspect-16-9 .aspect-frame { width: 150px; height: 85px; }
.aspect-9-16 .aspect-frame { width: 76px;  height: 135px; }
.aspect-1-1  .aspect-frame { width: 110px; height: 110px; }
.aspect-4-5  .aspect-frame { width: 104px; height: 130px; }

.aspect-card p {
  margin: 0;
  font-family: var(--mono);
  font-size: .76rem;
  color: var(--muted);
  letter-spacing: .04em;
}

/* Overlay / screenshot figure */

.shot {
  margin: 2.4rem 0;
  border: 1px solid var(--line);
  background: var(--bg2);
  padding: clamp(.5rem, 1.5vw, 1rem);
}

/* Example tabs + video */

.example-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.4rem;
}

.example-tab {
  font: inherit;
  font-weight: 800;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .6rem 1.3rem;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all .15s ease;
}

.example-tab:hover { color: var(--ink); border-color: var(--ink); }

.example-tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}

/* The example clips are 1:1 (1080² source). Cap the frame so a square video
   doesn't stretch across the full content width — left-aligned under the tabs
   to match the brutalist layout. */
.example-video-wrap {
  max-width: 540px;
  border: 1px solid var(--line);
  background: var(--bg2);
  padding: clamp(.5rem, 1.5vw, 1rem);
}

.example-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  background: #000;
}

/* Render styles */

.style-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.style-list li { border: 1px solid var(--line); padding: .7rem; background: var(--bg2); }

.style-shot { width: 100%; height: auto; }

.style-list strong {
  display: block;
  margin-top: .7rem;
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.style-list strong::before { content: "✱ "; color: var(--accent); }

.styles-note {
  margin: 1.6rem 0 0;
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--muted);
}

/* Details mini-grid */

.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 0;
}

.mini-grid li {
  background: var(--bg);
  padding: 1.4rem 1.3rem;
}

.mini-grid li:hover { background: var(--bg2); }

.mini-grid strong {
  display: block;
  margin-bottom: .4rem;
  font-size: .95rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-grid span { color: var(--muted); font-size: .9rem; }

/* Hashtag wall */

.tag-wall {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.6rem;
  margin-top: 2rem;
}

.tag-wall span {
  font-size: clamp(1.5rem, 4.2vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--muted);
  transition: color .15s ease;
  cursor: default;
}

.tag-wall span:hover { color: var(--accent); }

.tag-wall span::before { content: "#"; color: var(--accent); }

/* Attitude — manifesto statement */

.we-statement {
  margin: 1.6rem 0 0;
  max-width: 40ch;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  line-height: 1.45;
  color: var(--ink);
  font-weight: 500;
}

/* Pricing */

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  max-width: 860px;
  margin: 0 auto;
}

.plan {
  border: 1px solid var(--line);
  background: var(--bg2);
  padding: 2rem 1.8rem;
  position: relative;
}

.plan h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.plan-pro { border-color: var(--accent); }

.plan-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
  padding: .35rem .8rem;
}

.plan-price {
  margin: 1rem 0 0;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -.03em;
}

.plan-price-old {
  margin-left: .6rem;
  font-size: 1.2rem;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 600;
}

.plan-price-note {
  margin: .3rem 0 0;
  font-family: var(--mono);
  font-size: .75rem;
  color: var(--accent);
}

.plan ul {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
}

.plan li {
  padding: .5rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
  color: var(--ink);
}

.plan li:last-child { border-bottom: 0; }

.plan li::before { content: "→ "; color: var(--accent); font-weight: 700; }

.plan-free li::before { color: var(--muted); }

/* CTA */

.section-cta { text-align: center; }

.section-cta h2 {
  font-size: clamp(2.2rem, 6.5vw, 5rem);
  max-width: 18ch;
  margin: 0 auto;
}

.section-cta .lede { margin: 1.4rem auto 0; }

.section-cta .btn { margin-top: 2.2rem; }

.cta-soon {
  margin-top: 1.1rem;
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--muted);
}

.stitch-art {
  margin: 3rem auto 0;
  font-family: var(--mono);
  font-size: clamp(.55rem, 1.6vw, .85rem);
  line-height: 1.5;
  letter-spacing: .12em;
  color: var(--accent);
  user-select: none;
  overflow-x: auto;
}

/* ---------- Footer ---------- */

footer {
  border-top: 1px solid var(--line);
  background: var(--bg2);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vh, 4rem) clamp(1rem, 4vw, 2.5rem) 2rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.footer-brand > span {
  display: block;
  margin-top: .4rem;
  color: var(--muted);
  font-size: .9rem;
}

.footer-col h4 {
  margin: 0 0 .9rem;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--muted);
}

.footer-col a {
  display: block;
  padding: .25rem 0;
  text-decoration: none;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 600;
}

.footer-col a:hover { color: var(--accent); }

.footer-credits {
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
  color: var(--muted);
  font-size: .85rem;
}

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

.footer-credits a:hover { color: var(--accent); }

.footer-copy { margin: .6rem 0 0; font-family: var(--mono); font-size: .78rem; }

@media (max-width: 760px) {
  .footer-cols { grid-template-columns: 1fr; gap: 1.6rem; }
}

/* ---------- Vertical side label ---------- */

.side-label {
  position: fixed;
  right: 10px;
  bottom: 120px;
  z-index: 40;
  writing-mode: vertical-rl;
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--muted);
  pointer-events: none;
  user-select: none;
}

.side-label::after {
  content: "▌";
  color: var(--accent);
  animation: blink 1.2s steps(1) infinite;
}

@keyframes blink { 50% { opacity: 0; } }

@media (max-width: 1100px) { .side-label { display: none; } }

@media (prefers-reduced-motion: reduce) { .side-label::after { animation: none; } }

/* ---------- Small screens ---------- */

@media (max-width: 700px) {
  .topnav > a:not(.nav-cta):not(.legal-back) { display: none; }
}

/* ============================================================
   v3 — Platform layer (macOS / Windows)
   ============================================================ */

/* Header platform toggle — segmented icon pill, mirrors .lang-toggle */
.plat-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg2);
  padding: 2px;
  cursor: pointer;
  color: var(--muted);
}

.plat-opt {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 24px;
  border-radius: 999px;
  transition: color .15s ease;
  cursor: pointer;
}

.plat-opt svg { display: block; }

.plat-toggle::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 2px;
  width: calc(50% - 2px);
  background: var(--accent);
  border-radius: 999px;
  transition: transform .18s ease;
}

.plat-toggle[data-active="windows"]::before { transform: translateX(100%); }

.plat-toggle[data-active="mac"] .plat-opt[data-plat-choose="mac"],
.plat-toggle[data-active="windows"] .plat-opt[data-plat-choose="windows"] {
  color: var(--accent-ink);
}

/* Download-button icon swap — default shows the Apple mark (also for no-JS) */
.ico-win { display: none; }
[data-platform="windows"] .ico-win { display: inline-block; }
[data-platform="windows"] .ico-mac { display: none; }

/* Platform picker overlay */
.plat-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(6, 6, 8, .72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .2s ease;
}

.plat-overlay.is-open { opacity: 1; }
.plat-overlay[hidden] { display: none; }

.plat-card {
  width: min(560px, 100%);
  border: 1px solid var(--line);
  background: var(--bg2);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  text-align: center;
  transform: translateY(10px) scale(.98);
  transition: transform .25s ease;
}

.plat-overlay.is-open .plat-card { transform: none; }

.plat-card-brand { display: inline-grid; place-items: center; margin-bottom: 1rem; }

.plat-card h2 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.plat-card-sub {
  margin: .8rem auto 0;
  max-width: 42ch;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.5;
}

.plat-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.8rem;
}

.plat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1.5rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}

.plat-tile:hover,
.plat-tile:focus-visible {
  border-color: var(--accent);
  background: var(--bg2);
  transform: translateY(-2px);
  outline: none;
}

.plat-tile svg { color: var(--ink); transition: color .15s ease; }
.plat-tile:hover svg,
.plat-tile:focus-visible svg { color: var(--accent); }

.plat-tile strong {
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.plat-tile small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .04em;
}

@media (max-width: 460px) {
  .plat-tiles { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .plat-overlay,
  .plat-card,
  .plat-tile { transition: none; }
}
