:root {
  --bg: #080808;
  --bg-elevated: #111111;
  --bg-card: #161616;
  --fg: #f0ebe3;
  --fg-muted: #9a9590;
  --gold: #d4a843;
  --gold-dim: rgba(212, 168, 67, 0.15);
  --coral: #e8735a;
  --radius: 12px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  overflow: hidden;
}

.hero-inner {
  max-width: 720px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 40px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.gold {
  color: var(--gold);
}

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

/* ── Products ── */
.products {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

.products-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
  border-color: rgba(212, 168, 67, 0.2);
  transform: translateY(-2px);
}

.product-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  opacity: 0.7;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.product-card p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── How It Works ── */
.how {
  padding: 100px 24px;
}

.how-inner {
  max-width: 700px;
  margin: 0 auto;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  min-width: 80px;
  text-align: right;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── Closing ── */
.closing {
  padding: 120px 24px;
  background: var(--bg-elevated);
  text-align: center;
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.closing p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* ── Footer ── */
.site-footer {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-dot {
  color: var(--fg-muted);
  opacity: 0.4;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step {
    flex-direction: column;
    gap: 12px;
  }

  .step-number {
    text-align: left;
    font-size: 2rem;
    min-width: auto;
  }

  .hero {
    min-height: 70vh;
    padding: 60px 20px;
  }

  .products, .how, .closing {
    padding: 60px 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Navigation ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 0 24px;
}

.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.9rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover { color: var(--fg); }

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--gold);
  padding: 8px 18px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.01em;
}

.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ── Hero CTAs ── */
.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn-primary {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--gold);
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.01em;
}

.hero-btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* ── Store page ── */
.store-main {
  min-height: 80vh;
}

.store-header {
  padding: 80px 24px 60px;
  text-align: center;
  background: var(--bg);
}

.store-header-inner {
  max-width: 600px;
  margin: 0 auto;
}

.store-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 20px 0 12px;
}

.store-lede {
  font-size: 1rem;
  color: var(--fg-muted);
}

.store-grid-wrap {
  background: var(--bg-elevated);
  padding: 60px 24px 100px;
}

.store-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.store-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.store-card:hover {
  border-color: rgba(212,168,67,0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.store-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.store-card-badge {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 4px 10px;
  border-radius: 100px;
}

.store-card-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
}

.store-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--fg);
}

.store-card-tagline {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
  flex: 1;
}

.store-card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.store-card-cta {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.01em;
}

/* ── Product detail page ── */
.product-main {
  min-height: 80vh;
  padding: 48px 24px 100px;
}

.product-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.product-breadcrumb {
  margin-bottom: 40px;
}

.product-breadcrumb a {
  font-size: 0.88rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-breadcrumb a:hover { color: var(--fg); }

.product-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}

.product-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 20px 0 16px;
}

.product-tagline {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.product-desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-desc p {
  font-size: 0.98rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

.product-desc-heading {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 8px;
}

.product-desc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-desc-list li {
  font-size: 0.95rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.product-desc-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.7;
  font-size: 0.8rem;
  top: 2px;
}

/* ── Buy box ── */
.product-buy-box {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: sticky;
  top: 80px;
}

.buy-box-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--fg);
}

.buy-box-currency {
  font-size: 1.6rem;
  vertical-align: top;
  margin-top: 6px;
  display: inline-block;
  color: var(--fg-muted);
}

.buy-box-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.buy-btn {
  display: block;
  width: 100%;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg);
  background: var(--gold);
  text-align: center;
  padding: 16px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.01em;
}

.buy-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.buy-box-perks {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.buy-box-perks li {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ── 404 ── */
.not-found {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.not-found h1 {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.not-found p {
  color: var(--fg-muted);
  margin-top: 16px;
}

/* ── Responsive: store + product ── */
@media (max-width: 768px) {
  .store-grid {
    grid-template-columns: 1fr;
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-buy-box {
    position: static;
  }

  .nav-links .nav-link {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 960px) {
  .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-layout {
    grid-template-columns: 1fr 280px;
    gap: 40px;
  }
}