/* ============ ZIZZU CIRCLE design system v2 ============ */
:root {
  --primary: #FF6B6B;
  --secondary: #4ECDC4;
  --bg: #0F0F23;
  --surface: #1A1A2E;
  --surface-2: #16213E;
  --text: #FFFFFF;
  --text-2: #B8B8C8;
  --pink: #FF006E;
  --purple: #8338EC;
  --yellow: #FFBE0B;
  --radius: 20px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-hand: 'Caveat', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
h1,h2,h3 { font-family: var(--font-display); line-height: 1.15; }
a { color: var(--secondary); text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
.hp { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; }
::selection { background: rgba(255,0,110,.45); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #0c0c1d; }
::-webkit-scrollbar-thumb { background: #33334d; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #47476b; }

/* ---------- ambient blobs ---------- */
.bg-blobs { position: fixed; inset: 0; z-index: -1; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .35; animation: drift 14s ease-in-out infinite alternate; }
.blob-1 { width: 480px; height: 480px; background: var(--purple); top: -140px; left: -120px; }
.blob-2 { width: 420px; height: 420px; background: var(--pink); top: 30%; right: -160px; animation-delay: -5s; }
.blob-3 { width: 380px; height: 380px; background: var(--primary); bottom: -120px; left: 25%; animation-delay: -9s; opacity: .22; }
@keyframes drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(60px, 40px) scale(1.15); }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: 999px; font-weight: 600; font-size: 16px;
  padding: 14px 28px; transition: transform .25s, box-shadow .25s, background .25s;
  text-decoration: none; color: var(--text); position: relative; overflow: hidden;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--pink)); color: #fff; }
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg); transition: left .6s;
}
.btn-primary:hover::after { left: 130%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,0,110,.35); }
.btn-primary:disabled { opacity: .5; pointer-events: none; }
.btn-ghost { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); color: var(--text); }
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-ghost:disabled { opacity: .45; pointer-events: none; }
.btn-lg { padding: 17px 36px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.glow { box-shadow: 0 0 24px rgba(255,107,107,.35); }

/* ---------- navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  background: rgba(15,15,35,.65); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.brand { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: 2px; color: #fff; display: inline-flex; align-items: center; gap: 8px; }
.brand-badge {
  font-size: 10px; letter-spacing: 3px; padding: 4px 8px; border-radius: 6px;
  background: linear-gradient(135deg, var(--purple), var(--pink)); color: #fff;
}
.nav-links { display: flex; gap: 26px; }
.nav-links a { color: var(--text-2); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: #fff; }

/* ---------- hero ---------- */
.hero { min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 20px 60px; position: relative; }
.hero-inner { max-width: 860px; }
.hero-sparkles { position: absolute; inset: 0; pointer-events: none; }
.spark { position: absolute; color: rgba(255,255,255,.5); animation: twinkle 4s ease-in-out infinite; font-size: 18px; }
.spark.s1 { top: 18%; left: 12%; animation-delay: 0s; color: rgba(255,107,107,.7); }
.spark.s2 { top: 30%; right: 14%; animation-delay: .8s; font-size: 13px; }
.spark.s3 { top: 62%; left: 8%; animation-delay: 1.6s; font-size: 15px; color: rgba(131,56,236,.8); }
.spark.s4 { top: 74%; right: 10%; animation-delay: 2.4s; }
.spark.s5 { top: 12%; right: 34%; animation-delay: 3.2s; font-size: 12px; color: rgba(255,190,11,.7); }
.spark.s6 { top: 48%; left: 22%; animation-delay: 2s; font-size: 11px; }
@keyframes twinkle { 0%,100% { opacity: .15; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.25); } }
.chip {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 1px;
  padding: 8px 18px; border-radius: 999px; margin-bottom: 26px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.chip-glow { border-color: rgba(255,0,110,.45); box-shadow: 0 0 18px rgba(255,0,110,.18) inset, 0 0 18px rgba(255,0,110,.12); }
.hero-kicker { color: var(--text-2); font-size: 15px; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 8px; }
.hero-title {
  font-size: clamp(64px, 14vw, 150px); font-weight: 700; letter-spacing: 4px;
  background: linear-gradient(135deg, #FF6B6B 0%, #FF006E 45%, #8338EC 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: gradShift 8s ease infinite;
  margin-bottom: 22px;
  filter: drop-shadow(0 0 34px rgba(255,0,110,.25));
}
@keyframes gradShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero-sub { color: var(--text-2); font-size: 18px; margin-bottom: 36px; }
.hero-sub b { color: #fff; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero-note { margin-top: 20px; font-size: 13px; color: var(--text-2); }
.hero-follow { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; padding: 9px 20px; border-radius: 999px;
  font-size: 14px; color: #fff; background: linear-gradient(135deg, #f9508b, #8338EC); box-shadow: 0 6px 22px rgba(255,0,110,.32); transition: transform .2s; }
.hero-follow:hover { transform: translateY(-2px); }
.hero-follow b { font-weight: 700; }

/* instagram follow band */
.insta-band { padding: 70px 24px; text-align: center; }
.insta-inner { max-width: 640px; margin: 0 auto; padding: 44px 30px; border-radius: 28px;
  background: linear-gradient(135deg, rgba(249,80,139,.14), rgba(131,56,236,.12)); border: 1px solid rgba(255,0,110,.28); }
.insta-emoji { font-size: 44px; margin-bottom: 8px; }
.insta-inner h2 { font-size: clamp(26px,5vw,38px); }
.insta-inner h2 span { background: linear-gradient(135deg,#FF6B6B,#8338EC); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.insta-inner p { color: var(--text-2); margin: 10px 0 24px; }
.insta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.success-follow { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 6px 0 18px; }

/* countdown */
.countdown { display: inline-block; padding: 20px 30px; border-radius: var(--radius); position: relative;
  background: rgba(255,255,255,.04); backdrop-filter: blur(12px); border: 1px solid transparent;
  background-clip: padding-box; }
.countdown::before {
  content: ''; position: absolute; inset: -1px; z-index: -1; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,107,107,.55), rgba(131,56,236,.55), rgba(255,255,255,.12));
}
.countdown-label { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-2); margin-bottom: 12px; }
.countdown-grid { display: flex; gap: 18px; justify-content: center; }
.cd-cell { display: flex; flex-direction: column; align-items: center; min-width: 62px; }
.cd-cell span { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: #fff; transition: transform .2s; }
.cd-cell span.tick { animation: pop .35s ease; }
@keyframes pop { 40% { transform: scale(1.18); color: var(--primary); } }
.cd-cell label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-2); }

/* marquee */
.marquee { overflow: hidden; border-block: 1px solid rgba(255,255,255,.08); padding: 14px 0; background: rgba(255,255,255,.02); }
.marquee-track { display: flex; white-space: nowrap; animation: scroll 26s linear infinite;
  font-family: var(--font-display); font-weight: 600; letter-spacing: 3px; color: var(--text-2); font-size: 15px; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { max-width: 1180px; margin: 0 auto; padding: 90px 24px; }
.section-title { font-size: clamp(30px, 5vw, 44px); font-weight: 700; margin-bottom: 10px; position: relative; display: inline-block; }
.section-title::after {
  content: ''; display: block; width: 46px; height: 4px; border-radius: 4px; margin-top: 10px;
  background: linear-gradient(90deg, var(--primary), var(--pink));
}
.section-sub { color: var(--text-2); margin-bottom: 40px; max-width: 560px; }

/* reveal on scroll — only hides when JS is present, so slow/no-JS never blanks the hero */
.reveal { transition: opacity .7s ease, transform .7s ease; }
html.js .reveal { opacity: 0; transform: translateY(26px); }
html.js .reveal.in { opacity: 1; transform: none; }

/* how it works */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step-card {
  position: relative; padding: 30px 22px; border-radius: var(--radius);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(10px); transition: transform .3s, border-color .3s, box-shadow .3s;
}
.step-card:hover { transform: translateY(-6px); border-color: rgba(255,107,107,.5); box-shadow: 0 16px 40px rgba(0,0,0,.35); }
.step-num {
  position: absolute; top: 16px; right: 18px; font-family: var(--font-display); font-size: 42px; font-weight: 700;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; opacity: .55;
}
.step-emoji { font-size: 34px; margin-bottom: 14px; }
.step-card h3 { font-size: 19px; margin-bottom: 8px; }
.step-card p { color: var(--text-2); font-size: 14px; }
.step-card p b { color: #d8d8e2; }

/* prizes */
.prizes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 820px; }
.prize {
  display: flex; align-items: center; gap: 16px; padding: 20px 22px; border-radius: var(--radius);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); transition: border-color .25s, transform .25s;
}
.prize:hover { border-color: rgba(255,190,11,.4); transform: translateY(-3px); }
.prize span { font-size: 30px; }
.prize b { display: block; font-family: var(--font-display); }
.prize small { color: var(--text-2); }
.prizes-note { margin-top: 22px; color: var(--text-2); font-size: 14px; }

/* winner */
.winner-card {
  text-align: center; padding: 50px 30px; border-radius: 28px; position: relative;
  background: linear-gradient(160deg, rgba(255,190,11,.12), rgba(255,0,110,.1));
  border: 1px solid rgba(255,190,11,.4); box-shadow: 0 0 60px rgba(255,190,11,.15);
}
.winner-confetti { font-size: 44px; }
.winner-kicker { letter-spacing: 3px; text-transform: uppercase; color: var(--yellow); font-weight: 600; font-size: 13px; margin: 8px 0 18px; }
.winner-card img { width: 260px; margin: 0 auto 18px; border-radius: 16px; }
.winner-card h3 { font-size: 32px; }
.winner-card .w-meta { color: var(--text-2); margin: 6px 0 12px; }
.winner-card .w-votes { font-family: var(--font-display); font-size: 20px; color: var(--yellow); font-weight: 700; }

/* ---------- gallery ---------- */
.gallery-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; }
.gallery-controls { display: flex; gap: 8px; margin-bottom: 40px; }
.sort-btn {
  padding: 9px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05); color: var(--text-2); font-size: 13px; font-weight: 600; transition: all .2s;
}
.sort-btn.active { background: linear-gradient(135deg, var(--primary), var(--pink)); color: #fff; border-color: transparent; }

.vote-banner {
  margin: 0 0 26px; padding: 14px 20px; border-radius: 14px; font-size: 14px; color: #e7e7f0;
  background: rgba(131,56,236,.12); border: 1px solid rgba(131,56,236,.4);
}
.vote-banner a { text-decoration: underline; }

.gallery-layout { display: grid; grid-template-columns: 300px 1fr; gap: 24px; align-items: start; }
.glass { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); backdrop-filter: blur(10px); border-radius: var(--radius); }
.leaderboard { padding: 22px; position: sticky; top: 90px; }
.leaderboard h3 { font-size: 18px; margin-bottom: 14px; }
.leaderboard ol { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.lb-item { display: flex; align-items: flex-start; gap: 10px; padding: 9px 10px; border-radius: 12px; transition: background .2s; cursor: pointer; }
.lb-item:hover { background: rgba(255,255,255,.06); }
.lb-rank { font-family: var(--font-display); font-weight: 700; width: 20px; color: var(--text-2); flex-shrink: 0; padding-top: 8px; }
.lb-item:nth-child(1) .lb-rank { color: var(--yellow); }
.lb-item:nth-child(2) .lb-rank { color: #cfcfd6; }
.lb-item:nth-child(3) .lb-rank { color: #d09a5b; }
.lb-thumb { width: 46px; height: 52px; border-radius: 8px; object-fit: cover; background: var(--surface-2); flex-shrink: 0; }
.lb-info { flex: 1; min-width: 0; }
.lb-info b { display: block; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lb-info small { color: var(--text-2); font-size: 11px; }
.lb-sum { display: block; color: #8f8fa3; font-size: 10.5px; line-height: 1.45; margin-top: 3px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.lb-votes { font-size: 12px; font-weight: 700; color: var(--primary); white-space: nowrap; padding-top: 8px; }
.lb-empty { color: var(--text-2); font-size: 13px; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.design-card {
  border-radius: var(--radius); overflow: hidden; cursor: pointer; position: relative;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  opacity: 0; transform: translateY(20px); animation: cardIn .6s ease forwards;
}
@keyframes cardIn { to { opacity: 1; transform: none; } }
.design-card:hover { transform: translateY(-5px); box-shadow: 0 14px 44px rgba(0,0,0,.45); border-color: rgba(255,107,107,.4); }
.design-card img { width: 100%; aspect-ratio: 3/2; object-fit: cover; background: #e3d7c4; }
.dc-body { padding: 14px 16px 16px; }
.dc-body h4 { font-family: var(--font-display); font-size: 16px; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dc-meta { color: var(--text-2); font-size: 12.5px; margin-bottom: 12px; }
.dc-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.dc-votes { font-weight: 700; font-size: 14px; color: var(--primary); }
.dc-actions { display: flex; gap: 8px; }
.vote-btn, .share-btn {
  border: none; border-radius: 999px; padding: 8px 16px; font-size: 13px; font-weight: 700; transition: transform .2s, box-shadow .2s;
}
.vote-btn { background: linear-gradient(135deg, var(--primary), var(--pink)); color: #fff; }
.vote-btn:hover { transform: scale(1.06); box-shadow: 0 4px 18px rgba(255,0,110,.4); }
.vote-btn.voted { background: rgba(78,205,196,.2); color: var(--secondary); pointer-events: none; }
.vote-btn.locked { background: rgba(255,255,255,.1); color: var(--text-2); }
.share-btn { background: rgba(255,255,255,.08); color: var(--text); }
.share-btn:hover { background: rgba(255,255,255,.16); }
.winner-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2; font-size: 12px; font-weight: 700;
  background: var(--yellow); color: #201500; padding: 5px 12px; border-radius: 999px;
}

.skeleton-card { border-radius: var(--radius); aspect-ratio: 5/7; background: linear-gradient(110deg, rgba(255,255,255,.04) 30%, rgba(255,255,255,.09) 50%, rgba(255,255,255,.04) 70%); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }
.gallery-empty { grid-column: 1/-1; text-align: center; padding: 70px 20px; color: var(--text-2); }
.gallery-empty .btn { margin-top: 18px; }
.load-more-wrap { text-align: center; margin-top: 26px; }

/* cta band */
.cta-band { text-align: center; padding: 80px 24px; }
.cta-band h2 { font-size: clamp(28px, 5vw, 42px); margin-bottom: 26px; }

/* coming soon */
.soon-chips { display: flex; flex-wrap: wrap; gap: 12px; max-width: 720px; }
.soon-chips span {
  padding: 12px 20px; border-radius: 999px; font-size: 14px; font-weight: 500;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); color: var(--text-2);
  transition: all .25s;
}
.soon-chips span:hover { border-color: var(--purple); color: #fff; transform: translateY(-2px); }
.soon-tag { margin: 26px 0 18px; color: var(--text-2); font-style: italic; }
.subscribe { display: flex; gap: 10px; max-width: 460px; flex-wrap: wrap; }
.subscribe input[type=email] {
  flex: 1; min-width: 220px; padding: 14px 20px; border-radius: 999px; border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05); color: #fff; font-size: 15px; outline: none;
}
.subscribe input[type=email]:focus { border-color: var(--primary); }

/* footer */
.footer { border-top: 1px solid rgba(255,255,255,.08); padding: 46px 24px 26px; }
.footer-inner { max-width: 1180px; margin: 0 auto; display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-copy { color: var(--text-2); font-size: 14px; margin-top: 8px; }
.footer-links { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.footer-links a { color: var(--text-2); font-size: 14px; }
.footer-links a:hover { color: #fff; }
.footer-admin { opacity: .35; }
.footer-legal { text-align: center; color: rgba(160,160,176,.5); font-size: 12.5px; margin-top: 30px; }

/* ---------- modals ---------- */
.modal {
  position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center;
  background: rgba(8,8,20,.78); backdrop-filter: blur(8px); padding: 18px; overflow-y: auto;
}
.modal[hidden] { display: none; }
.modal-card {
  position: relative; width: 100%; max-width: 640px; max-height: calc(100svh - 36px); overflow-y: auto;
  background: var(--surface); border: 1px solid rgba(255,255,255,.1); border-radius: 24px;
  padding: 34px 30px; animation: modalIn .35s cubic-bezier(.2,.9,.3,1.2);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(30px) scale(.96); } }
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: none; color: var(--text-2); font-size: 15px; z-index: 5;
}
.modal-close:hover { background: rgba(255,255,255,.15); color: #fff; }
.modal-card h2 { font-size: 26px; margin-bottom: 6px; }
.studio-sub { color: var(--text-2); font-size: 14.5px; margin-bottom: 24px; }

/* studio */
.studio { max-width: 760px; }
.studio-progress { display: flex; gap: 6px; margin-bottom: 28px; margin-top: 4px; }
.sp-step {
  flex: 1; text-align: center; font-size: 11.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-2); padding: 8px 4px 10px; border-bottom: 3px solid rgba(255,255,255,.09); transition: all .3s;
}
.sp-step.active { color: #fff; border-color: var(--primary); }
.sp-step.done { color: var(--secondary); border-color: var(--secondary); }

.field { display: block; margin-bottom: 18px; }
.field > span { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 8px; }
.field em { font-style: normal; color: var(--text-2); font-weight: 400; font-size: 12px; }
.field input, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 14px; font-size: 15px; color: #fff; outline: none;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.13); font-family: inherit; resize: vertical;
}
.field input:focus, .field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,107,107,.15); }

/* idea spark */
.idea-wrap { margin: -6px 0 18px; }
.idea-btn {
  background: none; border: none; color: var(--secondary); font-size: 13.5px; font-weight: 600; padding: 0;
}
.idea-btn:hover { text-decoration: underline; }
.idea-box {
  margin-top: 10px; padding: 14px 16px; border-radius: 14px; font-size: 14px; color: #d8d8e2; line-height: 1.6;
  background: rgba(78,205,196,.07); border: 1px solid rgba(78,205,196,.3);
}
.idea-box .idea-actions { margin-top: 10px; display: flex; gap: 14px; }
.idea-box a { font-size: 13px; font-weight: 600; }

.mood-row, .color-row { display: flex; gap: 10px; flex-wrap: wrap; }
.mood-row button {
  font-size: 24px; width: 52px; height: 52px; border-radius: 14px; border: 2px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04); transition: all .2s;
}
.mood-row button:hover { transform: scale(1.1); }
.mood-row button.active { border-color: var(--primary); background: rgba(255,107,107,.15); box-shadow: 0 0 14px rgba(255,107,107,.3); }
.color-row button { width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(255,255,255,.15); transition: all .2s; }
.color-row button.active { border-color: #fff; transform: scale(1.12); box-shadow: 0 0 12px rgba(255,255,255,.3); }
.color-row .c-auto { width: auto; padding: 0 16px; border-radius: 999px; background: rgba(255,255,255,.06); color: var(--text-2); font-size: 13px; font-weight: 600; }
.color-row .c-auto.active { color: #fff; }

.studio-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 26px; gap: 12px; }
.studio-nav.center { justify-content: center; }

/* mode tabs */
.mode-tabs { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.mode-tab {
  padding: 11px 18px; border-radius: 999px; font-size: 14px; font-weight: 600;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.13); color: var(--text-2); transition: all .2s;
}
.mode-tab.active { background: linear-gradient(135deg, var(--primary), var(--pink)); color: #fff; border-color: transparent; box-shadow: 0 4px 18px rgba(255,0,110,.3); }

/* art stage */
.art-stage { min-height: 300px; }
.art-placeholder {
  text-align: center; padding: 44px 20px; border-radius: 18px; border: 1.5px dashed rgba(255,255,255,.18);
  background: rgba(255,255,255,.025);
}
.art-ph-emoji { font-size: 44px; display: block; margin-bottom: 12px; }
.art-placeholder p { color: var(--text-2); font-size: 14px; margin-bottom: 20px; line-height: 1.7; }
.art-loading-stage { text-align: center; padding: 54px 20px; }
.ai-orb {
  width: 84px; height: 84px; margin: 0 auto 22px; border-radius: 50%;
  background: conic-gradient(from 0deg, #FF6B6B, #FF006E, #8338EC, #4ECDC4, #FF6B6B);
  animation: orbSpin 1.6s linear infinite, orbPulse 2.4s ease-in-out infinite;
  filter: blur(1px); box-shadow: 0 0 44px rgba(255,0,110,.4);
}
@keyframes orbSpin { to { transform: rotate(360deg); } }
@keyframes orbPulse { 0%,100% { scale: 1; } 50% { scale: 1.12; } }
#aiLoadingText { color: var(--text-2); font-size: 14.5px; animation: fadeSwap .6s ease; }
@keyframes fadeSwap { from { opacity: 0; transform: translateY(6px); } }
.art-result { text-align: center; }
.art-result > img {
  width: min(100%, 380px); margin: 0 auto 14px; border-radius: 18px; background: var(--surface-2);
  box-shadow: 0 14px 44px rgba(0,0,0,.45); animation: artIn .6s cubic-bezier(.2,.9,.3,1.15);
}
@keyframes artIn { from { opacity: 0; transform: scale(.92); } }
.summary-box {
  text-align: left; padding: 14px 16px; border-radius: 14px; font-size: 13.5px; color: #d8d8e2; line-height: 1.65;
  background: linear-gradient(135deg, rgba(131,56,236,.1), rgba(255,0,110,.07));
  border: 1px solid rgba(131,56,236,.35); margin-bottom: 14px;
}
.summary-box b { color: #fff; }
.summary-box .sb-tag { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #c9a6ff; margin-bottom: 5px; }
.art-actions { display: flex; gap: 10px; margin-top: 4px; flex-wrap: wrap; justify-content: center; }
#attemptsBadge { font-size: 12px; color: var(--text-2); font-weight: 500; }
.upload-label { position: relative; }

/* details step */
.detail-layout { display: grid; grid-template-columns: 190px 1fr; gap: 22px; align-items: start; }
.mini-mockup-wrap { text-align: center; }
.mini-mockup-wrap img { width: 100%; border-radius: 16px; background: var(--surface-2); box-shadow: 0 10px 30px rgba(0,0,0,.4); }
.mini-mockup-wrap small { display: block; margin-top: 8px; color: var(--text-2); font-size: 11.5px; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.detail-grid .span2 { grid-column: 1 / -1; }
.check { display: flex; gap: 12px; align-items: flex-start; margin: 14px 0; font-size: 14px; color: var(--text-2); cursor: pointer; }
.check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--primary); flex-shrink: 0; cursor: pointer; }
.check a { text-decoration: underline; }

/* otp */
.otp-row { display: flex; gap: 10px; justify-content: center; margin: 10px 0 6px; }
.otp-row input {
  width: 52px; height: 62px; text-align: center; font-size: 26px; font-weight: 700; font-family: var(--font-display);
  border-radius: 14px; border: 2px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05); color: #fff; outline: none;
}
.otp-row input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,107,107,.18); }
.resend-line { text-align: center; color: var(--text-2); font-size: 13.5px; margin-top: 18px; }

/* success */
.success-wrap { text-align: center; padding: 16px 0; }
.success-emoji { font-size: 60px; animation: bounceIn .7s cubic-bezier(.2,.9,.3,1.4); }
@keyframes bounceIn { from { transform: scale(0); } }
.success-share { display: flex; gap: 10px; justify-content: center; margin: 22px 0; flex-wrap: wrap; }

/* story modal */
.story-card-modal { max-width: 560px; }
.sm-mockup { width: 100%; margin: 0 auto 8px; border-radius: 18px; }
.sm-demo { text-align: center; font-size: 11.5px; color: var(--text-2); margin-bottom: 16px; }
.sm-title { font-size: 26px; }
.sm-meta { color: var(--text-2); font-size: 14px; margin: 4px 0 16px; }
.sm-divider { display: flex; align-items: center; gap: 12px; color: var(--text-2); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin: 18px 0 12px; }
.sm-divider::before, .sm-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.12); }
.sm-story { color: #d8d8e2; font-size: 15px; white-space: pre-wrap; max-height: 300px; overflow-y: auto; }
.sm-chips { display: flex; gap: 8px; margin: 18px 0; flex-wrap: wrap; }
.sm-chips span { font-size: 12.5px; padding: 6px 14px; border-radius: 999px; background: rgba(255,255,255,.06); color: var(--text-2); }
.sm-actions { display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap; }

/* vote + notify modal */
.vote-card { max-width: 440px; text-align: center; }
.vote-card input[type=email] {
  width: 100%; padding: 14px 18px; border-radius: 14px; margin-bottom: 16px; font-size: 15px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); color: #fff; outline: none;
}
.vote-card input[type=email]:focus { border-color: var(--primary); }
.vote-card .btn { width: 100%; }
.vote-fineprint { font-size: 12px; color: var(--text-2); margin-top: 14px; }
.notify-emoji { font-size: 52px; margin-bottom: 8px; animation: bounceIn .7s cubic-bezier(.2,.9,.3,1.4); }

/* share modal */
.share-card-modal { max-width: 480px; }
.poster-wrap { position: relative; border-radius: 18px; overflow: hidden; background: var(--surface-2); min-height: 200px; margin-bottom: 18px; }
.poster-wrap img { width: 100%; display: block; }
.poster-loading {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--text-2); font-size: 14.5px; background: var(--surface-2);
}
.share-actions { justify-content: center; }

/* terms */
.terms-card { max-width: 620px; }
.terms-body { max-height: 55svh; overflow-y: auto; padding-right: 8px; margin-bottom: 20px; }
.terms-body h3 { font-size: 16px; margin: 18px 0 6px; color: var(--primary); }
.terms-body p { color: #c9c9d4; font-size: 14px; }
.terms-contact { margin-top: 16px; }

/* example box + photo memory (studio step 1) */
.example-box {
  padding: 16px 18px; border-radius: 16px; margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(255,190,11,.07), rgba(255,0,110,.05));
  border: 1px solid rgba(255,190,11,.3);
}
.ex-head { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--yellow); margin-bottom: 10px; }
.ex-line { font-size: 13.5px; color: #d8d8e2; line-height: 1.65; margin-bottom: 8px; }
.ex-line b { color: #fff; }
.ex-tip { font-size: 12.5px; color: var(--text-2); line-height: 1.6; padding-top: 8px; border-top: 1px dashed rgba(255,255,255,.14); }
.ex-tip b { color: #cfcfda; }
.ref-upload { padding: 4px 0; }
.ref-preview { display: flex; gap: 14px; align-items: center; }
.ref-preview img { width: 84px; height: 84px; object-fit: cover; border-radius: 12px; border: 2px solid rgba(78,205,196,.55); }
.ref-note { color: var(--secondary); font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.ref-remove { background: none; border: none; color: var(--text-2); font-size: 12.5px; padding: 2px 0; text-decoration: underline; }
.ref-remove:hover { color: #fff; }

/* ============ tee customizer (studio step 3) ============ */
.customizer { display: grid; grid-template-columns: 1fr 320px; gap: 22px; align-items: start; }
.tee-viewer {
  position: relative; width: 100%; border-radius: 20px; padding: 10px; cursor: pointer; user-select: none;
  background: radial-gradient(circle at 50% 42%, rgba(131,56,236,.14), transparent 70%);
  perspective: 1200px; touch-action: pan-y;
}
.tee-3d { position: relative; width: 100%; aspect-ratio: 900/1000; transition: transform .32s ease; }
.tee-face { position: absolute; inset: 0; }
.tee-face.hidden-face { display: none; }
.tee-face canvas { width: 100%; height: 100%; display: block; border-radius: 16px; }
.tee-face-label { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--text-2); background: rgba(0,0,0,.35); padding: 4px 12px; border-radius: 999px; pointer-events: none; z-index: 3; }
.tee-flip-hint { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); font-size: 12px; color: var(--text-2); background: rgba(0,0,0,.3); padding: 5px 14px; border-radius: 999px; pointer-events: none; z-index: 3; }
.cz-controls { display: flex; flex-direction: column; gap: 8px; }
.cz-controls .opt-label { margin-top: 14px; }
.place-row { display: flex; gap: 8px; }
.place-row button {
  flex: 1; display: flex; flex-direction: column; gap: 2px; align-items: center; padding: 12px 8px; border-radius: 14px;
  font-size: 14px; font-weight: 600; background: rgba(255,255,255,.05); border: 2px solid rgba(255,255,255,.12); color: var(--text); transition: all .2s;
}
.place-row button small { font-weight: 400; font-size: 11px; color: var(--text-2); }
.place-row button.active { border-color: var(--primary); background: rgba(255,107,107,.12); }
.place-row button.active small { color: #e7cdd4; }
.slider-row { display: flex; flex-direction: column; gap: 10px; }
.slider-row label { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-2); font-weight: 600; }
.slider-row input[type=range] { flex: 1; accent-color: var(--primary); height: 4px; }
.mini-reset { align-self: flex-start; background: none; border: none; color: var(--secondary); font-size: 12.5px; text-decoration: underline; padding: 0; }
.upload-hint { font-size: 12px; color: var(--text-2); line-height: 1.6; margin-top: 10px; text-align: center; }
.swatch-row { display: flex; flex-wrap: wrap; gap: 8px; }
.swatch { width: 34px; height: 34px; border-radius: 50%; border: 2px solid rgba(255,255,255,.2); transition: transform .15s, box-shadow .15s; }
.swatch:hover { transform: scale(1.12); }
.swatch.active { border-color: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.25); transform: scale(1.12); }
.custom-color { display: flex; align-items: center; gap: 10px; margin-top: 10px; font-size: 13.5px; font-weight: 600; color: var(--text-2); }
.custom-color input[type=color] { width: 44px; height: 34px; border: none; border-radius: 10px; background: none; cursor: pointer; padding: 0; }
.demo-note { margin-top: 14px; font-size: 12.5px; line-height: 1.6; color: var(--text-2); background: rgba(255,190,11,.07); border: 1px solid rgba(255,190,11,.28); border-radius: 12px; padding: 12px 14px; }
.demo-note b { color: #ffd873; }
.demo-note a { font-weight: 600; white-space: nowrap; }

/* wider mini mockup (side-by-side) */
.mini-mockup-wrap { text-align: center; }
.mini-mockup-wrap img { width: 100%; border-radius: 14px; background: var(--surface-2); }

/* ============ help / faq modal ============ */
.help-card { max-width: 600px; }
.faq { margin: 6px 0 20px; }
.faq details { border: 1px solid rgba(255,255,255,.1); border-radius: 14px; margin-bottom: 10px; overflow: hidden; background: rgba(255,255,255,.03); }
.faq summary { cursor: pointer; padding: 15px 18px; font-weight: 600; font-size: 15px; list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); font-size: 20px; color: var(--primary); font-weight: 700; }
.faq details[open] summary::after { content: '−'; }
.faq details[open] summary { color: var(--primary); }
.faq p { padding: 0 18px 16px; color: #c9c9d4; font-size: 14px; line-height: 1.7; }
.faq p a { text-decoration: underline; }
.help-contact { text-align: center; padding: 18px; border-radius: 16px; background: linear-gradient(135deg, rgba(37,211,102,.08), rgba(131,56,236,.06)); border: 1px solid rgba(37,211,102,.25); }
.help-contact > p { color: var(--text-2); font-size: 14px; margin-bottom: 12px; }
.help-contact-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.help-num { margin-top: 12px; font-size: 13.5px; color: var(--text-2); }
.help-num b { color: #fff; }

/* ============ floating whatsapp ============ */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff;
  background: linear-gradient(135deg, #25d366, #128c4b); box-shadow: 0 8px 26px rgba(37,211,102,.45);
  transition: transform .2s; animation: waPulse 2.6s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse { 0%,100% { box-shadow: 0 8px 26px rgba(37,211,102,.4); } 50% { box-shadow: 0 8px 34px rgba(37,211,102,.7); } }

@media (max-width: 720px) {
  .customizer { grid-template-columns: 1fr; }
  .tee-viewer { width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
  .wa-float { width: 50px; height: 50px; right: 14px; bottom: 14px; }
}

/* toast */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 200;
  background: var(--surface-2); border: 1px solid rgba(255,255,255,.15); color: #fff;
  padding: 14px 24px; border-radius: 999px; font-size: 14.5px; font-weight: 500;
  box-shadow: 0 10px 40px rgba(0,0,0,.5); animation: toastIn .3s ease; max-width: min(92vw, 480px); text-align: center;
}
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, 16px); } }
.toast.err { border-color: rgba(255,107,107,.5); }
.toast.ok { border-color: rgba(78,205,196,.5); }

/* heart burst */
.heart-burst { position: fixed; z-index: 300; pointer-events: none; font-size: 22px; animation: burst .8s ease-out forwards; }
@keyframes burst {
  0% { opacity: 1; transform: translate(0,0) scale(.6); }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(1.4); }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .gallery-layout { grid-template-columns: minmax(0, 1fr); }
  .leaderboard { position: static; order: 2; margin-top: 10px; min-width: 0; max-width: 100%; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .steps { grid-template-columns: 1fr; }
  .prizes { grid-template-columns: 1fr; }
  .countdown-grid { gap: 10px; }
  .cd-cell { min-width: 52px; }
  .cd-cell span { font-size: 30px; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .mini-mockup-wrap { max-width: 220px; margin: 0 auto; }
  .modal { padding: 10px; }
  .modal-card { padding: 26px 16px; max-height: calc(100svh - 20px); }
  .otp-row { gap: 7px; }
  .otp-row input { width: 44px; height: 54px; font-size: 22px; }
  .section { padding: 60px 18px; }
  .mode-tab { padding: 10px 14px; font-size: 13px; }
  .art-result > img { width: 100%; }
  .studio-nav .btn { padding: 13px 20px; font-size: 15px; }
  .hero-cta .btn { width: 100%; }
  .gallery-controls { margin-bottom: 20px; }
}

/* ============================================================
   ACCESSIBILITY, THEME TOGGLE & LIGHT MODE (council v9)
   ============================================================ */

/* keyboard focus ring on every interactive element */
:focus-visible { outline: 3px solid var(--secondary); outline-offset: 2px; border-radius: 8px; }
.btn:focus-visible, .vote-btn:focus-visible, .share-btn:focus-visible { outline-offset: 3px; }

/* respect reduced-motion — freeze ambient motion, keep the UI usable */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .blob, .marquee-track, .ai-orb, .wa-float, .spark, .hero-title { animation: none !important; }
  .marquee-track { transform: none; }
}

/* theme toggle button */
.nav-right { display: flex; align-items: center; gap: 12px; }
.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06); color: var(--text); font-size: 17px; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: transform .2s, background .2s;
}
.theme-toggle:hover { transform: translateY(-2px) rotate(-12deg); background: rgba(255,255,255,.12); }

/* ---------- LIGHT THEME ---------- */
:root[data-theme="light"] {
  --bg: #f4f2fb;
  --surface: #ffffff;
  --surface-2: #eef0f8;
  --text: #16162e;
  --text-2: #5a5a70;
}
[data-theme="light"] body { background: var(--bg); }
[data-theme="light"] .blob { opacity: .16; }
[data-theme="light"] .navbar { background: rgba(255,255,255,.78); border-bottom-color: rgba(20,20,45,.08); }
[data-theme="light"] .brand { color: #16162e; }
[data-theme="light"] .nav-links a { color: #5a5a70; }
[data-theme="light"] .nav-links a:hover { color: #16162e; }
[data-theme="light"] .theme-toggle { border-color: rgba(20,20,45,.14); background: rgba(20,20,45,.05); color: #16162e; }
[data-theme="light"] .theme-toggle:hover { background: rgba(20,20,45,.1); }

/* glass / card surfaces get dark-on-light treatment */
[data-theme="light"] .chip,
[data-theme="light"] .countdown,
[data-theme="light"] .step-card,
[data-theme="light"] .prize,
[data-theme="light"] .glass,
[data-theme="light"] .leaderboard,
[data-theme="light"] .design-card,
[data-theme="light"] .sort-btn,
[data-theme="light"] .btn-ghost,
[data-theme="light"] .soon-chips span,
[data-theme="light"] .vote-banner,
[data-theme="light"] .mode-tab,
[data-theme="light"] .example-box,
[data-theme="light"] .idea-box,
[data-theme="light"] .summary-box,
[data-theme="light"] .place-row button,
[data-theme="light"] .mood-row button,
[data-theme="light"] .color-row .c-auto,
[data-theme="light"] .field input,
[data-theme="light"] .field textarea,
[data-theme="light"] .subscribe input[type=email],
[data-theme="light"] .vote-card input[type=email],
[data-theme="light"] .otp-row input,
[data-theme="light"] .faq details,
[data-theme="light"] .marquee {
  background: rgba(20,20,45,.035);
  border-color: rgba(20,20,45,.12);
  color: var(--text);
}
[data-theme="light"] .btn-ghost:hover, [data-theme="light"] .sort-btn:hover { background: rgba(20,20,45,.08); }
[data-theme="light"] .soon-chips span:hover { color: #16162e; }
[data-theme="light"] .modal { background: rgba(30,28,55,.5); }
[data-theme="light"] .modal-card { background: #ffffff; border-color: rgba(20,20,45,.1); box-shadow: 0 20px 60px rgba(30,20,60,.25); }
[data-theme="light"] .modal-close { background: rgba(20,20,45,.06); color: #5a5a70; }
[data-theme="light"] .toast { background: #ffffff; border-color: rgba(20,20,45,.14); color: #16162e; box-shadow: 0 10px 40px rgba(30,20,60,.25); }

/* fix hardcoded light-grey body text so it stays readable on white */
[data-theme="light"] .hero-sub b, [data-theme="light"] .step-card h3, [data-theme="light"] .prize b,
[data-theme="light"] .sm-title, [data-theme="light"] .field > span, [data-theme="light"] .modal-card h2,
[data-theme="light"] .section-title, [data-theme="light"] .ex-line b, [data-theme="light"] .summary-box b,
[data-theme="light"] .faq summary, [data-theme="light"] .lb-info b, [data-theme="light"] .dc-body h4 { color: #16162e; }
[data-theme="light"] .studio-sub, [data-theme="light"] .section-sub, [data-theme="light"] .sm-story,
[data-theme="light"] .terms-body p, [data-theme="light"] .faq p, [data-theme="light"] .ex-line,
[data-theme="light"] .summary-box, [data-theme="light"] .step-card p, [data-theme="light"] .prize small,
[data-theme="light"] .dc-meta, [data-theme="light"] .lb-info small, [data-theme="light"] .demo-note,
[data-theme="light"] .sm-story, [data-theme="light"] .hero-sub { color: #43435a; }
[data-theme="light"] .step-card p b, [data-theme="light"] .demo-note b { color: #16162e; }
[data-theme="light"] .sm-story { color: #43435a; }
[data-theme="light"] .footer { border-top-color: rgba(20,20,45,.1); }
[data-theme="light"] .footer-legal { color: rgba(30,20,60,.4); }
[data-theme="light"] .field input:focus, [data-theme="light"] .field textarea:focus { box-shadow: 0 0 0 3px rgba(255,107,107,.18); }
[data-theme="light"] .example-box { background: linear-gradient(135deg, rgba(255,190,11,.1), rgba(255,0,110,.05)); }
[data-theme="light"] .insta-inner { background: linear-gradient(135deg, rgba(249,80,139,.1), rgba(131,56,236,.08)); }
[data-theme="light"] .theme-color-meta { }

/* ============ "Wear it IRL" product showcase ============ */
.showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.showcase-card { position: relative; border-radius: 20px; overflow: hidden; background: var(--surface-2); aspect-ratio: 4/5; border: 1px solid rgba(255,255,255,.08); }
.showcase-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.showcase-card:hover img { transform: scale(1.05); }
.showcase-card figcaption { position: absolute; inset: auto 0 0 0; padding: 34px 16px 14px; font-size: 13px; font-weight: 500; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.65)); }
[data-theme="light"] .showcase-card { border-color: rgba(20,20,45,.1); }
@media (max-width: 900px) { .showcase-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* realistic / illustrated toggle in the customizer */
.real-toggle { display: inline-flex; gap: 4px; padding: 4px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); margin: 4px 0 2px; }
.real-toggle button { border: none; background: none; color: var(--text-2); font-size: 13px; font-weight: 700; padding: 8px 16px; border-radius: 999px; transition: all .2s; }
.real-toggle button.active { background: linear-gradient(135deg, var(--primary), var(--pink)); color: #fff; }
[data-theme="light"] .real-toggle { background: rgba(20,20,45,.04); border-color: rgba(20,20,45,.12); }

/* ============ real-photo drag editor (studio step 3) ============ */
.editor { display: grid; grid-template-columns: 1fr 300px; gap: 22px; align-items: start; }
.ed-stage { position: relative; border-radius: 20px; overflow: hidden; background: radial-gradient(circle at 50% 40%, rgba(131,56,236,.12), transparent 72%); touch-action: pan-y; }
#edCanvas { width: 100%; display: block; border-radius: 16px; cursor: grab; }
#edCanvas:active { cursor: grabbing; }
.ed-face-label { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); font-size: 11px; font-weight: 700; letter-spacing: 3px; color: #fff; background: rgba(0,0,0,.4); padding: 4px 12px; border-radius: 999px; pointer-events: none; z-index: 3; }
.ed-hint { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); font-size: 12px; color: #fff; background: rgba(0,0,0,.4); padding: 5px 14px; border-radius: 999px; pointer-events: none; white-space: nowrap; z-index: 3; }
.ed-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; border: none; background: rgba(0,0,0,.45); color: #fff; font-size: 26px; line-height: 1; display: flex; align-items: center; justify-content: center; z-index: 3; transition: background .2s; }
.ed-arrow:hover { background: rgba(0,0,0,.7); }
.ed-prev { left: 8px; } .ed-next { right: 8px; }
.ed-controls { display: flex; flex-direction: column; gap: 10px; }
.ed-tabs { display: flex; gap: 6px; padding: 4px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); }
.ed-tabs button { flex: 1; border: none; background: none; color: var(--text-2); font-weight: 700; font-size: 14px; padding: 11px; border-radius: 999px; transition: all .2s; }
.ed-tabs button.active { background: linear-gradient(135deg, var(--primary), var(--pink)); color: #fff; box-shadow: 0 4px 16px rgba(255,0,110,.3); }
.ed-editing { font-size: 13px; color: var(--text-2); margin: 0; }
.ed-editing b { color: var(--text); }
.ed-colours { display: grid; grid-template-columns: repeat(auto-fill, minmax(36px, 1fr)); gap: 8px; }
.ed-sw { aspect-ratio: 1; border-radius: 10px; border: 2px solid rgba(255,255,255,.18); background: #333; cursor: pointer; transition: transform .15s, box-shadow .15s; padding: 0; }
.ed-sw:hover { transform: scale(1.08); }
.ed-sw.active { border-color: #fff; box-shadow: 0 0 0 3px rgba(255,0,110,.5); transform: scale(1.08); }
[data-theme="light"] .ed-tabs { background: rgba(20,20,45,.04); border-color: rgba(20,20,45,.12); }
[data-theme="light"] .ed-sw { border-color: rgba(20,20,45,.15); }
@media (max-width: 720px) {
  .editor { grid-template-columns: 1fr; }
  .ed-stage { max-width: 400px; margin: 0 auto; width: 100%; }
}

/* face switch + on/off panels + bg button (editor v2) */
.ed-faceswitch { display: flex; gap: 6px; padding: 4px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); }
.ed-faceswitch button { flex: 1; border: none; background: none; color: var(--text-2); font-weight: 700; font-size: 13.5px; padding: 9px; border-radius: 999px; transition: all .2s; }
.ed-faceswitch button.active { background: rgba(255,255,255,.12); color: var(--text); }
[data-theme="light"] .ed-faceswitch { background: rgba(20,20,45,.04); border-color: rgba(20,20,45,.12); }
[data-theme="light"] .ed-faceswitch button.active { background: rgba(20,20,45,.1); }
.ed-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.ed-btns .btn { flex: 1; min-width: 130px; }
.ed-danger { color: #ff9d9d !important; border-color: rgba(255,107,107,.35) !important; }
#edOffPanel { text-align: center; padding: 6px 0; }
#edOffPanel .btn { width: 100%; }
#edOffPanel .ed-editing { text-align: center; margin-top: 8px; }

/* ===== editor: reliable drag + nudge pad (v3) ===== */
#edCanvas { touch-action: none; }              /* we handle drag + manual scroll ourselves */
.ed-move { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 4px 2px; }
.ed-move-label { font-size: 12.5px; color: var(--text-2); }
.ed-nudge { display: grid; grid-template-columns: repeat(3, 34px); grid-template-rows: repeat(3, 34px); gap: 4px; }
.ed-nudge button {
  border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06); color: var(--text);
  border-radius: 9px; font-size: 13px; line-height: 1; display: flex; align-items: center; justify-content: center;
  padding: 0; cursor: pointer; transition: background .15s, transform .1s; -webkit-tap-highlight-color: transparent;
}
.ed-nudge button:hover { background: rgba(255,255,255,.14); }
.ed-nudge button:active { transform: scale(.9); }
.ed-nudge [data-d="up"] { grid-area: 1 / 2; }
.ed-nudge [data-d="left"] { grid-area: 2 / 1; }
.ed-nudge [data-d="center"] { grid-area: 2 / 2; }
.ed-nudge [data-d="right"] { grid-area: 2 / 3; }
.ed-nudge [data-d="down"] { grid-area: 3 / 2; }
.ed-nudge-c { color: var(--pink) !important; font-size: 15px !important; }
[data-theme="light"] .ed-nudge button { border-color: rgba(20,20,45,.14); background: rgba(20,20,45,.05); }

/* ===== welcome / intro popup ===== */
.intro-card { max-width: 560px; text-align: center; overflow: hidden; }
.intro-card::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(600px 240px at 50% -40px, rgba(255,0,110,.18), transparent 70%);
}
.intro-card > * { position: relative; z-index: 1; }
.intro-badge {
  display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: #fff; padding: 6px 14px; border-radius: 999px; margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(255,107,107,.9), rgba(131,56,236,.9));
}
.intro-title { font-family: var(--font-display); font-size: 30px; line-height: 1.15; margin: 0 0 12px; }
.intro-title .grad { background: linear-gradient(135deg,#FF6B6B,#FF006E 55%,#8338EC); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.intro-sub { color: var(--text-2); font-size: 15px; line-height: 1.5; max-width: 460px; margin: 0 auto 22px; }
.intro-sub b { color: var(--text); }
.intro-steps { display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; margin-bottom: 24px; }
.intro-step { display: flex; flex-direction: column; align-items: center; gap: 6px; width: 88px; }
.is-emoji { font-size: 30px; width: 58px; height: 58px; display: flex; align-items: center; justify-content: center; border-radius: 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.is-t { font-size: 12px; color: var(--text-2); line-height: 1.25; }
.is-arrow { color: var(--pink); font-size: 18px; font-weight: 700; opacity: .7; }
.intro-cta { width: 100%; margin-bottom: 10px; }
.intro-skip { background: none; border: none; color: var(--text-2); font-size: 13.5px; cursor: pointer; padding: 6px; }
.intro-skip:hover { color: var(--text); }
[data-theme="light"] .is-emoji { background: rgba(20,20,45,.05); border-color: rgba(20,20,45,.1); }
@media (max-width: 460px) {
  .intro-title { font-size: 24px; }
  .intro-steps { gap: 3px; }
  .intro-step { width: 68px; }
  .is-emoji { font-size: 24px; width: 48px; height: 48px; }
  .is-arrow { font-size: 14px; }
}

/* ===== intro popup v2: balloons, perks, countdown ===== */
.intro-float { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.intro-float span { position: absolute; bottom: -40px; font-size: 26px; animation: floatUp 5s ease-in infinite; opacity: 0; }
@keyframes floatUp {
  0% { transform: translateY(0) rotate(0); opacity: 0; }
  12% { opacity: .9; }
  80% { opacity: .8; }
  100% { transform: translateY(-560px) rotate(20deg); opacity: 0; }
}
.intro-perks {
  display: inline-block; margin: 0 auto 12px; padding: 8px 15px; border-radius: 12px; font-size: 12.5px; font-weight: 600;
  color: #fff; background: linear-gradient(135deg, rgba(255,190,11,.22), rgba(255,0,110,.2)); border: 1px solid rgba(255,190,11,.4);
}
.intro-countdown { margin: 0 0 20px; }
.intro-cd-label { display: block; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-2); margin-bottom: 8px; font-weight: 700; }
.intro-cd-cells { display: flex; justify-content: center; gap: 8px; }
.icd { min-width: 56px; padding: 8px 4px; border-radius: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
.icd b { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 700; line-height: 1; background: linear-gradient(135deg,#FF6B6B,#8338EC); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.icd i { font-style: normal; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-2); }
[data-theme="light"] .icd { background: rgba(20,20,45,.04); border-color: rgba(20,20,45,.1); }

/* ===== confetti / balloon burst on submission ===== */
.confetti-bit { position: fixed; top: -44px; z-index: 300; pointer-events: none; will-change: transform; animation: confFall linear forwards; }
@keyframes confFall {
  0% { transform: translateY(0) rotate(0); opacity: 1; }
  100% { transform: translateY(105vh) rotate(320deg); opacity: .9; }
}
@media (prefers-reduced-motion: reduce) { .confetti-bit, .intro-float span { animation: none; opacity: 0; } }

/* ===== preview overlay (above the studio) ===== */
#previewOverlay { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 18px; background: rgba(8,8,20,.85); backdrop-filter: blur(9px); overflow-y: auto; }
#previewOverlay[hidden] { display: none; }
.preview-box { position: relative; width: 100%; max-width: 620px; background: var(--surface); border: 1px solid rgba(255,255,255,.12); border-radius: 24px; padding: 26px 22px; text-align: center; animation: modalIn .3s cubic-bezier(.2,.9,.3,1.2); }
.preview-box h3 { font-size: 22px; margin: 0 0 4px; }
.preview-note { color: var(--text-2); font-size: 14px; margin: 0 0 16px; }
.preview-imgwrap { border-radius: 16px; overflow: hidden; background: #ecebe7; }
.preview-imgwrap img { width: 100%; display: block; }
.preview-actions { display: flex; gap: 10px; margin-top: 18px; }
.preview-actions .btn { flex: 1; }
@media (max-width: 520px) { .preview-actions { flex-direction: column-reverse; } }

/* ===== success confirmation: what's next ===== */
.success-steps { text-align: left; max-width: 420px; margin: 0 auto 22px; display: flex; flex-direction: column; gap: 10px; }
.success-stepline { font-size: 14px; color: var(--text-2); line-height: 1.45; display: flex; gap: 10px; align-items: flex-start; }
.success-stepline span { font-size: 17px; flex-shrink: 0; }
.success-stepline b { color: var(--text); }

/* ===== edit panel polish (bigger, friendlier taps) ===== */
.slider-row label { font-size: 13.5px; font-weight: 600; color: var(--text-2); }
.mini-reset { font-size: 12px; color: var(--text-2); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; padding: 5px 10px; cursor: pointer; }
#previewBtn { flex: 0 0 auto; }
@media (max-width: 720px) {
  .ed-controls { gap: 12px; }
  .ed-tabs button, .ed-faceswitch button { padding: 12px 8px; font-size: 14px; }
  .ed-btns .btn { min-width: 100%; padding: 13px; }
  .ed-nudge { grid-template-columns: repeat(3, 42px); grid-template-rows: repeat(3, 42px); }
  .ed-nudge button { font-size: 15px; }
  .ed-sw { border-radius: 12px; }
  .studio-nav { gap: 8px; flex-wrap: wrap; }
}

/* ===== FIX: Create button was clipped/hidden in the intro popup ===== */
/* .intro-card had overflow:hidden (to clip balloons) which killed scrolling — allow y-scroll again */
.intro-card { overflow-x: hidden; overflow-y: auto; }
/* pin the Create button to the bottom so it is ALWAYS visible, no scrolling needed */
.intro-foot { position: sticky; bottom: 0; z-index: 3; margin-top: 6px; padding: 12px 0 4px; background: linear-gradient(to top, var(--surface) 60%, rgba(0,0,0,0)); }
.intro-foot .intro-cta { margin-bottom: 8px; }
@media (max-width: 460px) {
  .intro-card { padding: 20px 16px 6px; }
  .intro-badge { margin-bottom: 8px; font-size: 10.5px; }
  .intro-perks { font-size: 11px; margin-bottom: 8px; padding: 6px 10px; }
  .intro-sub { font-size: 13px; margin-bottom: 12px; }
  .intro-steps { margin-bottom: 12px; }
  .intro-countdown { margin-bottom: 8px; }
  .intro-cd-label { margin-bottom: 5px; font-size: 11px; }
  .icd { min-width: 46px; padding: 6px 3px; }
  .icd b { font-size: 18px; }
}
@media (max-height: 680px) {  /* very short screens: drop the 4-step row so the CTA always fits */
  .intro-steps { display: none; }
  .intro-title { font-size: 22px; }
}

/* ============================================================
   FOUNDING CIRCLE — premium luxury section (always dark, dramatic)
   ============================================================ */
.founders-section { position: relative; overflow: hidden; background: radial-gradient(1200px 600px at 50% -10%, #26082e 0%, #14061c 45%, #0b0b18 100%); border-top: 1px solid rgba(255,190,11,.14); border-bottom: 1px solid rgba(255,190,11,.14); }
.fx-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.fx-orbs span { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; animation: fOrb 16s ease-in-out infinite; }
.fx-orbs span:nth-child(1) { width: 380px; height: 380px; background: #FF006E; top: -100px; left: -80px; }
.fx-orbs span:nth-child(2) { width: 320px; height: 320px; background: #8338EC; bottom: -80px; right: -60px; animation-delay: -5s; }
.fx-orbs span:nth-child(3) { width: 260px; height: 260px; background: #FFBE0B; top: 40%; left: 55%; opacity: .28; animation-delay: -9s; }
@keyframes fOrb { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.08); } }
.founders-inner { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; text-align: center; color: #fff; }
.f-kicker { display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #FFBE0B; padding: 7px 16px; border-radius: 999px; background: rgba(255,190,11,.1); border: 1px solid rgba(255,190,11,.3); margin-bottom: 18px; }
.f-kicker.sm { font-size: 11px; margin-bottom: 10px; }
.f-title { font-family: var(--font-display); font-size: clamp(30px, 6vw, 56px); line-height: 1.05; margin: 0 0 16px; color: #fff; }
.f-grad { background: linear-gradient(120deg, #FFD36B, #FF6B6B 45%, #C874FF); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.f-sub { color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.6; max-width: 620px; margin: 0 auto 34px; }
.f-sub b { color: #fff; }

/* live counter card */
.f-counter { max-width: 560px; margin: 0 auto 8px; text-align: left; background: linear-gradient(180deg, rgba(20,20,32,.92), rgba(12,12,22,.92)); border: 1px solid rgba(255,255,255,.12); border-radius: 26px; padding: 26px 26px 24px; box-shadow: 0 30px 80px rgba(0,0,0,.5); backdrop-filter: blur(8px); }
.fc-top { display: flex; justify-content: space-between; align-items: center; font-size: 12px; letter-spacing: 1.5px; color: rgba(255,255,255,.55); margin-bottom: 14px; }
.fc-live { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.fc-dot { width: 8px; height: 8px; border-radius: 50%; background: #2ee6a8; box-shadow: 0 0 0 0 rgba(46,230,168,.6); animation: fPulse 1.8s infinite; }
@keyframes fPulse { 0% { box-shadow: 0 0 0 0 rgba(46,230,168,.55); } 70% { box-shadow: 0 0 0 9px rgba(46,230,168,0); } 100% { box-shadow: 0 0 0 0 rgba(46,230,168,0); } }
.fc-big { display: flex; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.fc-big b { font-family: var(--font-display); font-size: 72px; font-weight: 700; line-height: 1; color: #fff; }
.fc-big span { font-size: 20px; color: rgba(255,255,255,.6); }
.fc-bar { height: 10px; border-radius: 999px; background: rgba(255,255,255,.1); overflow: hidden; margin-bottom: 10px; }
.fc-bar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, #2ee6a8, #FFBE0B); transition: width .8s cubic-bezier(.2,.9,.3,1); }
.fc-meta { display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 18px; }
.f-apply-btn { width: 100%; padding: 17px; font-size: 17px; font-weight: 700; color: #1a0a02; background: linear-gradient(135deg, #FFD36B, #FF9F45 55%, #FF6B6B); border: none; border-radius: 999px; box-shadow: 0 10px 30px rgba(255,120,60,.35); transition: transform .18s, box-shadow .18s; }
.f-apply-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255,120,60,.5); }
.f-apply-btn.is-closed { background: rgba(255,255,255,.12); color: rgba(255,255,255,.6); box-shadow: none; cursor: not-allowed; }
.fc-scarcity { font-size: 12.5px; color: rgba(255,255,255,.5); text-align: center; margin: 12px 0 0; }

.f-h3 { font-family: var(--font-display); font-size: 26px; color: #fff; margin: 54px 0 4px; }
.f-h3-sub { color: rgba(255,255,255,.55); font-size: 14.5px; margin: 0 0 24px; }

/* founder wall */
.founder-wall { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; max-width: 620px; margin: 0 auto; }
.ftile { aspect-ratio: 1; border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; position: relative; border: 1px solid rgba(255,255,255,.1); transition: transform .2s; }
.ftile.open { background: rgba(255,255,255,.03); }
.ftile.open .ft-no { color: rgba(255,255,255,.4); font-weight: 700; font-size: 15px; }
.ftile.open .ft-open { font-size: 9.5px; letter-spacing: .5px; text-transform: uppercase; color: rgba(255,255,255,.28); }
.ftile.filled { background: linear-gradient(160deg, rgba(255,0,110,.22), rgba(131,56,236,.22)); border-color: rgba(255,190,11,.45); box-shadow: 0 6px 20px rgba(255,0,110,.18); animation: fPop .5s cubic-bezier(.2,.9,.3,1.4); }
.ftile.filled:hover { transform: translateY(-3px) scale(1.03); }
@keyframes fPop { from { transform: scale(.6); opacity: 0; } }
.ft-no { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: #fff; }
.ft-name { font-size: 10.5px; color: rgba(255,255,255,.75); max-width: 90%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ft-check { position: absolute; top: 6px; right: 8px; font-size: 10px; color: #FFBE0B; }

/* perks */
.f-perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; text-align: left; }
.f-perk { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 20px; transition: transform .2s, border-color .2s; }
.f-perk:hover { transform: translateY(-4px); border-color: rgba(255,190,11,.4); }
.fp-ico { font-size: 28px; display: block; margin-bottom: 10px; }
.f-perk h4 { font-size: 16px; color: #fff; margin: 0 0 6px; }
.f-perk p { font-size: 13px; color: rgba(255,255,255,.62); line-height: 1.5; margin: 0; }

/* collectible: badge + card */
.f-collectible { display: flex; gap: 34px; align-items: center; justify-content: center; flex-wrap: wrap; }
.f-badge { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.fb-ring { width: 190px; height: 190px; border-radius: 50%; background: conic-gradient(#FFD36B, #FF006E, #8338EC, #FFD36B); padding: 5px; box-shadow: 0 16px 44px rgba(255,0,110,.35); animation: fSpin 8s linear infinite; }
@keyframes fSpin { to { transform: rotate(360deg); } }
.fb-core { width: 100%; height: 100%; border-radius: 50%; background: radial-gradient(circle at 50% 35%, #241033, #120a1e); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; animation: fSpin 8s linear infinite reverse; }
.fb-crown { font-size: 30px; }
.fb-no { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: #fff; line-height: 1; }
.fb-ed { font-size: 10px; letter-spacing: 2px; color: #FFBE0B; }
.fb-verified { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: #2ee6a8; background: rgba(46,230,168,.1); border: 1px solid rgba(46,230,168,.3); padding: 5px 12px; border-radius: 999px; }
.f-card-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
#founderCardCanvas { width: 260px; max-width: 68vw; border-radius: 18px; box-shadow: 0 24px 60px rgba(0,0,0,.55); border: 1px solid rgba(255,190,11,.3); }
.f-card-actions { display: flex; gap: 8px; }
.f-demo-note { font-size: 12.5px; color: rgba(255,255,255,.5); margin: 22px auto 0; max-width: 520px; }

/* apply modal */
.founder-card-modal { max-width: 620px; }
.founder-card-modal h2 { font-size: 25px; margin-bottom: 4px; }
.ff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0 4px; }
.ff { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; color: var(--text-2); text-align: left; }
.ff.ff-full { grid-column: 1 / -1; }
.founder-card-modal .ff-full { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; color: var(--text-2); text-align: left; margin-top: 12px; }
.ff-hint { font-weight: 400; color: var(--text-2); opacity: .7; }
.ff input, .ff select, .ff-full input, .ff-full textarea, .ff-full select { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05); color: var(--text); font-size: 15px; font-family: inherit; }
.ff input:focus, .ff select:focus, .ff-full input:focus, .ff-full textarea:focus, .ff-full select:focus { outline: none; border-color: var(--pink); }
.ff-full textarea { resize: vertical; }
.ff-terms { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--text-2); text-align: left; margin: 18px 0; line-height: 1.5; }
.ff-terms input { margin-top: 3px; flex-shrink: 0; width: 18px; height: 18px; accent-color: var(--pink); }
.ff-terms a { color: var(--pink); }
.founder-card-modal .btn-lg { width: 100%; }
.ff-fine { font-size: 12px; color: var(--text-2); text-align: center; margin: 12px 0 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* apply success */
.fs-emoji { font-size: 54px; text-align: center; margin-bottom: 6px; animation: bounceIn .7s cubic-bezier(.2,.9,.3,1.4); }
#founderSuccess { text-align: center; }
#founderSuccess h2 { font-size: 26px; margin-bottom: 16px; }
.fs-ticket { background: linear-gradient(160deg, rgba(255,0,110,.12), rgba(131,56,236,.12)); border: 1px dashed rgba(255,190,11,.4); border-radius: 16px; padding: 8px 20px; max-width: 380px; margin: 0 auto 18px; }
.fst-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 14px; color: var(--text-2); }
.fst-row:last-child { border-bottom: none; }
.fst-row b { font-size: 18px; color: var(--text); font-family: var(--font-display); }
.fst-pending { color: #FFBE0B !important; font-size: 15px !important; }
.fs-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 4px; }

.nav-founders { color: #FFBE0B !important; font-weight: 700 !important; }

/* light theme: keep founder inputs readable */
[data-theme="light"] .founder-card-modal .ff input, [data-theme="light"] .founder-card-modal .ff select,
[data-theme="light"] .founder-card-modal .ff-full input, [data-theme="light"] .founder-card-modal .ff-full textarea, [data-theme="light"] .founder-card-modal .ff-full select { background: rgba(20,20,45,.04); border-color: rgba(20,20,45,.15); }

@media (max-width: 720px) {
  .f-perks { grid-template-columns: 1fr; }
  .ff-grid { grid-template-columns: 1fr; }
  .founder-wall { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .fc-big b { font-size: 60px; }
}
@media (prefers-reduced-motion: reduce) { .fx-orbs span, .fb-ring, .fb-core, .fc-dot { animation: none; } }

/* ===================== SITE V2: story + collab ===================== */
/* ---- Our Story (index) ---- */
.story-section { text-align: center; }
.story-inner { max-width: 760px; margin: 0 auto; }
.story-kicker { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #fff; padding: 6px 14px; border-radius: 999px; margin-bottom: 14px; background: linear-gradient(135deg, rgba(255,107,107,.85), rgba(131,56,236,.85)); }
.story-body { text-align: left; margin: 18px auto 26px; display: flex; flex-direction: column; gap: 14px; }
.story-body p { color: var(--text-2); font-size: 16px; line-height: 1.75; }
.story-body b { color: var(--text); }
.story-vals { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.story-val { padding: 18px 12px; border-radius: 16px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; gap: 4px; align-items: center; }
.story-val span { font-size: 26px; }
.story-val b { font-size: 14.5px; }
.story-val small { font-size: 12px; color: var(--text-2); }
[data-theme="light"] .story-val { background: rgba(20,20,45,.04); border-color: rgba(20,20,45,.1); }

/* ---- Collab promo (index) ---- */
.collab-promo .cp-card { max-width: 880px; margin: 0 auto; padding: 42px 36px; border-radius: 28px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(255,0,110,.14), rgba(131,56,236,.14)); border: 1px solid rgba(255,0,110,.3); text-align: center; }
.cp-kicker { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--pink); margin-bottom: 12px; }
.cp-card h2 { font-family: var(--font-display); font-size: clamp(26px, 4.6vw, 40px); line-height: 1.12; margin-bottom: 12px; }
.cp-grad { background: linear-gradient(135deg,#FF6B6B,#FF006E 55%,#8338EC); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cp-card p { color: var(--text-2); max-width: 560px; margin: 0 auto 18px; font-size: 15.5px; line-height: 1.65; }
.cp-points { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 22px; }
.cp-points span { font-size: 13px; font-weight: 600; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); }
.cp-note { font-size: 12.5px !important; margin-top: 14px !important; }
[data-theme="light"] .cp-points span { background: rgba(20,20,45,.05); border-color: rgba(20,20,45,.12); }

/* ---- Collab page: deal ---- */
.deal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 900px; margin: 0 auto; }
@media (max-width: 720px) { .deal-grid { grid-template-columns: 1fr; } }
.deal-card { border-radius: 22px; padding: 26px 24px; text-align: left; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.045); }
.deal-give { border-color: rgba(255,190,11,.4); background: linear-gradient(180deg, rgba(255,190,11,.08), rgba(255,255,255,.03)); }
.deal-get { border-color: rgba(255,0,110,.4); background: linear-gradient(180deg, rgba(255,0,110,.08), rgba(255,255,255,.03)); }
.deal-card h3 { font-size: 19px; margin-bottom: 14px; }
.deal-card ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.deal-card li { font-size: 14.5px; color: var(--text-2); line-height: 1.55; padding-left: 26px; position: relative; }
.deal-card li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--pink); font-weight: 800; }
.deal-give li::before { color: #FFBE0B; }
.deal-card li b { color: var(--text); }
.deal-note { text-align: center; max-width: 640px; margin: 22px auto 0; font-size: 14px; color: var(--text-2);
  padding: 14px 18px; border-radius: 14px; background: rgba(131,56,236,.1); border: 1px solid rgba(131,56,236,.3); }
.deal-note b { color: var(--text); }
[data-theme="light"] .deal-card { background: rgba(20,20,45,.03); }

/* ---- products ---- */
.prod-cards { display: grid; grid-template-columns: repeat(2, minmax(220px, 280px)); gap: 18px; justify-content: center; }
@media (max-width: 560px) { .prod-cards { grid-template-columns: 1fr; } }
.prod-card { position: relative; border-radius: 22px; padding: 30px 22px; text-align: center; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05); transition: transform .2s, border-color .2s; }
.prod-card:hover { transform: translateY(-4px); border-color: rgba(255,0,110,.5); }
.prod-emoji { font-size: 52px; display: block; margin-bottom: 10px; }
.prod-card h3 { font-size: 19px; margin-bottom: 6px; }
.prod-card p { font-size: 13.5px; color: var(--text-2); line-height: 1.5; }
.prod-tag { position: absolute; top: 14px; right: 14px; font-size: 10.5px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: #fff; padding: 4px 10px; border-radius: 999px; background: linear-gradient(135deg, var(--primary), var(--pink)); }
[data-theme="light"] .prod-card { background: rgba(20,20,45,.03); }

/* ---- apply card ---- */
.apply-card { max-width: 680px; margin: 0 auto; padding: 34px 28px; border-radius: 26px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.12); text-align: center; }
.apply-card .ff-grid { text-align: left; }
.fit-picks { display: flex; gap: 10px; justify-content: center; margin: 10px 0 6px; flex-wrap: wrap; }
.fit-pick { display: flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 14px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05); cursor: pointer; font-weight: 600; font-size: 14.5px; transition: border-color .2s; }
.fit-pick:has(input:checked) { border-color: var(--pink); background: rgba(255,0,110,.1); }
.fit-pick input { accent-color: var(--pink); width: 17px; height: 17px; }
.code-box { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 14px auto 10px; padding: 16px 22px; max-width: 320px; border-radius: 16px; background: rgba(255,190,11,.1); border: 1.5px dashed rgba(255,190,11,.55); }
.code-box b { font-family: var(--font-display); font-size: 26px; letter-spacing: 6px; }
[data-theme="light"] .apply-card { background: rgba(20,20,45,.03); }
[data-theme="light"] .fit-pick { background: rgba(20,20,45,.04); border-color: rgba(20,20,45,.14); }

/* ---- creator dashboard ---- */
.dash-wrap { display: grid; grid-template-columns: 300px 1fr; gap: 22px; max-width: 1000px; margin: 0 auto; align-items: start; }
@media (max-width: 820px) { .dash-wrap { grid-template-columns: 1fr; } }
.dash-badge { position: sticky; top: 90px; text-align: center; padding: 30px 22px; border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,0,110,.12), rgba(131,56,236,.1)); border: 1px solid rgba(255,0,110,.35); }
@media (max-width: 820px) { .dash-badge { position: static; } }
.db-ring { width: 96px; height: 96px; margin: 0 auto 14px; border-radius: 50%; padding: 4px; background: conic-gradient(from 0deg, #FF6B6B, #FF006E, #8338EC, #FF6B6B); animation: dbSpin 6s linear infinite; }
@keyframes dbSpin { to { transform: rotate(360deg); } }
.db-core { width: 100%; height: 100%; border-radius: 50%; background: var(--surface); display: flex; align-items: center; justify-content: center; animation: dbSpin 6s linear infinite reverse; }
.db-core span { font-size: 40px; }
.dash-badge h2 { font-size: 22px; margin-bottom: 2px; }
.db-handle { color: var(--text-2); font-size: 14px; margin-bottom: 12px; }
.db-badge-label { display: inline-block; font-size: 11.5px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; padding: 6px 14px; border-radius: 999px; background: linear-gradient(135deg, var(--primary), var(--pink)); margin-bottom: 10px; }
.status-chip { display: block; margin: 0 auto 14px; width: fit-content; font-size: 12.5px; font-weight: 700; padding: 6px 14px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); }
.status-chip.st-approved, .status-chip.st-active { background: rgba(46,204,113,.15); border-color: rgba(46,204,113,.5); color: #7bed9f; }
.status-chip.st-completed { background: rgba(255,190,11,.15); border-color: rgba(255,190,11,.5); color: #FFBE0B; }
.status-chip.st-rejected { background: rgba(255,107,107,.15); border-color: rgba(255,107,107,.5); color: #ff9d9d; }
.db-meta { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--text-2); margin-bottom: 16px; }
.dash-main { display: flex; flex-direction: column; gap: 18px; }
.dash-panel { padding: 24px 22px; border-radius: 20px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.11); }
.dash-panel h3 { font-size: 17px; margin-bottom: 4px; }
.dash-sub { font-size: 13px; color: var(--text-2); margin-bottom: 14px; }
.dash-empty { font-size: 13.5px; color: var(--text-2); }
.deliv-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px; border-radius: 12px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); margin-bottom: 8px; }
.dv-label { font-size: 13.5px; }
.dv-status { font-size: 11.5px; font-weight: 800; letter-spacing: .5px; padding: 5px 11px; border-radius: 999px; white-space: nowrap; }
.ds-todo { background: rgba(255,255,255,.08); color: var(--text-2); }
.ds-sub { background: rgba(131,56,236,.2); color: #c39bff; }
.ds-done { background: rgba(46,204,113,.18); color: #7bed9f; }
.ins-form { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.ins-form input { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.05); color: var(--text); font-size: 14px; }
.ins-form input:focus { outline: none; border-color: var(--pink); }
.ins-nums { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.ins-list { display: flex; flex-direction: column; gap: 8px; }
.ins-item { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px; font-size: 12.5px; padding: 10px 12px; border-radius: 10px; background: rgba(255,255,255,.04); }
.ins-item a { color: var(--pink); }
.ins-item span { color: var(--text-2); }
.upd-item { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.upd-item:last-child { border-bottom: none; }
.upd-date { flex-shrink: 0; font-size: 11.5px; font-weight: 700; color: var(--pink); padding-top: 2px; min-width: 52px; }
.upd-item p { font-size: 13.5px; color: var(--text-2); line-height: 1.55; }
.foot-fine { font-size: 11.5px !important; color: var(--text-2); opacity: .8; margin-top: 6px; }
[data-theme="light"] .dash-panel, [data-theme="light"] .deliv-item, [data-theme="light"] .ins-item { background: rgba(20,20,45,.03); }
[data-theme="light"] .ins-form input { background: rgba(20,20,45,.04); border-color: rgba(20,20,45,.16); color: var(--text); }

/* ---- founding: badge tiers + dashboard label (collab v3) ---- */
.tier-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 900px; margin: 0 auto; }
@media (max-width: 760px) { .tier-cards { grid-template-columns: 1fr; max-width: 420px; } }
.tier-card { border-radius: 22px; padding: 28px 22px; text-align: center; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.045); transition: transform .2s, border-color .2s; }
.tier-card:hover { transform: translateY(-4px); }
.tier-founding { border-color: rgba(255,190,11,.55); background: linear-gradient(180deg, rgba(255,190,11,.12), rgba(255,255,255,.03)); box-shadow: 0 14px 40px rgba(255,190,11,.12); position: relative; }
.tier-founding::before { content: 'FIRST 20 ONLY'; position: absolute; top: -11px; left: 50%; transform: translateX(-50%); font-size: 10px; font-weight: 800; letter-spacing: 2px; color: #1a0a02; padding: 5px 14px; border-radius: 999px; background: linear-gradient(135deg, #FFD36B, #FF9F45); white-space: nowrap; }
.tier-emoji { font-size: 42px; display: block; margin-bottom: 10px; }
.tier-card h3 { font-size: 18px; margin-bottom: 4px; }
.tier-who { font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--pink); margin-bottom: 10px; }
.tier-founding .tier-who { color: #FFBE0B; }
.tier-card p:not(.tier-who) { font-size: 13.5px; color: var(--text-2); line-height: 1.55; }
[data-theme="light"] .tier-card { background: rgba(20,20,45,.03); }
.db-founding { display: block; width: fit-content; margin: 0 auto 8px; font-size: 11.5px; font-weight: 800; letter-spacing: 1.5px; color: #1a0a02; padding: 6px 14px; border-radius: 999px; background: linear-gradient(135deg, #FFD36B, #FF9F45 60%, #FF6B6B); box-shadow: 0 6px 18px rgba(255,159,69,.35); }
.collab-hero .hero-inner { max-width: 780px; }
.collab-hero .f-counter { margin-top: 26px; }

/* ===================== CREATOR CLUB (Founding 100) ===================== */
/* real story */
.zz-story p { font-size: 16.5px; }
.zz-promise { font-family: 'Caveat', var(--font-display), cursive; font-size: 34px !important; line-height: 1.25 !important; text-align: center; margin-top: 10px;
  background: linear-gradient(135deg,#FF6B6B,#FF006E 55%,#8338EC); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* emotional hook band */
.hook-band { padding-top: 20px; }
.hook-card { max-width: 780px; margin: 0 auto; text-align: center; padding: 48px 32px; border-radius: 30px; position: relative; overflow: hidden;
  background: linear-gradient(160deg, rgba(255,0,110,.13), rgba(131,56,236,.13)); border: 1px solid rgba(255,0,110,.3); }
.hook-line { font-size: 14px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-2); margin-bottom: 12px; }
.hook-card h2 { font-family: var(--font-display); font-size: clamp(24px, 4.4vw, 38px); line-height: 1.18; margin-bottom: 10px; }
.hook-sub { color: var(--text-2); font-size: 15.5px; margin-bottom: 24px; }

/* films */
.film-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 980px; margin: 0 auto; }
@media (max-width: 900px) { .film-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .film-cards { grid-template-columns: 1fr; } }
.film-card { position: relative; aspect-ratio: 16/10; border-radius: 20px; padding: 20px; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px; overflow: hidden;
  background: linear-gradient(160deg, #17172b, #0d0d1c); border: 1px solid rgba(255,255,255,.1); transition: transform .2s, border-color .2s; }
.film-card:hover { transform: translateY(-4px); border-color: rgba(255,0,110,.45); }
.film-card::before { content: '▶'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%); width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: 14px; padding-left: 3px; }
.film-no { font-size: 11px; font-weight: 800; letter-spacing: 2px; color: var(--pink); }
.film-card h3 { font-size: 15.5px; color: #fff; line-height: 1.3; }
.film-soon { font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.45); }

/* welcome kit */
.kit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 900px; margin: 0 auto; }
@media (max-width: 820px) { .kit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .kit-grid { grid-template-columns: 1fr; } }
.kit-item { padding: 24px 18px; border-radius: 20px; text-align: center; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.11); display: flex; flex-direction: column; gap: 6px; align-items: center; transition: transform .2s; }
.kit-item:hover { transform: translateY(-3px); }
.kit-item span { font-size: 36px; }
.kit-item b { font-size: 15px; }
.kit-item small { font-size: 12.5px; color: var(--text-2); line-height: 1.45; }
.kit-book { border-color: rgba(255,190,11,.5); background: linear-gradient(180deg, rgba(255,190,11,.1), rgba(255,255,255,.03)); }
[data-theme="light"] .kit-item { background: rgba(20,20,45,.03); }

/* benefits perks — theme-safe outside the old dark founders section */
.f-perks .f-perk h4 { color: var(--text); font-size: 15.5px; margin-bottom: 6px; }
.f-perks .f-perk p { color: var(--text-2); font-size: 13px; line-height: 1.55; }
.fp-ico { font-size: 26px; display: block; margin-bottom: 8px; }
@media (max-width: 820px) { .f-perks { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .f-perks { grid-template-columns: 1fr; } }
[data-theme="light"] .f-perk { background: rgba(20,20,45,.03); border-color: rgba(20,20,45,.1); }

/* founding wall — 100 tiles */
.founder-wall.wall-100 { grid-template-columns: repeat(10, 1fr); max-width: 860px; gap: 6px; }
@media (max-width: 720px) { .founder-wall.wall-100 { grid-template-columns: repeat(5, 1fr); gap: 7px; } }
.wall-100 .ftile { border-radius: 10px; }
.wall-100 .ftile.open .ft-no { font-size: 10.5px; font-weight: 600; }
.wall-100 .ftile .ft-no { font-size: 11px; }
.wall-100 .ftile.filled .ft-name { font-size: 8.5px; }
.wall-100 .ft-check { top: 2px; right: 3px; font-size: 8px; }

/* FAQ */
.faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border-radius: 16px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.11); padding: 0 20px; }
.faq-item summary { cursor: pointer; list-style: none; padding: 17px 0; font-weight: 600; font-size: 14.5px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 20px; color: var(--pink); flex-shrink: 0; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0 17px; font-size: 13.5px; color: var(--text-2); line-height: 1.65; }
[data-theme="light"] .faq-item { background: rgba(20,20,45,.03); border-color: rgba(20,20,45,.1); }

/* story section text on light theme */
[data-theme="light"] .zz-story p { color: #3a3a52; }

/* ===================== v21: dashboard voting + compact story + colourful light ===================== */
/* dashboard voting cards */
.dash-votes { display: flex; flex-direction: column; gap: 8px; }
.dv-card { display: grid; grid-template-columns: 56px 1fr auto; align-items: center; gap: 12px; padding: 9px 10px; border-radius: 14px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); }
.dv-card img { width: 56px; height: 42px; object-fit: cover; border-radius: 9px; background: #ecebe7; }
.dv-info { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.dv-info b { font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dv-info small { font-size: 11.5px; color: var(--text-2); }
.dv-card .btn-sm { padding: 8px 14px; font-size: 12.5px; white-space: nowrap; }
[data-theme="light"] .dv-card { background: rgba(20,20,45,.03); border-color: rgba(20,20,45,.1); }

/* story — compact, not the hero of the page */
.story-section { padding-top: 46px; padding-bottom: 46px; }
.zz-story { max-width: 620px; margin-left: auto; margin-right: auto; }
.zz-story p { font-size: 14.5px !important; line-height: 1.7; }
.zz-promise { font-size: 27px !important; }
.story-vals { max-width: 640px; margin: 0 auto; }

/* ---- colourful light theme ---- */
[data-theme="light"] body {
  background:
    radial-gradient(900px 500px at 8% -5%, rgba(255, 214, 235, .55), transparent 60%),
    radial-gradient(800px 480px at 96% 12%, rgba(216, 200, 255, .5), transparent 60%),
    radial-gradient(700px 500px at 50% 108%, rgba(255, 236, 200, .5), transparent 62%),
    #FBF8FF;
}
[data-theme="light"] .blob { opacity: .35; filter: blur(90px) saturate(1.2); }
[data-theme="light"] .chip.chip-glow { background: linear-gradient(135deg, rgba(255,0,110,.12), rgba(131,56,236,.12)); border-color: rgba(255,0,110,.3); color: #6b2350; }
[data-theme="light"] .marquee { background: linear-gradient(90deg, #ffe3f0, #ecdcff, #ffefd6); color: #7a3a66; }
[data-theme="light"] .kit-item, [data-theme="light"] .tier-card, [data-theme="light"] .prod-card, [data-theme="light"] .deal-card, [data-theme="light"] .apply-card, [data-theme="light"] .dash-panel, [data-theme="light"] .faq-item, [data-theme="light"] .story-val, [data-theme="light"] .step-card, [data-theme="light"] .f-perk {
  background: #ffffffcc; border-color: rgba(131,56,236,.16); box-shadow: 0 8px 26px rgba(131,56,236,.07);
}
[data-theme="light"] .deal-give { background: linear-gradient(180deg, #fff6df, #ffffffd9); border-color: rgba(255,170,11,.4); }
[data-theme="light"] .deal-get { background: linear-gradient(180deg, #ffe9f2, #ffffffd9); border-color: rgba(255,0,110,.3); }
[data-theme="light"] .kit-book { background: linear-gradient(180deg, #fff3d6, #ffffffd9); border-color: rgba(255,170,11,.5); }
[data-theme="light"] .tier-founding { background: linear-gradient(180deg, #fff3d6, #ffffffd9); border-color: rgba(255,170,11,.55); }
[data-theme="light"] .hook-card, [data-theme="light"] .cp-card { background: linear-gradient(160deg, #ffe6f1, #ecdfff); border-color: rgba(255,0,110,.25); }
[data-theme="light"] .dash-badge { background: linear-gradient(180deg, #ffe6f1, #f0e6ff); border-color: rgba(255,0,110,.3); }
[data-theme="light"] .film-card { background: linear-gradient(160deg, #241f3d, #171230); }
[data-theme="light"] .footer { background: linear-gradient(180deg, transparent, rgba(216,200,255,.35)); }

/* ===================== v22: split sites, game, offer, gold creators ===================== */
/* community challenge strip */
.camp-strip { margin: 0 0 18px; padding: 14px 18px; border-radius: 14px; font-size: 14px; text-align: center;
  background: linear-gradient(90deg, rgba(255,0,110,.12), rgba(131,56,236,.12)); border: 1px solid rgba(255,0,110,.3); }
.camp-strip .cs-time { font-family: var(--font-display); letter-spacing: 1px; color: var(--pink); }

/* suggest + play row */
.fun-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 18px; max-width: 940px; margin: 0 auto; }
@media (max-width: 780px) { .fun-grid { grid-template-columns: 1fr; } }
.suggest-card, .game-card { border-radius: 24px; padding: 30px 26px; border: 1px solid rgba(131,56,236,.25); background: rgba(255,255,255,.05); }
.suggest-card h2, .game-card h2 { font-size: 22px; margin-bottom: 6px; }
.suggest-card > p, .game-card > p { font-size: 14px; color: var(--text-2); margin-bottom: 16px; line-height: 1.6; }
.sg-form { display: flex; flex-direction: column; gap: 10px; }
.sg-two { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sg-form input, .sg-form select, .sg-form textarea { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.05); color: var(--text); font-size: 14px; font-family: inherit; }
.sg-form input:focus, .sg-form textarea:focus, .sg-form select:focus { outline: none; border-color: var(--pink); }
[data-theme="light"] .suggest-card, [data-theme="light"] .game-card { background: #ffffffcc; box-shadow: 0 8px 26px rgba(131,56,236,.07); }
[data-theme="light"] .sg-form input, [data-theme="light"] .sg-form select, [data-theme="light"] .sg-form textarea { background: rgba(20,20,45,.04); border-color: rgba(20,20,45,.16); }
.game-card { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  background: linear-gradient(160deg, rgba(255,190,11,.1), rgba(255,0,110,.08)); border-color: rgba(255,190,11,.4); }
.game-best { font-size: 13.5px; color: var(--text-2); margin-bottom: 12px; }
.game-modal { max-width: 420px; text-align: center; }
#gameCanvas { width: 100%; max-width: 340px; border-radius: 16px; background: rgba(131,56,236,.06); border: 1px solid rgba(131,56,236,.25); touch-action: none; }
.game-hud { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 12px; font-size: 14px; }

/* creator dashboard: offer panel */
.offer-panel { border-color: rgba(255,190,11,.45) !important; }
.offer-deal { display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; color: var(--text-2); line-height: 1.55; margin-bottom: 4px; }
.offer-deal b { color: var(--text); }
#ofAddress { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.05); color: var(--text); font-size: 14px; font-family: inherit; margin-bottom: 10px; }
.of-row { font-size: 13.5px; color: var(--text-2); padding: 8px 0; line-height: 1.55; }
.of-row b { color: var(--text); }
.fit-solo { margin: 12px 0; padding: 14px; border-radius: 14px; font-size: 14.5px; background: rgba(255,190,11,.1); border: 1px solid rgba(255,190,11,.4); }
.prod-suggest { text-align: left; }
.prod-suggest .sg-form { margin-top: 10px; }
.bp-out canvas { width: 100%; max-width: 320px; border-radius: 16px; display: block; margin: 0 auto; }

/* ---- creators page: gold-on-dark luxe identity (distinct site) ---- */
.creators-page .brand-badge { background: linear-gradient(135deg, #FFD36B, #FF9F45); color: #1a0a02; }
.creators-page .chip.chip-glow { border-color: rgba(255,190,11,.45); background: linear-gradient(135deg, rgba(255,190,11,.14), rgba(255,0,110,.1)); }
.creators-page .hero-title { background: linear-gradient(135deg, #FFD36B 0%, #FF9F45 45%, #FF006E 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.creators-page .marquee { background: linear-gradient(90deg, #2a1c08, #331427, #2a1c08); color: #FFD36B; }
.creators-page .btn-primary { background: linear-gradient(135deg, #FFD36B, #FF9F45 60%, #FF006E); color: #1a0a02; font-weight: 800; }
.creators-page .story-kicker { background: linear-gradient(135deg, rgba(255,190,11,.9), rgba(255,0,110,.85)); }
.creators-page .zz-promise { background: linear-gradient(135deg, #FFD36B, #FF9F45 55%, #FF006E); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.creators-page .blob-1 { background: #FF9F45; } .creators-page .blob-2 { background: #FFD36B; }
.creators-page .section-title { letter-spacing: .5px; }

/* ===== v23: photo, leaderboard, game polish ===== */
.db-core { background-size: cover; background-position: center; }
.db-core.has-photo span { display: none; }
.db-photo-btn { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; margin-bottom: 8px; }
.lbc-row { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 12px; font-size: 13px; margin-bottom: 6px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.lbc-row.lbc-me { border-color: rgba(255,190,11,.55); background: rgba(255,190,11,.1); }
.lbc-rank { flex: 0 0 34px; font-weight: 800; }
.lbc-who { flex: 1; display: flex; align-items: center; gap: 7px; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lbc-who img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; }
.lbc-who i { font-style: normal; color: #FFBE0B; font-size: 11px; font-weight: 800; }
.lbc-nums { font-size: 11.5px; color: var(--text-2); white-space: nowrap; }
[data-theme="light"] .lbc-row { background: rgba(20,20,45,.03); }

/* ===== v24: insight verify flow ===== */
.ins-verify { display: flex; gap: 8px; }
.ins-verify input { flex: 1; }
.ins-verify .btn { flex: 0 0 auto; }
.ins-preview { display: flex; gap: 12px; align-items: flex-start; margin: 12px 0; }
#insThumb { width: 70px; height: 70px; object-fit: cover; border-radius: 12px; flex-shrink: 0; }
.ins-note { font-size: 12.5px; color: var(--text-2); line-height: 1.5; margin: 0; }
.ins-nums4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 12px; }
.ins-nums4 label { display: flex; flex-direction: column; gap: 4px; font-size: 12px; color: var(--text-2); font-weight: 600; }
.ins-item { display: flex; gap: 10px; align-items: center; }
.ins-thumb { width: 40px; height: 40px; object-fit: cover; border-radius: 9px; flex-shrink: 0; }
.ins-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }

/* ===== v25: community member modal ===== */
.mem-card { max-width: 440px; text-align: center; }
.mem-emoji { font-size: 46px; margin-bottom: 6px; }
.mem-card input { width: 100%; margin: 7px 0; padding: 12px 15px; border-radius: 12px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.05); color: var(--text); font-size: 14.5px; }
.mem-card input:focus { outline: none; border-color: var(--pink); }
[data-theme="light"] .mem-card input { background: rgba(20,20,45,.04); border-color: rgba(20,20,45,.14); }
.mem-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mem-2 input { margin: 7px 0; }
.mem-tabs { display: flex; gap: 6px; padding: 4px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); margin: 4px 0 14px; }
.mem-tabs button { flex: 1; border: none; background: none; color: var(--text-2); font-weight: 700; font-size: 13.5px; padding: 9px; border-radius: 999px; cursor: pointer; }
.mem-tabs button.active { background: linear-gradient(135deg, var(--primary), var(--pink)); color: #fff; }
[data-theme="light"] .mem-tabs { background: rgba(20,20,45,.04); border-color: rgba(20,20,45,.12); }
.mem-chip { display: inline-block; font-size: 12.5px; font-weight: 700; padding: 6px 14px; border-radius: 999px; margin: 6px 0 8px; background: rgba(255,190,11,.15); border: 1px solid rgba(255,190,11,.4); color: #FFBE0B; }
.mem-chip.mem-approved { background: rgba(46,204,113,.16); border-color: rgba(46,204,113,.5); color: #2ec77b; }
.mem-chip.mem-rejected { background: rgba(255,107,107,.15); border-color: rgba(255,107,107,.5); color: #ff8a8a; }
.mem-meta { font-size: 13px; color: var(--text-2); margin-bottom: 12px; }
.mem-updates { max-height: 200px; overflow-y: auto; text-align: left; margin-bottom: 14px; }
.mem-actions { display: flex; gap: 8px; flex-direction: column; }

/* ===== v25: Apple-like creator dashboard polish + leaderboard links ===== */
.dash-wrap { gap: 20px; }
.dash-panel { border-radius: 24px; padding: 26px 24px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); box-shadow: 0 10px 40px rgba(0,0,0,.14); backdrop-filter: blur(10px); transition: transform .2s, box-shadow .2s; }
.dash-panel:hover { box-shadow: 0 16px 50px rgba(0,0,0,.2); }
.dash-panel h3 { font-size: 18px; letter-spacing: -0.2px; }
.dash-badge { border-radius: 26px; box-shadow: 0 16px 50px rgba(255,0,110,.18); backdrop-filter: blur(10px); }
.creators-page .dash-badge { background: linear-gradient(180deg, rgba(255,190,11,.14), rgba(255,159,69,.08)); border-color: rgba(255,190,11,.4); }
.deliv-item, .ins-item, .dv-card { border-radius: 14px; transition: transform .15s, border-color .15s; }
.deliv-item:hover, .dv-card:hover { transform: translateY(-1px); }
.dash-panel .btn-primary { border-radius: 14px; }
.ins-form input, #ofAddress, #udStory { border-radius: 14px; }
.status-chip { border-radius: 999px; }
a.lbc-row { text-decoration: none; color: inherit; cursor: pointer; }
a.lbc-row:hover { transform: translateX(2px); border-color: rgba(255,190,11,.5); }
.lbc-go { margin-left: 6px; color: var(--pink); font-size: 11px; opacity: .6; }
.creators-page .lbc-go { color: #FFBE0B; }
/* softer, rounder inputs everywhere on dashboards (apple feel) */
.dash-main input, .dash-main select, .dash-main textarea { border-radius: 14px !important; }

/* ============================================================
   v26 — 100% MOBILE HARDENING (community + creators)
   ============================================================ */
@media (max-width: 480px) {
  .section { padding: 46px 16px; }
  .section-title { font-size: clamp(24px, 7vw, 32px); }
  .hero-inner { padding: 0 4px; }
  .hero-title { font-size: clamp(38px, 13vw, 60px); line-height: 1.02; }
  .hero-sub { font-size: 15px; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  /* navbar: keep the action buttons tappable and on one line */
  .navbar { padding: 12px 14px; }
  .nav-right { gap: 8px; }
  .nav-right .btn-sm { padding: 9px 13px; font-size: 13px; }
  .brand { font-size: 18px; }
  .brand-badge { font-size: 8.5px; padding: 3px 6px; }
  /* modals fill the screen comfortably */
  .modal { padding: 10px; align-items: flex-start; }
  .modal-card { padding: 24px 16px; border-radius: 20px; max-height: calc(100svh - 20px); }
  .mem-2, .sg-two { grid-template-columns: 1fr; }
  /* suggest + game */
  .suggest-card, .game-card { padding: 24px 18px; }
  /* dashboards: tighter, thumb-friendly */
  .dash-panel { padding: 20px 16px; border-radius: 18px; }
  .dash-badge { padding: 24px 18px; }
  .ins-verify { flex-direction: column; }
  .ins-verify .btn { width: 100%; }
  .ins-nums4 { grid-template-columns: 1fr 1fr; }
  .ins-preview { flex-direction: column; align-items: center; text-align: center; }
  .lbc-nums { font-size: 11px; }
  .lbc-who { font-size: 12px; }
  .preview-actions { flex-direction: column; }
  .preview-actions .btn { width: 100%; }
  /* founding counter + wall on phones */
  .fc-big b { font-size: 56px; }
  .founder-wall.wall-100 { grid-template-columns: repeat(5, 1fr); gap: 5px; }
  .kit-grid, .f-perks, .tier-cards, .film-cards, .prod-cards, .deal-grid { grid-template-columns: 1fr; }
  /* story + values */
  .zz-promise { font-size: 24px !important; }
  .story-vals { grid-template-columns: 1fr 1fr; }
  /* tap targets: min 44px height on primary actions */
  .btn-lg { padding: 15px 26px; }
  .apply-card, .hook-card, .cp-card { padding: 26px 18px; }
}
@media (max-width: 360px) {
  .nav-right .btn-sm { padding: 8px 10px; font-size: 12px; }
  .nav-right { gap: 6px; }
  .story-vals { grid-template-columns: 1fr; }
  .ins-nums4 { grid-template-columns: 1fr; }
}
/* never allow sideways scroll on any device */
html, body { max-width: 100%; overflow-x: hidden; }
img, canvas, video { max-width: 100%; height: auto; }
