:root {
  --bg: #0b0b0d;
  --panel: #141418;
  --panel-soft: #1b1b21;
  --text: #f4f1ea;
  --muted: #b6b0a5;
  --line: #2a2a31;
  --accent: #d8c7ff;
  --accent-strong: #b89cff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(184,156,255,0.08), transparent 35%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6vw;
  border-bottom: 1px solid var(--line);
  background: rgba(11,11,13,0.92);
  backdrop-filter: blur(12px);
}

.brand {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

nav {
  display: flex;
  gap: 26px;
  font-size: 0.95rem;
  color: var(--muted);
}

nav a:hover {
  color: var(--text);
}

.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 90px 6vw;
}

.hero-content {
  width: min(860px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin-bottom: 28px;
  max-width: 1000px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.hero-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.2rem;
  margin-bottom: 34px;
}

.primary-button {
  display: inline-block;
  padding: 14px 22px;
  border: 1px solid var(--accent-strong);
  border-radius: 999px;
  background: var(--accent-strong);
  color: #0b0b0d;
  font-weight: 700;
}

.primary-button:hover {
  transform: translateY(-1px);
}

.section {
  width: min(var(--max), calc(100% - 12vw));
  margin: 0 auto;
  padding: 100px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading p {
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent),
    var(--panel);
  min-height: 280px;
}

.product-card .meta {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-card p {
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel-soft);
}

.about-grid p {
  color: var(--muted);
}

.collect-section {
  text-align: center;
}

.collect-section .section-heading {
  margin-left: auto;
  margin-right: auto;
}

footer {
  padding: 34px 6vw 50px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 850px) {
  .site-header {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .product-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .section {
    width: min(100% - 40px, var(--max));
    padding: 72px 0;
  }
}
.collection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 36px;
}

.collection-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), transparent),
    var(--panel);
}

.collection-card h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin-bottom: 18px;
}

.collection-card p {
  color: var(--muted);
}

.collection-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.collection-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel-soft);
}

.collection-stats strong {
  display: block;
  font-size: 1.7rem;
  color: var(--text);
  margin-bottom: 4px;
}

.collection-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.collection-price {
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.product-status {
  margin-top: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--accent);
}

@media (max-width: 700px) {
  .collection-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}