:root {
  --bg: #06060f;
  --bg-2: #0c0c18;
  --card: rgba(14, 14, 28, 0.72);
  --card-solid: #10101f;
  --border: rgba(139, 92, 246, 0.18);
  --border-soft: rgba(255, 255, 255, 0.08);
  --text: #f1f0ff;
  --muted: #9490b8;
  --primary: #8b5cf6;
  --primary-2: #6366f1;
  --accent: #22d3ee;
  --accent-2: #a855f7;
  --grad: linear-gradient(135deg, #6366f1 0%, #22d3ee 100%);
  --grad-btn: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  --grad-soft: linear-gradient(135deg, rgba(99,102,241,.18), rgba(34,211,238,.12));
  --green: #34d399;
  --live: #f472b6;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --glow: 0 0 40px rgba(99, 102, 241, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
}

body { overflow-x: hidden; position: relative; -webkit-text-size-adjust: 100%; }

button, .cta, .tab, .post, .msg-btn, .see-more, .trial-card, .live-card {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Ambient background */
.ambient { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.ambient__orb {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.45;
}
.ambient__orb--1 {
  width: 320px; height: 320px; top: -80px; left: -60px;
  background: radial-gradient(circle, #6366f1, transparent 70%);
}
.ambient__orb--2 {
  width: 380px; height: 380px; bottom: -100px; right: -80px;
  background: radial-gradient(circle, #22d3ee, transparent 70%);
}
.ambient__grain {
  position: absolute; inset: 0; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Loader */
.loader {
  position: fixed; inset: 0; z-index: 200;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--bg); gap: 16px;
}
.loader__logo { width: 56px; height: 56px; animation: pulse-logo 1.5s ease-in-out infinite; }
.loader__logo svg { width: 100%; height: 100%; }
.loader__txt { color: var(--muted); font-size: 13px; font-weight: 500; letter-spacing: 0.04em; }
@keyframes pulse-logo { 0%,100%{opacity:.55;transform:scale(.94)} 50%{opacity:1;transform:scale(1)} }

.page {
  position: relative; z-index: 1;
  min-height: 100vh; padding: 20px 14px 110px;
  display: flex; justify-content: center;
}

/* Shell card */
 .shell {
  width: 100%; max-width: 460px;
  background: var(--card);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), var(--glow);
}

.brand-bar {
  display: flex; justify-content: center; padding: 14px 16px 0;
}
.brand-bar__logo {
  font-family: "Sora", sans-serif;
  font-size: 15px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid var(--border);
  color: #fff;
}
.brand-bar__logo span {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* Banner */
.banner { position: relative; height: 168px; overflow: hidden; }
.banner__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.banner__fade { position: absolute; left: 0; right: 0; pointer-events: none; }
.banner__fade--top { top: 0; height: 80px; background: linear-gradient(180deg, rgba(6,6,15,.6), transparent); }
.banner__fade--bottom { bottom: 0; height: 72px; background: linear-gradient(180deg, transparent, rgba(14,14,28,.95)); }

/* Identity */
.identity { padding: 0 18px 14px; margin-top: -44px; position: relative; z-index: 10; }
.id-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.avatar-wrap { position: relative; width: 92px; height: 92px; flex-shrink: 0; }
.avatar-wrap::before {
  content: ""; position: absolute; inset: -2px; border-radius: 22px;
  background: var(--grad); z-index: -1;
}
.avatar {
  width: 92px; height: 92px; border-radius: 20px; object-fit: cover;
  border: 3px solid var(--bg-2); display: block; background: var(--bg-2);
}
.avatar__live {
  position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  background: var(--live); color: #fff; font-size: 9px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 9px; border-radius: 8px;
  border: 2px solid var(--bg-2); box-shadow: 0 4px 12px rgba(244,114,182,.35);
}
.msg-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--card-solid); color: var(--text);
  border: 1px solid var(--border); cursor: pointer;
  font-family: inherit; font-weight: 600; font-size: 13px;
  padding: 10px 16px; border-radius: 12px;
  transition: border-color .2s, background .2s, transform .15s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.msg-btn:hover { border-color: var(--primary); background: rgba(99,102,241,.12); transform: translateY(-1px); }
.msg-btn svg { width: 16px; height: 16px; color: var(--accent); }

.name {
  margin-top: 14px; font-family: "Sora", sans-serif;
  font-size: 22px; font-weight: 700; letter-spacing: -0.02em;
  display: inline-flex; align-items: center; gap: 8px;
}
.verified { width: 20px; height: 20px; flex-shrink: 0; }
.username { color: var(--muted); font-size: 13px; margin-top: 3px; font-weight: 500; }

.stats {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0;
}
.stats li {
  display: inline-flex; align-items: center; gap: 6px; font-size: 13px;
  padding: 8px 12px; border-radius: 12px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border-soft);
}
.stats svg { width: 15px; height: 15px; color: var(--accent); }
.stats strong { font-weight: 700; color: #fff; }
.stats span:last-child { color: var(--muted); font-size: 12px; }

.bio {
  color: #d8d4f0; font-size: 14px; line-height: 1.6; margin: 6px 0 0;
  white-space: pre-line; padding: 12px 14px; border-radius: 14px;
  background: rgba(255,255,255,.03); border: 1px solid var(--border-soft);
}

/* Tabs — pill style */
.tabs {
  display: flex; gap: 6px; margin-top: 18px; padding: 5px;
  background: rgba(0,0,0,.25); border-radius: 14px; border: 1px solid var(--border-soft);
}
.tab {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: none; border: none; cursor: pointer; font-family: inherit;
  color: var(--muted); font-size: 13px; font-weight: 600; padding: 10px 8px;
  border-radius: 10px; transition: color .2s, background .2s;
}
.tab svg { width: 15px; height: 15px; }
.tab.is-active {
  color: #fff; background: rgba(99,102,241,.25);
  box-shadow: inset 0 0 0 1px rgba(139,92,246,.35);
}
.tab.is-active::after { display: none; }

/* Feed & grid */
.feed { padding: 16px 18px 20px; }
.grid { display: grid; gap: 10px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.post {
  position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer;
  background: var(--bg-2); border-radius: 16px;
  border: 1px solid var(--border-soft);
}
.post img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.post:hover img { transform: scale(1.04); }
.post--locked img { filter: blur(18px) saturate(0.7); transform: scale(1.08); }
.post__overlay {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(6,6,15,.1), rgba(6,6,15,.45));
}
.post__lock {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(99,102,241,.85); backdrop-filter: blur(8px);
  display: grid; place-items: center; border: 1px solid rgba(255,255,255,.15);
}
.post__lock svg { width: 18px; height: 18px; }
.post__unlock {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 8px;
  background: var(--grad-btn); color: #fff; white-space: nowrap;
}

.see-more {
  display: flex; align-items: center; gap: 14px; margin: 22px 0; cursor: pointer;
}
.see-more__line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }
.see-more__txt {
  color: var(--accent); font-size: 13px; font-weight: 600; white-space: nowrap;
  letter-spacing: 0.02em;
}

/* Trial card */
.trial-card {
  padding: 22px 18px; border-radius: 20px; text-align: center; cursor: pointer;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.trial-card::before {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(34,211,238,.12); pointer-events: none;
}
.trial-card__badge {
  display: inline-block; padding: 5px 12px; border-radius: 8px;
  background: rgba(99,102,241,.2); border: 1px solid rgba(99,102,241,.35);
  color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: 0.08em;
}
.trial-card__price { display: flex; align-items: flex-start; justify-content: center; gap: 2px; margin: 14px 0 4px; }
.trial-card__currency { color: var(--accent); font-size: 16px; margin-top: 10px; font-weight: 700; }
.trial-card__amount { font-family: "Sora", sans-serif; font-size: 44px; font-weight: 800; line-height: 1; }
.trial-card__sub { color: var(--muted); font-size: 13px; }
.trial-card__sub span { color: var(--primary); }
.trial-card__old { color: var(--muted); font-size: 12px; text-decoration: line-through; opacity: .65; margin: 4px 0 14px; }
.trial-card__perks { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 9px; margin-bottom: 18px; }
.trial-card__perks li {
  display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #ddd8f5;
}
.trial-card__perks li::before {
  content: ""; width: 18px; height: 18px; border-radius: 6px; flex-shrink: 0; margin-top: 1px;
  background: rgba(34,211,238,.15); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322d3ee' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
}

/* Live panel */
.live-card {
  text-align: center; cursor: pointer;
  background: rgba(99,102,241,.08); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px 20px;
}
.live-card__badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(0,0,0,.35); border: 1px solid var(--border-soft);
  padding: 5px 12px; border-radius: 8px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em;
}
.live-card__badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--live);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(244,114,182,.55); }
  70% { box-shadow: 0 0 0 8px rgba(244,114,182,0); }
  100% { box-shadow: 0 0 0 0 rgba(244,114,182,0); }
}
.live-card__lock {
  width: 52px; height: 52px; border-radius: 14px; margin: 16px auto 12px;
  background: rgba(0,0,0,.35); display: grid; place-items: center; border: 1px solid var(--border-soft);
}
.live-card__lock svg { width: 24px; height: 24px; }
.live-card h3 { font-family: "Sora", sans-serif; font-size: 16px; margin-bottom: 6px; }
.live-card p { color: var(--muted); font-size: 13px; margin-bottom: 14px; line-height: 1.5; }

/* CTAs */
.cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; cursor: pointer; font-family: inherit;
  font-weight: 700; font-size: 14px; color: #fff;
  padding: 14px 20px; border-radius: 12px;
  transition: transform .15s, filter .15s, box-shadow .2s;
}
.cta--primary {
  background: var(--grad-btn);
  box-shadow: 0 8px 24px rgba(99,102,241,.35);
}
.cta--primary:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 12px 32px rgba(99,102,241,.45); }
.cta--block { width: 100%; }
.cta--pill { width: 100%; border-radius: 14px; font-size: 15px; padding: 16px 22px; font-family: "Sora", sans-serif; letter-spacing: 0.02em; }
.cta--sm { padding: 8px 14px; font-size: 12px; border-radius: 10px; }

/* Footer */
.foot { padding: 28px 18px 20px; text-align: center; border-top: 1px solid var(--border-soft); }
.foot__trust { font-size: 11px; color: var(--muted); margin-bottom: 10px; }
.foot__links { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; margin: 4px 0; }
.foot__links a, .foot__links button {
  background: none; border: none; cursor: pointer; font-family: inherit;
  color: var(--muted); font-size: 10px; text-decoration: none;
}
.foot__links a:hover, .foot__links button:hover { color: var(--accent); }
.foot__links span { color: rgba(148,144,184,.5); font-size: 10px; }
.foot__copy { font-size: 10px; color: var(--muted); margin-top: 10px; opacity: .65; }

/* Sticky CTA */
.sticky-cta {
  position: fixed; left: 14px; right: 14px; bottom: 18px; z-index: 40;
  max-width: 460px; margin: 0 auto;
  padding: 10px; border-radius: 16px;
  background: rgba(6,6,15,.75); backdrop-filter: blur(12px);
  border: 1px solid var(--border);
}

/* Modals */
.modal { position: fixed; inset: 0; z-index: 60; display: none; }
.modal.is-open { display: block; }
.modal.modal--center.is-open { display: flex; align-items: center; justify-content: center; padding: 16px; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(4,4,12,.75); backdrop-filter: blur(8px); }
.modal--center { display: none; }

.modal__card {
  position: relative; width: 100%; max-width: 400px;
  background: var(--card-solid); border: 1px solid var(--border);
  border-radius: 24px; padding: 26px 20px; text-align: center;
  box-shadow: var(--shadow), var(--glow);
  animation: scale-in .35s cubic-bezier(.2,.8,.2,1);
}
.modal__card--promo { overflow: hidden; }
@keyframes scale-in { from { opacity:0; transform:scale(.96) translateY(12px); } to { opacity:1; transform:none; } }

.modal--sheet .modal__sheet {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 100%; max-width: 480px;
  background: linear-gradient(180deg, #141428, #080810);
  border: 1px solid var(--border); border-bottom: none;
  border-radius: 24px 24px 0 0; padding: 10px 22px calc(22px + env(safe-area-inset-bottom));
  text-align: center; box-shadow: 0 -24px 60px rgba(0,0,0,.55);
  animation: rise .35s cubic-bezier(.2,.8,.2,1);
  max-height: calc(100vh - 3rem); overflow-y: auto;
}
.modal__sheet--scroll { text-align: left; }
.modal__sheet--register { padding-bottom: calc(28px + env(safe-area-inset-bottom)); }
@keyframes rise { from { transform: translate(-50%, 100%); } to { transform: translate(-50%, 0); } }

.modal__handle {
  display: block; width: 40px; height: 4px; border: none; border-radius: 999px;
  background: rgba(139,92,246,.4); cursor: pointer; margin: 6px auto 14px;
}
.modal__x {
  position: absolute; top: 12px; right: 12px; width: 32px; height: 32px;
  border-radius: 10px; border: 1px solid var(--border-soft);
  background: rgba(255,255,255,.05); color: var(--muted);
  font-size: 18px; cursor: pointer; line-height: 1; z-index: 2;
}
.modal__x:hover { color: #fff; border-color: var(--primary); }
.modal__title { font-family: "Sora", sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.modal__title span, .modal__title--brand span {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.offer-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(99,102,241,.2); color: var(--accent);
  border: 1px solid rgba(99,102,241,.35);
  font-size: 11px; font-weight: 800; letter-spacing: 0.06em;
  padding: 6px 12px; border-radius: 8px; margin-bottom: 12px;
}
.offer-pill svg { width: 14px; height: 14px; }
.offer-pill--pulse { animation: pulse-badge 2.5s ease-in-out infinite; }
@keyframes pulse-badge { 0%,100%{opacity:1} 50%{opacity:.8} }

.trial-pill {
  display: inline-block; background: rgba(34,211,238,.1); color: var(--accent);
  border: 1px solid rgba(34,211,238,.25);
  font-size: 11px; font-weight: 800; letter-spacing: 0.05em;
  padding: 5px 12px; border-radius: 8px; margin-bottom: 8px;
}
.price { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin: 12px 0; }
.price__old { color: var(--muted); font-size: 17px; text-decoration: line-through; opacity: .65; }
.price__new {
  font-family: "Sora", sans-serif; font-weight: 800; font-size: 36px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.perks { list-style: none; text-align: left; max-width: 320px; margin: 14px auto 18px; display: flex; flex-direction: column; gap: 9px; }
.perks li { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; color: #ddd8f5; }
.perks__dot { width: 7px; height: 7px; border-radius: 3px; background: var(--accent); flex-shrink: 0; }
.perks--compact { margin-top: 6px; }

.reassure { display: flex; gap: 8px; justify-content: center; margin: 12px 0; flex-wrap: wrap; }
.reassure__item {
  font-size: 11px; color: var(--muted);
  background: rgba(255,255,255,.04); border: 1px solid var(--border-soft);
  padding: 6px 11px; border-radius: 8px;
}
.modal__faq { font-size: 12px; color: var(--muted); line-height: 1.5; padding-bottom: 6px; }
.modal__faq strong { color: var(--green); }

/* Register modal */
.feature-boxes { display: flex; justify-content: center; gap: 8px; margin: 18px 0; flex-wrap: wrap; }
.feature-box {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 100px; height: 76px; padding: 10px; border-radius: 14px;
  border: 1px solid var(--border-soft); background: rgba(255,255,255,.03);
}
.feature-box svg { width: 22px; height: 22px; color: var(--accent); margin-bottom: 6px; }
.feature-box span { font-size: 10px; color: #c4bfd8; font-weight: 500; text-align: center; line-height: 1.3; }

.register-cta { margin: 14px 0; }
.register-cta__login { margin-top: 10px; font-size: 12px; color: var(--muted); }
.register-cta__login button { background: none; border: none; color: var(--accent); cursor: pointer; font-weight: 600; font-family: inherit; }

.accordion { text-align: left; margin-top: 10px; border-radius: 12px; border: 1px solid var(--border-soft); overflow: hidden; }
.accordion__head {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 13px 14px; background: rgba(255,255,255,.03); border: none; cursor: pointer;
  color: var(--text); font-family: inherit; font-size: 13px; font-weight: 600;
}
.accordion__head svg { width: 18px; height: 18px; color: var(--muted); transition: transform .2s; }
.accordion.is-open .accordion__head svg { transform: rotate(180deg); }
.accordion__body { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.accordion.is-open .accordion__body { max-height: 120px; }
.accordion__body p { padding: 12px 14px; font-size: 13px; color: var(--muted); background: rgba(0,0,0,.2); line-height: 1.5; }

/* CGU */
.cgu-head {
  width: 44px; height: 44px; border-radius: 12px; margin: 0 auto 10px;
  background: var(--grad-soft); border: 1px solid var(--border);
  display: grid; place-items: center; font-size: 20px;
}
.cgu-body { display: flex; flex-direction: column; gap: 10px; padding-bottom: 14px; }
.cgu-section {
  background: rgba(255,255,255,.03); border: 1px solid var(--border-soft);
  border-radius: 12px; padding: 14px;
}
.cgu-section h4 { font-family: "Sora", sans-serif; font-size: 13px; font-weight: 600; color: var(--accent); margin-bottom: 8px; }
.cgu-section p, .cgu-section li { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.55; }
.cgu-section p.muted { color: rgba(255,255,255,.38); margin-bottom: 6px; }
.cgu-section p.italic { font-style: italic; color: rgba(255,255,255,.38); margin-top: 6px; }
.cgu-section ul { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.cgu-section li { display: flex; gap: 8px; }
.cgu-section li::before { content: "›"; color: var(--primary); flex-shrink: 0; font-weight: 700; }

.legal-body p { font-size: 13px; color: var(--muted); line-height: 1.6; padding-bottom: 14px; }

/* Toast */
.toast {
  position: fixed; left: 50%; top: 16px; transform: translate(-50%, -140%);
  z-index: 80; width: calc(100% - 28px); max-width: 360px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(14,14,28,.92); backdrop-filter: blur(14px);
  border: 1px solid var(--border); border-radius: 14px;
  padding: 10px 14px; box-shadow: var(--shadow);
  opacity: 0; pointer-events: none; cursor: pointer;
  transition: transform .45s cubic-bezier(.2,.9,.2,1), opacity .35s ease;
}
.toast.is-show { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.toast__img { width: 38px; height: 38px; border-radius: 10px; object-fit: cover; border: 2px solid var(--primary); flex-shrink: 0; }
.toast__body { text-align: left; line-height: 1.3; }
.toast__name { font-size: 13px; font-weight: 700; }
.toast__txt { font-size: 12px; color: var(--muted); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 70; display: none; }
.lightbox.is-open { display: block; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(4,4,12,.88); backdrop-filter: blur(6px); }
.lightbox__panel {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: calc(100% - 32px); max-width: 380px;
  background: var(--card-solid); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow);
}
.lightbox__head { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-bottom: 1px solid var(--border-soft); }
.lightbox__avatar { width: 38px; height: 38px; border-radius: 10px; object-fit: cover; }
.lightbox__name { font-family: "Sora", sans-serif; font-size: 14px; font-weight: 600; }
.lightbox__user { font-size: 12px; color: var(--muted); }
.lightbox__close {
  margin-left: auto; width: 30px; height: 30px; border-radius: 8px;
  border: 1px solid var(--border-soft); background: rgba(255,255,255,.05);
  color: var(--text); cursor: pointer; font-size: 16px;
}
.lightbox__media { position: relative; aspect-ratio: 3/4; background: #000; }
.lightbox__media img { width: 100%; height: 100%; object-fit: cover; }
.lightbox__media .post__overlay { background: rgba(0,0,0,.35); cursor: pointer; }
.lightbox__like {
  position: absolute; bottom: 12px; left: 12px; display: flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer; color: #fff; font-size: 13px; font-weight: 600;
}
.lightbox__like svg { width: 22px; height: 22px; }
.lightbox__like.is-liked svg { fill: var(--live); stroke: var(--live); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 10px; border: 1px solid rgba(255,255,255,.15);
  background: rgba(0,0,0,.5); color: #fff; font-size: 22px; cursor: pointer;
  display: grid; place-items: center;
}
.lightbox__nav--prev { left: 8px; }
.lightbox__nav--next { right: 8px; }

/* Cookie bar */
.cookie-bar {
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 100;
  max-width: 460px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 14px; border-radius: 14px;
  background: rgba(14,14,28,.95); backdrop-filter: blur(12px);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  pointer-events: auto;
}
.cookie-bar[hidden],
.cookie-bar.is-dismissed { display: none !important; }
.cookie-bar p { font-size: 12px; color: var(--muted); flex: 1; line-height: 1.4; }

/* ===== MOBILE / TABLETTE ===== */

/* Téléphones */
@media (max-width: 480px) {
  .page {
    padding: 0 0 calc(88px + env(safe-area-inset-bottom, 0px));
    min-height: 100dvh;
  }

  .shell {
    max-width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    min-height: 100dvh;
  }

  .brand-bar { padding: calc(10px + env(safe-area-inset-top, 0px)) 14px 0; }
  .brand-bar__logo { font-size: 13px; padding: 7px 14px; }

  .banner { height: 132px; }
  .banner__fade--top { height: 64px; }

  .identity { padding: 0 14px 12px; margin-top: -38px; }
  .id-top { gap: 10px; align-items: flex-end; }

  .avatar-wrap, .avatar { width: 80px; height: 80px; }
  .avatar-wrap::before { border-radius: 18px; }
  .avatar { border-radius: 16px; border-width: 2px; }
  .avatar__live { font-size: 8px; padding: 2px 8px; bottom: -6px; }

  .msg-btn {
    font-size: 12px; padding: 10px 14px;
    min-height: 44px; border-radius: 10px;
  }

  .name { font-size: 20px; margin-top: 12px; gap: 6px; }
  .verified { width: 18px; height: 18px; }
  .username { font-size: 12px; }

  .stats { gap: 6px; margin: 12px 0; }
  .stats li {
    flex: 1 1 calc(50% - 3px);
    min-width: 0; padding: 7px 10px; font-size: 12px;
    justify-content: center;
  }
  .stats li:last-child { flex: 1 1 100%; }

  .bio { font-size: 13px; padding: 10px 12px; line-height: 1.55; }

  .tabs { margin-top: 14px; padding: 4px; }
  .tab { font-size: 12px; padding: 11px 6px; min-height: 44px; }
  .tab svg { width: 14px; height: 14px; }

  .feed { padding: 12px 12px 16px; }
  .grid--2 { gap: 8px; }
  .post { border-radius: 12px; }
  .post__lock { width: 36px; height: 36px; border-radius: 10px; }
  .post__lock svg { width: 16px; height: 16px; }
  .post__unlock { font-size: 9px; padding: 5px 10px; bottom: 8px; }

  .see-more { margin: 18px 0; gap: 10px; }

  .trial-card { padding: 18px 14px; border-radius: 16px; margin: 0; }
  .trial-card__amount { font-size: 38px; }
  .trial-card__perks li { font-size: 12px; }

  .live-card { padding: 24px 16px; border-radius: 16px; }

  .cta { min-height: 48px; font-size: 14px; }
  .cta--pill { font-size: 14px; padding: 14px 18px; border-radius: 12px; }

  .foot { padding: 22px 12px 16px; }
  .foot__trust { font-size: 10px; line-height: 1.5; }

  /* Sticky CTA — collé en bas, safe area iPhone */
  .sticky-cta {
    left: 0; right: 0; bottom: 0;
    max-width: none; margin: 0;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    border-radius: 0;
    border-left: none; border-right: none; border-bottom: none;
  }

  /* Cookie au-dessus du CTA sticky */
  .cookie-bar {
    left: 10px; right: 10px;
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    flex-direction: column; align-items: stretch; gap: 10px;
    text-align: center;
  }
  .cookie-bar p { font-size: 11px; }
  .cookie-bar .cta { width: 100%; min-height: 44px; }

  /* Toast sous l'encoche */
  .toast {
    top: calc(10px + env(safe-area-inset-top, 0px));
    width: calc(100% - 20px);
    max-width: none;
  }

  /* Modals pleine largeur */
  .modal.modal--center.is-open {
    padding: 0; align-items: flex-end;
  }
  .modal__card {
    max-width: 100%; width: 100%;
    border-radius: 20px 20px 0 0;
    padding: 22px 18px calc(18px + env(safe-area-inset-bottom, 0px));
    max-height: 92dvh; overflow-y: auto;
  }
  .modal--sheet .modal__sheet {
    max-width: 100%; width: 100%;
    border-radius: 20px 20px 0 0;
    padding: 8px 16px calc(16px + env(safe-area-inset-bottom, 0px));
    max-height: 92dvh;
  }
  .modal__title { font-size: 18px; }
  .modal__x { width: 36px; height: 36px; top: 10px; right: 10px; }
  .price__new { font-size: 32px; }
  .price__old { font-size: 15px; }
  .perks { max-width: 100%; }
  .perks li { font-size: 12px; }
  .feature-box { width: calc(33.333% - 6px); min-width: 0; flex: 1; height: 72px; padding: 8px; }
  .feature-box span { font-size: 9px; }
  .reassure { gap: 6px; }
  .reassure__item { font-size: 10px; padding: 5px 9px; }

  /* Lightbox plein écran */
  .lightbox__panel {
    width: 100%; max-width: none; height: 100%;
    top: 0; left: 0; transform: none;
    border-radius: 0; border: none;
    display: flex; flex-direction: column;
  }
  .lightbox__media { flex: 1; aspect-ratio: unset; min-height: 0; }
  .lightbox__nav { width: 40px; height: 40px; }

  .ambient__orb--1 { width: 220px; height: 220px; }
  .ambient__orb--2 { width: 260px; height: 260px; }
}

/* Très petits écrans (iPhone SE, etc.) */
@media (max-width: 360px) {
  .name { font-size: 18px; }
  .msg-btn { padding: 10px 12px; }
  .stats li { flex: 1 1 100%; }
  .tab { gap: 4px; }
  .cta--pill { font-size: 13px; letter-spacing: 0; }
  .feature-box { height: 68px; }
}

/* Grands téléphones / phablets */
@media (min-width: 481px) and (max-width: 640px) {
  .page { padding: 12px 12px calc(100px + env(safe-area-inset-bottom, 0px)); }
  .shell { max-width: 100%; }
}

/* Tablette portrait */
@media (min-width: 641px) and (max-width: 900px) {
  .page { padding: 24px 20px 120px; }
  .shell { max-width: 520px; }
  .sticky-cta, .cookie-bar { max-width: 520px; }
}
