/* ============================================================
   JRMedia — jrmedia.software
   Design tokens mirror the Remotion sources (src/theme.ts).

   The four-point spark is this page's one recurring device: it
   marks section eyebrows, feature bullets, process nodes and
   live status. Everything else stays quiet so it can carry.
   ============================================================ */
@import url("fonts.css");

:root {
  /* surfaces */
  --ink: #0e1b2e;
  --ink-2: #16305c;
  --ink-3: #1a3a70;
  --paper: #f7f9fc;
  --paper-2: #eef3fa;
  --white: #fff;

  /* brand */
  --violet: #7c5cfc;
  --blue: #3b82f6;
  --blue-600: #2563eb;
  --blue-soft: #7ca8f7;
  --cyan: #22d3ee;
  --cyan-ink: #0e7490;
  --brand: linear-gradient(145deg, var(--violet), var(--blue));

  /* text & lines */
  --text: #1b2740;
  --muted: #55647e;
  --mist: #9fb3ce;
  --line: #e2e9f3;
  --line-dark: rgba(159, 179, 206, 0.2);

  /* type */
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "Space Mono", ui-monospace, "SFMono-Regular", monospace;

  /* metrics */
  --wrap: 1120px;
  --gut: 22px;
  --radius: 16px;
  --shadow-sm: 0 2px 8px rgba(16, 34, 60, 0.06);
  --shadow: 0 18px 44px rgba(16, 34, 60, 0.1);
  --shadow-lg: 0 30px 70px rgba(16, 34, 60, 0.16);
}

/* ---------- base ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.4em;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--blue-600);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

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

code {
  font-family: var(--font-mono);
  font-size: 0.92em;
  background: var(--paper-2);
  border-radius: 5px;
  padding: 0.15em 0.4em;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section {
  padding: 92px 0;
}

/* The header is sticky, so anchor targets need to clear it. */
section[id] {
  scroll-margin-top: 84px;
}

.section-dark {
  background: radial-gradient(120% 140% at 50% 0%, var(--ink-3) 0%, var(--ink) 62%);
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  overflow: hidden;
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-alt {
  background: var(--paper);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--blue-soft);
  outline-offset: 2px;
  border-radius: 6px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ---------- the spark: this page's one recurring device ---------- */

.spark {
  flex: none;
  display: block;
  color: var(--cyan);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}

.section-dark .eyebrow {
  color: var(--cyan);
}

.section-head {
  max-width: 62ch;
  margin-bottom: 52px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
}

.section-head .lead {
  font-size: 1.14rem;
  color: var(--muted);
  margin: 0;
}

.section-dark .section-head .lead {
  color: var(--mist);
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(92, 92, 252, 0.32);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(14, 27, 46, 0.16);
}

.btn-ghost:hover {
  border-color: rgba(14, 27, 46, 0.4);
  background: rgba(14, 27, 46, 0.03);
}

.btn-ghost.on-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
}

.btn-ghost.on-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: none;
}

.brand img {
  height: 38px;
  width: auto;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 8px 13px;
  border-radius: 9px;
}

.nav a:hover {
  background: var(--paper-2);
}

.nav a[aria-current="page"] {
  color: var(--blue-600);
  font-weight: 600;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 13px;
  margin-left: 4px;
}

.lang-switch:hover {
  border-color: var(--blue-soft);
  color: var(--blue-600);
}

.header-cta {
  padding: 10px 18px;
  font-size: 0.95rem;
  margin-left: 4px;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 42px;
  height: 38px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 120% at 50% -12%, var(--ink-2) 0%, var(--ink) 62%);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 78px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 30%, #000 20%, transparent 72%);
  mask-image: radial-gradient(ellipse 75% 60% at 50% 30%, #000 20%, transparent 72%);
  opacity: 0.6;
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero .eyebrow {
  color: var(--cyan);
}

.hero h1 {
  font-size: clamp(2.3rem, 5.6vw, 4rem);
  color: var(--white);
  max-width: 24ch;
  margin-bottom: 0.5em;
}

.hero h1 .accent {
  color: var(--cyan);
}

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  color: var(--mist);
  max-width: 56ch;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.94rem;
  color: rgba(159, 179, 206, 0.85);
  margin: 0;
}

.hero-note .spark {
  margin-top: 5px;
}

.hero-media {
  margin: 62px 0 0;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  border: 1px solid rgba(159, 179, 206, 0.22);
  border-bottom: 0;
  box-shadow: 0 -10px 60px rgba(92, 92, 252, 0.18);
  background: var(--ink);
}

.browser-bar {
  height: 42px;
  background: rgba(159, 179, 206, 0.1);
  border-bottom: 1px solid rgba(159, 179, 206, 0.14);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 18px;
}

.browser-bar .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(159, 179, 206, 0.34);
}

.hero-media video {
  width: 100%;
  display: block;
}

/* ---------- stat strip ---------- */

.stripe {
  background: var(--ink);
  border-top: 1px solid rgba(159, 179, 206, 0.14);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(159, 179, 206, 0.14);
}

.stat {
  background: var(--ink);
  padding: 30px 24px;
  text-align: center;
}

.stat .v {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}

.stat .k {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  display: block;
  margin-top: 7px;
}

/* ---------- service cards ---------- */

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #cfd9f3;
}

.card h3 {
  font-size: 1.18rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

/* ---------- process rail ---------- */
/* The brand gradient runs across the five steps: the gradient IS the process. */

.process-steps {
  --step-gap: 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--step-gap);
  list-style: none;
  margin: 0;
  padding: 0;
}

/* The rail stops at the last node rather than running past it, so it ends
   exactly where the process ends. One column width = (100% - 4 gaps) / 5. */
.process-rail {
  height: 3px;
  margin-bottom: 44px;
  margin-right: calc((100% - 4 * 20px) / 5);
  border-radius: 2px;
  background: linear-gradient(90deg, var(--violet), var(--blue) 62%, var(--cyan));
}

.step {
  position: relative;
  padding-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step::before {
  content: "";
  position: absolute;
  top: -46px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--cyan);
  border: 2px solid var(--cyan);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.65);
}

.step .n {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--cyan);
}

.step h3 {
  font-size: 1.18rem;
  margin-bottom: 0.45em;
}

.step p {
  color: var(--mist);
  font-size: 0.97rem;
  margin-bottom: 12px;
}

.step .out {
  /* pinned to the bottom so all five pills share one baseline */
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue-soft);
  border: 1px solid rgba(124, 168, 247, 0.3);
  border-radius: 999px;
  padding: 5px 11px;
}

.process-note {
  margin: 46px 0 0;
  padding-top: 26px;
  border-top: 1px solid rgba(159, 179, 206, 0.16);
  color: var(--mist);
  font-size: 1.02rem;
  max-width: 70ch;
}

/* ---------- stack chips ---------- */

.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.stack-group h3 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.chip {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 11px;
}

/* ---------- showcase ---------- */

/* Showcase page: the screenshot is a banner, the detail sits underneath.
   A side-by-side split leaves the image stranded in empty space, because the
   detail column is always several times taller than a 16:10 screenshot. */
.app-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.app-shot {
  background: linear-gradient(150deg, #eef1ff, #e2ecff);
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-shot img {
  border-radius: 10px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 760px;
}

.app-body {
  padding: 34px;
}

.app-body h3 {
  font-size: 1.6rem;
  margin-bottom: 0.25em;
}

.app-tagline {
  color: var(--muted);
  font-size: 1.04rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan-ink);
  background: #e0f7fc;
  border: 1px solid #a5e9f5;
  border-radius: 999px;
  padding: 5px 12px;
}

.app-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 34px;
  margin: 26px 0;
}

/* The long prose fields and the stack list span the full width;
   the short facts (role, platform) pair up on one row. */
.app-meta > div:nth-child(-n + 2),
.app-meta > div:last-child {
  grid-column: 1 / -1;
}

.app-meta dt {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.app-meta dd {
  margin: 0;
  color: var(--text);
  font-size: 0.99rem;
}

.app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* teaser variant on the home page */
.app-teaser {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
}

.app-teaser .app-body {
  padding: 34px;
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 78ch;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  translate: 0 -50%;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--blue-600);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .answer {
  color: var(--muted);
  padding-bottom: 24px;
  margin: 0;
  max-width: 72ch;
}

/* ---------- feature lists (spark bullets) ---------- */

.feat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
}

.feat-list .spark {
  margin-top: 5px;
}

/* ---------- CTA band ---------- */

.cta {
  text-align: center;
}

.cta h2 {
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  max-width: 20ch;
  margin-inline: auto;
}

.cta p {
  color: var(--mist);
  max-width: 58ch;
  margin: 0 auto 30px;
  font-size: 1.08rem;
}

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

.cta-alt {
  color: var(--mist);
  font-size: 0.96rem;
}

.cta-alt a {
  color: var(--blue-soft);
}

/* Deliberately quiet: contract work is possible but is not the offer. */
.cta-note {
  margin: 44px 0 0;
  font-size: 0.85rem;
  color: rgba(159, 179, 206, 0.55);
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--mist);
  padding: 64px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 34px;
  padding-bottom: 40px;
}

.footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.96rem;
  margin: 0;
  max-width: 34ch;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.footer-col a {
  color: var(--mist);
  text-decoration: none;
  font-size: 0.96rem;
}

.footer-col a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(159, 179, 206, 0.16);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: 0.9rem;
}

/* ---------- legal / simple pages ---------- */

.legal {
  padding: 54px 0 80px;
}

.legal-head {
  margin-bottom: 34px;
}

.legal-head h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 0.3em;
}

.legal-head .meta {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

.legal-note {
  background: #f0f5ff;
  border: 1px solid #d3e2ff;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: 0.96rem;
  color: var(--text);
}

.legal-note p {
  margin: 0;
}

.prose {
  max-width: 74ch;
}

.prose h2 {
  font-size: 1.25rem;
  margin: 40px 0 12px;
}

.prose p,
.prose li {
  color: rgba(27, 39, 64, 0.84);
}

.prose ul {
  margin: 0 0 1em;
  padding-left: 20px;
  display: grid;
  gap: 6px;
}

.prose code {
  font-size: 0.95em;
}

.legal-foot {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--muted);
}

/* ---------- 404 ---------- */

.notfound {
  padding: 110px 0 120px;
  text-align: center;
}

.notfound .code {
  font-family: var(--font-mono);
  font-size: 4rem;
  font-weight: 700;
  color: var(--blue-soft);
  margin: 0 0 10px;
}

.notfound p {
  color: var(--muted);
  max-width: 46ch;
  margin: 0 auto 28px;
}

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px var(--gut) 20px;
    display: none;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a,
  .lang-switch,
  .header-cta {
    margin-left: 0;
    justify-content: flex-start;
  }

  .lang-switch {
    align-self: flex-start;
    margin-top: 6px;
  }

  .header-cta {
    margin-top: 10px;
    justify-content: center;
  }
}

@media (max-width: 980px) {
  .grid-3,
  .stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 22px;
  }

  /* The rail only reads as a rail when the steps sit in one row. */
  .process-rail {
    display: none;
  }

  .step {
    padding-top: 0;
    padding-left: 30px;
  }

  .step::before {
    top: 7px;
    left: 0;
  }

  .step .n {
    position: static;
    display: block;
    margin-bottom: 4px;
  }

  .app-teaser {
    grid-template-columns: 1fr;
  }

  .app-body,
  .app-teaser .app-body {
    padding: 30px 26px;
  }

  .app-shot {
    padding: 26px 22px;
  }

  .app-meta {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .section {
    padding: 62px 0;
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding-top: 54px;
  }

  .hero-media {
    margin-top: 44px;
  }

  .grid-3,
  .grid-2,
  .stack-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: auto;
    flex: 1 1 auto;
  }
}

@media (max-width: 460px) {
  body {
    font-size: 16px;
  }

  .app-actions .btn,
  .hero-actions .btn {
    width: 100%;
  }
}

/* ---------- motion ---------- */

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
