/* StoryCloak — Dark Theme */
:root {
  --bg: #08080c;
  --bg-elev: #0f0f17;
  --bg-card: #13131f;
  --bg-card-hover: #181828;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --text: #f4f4f8;
  --text-muted: #9a9ab0;
  --text-dim: #6b6b80;
  --primary: #7c5cff;
  --primary-2: #a855f7;
  --accent: #ff4d8d;
  --gradient: linear-gradient(135deg, #7c5cff 0%, #a855f7 50%, #ff4d8d 100%);
  --gradient-soft: linear-gradient(135deg, rgba(124,92,255,.15), rgba(255,77,141,.15));
  --shadow-glow: 0 0 80px rgba(124,92,255,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; }

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

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8,8,12,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk'; font-weight: 700; font-size: 20px; }
.brand-logo {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--gradient); display: grid; place-items: center;
}
.brand-logo svg { width: 18px; height: 18px; color: #fff; }
.brand-accent { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--text-muted); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 12px;
  font-weight: 600; font-size: 15px;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-sm { padding: 10px 18px; font-size: 14px; border-radius: 10px; }
.btn-wide { width: 100%; }
.btn-primary { background: var(--gradient); color: #fff; box-shadow: 0 4px 20px rgba(124,92,255,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,92,255,0.5); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border-strong); }
.btn-outline:hover { background: var(--bg-card-hover); border-color: var(--primary); }
.btn-ghost { background: var(--bg-card-hover); color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--bg-elev); }

/* ── HERO ── */
.hero { position: relative; padding: 80px 0 60px; text-align: center; overflow: hidden; }
.hero-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(124,92,255,0.25) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.eyebrow {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: rgba(124,92,255,0.12); border: 1px solid rgba(124,92,255,0.25);
  color: #c8b8ff; font-size: 13px; font-weight: 500; margin-bottom: 24px;
}
.hero-title {
  font-family: 'Hanken Grotesk';
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 18px; color: var(--text-muted); max-width: 620px; margin: 0 auto 40px; }

.search-card {
  display: flex; gap: 8px;
  max-width: 620px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 8px; border-radius: 16px;
  box-shadow: var(--shadow-glow);
}
.search-input-wrap { flex: 1; display: flex; align-items: center; padding: 0 16px; background: var(--bg-elev); border-radius: 10px; }
.search-at { color: var(--text-dim); font-size: 18px; margin-right: 6px; }
.search-input-wrap input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-size: 16px; padding: 14px 0; font-family: inherit;
}
.search-input-wrap input::placeholder { color: var(--text-dim); }

.trust-row {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 48px;
  margin-top: 56px; padding-top: 32px;
  border-top: 1px solid var(--border);
}
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-item strong { font-family: 'Space Grotesk'; font-size: 28px; font-weight: 700; }
.trust-item span { font-size: 13px; color: var(--text-muted); }

/* ── SKELETON LOADER ── */
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}
.skel {
  background: linear-gradient(90deg, var(--bg-elev) 25%, rgba(255,255,255,0.04) 50%, var(--bg-elev) 75%);
  background-size: 600px 100%;
  animation: shimmer 1.6s infinite linear;
  border-radius: 8px;
}
.skel-avatar {
  width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0;
}

/* ── BUTTON SPINNER ── */
.btn-spinner {
  width: 18px; height: 18px;
  animation: spin 0.7s linear infinite;
}
.btn-spinner circle {
  stroke-dasharray: 56;
  stroke-dashoffset: 42;
}

/* ── TAB BADGE ── */
.tab-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gradient); color: #fff;
  font-size: 10px; font-weight: 700;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 999px; margin-left: 6px;
}

/* ── STORIES STRIP (ring row) ── */
.stories-loading-row {
  display: flex; gap: 16px; padding: 8px 0 24px; overflow-x: auto; scrollbar-width: none;
}
.stories-loading-row::-webkit-scrollbar { display: none; }
.story-ring-skel {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
}
.stories-strip {
  display: flex; gap: 16px; padding: 8px 0 24px; overflow-x: auto; scrollbar-width: none;
}
.stories-strip::-webkit-scrollbar { display: none; }
.story-ring {
  display: flex; flex-direction: column; align-items: center; gap: 6px; flex-shrink: 0; cursor: pointer;
}
.story-ring-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gradient); padding: 2.5px;
  transition: transform .2s;
}
.story-ring:hover .story-ring-circle { transform: scale(1.08); }
.story-ring-circle img {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
  border: 2.5px solid var(--bg-card);
}
.story-ring-circle .story-ring-placeholder {
  width: 100%; height: 100%; border-radius: 50%;
  background: var(--bg-elev); display: grid; place-items: center;
  border: 2.5px solid var(--bg-card);
  font-size: 20px;
}
.story-ring span { font-size: 11px; color: var(--text-muted); white-space: nowrap; max-width: 64px; overflow: hidden; text-overflow: ellipsis; }


.loading-card, .error-card {
  max-width: 500px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 48px 32px;
  text-align: center;
}
.loading-spinner {
  width: 48px; height: 48px; border-radius: 50%;
  border: 3px solid var(--border-strong);
  border-top-color: var(--primary);
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-card p, .error-card p { color: var(--text-muted); }
.error-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(239,68,68,0.15); display: grid; place-items: center; margin: 0 auto 16px; }
.error-icon svg { width: 26px; height: 26px; color: #ef4444; }
.error-card h3 { font-family: 'Space Grotesk'; font-size: 20px; margin-bottom: 8px; }

/* ── PROFILE CARD ── */
.preview-section { padding: 40px 0 80px; }
.profile-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px; max-width: 1000px; margin: 0 auto;
}
.profile-header { display: flex; align-items: flex-start; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.avatar { position: relative; width: 72px; height: 72px; flex-shrink: 0; }
.avatar-ring { position: absolute; inset: 0; border-radius: 50%; background: var(--gradient); padding: 2px; }
.avatar-photo {
  position: absolute; inset: 3px; border-radius: 50%;
  width: calc(100% - 6px); height: calc(100% - 6px);
  object-fit: cover;
}
.avatar-inner {
  position: absolute; inset: 3px; border-radius: 50%;
  background: var(--bg-elev); display: grid; place-items: center;
  font-weight: 700; color: var(--text); font-size: 18px;
}
.profile-info { flex: 1; min-width: 0; }
.profile-name-row { display: flex; align-items: center; gap: 8px; }
.profile-info h3 { font-size: 20px; font-weight: 700; }
.profile-fullname { font-size: 14px; color: var(--text-muted); margin-top: 2px; }
.profile-stats { display: flex; gap: 20px; margin: 8px 0; flex-wrap: wrap; }
.profile-stats span { font-size: 14px; color: var(--text-muted); }
.profile-stats strong { color: var(--text); font-weight: 600; }
.profile-bio { font-size: 13px; color: var(--text-muted); max-width: 500px; white-space: pre-wrap; }
.verified-badge { display: inline-flex; }

.tabs { display: flex; gap: 4px; margin: 20px 0; overflow-x: auto; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab { padding: 8px 18px; border-radius: 8px; color: var(--text-muted); font-size: 14px; font-weight: 500; transition: all .15s; white-space: nowrap; }
.tab:hover { color: var(--text); }
.tab.active { background: var(--bg-elev); color: var(--text); }

.tab-content { display: block; }

/* ── MEDIA GRID ── */
.stories-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.story-tile {
  aspect-ratio: 4/5; border-radius: 12px;
  position: relative; overflow: hidden;
  background: var(--bg-elev); border: 1px solid var(--border);
  transition: transform .2s, border-color .2s; cursor: pointer;
}
.story-tile:hover { transform: translateY(-3px); border-color: var(--primary); }
.story-tile .grad { position: absolute; inset: 0; }
.story-tile img.tile-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: opacity .3s;
}
.story-tile .tile-type-badge {
  position: absolute; top: 8px; right: 8px;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  border-radius: 6px; padding: 3px 8px;
  font-size: 11px; font-weight: 600; color: #fff; z-index: 2;
}
.story-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 8px 8px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  display: flex; justify-content: space-between; align-items: flex-end;
  font-size: 11px; color: #fff; z-index: 2;
}
.story-meta .pill { background: rgba(0,0,0,0.55); padding: 3px 6px; border-radius: 6px; backdrop-filter: blur(4px); }
.story-meta .engagement { display: flex; gap: 6px; font-size: 11px; }

.load-more { margin-top: 24px; text-align: center; }

/* Stories unavailable */
.stories-unavailable {
  text-align: center; padding: 48px 24px;
}
.su-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gradient-soft); display: grid; place-items: center; margin: 0 auto 16px;
}
.su-icon svg { width: 28px; height: 28px; color: var(--primary); }
.stories-unavailable h3 { font-family: 'Space Grotesk'; font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.stories-unavailable p { color: var(--text-muted); max-width: 380px; margin: 0 auto 20px; }
.tab-empty { text-align: center; padding: 40px; color: var(--text-muted); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(12px);
  display: grid; place-items: center;
}
.lightbox-inner {
  position: relative; max-width: 90vw; max-height: 90vh;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.lightbox-close {
  position: absolute; top: -40px; right: 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  display: grid; place-items: center; z-index: 2;
}
.lightbox-close svg { width: 18px; height: 18px; }
.lightbox-media img, .lightbox-media video {
  max-height: 75vh; max-width: 85vw;
  border-radius: 12px; object-fit: contain;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  display: grid; place-items: center;
  transition: background .15s;
}
.lightbox-nav:hover { background: var(--bg-card-hover); }
.lightbox-nav svg { width: 20px; height: 20px; }
.lightbox-nav.prev { left: -56px; }
.lightbox-nav.next { right: -56px; }
.lightbox-info { font-size: 13px; color: var(--text-muted); }
.lightbox-download { margin-top: 4px; }

/* ── SECTION HEADINGS ── */
.section-title {
  font-family: 'Space Grotesk';
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; text-align: center; letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-sub { text-align: center; color: var(--text-muted); font-size: 17px; max-width: 560px; margin: 0 auto 56px; }

/* ── FEATURES ── */
.features-section { padding: 100px 0; border-top: 1px solid var(--border); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 32px; border-radius: 18px; transition: all .25s;
}
.feature-card:hover { border-color: var(--border-strong); transform: translateY(-4px); background: var(--bg-card-hover); }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 20px; }
.feature-icon svg { width: 22px; height: 22px; color: #fff; }
.icon-1 { background: linear-gradient(135deg, #7c5cff, #a855f7); }
.icon-2 { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.icon-3 { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.icon-4 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.icon-5 { background: linear-gradient(135deg, #10b981, #06b6d4); }
.icon-6 { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.feature-card h3 { font-family: 'Space Grotesk'; font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* ── HOW IT WORKS ── */
.how-section { padding: 100px 0; border-top: 1px solid var(--border); }
.steps { display: flex; flex-direction: column; gap: 40px; max-width: 980px; margin: 0 auto; }
.step {
  display: grid; grid-template-columns: 80px 1fr 280px; gap: 32px; align-items: center;
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 32px; border-radius: 18px;
}
.step.reverse { grid-template-columns: 280px 80px 1fr; }
.step-num {
  font-family: 'Space Grotesk'; font-size: 48px; font-weight: 700;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.step-content h3 { font-family: 'Space Grotesk'; font-size: 22px; font-weight: 600; margin-bottom: 6px; }
.step-content p { color: var(--text-muted); font-size: 15px; }
.step-visual { display: grid; place-items: center; }
.mini-card { width: 100%; background: var(--bg-elev); border: 1px solid var(--border); border-radius: 12px; padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.mini-label { font-size: 12px; color: var(--text-dim); }
.mini-bar { height: 8px; background: var(--gradient); border-radius: 4px; width: 80%; }
.mini-bar.short { width: 50%; opacity: .4; }
.mini-input { flex-direction: row; align-items: center; gap: 4px; }
.mini-at { color: var(--text-dim); font-size: 18px; }
.mini-typing { color: var(--text); font-family: 'Space Grotesk'; font-weight: 500; }
.mini-search { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 14px; }
.mini-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 12px var(--primary); animation: pulse 1.4s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

/* ── PRICING ── */
.pricing-section { padding: 100px 0; border-top: 1px solid var(--border); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1080px; margin: 0 auto; }
.price-card {
  position: relative; background: var(--bg-card); border: 1px solid var(--border);
  padding: 32px; border-radius: 20px; display: flex; flex-direction: column;
}
.price-card.featured {
  border-color: rgba(124,92,255,0.5);
  background: linear-gradient(180deg, rgba(124,92,255,0.08), var(--bg-card));
  box-shadow: 0 0 40px rgba(124,92,255,0.15);
}
.badge { position: absolute; top: -12px; right: 24px; background: var(--gradient); color: #fff; font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 999px; }
.badge-save { background: linear-gradient(135deg, #10b981, #06b6d4); }
.price-head h3 { font-family: 'Space Grotesk'; font-size: 22px; font-weight: 600; margin-bottom: 4px; }
.price-head p { color: var(--text-muted); font-size: 14px; }
.price { font-family: 'Space Grotesk'; font-size: 44px; font-weight: 700; margin: 20px 0; }
.price span { font-size: 15px; color: var(--text-muted); font-weight: 400; }
.price-features { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.price-features li.muted { color: var(--text-dim); }

/* ── FAQ ── */
.faq-section { padding: 100px 0; border-top: 1px solid var(--border); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: var(--border-strong); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; font-size: 16px; font-weight: 500; text-align: left; }
.faq-icon { font-size: 24px; color: var(--text-muted); transition: transform .25s; font-weight: 300; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--primary); }
.faq-a { max-height: 0; overflow: hidden; padding: 0 24px; color: var(--text-muted); font-size: 15px; transition: max-height .3s ease, padding .3s ease; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ── CTA ── */
.cta-section { padding: 80px 0; }
.cta-card { position: relative; overflow: hidden; background: var(--bg-card); border: 1px solid var(--border-strong); border-radius: 24px; padding: 64px 32px; text-align: center; }
.cta-glow { position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 500px; height: 300px; background: radial-gradient(ellipse, rgba(124,92,255,0.4) 0%, transparent 70%); pointer-events: none; }
.cta-card h2 { position: relative; font-family: 'Space Grotesk'; font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; margin-bottom: 14px; }
.cta-card p { position: relative; color: var(--text-muted); font-size: 17px; margin-bottom: 28px; }
.cta-card .btn { position: relative; }

/* ── FOOTER ── */
.footer { border-top: 1px solid var(--border); padding-top: 60px; background: var(--bg-elev); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; max-width: 300px; margin-top: 14px; }
.footer-col h4 { font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-muted); font-size: 14px; padding: 6px 0; transition: color .15s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding: 24px 0; color: var(--text-dim); font-size: 13px; text-align: center; }

/* ── TOAST ── */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 200; display: flex; flex-direction: column; gap: 8px; }
.toast {
  background: var(--bg-card); border: 1px solid var(--border-strong);
  border-radius: 12px; padding: 14px 20px; font-size: 14px;
  display: flex; align-items: center; gap: 10px;
  transform: translateX(110%); transition: transform .3s ease;
  max-width: 320px;
}
.toast.show { transform: translateX(0); }
.toast.success { border-color: rgba(16,185,129,0.4); }
.toast.error { border-color: rgba(239,68,68,0.4); }
.toast-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ── SKIP LINK (accessibility + crawlability) ── */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--primary); color: #fff; padding: 8px 16px;
  border-radius: 0 0 8px 8px; font-size: 13px; font-weight: 600;
  transition: top .2s; z-index: 999;
}
.skip-link:focus { top: 0; }

/* ── DISCLAIMER BANNER ── */
.disclaimer-banner {
  background: rgba(124,92,255,0.07);
  border-bottom: 1px solid rgba(124,92,255,0.18);
  padding: 10px 0;
}
.disclaimer-banner .container {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-muted);
}
.disclaimer-banner svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--primary); }
.disclaimer-banner a { color: var(--primary); text-decoration: underline; }
.disclaimer-banner strong { color: var(--text); }

/* ── SEARCH HINT ── */
.search-hint {
  margin-top: 14px; font-size: 13px; color: var(--text-dim);
}
.search-hint a { color: var(--primary); margin: 0 4px; }
.search-hint a:hover { text-decoration: underline; }

/* ── ABOUT / ENTITY SECTION ── */
.about-section { padding: 100px 0; border-top: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; margin-top: 16px; }
.about-text p { color: var(--text-muted); font-size: 15px; line-height: 1.75; margin-bottom: 16px; }
.about-text strong, .about-text em { color: var(--text); }
.about-list { list-style: none; margin-top: 8px; display: flex; flex-direction: column; gap: 10px; }
.about-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.about-list li svg { width: 16px; height: 16px; color: #10b981; flex-shrink: 0; }
.about-card-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px 16px;
  display: flex; flex-direction: column; gap: 4px;
  text-align: center; transition: border-color .2s;
}
.about-stat-card:hover { border-color: var(--border-strong); }
.about-stat-num { font-family: 'Space Grotesk'; font-size: 28px; font-weight: 700; }
.about-stat-label { font-size: 12px; color: var(--text-muted); }

/* ── USE CASES ── */
.usecases-section { padding: 100px 0; border-top: 1px solid var(--border); }
.usecase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.usecase-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 18px; padding: 28px; transition: all .25s;
}
.usecase-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.usecase-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.usecase-card h3 { font-family: 'Space Grotesk'; font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.usecase-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* ── FOOTER EXTRAS ── */
.footer-heading { font-size: 14px; font-weight: 600; margin-bottom: 16px; color: var(--text); }
.footer-disclaimer-strip {
  border-top: 1px solid var(--border); padding: 16px 0;
  background: rgba(124,92,255,0.04);
}
.footer-disclaimer-strip p { font-size: 12px; color: var(--text-dim); line-height: 1.6; }
.footer-disclaimer-strip a { color: var(--primary); }
.footer-disclaimer-strip strong { color: var(--text-muted); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom-links a { color: var(--text-dim); font-size: 13px; margin: 0 4px; }
.footer-bottom-links a:hover { color: var(--text); }

/* ── LEGAL PAGE ── */
.legal-hero {
  padding: 60px 0 40px; border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(124,92,255,0.06) 0%, transparent 100%);
}
.breadcrumb-nav { margin-bottom: 20px; }
.breadcrumb { list-style: none; display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.breadcrumb a { color: var(--primary); }
.legal-title { font-family: 'Space Grotesk'; font-size: clamp(28px, 4vw, 44px); font-weight: 700; margin-bottom: 10px; }
.legal-subtitle { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.legal-toc { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 13px; color: var(--text-muted); }
.legal-toc a {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 5px 12px; border-radius: 999px; color: var(--text-muted);
  transition: all .15s;
}
.legal-toc a:hover { color: var(--text); border-color: var(--primary); }

.legal-body { padding: 60px 0 80px; }
.legal-container { max-width: 820px; }

.legal-notice-box {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(124,92,255,0.08); border: 1px solid rgba(124,92,255,0.25);
  border-radius: 14px; padding: 20px 24px; margin-bottom: 48px;
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
}
.legal-notice-box svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.legal-notice-box strong { color: var(--text); }

.legal-section { margin-bottom: 56px; }
.legal-section h2 {
  font-family: 'Space Grotesk'; font-size: 22px; font-weight: 700;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.legal-section h3 { font-size: 15px; font-weight: 600; margin: 20px 0 8px; color: var(--text); }
.legal-section p { color: var(--text-muted); font-size: 14px; line-height: 1.75; margin-bottom: 12px; }
.legal-section ul { color: var(--text-muted); font-size: 14px; line-height: 1.75; padding-left: 20px; margin-bottom: 12px; }
.legal-section ul li { margin-bottom: 6px; }
.legal-section a { color: var(--primary); }
.legal-section a:hover { text-decoration: underline; }
.legal-contact .contact-block {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 24px; margin-top: 12px;
}
.legal-contact .contact-block p { margin-bottom: 6px; }
.legal-back { margin-top: 40px; }

/* ── STORIES VERTICAL GRID ── */
.stories-grid-vertical {
  grid-template-columns: repeat(4, 1fr);
}
.stories-grid-vertical .story-tile {
  aspect-ratio: 9/16;
}
.stories-fallback-note {
  font-size: 12px; color: var(--text-dim);
  text-align: center; padding: 12px 0 4px;
  grid-column: 1 / -1;
}

/* ── WHAT YOU CAN VIEW ── */
.viewtypes-section { padding: 100px 0; border-top: 1px solid var(--border); }
.viewtype-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.viewtype-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 18px; padding: 28px; transition: all .25s;
  display: flex; flex-direction: column; gap: 10px;
}
.viewtype-card:hover { border-color: var(--border-strong); transform: translateY(-3px); background: var(--bg-card-hover); }
.vt-icon { font-size: 32px; }
.viewtype-card h3 { font-family: 'Hanken Grotesk'; font-size: 17px; font-weight: 700; margin: 0; }
.viewtype-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; flex: 1; }
.vt-tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  background: rgba(124,92,255,0.12); color: #c8b8ff;
  border: 1px solid rgba(124,92,255,0.2); border-radius: 999px;
  padding: 3px 10px; margin-top: 4px; align-self: flex-start;
}

/* ── POPULAR ACCOUNTS ── */
.popular-section { padding: 100px 0; border-top: 1px solid var(--border); }
.popular-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.popular-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; transition: all .2s; text-decoration: none; color: inherit;
}
.popular-card:hover { border-color: var(--primary); background: var(--bg-card-hover); transform: translateY(-2px); }
.pop-emoji { font-size: 24px; flex-shrink: 0; }
.pop-info { flex: 1; min-width: 0; }
.pop-info strong { display: block; font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pop-info span { font-size: 11px; color: var(--text-dim); }
.pop-handle { font-size: 11px; color: var(--text-dim); flex-shrink: 0; }

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 900px) {
  .viewtype-grid  { grid-template-columns: repeat(2, 1fr); }
  .popular-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .viewtype-grid  { grid-template-columns: 1fr; }
  .popular-grid   { grid-template-columns: 1fr; }
}

/* ── STORIES NO-SESSION PANEL ── */
.stories-no-session {
  padding: 32px 0 20px;
}
.sns-icon { font-size: 40px; margin-bottom: 12px; }
.stories-no-session h3 {
  font-family: 'Space Grotesk'; font-size: 20px; font-weight: 600; margin-bottom: 8px;
}
.stories-no-session > p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.stories-no-session code {
  background: var(--bg-elev); border: 1px solid var(--border);
  padding: 2px 6px; border-radius: 4px; font-size: 12px; font-family: monospace;
}
.sns-steps {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px; margin-bottom: 20px;
  max-width: 560px;
}
.sns-step {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; color: var(--text-muted); line-height: 1.5;
}
.sns-step strong { color: var(--text); }
.sns-num {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--gradient); color: #fff;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
}
.sns-note { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.sns-note strong { color: var(--text); }


@media (max-width: 900px) {
  .nav-links { display: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .stories-grid { grid-template-columns: repeat(3, 1fr); }
  .step, .step.reverse { grid-template-columns: 1fr; text-align: center; }
  .step-visual { max-width: 260px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-row { gap: 24px; }
  .trust-item strong { font-size: 22px; }
  .lightbox-nav.prev { left: -44px; }
  .lightbox-nav.next { right: -44px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-card-stack { grid-template-columns: repeat(4, 1fr); }
  .usecase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
  .search-card { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; }
  .profile-card { padding: 16px; }
  .profile-header { flex-direction: column; }
  .lightbox-nav { display: none; }
  .about-card-stack { grid-template-columns: repeat(2, 1fr); }
  .usecase-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .stories-grid { grid-template-columns: repeat(3, 1fr); }
  .step, .step.reverse { grid-template-columns: 1fr; text-align: center; }
  .step-visual { max-width: 260px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-row { gap: 24px; }
  .trust-item strong { font-size: 22px; }
  .lightbox-nav.prev { left: -44px; }
  .lightbox-nav.next { right: -44px; }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
  .search-card { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; }
  .profile-card { padding: 16px; }
  .profile-header { flex-direction: column; }
  .lightbox-nav { display: none; }
}
