/* ============ ABOUT PAGE ============ */
.crumbs { font-size: 13px; color: var(--text-muted); padding: 24px 0 0; position: relative; z-index: 2; }
.crumbs a { color: var(--text-muted); text-decoration: none; }
.crumbs a:hover { color: var(--gold-bright); }
.crumbs span { margin: 0 8px; opacity: 0.5; }

.about-section { padding: 28px 0 32px; position: relative; z-index: 2; }
.site-footer { margin-top: 24px; }

/* ===== HERO (centered) ===== */
.about-hero {
  text-align: center;
  padding: 64px 0 56px;
  max-width: 760px;
  margin: 0 auto;
}
.about-hero h1 {
  font-size: 96px; font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  margin: 0 0 28px;
  color: var(--gold-bright);
}
.about-hero p {
  font-size: 22px; color: rgba(245,246,248,0.85); line-height: 1.5;
  max-width: 640px;
  margin: 0 auto;
  font-weight: 400;
}
.about-hero p b { color: var(--text); font-weight: 600; }

/* ===== BIG CTA TILES ===== */
.about-ctas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cta-tile {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  row-gap: 10px;
  align-content: start;
  padding: 22px 24px;
  border-radius: 18px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.10);
  border-top-color: rgba(255,255,255,0.18);
  overflow: hidden;
  isolation: isolate;
  transition: all .3s cubic-bezier(0.22, 1, 0.36, 1);
}
.cta-tile > .ico {
  grid-row: 1; grid-column: 1;
  align-self: center;
}
.cta-tile > h3 {
  grid-row: 1; grid-column: 2;
  align-self: center;
}
.cta-tile > p {
  grid-row: 2; grid-column: 1 / -1;
  margin-top: 0;
}
.cta-tile::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 360px 240px at 80% 0%, var(--accent), transparent 60%);
  opacity: 0.55;
  z-index: -1;
  transition: opacity .3s;
}
.cta-tile:hover {
  transform: translateY(-6px);
  border-color: var(--accent-strong);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 60px var(--accent);
}
.cta-tile:hover::before { opacity: 1; }
/* shimmer sweep */
.cta-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
  transform: translateX(-100%);
  pointer-events: none;
  z-index: 1;
  transition: transform .9s ease;
}
.cta-tile:hover::after { transform: translateX(100%); }

.cta-tile .ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ico-bg);
  color: var(--ico-color);
  transition: transform .3s cubic-bezier(0.22, 1, 0.36, 1.5);
  flex-shrink: 0;
}
.cta-tile:hover .ico { transform: scale(1.1) rotate(-6deg); }
.cta-tile .ico svg { width: 26px; height: 26px; transition: transform .3s; }
.cta-tile .ico img {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
  border-radius: 12px;
  transition: transform .3s;
}
.cta-tile .ico.fill svg { fill: currentColor; }
/* VK glyph fills less of its 24px viewBox than Telegram —
   scale it up so the icons feel visually consistent */
.cta-tile.vk-tile .ico svg { transform: scale(1.4); transform-origin: center; }
.cta-tile.vk-tile:hover .ico svg { transform: scale(1.4); }

.cta-tile h3 {
  font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}
.cta-tile p {
  font-size: 13px; color: var(--text-muted); line-height: 1.55;
  margin: 0;
}
.cta-tile p b { color: var(--accent-strong); font-weight: 600; }
.cta-tile .arrow {
  position: absolute; top: 22px; right: 22px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all .3s cubic-bezier(0.22, 1, 0.36, 1);
}
.cta-tile:hover .arrow {
  background: var(--accent-strong);
  color: white;
  transform: rotate(-45deg);
}
.cta-tile.gold-tile:hover .arrow { color: #08090c; }
.cta-tile .arrow svg { width: 12px; height: 12px; }

/* per-tile palette */
.cta-tile.gold-tile {
  --accent: rgba(212,175,106,0.20);
  --accent-strong: var(--gold-bright);
  --ico-bg: linear-gradient(135deg, rgba(232,196,126,0.20), rgba(212,175,106,0.08));
  --ico-color: var(--gold-bright);
}
.cta-tile.tg-tile {
  --accent: rgba(74,124,255,0.20);
  --accent-strong: #6b94ff;
  --ico-bg: linear-gradient(135deg, rgba(107,148,255,0.20), rgba(74,124,255,0.08));
  --ico-color: #6b94ff;
}
.cta-tile.vk-tile {
  --accent: rgba(74,118,168,0.22);
  --accent-strong: #6b94d4;
  --ico-bg: linear-gradient(135deg, rgba(107,148,212,0.20), rgba(74,118,168,0.08));
  --ico-color: #6b94d4;
}

/* responsive */
@media (max-width: 1100px) {
  .about-hero h1 { font-size: 72px; }
  .about-hero p { font-size: 18px; }
  .about-ctas { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .about-hero { padding: 48px 0 56px; }
  .about-hero h1 { font-size: 48px; }
  .about-hero p { font-size: 16px; }
  .about-ctas { grid-template-columns: 1fr; }
  .cta-tile h3 { font-size: 20px; }
}
