:root {
  --bg: #04070b;
  --bg-soft: rgba(7, 11, 15, 0.65);
  --panel: rgba(7, 11, 15, 0.88);
  --ink: #eef5f2;
  --muted: rgba(238, 245, 242, 0.58);
  --mint: #6cbfa6;
  --gold: #e1c476;
  --radius: 16px;
  --shadow: 0 18px 40px rgba(0,0,0,0.4);
  --font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: radial-gradient(circle at top, #0c1620 0%, #04070b 45%, #000 100%);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.6;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: rgba(2, 4, 6, 0.45);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(225, 196, 118, 0.03);
}

.brand {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-text .title {
  font-weight: 700;
  letter-spacing: .04em;
}
.brand-text .subtitle {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  font-size: 0.85rem;
}
.nav a {
  color: var(--ink);
  text-decoration: none;
}
.nav a:hover { color: var(--mint); }
.nav .cta {
  border: 1px solid rgba(108,191,166,0.4);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.35rem, 5vw, 3rem);
  margin: 0.5rem 0 1rem;
}
.hero-copy .lead {
  color: var(--muted);
  max-width: 34rem;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 0.75rem;
  color: var(--mint);
}
.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1.4rem 0 0.6rem;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.btn.primary {
  background: radial-gradient(circle, rgba(225,196,118,0.95) 0%, rgba(152,108,44,0.35) 100%);
  color: #050608;
  box-shadow: 0 16px 35px rgba(225,196,118,0.25);
}
.btn.ghost {
  border: 1px solid rgba(238,245,242,0.15);
  color: var(--ink);
  background: rgba(4,7,11,0.2);
}

.meta {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.9rem;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card {
  background: radial-gradient(circle at top, rgba(108,191,166,0.35) 0%, rgba(4,7,11,0.5) 50%);
  border: 1px solid rgba(108,191,166,0.15);
  border-radius: 20px;
  padding: 1.2rem 1.3rem 1.1rem;
  box-shadow: var(--shadow);
}
.hero-card.secondary {
  background: rgba(4,7,11,0.3);
  border: 1px solid rgba(225,196,118,0.1);
}
.hc-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: rgba(225,196,118,0.75);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 1.5rem 3.4rem;
}

.section-head h2 {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}
.section-head p {
  color: var(--muted);
  max-width: 44rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.3rem;
  margin-top: 1.5rem;
}

.product-card {
  background: rgba(4,7,11,0.4);
  border: 1px solid rgba(238,245,242,0.03);
  border-radius: 14px;
  padding: 1rem 1rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.product-card.highlight {
  border-color: rgba(225,196,118,0.35);
  background: radial-gradient(circle at top, rgba(225,196,118,0.15) 0%, rgba(4,7,11,0.5) 45%);
}
.product-card.wide { grid-column: span 2; }
.product-card h3 { margin: 0.2rem 0 0.3rem; }
.pc-tag {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pc-note {
  font-size: 0.8rem;
  color: rgba(238,245,242,0.55);
}
.pc-price {
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 0.35rem;
}
.pc-stock {
  font-size: 0.66rem;
  color: rgba(238,245,242,0.4);
  text-transform: uppercase;
}
.btn.small {
  width: fit-content;
  margin-top: 0.4rem;
  font-size: 0.72rem;
  padding: 0.45rem 0.9rem;
}
.product-card.out {
  opacity: 0.35;
  position: relative;
}
.product-card .sold {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(168,48,48,0.75);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.6rem;
  text-transform: uppercase;
}

.variant-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  margin-top: 1.3rem;
}
.variant-card {
  background: rgba(4,7,11,0.35);
  border: 1px solid rgba(238,245,242,0.02);
  border-radius: 12px;
  padding: 1rem 1rem 1.1rem;
}
.variant-card.strong {
  border-color: rgba(225,196,118,0.35);
}

.about-body {
  margin-top: 1.2rem;
  background: rgba(4,7,11,0.35);
  border: 1px solid rgba(238,245,242,0.02);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  line-height: 1.7;
  color: rgba(238,245,242,0.85);
}

.connect .link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 1rem;
  margin-top: 1.3rem;
}
.link-card {
  background: rgba(4,7,11,0.2);
  border: 1px solid rgba(108,191,166,0.08);
  border-radius: 12px;
  padding: 0.8rem 1rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: inherit;
  text-decoration: none;
}
.link-card:hover { border-color: rgba(108,191,166,0.45); }

.footer {
  text-align: center;
  padding: 2.5rem 1.2rem 3rem;
  background: rgba(2,4,6,0);
  font-size: 0.7rem;
  color: rgba(238,245,242,0.45);
}

@media (max-width: 930px) {
  .hero { grid-template-columns: 1fr; }
  .product-card.wide { grid-column: span 1; }
  .nav { gap: 0.8rem; }
}
