:root {
  --bg: #f2f2f2;
  --bg-deep: #e8e8e8;
  --ink: #141414;
  --ink-soft: #3a3a3a;
  --muted: #666666;
  --line: rgba(20, 20, 20, 0.12);
  --surface-strong: #ffffff;
  --accent: #1a1a1a;
  --mark: #141414;
  --mark-bg: rgba(20, 20, 20, 0.1);
  --radius: 14px;
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(1000px 520px at 80% 0%, #ffffff 0%, transparent 55%),
    radial-gradient(800px 480px at 0% 20%, #dcdcdc 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  min-height: 100vh;
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.top {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  backdrop-filter: blur(16px);
  background: rgba(242, 242, 242, 0.78);
  border-bottom: 1px solid var(--line);
}

.top__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.top__brand img {
  width: 28px;
  height: 28px;
}

.top__nav {
  display: none;
  gap: 22px;
}

.top__nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.top__nav a:hover {
  color: var(--ink);
}

.top__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.65);
}

.lang__btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 10px;
  cursor: pointer;
}

.lang__btn.is-active {
  background: var(--accent);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--sm {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.85rem;
  border-radius: 10px;
}

.btn--solid {
  background: var(--accent);
  color: #fff;
}

.btn--solid:hover {
  background: #000;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
  color: var(--ink);
}

.btn--ghost:hover {
  background: #fff;
}

/* Full-bleed hero: brand + copy + CTA over dominant product plane */
.hero {
  position: relative;
  min-height: min(100svh, 920px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__stage {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 64px;
}

.hero__glow {
  position: absolute;
  right: -8%;
  top: -20%;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 70%);
  animation: drift 14s ease-in-out infinite alternate;
  z-index: 0;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 20, 20, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 20, 20, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 45%, #000 100%);
  z-index: 0;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero__brand {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__title {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.hero__lede {
  margin: 14px 0 0;
  max-width: 34ch;
  color: var(--ink-soft);
  font-size: 1.02rem;
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.16s both;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
}

.hero__visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: grid;
  align-items: center;
  justify-items: end;
  padding: 72px 0;
  animation: rise 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.app {
  width: min(620px, 52vw);
  margin-right: max(8px, calc((100vw - 1120px) / 2));
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 18px 0 0 18px;
  background: #f7f7f7;
  overflow: hidden;
  box-shadow: -18px 24px 60px rgba(20, 20, 20, 0.12);
}

.app__titlebar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: #f2f2f2;
  border-bottom: 1px solid var(--line);
}

.app__brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: -0.03em;
}

.app__brand img {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}

.app__nav {
  display: inline-flex;
  justify-self: center;
  gap: 4px;
  padding: 3px;
  border-radius: 10px;
  background: #e8e8e8;
}

.app__chip {
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}

.app__chip.is-on {
  background: #fff;
  color: var(--ink);
}

.app__win {
  display: inline-flex;
  gap: 6px;
}

.app__win i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cfcfcf;
  display: block;
}

.app__body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 390px;
  background: #f2f2f2;
}

.app__toolbar {
  padding: 14px 14px 8px;
  display: grid;
  gap: 10px;
}

.app__modes {
  display: inline-flex;
  gap: 6px;
}

.app__mode {
  padding: 5px 10px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  background: #fff;
}

.app__mode.is-on {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.app__search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 10px 10px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.app__q {
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app__find {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.app__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.app__filters span {
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
}

.app__filters .is-on {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.app__split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 10px;
  padding: 0 14px 10px;
  min-height: 0;
}

.app__results,
.app__preview {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.app__results-head,
.app__preview-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border-bottom: 1px solid var(--line);
  background: #fafafa;
  font-size: 0.72rem;
}

.app__results-head span,
.app__preview-head span {
  color: var(--muted);
}

.app__results article {
  padding: 9px 10px;
  border-bottom: 1px solid rgba(20, 20, 20, 0.06);
  animation: hitPulse 5s ease-in-out infinite;
}

.app__results article:nth-child(3) { animation-delay: 0.7s; }
.app__results article:nth-child(4) { animation-delay: 1.4s; }

.app__results article.is-active {
  background: rgba(20, 20, 20, 0.05);
  border-left: 2px solid var(--accent);
}

.app__results b {
  display: block;
  font-size: 0.78rem;
}

.app__results small {
  display: block;
  color: var(--muted);
  font-size: 0.65rem;
  margin: 2px 0 4px;
}

.app__results p,
.app__doc p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
}

.app__doc {
  padding: 12px 12px 14px;
  display: grid;
  gap: 8px;
}

.app__doc mark,
.app__results mark {
  background: var(--mark-bg);
  color: var(--mark);
  padding: 0 3px;
  border-radius: 3px;
}

.app__status {
  display: flex;
  justify-content: space-between;
  padding: 8px 14px 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
  background: #ededed;
}

.band {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.03), rgba(20, 20, 20, 0.055));
}

.band__inner {
  max-width: 760px;
}

.band__text {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
  max-width: 42ch;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.section {
  padding: 96px 0;
}

.section--tone {
  background: rgba(255, 255, 255, 0.35);
  border-block: 1px solid var(--line);
}

.section__lede {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 46ch;
}

.faq {
  margin-top: 36px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 36px 18px 0;
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-weight: 600;
  font-size: 1.2rem;
}

.faq__item[open] summary::after {
  content: "–";
}

.faq__item p {
  margin: 0 0 18px;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.55;
}

.steps {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.steps li {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.steps__n {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.steps h3,
.feature h3,
.download h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.steps p,
.feature p,
.download p {
  margin: 0;
  color: var(--muted);
}

.features {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 36px;
}

.feature {
  padding: 8px 0 18px;
  border-bottom: 1px solid var(--line);
}

.formats {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: end;
}

.formats__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.formats__list li {
  display: grid;
  place-items: center;
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.downloads {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.download {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  text-decoration: none;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.download:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 20, 20, 0.3);
}

.download__action {
  flex: 0 0 auto;
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.version {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: grid;
  gap: 8px;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

.footer__links a {
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__links a:hover {
  color: var(--ink);
}

.footer__copy {
  margin-top: 8px !important;
  font-size: 0.8rem !important;
}

/* Donation modal */
.modal[hidden] {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.45);
  backdrop-filter: blur(4px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  padding: 28px 26px 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #f7f7f7;
  box-shadow: 0 28px 80px rgba(20, 20, 20, 0.22);
}

.modal__x {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}

.modal__x:hover {
  background: rgba(20, 20, 20, 0.06);
  color: var(--ink);
}

.modal__panel h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
}

.modal__text {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.donate-amount {
  margin-top: 20px;
}

.donate-amount label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.donate-amount__row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.donate-amount__row span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}

.donate-amount__row input {
  width: 100%;
  border: 0;
  outline: none;
  font: inherit;
  font-size: 1.25rem;
  font-weight: 700;
  background: transparent;
}

.donate-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.donate-presets button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  font: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}

.donate-presets button.is-on,
.donate-presets button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.donate-agree {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 16px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  cursor: pointer;
}

.donate-agree input {
  margin-top: 3px;
}

.donate-agree a {
  color: var(--ink);
}

.modal__actions {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.modal__actions .btn {
  width: 100%;
}

.modal__hint {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink);
  background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(20, 20, 20, 0.2);
  outline-offset: 1px;
  background: #fff;
}

.contact-form .btn {
  justify-self: start;
  margin-top: 4px;
}

.contact-status {
  min-height: 1.2em;
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.contact-status.is-ok { color: #1f6b3a; }
.contact-status.is-err { color: #8a1f1f; }

.hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  pointer-events: none !important;
}

.consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  padding: 14px 0;
  background: rgba(247, 247, 247, 0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.consent__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.consent__inner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  max-width: 64ch;
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 0 0 auto;
}

@media (max-width: 960px) {
  .contact,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .consent__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.legal-page {
  padding: 48px 0 72px;
}

.legal-page h1 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
}

.legal-page .meta {
  color: var(--muted);
  margin-bottom: 28px;
}

.legal-page h2 {
  margin: 28px 0 10px;
  font-size: 1.2rem;
}

.legal-page p,
.legal-page li {
  color: var(--ink-soft);
  max-width: 68ch;
}

.legal-page ul {
  padding-left: 1.2rem;
}

.legal-back {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.legal-back:hover {
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-28px, 20px, 0) scale(1.05); }
}

@keyframes hitPulse {
  0%, 100% { border-color: transparent; background: rgba(20, 20, 20, 0.035); }
  40% { border-color: rgba(20, 20, 20, 0.16); background: rgba(20, 20, 20, 0.055); }
}

@media (max-width: 960px) {
  .hero {
    align-items: start;
    min-height: auto;
  }

  .hero__stage {
    padding: 36px 0 40px;
  }

  .hero__visual {
    position: relative;
    inset: auto;
    justify-items: stretch;
    padding: 0 0 28px;
    order: -1;
  }

  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero__visual {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
  }

  .app {
    width: 100%;
    margin: 0;
    border-radius: 18px;
    border: 1px solid var(--line);
  }

  .app__split {
    grid-template-columns: 1fr;
  }

  .app__preview {
    display: none;
  }

  .steps,
  .features,
  .downloads,
  .formats {
    grid-template-columns: 1fr;
  }

  .formats__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 820px) {
  .top__nav { display: flex; }
}

@media (max-width: 560px) {
  .top__actions .btn--sm { display: none; }
  .formats__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .download {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
