/* ───── Social Shop — IG/Pinterest ───── */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --y: #FFD60A;
  --y-2: #FFE600;
  --y-deep: #F5C700;
  --y-bg: #FFFBE6;
  --y-soft: #FFF3B0;
  --pink: #FF4081;
  --orange: #FF9100;
  --ink: #0F0F0F;
  --ink-2: #1F1F1F;
  --gray-700: #404040;
  --gray-500: #737373;
  --gray-400: #A3A3A3;
  --gray-300: #D4D4D4;
  --gray-200: #E5E5E5;
  --gray-100: #F5F5F5;
  --gray-50: #FAFAFA;
  --paper: #FFFFFF;
  --bg: #FAFAFA;
  --green: #16A34A;
  --red: #EF4444;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
em { font-style: italic; font-weight: inherit; }
.hl { background: var(--y); padding: 0 8px; border-radius: 8px; display: inline-block; }

/* Header */
.hd {
  background: var(--paper);
  padding: 14px 24px;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--gray-100);
  position: sticky; top: 0;
  z-index: 50;
}
.hd-back {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gray-100);
  transition: background .2s;
}
.hd-back:hover { background: var(--y); }
.hd-logo { display: flex; align-items: center; gap: 8px; }
.hd-mark {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--y) 0%, var(--orange) 100%);
  border-radius: 10px;
  display: grid; place-items: center;
  font-weight: 800; font-size: 13px;
  color: var(--ink);
}
.hd-name { font-weight: 800; font-size: 17px; letter-spacing: -0.025em; }

.hd-search {
  display: flex; align-items: center; gap: 10px;
  background: var(--gray-100);
  border-radius: 100px;
  padding: 0 16px;
  max-width: 460px;
  transition: background .2s;
}
.hd-search:focus-within { background: var(--paper); box-shadow: 0 0 0 2px var(--ink); }
.hd-search input {
  flex: 1;
  border: 0; background: transparent;
  padding: 10px 0;
  font-family: inherit; font-size: 13px;
}
.hd-search input:focus { outline: none; }

.hd-r { display: flex; gap: 6px; align-items: center; }
.hd-tab {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
  transition: background .15s;
}
.hd-tab:hover { background: var(--gray-100); }
.hd-tab.active { color: var(--ink); }
.hd-tab.active::after {
  content: ""; position: absolute;
  bottom: -16px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px;
  border-radius: 50%; background: var(--y);
}
.hd-tab .dot {
  position: absolute; top: 8px; right: 9px;
  width: 8px; height: 8px;
  border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 2px var(--paper);
}
.hd-cart-bag {
  position: relative;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  cursor: pointer;
}
.cart-num {
  position: absolute; top: 4px; right: 4px;
  background: var(--ink);
  color: var(--y);
  width: 18px; height: 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 10px; font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.hd-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--y) 0%, var(--orange) 50%, var(--pink) 100%);
  padding: 2px;
  cursor: pointer;
  font-weight: 800;
  font-size: 12px;
  display: grid; place-items: center;
  position: relative;
  color: var(--ink);
}
.hd-avatar::before {
  content: "SK";
  background: var(--paper);
  width: 100%; height: 100%;
  border-radius: 50%;
  display: grid; place-items: center;
}

/* Story bar */
.story-bar {
  background: var(--paper);
  padding: 18px 24px;
  border-bottom: 1px solid var(--gray-100);
  overflow-x: auto;
  scrollbar-width: none;
}
.story-bar::-webkit-scrollbar { display: none; }
.story-track {
  display: flex; gap: 16px;
  max-width: 1440px;
  margin: 0 auto;
}
.story {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
  cursor: pointer;
  flex: 0 0 auto;
}
.story-ring {
  width: 76px; height: 76px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--y) 0%, var(--orange) 50%, var(--pink) 100%);
  position: relative;
  transition: transform .25s;
}
.story:hover .story-ring { transform: scale(1.05); }
.story.viewed .story-ring { background: var(--gray-300); }
.story-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--paper);
  padding: 2px;
}
.story-img {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--gray-100);
  display: grid; place-items: center;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  background-size: cover;
  background-position: center;
}
.story-name {
  font-size: 11px; font-weight: 600;
  text-align: center;
  max-width: 80px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.story-add .story-ring { background: var(--gray-200); }
.story-add .story-img {
  background: var(--ink); color: var(--y);
  font-size: 30px;
  font-weight: 300;
}

/* Hero */
.hero {
  max-width: 1440px;
  margin: 32px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-tag {
  display: inline-flex; gap: 8px; align-items: center;
  background: var(--ink); color: var(--paper);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  margin-bottom: 24px;
}
.dot-live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: live 1.5s ease-in-out infinite;
}
@keyframes live {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.7); transform: scale(1); }
  50% { box-shadow: 0 0 0 6px rgba(239,68,68,0); transform: scale(1.2); }
}
.hero-l h1 {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.hero-y {
  background: var(--y);
  padding: 0 12px;
  border-radius: 12px;
}
.hero-l p {
  margin-top: 20px;
  font-size: 15px;
  color: var(--gray-700);
  max-width: 460px;
}
.hero-tags {
  margin-top: 24px;
  display: flex; gap: 8px;
  flex-wrap: wrap;
}
.ht {
  padding: 6px 14px;
  background: var(--y-bg);
  border: 1px solid var(--y);
  border-radius: 100px;
  font-size: 12px; font-weight: 700;
  color: var(--ink);
  transition: background .2s;
}
.ht:hover { background: var(--y); }
.hero-ctas {
  margin-top: 28px;
  display: flex; gap: 14px; align-items: center;
}
.hb-primary {
  background: linear-gradient(135deg, var(--y) 0%, var(--orange) 100%);
  color: var(--ink);
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 800; font-size: 14px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 20px -4px rgba(255,145,0,0.4);
}
.hb-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -4px rgba(255,145,0,0.5); }
.hb-link {
  font-size: 13px; font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* Reel stack */
.hero-r {
  position: relative;
  display: flex; justify-content: center;
}
.reel-stack {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 9/14;
}
.reel {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px -10px rgba(0,0,0,0.25);
}
.reel-back {
  inset: 0;
  transform: rotate(-6deg) translateX(-20px);
  opacity: 0.5;
  filter: brightness(0.8);
}
.reel-back img { width: 100%; height: 100%; object-fit: cover; }
.reel-front {
  inset: 0;
  transform: rotate(2deg);
  background: var(--ink);
}
.reel-front > img {
  width: 100%; height: 100%; object-fit: cover;
}
.reel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 30%, transparent 60%, rgba(0,0,0,0.85) 100%);
  padding: 16px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--paper);
}
.reel-meta {
  display: flex; justify-content: space-between; align-items: center;
}
.reel-author { display: flex; gap: 10px; align-items: center; }
.reel-avatar {
  width: 36px; height: 36px;
  background: var(--y);
  color: var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 13px;
  border: 2px solid var(--paper);
}
.reel-name { font-size: 13px; font-weight: 700; }
.reel-sub { font-size: 11px; opacity: 0.85; }
.reel-follow {
  background: var(--y);
  color: var(--ink);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 11px; font-weight: 800;
}
.reel-product {
  display: flex; gap: 10px; align-items: center;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  color: var(--ink);
  padding: 10px;
  border-radius: 14px;
  margin-top: auto;
}
.reel-product > img {
  width: 48px; height: 48px;
  border-radius: 8px;
  object-fit: cover;
}
.reel-product > div { flex: 1; }
.rp-brand { font-size: 10px; font-weight: 700; color: var(--gray-500); letter-spacing: 0.06em; }
.rp-price { font-weight: 800; font-size: 14px; margin-top: 2px; font-variant-numeric: tabular-nums; }
.rp-old { color: var(--gray-400); text-decoration: line-through; font-size: 11px; font-weight: 600; }
.rp-buy {
  background: var(--ink); color: var(--y);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 11px; font-weight: 800;
  white-space: nowrap;
}

.reel-side {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 18px;
  align-items: center;
}
.rs-action {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  cursor: pointer;
  transition: transform .2s;
}
.rs-action:hover { transform: scale(1.15); }
.rs-icon {
  font-size: 24px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}
.rs-num {
  font-size: 10px; font-weight: 700;
  color: var(--paper);
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/* Trend tags */
.trend-tags {
  max-width: 1440px;
  margin: 40px auto 0;
  padding: 16px 24px;
  display: flex; gap: 8px; align-items: center;
  flex-wrap: wrap;
  background: var(--paper);
  border-radius: 14px;
  margin-left: 24px; margin-right: 24px;
}
.trend-tags strong { font-size: 13px; margin-right: 8px; }
.tt {
  padding: 7px 14px;
  background: var(--gray-100);
  border-radius: 100px;
  font-size: 12px; font-weight: 700;
  display: inline-flex; gap: 6px; align-items: center;
  transition: background .15s, color .15s;
}
.tt:hover { background: var(--y); }
.tt span { color: var(--gray-500); font-weight: 500; font-size: 11px; }
.tt:hover span { color: var(--ink); }
.tt-more {
  font-size: 12px; font-weight: 600;
  color: var(--gray-500);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* Feed */
.feed-wrap {
  max-width: 1440px;
  margin: 32px auto 0;
  padding: 0 24px;
}
.feed-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap; gap: 12px;
}
.feed-head h2 { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.feed-tabs { display: flex; gap: 6px; background: var(--paper); padding: 4px; border-radius: 100px; border: 1px solid var(--gray-200); }
.ft-tab {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  color: var(--gray-700);
  transition: background .2s, color .2s;
}
.ft-tab:hover { background: var(--gray-100); }
.ft-tab.active { background: var(--ink); color: var(--paper); }

.masonry {
  columns: 4;
  column-gap: 14px;
}
.post {
  break-inside: avoid;
  margin-bottom: 14px;
  background: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}
.post:hover { transform: translateY(-3px); box-shadow: 0 12px 28px -8px rgba(0,0,0,0.12); }
.post-img {
  position: relative;
  background: var(--gray-100);
  overflow: hidden;
}
.post-img img { width: 100%; display: block; transition: transform .8s; }
.post:hover .post-img img { transform: scale(1.04); }
.post-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--y); color: var(--ink);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px; font-weight: 800;
}
.post-actions {
  position: absolute; top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateX(8px);
  transition: opacity .25s, transform .25s;
}
.post:hover .post-actions { opacity: 1; transform: translateX(0); }
.post-action {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  font-size: 16px;
  cursor: pointer;
  transition: background .15s, transform .2s;
}
.post-action:hover { background: var(--y); transform: scale(1.1); }
.post-action.on { background: var(--y); }

.post-buy {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  background: var(--ink); color: var(--paper);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12px; font-weight: 700;
  display: flex; gap: 8px; justify-content: space-between; align-items: center;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s, transform .3s, background .2s;
}
.post:hover .post-buy { opacity: 1; transform: translateY(0); }
.post-buy:hover { background: var(--y); color: var(--ink); }
.post-buy strong { font-weight: 800; font-variant-numeric: tabular-nums; }

.post-info { padding: 12px 14px 14px; }
.post-author { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.post-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--y);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 800;
  flex-shrink: 0;
}
.post-author-name { font-size: 12px; font-weight: 700; }
.post-author-meta { font-size: 10px; color: var(--gray-500); }
.post-text {
  font-size: 12px;
  line-height: 1.45;
  color: var(--gray-700);
}
.post-text strong { color: var(--ink); font-weight: 700; }
.post-meta {
  margin-top: 10px;
  display: flex; gap: 14px;
  font-size: 11px; color: var(--gray-500);
}
.post-meta .star { color: var(--y-deep); }

/* Post variations */
.post-tall .post-img img { aspect-ratio: 3/5; object-fit: cover; }
.post-wide .post-img img { aspect-ratio: 4/3; object-fit: cover; }
.post-square .post-img img { aspect-ratio: 1/1; object-fit: cover; }

/* Brand section */
.brand-section {
  max-width: 1440px;
  margin: 60px auto 0;
  padding: 0 24px;
}
.bs-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 20px;
}
.bs-head h2 { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.bs-head p { font-size: 12px; color: var(--gray-500); margin-top: 2px; }
.sect-link {
  font-size: 13px; font-weight: 700;
  display: inline-flex; gap: 6px;
}
.brand-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}
.brand-card {
  background: var(--paper);
  border-radius: 16px;
  padding: 18px 12px;
  text-align: center;
  cursor: pointer;
  transition: transform .25s, background .25s;
  border: 1px solid var(--gray-100);
}
.brand-card:hover { background: var(--y-bg); transform: translateY(-3px); border-color: var(--y); }
.brand-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--y) 0%, var(--orange) 100%);
  display: grid; place-items: center;
  font-weight: 800; font-size: 14px;
  margin: 0 auto 10px;
  letter-spacing: -0.02em;
}
.brand-name { font-size: 12px; font-weight: 800; }
.brand-followers { font-size: 10px; color: var(--gray-500); margin-top: 2px; }
.brand-card .follow-btn {
  margin-top: 8px;
  padding: 5px 12px;
  background: var(--ink); color: var(--paper);
  border-radius: 100px;
  font-size: 10px; font-weight: 700;
  transition: background .2s;
}
.brand-card .follow-btn:hover { background: var(--y); color: var(--ink); }
.brand-card.following .follow-btn { background: var(--gray-100); color: var(--gray-700); }

/* UGC */
.ugc-section {
  max-width: 1440px;
  margin: 60px auto 0;
  padding: 0 24px;
}
.ugc-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 20px;
}
.ugc-head h2 { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.ugc-head p { font-size: 12px; color: var(--gray-500); margin-top: 2px; }
.ugc-link {
  background: var(--ink); color: var(--paper);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 12px; font-weight: 700;
  transition: background .2s;
}
.ugc-link:hover { background: var(--y); color: var(--ink); }

.ugc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.ugc {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--gray-100);
  cursor: pointer;
  transition: transform .25s;
}
.ugc:hover { transform: scale(1.04); z-index: 1; }
.ugc img { width: 100%; height: 100%; object-fit: cover; }
.ugc-badge {
  position: absolute;
  bottom: 8px; left: 8px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(10px);
  color: var(--paper);
  padding: 4px 8px;
  border-radius: 100px;
  font-size: 10px; font-weight: 600;
  display: flex; gap: 4px; align-items: center;
}
.ugc-tag-overlay {
  position: absolute;
  top: 8px; right: 8px;
  background: var(--y);
  color: var(--ink);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px; font-weight: 800;
}

/* Save list */
.save-list {
  max-width: 1440px;
  margin: 60px auto 0;
  padding: 40px 24px;
  background: var(--paper);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}
.sl-l h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}
.sl-l h2 em { font-style: italic; }
.sl-l p {
  margin-top: 16px;
  font-size: 14px;
  color: var(--gray-700);
  max-width: 380px;
  line-height: 1.6;
}
.sl-stats {
  margin-top: 24px;
  display: flex; gap: 24px;
}
.sl-stats > div { display: flex; flex-direction: column; }
.sl-stats strong { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; line-height: 1; }
.sl-stats span { font-size: 11px; color: var(--gray-500); margin-top: 4px; }
.sl-btn {
  display: inline-block;
  margin-top: 24px;
  background: var(--ink); color: var(--y);
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 700; font-size: 13px;
  transition: background .2s, transform .2s;
}
.sl-btn:hover { background: var(--y); color: var(--ink); transform: translateY(-2px); }

.sl-r {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.sl-card {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--gray-100);
}
.sl-card img { width: 100%; height: 100%; object-fit: cover; }
.sl-card-tag {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--y); color: var(--ink);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px; font-weight: 800;
}
.sl-card-bookmark {
  position: absolute;
  top: 8px; right: 8px;
  width: 28px; height: 28px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--y);
  font-size: 14px;
}

/* Live banner */
.live-banner {
  max-width: 1440px;
  margin: 60px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.lb-content { padding: 30px 0; }
.lb-tag {
  display: inline-flex; gap: 8px; align-items: center;
  background: var(--ink); color: var(--paper);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.lb-content h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.lb-content p {
  margin-top: 14px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
  max-width: 460px;
}
.lb-btn {
  margin-top: 22px;
  background: linear-gradient(135deg, var(--y) 0%, var(--orange) 100%);
  color: var(--ink);
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 800; font-size: 13px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 20px -4px rgba(255,145,0,0.4);
}
.lb-btn:hover { transform: translateY(-2px); }
.lb-img {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 24px;
  overflow: hidden;
}
.lb-img img { width: 100%; height: 100%; object-fit: cover; }
.lb-overlay {
  position: absolute;
  bottom: 14px; left: 14px;
  display: flex; gap: 8px;
}
.lb-viewers, .lb-time {
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  color: var(--paper);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
}

/* VIP section */
.vip-section {
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 0 24px;
  text-align: center;
}
.kicker {
  display: inline-block;
  background: var(--y);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.vip-section h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.vip-section p {
  margin-top: 14px;
  color: var(--gray-700);
}
.vip-row {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.vc {
  background: var(--paper);
  border: 2px solid var(--gray-200);
  border-radius: 20px;
  padding: 28px 22px;
  cursor: pointer;
  transition: transform .25s, border-color .25s;
}
.vc:hover { transform: translateY(-3px); border-color: var(--y); }
.vc.gold { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.vc-medal { font-size: 36px; }
.vc-name { font-weight: 800; font-size: 18px; margin-top: 10px; letter-spacing: -0.02em; }
.vc-price { font-weight: 800; font-size: 22px; margin-top: 4px; font-variant-numeric: tabular-nums; }
.vc.gold .vc-price { color: var(--y); }
.vc-perks { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--gray-200); font-size: 11px; color: var(--gray-500); line-height: 1.5; }
.vc.gold .vc-perks { border-top-color: rgba(255,255,255,0.1); color: var(--gray-400); }

/* Newsletter */
.news {
  background: var(--y);
  margin: 60px 0 0;
  padding: 32px 24px;
}
.news-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.news h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.news p { font-size: 13px; margin-top: 4px; }
.news-form {
  display: flex; gap: 0;
  background: var(--paper);
  border-radius: 100px;
  padding: 6px;
  min-width: 380px;
}
.news-form input { flex: 1; border: 0; background: transparent; padding: 10px 18px; font-size: 14px; }
.news-form input:focus { outline: none; }
.news-form button {
  background: var(--ink); color: var(--paper);
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 700; font-size: 13px;
}

/* Footer */
.ft {
  background: var(--paper);
  padding: 48px 24px 0;
  border-top: 1px solid var(--gray-100);
}
.ft-cols {
  max-width: 1440px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.ft-brand p {
  margin-top: 12px;
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.55;
}
.ft-cols h5 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.ft-cols a { display: block; padding: 5px 0; font-size: 13px; color: var(--gray-700); }
.ft-cols a:hover { color: var(--ink); }
.ft-base {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 0 24px;
  border-top: 1px solid var(--gray-100);
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--gray-500);
}

/* Responsive */
@media (max-width: 1100px) {
  .hd-search { display: none; }
  .hero { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .brand-row { grid-template-columns: repeat(4, 1fr); }
  .ugc-grid { grid-template-columns: repeat(3, 1fr); }
  .save-list { grid-template-columns: 1fr; }
  .live-banner { grid-template-columns: 1fr; }
  .vip-row { grid-template-columns: 1fr; }
  .ft-cols { grid-template-columns: 1fr 1fr; }
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s, transform .6s; }
.reveal.in { opacity: 1; transform: translateY(0); }
