/* ===========================================================================
   ROYAL TWEAKS — Design System
   Dark (#0A0A14) + purple (#8B5CF6). No glow. Atomic-design component layers.
   =========================================================================== */

:root {
  /* ── Surfaces ── */
  --bg:          #0A0A14;
  --bg-2:        #0D0E1C;
  --surface:     #14152B;
  --surface-2:   #191A35;
  --surface-3:   #20224A;
  --border:      #262845;
  --border-soft: #1B1D36;

  /* ── Text ── */
  --text:   #F5F5F7;
  --text-2: #C6C7D2;
  --muted:  #9A9BAA;
  --faint:  #6C6D80;

  /* ── Accent ── */
  --accent:       #8B5CF6;
  --accent-light: #B79CF8;
  --accent-deep:  #6366F1;
  --accent-grad:  linear-gradient(120deg, #A855F7 0%, #7C3AED 45%, #6366F1 100%);
  --accent-tint:  rgba(139, 92, 246, 0.15);

  /* ── Signals ── */
  --green: #4ADE80;
  --red:   #F87171;
  --amber: #FBBF24;

  /* ── Type ── */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", "Cascadia Code", Consolas, monospace;

  /* ── Radius / shadow ── */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 20px;
  --r-pill: 999px;
  --shadow:    0 10px 30px rgba(0,0,0,.45);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.55);

  /* ── Layout ── */
  --container: 1200px;
  --nav-h: 72px;
}

/* ───────────────────────────────────────────── Base */
body {
  font-family: var(--font);
  color: var(--text);
  overflow-x: hidden;
  background-color: var(--bg);
  /* Subtle SaaS grid texture */
  background-image:
    linear-gradient(to right, rgba(160,150,220,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(160,150,220,.04) 1px, transparent 1px);
  background-size: 54px 54px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}
.container--narrow { max-width: 820px; }

.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
/* first section on inner pages clears the fixed nav */
.page-top { padding-top: calc(var(--nav-h) + clamp(44px, 6vw, 84px)); }

/* feature row (organism) for the Features page */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.feature-row + .feature-row { margin-top: clamp(56px, 8vw, 100px); }
.feature-row__media { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 44px); display: grid; place-items: center; }
.feature-row__ico { width: clamp(84px, 14vw, 132px); height: auto; color: var(--accent-light); }
.feature-row__bullets { display: grid; gap: 12px; margin-top: 22px; }
.feature-row__bullets li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-2); font-size: .95rem; }
.feature-row__bullets svg { flex: none; width: 18px; height: 18px; color: var(--accent-light); margin-top: 3px; }
.feature-row__big { font-size: clamp(3rem, 8vw, 5rem); font-weight: 900; font-family: var(--mono); color: var(--accent-light); text-align: center; line-height: 1; }
.feature-row__big small { display: block; font-family: var(--font); font-size: .9rem; font-weight: 600; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; margin-top: 10px; }
@media (max-width: 860px) {
  .feature-row { grid-template-columns: 1fr; }
  .feature-row--flip .feature-row__media { order: -1; }
}

/* page-level band — translucent so the grid texture shows through */
.band { background: rgba(124, 58, 237, .04); border-block: 1px solid var(--border-soft); }

/* ───────────────────────────────────────────── Typography atoms */
.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-light);
}
.eyebrow--bracket::before { content: "[ "; color: var(--faint); }
.eyebrow--bracket::after  { content: " ]"; color: var(--faint); }

h1, h2, h3 { color: var(--text); letter-spacing: -.02em; font-weight: 800; }
.h-display { font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 900; line-height: 1.02; }
.h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 700; }
.accent { color: var(--accent-light); }
.mono { font-family: var(--mono); }

.lede { color: var(--text-2); font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.7; }
.muted { color: var(--muted); }
.faint { color: var(--faint); }

.section__header { max-width: 720px; margin-inline: auto; text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.section__header .lede { margin-top: 16px; }
.section__header h2 { margin-top: 12px; }

/* ───────────────────────────────────────────── Buttons (atoms) */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: .95rem; line-height: 1;
  padding: 13px 22px; border-radius: var(--r-pill);
  transition: transform .18s ease, background .2s ease, border-color .2s ease, filter .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent-grad);
  background-size: 180% 180%;
  background-position: 0% 50%;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
  transition: transform .2s ease, background-position .6s ease, filter .2s ease, box-shadow .25s ease;
}
.btn--primary:hover { transform: translateY(-2px); background-position: 100% 50%; filter: brightness(1.06); box-shadow: 0 12px 30px rgba(0,0,0,.45); }
.btn--ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--accent); background: var(--accent-tint); }
.btn--lg { padding: 16px 30px; font-size: 1.02rem; }
.btn--sm { padding: 9px 16px; font-size: .85rem; }
.btn--block { width: 100%; }

/* ───────────────────────────────────────────── Nav (organism) */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10,10,20,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border-soft);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__logo { width: 30px; height: 30px; border-radius: 7px; object-fit: cover; }
.brand__name { font-weight: 900; letter-spacing: .04em; font-size: .98rem; }
.brand__name .accent { color: var(--accent-light); }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  padding: 8px 14px; border-radius: var(--r-sm);
  font-size: .9rem; color: var(--text-2); font-weight: 600;
  transition: color .15s ease, background .15s ease;
}
.nav__links a:hover { color: var(--text); background: var(--surface); }
.nav__links a[aria-current="page"] { color: var(--accent-light); }

.nav__actions { display: flex; align-items: center; gap: 10px; }

.nav__burger { display: none; width: 42px; height: 42px; border-radius: var(--r-sm); color: var(--text); }
.nav__burger svg { margin-inline: auto; }

/* mobile drawer */
.nav__drawer {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 99;
  background: rgba(10,10,20,.97);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 16px clamp(20px,5vw,40px) 28px;
  display: none; flex-direction: column; gap: 4px;
}
.nav__drawer.is-open { display: flex; }
.nav__drawer a { padding: 14px 12px; font-size: 1.05rem; font-weight: 600; color: var(--text-2); border-bottom: 1px solid var(--border-soft); }
.nav__drawer a:last-of-type { border-bottom: 0; }
.nav__drawer .btn { margin-top: 14px; }

/* ───────────────────────────────────────────── Hero (organism) */
.hero { position: relative; padding-top: calc(var(--nav-h) + clamp(48px, 8vw, 96px)); padding-bottom: clamp(48px, 7vw, 90px); text-align: center; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(55% 42% at 50% -8%, rgba(139,92,246,.14), transparent 72%); pointer-events: none; }
.hero__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.hero__brand { display: inline-flex; align-items: center; gap: 16px; margin: 22px 0 8px; }
.hero__brand img { width: clamp(48px, 7vw, 76px); height: clamp(48px, 7vw, 76px); border-radius: 16px; }
.hero__brand-name { font-size: clamp(1.8rem, 5vw, 3.4rem); font-weight: 900; letter-spacing: .02em; }
.hero__headline { margin-top: 18px; }
.hero__lede { max-width: 640px; margin: 22px auto 0; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }
.hero__note { margin-top: 22px; font-size: .82rem; color: var(--faint); }
.hero__note .mono { color: var(--muted); }

/* stat row (molecule) */
.stat-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: clamp(18px, 4vw, 40px); margin-top: 34px; }
.stat { text-align: center; }
.stat__num { display: block; font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 900; color: var(--text); font-family: var(--mono); }
.stat__num .accent { color: var(--accent-light); }
.stat__label { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.stat-row__div { width: 1px; height: 38px; background: var(--border); }

/* ───────────────────────────────────────────── App frame (organism) — the screenshot showcase */
.app-frame {
  margin: clamp(48px, 7vw, 84px) auto 0;
  max-width: 1040px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.app-frame__bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: var(--bg-2); border-bottom: 1px solid var(--border-soft); }
.app-frame__dots { display: flex; gap: 6px; }
.app-frame__dots span { width: 11px; height: 11px; border-radius: 50%; background: #2c2e52; }
.app-frame__title { margin-left: 10px; font-size: .8rem; color: var(--muted); font-family: var(--mono); }
.app-frame img { width: 100%; display: block; }

/* ───────────────────────────────────────────── Cards (molecules) */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: clamp(22px, 3vw, 30px);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.card--hover:hover { transform: translateY(-4px); border-color: var(--accent); }

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

/* icon tile (atom) */
.icon-tile {
  width: 52px; height: 52px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--accent-tint);
  border: 1px solid rgba(139,92,246,.35);
  color: var(--accent-light);
}
.icon-tile svg { width: 24px; height: 24px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: .95rem; }

/* benefit list-item with check */
.benefit { display: flex; gap: 14px; align-items: flex-start; }
.benefit__check { flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: rgba(74,222,128,.12); border: 1px solid rgba(74,222,128,.4); color: var(--green); }
.benefit__check svg { width: 15px; height: 15px; }
.benefit h3 { font-size: 1.05rem; font-weight: 700; }
.benefit p { color: var(--muted); font-size: .92rem; margin-top: 4px; }

/* ───────────────────────────────────────────── Comparison (organism) */
.compare__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.vs-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r);
  padding: 26px 22px; position: relative;
}
.vs-card__logo { height: 34px; display: flex; align-items: center; font-weight: 900; font-size: 1.15rem; letter-spacing: .02em; margin-bottom: 18px; }
.vs-card__logo--paragon { color: #FF4D4D; }
.vs-card__logo--exm     { color: #EC4899; }
.vs-card__logo--ut      { color: #38BDF8; }
.vs-card__price { font-size: 2.2rem; font-weight: 900; font-family: var(--mono); }
.vs-card__model { font-size: .82rem; color: var(--muted); margin-top: 4px; }
.vs-card__con { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border-soft); display: flex; gap: 8px; align-items: flex-start; font-size: .85rem; color: var(--text-2); }
.vs-card__con svg { flex: none; width: 16px; height: 16px; color: var(--red); margin-top: 2px; }
.vs-card__overtime { margin-top: auto; padding-top: 14px; font-size: .76rem; color: var(--faint); }
.vs-card__shot { margin-top: 14px; border-radius: 10px; overflow: hidden; border: 1px solid var(--border-soft); opacity: .8; }
.vs-card__shot img { width: 100%; height: 84px; object-fit: cover; object-position: top; }

/* Royal Tweaks winner card */
.vs-card--win {
  border-color: var(--accent);
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(139,92,246,.16), transparent 60%),
    var(--surface-2);
}
.vs-card--win .vs-card__logo { color: var(--accent-light); }
.vs-card--win .vs-card__price { color: #fff; }
.vs-card__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent-grad); color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: var(--r-pill); white-space: nowrap; }
.vs-card__pro { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(139,92,246,.3); display: flex; gap: 8px; align-items: flex-start; font-size: .85rem; color: var(--text); }
.vs-card__pro svg { flex: none; width: 16px; height: 16px; color: var(--green); margin-top: 2px; }
.vs-card--win .btn { margin-top: 18px; }

/* ───────────────────────────────────────────── Pricing (organism) */
.pricing-card { max-width: 460px; margin-inline: auto; text-align: center; position: relative; border-color: var(--accent);
  background: radial-gradient(120% 90% at 50% 0%, rgba(139,92,246,.15), transparent 55%), var(--surface-2); }
.pricing-card__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent-grad); color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 6px 16px; border-radius: var(--r-pill); }
.pricing-card__plan { font-size: 1.3rem; font-weight: 800; margin: 8px 0 18px; }
.price-row { display: flex; align-items: flex-start; justify-content: center; gap: 4px; }
.price-row__cur { font-size: 1.5rem; font-weight: 800; color: var(--accent-light); margin-top: 8px; }
.price-row__amt { font-size: 4rem; font-weight: 900; line-height: 1; }
.price-row__per { align-self: flex-end; color: var(--muted); font-size: .9rem; margin-bottom: 8px; }
.pricing-card__sub { color: var(--muted); font-size: .9rem; margin: 12px 0 24px; }
.pricing-card__cta { width: 100%; }
.pricing-card__guarantee { margin-top: 14px; font-size: .82rem; color: var(--faint); }
.pricing-features { margin-top: 26px; text-align: left; display: grid; gap: 12px; }
.pricing-features li { display: flex; gap: 12px; align-items: flex-start; font-size: .93rem; color: var(--text-2); }
.pricing-features svg { flex: none; width: 18px; height: 18px; color: var(--green); margin-top: 2px; }

/* ───────────────────────────────────────────── Accordion (organism) */
.accordion { display: grid; gap: 12px; }
.accordion__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.accordion__head { width: 100%; display: flex; align-items: center; gap: 14px; padding: 20px 22px; text-align: left; font-weight: 700; font-size: 1.02rem; color: var(--text); }
.accordion__head:hover { color: var(--accent-light); }
.accordion__chev { margin-left: auto; flex: none; font-size: 1.3rem; color: var(--accent-light); transition: transform .25s ease; line-height: 1; }
.accordion__item.is-open .accordion__chev { transform: rotate(45deg); }
.accordion__body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.accordion__body-inner { padding: 0 22px 22px; color: var(--muted); font-size: .95rem; line-height: 1.7; }
.accordion__body-inner .mono { color: var(--text-2); }

/* ───────────────────────────────────────────── Game gallery (organism) */
.game-strip__label { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); margin-bottom: 22px; text-align: center; }
.game-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; }
.game-tile { position: relative; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 460 / 215; }
.game-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s cubic-bezier(.16,1,.3,1); }
.game-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,10,20,.55)); }
.game-tile:hover img { transform: scale(1.07); }
@media (prefers-reduced-motion: reduce) { .game-tile:hover img { transform: none; } }

/* ───────────────────────────────────────────── Final CTA (organism) */
.final-cta { text-align: center; }
.final-cta__inner { max-width: 720px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; gap: 20px; }

/* ───────────────────────────────────────────── Contact (organism) */
.contact-card { max-width: 560px; margin-inline: auto; text-align: center; }
.contact-card .icon-tile { margin-inline: auto; }
.contact-email { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; font-family: var(--mono); font-size: 1.15rem; color: var(--accent-light); font-weight: 700; }
.contact-form { display: grid; gap: 14px; margin-top: 28px; text-align: left; }
.contact-form label { font-size: .82rem; color: var(--muted); font-weight: 600; }
.contact-form input, .contact-form textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 12px 14px; color: var(--text); margin-top: 6px;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); outline: none; }
.contact-form textarea { min-height: 130px; resize: vertical; }

/* ───────────────────────────────────────────── Footer (organism) */
.footer { border-top: 1px solid var(--border-soft); background: var(--bg-2); padding-top: clamp(48px, 6vw, 72px); }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer__tagline { margin-top: 14px; max-width: 280px; font-size: .9rem; }
.footer__col h5 { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin-bottom: 14px; }
.footer__col a { display: block; color: var(--text-2); font-size: .92rem; padding: 6px 0; }
.footer__col a:hover { color: var(--accent-light); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-block: 28px; margin-top: clamp(40px, 5vw, 64px); border-top: 1px solid var(--border-soft); font-size: .82rem; color: var(--faint); }

/* ───────────────────────────────────────────── Scan toasts (organism) */
.rt-toasts {
  position: fixed; bottom: 20px; right: 20px; z-index: 500;
  display: flex; flex-direction: column; gap: 12px;
  width: min(340px, calc(100vw - 40px));
  pointer-events: none;
}
.rt-toast {
  pointer-events: auto;
  position: relative;
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: var(--shadow-lg);
  transform: translateX(24px); opacity: 0;
  transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .35s ease;
}
.rt-toast.is-in { transform: none; opacity: 1; }
.rt-toast.is-out { transform: translateX(24px); opacity: 0; }
.rt-toast__icon {
  flex: none; width: 32px; height: 32px; border-radius: 9px;
  display: grid; place-items: center;
  background: var(--accent-tint); border: 1px solid rgba(139,92,246,.35);
  color: var(--accent-light);
}
.rt-toast__icon svg { width: 17px; height: 17px; }
.rt-toast--warn .rt-toast__icon { background: rgba(251,191,36,.12); border-color: rgba(251,191,36,.4); color: var(--amber); }
.rt-toast__text { font-size: .88rem; line-height: 1.5; color: var(--text-2); }
.rt-toast__text b { color: var(--text); font-weight: 700; }
.rt-toast__close { position: absolute; top: 8px; right: 8px; width: 24px; height: 24px; border-radius: 6px; color: var(--faint); display: grid; place-items: center; }
.rt-toast__close:hover { color: var(--text); background: var(--surface-3); }
.rt-toast--cta { border-color: var(--accent); background: radial-gradient(120% 120% at 100% 0%, rgba(139,92,246,.16), transparent 60%), var(--surface-2); }
.rt-toast__cta { margin-top: 12px; }
@media (max-width: 560px) { .rt-toasts { display: none; } }

/* ───────────────────────────────────────────── Reveal / parallax animations */
.reveal { opacity: 0; transform: translateY(32px); filter: blur(6px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1), filter .7s ease; will-change: opacity, transform, filter; }
.reveal.is-visible { opacity: 1; transform: none; filter: blur(0); }
.reveal--left  { transform: translateX(-32px); }
.reveal--right { transform: translateX(32px); }
.reveal--scale { transform: scale(.94); }
.reveal.is-visible.reveal--left, .reveal.is-visible.reveal--right, .reveal.is-visible.reveal--scale { transform: none; }
[data-parallax] { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
  [data-parallax] { transform: none !important; }
  .btn:hover, .card--hover:hover { transform: none; }
}

/* ───────────────────────────────────────────── Responsive */
@media (max-width: 1000px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .compare__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__burger { display: grid; place-items: center; }
  .nav__cta-desktop { display: none; }
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .compare__grid { grid-template-columns: 1fr; }
  .stat-row__div { display: none; }
  .detector__specs { grid-template-columns: 1fr; }
}
