:root {
  --bg: #0f0f10;
  --card: #171719;
  --text: #f8f8f8;
  --muted: #b8b8b8;
  --accent: #c6a15b;
  --line: #2a2a2e;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}
.container { width: min(1120px, 92%); margin: 0 auto; }
.hero {
  padding: 72px 0 40px;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(1200px 400px at 80% -10%, #2a2216 0%, transparent 60%);
}
.kicker { color: var(--accent); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 700; }
h1 { font-size: clamp(32px, 6vw, 58px); line-height: 1.05; margin: 10px 0 14px; font-family: "Playfair Display", Georgia, serif; }
.sub { color: var(--muted); max-width: 760px; font-size: 18px; }
.cta-row { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; align-items: center; }
.btn {
  border: 1px solid var(--line);
  background: transparent;
  padding: 12px 18px;
  min-height: 44px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.btn.primary { background: var(--accent); color: #111; border-color: var(--accent); }
.section { padding: 44px 0; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.thumb { width: 100%; height: 180px; object-fit: cover; }
.card-body { padding: 16px; display:flex; flex-direction:column; height:100%; }
.badge { display: inline-block; border: 1px solid var(--accent); color: var(--accent); font-size: 11px; border-radius: 999px; padding: 4px 9px; font-weight: 700; }
.h3 { font-size: 20px; margin: 10px 0 8px; }
.desc { color: var(--muted); min-height: 48px; }
.price { margin: 10px 0; display: flex; gap: 9px; align-items: baseline; }
.price .launch { font-size: 24px; font-weight: 700; }
.price .regular { color: var(--muted); text-decoration: line-through; }
ul { margin: 8px 0 14px 18px; color: #ddd; }
.card-body .btn.primary { margin-top: auto; align-self: flex-start; }
.footer { padding: 34px 0 50px; border-top: 1px solid var(--line); color: var(--muted); }
.small { font-size: 13px; color: var(--muted); }
.offer-card {
  background: linear-gradient(120deg, #171719, #121214);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}

a {
  color: #e6d2a0;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}

a:hover {
  color: #fff;
  border-bottom-color: rgba(230, 210, 160, 0.55);
}

.card ul {
  margin-top: 10px;
}

.card li {
  margin: 8px 0;
}

.card a {
  font-weight: 500;
}
