:root {
  --bg: #090806;
  --bg-2: #12100c;
  --panel: rgba(25, 21, 15, 0.82);
  --panel-strong: #1c1710;
  --gold: #d7a84f;
  --gold-2: #ffdd87;
  --copper: #a85d30;
  --red: #8e241d;
  --text: #f3ead8;
  --muted: #b8aa92;
  --line: rgba(215, 168, 79, 0.24);
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.55);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 5%, rgba(168, 93, 48, 0.28), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(142, 36, 29, 0.24), transparent 35%),
    linear-gradient(135deg, #080705 0%, #15100b 50%, #070604 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
code { color: var(--gold-2); }

.site-shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.nav {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 14px 0 36px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 8, 6, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 18px rgba(215,168,79,0.38));
}
.brand-text { display: grid; gap: 2px; }
.brand strong { display: block; font-family: Cinzel, serif; letter-spacing: 0.04em; }
.brand small { color: var(--muted); font-size: 12px; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { color: var(--muted); padding: 10px 14px; border-radius: 999px; transition: 0.2s; }
.nav-links a:hover, .nav-links .nav-cta { color: var(--text); background: rgba(215,168,79,0.12); }

.hero {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: 28px;
  align-items: stretch;
  min-height: 620px;
}
.hero-copy, .hero-card, .cart-panel, .details-panel, .how, .faq details, .policies details, .product-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(30,25,17,0.86), rgba(12,10,7,0.92));
  box-shadow: var(--shadow);
}
.hero-copy {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: clamp(32px, 6vw, 76px);
}
.hero-logo {
  width: clamp(120px, 16vw, 190px);
  height: auto;
  display: block;
  margin: 0 0 22px;
  filter: drop-shadow(0 0 30px rgba(215,168,79,0.32));
}
.hero-copy::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,168,79,0.28), transparent 68%);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: Cinzel, Georgia, serif; line-height: 1.05; margin: 0; }
h1 { max-width: 780px; font-size: clamp(46px, 7vw, 92px); letter-spacing: -0.05em; }
h2 { font-size: clamp(30px, 4vw, 52px); }
h3 { font-size: 22px; }
.hero-text { max-width: 690px; color: var(--muted); font-size: 18px; line-height: 1.75; margin: 24px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,0.04);
  font-weight: 800;
  transition: transform .2s, border-color .2s, background .2s;
}
.button:hover { transform: translateY(-2px); border-color: rgba(255,221,135,0.7); }
.button.primary { color: #170d05; background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, var(--copper)); border: 0; }
.button.ghost { background: rgba(215,168,79,0.08); }
.button.full { width: 100%; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 42px; }
.hero-stats div { padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(0,0,0,0.22); }
.hero-stats strong { display: block; font-size: 24px; color: var(--gold-2); }
.hero-stats span { color: var(--muted); font-size: 13px; }

.hero-card { align-self: end; border-radius: 34px; padding: 30px; min-height: 430px; position: relative; overflow: hidden; }
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(142,36,29,0.36), transparent 45%);
  pointer-events: none;
}
.seal { width: max-content; margin-bottom: 28px; padding: 8px 12px; border-radius: 999px; background: rgba(142,36,29,0.35); color: var(--gold-2); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
.hero-card p, .hero-card li { color: var(--muted); line-height: 1.7; }
.featured-price { margin: 22px 0; font-family: Cinzel, serif; color: var(--gold-2); font-size: 48px; font-weight: 800; }
.hero-card ul { padding-left: 20px; margin-bottom: 28px; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 28px 0 88px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
}
.trust-strip div { background: rgba(12,10,7,0.86); padding: 18px; color: var(--muted); }
.trust-strip span { color: var(--gold-2); margin-right: 8px; }

.section-head { text-align: center; max-width: 780px; margin: 0 auto 30px; }
.page-hero {
  margin: 0 0 42px;
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(30,25,17,0.86), rgba(12,10,7,0.92));
  box-shadow: var(--shadow);
  text-align: center;
}
.page-hero.compact h1 { font-size: clamp(42px, 6vw, 76px); }
.page-hero p:not(.eyebrow) { max-width: 780px; margin: 18px auto 0; color: var(--muted); line-height: 1.75; font-size: 18px; }
.page-section { margin: 70px 0 88px; }
.link-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.link-card {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(30,25,17,0.86), rgba(12,10,7,0.92));
  box-shadow: var(--shadow);
  transition: transform .2s, border-color .2s;
}
.link-card:hover { transform: translateY(-2px); border-color: rgba(255,221,135,0.7); }
.link-card span { color: var(--gold-2); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.link-card strong { font-family: Cinzel, serif; font-size: 24px; color: var(--text); }
.link-card small { color: var(--muted); line-height: 1.6; }
.slim-cta { padding: 30px; border: 1px solid var(--line); border-radius: 26px; background: rgba(0,0,0,0.16); }
.checkout-helper { margin: 16px 0 0; color: var(--gold-2); font-weight: 800; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head p:not(.eyebrow) { color: var(--muted); line-height: 1.7; }
.filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.filter { border: 1px solid var(--line); color: var(--muted); background: rgba(255,255,255,0.04); border-radius: 999px; padding: 10px 16px; }
.filter.active { color: #120b05; background: var(--gold); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.product-card { border-radius: 18px; padding: 14px; position: relative; overflow: hidden; }
.product-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--copper), var(--gold-2)); }
.product-topline { display: grid; grid-template-columns: 42px 1fr; gap: 10px; align-items: center; min-height: 54px; }
.product-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: rgba(215,168,79,0.11); border: 1px solid var(--line); font-size: 22px; }
.product-title-wrap { min-width: 0; }
.product-card h3 { font-size: 16px; line-height: 1.18; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.server-label { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-card p { color: var(--muted); line-height: 1.6; min-height: 76px; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin: 12px 0 8px; }
.price { color: var(--gold-2); font-size: 23px; font-family: Cinzel, serif; font-weight: 800; }
.tag { color: var(--muted); padding: 4px 7px; border: 1px solid var(--line); border-radius: 999px; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.stock-row { display: flex; flex-wrap: wrap; gap: 5px; margin: 0 0 12px; min-height: 24px; }
.stock-row span { color: var(--muted); border: 1px solid rgba(215,168,79,0.16); background: rgba(0,0,0,0.18); border-radius: 999px; padding: 4px 7px; font-size: 10px; }
.qty-row { display: flex; gap: 8px; }
.qty-row input { width: 64px; min-height: 42px; border: 1px solid var(--line); border-radius: 999px; color: var(--text); background: rgba(0,0,0,0.25); padding: 0 8px; text-align: center; }
.qty-row .button { flex: 1; min-height: 42px; padding: 0 12px; }

.how { margin: 88px 0; padding: clamp(26px, 4vw, 46px); border-radius: 34px; }
.how.page-only, .faq.page-only, .policies.page-only, .contact.page-only { margin-top: 0; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 26px; }
.steps article { padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(0,0,0,0.22); }
.steps span { color: var(--gold-2); font-family: Cinzel, serif; font-size: 26px; font-weight: 800; }
.steps p { color: var(--muted); line-height: 1.65; }

.checkout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 22px; align-items: start; scroll-margin-top: 120px; }
.cart-panel, .details-panel { border-radius: 28px; padding: 24px; }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.clear-cart { border: 1px solid var(--line); background: transparent; color: var(--muted); border-radius: 999px; padding: 9px 12px; }
.cart-items { display: grid; gap: 12px; min-height: 120px; }
.empty-cart { color: var(--muted); padding: 18px; border: 1px dashed var(--line); border-radius: 16px; text-align: center; }
.cart-item { display: grid; grid-template-columns: 1fr auto; gap: 10px; padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: rgba(0,0,0,0.2); }
.cart-item strong { display: block; }
.cart-item small { color: var(--muted); }
.cart-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); color: var(--text); background: rgba(255,255,255,0.05); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.cart-total strong { color: var(--gold-2); font-size: 28px; }
.details-panel { display: grid; gap: 16px; }
label { display: grid; gap: 8px; color: var(--muted); font-weight: 700; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0,0,0,0.32);
  color: var(--text);
  padding: 14px 15px;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold-2); box-shadow: 0 0 0 3px rgba(215,168,79,0.12); }
.paypal-box { margin-top: 8px; padding: 16px; border-radius: 16px; border: 1px solid var(--line); background: rgba(0,0,0,0.22); }
.paypal-note { color: var(--muted); line-height: 1.6; margin: 10px 0 0; font-size: 13px; }
.order-success { border: 1px solid rgba(78, 203, 113, 0.5); background: rgba(78, 203, 113, 0.12); color: #d9ffe4; padding: 16px; border-radius: 16px; line-height: 1.65; }

.faq, .policies, .contact { margin: 88px 0; scroll-margin-top: 120px; }
.faq-grid, .policy-grid, .contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.faq details, .policies details, .contact-card { border-radius: 18px; padding: 18px 20px; }
.faq summary, .policies summary { cursor: pointer; font-weight: 800; color: var(--gold-2); }
.faq p, .policy-copy { color: var(--muted); line-height: 1.7; }
.policy-copy ul { margin: 12px 0 0; padding-left: 20px; }
.policy-copy li { margin: 8px 0; }
.contact-form {
  margin: 0 0 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(30,25,17,0.86), rgba(12,10,7,0.92));
  box-shadow: var(--shadow);
}
.form-row { display: grid; gap: 14px; margin-bottom: 14px; }
.two-columns { grid-template-columns: repeat(2, 1fr); }
.contact-form label { margin-bottom: 14px; }
.contact-form .button { min-width: 180px; }
.form-note { color: var(--muted); line-height: 1.6; margin: 12px 0 0; font-size: 13px; }
.form-note.success { color: #d9ffe4; }
.contact-grid { grid-template-columns: repeat(3, 1fr); }
.contact-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(30,25,17,0.86), rgba(12,10,7,0.92));
  box-shadow: var(--shadow);
  transition: transform .2s, border-color .2s;
}
a.contact-card:hover { transform: translateY(-2px); border-color: rgba(255,221,135,0.7); }
.contact-card span { color: var(--gold-2); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.contact-card strong { font-family: Cinzel, serif; font-size: 22px; color: var(--text); }
.contact-card small { color: var(--muted); line-height: 1.6; }
.footer { display: flex; justify-content: space-between; gap: 24px; align-items: center; padding: 28px 0 42px; color: var(--muted); border-top: 1px solid var(--line); }
.footer strong { color: var(--text); font-family: Cinzel, serif; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.ember { position: fixed; border-radius: 50%; pointer-events: none; filter: blur(1px); opacity: .55; animation: float 8s ease-in-out infinite; }
.ember-one { width: 6px; height: 6px; left: 8%; bottom: 12%; background: var(--gold-2); box-shadow: 0 0 32px 12px rgba(215,168,79,.25); }
.ember-two { width: 4px; height: 4px; right: 10%; top: 22%; background: #ff7c45; box-shadow: 0 0 28px 10px rgba(168,93,48,.3); animation-delay: -2s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-26px); } }

@media (max-width: 1180px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .hero, .checkout { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .product-grid, .steps, .link-card-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .site-shell { width: min(100% - 22px, 1180px); }
  .nav { position: static; border-radius: 24px; align-items: flex-start; }
  .brand-logo { width: 48px; height: 48px; }
  .nav, .nav-links { flex-direction: column; }
  .nav-links { width: 100%; align-items: stretch; }
  .nav-links a { width: 100%; }
  .hero-copy, .hero-card { border-radius: 24px; }
  .hero-stats, .steps, .faq-grid, .policy-grid, .contact-grid, .trust-strip, .two-columns, .link-card-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .product-card { padding: 12px; }
  .product-topline { grid-template-columns: 36px 1fr; gap: 8px; }
  .product-icon { width: 36px; height: 36px; font-size: 19px; }
  .product-card h3 { font-size: 14px; }
  .price { font-size: 20px; }
  .tag { display: none; }
  .qty-row { gap: 6px; }
  .qty-row input { width: 54px; }
  h1 { font-size: 43px; }
  .footer { flex-direction: column; align-items: flex-start; }
}
