@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

:root {
  --bg: #07070e;
  --bg-card: #0e0e1a;
  --bg-card-alt: #121222;
  --fg: #f0eaf8;
  --fg-muted: #a09cb8;
  --accent: #ff2d7a;
  --accent-dim: rgba(255, 45, 122, 0.15);
  --holo-1: #d4d8ff;
  --holo-2: #c0ffc8;
  --holo-3: #ffb8d4;
  --holo-4: #b8e0ff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(7,7,14,0.9) 0%, transparent 100%);
}
.nav__brand { display: flex; align-items: center; gap: 0.5rem; }
.nav__logo {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--fg);
}
.nav__tagline { font-size: 0.8rem; color: var(--fg-muted); letter-spacing: 0.05em; }
.nav__links { display: flex; align-items: center; gap: 1.5rem; }
.nav__shop-link {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.nav__shop-link:hover { color: var(--accent); border-color: rgba(255,45,122,0.4); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(255, 45, 122, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 30% 60%, rgba(180, 150, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 70% 40%, rgba(100, 200, 255, 0.07) 0%, transparent 50%),
    var(--bg);
}
.hero__shimmer {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 216, 255, 0.08) 0%, transparent 70%);
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: shimmerPulse 4s ease-in-out infinite;
  pointer-events: none;
}
.hero__shimmer--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 45, 122, 0.06) 0%, transparent 70%);
  animation-delay: 2s;
}
@keyframes shimmerPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}
.hero__flake {
  position: absolute;
  animation: floatFlake 6s ease-in-out infinite;
}
.hero__flake svg { width: 100%; height: 100%; }
.hero__flake--1 { width: 60px; top: 25%; left: 15%; animation-duration: 5s; animation-delay: 0s; }
.hero__flake--2 { width: 40px; top: 55%; right: 20%; animation-duration: 7s; animation-delay: 1s; }
.hero__flake--3 { width: 30px; bottom: 30%; left: 25%; animation-duration: 6s; animation-delay: 2s; }
@keyframes floatFlake {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
  50% { transform: translateY(-12px) rotate(10deg); opacity: 1; }
}
.hero__content { position: relative; z-index: 2; max-width: 760px; }
.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero__headline em {
  font-style: italic;
  color: var(--accent);
}
.hero__lede {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.hero__tag {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(212, 216, 255, 0.25);
  border-radius: 100px;
  color: var(--holo-1);
  background: rgba(212, 216, 255, 0.05);
}

/* ── LOOKBOOK ── */
.lookbook {
  padding: 6rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.lookbook__header { margin-bottom: 3.5rem; }
.lookbook__label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.lookbook__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
}
.lookbook__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.lookbook__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
}
.lookbook__card-inner {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.lookbook__card-bg {
  position: absolute;
  inset: 0;
}
.lookbook__card--holo .lookbook__card-bg {
  background: linear-gradient(135deg, #0d0d1f 0%, #1a1035 50%, #0f0820 100%);
}
.lookbook__card--aurora .lookbook__card-bg {
  background: linear-gradient(135deg, #041a12 0%, #0a2a1f 40%, #0d1528 100%);
}
.lookbook__card--pixel .lookbook__card-bg {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a0d25 50%, #0d0d1f 100%);
}
.lookbook__card--iridescent .lookbook__card-bg {
  background: linear-gradient(135deg, #0f0d18 0%, #101820 50%, #0d0d18 100%);
}
.lookbook__card-sparkle {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--holo-1);
}
.lookbook__card-sparkle svg { width: 28px; height: 28px; animation: sparkleTwinkle 2s ease-in-out infinite; }
.lookbook__card-sparkle svg:nth-child(2) { animation-delay: 0.5s; color: var(--holo-3); }
.lookbook__card-sparkle svg:nth-child(3) { animation-delay: 1s; color: var(--holo-4); }
@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}
.lookbook__card-waves {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--holo-2);
}
.lookbook__card-waves svg { width: 80%; height: 60px; }
.lookbook__card-grid {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.pixel-row { display: flex; gap: 6px; }
.pixel {
  width: 12px;
  height: 12px;
  background: rgba(255, 45, 122, 0.3);
  border-radius: 1px;
  transition: background 0.3s;
}
.pixel--lit { background: var(--accent); box-shadow: 0 0 6px var(--accent); }
.lookbook__card-sheen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 2rem;
}
.sheen-line {
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(to right, transparent, rgba(180,220,255,0.4), rgba(200,255,180,0.3), transparent);
}
.lookbook__card-info {
  padding: 1.5rem;
}
.lookbook__card-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.lookbook__card-info p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }

/* ── HOW IT WORKS ── */
.how {
  padding: 5rem 3rem;
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.how__label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
}
.how__steps { display: flex; flex-direction: column; gap: 2.5rem; }
.how__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.how__step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: rgba(255,45,122,0.3);
  line-height: 1;
  padding-top: 0.25rem;
}
.how__step-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}
.how__step-body p { font-size: 0.9rem; color: var(--fg-muted); }

/* ── COLLECTIONS ── */
.collections {
  padding: 6rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.collections__intro { margin-bottom: 3rem; }
.collections__label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.collections__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  margin-bottom: 1rem;
}
.collections__sub { font-size: 0.95rem; color: var(--fg-muted); max-width: 480px; }
.collections__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}
.product-card--bundle {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255,45,122,0.08) 100%);
  border-color: rgba(255,45,122,0.25);
}
.product-card__badge {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(255,45,122,0.2);
  width: fit-content;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
}
.product-card__desc { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.55; flex: 1; }
.product-card__swatches { display: flex; gap: 0.5rem; }
.swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
}
.swatch--holo-1 { background: linear-gradient(135deg, #d4d8ff, #c0e8ff); }
.swatch--holo-2 { background: linear-gradient(135deg, #ffb8d4, #d4d8ff); }
.swatch--holo-3 { background: linear-gradient(135deg, #c0ffc8, #b8e0ff); }
.swatch--aurora-1 { background: linear-gradient(135deg, #a0ffcc, #88ccff); }
.swatch--aurora-2 { background: linear-gradient(135deg, #cc88ff, #a0ffcc); }
.swatch--aurora-3 { background: linear-gradient(135deg, #88ccff, #ffb8d4); }
.swatch--pixel-1 { background: var(--accent); }
.swatch--pixel-2 { background: linear-gradient(135deg, #9b59b6, #3498db); }
.swatch--pixel-3 { background: linear-gradient(135deg, #2ecc71, #3498db); }
.product-card__price {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--fg);
  margin-top: auto;
}
.product-card__was {
  text-decoration: line-through;
  color: var(--fg-muted);
  font-size: 0.9rem;
  margin-right: 0.5rem;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 7rem 3rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto__inner { position: relative; }
.manifesto__inner::before {
  content: '';
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--accent);
}
.manifesto__quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 2.5rem;
}
.manifesto__body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.footer__logo {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
}
.footer__sub { font-size: 0.8rem; color: var(--fg-muted); }
.footer__meta { text-align: right; }
.footer__meta p { font-size: 0.75rem; color: rgba(255,255,255,0.3); line-height: 1.8; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 1.25rem 1.5rem; }
  .nav__tagline { display: none; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero__headline { font-size: 2.75rem; }
  .hero__tags { gap: 0.5rem; }
  .hero__tag { font-size: 0.7rem; padding: 0.35rem 0.8rem; }
  .hero__flake--1 { left: 8%; top: 20%; width: 40px; }
  .hero__flake--2 { right: 8%; width: 28px; }
  .lookbook { padding: 4rem 1.5rem; }
  .how { padding: 4rem 1.5rem; }
  .how__step { grid-template-columns: 56px 1fr; }
  .how__step-num { font-size: 1.75rem; }
  .collections { padding: 4rem 1.5rem; }
  .manifesto { padding: 5rem 1.5rem; }
  .footer { padding: 2rem 1.5rem; flex-direction: column; }
  .footer__meta { text-align: left; }
}
@media (max-width: 480px) {
  .hero__headline { font-size: 2.25rem; }
  .lookbook__grid { grid-template-columns: 1fr; }
  .collections__grid { grid-template-columns: 1fr; }
}