:root {
  --bg: #0b0e12;
  --bg-elevated: #12171f;
  --bg-soft: #181e28;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f4f1ea;
  --muted: #9aa3b2;
  --amber: #e83c3c;
  --amber-deep: #b91c1c;
  --teal: #3b82f6;
  --danger: #e85d5d;
  --ok: #3ecf8e;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Onest', system-ui, sans-serif;
  --nav-h: 72px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 12% -10%, rgba(232, 168, 56, 0.12), transparent 55%),
    radial-gradient(900px 500px at 92% 8%, rgba(43, 184, 176, 0.08), transparent 50%),
    linear-gradient(180deg, #0b0e12 0%, #0e131a 40%, #0b0e12 100%);
  background-attachment: fixed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-enter-active,
.page-leave-active {
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.page-enter-from {
  opacity: 0;
  transform: translateY(8px);
}

.page-leave-to {
  opacity: 0;
  transform: translateY(-6px);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  max-width: 42rem;
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.grid-2 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* layout shell */
.shell { min-height: 100vh; display: flex; flex-direction: column; }
.main { flex: 1; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 46px; padding: 0.7rem 1.25rem; border-radius: 999px;
  border: 1px solid transparent; font-weight: 600; letter-spacing: 0.01em;
  cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  background: transparent; color: inherit; text-decoration: none;
}
.btn--block { width: 100%; }
.btn--primary { color: #fff; background: linear-gradient(135deg, #e83c3c 0%, #ff6b4a 100%); box-shadow: 0 10px 30px rgba(232,60,60,.32); }
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 14px 34px rgba(232,60,60,.4); }
.btn--ghost { color: var(--text); border-color: var(--line); }
.btn--ghost:hover { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.04); }
.btn--soft { color: var(--text); background: rgba(255,255,255,.06); border-color: var(--line); }
.btn--soft:hover { background: rgba(255,255,255,.1); }
.btn:disabled { opacity: .5; pointer-events: none; }

/* header */
.header { position: sticky; top: 0; z-index: 40; height: var(--nav-h); border-bottom: 1px solid transparent; }
.header--solid { background: rgba(11,14,18,.88); border-bottom-color: var(--line); backdrop-filter: blur(14px); }
.header__inner { height: 100%; display: flex; align-items: center; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .75rem; min-width: max-content; }
.brand__mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; font-family: var(--font-display); font-size: .85rem; font-weight: 800; color: #16120a; background: linear-gradient(145deg, var(--amber), #f3c76a); box-shadow: 0 8px 20px rgba(232,168,56,.25); }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; letter-spacing: .04em; }
.brand__text small { color: var(--muted); font-size: .72rem; }
.nav { display: flex; align-items: center; gap: .15rem; margin-left: auto; }
.nav__link { position: relative; padding: .55rem .8rem; color: var(--muted); font-weight: 500; font-size: .95rem; }
.nav__link:hover, .nav__link--active { color: var(--text); }
.nav__link--active::after { content: ''; position: absolute; left: .8rem; right: .8rem; bottom: .2rem; height: 2px; border-radius: 2px; background: var(--amber); }
.header__actions { display: flex; align-items: center; gap: .55rem; }
.account { padding: .45rem .7rem; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid var(--line); font-weight: 600; font-size: .9rem; }
.burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.04); cursor: pointer; padding: 0; place-items: center; gap: 5px; }
.burger span { display: block; width: 16px; height: 2px; background: var(--text); }
@media (max-width: 980px) {
  .nav { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; flex-direction: column; align-items: stretch; gap: .25rem; padding: 1rem; background: rgba(11,14,18,.96); border-bottom: 1px solid var(--line); }
  .nav--open { display: flex; }
  .burger { display: grid; }
  .header__actions .btn--ghost { display: none; }
}

/* footer */
.footer { margin-top: 3rem; border-top: 1px solid var(--line); background: rgba(0,0,0,.28); padding: 3rem 0 1.5rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer__brand { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin-bottom: .75rem; }
.footer__copy { margin: 0; color: var(--muted); max-width: 28rem; }
.footer__title { font-weight: 700; margin-bottom: .85rem; }
.footer__links { display: flex; flex-direction: column; gap: .45rem; }
.footer__links a { color: var(--muted); }
.footer__links a:hover { color: var(--text); }
.footer__bottom { margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: var(--muted); font-size: .88rem; }
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr; } }

/* hero */
.hero { position: relative; min-height: calc(100vh - var(--nav-h)); display: grid; align-items: end; padding: 4rem 0 5rem; overflow: hidden; }
.hero__glow { position: absolute; inset: 10% 5% auto auto; width: min(52vw,640px); height: min(52vw,640px); border-radius: 50%; background: radial-gradient(circle, rgba(232,168,56,.22), transparent 68%); filter: blur(8px); animation: pulse 6s ease-in-out infinite; }
.hero__road { position: absolute; inset: auto 0 0; height: 42%; background: linear-gradient(180deg, transparent, rgba(0,0,0,.55)), repeating-linear-gradient(90deg, transparent 0 48px, rgba(255,255,255,.04) 48px 96px), linear-gradient(180deg, transparent 0%, #151b24 35%, #0a0d11 100%); mask-image: linear-gradient(180deg, transparent, #000 35%); }
.hero__content { position: relative; z-index: 1; max-width: 720px; animation: rise .7s ease both; }
.hero__brand { margin: 0 0 1rem; font-family: var(--font-display); font-size: clamp(3.4rem,10vw,6.2rem); font-weight: 800; letter-spacing: -.04em; line-height: .92; }
.hero__lead { margin: 0 0 1.75rem; color: var(--muted); font-size: clamp(1.05rem,2vw,1.25rem); max-width: 34rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; }
.features { margin-top: 2rem; }
.feature { padding: 1.4rem 1.35rem; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.03), transparent); }
.feature h3 { margin: 0 0 .5rem; font-family: var(--font-display); font-size: 1.05rem; }
.feature p { margin: 0; color: var(--muted); }
.section--tight { padding-top: 1rem; }
.split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: center; }
.steps { margin: 1.25rem 0 1.75rem; padding-left: 1.15rem; color: var(--muted); display: grid; gap: .55rem; }
.panel { border: 1px solid var(--line); border-radius: calc(var(--radius) + 4px); background: var(--bg-elevated); box-shadow: var(--shadow); padding: .35rem; }
.panel__row { display: flex; justify-content: space-between; gap: 1rem; padding: .95rem 1.1rem; border-bottom: 1px solid var(--line); color: var(--muted); }
.panel__row:last-child { border-bottom: 0; }
.panel__row strong { color: var(--text); font-weight: 600; }
.ok { color: var(--ok) !important; }
.news-head { display: flex; justify-content: space-between; align-items: end; gap: 1rem; margin-bottom: 1.5rem; }
.news-card { display: flex; flex-direction: column; gap: .65rem; padding: 1.35rem; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255,255,255,.02); transition: border-color .18s ease, transform .18s ease, background .18s ease; }
.news-card:hover { transform: translateY(-3px); border-color: rgba(232,168,56,.35); background: rgba(255,255,255,.04); }
.news-card h3 { margin: 0; font-size: 1.05rem; line-height: 1.35; }
.news-card p { margin: 0; color: var(--muted); flex: 1; }
.news-card time { color: var(--muted); font-size: .85rem; }
.news-card__tag { width: max-content; font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--teal); }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes pulse { 0%,100% { opacity: .75; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .hero { align-items: center; min-height: 78vh; } }

/* forms & lists */
.narrow { max-width: 460px; }
.narrow-md { max-width: 520px; }
.form, .card, .checkout { display: grid; gap: .85rem; padding: 1.35rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-elevated); }
label { display: grid; gap: .35rem; color: var(--muted); font-size: .92rem; }
input, select, textarea { min-height: 46px; padding: .7rem .9rem; border-radius: 12px; border: 1px solid var(--line); background: var(--bg); color: var(--text); outline: none; width: 100%; }
input:focus, select:focus, textarea:focus { border-color: rgba(232,168,56,.55); }
.error { margin: 0; color: var(--danger); }
.msg, .note, .status, .hint { margin: 0; color: var(--muted); font-size: .9rem; }
.msg, .status { color: var(--amber); }
.status { color: var(--teal); }
code { color: var(--amber); }
.tabs { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem; margin: 1.5rem 0 1rem; padding: .3rem; border-radius: 999px; background: rgba(255,255,255,.04); border: 1px solid var(--line); }
.tabs a, .tabs button { border: 0; background: transparent; color: var(--muted); min-height: 40px; border-radius: 999px; cursor: pointer; font-weight: 600; display: grid; place-items: center; text-decoration: none; }
.tabs .active { background: rgba(232,168,56,.16); color: var(--text); }

.list { margin-top: 2rem; display: grid; gap: 1rem; }
.server, .row { display: flex; justify-content: space-between; gap: 1.25rem; align-items: center; padding: 1.35rem 1.4rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-elevated); }
.server__top { display: flex; align-items: center; gap: .75rem; margin-bottom: .35rem; }
.server h2, .row h2 { margin: 0; font-size: 1.15rem; font-family: var(--font-display); }
.server p, .row p { margin: 0 0 .85rem; color: var(--muted); }
.server small, .row time { color: var(--muted); }
.badge { font-size: .75rem; font-weight: 700; padding: .2rem .55rem; border-radius: 999px; border: 1px solid var(--line); }
.badge[data-status=online] { color: var(--ok); border-color: rgba(62,207,142,.35); }
.badge[data-status=restart] { color: var(--amber); border-color: rgba(232,168,56,.35); }
.badge[data-status=offline] { color: var(--danger); border-color: rgba(232,93,93,.35); }
.bar { height: 6px; border-radius: 999px; background: rgba(255,255,255,.06); overflow: hidden; margin-bottom: .45rem; max-width: 320px; }
.bar__fill { height: 100%; background: linear-gradient(90deg, var(--teal), var(--amber)); }
@media (max-width: 720px) { .server, .row { flex-direction: column; align-items: stretch; } }

.download { margin-top: 2rem; display: grid; gap: 1.5rem; }
.download__card { padding: 2rem; border-radius: calc(var(--radius) + 6px); border: 1px solid rgba(232,168,56,.28); background: linear-gradient(135deg, rgba(232,168,56,.12), transparent 55%), var(--bg-elevated); box-shadow: var(--shadow); }
.download__card h2 { margin: 0 0 .35rem; font-family: var(--font-display); }
.download__card > p { margin: 0 0 1.25rem; color: var(--muted); }
.download__card ul { margin: 1.25rem 0 0; padding-left: 1.1rem; color: var(--muted); display: grid; gap: .35rem; }
.step { padding: 1.25rem; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.02); }
.step span { display: block; font-family: var(--font-display); color: var(--amber); margin-bottom: .6rem; }
.step h3 { margin: 0 0 .4rem; }
.step p { margin: 0; color: var(--muted); }

.shop { margin-top: 2rem; align-items: start; }
.packs { display: grid; gap: .75rem; }
.pack { display: flex; justify-content: space-between; gap: 1rem; text-align: left; padding: 1.1rem 1.2rem; border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-elevated); color: inherit; cursor: pointer; width: 100%; }
.pack--hot { border-color: rgba(232,168,56,.35); }
.pack--active { border-color: var(--amber); box-shadow: 0 0 0 1px rgba(232,168,56,.25); }
.pack strong { display: block; font-family: var(--font-display); margin-bottom: .2rem; }
.pack span { color: var(--muted); font-size: .92rem; }
.pack__price { font-weight: 700; text-align: right; }
.pack__price small { display: block; color: var(--teal); font-weight: 600; }

.stats { margin: 2rem 0 1.5rem; }
.stat { padding: 1.25rem; border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-elevated); }
.stat span { display: block; color: var(--muted); margin-bottom: .35rem; font-size: .9rem; }
.stat strong { font-family: var(--font-display); font-size: 1.4rem; }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.blocks { margin-top: 2rem; }
.block { padding: 1.35rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-elevated); }
.block h2 { margin: 0 0 .85rem; font-family: var(--font-display); font-size: 1.05rem; }
.block ul { margin: 0; padding-left: 1.1rem; color: var(--muted); display: grid; gap: .55rem; }

.article { max-width: 720px; }
.back { display: inline-block; margin-bottom: 1.25rem; color: var(--muted); }
.back:hover { color: var(--text); }
.article time { display: block; margin: .5rem 0 1.5rem; color: var(--muted); }
.body { margin: 0; font-size: 1.08rem; color: #d7dbe3; line-height: 1.7; }

.admin-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.admin-table th, .admin-table td { text-align: left; padding: .85rem 1rem; border-bottom: 1px solid var(--line); }
.admin-table th { color: var(--muted); font-weight: 600; font-size: .85rem; }

/* TOKAREV brand overrides */
.brand__logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: none;
}

.online-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(62, 207, 142, 0.35);
  background: rgba(62, 207, 142, 0.08);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.online-pill strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.online-pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 10px rgba(62, 207, 142, 0.8);
  animation: pulse 1.8s ease-in-out infinite;
}

.btn--xl {
  min-height: 54px;
  padding: 0.85rem 1.6rem;
  font-size: 1.05rem;
}

.hero--banner {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  align-items: center;
  padding: 3rem 0 4rem;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,6,10,.82) 0%, rgba(8,6,10,.55) 45%, rgba(8,10,20,.72) 100%),
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.55) 100%);
}

.hero--banner .hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: left;
}

.hero__mark {
  width: min(100%, 520px);
  margin: 0 0 1rem;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
}

.hero__mark--circle {
  width: min(220px, 42vw);
  height: auto;
  border-radius: 50%;
  box-shadow: none;
  border: none;
}

.hero__district {
  margin: 0 0 0.35rem;
  color: #ff4d4d;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
}

.hero__platform {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hero__owner {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.launcher-online {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.55rem 0.7rem;
  margin: 0 0 1.5rem;
  padding: 0.85rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.launcher-online__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 12px rgba(62, 207, 142, 0.9);
  align-self: center;
  animation: pulse 1.8s ease-in-out infinite;
}

.launcher-online__label {
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  align-self: center;
}

.launcher-online strong {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
  color: var(--text);
}

.launcher-online__suffix {
  color: var(--muted);
  font-weight: 600;
  align-self: center;
}

.social-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.social-chip {
  display: grid;
  place-items: center;
  min-height: 52px;
  padding: 0.7rem 1rem;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  text-align: center;
}

.social-chip--tg { background: linear-gradient(135deg, #1e90d6, #0d6ea8); }
.social-chip--dc { background: linear-gradient(135deg, #6b5cff, #4b3fd6); }
.social-chip--vk { background: linear-gradient(135deg, #4a76a8, #2f5f8f); }

@media (max-width: 900px) {
  .social-bar { grid-template-columns: 1fr; }
  .online-pill span:nth-child(2) { display: none; }
  .hero--banner .hero__content { text-align: center; }
  .hero__cta { justify-content: center; }
  .launcher-online { justify-content: center; }
  .hero__mark { margin-inline: auto; }
}

/* live status strip */
.status-strip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin: 0 0 1.35rem;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.48);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}
.status-strip strong { color: var(--text); font-family: var(--font-display); font-weight: 700; }
.status-strip__sep { opacity: .45; }
.status-strip__item { display: inline-flex; align-items: center; gap: 0.4rem; }
.status-strip__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 10px rgba(232,93,93,.7);
}
.status-strip[data-status="online"] .status-strip__dot {
  background: var(--ok);
  box-shadow: 0 0 12px rgba(62,207,142,.85);
  animation: pulse 1.8s ease-in-out infinite;
}
.status-strip[data-status="restart"] .status-strip__dot {
  background: var(--amber);
  box-shadow: 0 0 12px rgba(232,60,60,.6);
}

.server-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.server-metrics strong { color: var(--text); }

.start-grid { gap: 1rem; }
.start-card {
  padding: 1.25rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
}
.start-card__n {
  display: block;
  font-family: var(--font-display);
  color: var(--amber);
  margin-bottom: 0.45rem;
  letter-spacing: 0.06em;
}
.start-card h3 { margin: 0 0 0.4rem; font-size: 1.05rem; }
.start-card p { margin: 0; color: var(--muted); }

.start-flow { margin-top: 1.75rem; display: grid; gap: 1rem; }
.start-flow__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}
.start-flow__num {
  width: 56px; height: 56px; display: grid; place-items: center;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, #e83c3c, #7a1f1f);
}
.start-flow__item h2 { margin: 0 0 0.35rem; font-size: 1.15rem; font-family: var(--font-display); }
.start-flow__item p { margin: 0; color: var(--muted); }
@media (max-width: 640px) {
  .start-flow__item { grid-template-columns: 1fr; }
}
