:root {
  --bg: #0a0a0a;
  --panel: #121212;
  --panel-2: #181818;
  --text: #f5f5f5;
  --muted: #aaaaaa;
  --line: #2b2b2b;
  --accent: #ffffff;
  --accent-text: #0a0a0a;
  --max: 1180px;
  --radius: 20px;
  --shadow: 0 18px 40px rgba(0,0,0,.28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.topbar {
  border-bottom: 1px solid var(--line);
  background: #050505;
  font-size: .95rem;
}
.topbar-inner, .site-header, .product-meta, .footer-grid, .hero, .split, .product-page {
  display: grid;
  gap: 20px;
}
.topbar-inner {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 12px 0;
}
.topbar-links, nav { display: flex; gap: 18px; flex-wrap: wrap; }
.site-header {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 18px 0;
}
.brand {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: .04em;
}
.brand span { color: var(--muted); }
nav a, .topbar a, .footer-grid a { color: var(--muted); }
nav a:hover, .topbar a:hover, .footer-grid a:hover { color: var(--text); }
.hero {
  grid-template-columns: 1.3fr .9fr;
  padding: 52px 0 36px;
  align-items: start;
}
.hero h1, h1 { font-size: clamp(2.1rem, 5vw, 4rem); line-height: 1.02; margin: 0 0 14px; }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); margin: 0 0 10px; }
h3 { margin: 12px 0 8px; font-size: 1.2rem; }
h4 { margin: 0 0 10px; }
.lead { font-size: 1.12rem; color: #d4d4d4; max-width: 65ch; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  font-size: .8rem;
  margin: 0 0 12px;
}
.hero-actions, .product-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 24px 0 20px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--line);
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-text);
  border-color: var(--accent);
}
.btn-secondary { background: transparent; color: var(--text); }
.card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.trust-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; color: #d8d8d8; }
.trust-list li::before { content: "• "; }
.section { padding: 30px 0 60px; }
.section-head { margin-bottom: 24px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.product-card { display: flex; flex-direction: column; }
.product-image, .product-gallery {
  border-radius: 16px;
  border: 1px dashed #4a4a4a;
  background: #0e0e0e;
  color: #bbbbbb;
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.product-image { min-height: 180px; }
.product-gallery.large { min-height: 420px; }
.product-meta {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
}
.split { grid-template-columns: 1fr 1fr; }
.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0 40px;
  background: #050505;
}
.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: start;
}
.footer-grid > div { display: grid; gap: 10px; }
.footer-brand { font-size: 1.25rem; }
.small, .muted { color: var(--muted); }
.narrow { max-width: 820px; }
.notice ul { margin-bottom: 0; }
.simple-form { display: grid; gap: 16px; margin-top: 20px; }
label { display: grid; gap: 8px; font-weight: 700; }
input, textarea {
  width: 100%;
  background: #0d0d0d;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  padding: 14px;
  font: inherit;
}
.contact-card { margin-top: 18px; }
.center { text-align: center; }
.product-page {
  grid-template-columns: 1.05fr .95fr;
  align-items: start;
}
.price { font-size: 1.8rem; font-weight: 800; margin: 6px 0 10px; }
.small-width { max-width: 60ch; }
@media (max-width: 920px) {
  .hero, .split, .product-page, .footer-grid, .site-header, .topbar-inner { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .product-grid { grid-template-columns: 1fr; }
  .wrap { width: min(calc(100% - 22px), var(--max)); }
  .hero { padding-top: 32px; }
  .card { padding: 18px; }
}


.policy-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.policy-link { display: block; }
.policy-link p { color: #d0d0d0; margin-bottom: 0; }
.legal-stack { display: grid; gap: 8px; }
.legal-stack h2 { font-size: 1.2rem; margin: 12px 0 4px; }
.legal-page .notice { margin-bottom: 18px; }
.legal-page ul { margin-top: 0; }
@media (max-width: 920px) { .policy-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .policy-grid { grid-template-columns: 1fr; } }
