:root {
  --bg: #ffffff;
  --soft: #f6f7fb;
  --soft-2: #eef0f6;
  --line: #e6e8ec;
  --text: #16181d;
  --muted: #6b7280;
  --accent: #4f46e5;
  --accent-2: #7c75f0;
  --ok: #16a34a;
  --warn-bg: #fef3c7;
  --warn-ink: #92520a;
  --card: #ffffff;
  --card-grad: linear-gradient(180deg, #faf9ff, #f3f1ff);
  --nav-bg: rgba(255,255,255,.78);
  --hero-tint: #e9e7ff;
  --radius: 16px;
  --shadow-sm: 0 1px 2px rgba(16,24,40,.06), 0 1px 3px rgba(16,24,40,.05);
  --shadow-md: 0 10px 30px rgba(16,24,40,.08);
  --shadow-lg: 0 24px 60px rgba(79,70,229,.18);
}

/* Dark palette: manual toggle ([data-theme="dark"]) and OS default */
:root[data-theme="dark"] { --bg: #0e1015; --soft: #161922; --soft-2: #20242f; --line: #2a2f3b; --text: #e9ebf2; --muted: #9aa3b4; --accent: #7c75f0; --accent-2: #9b95f7; --ok: #3ddc84; --warn-bg: #3a2f12; --warn-ink: #f5c451; --card: #161922; --card-grad: linear-gradient(180deg, #1a1d28, #15131f); --nav-bg: rgba(16,18,24,.72); --hero-tint: #211d3f; --shadow-sm: 0 1px 2px rgba(0,0,0,.4); --shadow-md: 0 10px 30px rgba(0,0,0,.45); --shadow-lg: 0 24px 60px rgba(0,0,0,.55); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) { --bg: #0e1015; --soft: #161922; --soft-2: #20242f; --line: #2a2f3b; --text: #e9ebf2; --muted: #9aa3b4; --accent: #7c75f0; --accent-2: #9b95f7; --ok: #3ddc84; --warn-bg: #3a2f12; --warn-ink: #f5c451; --card: #161922; --card-grad: linear-gradient(180deg, #1a1d28, #15131f); --nav-bg: rgba(16,18,24,.72); --hero-tint: #211d3f; --shadow-sm: 0 1px 2px rgba(0,0,0,.4); --shadow-md: 0 10px 30px rgba(0,0,0,.45); --shadow-lg: 0 24px 60px rgba(0,0,0,.55); }
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; color: var(--text); background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased; line-height: 1.55;
  transition: background .25s ease, color .25s ease;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3 { letter-spacing: -0.022em; }

.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .12em;
  font-size: 12px; font-weight: 700; color: var(--accent); margin-bottom: 10px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent); color: #fff; border: 1px solid var(--accent);
  padding: 11px 20px; border-radius: 12px; font-weight: 600; cursor: pointer; font-size: 15px;
  white-space: nowrap;
  transition: transform .06s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { box-shadow: 0 8px 20px rgba(79,70,229,.28); }
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: 13px; }
.btn-sm { padding: 8px 15px; font-size: 14px; }
.btn-full { width: 100%; }
.btn-ghost { background: var(--card); color: var(--accent); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); box-shadow: none; }
.btn:disabled { opacity: .6; cursor: default; box-shadow: none; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 20; background: var(--nav-bg); -webkit-backdrop-filter: saturate(180%) blur(14px); backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--line); transform: translateZ(0); will-change: transform; -webkit-transform: translateZ(0); backface-visibility: hidden; }
.nav-inner { max-width: 1120px; margin: 0 auto; padding: 13px 24px; display: flex; align-items: center; justify-content: space-between; }
.logo-row { display: flex; align-items: center; gap: 10px; }
.logo { width: 34px; height: 34px; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-sm); display: block; }
.logo img { width: 100%; height: 100%; display: block; }
.wordmark { font-weight: 700; font-size: 18px; }
.nav-links { display: flex; align-items: center; gap: 24px; font-weight: 500; color: var(--muted); }
.nav-links a:not(.btn):hover { color: var(--text); }
.nav-tools { display: flex; align-items: center; gap: 10px; }
.theme-btn { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--line); background: var(--card); color: var(--text); border-radius: 10px; cursor: pointer; font-size: 16px; transition: border-color .12s, background .12s; }
.theme-btn:hover { border-color: var(--accent-2); }
.lang-select { appearance: none; -webkit-appearance: none; border: 1px solid var(--line); background: var(--card); color: var(--text); border-radius: 10px; padding: 8px 26px 8px 10px; font-size: 13px; font-weight: 700; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239aa3b4' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 8px center; }
.lang-select:hover { border-color: var(--accent-2); }

/* Hamburger (mobile only) */
.nav-burger { display: none; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line); background: var(--card); color: var(--text); border-radius: 10px; cursor: pointer; font-size: 18px; line-height: 1; }
.nav-burger:hover { border-color: var(--accent-2); }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1100px 520px at 78% -10%, var(--hero-tint) 0%, rgba(255,255,255,0) 56%), var(--bg);
}
.hero-grid {
  max-width: 1120px; margin: 0 auto; padding: 80px 24px 88px;
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center;
}
.hero-copy { max-width: 560px; }
.hero h1 { font-size: 54px; line-height: 1.04; margin: 12px 0 18px; }
.hero h1 .grad { background: linear-gradient(120deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lede { font-size: 18px; color: var(--muted); margin: 0 0 28px; }
.hero-cta { display: flex; gap: 12px; }
.hero-price { margin-top: 22px; color: var(--muted); font-size: 14.5px; }
.hero-price b { color: var(--text); }
.hero-trial { margin-top: 8px; color: var(--ok); font-size: 13.5px; font-weight: 600; }
.hero-trust { margin-top: 8px; color: var(--muted); font-size: 13px; }
.pill { display: inline-block; background: var(--warn-bg); color: var(--warn-ink); font-weight: 600; font-size: 13px; padding: 6px 14px; border-radius: 999px; margin-bottom: 8px; }

/* Hero product showcase (tabbed) */
.hero-visual { justify-self: center; width: 100%; max-width: 460px; }
.show { position: relative; width: 100%; }
.show-viewport { position: relative; overflow: hidden; border-radius: 18px; }
.show-track { display: flex; transition: transform .5s cubic-bezier(.4,.0,.2,1); }
.slide { min-width: 100%; }

.mock {
  width: 100%; aspect-ratio: 16 / 13; border-radius: 18px;
  background: linear-gradient(160deg, #1f2335, #11131f); box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.08); padding: 14px 18px 16px; color: #fff; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.mock-bar { display: flex; gap: 7px; flex: none; }
.mock-bar span { width: 11px; height: 11px; border-radius: 50%; background: #ff5f57; }
.mock-bar span:nth-child(2) { background: #febc2e; }
.mock-bar span:nth-child(3) { background: #28c840; }
.mock-lock, .mock-center { flex: 1; min-height: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 5px; }
.mock-ring { width: 52px; height: 52px; display: grid; place-items: center; font-size: 23px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); box-shadow: 0 0 0 8px rgba(124,117,240,.12); }
.mock-time { font-size: 27px; font-weight: 700; letter-spacing: -.02em; margin-top: 8px; }
.mock-hint { font-size: 13px; color: #aeb2c7; }
.mock-jobs { margin-top: 10px; width: 100%; display: flex; flex-direction: column; gap: 6px; }
.mock-job { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #cfd3e6; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 8px; padding: 6px 10px; }
.mock-job .dot { width: 7px; height: 7px; border-radius: 50%; background: #34d27b; box-shadow: 0 0 0 0 rgba(52,210,123,.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(52,210,123,.55); } 70% { box-shadow: 0 0 0 6px rgba(52,210,123,0); } 100% { box-shadow: 0 0 0 0 rgba(52,210,123,0); } }

.credit-num { font-size: 64px; font-weight: 800; line-height: 1; color: #6ee7a4; letter-spacing: -.04em; }
.credit-label { font-size: 13px; color: #cfd3e6; }
.credit-bar { width: 70%; height: 8px; border-radius: 999px; background: rgba(255,255,255,.12); margin: 14px 0 8px; overflow: hidden; }
.credit-bar i { display: block; height: 100%; background: linear-gradient(90deg, #34d27b, #6ee7a4); border-radius: 999px; }
.credit-sub { font-size: 12px; color: #8fa0b8; }
.lid-emoji { font-size: 48px; }

/* Credits slide — polished stat card */
.mock-center.credits { gap: 0; }
.credit-chip { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 600; color: #8fe3a6; background: rgba(52,210,123,.12); border: 1px solid rgba(52,210,123,.28); padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.mock-center.credits .credit-num {
  font-size: 76px; background: linear-gradient(180deg, #b7f5cf, #34d27b);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 6px 18px rgba(52,210,123,.35));
}
.mock-center.credits .credit-label { margin-top: 2px; }
.credit-stats { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.credit-stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 10px 16px; min-width: 92px; }
.credit-stat b { display: block; font-size: 20px; font-weight: 800; color: #fff; }
.credit-stat span { font-size: 11px; color: #aeb2c7; }

/* Download — hover menu of all available versions, attached to the button.
   Clicking the button downloads the default (pinned latest); hovering reveals
   the per-major version list. */
.dl-more { position: relative; margin-top: 10px; }
.dl-hover { position: relative; display: inline-flex; align-items: center; }
.linklike { background: none; border: none; padding: 0; cursor: pointer; font: inherit; font-size: 13.5px; font-weight: 600; color: var(--accent); }
.linklike:hover { text-decoration: underline; }
.dl-menu { position: absolute; top: calc(100% + 10px); left: 0; min-width: 240px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 6px; z-index: 30; text-align: left; }
.dl-menu[hidden] { display: none; }
/* Transparent bridge across the gap so the pointer can travel button → menu
   without the hover dropping. */
.dl-menu::before { content: ''; position: absolute; left: 0; right: 0; top: -10px; height: 10px; }
/* Reveal the menu while hovering the button/menu, or when keyboard-focused.
   Only when there's more than one version to choose from (.has-versions). */
.dl-hover.has-versions:hover .dl-menu,
.dl-hover.has-versions:focus-within .dl-menu { display: block; }
.dl-menu a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 12px; border-radius: 10px; font-size: 14px; font-weight: 600; color: var(--text); }
.dl-menu a:hover { background: var(--soft); }
.dl-menu a .meta { font-size: 12px; font-weight: 500; color: var(--muted); }
.dl-menu a .latest { font-size: 11px; font-weight: 700; color: #fff; background: var(--accent); padding: 2px 8px; border-radius: 999px; }

/* Showcase tabs (labels double as the slide selector) */
.show-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.show-tabs button {
  font-size: 12.5px; font-weight: 600; color: var(--muted); cursor: pointer;
  background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px;
  transition: all .15s ease;
}
.show-tabs button:hover { color: var(--text); border-color: var(--accent-2); }
.show-tabs button.active { color: #fff; background: var(--accent); border-color: var(--accent); box-shadow: 0 4px 12px rgba(79,70,229,.3); }

/* Sections */
.section-inner { max-width: 1120px; margin: 0 auto; padding: 84px 24px; text-align: center; }
.features h2, .pricing h2 { font-size: 36px; margin: 0 0 10px; }
.pricing .sub { color: var(--muted); margin: 0 auto 40px; font-size: 16.5px; max-width: 600px; }

/* Features */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; text-align: left; }
.feature { background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: transform .12s ease, box-shadow .15s ease; }
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature .fi { width: 46px; height: 46px; display: grid; place-items: center; font-size: 24px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; }
.feature h3 { font-size: 17px; margin: 14px 0 6px; }
.feature p { color: var(--muted); margin: 0; font-size: 14.5px; }

/* Pricing + checkout (unified order block) */
.pricing { background: var(--soft); }
.order {
  display: grid; grid-template-columns: 1.05fr .95fr; text-align: left;
  background: var(--card); border: 1px solid var(--line); border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow-md); max-width: 940px; margin: 0 auto;
}
.order-config { padding: 36px 36px 32px; }
.oc-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.oc-head label { font-weight: 600; font-size: 16px; }
.oc-note { margin-top: 22px; font-size: 13px; color: var(--muted); min-height: 18px; }
.oc-note b { color: var(--text); }

.qty { display: flex; align-items: center; }
.qty button { width: 38px; height: 38px; font-size: 19px; line-height: 1; border: 1px solid var(--line); background: var(--soft); cursor: pointer; color: var(--text); transition: background .12s; }
.qty button:hover { background: var(--soft-2); }
.qty button:first-child { border-radius: 9px 0 0 9px; }
.qty button:last-child { border-radius: 0 9px 9px 0; }
.qty input { width: 58px; height: 38px; text-align: center; border: 1px solid var(--line); border-left: none; border-right: none; font-size: 15px; font-weight: 600; background: var(--card); color: var(--text); }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Refined slider with filled progress (--pct set by JS) */
.slider {
  -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 999px;
  background: linear-gradient(to right, var(--accent) 0%, var(--accent) var(--pct, 0%), var(--soft-2) var(--pct, 0%), var(--soft-2) 100%);
  outline: none; margin: 4px 0 0; cursor: pointer;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 16px; height: 16px; border-radius: 50%;
  background: #fff; border: none; box-shadow: 0 1px 4px rgba(16,24,40,.25), 0 0 0 2px var(--accent) inset;
  transition: transform .1s ease;
}
.slider::-webkit-slider-thumb:hover { transform: scale(1.12); }
.slider::-moz-range-thumb { width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 2px solid var(--accent); box-shadow: 0 1px 4px rgba(16,24,40,.25); cursor: pointer; }
.slider::-moz-range-track { height: 4px; border-radius: 999px; background: var(--soft-2); }

.tier-track { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tier-chip { font-size: 12.5px; font-weight: 600; color: var(--muted); background: var(--soft); border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; cursor: pointer; transition: all .12s; }
.tier-chip:hover { border-color: var(--accent-2); color: var(--text); }
.tier-chip.active { color: #fff; background: var(--accent); border-color: var(--accent); box-shadow: 0 4px 12px rgba(79,70,229,.35); }
.tier-chip b { font-weight: 700; }

.order-pay { background: var(--card-grad); border-left: 1px solid var(--line); padding: 36px; display: flex; flex-direction: column; }
.op-price { display: flex; align-items: baseline; gap: 8px; }
.op-per { font-size: 44px; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.op-per .was { font-size: 21px; font-weight: 600; color: var(--muted); text-decoration: line-through; margin-right: 8px; }
.op-perlabel { color: var(--muted); font-size: 14px; font-weight: 500; margin: 6px 0 16px; }
.op-rows { font-size: 14.5px; margin-bottom: 18px; }
.op-row { display: flex; justify-content: space-between; padding: 5px 0; }
.op-row.save { color: var(--ok); font-weight: 600; }
.op-row.total { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 10px; font-weight: 800; font-size: 18px; }
.op-row.ent { color: var(--accent); font-weight: 600; }
.op-email { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 14px; }
.op-email input { width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 11px; font-size: 15px; margin-top: 7px; background: var(--card); color: var(--text); }
.op-email input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(79,70,229,.15); }

.buy-msg { margin-top: 12px; font-size: 14px; min-height: 18px; text-align: center; }
.buy-msg.err { color: #e5484d; }
.trust { text-align: center; color: var(--muted); font-size: 12px; margin-top: 14px; }

.ent-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  max-width: 940px; margin: 22px auto 0; padding: 22px 26px; text-align: left;
  background: var(--card); border: 1px dashed var(--line); border-radius: 16px; color: var(--muted); font-size: 15px;
}
.ent-strip strong { color: var(--text); }
.ent-strip .btn { flex: none; }

.foot { max-width: 1120px; margin: 0 auto; padding: 32px 24px; display: flex; justify-content: space-between; color: var(--muted); font-size: 13px; border-top: 1px solid var(--line); }
.foot a:hover { color: var(--text); }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; padding-top: 56px; }
  .hero-copy { max-width: 640px; margin: 0 auto; }
  .hero-cta { justify-content: center; }
  .hero-visual { order: -1; max-width: 420px; }
  .order { grid-template-columns: 1fr; }
  .order-pay { border-left: none; border-top: 1px solid var(--line); }
}

/* Collapse the nav into a hamburger menu on tablets/phones. */
@media (max-width: 860px) {
  .nav-inner { position: relative; }
  .nav-burger { display: grid; }
  .nav-links {
    display: none;
    position: absolute; top: calc(100% + 1px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--card);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    padding: 10px 16px 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { display: block; padding: 12px 6px; border-radius: 10px; }
  .nav-links a:not(.btn):hover { background: var(--soft); }
  .nav-links .btn-sm { width: 100%; margin-top: 6px; padding: 12px; }
  .dl-hover { display: block; }
  .dl-hover #navDownload { display: block; }
  /* No hover on touch — the Download row just links to /download. */
  .dl-hover .dl-menu { display: none !important; }
}

@media (max-width: 680px) {
  .section-inner { padding: 60px 20px; }
  .hero-grid { padding: 44px 20px 60px; }
  .hero h1 { font-size: 36px; }
  .lede { font-size: 16.5px; }
  .features h2, .pricing h2 { font-size: 28px; }
  .feature-grid { grid-template-columns: 1fr; }
  .ent-strip { flex-direction: column; align-items: flex-start; }
  .order-config, .order-pay { padding: 26px 22px; }
  .foot { flex-direction: column; gap: 10px; text-align: center; align-items: center; }
}

/* Phones: scale the showcase mock so its content never overflows. */
@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .hero-visual { max-width: 100%; }
  .mock-time { font-size: 24px; }
  .mock-ring { width: 48px; height: 48px; font-size: 21px; }
  .credit-num, .mock-center.credits .credit-num { font-size: 52px; }
  .credit-stats { gap: 6px; }
  .credit-stat { min-width: 0; flex: 1; padding: 8px 10px; }
  .show-tabs button { font-size: 11.5px; padding: 6px 11px; }
}

/* Contact sales modal */
.cm-overlay { position: fixed; inset: 0; z-index: 60; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(16,24,40,.5); backdrop-filter: blur(3px); }
.cm-overlay[hidden] { display: none; }
.cm-box { position: relative; width: 100%; max-width: 460px; background: var(--card); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 28px; max-height: 90vh; overflow-y: auto; }
.cm-box h3 { margin: 0 0 6px; font-size: 22px; }
.cm-sub { margin: 0 0 18px; color: var(--muted); font-size: 14.5px; }
.cm-close { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border: none; background: var(--soft); color: var(--text); border-radius: 9px; cursor: pointer; font-size: 14px; }
.cm-close:hover { background: var(--soft-2); }
.cm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.cm-box input, .cm-box textarea { width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 11px; font-size: 15px; background: var(--card); color: var(--text); font-family: inherit; }
.cm-box textarea { resize: vertical; }
.cm-box input:focus, .cm-box textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(79,70,229,.15); }
.cm-msg { min-height: 18px; font-size: 13.5px; margin: 10px 0; text-align: center; }
.cm-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.cm-captcha { margin: 12px 0 2px; display: flex; justify-content: center; min-height: 0; }
.cm-msg.err { color: #e5484d; }
.cm-msg.ok { color: var(--ok); }
@media (max-width: 460px) { .cm-grid { grid-template-columns: 1fr; } }
