
:root {
  --bg: #050505;
  --bg-alt: #101010;
  --gold: #d4af37;
  --gold-soft: #e8c766;
  --text: #f5f5f5;
  --muted: #b3b3b3;
  --radius: 18px;
  --shadow: 0 20px 45px rgba(0,0,0,0.7);
  --max-width: 1120px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1a1a1a 0, #050505 55%, #000 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--gold);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(212,175,55,0.35);
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(0,0,0,0.96), rgba(0,0,0,0.86));
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.logo-circle {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.logo-text-main {
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.86rem;
  text-transform: uppercase;
}
.logo-text-sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.18em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 0.8rem;
}
.nav-links a {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
}
.nav-links a:hover {
  color: var(--gold);
  text-decoration: none;
}
.nav-cta {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: radial-gradient(circle at top left, rgba(212,175,55,0.22), transparent 55%);
}
main {
  flex: 1;
}
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.2rem 1.25rem 2.5rem;
}
.section-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: center;
  margin-top: 1.8rem;
}
.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
}
.hero-title {
  font-size: clamp(2.4rem, 4vw, 2.9rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-title span {
  color: var(--gold);
}
.hero-subtitle {
  font-size: 0.96rem;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.6rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}
.btn-primary {
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #1a1305;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  filter: brightness(1.05);
}
.btn-ghost {
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.7);
  background: transparent;
  color: var(--gold);
  font-size: 0.84rem;
}
.hero-meta {
  font-size: 0.8rem;
  color: var(--muted);
}
.hero-card {
  border-radius: 1.8rem;
  background: radial-gradient(circle at top, #272018 0, #050505 62%);
  border: 1px solid rgba(212,175,55,0.5);
  padding: 1.4rem 1.4rem 1.6rem;
  box-shadow: var(--shadow);
}
.hero-chip {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.7);
  padding: 0.26rem 0.8rem;
  display: inline-block;
  margin-bottom: 0.7rem;
}
.hero-card h2 {
  font-size: 1.02rem;
  margin-bottom: 0.45rem;
}
.hero-card p {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}
.hero-mini-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0.7rem;
  margin-top: 0.3rem;
}
.hero-pill {
  border-radius: 1.1rem;
  border: 1px solid rgba(212,175,55,0.5);
  background: rgba(0,0,0,0.7);
  padding: 0.65rem 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.hero-pill strong {
  display: block;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.section-title {
  font-size: 1.4rem;
}
.section-title span {
  color: var(--gold);
}
.section-desc {
  font-size: 0.86rem;
  color: var(--muted);
  max-width: 27rem;
}
.section-alt {
  background: radial-gradient(circle at top, #181818 0, #050505 60%);
  border-top: 1px solid rgba(212,175,55,0.25);
  border-bottom: 1px solid rgba(212,175,55,0.2);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
}
.product-card {
  border-radius: var(--radius);
  background: radial-gradient(circle at top, #19120a 0, #050505 62%);
  border: 1px solid rgba(212,175,55,0.45);
  padding: 1rem 1rem 1.1rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.product-tag {
  font-size: 0.74rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.product-card h3 {
  font-size: 0.98rem;
}
.product-card p {
  font-size: 0.84rem;
  color: var(--muted);
  flex: 1;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.2rem;
}
.pill {
  font-size: 0.78rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.5);
  background: rgba(0,0,0,0.7);
  color: var(--muted);
}
.btn-product {
  align-self: flex-start;
  margin-top: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #1a1305;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: none;
  box-shadow: var(--shadow);
}
.btn-product:hover {
  filter: brightness(1.05);
  text-decoration: none;
}
.info-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.2rem;
}
footer {
  border-top: 1px solid rgba(212,175,55,0.35);
  padding: 1.7rem 1.25rem 2.2rem;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 1rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: space-between;
}
.footer-col {
  max-width: 320px;
}
.footer-col h4 {
  font-size: 0.86rem;
  margin-bottom: 0.4rem;
  color: var(--gold);
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.3rem;
}
@media (max-width: 860px) {
  .section-hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-card {
    order: -1;
  }
}
@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .section {
    padding-inline: 1rem;
  }
}
