:root {
  --bg: #050505;
  --fg: #ffffff;
  --fg-muted: #b3b3b3;
  --border-soft: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.25);
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.75);
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  --font-mono: "JetBrains Mono", "Share Tech Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top, #151515 0, #000 55%);
  color: var(--fg);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  padding: 24px;
  position: relative;
  overflow-x: hidden;
}

.page-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.09;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  z-index: -1;
}

.site-header {
  max-width: 1120px;
  margin: 0 auto 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-text h1 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logo-text p {
  margin: 3px 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.nav-pills {
  display: inline-flex;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(16px);
}

.nav-pills a {
  text-decoration: none;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--fg-muted);
  transition: all 0.15s ease-out;
}

.nav-pills a:hover {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  max-width: 1120px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 28px;
}

.hero-text {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: radial-gradient(circle at top left, #1b1b1b 0, #050505 60%);
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.hero-text h2 {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
}

.hero-body {
  color: var(--fg-muted);
}

.hero-cta {
  display: flex;
  gap: 10px;
  margin: 16px 0;
}

.btn-primary {
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  background: linear-gradient(135deg, #fff, #c5c5c5);
  color: #000;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.8);
  transition: all .15s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.hero-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--fg-muted);
  display: flex;
  gap: 12px;
}

.panel {
  max-width: 1120px;
  margin: 0 auto 32px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: rgba(8, 8, 8, 0.9);
}

.panel h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.panel p {
  color: var(--fg-muted);
}

.panel-split {
  display: grid;
  grid-template-columns: 1.6fr 1.1fr;
  gap: 24px;
}

.spec-list {
  list-style: none;
  padding: 0;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.drop-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  padding: 16px;
  background: radial-gradient(circle at top, #151515 0, #050505 70%);
  position: relative;
  transition: all .25s ease;
}

.drop-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 55px rgba(0,0,0,.9);
}

.product-slider {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
}

.product-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity .6s ease;
}

.product-slider img.active {
  opacity: 1;
}

.drop-card .btn-primary {
  width: 100%;
  text-align: center;
  padding: 11px 0;
}

.stock-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(0,0,0,.55);
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-panel {
  text-align: center;
}

.cta-btn {
  display: block;
  margin: 10px auto;
  min-width: 260px;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: radial-gradient(circle at top, #fff 0, #d8d8d8 30%, #b0b0b0 100%);
  color: #000;
  font-weight: 600;
  cursor: pointer;
}

.site-footer {
  max-width: 1120px;
  margin: 20px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
  text-align: center;
  font-size: .78rem;
  color: var(--fg-muted);
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .panel-split { grid-template-columns: 1fr; }
  .drops-grid { grid-template-columns: 1fr; }
  .product-slider { height: 220px; }
}

@media (max-width: 600px) {
  .product-slider { height: 200px; }
}
