/* ── Design tokens ── */
:root {
  --accent: #f5ec00;
  --accent-hover: #fffc33;
  --accent-muted: color-mix(in oklab, var(--accent) 14%, transparent);
  --accent-text: #12120a;

  --bg: #0c0c14;
  --bg-elevated: #12121c;
  --surface: #181824;
  --surface-2: #1f1f2c;
  --surface-3: #282836;

  --text: #eeeef4;
  --text-secondary: #a8a8b8;
  --text-tertiary: #6e6e80;

  --border: #2e2e3c;
  --border-subtle: #232330;

  --success: #2ecc71;
  --alert: #ff453a;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 22px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-accent: 0 12px 40px -8px color-mix(in oklab, var(--accent) 45%, transparent);

  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.22s var(--ease-out);

  font-synthesis: none;
}

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 600px at 50% -10%, color-mix(in oklab, var(--accent) 6%, transparent), transparent 60%),
    radial-gradient(600px 400px at 100% 100%, color-mix(in oklab, #6366f1 4%, transparent), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

a { color: var(--text-secondary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--text); }

/* ── Shell layout ── */
.shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* ── Topbar ── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px 8px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--accent-text);
  border-radius: 50%;
  flex: none;
}

.brand-mark svg { width: 20px; height: 20px; }

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand-text span { color: var(--accent); }

/* ── Stepper ── */
.stepper-list {
  display: flex;
  gap: 4px;
  list-style: none;
}

.step {
  width: 28px;
  height: 4px;
  border-radius: 99px;
  background: var(--surface-3);
  transition: background var(--transition), width var(--transition);
  overflow: hidden;
}

.step span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.step.is-active { width: 36px; background: var(--accent); }
.step.is-done { background: color-mix(in oklab, var(--accent) 50%, var(--surface-3)); }

/* ── Screens ── */
.app { flex: 1; }

.screen {
  display: none;
  padding: 24px 20px 32px;
  animation: screen-in 0.38s var(--ease-out);
}

.screen.active { display: block; }

.screen.loading.active {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100dvh - 120px);
  padding-top: 40px;
}

@keyframes screen-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* ── Typography ── */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.hero { text-align: center; margin-bottom: 24px; }

h1 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 5.5vw, 1.85rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.lead {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 36ch;
  margin: 0 auto;
}

.accent { color: var(--accent); }

/* ── Stat pill ── */
.stat-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto 22px;
  padding: 8px 16px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 99px;
}

.stat-pill strong { color: var(--text); font-weight: 600; }

.stat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  flex: none;
  animation: pulse-dot 2s ease-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--success) 50%, transparent); }
  60% { box-shadow: 0 0 0 6px transparent; }
}

/* ── Form ── */
.search-form { margin-bottom: 20px; }

.field { margin-bottom: 14px; }

.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 7px;
}

.input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.input-wrap:focus-within {
  border-color: color-mix(in oklab, var(--accent) 60%, var(--border));
  box-shadow: 0 0 0 3px var(--accent-muted);
}

.input-prefix {
  color: var(--text-tertiary);
  font-weight: 600;
  font-size: 1rem;
}

.input-wrap input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  padding: 15px 0;
  min-width: 0;
}

.input-wrap input::placeholder { color: var(--text-tertiary); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform 0.12s var(--ease-out), filter var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.btn-icon { width: 18px; height: 18px; flex: none; }

.btn-primary {
  width: 100%;
  padding: 16px 20px;
  background: var(--accent);
  color: var(--accent-text);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover:not(:disabled) { filter: brightness(1.06); }
.btn-primary:active:not(:disabled) { transform: scale(0.985); }
.btn-primary:disabled { opacity: 0.45; cursor: not-allowed; box-shadow: none; }

.btn-block { width: 100%; padding: 17px 20px; }

/* ── Trust row ── */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 28px;
}

.trust-row li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-tertiary);
}

.trust-row svg { width: 15px; height: 15px; flex: none; opacity: 0.7; }

.trust-row--compact { margin-top: 16px; margin-bottom: 0; gap: 14px; }

/* ── Testimonials ── */
.testimonials {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
}

.testimonials-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.rating { display: flex; align-items: center; gap: 8px; }

.stars { color: #f5c518; font-size: 0.82rem; letter-spacing: 2px; }

.rating-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
}

.rating-count { font-size: 0.72rem; color: var(--text-tertiary); }

.review-slot { position: relative; min-height: 64px; }

.review-card {
  margin: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}

.review-card.show { opacity: 1; transform: none; }

.review-author {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.review-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  font-style: normal;
}

/* ── Loader ── */
.loader-card {
  width: 100%;
  text-align: center;
}

.loader-ring {
  position: relative;
  width: 112px;
  height: 112px;
  margin: 0 auto 28px;
}

.loader-ring svg { width: 100%; height: 100%; }

.loader-arc { transition: stroke-dasharray 0.3s var(--ease-out); }

.loader-pct {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--accent);
}

.loader-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.loader-status {
  color: var(--text-secondary);
  font-size: 0.88rem;
  min-height: 1.4em;
  margin-bottom: 22px;
}

.progress-track {
  width: 100%;
  max-width: 280px;
  height: 6px;
  margin: 0 auto 22px;
  background: var(--surface-3);
  border-radius: 99px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0;
  background: var(--accent);
  border-radius: 99px;
  transition: width 0.35s var(--ease-out);
}

.terminal {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  background: #080810;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: left;
  font-family: ui-monospace, "Cascadia Code", "SF Mono", Menlo, monospace;
  font-size: 0.68rem;
  color: #5ee87a;
  line-height: 1.65;
  height: 120px;
  overflow: hidden;
}

.terminal .ln {
  opacity: 0;
  animation: term-in 0.2s var(--ease-out) forwards;
}

.terminal .ln.warn { color: #f5c518; }

@keyframes term-in { to { opacity: 1; } }

/* ── Results ── */
#s3 { padding-top: 16px; }

.results-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.results-intro { flex: 1; min-width: 0; }

.results-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}

.results-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 6vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.results-title .accent { color: var(--accent); }

.results-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--success);
}

.results-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal-in 0.5s var(--ease-out) forwards;
  animation-delay: calc(var(--i, 0) * 0.07s + 0.1s);
}

@keyframes reveal-in {
  to { opacity: 1; transform: none; }
}

/* ── Badges ── */
.badge {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 7px;
  white-space: nowrap;
  flex: none;
}

.badge-live {
  background: var(--alert);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 14px -4px color-mix(in oklab, var(--alert) 60%, transparent);
}

.badge-soft {
  background: var(--surface-3);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

.badge-alert {
  background: var(--alert);
  color: #fff;
  box-shadow: 0 2px 10px -4px color-mix(in oklab, var(--alert) 50%, transparent);
}

.live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  animation: pulse-dot 1.6s ease-out infinite;
}

/* ── Panels ── */
.panel {
  background: linear-gradient(180deg, color-mix(in oklab, var(--surface) 96%, #fff 4%), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

.panel-flush { padding: 0; overflow: hidden; }

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.panel-head h3 {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* ── Mask / locked content ── */
.mask-line {
  display: block;
  height: 10px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--surface-3) 0%, color-mix(in oklab, var(--surface-3) 70%, #fff 30%) 50%, var(--surface-3) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.8s ease-in-out infinite;
}

.mask-line.w35 { width: 35%; }
.mask-line.w40 { width: 40%; }
.mask-line.w45 { width: 45%; }
.mask-line.w50 { width: 50%; }
.mask-line.w55 { width: 55%; }
.mask-line.w60 { width: 60%; }
.mask-line.w65 { width: 65%; }
.mask-line.w70 { width: 70%; }
.mask-line.w80 { width: 80%; }

@keyframes shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.locked {
  position: relative;
  filter: blur(5px);
  user-select: none;
  pointer-events: none;
}

.lock-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  pointer-events: none;
  filter: none;
}

.lock-overlay svg {
  width: 28px;
  height: 28px;
  color: var(--text);
  padding: 8px;
  background: color-mix(in oklab, var(--bg) 75%, transparent);
  border: 1px solid var(--border);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
}

.lock-overlay--compact svg { width: 22px; height: 22px; padding: 6px; }

.story-row.locked,
.contact-list.locked,
.snap-list.locked,
.chat-preview.locked {
  position: relative;
}

.locked-wrap {
  position: relative;
  min-height: 60px;
}

/* ── Profile panel ── */
.profile-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background:
    linear-gradient(135deg, color-mix(in oklab, var(--accent) 6%, var(--surface)) 0%, var(--surface) 60%);
  border-color: color-mix(in oklab, var(--accent) 18%, var(--border));
}

.avatar-ring {
  width: 60px;
  height: 60px;
  padding: 2.5px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--accent), #ff9f43, #c084fc, var(--accent));
  flex: none;
  box-shadow: 0 0 20px -4px color-mix(in oklab, var(--accent) 40%, transparent);
}

.avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(145deg, #c4b5fd 0%, #f9a8d4 50%, #fde047 100%);
}

.profile-body { flex: 1; min-width: 0; }

.profile-handle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-name {
  font-size: 0.8rem;
  margin-top: 5px;
  min-height: 10px;
}

.profile-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--success);
  margin-top: 6px;
}

.profile-score {
  text-align: center;
  flex: none;
  padding-left: 12px;
  border-left: 1px solid var(--border-subtle);
}

.score-val {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.score-val.locked {
  filter: blur(6px);
  user-select: none;
}

.score-label {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-tertiary);
  margin-top: 2px;
}

/* ── Map ── */
.map-frame {
  position: relative;
  height: 220px;
  background: #e8e4dc;
  overflow: hidden;
}

.map-live {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: blur(2px) saturate(1.08);
  pointer-events: none;
}

.map-live .leaflet-container {
  width: 100%;
  height: 100%;
  background: #e8e4dc;
}

.map-live .leaflet-tile-pane { opacity: 0.95; }

.map-heat {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.heat-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.55;
  animation: heat-pulse 4s ease-in-out infinite;
}

.heat-a {
  width: 90px;
  height: 90px;
  top: 28%;
  left: 38%;
  background: radial-gradient(circle, #ff2d55 0%, transparent 70%);
}

.heat-b {
  width: 70px;
  height: 70px;
  top: 42%;
  left: 52%;
  background: radial-gradient(circle, #ffcc00 0%, transparent 70%);
  animation-delay: 1.2s;
}

.heat-c {
  width: 110px;
  height: 110px;
  top: 18%;
  left: 22%;
  background: radial-gradient(circle, #5856d6 0%, transparent 70%);
  animation-delay: 2.4s;
}

@keyframes heat-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.12); opacity: 0.65; }
}

.map-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(12, 12, 20, 0.06) 0%, transparent 30%, transparent 52%, rgba(12, 12, 20, 0.72) 100%);
  pointer-events: none;
}

.map-pin-marker {
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -65%);
  z-index: 4;
  width: 36px;
  height: 44px;
  filter: none;
}

.map-pin-marker svg { width: 100%; height: 100%; filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35)); }

.pin-pulse {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 8px;
  background: color-mix(in oklab, var(--accent) 50%, transparent);
  border-radius: 50%;
  animation: pin-pulse 2s ease-out infinite;
}

@keyframes pin-pulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
  50% { transform: translateX(-50%) scale(1.6); opacity: 0; }
}

.map-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  z-index: 5;
}

.map-badge {
  font-size: 0.68rem;
  font-weight: 600;
  color: #fff;
  background: rgba(8, 10, 14, 0.72);
  backdrop-filter: blur(8px);
  padding: 5px 11px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-badge-accent {
  background: var(--accent);
  color: var(--accent-text);
  border-color: transparent;
  font-weight: 700;
}

.map-badge-live { display: flex; align-items: center; gap: 5px; }

.map-pin-card {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(8, 10, 14, 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  color: #fff;
}

.map-pin-card svg { width: 18px; height: 18px; flex: none; color: var(--accent); }

.map-address { font-size: 0.8rem; font-weight: 600; min-height: 10px; }
.map-updated { font-size: 0.68rem; color: #a8a8b8; margin-top: 3px; }

/* ── My Eyes Only ── */
.panel-meo {
  background: linear-gradient(180deg, color-mix(in oklab, var(--surface) 92%, #000 8%), var(--surface));
  border-color: color-mix(in oklab, var(--border) 70%, #fffc00 30%);
}

.meo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.meo-item {
  aspect-ratio: 3 / 4;
  margin: 0;
  border-radius: var(--radius-sm);
  border: 2px solid color-mix(in oklab, var(--border) 75%, #fff 15%);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.meo-item.m1 { background: linear-gradient(160deg, #3a1828, #6b2040); }
.meo-item.m2 { background: linear-gradient(160deg, #1a2240, #2a3870); }
.meo-item.m3 { background: linear-gradient(160deg, #281a40, #4a2878); }
.meo-item.m4 { background: linear-gradient(160deg, #401820, #702838); }
.meo-item.m5 { background: linear-gradient(160deg, #182838, #204868); }
.meo-item.m6 { background: linear-gradient(160deg, #382018, #683028); }

.meo-label {
  position: absolute;
  left: 6px;
  bottom: 6px;
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}

.meo-item.meo-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(255, 252, 0, 0.12), transparent 55%);
}

.meo-foot {
  margin-top: 12px;
  min-height: 10px;
}

.meo-foot small {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  color: var(--text-tertiary);
}

.meo-grid.locked,
.meo-foot.locked {
  filter: blur(5px);
}

/* ── Stories ── */
.story-row {
  display: flex;
  gap: 10px;
  overflow: hidden;
  padding-bottom: 2px;
}

.story { flex: none; text-align: center; margin: 0; }

.story-thumb {
  width: 56px;
  height: 80px;
  border-radius: var(--radius-sm);
  border: 2.5px solid var(--accent);
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.4);
}

.story-thumb.s1 { background: linear-gradient(160deg, #ff8fae, #ff5a7a); }
.story-thumb.s2 { background: linear-gradient(160deg, #8fb4ff, #5a7aff); }
.story-thumb.s3 { background: linear-gradient(160deg, #b08fff, #7a5aff); }
.story-thumb.s4 { background: linear-gradient(160deg, #ffd08f, #ffae5a); }

.story figcaption { font-size: 0.62rem; color: var(--text-tertiary); margin-top: 6px; }

/* ── Contacts ── */
.contact-list { list-style: none; position: relative; }

.contact {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.contact:last-child { border-bottom: none; padding-bottom: 0; }
.contact:first-child { padding-top: 0; }

.contact-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex: none;
  border: 2px solid color-mix(in oklab, var(--border) 80%, #fff 20%);
}

.contact-avatar.c1 { background: linear-gradient(135deg, #ff7aa2, #ff5a8a); }
.contact-avatar.c2 { background: linear-gradient(135deg, #7ab8ff, #5a8aff); }
.contact-avatar.c3 { background: linear-gradient(135deg, #9b7aff, #7a5aff); }

.contact-info { flex: 1; min-width: 0; }

.contact-info strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  min-height: 10px;
  margin-bottom: 3px;
}

.contact-info small { font-size: 0.72rem; color: var(--text-tertiary); }

.contact-score {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent);
}

.contact-score svg { width: 13px; height: 13px; opacity: 0.85; }

/* ── Snaps ── */
.snap-list { list-style: none; display: flex; flex-direction: column; gap: 2px; position: relative; }

.snap-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 0;
}

.snap-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex: none;
  display: grid;
  place-items: center;
  color: #fff;
}

.snap-icon svg { width: 16px; height: 16px; }

.snap-photo { background: linear-gradient(135deg, #ff6b6b, #ee5a5a); }
.snap-video { background: linear-gradient(135deg, #a78bfa, #8b5cf6); }

.snap-info { flex: 1; }

.snap-info strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  min-height: 10px;
  margin-bottom: 2px;
}

.snap-info small { font-size: 0.72rem; color: var(--text-tertiary); }

.snap-item time { font-size: 0.68rem; color: var(--text-tertiary); white-space: nowrap; }

/* ── Chat ── */
.chat-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  min-height: 80px;
}

.chat-bubble {
  max-width: 78%;
  padding: 10px 13px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  line-height: 1.4;
}

.chat-bubble.in {
  align-self: flex-start;
  background: var(--surface-2);
  border-bottom-left-radius: 4px;
}

.chat-bubble.out {
  align-self: flex-end;
  background: color-mix(in oklab, var(--success) 10%, var(--surface-2));
  border-bottom-right-radius: 4px;
}

.chat-bubble .mask-line { height: 8px; }

/* ── Unlock banner ── */
.unlock-banner {
  position: relative;
  text-align: center;
  margin-top: 4px;
  padding: 22px 18px;
  background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 8%, var(--surface)) 0%, var(--surface) 100%);
  border: 1.5px solid color-mix(in oklab, var(--accent) 35%, transparent);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px color-mix(in oklab, var(--accent) 10%, transparent),
    0 16px 40px -12px color-mix(in oklab, var(--accent) 25%, transparent);
}

.unlock-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 120px;
  background: radial-gradient(ellipse, color-mix(in oklab, var(--accent) 25%, transparent), transparent 70%);
  pointer-events: none;
}

.unlock-icon {
  position: relative;
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  border: 1px solid color-mix(in oklab, var(--accent) 25%, var(--border));
  border-radius: 50%;
  color: var(--accent);
}

.unlock-icon svg { width: 22px; height: 22px; }

.unlock-title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 6px;
}

.unlock-desc {
  position: relative;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}

.unlock-banner .btn-primary {
  position: relative;
  max-width: 100%;
}

.unlock-banner .btn-primary svg { width: 18px; height: 18px; }

/* ── Checkout ── */
.checkout-head { text-align: center; margin-bottom: 20px; }

.checkout-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--accent-text);
  border-radius: 50%;
  box-shadow: var(--shadow-accent);
}

.checkout-icon svg { width: 26px; height: 26px; }

.checkout-head h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 8px;
}

.pricing-card {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  margin-bottom: 14px;
}

.pricing-old {
  color: var(--text-tertiary);
  text-decoration: line-through;
  font-size: 0.95rem;
  font-weight: 500;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 4px 0;
}

.pricing-amount span { color: var(--accent); }

.pricing-note { font-size: 0.74rem; color: var(--text-tertiary); font-weight: 500; }

.pricing-badge {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-text);
  background: var(--accent);
  padding: 5px 12px;
  border-radius: 99px;
}

.features-list {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 14px;
}

.features-list h3 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}

.features-list ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.features-list li svg {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 2px;
  color: var(--success);
}

.features-live {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
  padding: 11px 12px;
  background: color-mix(in oklab, var(--alert) 14%, #1a1012);
  border: 1px solid color-mix(in oklab, var(--alert) 38%, #3a1a1a);
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 600;
  color: #f5f5f7;
  line-height: 1.4;
}

.features-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--alert);
  flex: none;
  margin-top: 5px;
  animation: live-dot-pulse 1.6s ease-out infinite;
}

.offer-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  font-size: 0.8rem;
  color: #f5c518;
  font-weight: 500;
  margin-bottom: 14px;
  padding: 8px 12px;
  background: color-mix(in oklab, #f5c518 8%, transparent);
  border: 1px solid color-mix(in oklab, #f5c518 18%, transparent);
  border-radius: var(--radius-sm);
}

.offer-timer strong {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.legal-note {
  text-align: center;
  font-size: 0.68rem;
  color: var(--text-tertiary);
  margin-top: 14px;
}

/* ── Footer ── */
.site-footer {
  padding: 16px 20px 24px;
  text-align: center;
  font-size: 0.68rem;
  color: var(--text-tertiary);
  border-top: 1px solid var(--border-subtle);
}

.site-footer a { color: var(--text-tertiary); }
.site-footer a:hover { color: var(--text-secondary); }

/* ── Pay modal ── */
body.modal-open { overflow: hidden; }

.pay-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 10px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease-out), visibility 0.28s;
}

.pay-modal.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.pay-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 10, 0.78);
  backdrop-filter: blur(6px);
}

.pay-modal-box {
  position: relative;
  width: 100%;
  max-width: 360px;
  overflow: hidden;
  background: linear-gradient(180deg, #161622 0%, #101018 100%);
  border: 1px solid color-mix(in oklab, var(--accent) 22%, var(--border));
  border-radius: 20px;
  padding: 14px 14px 14px;
  box-shadow:
    0 0 0 1px color-mix(in oklab, var(--accent) 8%, transparent),
    0 24px 64px -12px rgba(0, 0, 0, 0.65),
    0 0 80px -20px color-mix(in oklab, var(--accent) 18%, transparent);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.32s var(--ease-out);
}

.pay-modal.is-open .pay-modal-box { transform: none; }

.pay-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
}

.pay-modal-close:hover { color: var(--text); }

.pay-modal-badge {
  display: block;
  width: fit-content;
  margin: 0 auto 10px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-muted);
  border: 1px solid color-mix(in oklab, var(--accent) 30%, transparent);
  padding: 4px 10px;
  border-radius: 99px;
}

.pay-modal-hero {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
  padding-right: 24px;
}

.pay-modal-icon {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--accent-text);
  border-radius: 50%;
  box-shadow: var(--shadow-accent);
}

.pay-modal-icon svg { width: 20px; height: 20px; }

.pay-modal-hero-text { min-width: 0; }

.pay-modal-eyebrow {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  margin-bottom: 2px;
}

.pay-modal-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.pay-modal-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  margin-bottom: 10px;
}

.pay-modal-old {
  color: var(--text-tertiary);
  text-decoration: line-through;
  font-size: 0.82rem;
  font-weight: 500;
}

.pay-modal-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pay-modal-discount {
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-text);
  background: var(--accent);
  padding: 3px 8px;
  border-radius: 99px;
  white-space: nowrap;
}

.pay-modal-perks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 8px;
  margin-bottom: 8px;
}

.pay-modal-perks li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  color: #e2e2ee;
  line-height: 1.25;
}

.pay-modal-perks li svg {
  width: 12px;
  height: 12px;
  flex: none;
  color: var(--success);
}

.pay-modal-live {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  margin-bottom: 8px;
  background: color-mix(in oklab, var(--alert) 14%, #1a1012);
  border: 1px solid color-mix(in oklab, var(--alert) 38%, #3a1a1a);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 600;
  color: #f5f5f7;
  line-height: 1.3;
}

.pay-modal-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--alert);
  flex: none;
  animation: live-dot-pulse 1.6s ease-out infinite;
}

@keyframes live-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--alert) 50%, transparent); }
  60% { box-shadow: 0 0 0 6px transparent; }
}

.pay-modal-timer {
  text-align: center;
  font-size: 0.74rem;
  color: #f5c518;
  font-weight: 500;
  margin-bottom: 8px;
}

.pay-modal-timer strong {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.pay-modal-cta {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.92rem;
  box-shadow: var(--shadow-accent);
}

/* ── Focus & a11y ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (min-width: 560px) {
  .screen { padding: 32px 28px 40px; }
  .topbar { padding: 20px 28px 10px; }
}
