/* Vilkax · /downloads/ - Pass-172
 * Telegram-style platform grid + EU flag + extras grid.
 * Inherits Arctic Steel tokens from /style.css.
 */
.dl-main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px clamp(20px, 4vw, 40px) 96px;
  position: relative;
  z-index: 1;
}

.dl-hero { text-align: center; margin-bottom: 56px; }
.dl-h1 {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 14px 0 14px;
  text-wrap: balance;
}
.dl-sub {
  max-width: 52ch;
  margin: 0 auto 18px;
  color: var(--text-muted);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
}
.dl-eu {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-ice, #7FCFE6);
  background: rgba(127, 207, 230, 0.08);
  border: 1px solid rgba(127, 207, 230, 0.30);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
}
.dl-eu-flag { font-size: 16px; line-height: 1; }

/* ── Platform grid ─────────────────────────────────────── */
.dl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 64px;
}
.dl-card {
  background: linear-gradient(160deg, rgba(16, 30, 51, 0.65), rgba(10, 19, 34, 0.50));
  border: 1px solid var(--border-line, rgba(127, 207, 230, 0.15));
  border-radius: 18px;
  padding: 22px 22px 18px;
  position: relative;
  overflow: hidden;
  transition: transform 240ms cubic-bezier(.2,.7,.1,1), border-color 240ms ease, box-shadow 240ms ease;
}
.dl-card::before {
  /* subtle Ice rim that brightens on hover */
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(140deg, rgba(127,207,230,0.04), transparent 50%);
  opacity: 0.7; transition: opacity 240ms ease;
}
.dl-card:hover {
  transform: translateY(-3px);
  border-color: rgba(127, 207, 230, 0.45);
  box-shadow: 0 16px 40px rgba(6, 12, 28, 0.50);
}
.dl-card:hover::before { opacity: 1; }

.dl-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.dl-glyph {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(127, 207, 230, 0.10);
  border: 1px solid rgba(127, 207, 230, 0.22);
  color: var(--brand-ice, #7FCFE6);
}
.dl-glyph svg { width: 20px; height: 20px; }
.dl-card-h { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; margin: 0; color: var(--text-strong, #fff); }
.dl-card-body { font-size: 14px; line-height: 1.55; color: var(--text-muted); margin: 0 0 16px; }
.dl-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 10px;
  background: linear-gradient(135deg, #3D7BD9, #4FA8E0);
  color: #fff; text-decoration: none; font-weight: 600; font-size: 13px;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 16px rgba(61,123,217,0.32);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}
.dl-card-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(61,123,217,0.50);
  filter: brightness(1.06);
}
.dl-card-cta-arrow { font-size: 14px; }
.dl-card-foot {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-dim, #6E8099);
}

/* ── Extras grid ───────────────────────────────────────── */
.dl-extras-h {
  font-size: 22px; font-weight: 700; letter-spacing: -0.01em;
  margin: 0 0 18px; text-align: center;
}
.dl-extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 56px;
}
.dl-extra {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid var(--border-line, rgba(127, 207, 230, 0.15));
  border-radius: 14px;
  text-decoration: none;
  background: rgba(255,255,255,0.02);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.dl-extra:hover {
  background: rgba(127, 207, 230, 0.06);
  border-color: rgba(127, 207, 230, 0.38);
  transform: translateY(-1px);
}
.dl-extra-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(127, 207, 230, 0.10);
  border: 1px solid rgba(127, 207, 230, 0.22);
  color: var(--brand-ice, #7FCFE6);
  font-size: 16px;
  grid-row: 1 / 3;
}
.dl-extra-name { font-size: 14px; font-weight: 700; color: var(--text-strong, #fff); }
.dl-extra-sub  { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── Trust strip ───────────────────────────────────────── */
.dl-trust {
  margin-top: 32px;
  padding: 22px 24px;
  background: linear-gradient(160deg, rgba(127, 207, 230, 0.07), rgba(110, 143, 255, 0.04));
  border: 1px solid rgba(127, 207, 230, 0.25);
  border-radius: 18px;
  text-align: center;
}
.dl-trust p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--text-default, #E9EEF6); }
.dl-trust strong { color: #fff; }
.dl-trust-flag { font-size: 18px; vertical-align: middle; margin-right: 6px; }

/* ── Pass-173 - "Soon" state for desktop cards ────────────── */
.dl-soon-pill {
  display: inline-block; margin-left: 8px;
  padding: 2px 8px; border-radius: 999px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(127, 207, 230, 0.14);
  color: var(--brand-ice, #7FCFE6);
  border: 1px solid rgba(127, 207, 230, 0.40);
  vertical-align: middle;
}
.dl-card-cta-soon {
  background: transparent;
  border: 1px solid rgba(127, 207, 230, 0.42);
  color: var(--brand-ice, #7FCFE6);
  box-shadow: none;
}
.dl-card-cta-soon:hover {
  background: rgba(127, 207, 230, 0.10);
  color: #fff;
  box-shadow: 0 8px 22px rgba(61,123,217,0.30);
}
.dl-card-soon { opacity: 0.96; }
