:root {
  --bg: #0a0f1c;
  --panel: #10172a;
  --panel2: #1a2340;
  --line: rgba(255,255,255,.08);
  --text: #f4f2ec;
  --muted: #b9bed1;
  --dim: #7e849b;
  --gold: #d4a855;
  --gold2: #f3d98b;
  --green: #35d07f;
  --red: #ff5a5f;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold2); }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10,15,28,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; color: #fff; }
.brand img { width: 34px; height: 34px; }
.links { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; justify-content: flex-end; }
.links a { color: var(--muted); font-size: 14px; padding: 8px 10px; border-radius: 8px; }
.links a:hover { color: #fff; background: rgba(255,255,255,.05); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: #191200;
  background: linear-gradient(135deg, var(--gold2), var(--gold) 55%, #8c6a27);
  font-weight: 800;
}
.btn.secondary { background: transparent; color: var(--text); }
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 48px;
  background: radial-gradient(circle at 76% 20%, rgba(53,208,127,.16), transparent 34%), url("assets/hero-bg.svg") center/cover no-repeat;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .85fr; gap: 44px; align-items: center; }
.eyebrow { color: var(--gold2); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 800; }
h1 { font-size: clamp(42px, 7vw, 76px); line-height: 1; margin: 14px 0 18px; letter-spacing: 0; }
h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.15; margin: 0 0 18px; }
h3 { font-size: 22px; margin: 0 0 10px; }
p { margin: 0 0 16px; color: var(--muted); }
.lead { font-size: 19px; max-width: 680px; }
.hero-card {
  border: 1px solid rgba(212,168,85,.28);
  border-radius: 16px;
  background: rgba(16,23,42,.72);
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  overflow: hidden;
}
.hero-card img { width: 100%; display: block; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.badge { border: 1px solid var(--line); border-radius: 999px; padding: 7px 11px; color: var(--muted); background: rgba(255,255,255,.04); font-size: 13px; }
section { padding: 58px 0; border-top: 1px solid var(--line); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}
.table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 10px; }
.table th, .table td { border: 1px solid var(--line); padding: 13px 14px; text-align: left; vertical-align: top; }
.table th { background: var(--panel2); color: #fff; }
.table td { color: var(--muted); }
.offer {
  display: grid;
  grid-template-columns: 54px 1fr 220px 120px;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}
.rank {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--panel2);
  color: var(--gold2);
  font-weight: 900;
}
.note { color: var(--dim); font-size: 13px; }
.author { display: flex; gap: 14px; align-items: center; }
.avatar { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--green)); display: grid; place-items: center; color: #061329; font-weight: 900; }
details { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px; margin: 10px 0; }
summary { cursor: pointer; color: #fff; font-weight: 800; }
footer { border-top: 1px solid var(--line); padding: 36px 0; background: #070b16; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.flag { width: 18px; height: 18px; border-radius: 50%; vertical-align: -3px; margin-right: 6px; }
@media (max-width: 860px) {
  .nav { height: auto; padding: 14px 0; align-items: flex-start; }
  .links { justify-content: flex-start; }
  .hero-grid, .grid-3, .grid-2, .footer-grid, .offer { grid-template-columns: 1fr; }
  .hero { padding-top: 42px; }
}

