:root {
  --bg: #0c0e12;
  --panel: #14181f;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f4f1ea;
  --muted: #9a9488;
  --subtle: #6b6570;
  --accent: #d4b56a;
  --accent-soft: rgba(212, 181, 106, 0.14);
  --cara: #c9a060;
  --lila: #9eb0c4;
  --radius: 16px;
  --max: 1040px;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(12, 14, 18, 0.88);
  border-bottom: 1px solid var(--line);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}

.logo {
  font-weight: 650;
  letter-spacing: -0.03em;
  font-size: 1.08rem;
}

.logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.nav a:hover {
  color: var(--text);
}

.hero {
  padding: 3.25rem 0 2.75rem;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 2rem;
  align-items: center;
}

@media (max-width: 800px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-k {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.hero h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 650;
  margin-bottom: 1rem;
}

.hero-lead {
  max-width: 40ch;
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.hero-face {
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  border: 1px solid var(--line);
  display: grid;
  place-items: end center;
  padding-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cara-face {
  background: linear-gradient(165deg, rgba(201, 160, 96, 0.35), #1a1712 70%);
  color: #e8d4a8;
}

.lila-face {
  background: linear-gradient(165deg, rgba(158, 176, 196, 0.32), #12161c 70%);
  color: #c5d0dc;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1.15rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 650;
  border: 1px solid var(--line);
  transition: 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #1a150c;
  border-color: transparent;
}

.btn-primary:hover {
  filter: brightness(1.06);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
}

section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--line);
}

.section-k {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--subtle);
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.section-title {
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.45rem;
}

.section-lead {
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 1.6rem;
  font-size: 0.95rem;
}

.creators {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 720px) {
  .creators {
    grid-template-columns: 1fr;
  }
}

.creator-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  display: grid;
  gap: 0.7rem;
}

.creator-top {
  display: flex;
  gap: 0.95rem;
  align-items: center;
}

.avatar-fallback {
  width: 64px;
  height: 78px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid var(--line);
  font-size: 1.1rem;
}

.tagline {
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 650;
}

.creator-card > p {
  color: var(--muted);
  font-size: 0.9rem;
}

.creator-card .soft {
  color: var(--subtle);
  font-size: 0.84rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.2rem;
}

.social-row a {
  font-size: 0.74rem;
  font-weight: 650;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.social-row a:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

@media (max-width: 640px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}

.product {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease;
}

.product:hover {
  border-color: rgba(212, 181, 106, 0.35);
}

.product-media {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--subtle);
}

.cara-tint {
  background: linear-gradient(160deg, rgba(201, 160, 96, 0.22), #12151a);
  color: #d4b56a;
}

.lila-tint {
  background: linear-gradient(160deg, rgba(158, 176, 196, 0.2), #12151a);
  color: #a8b8c8;
}

.product-body {
  padding: 1rem;
  display: grid;
  gap: 0.4rem;
  flex: 1;
}

.product-meta {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--subtle);
  font-weight: 700;
}

.product h3 {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.product p {
  font-size: 0.86rem;
  color: var(--muted);
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.4rem;
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
}

.product .btn {
  min-height: 34px;
  font-size: 0.74rem;
  padding: 0 0.9rem;
}

.follow-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
}

@media (max-width: 640px) {
  .follow-strip {
    grid-template-columns: 1fr;
  }
}

.follow-strip h2 {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.follow-strip p {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 2rem 0 2.5rem;
  color: var(--subtle);
  font-size: 0.78rem;
}

.site-footer .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
}

.disclosure {
  margin-top: 1rem;
  max-width: 58ch;
  line-height: 1.5;
}

.disclosure strong {
  color: var(--muted);
}
