:root {
  --bg: #0e0e0e;
  --bg-raised: #141414;
  --bg-card: #191919;
  --bg-card-hover: #1e1e1e;
  --border: #2a2a2a;
  --border-hover: #3a3a3a;
  --text: #e8e4de;
  --text-heading: #f2efea;
  --muted: #8a8680;
  --muted-dim: #5c5955;
  --accent: #7A9CC7;
  --accent-dim: rgba(122, 156, 199, 0.10);
  --accent-hover: #8DAAD2;
  --max: 1080px;
  --serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: 'JetBrains Mono', SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --ease: cubic-bezier(.25, .1, .25, 1);
  --radius: 4px;
  --radius-lg: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* ─── Utility ─── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.mono { font-family: var(--mono); }
.serif { font-family: var(--serif); }

/* ─── Top ribbon ─── */
.topbar {
  background: var(--accent-dim);
  border-bottom: 1px solid rgba(122, 156, 199, 0.15);
  text-align: center;
  padding: 9px 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.topbar strong { color: var(--accent-hover); font-weight: 700; }

/* ─── Header ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.35s var(--ease);
}
.header.hidden { transform: translateY(-100%); }
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: var(--bg-raised);
  transition: border-color 0.3s var(--ease);
}
.logo-mark:hover { border-color: var(--accent); }
.logo-mark svg { width: 18px; height: 18px; color: var(--accent); }

.nav { display: flex; gap: 32px; align-items: center; }
.nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
  transition: color 0.25s;
}
.nav a:hover, .nav a.active { color: var(--text); }
.nav-cta {
  padding: 9px 18px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #0e0e0e;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  border: none;
  transition: background 0.25s, transform 0.2s;
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }
.nav-cta:active { transform: translateY(0); }

.hamburger {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-raised);
  color: var(--text);
  place-items: center;
}

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ─── Page header (for inner pages) ─── */
.page-header {
  padding: 56px 0 0;
}
.page-header .label-sm { margin-bottom: 10px; }
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-heading);
  font-weight: 400;
  margin: 0 0 12px;
}
.page-header h1 span { color: var(--muted); font-style: italic; }
.page-header .page-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 52ch;
}

/* ─── Hero ─── */
.hero {
  padding: 72px 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.kicker::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 60px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-heading);
  margin: 0 0 20px;
  font-weight: 400;
}
.h1 .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.h1 .word i {
  display: inline-block;
  font-style: normal;
  transform: translateY(105%);
  animation: wordUp 0.8s var(--ease) forwards;
}
.h1 .word:nth-child(2) i { animation-delay: 0.1s; }
.h1 span {
  display: block;
  color: var(--muted);
  font-style: italic;
  overflow: hidden;
}
.h1 span i {
  display: inline-block;
  font-style: italic;
  transform: translateY(105%);
  animation: wordUp 0.8s var(--ease) 0.18s forwards;
}
@keyframes wordUp { to { transform: translateY(0); } }

.sub {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 44ch;
  margin: 0 0 28px;
  animation: fadeIn 0.7s var(--ease) 0.25s both;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.btn-primary {
  background: var(--accent);
  color: #0e0e0e;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(122, 156, 199, 0.2);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--border-hover);
  background: var(--bg-raised);
  transform: translateY(-1px);
}

.stats-row { display: flex; gap: 24px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-value {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heading);
}
.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-dim);
}
.stat + .stat {
  padding-left: 24px;
  border-left: 1px solid var(--border);
}

/* ─── Mock terminal ─── */
.mock {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.4s;
}
.mock:hover {
  border-color: var(--border-hover);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.mock-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-raised);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted-dim);
}
.mock-dots span:first-child { background: #e85d52; }
.mock-dots span:nth-child(2) { background: #e6a930; }
.mock-dots span:nth-child(3) { background: #54b34d; }
.mock-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted-dim);
}
.mock-body { padding: 16px; }
.mock-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: 12.5px;
  opacity: 0;
  transform: translateX(-6px);
  animation: lineSlide 0.45s var(--ease) forwards;
}
.mock-line:nth-child(1) { animation-delay: 0.5s; }
.mock-line:nth-child(2) { animation-delay: 0.65s; }
.mock-line:nth-child(3) { animation-delay: 0.8s; }
@keyframes lineSlide { to { opacity: 1; transform: translateX(0); } }
.mock-line small {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dim);
  font-family: var(--mono);
}
.mock-line b { font-weight: 600; color: var(--text-heading); }
.mock-foot {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11.5px;
  color: var(--muted-dim);
  margin-top: 10px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  background: var(--accent-dim);
  opacity: 0;
  animation: fadeIn 0.5s var(--ease) 1s forwards;
}
.mock-foot .status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: statusPulse 2.5s ease-in-out infinite;
}
@keyframes statusPulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }

/* ─── Sections ─── */
.section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.section:first-of-type { border-top: none; }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-heading);
  font-weight: 400;
}
.section-head h2 span { color: var(--muted); font-style: italic; }
.section-head p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 38ch;
}
.label-sm {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}

/* ─── Product card ─── */
.prod-grid { display: grid; gap: 16px; }
.prod {
  display: grid;
  grid-template-columns: 1.2fr 1fr 200px;
  gap: 32px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  padding: 28px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.prod:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.prod-tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: var(--radius);
  background: var(--accent-dim);
  border: 1px solid rgba(122, 156, 199, 0.18);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.prod h3 {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--text-heading);
  font-weight: 400;
}
.prod p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 16px;
}
.prod-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.feat {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.feat svg {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--accent);
  margin-top: 1px;
}
.feat b { color: var(--text); font-weight: 600; }
.prod-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--bg);
  transition: border-color 0.2s;
}
.price-box:hover { border-color: var(--border-hover); }
.price-box small {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dim);
  font-weight: 600;
}
.price-box .big {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--text-heading);
  margin-top: 4px;
}
.price-box .big span {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}
.price-box .note {
  font-size: 12px;
  color: var(--muted-dim);
  margin-top: 4px;
}

/* ─── Scan results ─── */
.scan-card {
  max-width: 380px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  overflow: hidden;
}
.scan-inner { padding: 24px; }
.scan-inner small {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-dim);
  font-weight: 600;
}
.scan-rate {
  font-family: var(--mono);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text-heading);
  margin: 8px 0 4px;
}
.scan-rate .count { display: inline-block; }
.scan-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}
.scan-bar-track {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 14px;
}
.scan-bar-fill {
  height: 100%;
  width: 10%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 1.2s var(--ease);
}
.scan-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  transition: gap 0.2s;
}
.scan-link:hover { gap: 10px; }

/* ─── Workflow steps ─── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  padding: 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.step:hover {
  border-color: var(--border-hover);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}
.step-num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 16px;
  line-height: 1;
}
.step h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-heading);
  margin: 0 0 8px;
}
.step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── Pricing ─── */
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.plan {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  padding: 28px;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.plan:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.plan.featured {
  border-color: rgba(122, 156, 199, 0.3);
  background: linear-gradient(180deg, rgba(122, 156, 199, 0.06), var(--bg-card));
}
.plan.featured::after {
  content: 'RECOMMENDED';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 9px;
  letter-spacing: 0.16em;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius);
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(122, 156, 199, 0.2);
}
.plan-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-dim);
  font-weight: 700;
}
.plan-price {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--text-heading);
  margin: 8px 0 10px;
  line-height: 1;
}
.plan-price span {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.plan > p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 20px;
  min-height: 40px;
}
.plan ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}
.plan li {
  font-size: 13px;
  display: flex;
  gap: 10px;
  color: var(--text);
  line-height: 1.4;
}
.plan li svg {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 1px;
  color: var(--accent);
}
.plan li span { color: var(--muted); }
.plan-note {
  font-size: 12px;
  color: var(--muted-dim);
  line-height: 1.5;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 12px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.plan-note svg {
  width: 14px;
  height: 14px;
  flex: none;
  margin-top: 1px;
  color: var(--muted-dim);
}

/* ─── Comparison table ─── */
.compare {
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-head {
  display: grid;
  grid-template-columns: 1fr 120px 120px;
  padding: 14px 20px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dim);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  background: var(--bg-raised);
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr 120px 120px;
  padding: 13px 20px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  transition: background 0.2s;
}
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: var(--bg-card-hover); }
.compare-row b { font-weight: 600; color: var(--text-heading); }

/* ─── Telegram grid ─── */
.tg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tg {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.tg:hover {
  border-color: var(--border-hover);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}
.tg-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tg-top small {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-dim);
  font-weight: 600;
}
.tg-status {
  font-size: 11px;
  color: var(--muted-dim);
  display: flex;
  align-items: center;
  gap: 5px;
}
.tg-status::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.tg h4 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-heading);
}
.tg p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* ─── FAQ ─── */
.faq { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.qa {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  padding: 22px;
  transition: border-color 0.3s;
}
.qa:hover { border-color: var(--border-hover); }
.qa h4 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-heading);
  margin: 0 0 8px;
}
.qa p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 32px;
  margin-top: 32px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-about { max-width: 380px; }
.footer-about p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 12px;
}
.footer-disclaimer {
  font-size: 12px;
  color: var(--muted-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--bg-raised);
  line-height: 1.55;
  margin-top: 16px;
  max-width: 460px;
}
.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-col .label-sm { margin-bottom: 12px; }
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--muted);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-col .meta {
  font-size: 11px;
  color: var(--muted-dim);
  margin-top: 8px;
}
.bottom {
  max-width: var(--max);
  margin: 24px auto 0;
  padding: 16px 28px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted-dim);
}

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 32px; }
  .prod { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .tg-grid { grid-template-columns: 1fr 1fr; }
  .faq { grid-template-columns: 1fr; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 60px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    background: rgba(14, 14, 14, 0.98);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    gap: 14px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .hamburger { display: grid; }
  .header-inner { position: relative; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .header-inner { padding: 14px 18px; }
  .section { padding: 56px 0; }
  .hero { padding: 48px 0 24px; }
  .compare-head, .compare-row { grid-template-columns: 1fr 80px 80px; padding: 12px 14px; }
  .tg-grid { grid-template-columns: 1fr; }
  .bottom { padding: 14px 18px 0; }
}
