/* Argent — посадочная страница. Токены цвета/шрифта — те же, что у
   Argent Fetch/Tax (см. kaspi_deploy/static/css/style.css), чтобы
   переход с этой страницы на Fetch не выглядел как смена сайта. */

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

:root {
  --bg:        #F5F5F7;
  --surface:   #FFFFFF;
  --border:    rgba(0,0,0,0.09);
  --text:      #1D1D1F;
  --text-sec:  #6E6E73;
  --accent:    #0071E3;
  --accent-h:  #0077ED;
  --accent-tint: rgba(0,113,227,0.1);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:        #1C1C1E;
    --surface:   #2C2C2E;
    --border:    rgba(255,255,255,0.08);
    --text:      #F5F5F7;
    --text-sec:  #AEAEB2;
    --accent:    #0A84FF;
    --accent-h:  #409CFF;
    --accent-tint: rgba(10,132,255,0.14);
  }
}

html, body { height: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.wrap { max-width: 620px; width: 100%; text-align: center; }

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
  font-size: 15px; font-weight: 700;
}
.logo-mark { width: 28px; height: 28px; flex-shrink: 0; }

h1 {
  font-size: clamp(26px, 4.2vw, 36px);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 14px;
}

.sub {
  color: var(--text-sec);
  font-size: 15px;
  line-height: 1.55;
  max-width: 48ch;
  margin: 0 auto 40px;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
}

.card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  background: var(--accent-tint);
  margin-bottom: 14px;
}

.card h2 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.card p { font-size: 13px; color: var(--text-sec); line-height: 1.5; margin-bottom: 14px; }
.card-cta { font-size: 13px; font-weight: 600; color: var(--accent); }

.foot { margin-top: 40px; font-size: 12px; color: var(--text-sec); }
