:root {
  --accent: #d2a15b;
  --accent-strong: #a56c31;
  --accent-soft: rgba(210, 161, 91, 0.12);
  --bg: #0d0b0a;
  --bg-alt: #14110f;
  --card: rgba(23, 19, 16, 0.94);
  --card-strong: rgba(16, 13, 11, 0.98);
  --text: #f4efe7;
  --muted: rgba(244, 239, 231, 0.72);
  --line: rgba(210, 161, 91, 0.18);
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --container: 1160px;
  --font: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --display: "Cinzel", Georgia, serif;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: var(--font);
  background:
    radial-gradient(1000px 500px at 100% 0%, rgba(210,161,91,.14), transparent 60%),
    radial-gradient(900px 420px at 0% 0%, rgba(132,81,34,.14), transparent 55%),
    linear-gradient(180deg, #15110f 0%, #0d0b0a 40%, #090807 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 92%);
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(10, 8, 7, 0.74);
  border-bottom: 1px solid var(--line);
}

.header__inner,
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand__logo {
  width: clamp(144px, 18vw, 196px);
  height: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #120e0a;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(124, 80, 31, 0.22);
}

.btn--secondary,
.btn--ghost {
  background: rgba(255,255,255,.04);
  border-color: var(--line);
  color: var(--text);
  box-shadow: none;
}

.hero { padding: 28px 0 18px; }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 28px;
  align-items: start;
}
.hero__copy { min-width: 0; }
.hero__visual { min-width: 0; }

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: #efbf76;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  color: var(--text);
}

h1, h2 {
  font-family: var(--display);
  line-height: 1.05;
  letter-spacing: .01em;
}

h1 { font-size: clamp(34px, 4.8vw, 58px); }
h2 { font-size: clamp(25px, 3.2vw, 40px); }
h3 { font-size: 20px; line-height: 1.2; }

.subhead, .section-intro, .muted, .fineprint {
  color: var(--muted);
}

.subhead {
  margin: 0 0 14px;
  max-width: 42rem;
  font-size: 18px;
  line-height: 1.55;
}

.card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card), var(--card-strong));
  box-shadow: var(--shadow);
}

.bullets {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.bullets li {
  color: var(--text);
  line-height: 1.5;
}

.label {
  display: block;
  margin-bottom: 8px;
  color: #efbf76;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.input {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font: inherit;
}

.input::placeholder { color: rgba(244,239,231,.45); }
.input:focus {
  outline: none;
  border-color: rgba(239,191,118,.65);
  box-shadow: 0 0 0 4px rgba(210,161,91,.12);
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.trust__item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
}

.trust__num {
  margin-bottom: 4px;
  color: #efbf76;
  font-size: 20px;
  font-weight: 800;
}

.trust__lbl {
  color: var(--muted);
  font-size: 14px;
}

.product {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product__frame {
  position: relative;
  overflow: hidden;
}

.product__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #100d0b;
}

.product__image,
.product__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product__video-launch {
  position: absolute;
  inset: auto auto 20px 20px;
  z-index: 3;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #120e0a;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(124, 80, 31, 0.28);
}

.product__video-launch.is-hidden { display: none; }
.product__video-launch-icon { display: inline-flex; width: 24px; height: 24px; }
.product__caption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 14px;
}

.section { padding: 28px 0 56px; }
.footer { padding: 12px 0 28px; }

.qualifier-card { margin-top: 18px; }
.qualifier-grid { display: grid; gap: 16px; margin-top: 14px; }
.qualifier-options { display: flex; gap: 10px; flex-wrap: wrap; }
.qualifier-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
}

.qualifier-status {
  min-height: 1.5em;
  color: var(--muted);
  font-size: 14px;
}
.qualifier-status.is-success { color: #9ee4b6; }
.qualifier-status.is-error { color: #ffb2a8; }

.legal { padding: 34px 0 56px; }
.legal__wrap { max-width: 860px; margin: 0 auto; }
.legal__hero { margin-bottom: 18px; }
.legal__eyebrow { display: inline-block; margin-bottom: 10px; }
.legal__intro { margin: 0; color: var(--muted); line-height: 1.6; }
.legal__content { display: grid; gap: 12px; }
.legal__section { padding: 18px; }
.legal__section p, .legal__section li { color: var(--muted); line-height: 1.7; }
.legal__section ul { margin: 0; padding-left: 18px; }
.legal__back { margin-top: 18px; text-align: center; }

@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
}

@media (max-width: 720px) {
  .header__inner,
  .footer__inner { flex-wrap: wrap; }
  .trust { grid-template-columns: 1fr; }
}
