:root {
  --bg: #061427;
  --surface: #0c2039;
  --ink: #f8fbff;
  --muted: #b7c4d4;
  --line: rgba(216, 175, 79, .32);
  --brand: #0b2340;
  --accent: #d8af4f;
  --accent-strong: #f0c766;
  --cta: #2563eb;
  --cta-2: #38bdf8;
  --review-cta: #00b8a9;
  --review-cta-2: #4ade80;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(56, 189, 248, .15), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(216, 175, 79, .11), transparent 34%),
    linear-gradient(180deg, #07172b 0%, #061427 48%, #050f1e 100%);
  line-height: 1.58;
}
a { color: inherit; }
.site-header {
  background:
    radial-gradient(circle at 18% 0%, rgba(58, 102, 170, .34), transparent 34%),
    linear-gradient(180deg, #07172b 0%, #081d35 100%);
  border-bottom: 1px solid rgba(79, 150, 218, .28);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .3);
}
.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}
.topbar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  display: block;
  width: auto;
  height: 54px;
  max-width: 270px;
  object-fit: contain;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}
.nav a {
  text-decoration: none;
  color: rgba(255,255,255,.86);
}
.hero {
  padding: 42px 0 34px;
  background:
    radial-gradient(circle at 70% 18%, rgba(56, 189, 248, .16), transparent 34%),
    radial-gradient(circle at 18% 44%, rgba(37, 99, 235, .14), transparent 36%),
    linear-gradient(180deg, #07172b 0%, #081d35 100%);
}
.eyebrow {
  margin: 0 0 8px;
  color: var(--accent-strong);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
}
h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
}
.hero p {
  max-width: 880px;
  font-size: 18px;
  color: rgba(255,255,255,.9);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.notice {
  padding: 12px 0;
  background: rgba(5, 15, 30, .72);
  border-top: 1px solid rgba(79, 150, 218, .18);
  border-bottom: 1px solid rgba(79, 150, 218, .18);
  color: var(--muted);
  font-size: 14px;
}
main { padding: 28px 0 56px; }
section {
  padding: 28px 0;
  border-bottom: 1px solid rgba(216, 175, 79, .18);
}
h2 {
  margin: 0 0 14px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.18;
  letter-spacing: 0;
}
h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.22;
  letter-spacing: 0;
}
.lead {
  max-width: 880px;
  color: var(--muted);
  font-size: 17px;
}
.table-wrap {
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, .34);
}
table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}
th, td {
  padding: 14px 13px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}
th {
  background: #07172b;
  color: #f6d574;
  font-size: 13px;
  text-transform: uppercase;
}
td { background: rgba(12, 32, 57, .92); }
tr:last-child td { border-bottom: 0; }
.brand-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}
.brand-logo {
  width: 122px;
  height: 88px;
  object-fit: contain;
  border: 2px solid #e1c36f;
  border-radius: 8px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 8px 22px rgba(11, 35, 64, .14);
}
.rating {
  font-weight: 800;
  color: #6ee1aa;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 17px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-2) 100%);
  border: 1px solid rgba(147, 197, 253, .78);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(37, 99, 235, .34);
}
.btn:hover { background: linear-gradient(135deg, #1d4ed8 0%, #67e8f9 100%); }
.brand-review {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.brand-review:first-of-type { border-top: 0; }
.brand-review .btn {
  background: linear-gradient(135deg, var(--review-cta) 0%, var(--review-cta-2) 100%);
  color: #03151b;
  border: 1px solid rgba(167, 243, 208, .72);
  box-shadow: 0 14px 30px rgba(0, 184, 169, .26);
}
.brand-art {
  display: block;
  width: 100%;
  height: auto;
  background: #0b2340;
  border: 2px solid #d8af4f;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(11, 35, 64, .16);
}
.facts { margin: 14px 0 16px; }
.facts table { min-width: 520px; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.list-box, .faq details {
  background: linear-gradient(180deg, rgba(16, 43, 75, .96), rgba(12, 32, 57, .96));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .24);
}
.list-box ul, .list-box ol { margin: 0; padding-left: 20px; }
.faq details { margin: 10px 0; }
.faq summary {
  cursor: pointer;
  font-weight: 800;
}
.footer {
  padding: 28px 0;
  background: var(--brand);
  color: rgba(255,255,255,.78);
  font-size: 14px;
}
@media (max-width: 820px) {
  .topbar, .two-col {
    display: grid;
    grid-template-columns: 1fr;
  }
  .topbar {
    align-items: start;
    padding: 12px 0;
    min-height: 0;
  }
  .logo img {
    width: auto;
    height: 52px;
    max-width: min(245px, 72vw);
  }
  .nav { gap: 10px; }
  .hero { padding-top: 30px; }
  table { min-width: 680px; }
  .brand-logo {
    width: 96px;
    height: 72px;
  }
}