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

:root {
  --bg: #07070f;
  --bg2: #0d0d1a;
  --bg3: #111122;
  --amber: #e8a060;
  --amber-dim: #a06030;
  --purple: #7c3aed;
  --purple-dim: #4c1d95;
  --white: #f0eeff;
  --gray: #8880aa;
  --border: rgba(124, 58, 237, 0.2);
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--amber); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(7, 7, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--white) 20%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-logo span {
  background: linear-gradient(135deg, var(--purple) 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); text-decoration: none; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 56px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 50%, rgba(124,58,237,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 70% 50%, rgba(232,160,96,0.10) 0%, transparent 60%),
    linear-gradient(180deg, #07070f 0%, #0a0815 50%, #07070f 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 60px 24px;
}

.wordmark {
  font-family: var(--font-display);
  font-size: clamp(64px, 14vw, 130px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -3px;
  background: linear-gradient(135deg, var(--white) 20%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wordmark span {
  background: linear-gradient(135deg, var(--purple) 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 3.5vw, 26px);
  color: var(--amber);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.hero-sub {
  font-size: clamp(14px, 2vw, 17px);
  color: var(--gray);
  max-width: 480px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #6d28d9; transform: translateY(-2px); text-decoration: none; }

.btn-ghost {
  border: 1px solid rgba(232,160,96,0.4);
  color: var(--amber);
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
.btn-ghost:hover { border-color: var(--amber); transform: translateY(-2px); text-decoration: none; }

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  opacity: 0.5;
  animation: fadeUp 2s ease-in-out infinite;
}

@keyframes fadeUp {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.7; transform: translateX(-50%) translateY(-4px); }
}

/* ── SHARED SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--white) 40%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--gray);
  font-size: 16px;
}

/* ── ROSTER ── */
.roster {
  padding: 100px 0;
  background: var(--bg2);
}

.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.character-card {
  position: relative;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  color: inherit;
}

.character-card:hover { transform: translateY(-4px); }

.card-accent {
  width: 36px;
  height: 4px;
  border-radius: 2px;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.card-profile-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.card-profile-link:hover { opacity: 1; text-decoration: none; }

.character-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}

.character-card .species {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--gray);
  font-weight: 400;
  margin-top: 4px;
}

.character-card .desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.card-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

/* ── PLATFORM BUTTONS ── */
.card-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.platform-btn {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.2s, transform 0.15s;
  display: inline-block;
}
.platform-btn:hover { opacity: 0.85; transform: translateY(-1px); text-decoration: none; }

.btn-avatar  { background: rgba(232,160,96,0.18); border: 1px solid rgba(232,160,96,0.4); color: var(--amber); }
.btn-of      { background: rgba(0,174,239,0.15); border: 1px solid rgba(0,174,239,0.35); color: #00aeef; }
.btn-fansly  { background: rgba(255,100,150,0.15); border: 1px solid rgba(255,100,150,0.3); color: #ff6496; }
.btn-fanvue  { background: rgba(167,139,250,0.15); border: 1px solid rgba(167,139,250,0.3); color: #a78bfa; }
.btn-fetlife { background: rgba(180,30,30,0.15); border: 1px solid rgba(180,30,30,0.35); color: #e05555; }
.btn-live    { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3); color: #4ade80; }

.coming-soon { opacity: 0.45; cursor: default; pointer-events: none; }

/* ── PER-CHARACTER COLORS ── */
.card-kylie { border-color: rgba(124,58,237,0.35); }
.card-kylie:hover { box-shadow: 0 12px 40px rgba(124,58,237,0.2); border-color: rgba(124,58,237,0.5); }
.card-kylie .card-accent { background: #7c3aed; }
.card-kylie .card-tag { background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.25); color: #a78bfa; }
.card-kylie .card-profile-link { color: #a78bfa; }

.card-kiyomi { border-color: rgba(232,121,160,0.3); }
.card-kiyomi:hover { box-shadow: 0 12px 40px rgba(232,121,160,0.18); border-color: rgba(232,121,160,0.5); }
.card-kiyomi .card-accent { background: #e879a0; }
.card-kiyomi .card-tag { background: rgba(232,121,160,0.1); border: 1px solid rgba(232,121,160,0.25); color: #e879a0; }
.card-kiyomi .card-profile-link { color: #e879a0; }

.card-dollface { border-color: rgba(244,160,192,0.3); }
.card-dollface:hover { box-shadow: 0 12px 40px rgba(244,160,192,0.18); border-color: rgba(244,160,192,0.5); }
.card-dollface .card-accent { background: #f4a0c0; }
.card-dollface .card-tag { background: rgba(244,160,192,0.1); border: 1px solid rgba(244,160,192,0.25); color: #f4a0c0; }
.card-dollface .card-profile-link { color: #f4a0c0; }

.card-aubrie { border-color: rgba(244,162,97,0.3); }
.card-aubrie:hover { box-shadow: 0 12px 40px rgba(244,162,97,0.18); border-color: rgba(244,162,97,0.5); }
.card-aubrie .card-accent { background: #f4a261; }
.card-aubrie .card-tag { background: rgba(244,162,97,0.1); border: 1px solid rgba(244,162,97,0.25); color: #f4a261; }
.card-aubrie .card-profile-link { color: #f4a261; }

.card-lillian { border-color: rgba(167,139,250,0.3); }
.card-lillian:hover { box-shadow: 0 12px 40px rgba(167,139,250,0.18); border-color: rgba(167,139,250,0.5); }
.card-lillian .card-accent { background: #a78bfa; }
.card-lillian .card-tag { background: rgba(167,139,250,0.1); border: 1px solid rgba(167,139,250,0.25); color: #a78bfa; }
.card-lillian .card-profile-link { color: #a78bfa; }

/* ── COLLECTIONS ── */
.collections {
  padding: 100px 0;
  background: var(--bg);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.collection-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.collection-card:hover { transform: translateY(-4px); text-decoration: none; }

.col-icon { font-size: 32px; line-height: 1; }

.collection-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.collection-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
}

.col-count {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--amber);
}

.coming-soon-label { color: var(--gray); opacity: 0.5; }

.col-avatars { border-color: rgba(232,160,96,0.3); }
.col-avatars:hover { box-shadow: 0 12px 40px rgba(232,160,96,0.12); border-color: rgba(232,160,96,0.5); }

.col-content { border-color: rgba(0,174,239,0.2); }
.col-content:hover { box-shadow: 0 12px 40px rgba(0,174,239,0.08); }

.col-ai { border-color: rgba(167,139,250,0.2); }
.col-ai:hover { box-shadow: 0 12px 40px rgba(167,139,250,0.1); }

.col-physical { border-color: rgba(34,197,94,0.2); }
.col-physical:hover { box-shadow: 0 12px 40px rgba(34,197,94,0.08); }

.coming-soon-card { opacity: 0.65; }

/* ── SHOP ── */
.shop {
  padding: 100px 0;
  background: var(--bg2);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.shop-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.shop-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); text-decoration: none; }

.shop-card-header {
  padding: 24px 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-kylie-bg    { background: linear-gradient(135deg, #1a0d3a 0%, #2d1060 100%); }
.card-kiyomi-bg   { background: linear-gradient(135deg, #2a0d1a 0%, #4a1535 100%); }
.card-dollface-bg { background: linear-gradient(135deg, #2a1020 0%, #3d1530 100%); }
.card-aubrie-bg   { background: linear-gradient(135deg, #2a1a08 0%, #3d2810 100%); }
.card-lillian-bg  { background: linear-gradient(135deg, #150d2a 0%, #251545 100%); }

.shop-char-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.shop-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--amber);
}

.shop-card-body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.shop-species {
  font-size: 12px;
  color: var(--gray);
  font-style: italic;
}

.shop-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.shop-includes li {
  font-size: 12px;
  color: var(--gray);
  padding-left: 14px;
  position: relative;
}
.shop-includes li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--amber);
}

.shop-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
  margin-top: 4px;
}

.shop-note {
  font-size: 13px;
  color: var(--gray);
  opacity: 0.6;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

/* ── ABOUT ── */
.about {
  padding: 100px 0;
  background: var(--bg);
  text-align: center;
}

.about h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--white) 40%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.about p {
  color: var(--gray);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 16px;
  line-height: 1.8;
}

.about-tiers {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.tier-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  min-width: 160px;
  text-align: left;
}

.tier-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 8px;
}

.tier-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

.footer-inner {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--white) 20%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 12px;
}

.footer-logo span {
  background: linear-gradient(135deg, var(--purple) 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(136,128,170,0.5);
  max-width: 220px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
  color: rgba(136,128,170,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(124,58,237,0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(136,128,170,0.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 13px; }
  .roster-grid, .shop-grid { grid-template-columns: 1fr; }
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .roster { padding: 60px 0; }
  .collections { padding: 60px 0; }
  .shop { padding: 60px 0; }
  .about { padding: 60px 0; }
  .footer-inner { gap: 40px; }
  .about-tiers { flex-direction: column; align-items: center; }
  .tier-card { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
  .collections-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 16px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .footer-links { gap: 32px; }
}
