:root {
  --bg: #061427;
  --surface: #0c2039;
  --surface-2: #102b4b;
  --ink: #f8fbff;
  --muted: #b7c4d4;
  --line: rgba(216, 175, 79, .32);
  --brand: #0b2340;
  --brand-dark: #07172b;
  --accent: #d8af4f;
  --accent-strong: #f0c766;
  --cta: #2563eb;
  --cta-2: #38bdf8;
  --cta-dark: #123a8c;
  --review-cta: #00b8a9;
  --review-cta-2: #4ade80;
  --ok: #166f4b;
  --warn: #9f6413;
}

* { 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 12% 0%, rgba(216, 175, 79, .16), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(75, 124, 185, .18), transparent 32%),
    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%);
  color: #fff;
  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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  display: block;
  width: min(270px, 58vw);
  height: auto;
  max-height: 62px;
  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 72% 16%, rgba(56, 189, 248, .16), transparent 34%),
    radial-gradient(circle at 20% 42%, rgba(37, 99, 235, .14), transparent 36%),
    linear-gradient(180deg, #07172b 0%, #081d35 100%);
  color: #fff;
}
.hero-grid {
  max-width: none;
}
.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);
}
.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%;
  border-collapse: collapse;
  min-width: 760px;
}
th, td {
  padding: 14px 13px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}
th {
  background: #07172b;
  font-size: 13px;
  text-transform: uppercase;
  color: #f6d574;
}
td {
  background: rgba(12, 32, 57, .92);
}
tbody tr:hover {
  background: rgba(216, 175, 79, .08);
}
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: 42px;
  padding: 10px 16px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-2) 100%);
  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%, #22d3ee 100%);
}
td .btn {
  min-height: 50px;
  padding-inline: 22px;
  background: linear-gradient(135deg, #2563eb 0%, #38bdf8 100%);
  color: #fff;
  border: 1px solid rgba(147, 197, 253, .72);
  font-size: 15px;
  box-shadow: 0 12px 28px rgba(37, 99, 235, .34);
}
td .btn:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #67e8f9 100%);
}
.brand-review {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  margin-top: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.brand-review:first-of-type { border-top: 0; }
.brand-review.has-media {
  grid-template-columns: 1fr;
}
.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-review .btn:hover {
  background: linear-gradient(135deg, #2dd4bf 0%, #86efac 100%);
}
.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 {
  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 {
  background: linear-gradient(180deg, rgba(16, 43, 75, .96), rgba(12, 32, 57, .96));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  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;
}
.small {
  color: var(--muted);
  font-size: 14px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.hero-actions .btn {
  min-height: 48px;
  background: linear-gradient(135deg, #1d4ed8 0%, #38bdf8 100%);
  border: 1px solid rgba(147, 197, 253, .78);
  color: #fff;
}
.hero-actions .btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #67e8f9 100%);
}
@media (max-width: 820px) {
  .topbar, .brand-review.has-media, .two-col {
    grid-template-columns: 1fr;
  }
  .topbar {
    display: grid;
    align-items: start;
    padding: 12px 0;
    min-height: 0;
  }
  .logo img {
    width: min(245px, 72vw);
    max-height: 58px;
  }
  .nav { gap: 10px; }
  .hero { padding-top: 30px; }
  table { min-width: 680px; }
  .brand-logo {
    width: 96px;
    height: 72px;
  }
}