:root{
  --shadow-deep: 0 24px 60px rgba(0,0,0,.55);
}

body{
  background:
    radial-gradient(1200px 600px at 50% -10%, var(--panel-2), transparent 70%),
    var(--bg);
}

/* ===== Headings — Bodoni display, calm & generous ===== */
.hero-title,
.article h2,
.section > .center h2,
h1, h2{
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.03em;
  font-style: normal;
}

.hero-title{
  letter-spacing: 0.04em;
  line-height: 1.08;
}

/* slim 24k rule under section titles */
.article h2{
  position: relative;
  padding-bottom: .35em;
}
.article h2::after{
  content:"";
  position:absolute; left:0; bottom:0;
  width:64px; height:1px;
  background: var(--accent);
}

/* ===== Hero — onyx field, hairline frame, slow reveal ===== */
.hero{
  background:
    radial-gradient(900px 480px at 78% 12%, var(--panel), transparent 65%),
    var(--bg);
  border-bottom: 1px solid var(--line);
  animation: vk-fade 1.1s ease both;
}
.hero-sub{ color: var(--text-2); letter-spacing:.01em; }

.facts .fact{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .4s ease, transform .4s ease;
}
.facts .fact:hover{ border-color: var(--accent); transform: translateY(-2px); }
.facts .fact b{ color: var(--accent); }

/* ===== Header — onyx with brown-gold hairline ===== */
.site-header{
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

/* ===== Cards / features — charcoal panels, hairline, controlled opulence ===== */
.card,
.feature,
.faq-item{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-deep);
  transition: border-color .45s ease, transform .45s ease;
  animation: vk-fade .9s ease both;
}
.card:hover,
.feature:hover{
  border-color: var(--accent);
  transform: translateY(-3px);
}

.feature .icon{
  color: var(--accent);
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

/* ===== Tiles — big calm imagery, gold edge on hover ===== */
.tile{
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .45s ease, transform .45s ease;
}
.tile:hover{ border-color: var(--accent); transform: translateY(-3px); }
.tile .gp{ color: var(--accent); letter-spacing:.08em; text-transform: uppercase; }
.tile .nm{ color: var(--text); }
.tile.noimg{
  background:
    radial-gradient(420px 240px at 50% 0%, var(--panel), var(--panel-2));
}

/* ===== Buttons — 24k outline CTA, no glow ===== */
.btn{
  border-radius: var(--radius);
  letter-spacing: .04em;
  transition: background .35s ease, color .35s ease, border-color .35s ease;
}
.btn-primary{
  background: var(--accent);
  color: var(--on-accent);
  border: 1px solid var(--accent);
}
.btn-primary:hover{ background: var(--accent-2); border-color: var(--accent-2); }
.btn-ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--accent);
}
.btn-ghost:hover{ background: var(--panel); color: var(--accent); }

/* ===== Badges / tabs ===== */
.badge{
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--accent);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.tab{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text-2);
  transition: border-color .35s ease, color .35s ease;
}
.tab:hover{ color: var(--text); }
.tab.active{ border-color: var(--accent); color: var(--accent); }

/* ===== FAQ ===== */
.faq-q{ color: var(--text); }
.faq-a{ color: var(--prose); }
.faq-item:hover{ border-color: var(--accent); }

/* ===== Tables ===== */
.table{ border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; }
.table th{ background: var(--panel-2); color: var(--text); border-bottom:1px solid var(--line); }
.table td{ border-bottom: 1px solid var(--line); color: var(--prose); }

/* ===== Slow fade-in reveal — no blur ===== */
@keyframes vk-fade{
  from{ opacity:0; transform: translateY(14px); }
  to{ opacity:1; transform: none; }
}

.section{ border-top: 1px solid var(--line); }