:root {
  --bg: #292a2a;
  --bg-deep: #121212;
  --surface: rgba(22, 22, 26, 0.92);
  --text: #f7f7f8;
  --muted: #b7b7c2;
  --dim: #8d8d99;
  --line: rgba(255, 255, 255, 0.12);
  --cyan: #38e0ff;
  --cyan-2: #00bfff;
  --gold: #f2ad46;
  --gold-2: #f6d488;
  --pink: #ff5c8a;
  --mint: #65fae6;
  --header-h: 56px;
  --tab-h: 64px;
  --radius: 20px;
  --ease: cubic-bezier(0.2, 0.8, 0.3, 1);
  --font: "Exo 2", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; scrollbar-width: none; }
html::-webkit-scrollbar,
body::-webkit-scrollbar { display: none; width: 0; height: 0; }
html { background: var(--bg-deep); }
body {
  min-height: 100dvh;
  font-family: var(--font);
  color: var(--text);
  background: #0b0b0c;
  display: flex;
  justify-content: center;
  touch-action: manipulation;
  overflow-x: hidden;
}
button, a { font-family: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
a { color: inherit; }

.app {
  width: 100%;
  max-width: 480px;
  min-width: 0;
  height: 100dvh;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--bg);
  background-image: url("../assets/hearts.svg");
  background-repeat: repeat;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}
main {
  flex: 1;
  min-height: 0;
  min-width: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}
main::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: #fff;
  color: #111;
  padding: 8px 12px;
  z-index: 20;
}
.skip:focus { top: 8px; }

.header {
  position: relative;
  z-index: 30;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: var(--header-h);
  padding: calc(8px + env(safe-area-inset-top)) 8px 8px;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  min-height: 44px;
  min-width: 0;
  flex: 1 1 auto;
}
.logo-mark {
  width: 28px;
  height: 28px;
  display: block;
  flex: none;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 191, 255, 0.28));
}
.wordmark { font-weight: 800; font-size: 1rem; letter-spacing: -0.03em; line-height: 1; white-space: nowrap; }
.word-ai {
  background: linear-gradient(180deg, #8ad9f1, #2fb0d8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 12px rgba(47, 176, 216, 0.25);
}
.word-peeps {
  margin-inline-start: 4px;
  background: linear-gradient(180deg, #f6d488, #f2ad46);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: none;
}
.lang-btn {
  min-height: 40px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: "Cairo", "Exo 2", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}
.lang-btn:active { transform: scale(0.97); }
.signin {
  min-height: 40px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(242, 173, 70, 0.45);
  background: rgba(242, 173, 70, 0.12);
  color: var(--gold-2);
  font-weight: 700;
  font-size: 0.7rem;
  white-space: nowrap;
}
html[lang="ar"] {
  --font: "Cairo", "Segoe UI", "Tahoma", sans-serif;
}
html[lang="ar"] .section-title,
html[lang="ar"] .reviews-head h2,
html[lang="ar"] .kicker {
  letter-spacing: 0;
  text-transform: none;
}
html[dir="rtl"] .scroller { direction: ltr; }
html[dir="rtl"] .peep-info { direction: rtl; text-align: right; }
html[dir="rtl"] .toggle { direction: ltr; }
.signin:active { transform: scale(0.97); }

.view { display: none; }
.view.active { display: block; }

.hero {
  position: relative;
  padding: 0 16px 8px;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  pointer-events: none;
}
.orb-1 { width: 180px; height: 180px; background: rgba(0, 191, 255, 0.22); right: -40px; top: 20px; }
.orb-2 { width: 160px; height: 160px; background: rgba(255, 92, 138, 0.16); left: -50px; top: 220px; }

.hero-copy { text-align: center; }
.kicker {
  margin: 0 0 8px;
  color: var(--mint);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.title { margin: 0; line-height: 0.95; }
.title-small {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
}
.title-big {
  display: block;
  margin-top: 2px;
  font-size: clamp(2.7rem, 13vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #7fd7f6 0%, #f3c27a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tagline { margin: 12px 0 0; font-size: 1.02rem; color: #f4f4f6; }
.tagline em {
  font-style: normal;
  color: #f0a84a;
}
.modes {
  margin: 8px 0 0;
  color: #9a9aa6;
  font-size: 0.92rem;
}

.pills {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.pill {
  --pill: #3ec8ff;
  width: min(100%, 21rem);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 48px;
  padding-block: 6px;
  padding-inline: 6px 16px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-align: start;
  color: #f7fbff;
  font-weight: 700;
  background: rgba(8, 10, 14, 0.82);
  border: 1px solid color-mix(in srgb, var(--pill) 70%, transparent);
  box-shadow: 0 0 16px -4px var(--pill), inset 0 0 18px -12px var(--pill);
  transition: transform 0.2s var(--ease), border-color 0.2s ease;
}
.pill:active { transform: scale(0.98); }
.pill-image { --pill: var(--gold); }
.pill-create { --pill: var(--pink); }
.pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--pill);
  color: #061018;
  flex: none;
}
.pill-icon svg { width: 18px; height: 18px; }

.toggle-row {
  display: flex;
  justify-content: flex-end;
  margin: 16px 0 10px;
}
.toggle {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-width: 148px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
}
.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  border-radius: 999px;
  background: linear-gradient(135deg, #2bd4c4, #1aa89a);
  transition: transform 0.28s var(--ease), background 0.28s ease;
}
.toggle.nsfw .toggle-thumb {
  transform: translateX(100%);
  background: linear-gradient(135deg, #ff3da6, #d10089);
}
.toggle button {
  position: relative;
  z-index: 1;
  min-height: 36px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 800;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.toggle button[aria-pressed="true"] { color: #fff; }
.toggle .emoji { font-size: 0.95rem; line-height: 1; }

.stage {
  position: relative;
  margin: 0 0 18px;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.stage-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
  background: #000;
  transition: opacity 0.35s ease;
}
.stage-video.is-active {
  opacity: 1;
  z-index: 1;
}
.stage-video.is-pop {
  animation: stagePop 0.48s cubic-bezier(0.16, 0.84, 0.32, 1.2) both;
}
@keyframes stagePop {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
.stage-bar {
  display: flex;
  justify-content: flex-end;
  margin: 8px 0 8px;
}
.stage-toggle {
  position: relative;
  min-width: 168px;
  background: rgba(0, 0, 0, 0.55);
}

.tiles { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.tile {
  --tile: var(--cyan);
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 12px 14px;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(115deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03) 55%);
  border: 1px solid var(--line);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}
.tile::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--tile);
  box-shadow: 0 0 14px var(--tile);
}
.tile-2 { --tile: var(--pink); }
.tile-3 { --tile: var(--gold); }
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tile);
  box-shadow: 0 0 10px var(--tile);
  flex: none;
}
.tile b { display: block; font-size: 0.92rem; }
.tile em { display: block; margin-top: 2px; font-style: normal; color: var(--muted); font-size: 0.78rem; }
.tile svg { margin-left: auto; opacity: 0.55; flex: none; }

.section { padding: 22px 16px 4px; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.section-title {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ff7ad9;
  font-weight: 800;
}

.scroller {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 16% 16px;
  scroll-padding-inline: 16%;
  scrollbar-width: none;
}
.scroller::-webkit-scrollbar { display: none; }

.carousel {
  position: relative;
}
.carousel-arrow {
  position: absolute;
  top: 42%;
  z-index: 3;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #f5c542;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.65));
}
.carousel-arrow svg { width: 28px; height: 28px; }
.carousel-arrow.prev { left: 7%; }
.carousel-arrow.next { right: 7%; }
.carousel-arrow:disabled { opacity: 0.28; }

.peep {
  position: relative;
  flex: 0 0 68%;
  scroll-snap-align: center;
  aspect-ratio: 3 / 4.15;
  border-radius: 18px;
  overflow: hidden;
  border: 0;
  background: #1a1a1a;
  padding: 0;
  text-align: start;
  color: inherit;
  transform: scale(0.84);
  transform-origin: center center;
  transition: transform 0.28s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
.peep.is-current {
  transform: scale(1);
  z-index: 2;
}
.peep img,
.peep video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.peep-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.88));
}
.peep-info {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
}
.name-row { display: flex; align-items: baseline; gap: 6px; }
.name-row strong { font-size: 1.05rem; }
.name-row span { color: #fff; font-size: 0.95rem; font-weight: 700; }
.story {
  display: block;
  margin-top: 4px;
  color: #67f0ea;
  font-size: 0.92rem;
  font-weight: 700;
}
.meta { margin: 4px 0 0; color: #f2f2f4; font-size: 0.78rem; }
.handle { color: #39f27a; font-weight: 700; }
.peep.is-hidden { display: none; }

.blurb {
  padding: 28px 20px 8px;
  text-align: center;
}
.blurb-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d7d7de;
  font-size: 0.82rem;
  font-weight: 600;
}
.blurb-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff4fd8;
  box-shadow: 0 0 8px #ff4fd8;
  flex: none;
}
.blurb h2 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.blurb-line {
  width: min(100%, 220px);
  height: 2px;
  margin: 14px auto 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f2ad46 0%, #7fd7f6 100%);
}
.blurb h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: #f0b44a;
  line-height: 1.45;
}
.blurb-copy {
  margin: 14px 0 0;
  color: #c8c8d0;
  line-height: 1.55;
  font-size: 0.98rem;
}
.blurb-copy span {
  color: #67f0ea;
  font-weight: 700;
}
.blurb-copy .blurb-plain {
  color: inherit;
  font-weight: inherit;
}

.audience {
  margin: 14px 16px;
  padding: 22px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}
.aud-emoji {
  font-size: 2rem;
  line-height: 1;
}
.audience h3 { margin: 10px 0 8px; font-size: 1.15rem; }
.audience p { margin: 0 auto; max-width: 34ch; color: #f2f2f4; line-height: 1.5; font-size: 0.95rem; }
.aud-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}
.aud-btn {
  width: min(100%, 14.5rem);
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}
.aud-btn svg { width: 15px; height: 15px; flex: none; }
.aud-btn.green { background: linear-gradient(90deg, #8dff72, #1c8a38); color: #111; }
.aud-btn.rose { background: linear-gradient(90deg, #ff86b0, #e21d48); }
.aud-btn.blue { background: linear-gradient(90deg, #4eb6ff, #7a45ff); }
.aud-btn.magenta { background: linear-gradient(90deg, #ff6ad4, #9a45ff); }
.aud-btn:active { transform: scale(0.97); }
.cta-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.cta {
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(180deg, #3ec8ff, #1290d0);
}
.cta.gold { background: linear-gradient(180deg, #f6d488, #d9922a); color: #1a1204; }
.cta.pink { background: linear-gradient(180deg, #ff7aa3, #e23b78); }
.cta.ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: #fff;
}
.cta:active { transform: scale(0.97); }

.wiki {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 16px 4px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  text-decoration: none;
  min-height: 72px;
}
.wiki-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(242, 173, 70, 0.16);
  color: var(--gold-2);
  flex: none;
}
.wiki strong { display: block; }
.wiki span { display: block; margin-top: 2px; color: var(--muted); font-size: 0.82rem; }
.wiki svg:last-child { margin-left: auto; opacity: 0.6; flex: none; }

.reviews-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 22px 16px 10px;
}
.reviews-head h2 {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ff7ad9;
}
.reviews-head button {
  color: var(--cyan-2);
  font-size: 0.82rem;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.marquee { overflow: hidden; padding-bottom: 8px; }
.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: drift 32s linear infinite;
}
.review {
  width: 250px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
}
.stars { display: flex; gap: 3px; color: #00b67a; }
.review h3 { margin: 8px 0 6px; font-size: 0.95rem; }
.review p { margin: 0; color: #dedee6; font-size: 0.84rem; line-height: 1.45; }
.review footer { margin-top: 10px; color: var(--dim); font-size: 0.78rem; }

.hub {
  display: block;
  width: calc(100% - 32px);
  margin: 16px;
  padding: 18px 16px;
  border-radius: 18px;
  text-decoration: none;
  text-align: center;
  color: inherit;
  font: inherit;
  cursor: pointer;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(255,157,11,0.18), transparent 55%),
    radial-gradient(120% 80% at 100% 100%, rgba(139,92,246,0.2), transparent 50%),
    #16161a;
  border: 1px solid var(--line);
}
.hub strong { display: block; font-size: 1.2rem; }
.hub span { display: block; margin-top: 4px; color: var(--muted); font-size: 0.85rem; }

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 6px 16px 8px;
}
.feature {
  padding: 14px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  min-height: 132px;
}
.feature svg { color: var(--cyan); }
.feature h3 { margin: 8px 0 4px; font-size: 0.92rem; }
.feature p { margin: 0; color: var(--muted); font-size: 0.78rem; line-height: 1.4; }

.topics { padding: 18px 0 8px; }
.topics h2 { margin: 0 16px 10px; font-size: 1.15rem; }
.topics p { margin: 0 16px 12px; color: var(--muted); font-size: 0.88rem; line-height: 1.45; }
.chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 16px 12px;
  scrollbar-width: none;
}
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: none;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(20,20,20,0.5);
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
}
.chip:active { background: rgba(40,40,40,0.8); }

.footer {
  margin-top: 12px;
  padding: 28px 16px 28px;
  background: #080808;
  border-top: 1px solid #1a1a1a;
  color: #a3a3a3;
}
.footer-brand p { margin: 8px 0 0; font-size: 0.85rem; line-height: 1.45; max-width: 36ch; }
.cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 12px; margin-top: 22px; }
.cols h3 { margin: 0 0 8px; color: #fff; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; }
.cols a, .cols button {
  display: block;
  padding: 6px 0;
  color: #9a9aa3;
  text-decoration: none;
  background: none;
  border: 0;
  text-align: start;
  font-size: 0.82rem;
  min-height: 32px;
}
.legal {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #1a1a1a;
  font-size: 0.75rem;
  color: #777;
  line-height: 1.5;
}

.tabbar {
  position: relative;
  flex: none;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: calc(var(--tab-h) + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.tab {
  border: 0;
  background: transparent;
  color: #bdbdc7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 48px;
  font-size: 0.68rem;
  font-weight: 700;
}
.tab svg { width: 22px; height: 22px; }
.tab[aria-current="page"] { color: var(--cyan); }

.panel { padding: 16px 16px calc(24px + env(safe-area-inset-bottom)); }
.panel h1 { margin: 6px 0 8px; font-size: 1.6rem; }
.panel .lead { margin: 0 0 16px; color: var(--muted); line-height: 1.5; }
.list { display: flex; flex-direction: column; gap: 10px; }
.person, .collection, .feed-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: inherit;
  text-align: start;
  width: 100%;
}
.person img, .person video, .feed-card img {
  width: 56px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  flex: none;
  background: #222;
}
.person strong, .collection strong, .feed-card strong { display: block; }
.person span, .collection span, .feed-card span { color: var(--muted); font-size: 0.8rem; }
.swatch {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  flex: none;
}

.view[data-view="chat"].active {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.chat {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
}
.thread {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}
.bubble {
  max-width: 80%;
  padding: 10px 12px;
  border-radius: 16px;
  line-height: 1.45;
  font-size: 0.92rem;
}
.bubble.them { background: #1e1f22; border-bottom-left-radius: 4px; }
.bubble.me { align-self: flex-end; background: #14556e; border-bottom-right-radius: 4px; }
.composer {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  background: rgba(18,18,18,0.9);
}
.composer input {
  flex: 1;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #111;
  color: #fff;
  padding: 0 14px;
  font: inherit;
}
.composer button {
  min-width: 72px;
  border: 0;
  border-radius: 999px;
  background: var(--cyan-2);
  color: #041018;
  font-weight: 800;
}

.form { display: flex; flex-direction: column; gap: 10px; }
.form label { font-size: 0.82rem; color: var(--muted); }
.form input, .form select {
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #151515;
  color: #fff;
  padding: 0 12px;
  font: inherit;
}
.style-picks { display: flex; flex-wrap: wrap; gap: 8px; }
.style-picks button {
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
}
.style-picks button[aria-pressed="true"] {
  border-color: var(--gold);
  color: var(--gold-2);
  background: rgba(242, 173, 70, 0.12);
}

.sheet, .modal {
  position: absolute;
  inset: 0;
  z-index: 50;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: flex-end;
}
.modal { align-items: center; justify-content: center; padding: 20px; }
.sheet[hidden], .modal[hidden], .toast[hidden] { display: none; }
.sheet-card, .modal-card {
  width: 100%;
  background: #1b1c1e;
  border-radius: 22px 22px 0 0;
  padding: 12px 16px calc(16px + env(safe-area-inset-bottom));
  border: 1px solid var(--line);
}
.modal-card { border-radius: 18px; max-width: 360px; }
.handle {
  width: 42px;
  height: 4px;
  border-radius: 99px;
  background: #555;
  margin: 4px auto 12px;
}
.sheet-top { display: flex; gap: 12px; }
.sheet-top img { width: 84px; height: 112px; object-fit: cover; border-radius: 12px; background: #222; }
.sheet h2 { margin: 0; font-size: 1.25rem; }
.sheet p { color: var(--muted); line-height: 1.45; }
.toast {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 60;
  padding: 12px 14px;
  border-radius: 12px;
  background: #111;
  border: 1px solid var(--line);
  color: #fff;
  font-size: 0.88rem;
}

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .toggle-thumb, .pill, .cta, .signin, .stage-video, .peep { transition: none; }
  .stage-video.is-pop { animation: none; }
}
:focus-visible {
  outline: 2px solid rgba(0, 191, 255, 0.85);
  outline-offset: 2px;
}
