/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0a0a;
  --surface:   #141414;
  --surface2:  #1e1e1e;
  --border:    #2a2a2a;
  --text:      #e8e8e8;
  --muted:     #777;
  --accent:    #10b981;
  --accent2:   #059669;
  --danger:    #ef4444;
  --gold:      #f59e0b;
  --purple:    #8b5cf6;
  --radius:    12px;
  --sidebar-w: 268px;
}

html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ══ PAGES ══ */
.page { display: none; }
.page.active { display: block; }
#chatPage.active { display: flex; height: 100vh; overflow: hidden; }

/* ══ LANDING NAV ══ */
.landing-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo { width: 30px; height: 30px; object-fit: contain; border-radius: 6px; }
.nav-brand span { font-size: 18px; font-weight: 800; color: var(--accent); letter-spacing: -0.5px; }
.nav-links { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.nav-ca {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px; font-weight: 600;
  color: var(--muted); text-decoration: none;
  padding: 6px 10px; border-radius: 8px;
  border: 1px solid var(--border);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-ca:hover {
  color: var(--accent); border-color: rgba(16, 185, 129, 0.45);
  background: rgba(16, 185, 129, 0.08);
}
.nav-x-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 32px; padding: 0 10px;
  border-radius: 8px; border: 1px solid var(--border);
  color: var(--text); text-decoration: none; font-size: 16px; font-weight: 800;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.nav-x-btn:hover {
  color: #fff; border-color: #555;
  background: rgba(255, 255, 255, 0.06);
}
.nav-link {
  background: none; border: none;
  color: var(--muted); font-size: 13px; font-weight: 500;
  cursor: pointer; padding: 6px 12px; border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--text); background: var(--surface2); }
.nav-cta {
  background: var(--accent); color: #000; border: none;
  border-radius: 8px; padding: 8px 18px; margin-left: 6px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--accent2); }

/* ══ HERO ══ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 8% 80px;
  gap: 60px;
  max-width: 1200px; margin: 0 auto;
}
.hero-content { flex: 1; }
.hero-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--danger); margin-bottom: 18px;
  display: inline-block;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 20px; padding: 4px 12px;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900; letter-spacing: -2px; line-height: 1.05;
  margin-bottom: 20px;
}
.grad {
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 18px; color: var(--muted); margin-bottom: 32px; line-height: 1.7;
}
.hero-sub strong { color: var(--text); }
.hero-sub em { color: var(--accent); font-style: normal; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.hero-fine { font-size: 11px; color: var(--muted); font-style: italic; }

/* Buttons */
.btn-primary {
  background: var(--accent); color: #000; border: none;
  border-radius: 10px; padding: 12px 28px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all 0.15s; display: inline-block;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-1px); }
.btn-primary.small { padding: 8px 18px; font-size: 13px; margin-top: 12px; }
.btn-primary.big { padding: 16px 48px; font-size: 18px; border-radius: 14px; }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 28px; font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all 0.15s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* Hero visual / scamman */
.hero-visual {
  flex: 0 0 340px;
  display: flex; flex-direction: column; align-items: center;
  position: relative;
}
.hero-bubble {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px 16px 16px 4px;
  padding: 14px 18px;
  font-size: 14px; color: var(--text); line-height: 1.5;
  margin-bottom: 12px;
  position: relative;
  max-width: 300px;
  text-align: center;
  animation: bubblePop 0.3s ease;
}
@keyframes bubblePop {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.scamman-hero {
  width: 280px; max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(16,185,129,0.2));
  border-radius: 12px;
}
.scamman-label {
  font-size: 11px; color: var(--muted); text-align: center; margin-top: 8px;
}
.scamman-label span { font-size: 10px; opacity: 0.6; }

/* ══ TICKER ══ */
.ticker-bar {
  background: var(--surface); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 10px 0; white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  font-size: 12px; color: var(--accent); font-weight: 600;
  animation: ticker 40s linear infinite;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══ SECTIONS ══ */
.section {
  padding: 90px 8%;
  max-width: 1100px; margin: 0 auto;
}
.section-header {
  text-align: center; margin-bottom: 60px;
}
.section-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 20px; padding: 4px 12px;
  display: inline-block; margin-bottom: 14px;
}
.section-tag.parody {
  color: var(--danger);
  background: rgba(239,68,68,0.1);
  border-color: rgba(239,68,68,0.3);
}
.section-tag.real {
  color: #60a5fa;
  background: rgba(96,165,250,0.1);
  border-color: rgba(96,165,250,0.3);
}
.section-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -1px; margin-bottom: 12px; }
.section-header p { font-size: 16px; color: var(--muted); }
.section-header em { color: var(--accent); font-style: normal; }

/* ══ TIMELINE ══ */
.origin-section { padding-top: 0; }
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute;
  left: 87px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--danger), var(--gold));
  opacity: 0.3;
}
.tl-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 0;
  position: relative;
}
.tl-dot {
  width: 14px; height: 14px; border-radius: 50%;
  flex-shrink: 0; margin-top: 6px;
  position: absolute; left: 81px;
  border: 2px solid var(--bg);
}
.tl-dot.green  { background: #10b981; box-shadow: 0 0 12px #10b981; }
.tl-dot.yellow { background: #eab308; box-shadow: 0 0 12px #eab308; }
.tl-dot.orange { background: #f97316; box-shadow: 0 0 12px #f97316; }
.tl-dot.red    { background: #ef4444; box-shadow: 0 0 12px #ef4444; }
.tl-dot.gold   { background: var(--gold); box-shadow: 0 0 12px var(--gold); }
.tl-year {
  width: 70px; flex-shrink: 0;
  font-size: 13px; font-weight: 700; color: var(--muted);
  padding-top: 4px; text-align: right;
}
.tl-card {
  margin-left: 40px; flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 22px;
  transition: border-color 0.2s;
}
.tl-card:hover { border-color: rgba(16,185,129,0.4); }
.tl-card h3 { font-size: 15px; margin-bottom: 8px; }
.tl-card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }
.tl-card em { color: var(--accent); font-style: italic; }
.tl-card strong { color: var(--text); }
.tl-card.highlight {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(245,158,11,0.05), var(--surface));
}

/* ══ TWEET EMBEDS ══ */
.tweets-section { max-width: 1100px; }
.tweet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
  align-items: start;
}
/* Embed column — min-width:0 prevents grid blowout from iframe widths */
.tweet-embed-col {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.tweet-embed-col .twitter-tweet {
  margin: 0 !important;
  width: 100% !important;
}
/* Force iframe to fill column width once widget.js renders */
.tweet-embed-col iframe {
  width: 100% !important;
  max-width: 100% !important;
  border-radius: 12px;
}
/* Fallback: style the raw blockquote before widget.js loads */
.tweet-embed-col blockquote {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.tweet-embed-col blockquote a {
  color: #60a5fa;
  font-size: 12px;
  display: block;
  margin-top: 8px;
}

/* Custom CLOSEAI card (our own tweet — not an embed) */
.tweet-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 18px 20px;
  transition: border-color 0.2s, transform 0.15s;
  display: flex; flex-direction: column;
}
.tweet-card:hover { border-color: rgba(96,165,250,0.4); transform: translateY(-2px); }
.tweet-card-closeai { border-color: var(--accent); }
.tweet-card-closeai:hover { border-color: var(--accent2); }
.tweet-full { grid-column: 1 / -1; }
.tweet-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.tweet-avatar-img {
  width: 42px; height: 42px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
}
.tweet-avatar-img img { width: 100%; height: 100%; object-fit: contain; }
.tweet-meta { flex: 1; min-width: 0; }
.tweet-name { display: block; font-size: 14px; font-weight: 700; }
.tweet-handle { display: block; font-size: 11px; color: var(--muted); }
.tweet-x { font-size: 18px; color: var(--muted); margin-left: auto; }
.tweet-text { font-size: 14px; line-height: 1.65; color: var(--muted); margin-bottom: 14px; flex: 1; }
.tweet-text strong { color: var(--text); }
.tweet-stats { display: flex; gap: 16px; font-size: 12px; color: var(--muted); }

/* scroll offset for fixed nav */
#lore, #drama, #manifesto { scroll-margin-top: 76px; }

/* ══ ABOUT SECTION ══ */
.about-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); max-width: 100%; padding: 90px 8%; }
.about-inner {
  display: flex; align-items: center; gap: 80px;
  max-width: 1000px; margin: 0 auto;
}
.about-text { flex: 1; }
.about-text h2 { font-size: 36px; font-weight: 800; letter-spacing: -1px; margin: 12px 0 20px; }
.about-text p { color: var(--muted); font-size: 15px; margin-bottom: 14px; line-height: 1.75; }
.about-text strong { color: var(--text); }
.about-text em { color: var(--accent); font-style: normal; }
.manifesto-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 10px; }
.manifesto-pills span {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 5px 12px; font-size: 12px; color: var(--muted);
}
.fine-print { font-size: 11px; color: var(--muted); opacity: 0.6; font-style: italic; }
.about-visual { flex: 0 0 260px; display: flex; flex-direction: column; align-items: center; }
.about-bubble {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px 16px 16px 4px;
  padding: 14px 16px; font-size: 13px;
  color: var(--muted); line-height: 1.6; margin-bottom: 12px;
  max-width: 220px; text-align: center;
}
.about-bubble strong { color: var(--accent); }
.scamman-about { width: 200px; object-fit: contain; border-radius: 12px; }

/* ══ CTA SECTION ══ */
.cta-section {
  text-align: center; padding: 100px 8%;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  max-width: 100%;
}
.cta-logo { width: 72px; border-radius: 16px; margin-bottom: 8px; }
.cta-section h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -1px; }
.cta-section p { font-size: 16px; color: var(--muted); }
.cta-fine { font-size: 11px; color: var(--muted); opacity: 0.6; }

/* ══ CHAT APP — SIDEBAR ══ */
.sidebar {
  width: var(--sidebar-w); min-width: var(--sidebar-w);
  background: var(--surface);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  height: 100vh;
  transition: transform 0.25s ease;
  z-index: 100;
}
.sidebar.hidden { transform: translateX(calc(-1 * var(--sidebar-w))); position: absolute; }
.sidebar-header {
  padding: 18px 16px 14px;
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 12px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.sidebar-logo { width: 28px; height: 28px; object-fit: contain; border-radius: 6px; }
.logo-text { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; color: var(--accent); }
.new-chat-btn {
  background: var(--accent); color: #000; border: none;
  border-radius: 8px; padding: 8px 14px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: background 0.15s;
}
.new-chat-btn:hover { background: var(--accent2); }
.sidebar-section { padding: 14px 16px 0; flex-shrink: 0; }
.sidebar-label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 8px; }
.token-card {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px; margin-bottom: 4px;
}
.token-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.token-icon { font-size: 22px; }
.token-name { font-size: 11px; color: var(--muted); }
.token-amount { font-size: 18px; font-weight: 700; color: var(--gold); }
.token-note { font-size: 11px; color: var(--muted); line-height: 1.4; }
.chat-history { flex: 1; overflow-y: auto; max-height: 180px; padding: 4px 0; }
.no-history { font-size: 12px; color: var(--muted); padding: 8px 4px; line-height: 1.6; }
.history-item {
  padding: 7px 10px; border-radius: 8px; font-size: 13px; color: var(--muted);
  cursor: pointer; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: background 0.1s;
}
.history-item:hover { background: var(--surface2); color: var(--text); }
.sidebar-footer { margin-top: auto; padding: 14px 16px; border-top: 1px solid var(--border); }
.lawsuit-ticker {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 10px; margin-bottom: 10px;
  display: flex; flex-direction: column; gap: 4px;
}
.ticker-label { font-size: 10px; font-weight: 700; letter-spacing: 0.06em; color: var(--danger); }
.ticker-text { font-size: 12px; color: var(--muted); line-height: 1.4; }
.footer-tagline { font-size: 12px; color: var(--accent); font-style: italic; margin-bottom: 4px; }
.footer-sub { font-size: 10px; color: var(--muted); line-height: 1.5; }

/* ══ CHAT — MAIN ══ */
.main { flex: 1; display: flex; flex-direction: column; height: 100vh; overflow: hidden; }
.topbar {
  display: flex; align-items: center; gap: 10px; padding: 10px 16px;
  border-bottom: 1px solid var(--border); background: var(--bg); flex-shrink: 0;
}
.sidebar-toggle {
  background: none; border: none; color: var(--muted); font-size: 18px;
  cursor: pointer; padding: 4px 6px; border-radius: 6px; transition: background 0.1s;
}
.sidebar-toggle:hover { background: var(--surface2); color: var(--text); }
.topbar-brand { display: flex; align-items: center; }
.topbar-logo { width: 26px; height: 26px; object-fit: contain; border-radius: 6px; }
.model-pill {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--muted);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 4px 12px;
}
.model-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.top-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.topbar-ca { font-size: 11px; padding: 5px 8px; }
.topbar-x { min-width: 32px; height: 28px; font-size: 14px; }
.top-btn {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--muted); border-radius: 8px; padding: 5px 12px;
  font-size: 12px; cursor: pointer; transition: all 0.15s;
}
.top-btn:hover { background: var(--surface2); color: var(--text); border-color: var(--accent); }

/* Messages */
.messages-container { flex: 1; overflow-y: auto; padding: 0 0 24px; scroll-behavior: smooth; }
.messages-container::-webkit-scrollbar { width: 5px; }
.messages-container::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* Welcome */
.welcome {
  display: flex; flex-direction: column; align-items: center;
  padding: 48px 24px 24px; text-align: center;
  max-width: 700px; margin: 0 auto;
}
.welcome-logo-img { width: 60px; height: 60px; object-fit: contain; border-radius: 14px; margin-bottom: 18px; }
.welcome-title { font-size: 30px; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.5px; }
.brand { color: var(--accent); }
.welcome-subtitle { font-size: 14px; color: var(--muted); margin-bottom: 12px; font-style: italic; }
.welcome-desc { font-size: 15px; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }
.disclaimer-box {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--danger); border-radius: var(--radius);
  padding: 12px 16px; font-size: 13px; color: var(--muted); text-align: left;
  margin-bottom: 28px; max-width: 580px; line-height: 1.6;
}
.disclaimer-box strong { color: var(--text); }
.starter-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; width: 100%; max-width: 680px; }
.starter-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px; cursor: pointer;
  text-align: left; transition: all 0.15s;
  display: flex; flex-direction: column; gap: 8px;
}
.starter-card:hover { background: var(--surface2); border-color: var(--accent); transform: translateY(-1px); }
.starter-icon { font-size: 20px; }
.starter-card p { font-size: 13px; color: var(--muted); line-height: 1.4; }

/* Message bubbles */
#messageList { padding: 20px 0; }
.message {
  display: flex; gap: 14px; padding: 18px 24px;
  max-width: 860px; margin: 0 auto; width: 100%;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:translateY(0)} }
.message.user { flex-direction: row-reverse; }
.message.user .bubble { background: var(--accent); color: #000; font-weight: 500; }
.message.assistant .bubble { background: var(--surface); border: 1px solid var(--border); }
.avatar {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; overflow: hidden;
}
.message.user .avatar { background: var(--accent); color: #000; font-size: 13px; }
.message.assistant .avatar { background: var(--surface2); border: 1px solid var(--border); }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.bubble {
  border-radius: var(--radius); padding: 12px 16px;
  font-size: 14.5px; line-height: 1.7;
  max-width: 700px; white-space: pre-wrap; word-break: break-word;
}
.bubble strong { font-weight: 700; }
.bubble em { font-style: italic; color: var(--accent); }
.bubble code {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 5px; padding: 1px 5px;
  font-family: "Fira Code", monospace; font-size: 13px; color: var(--accent);
}

/* Typing dots */
.typing-dots { display: flex; gap: 4px; align-items: center; padding: 4px 0; }
.typing-dots span { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; animation: bounce 1.2s infinite; }
.typing-dots span:nth-child(2){animation-delay:.2s}
.typing-dots span:nth-child(3){animation-delay:.4s}
@keyframes bounce{0%,100%{transform:translateY(0);opacity:0.4}50%{transform:translateY(-5px);opacity:1}}

/* Input area */
.token-burn { text-align: center; font-size: 11px; color: var(--muted); padding: 4px 0 6px; }
.input-area { padding: 12px 20px 16px; border-top: 1px solid var(--border); background: var(--bg); flex-shrink: 0; }
.input-wrapper {
  display: flex; align-items: flex-end;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 10px 12px 10px 16px; gap: 10px;
  transition: border-color 0.2s;
}
.input-wrapper:focus-within { border-color: var(--accent); }
textarea#chatInput {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-size: 14.5px; line-height: 1.6;
  resize: none; max-height: 160px; font-family: inherit;
}
textarea::placeholder { color: var(--muted); }
.send-btn {
  background: var(--accent); border: none; border-radius: 9px;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #000; flex-shrink: 0; transition: all 0.15s;
}
.send-btn:hover { background: var(--accent2); transform: scale(1.05); }
.send-btn:disabled { background: var(--border); color: var(--muted); cursor: not-allowed; transform: none; }
.input-disclaimer { font-size: 11px; color: var(--muted); text-align: center; margin-top: 8px; }

/* ══ SCAMMAN FLOATER ══ */
.scamman-floater {
  position: fixed; bottom: 100px; right: 20px;
  display: flex; flex-direction: column; align-items: center;
  z-index: 50; cursor: pointer;
}
.floater-img {
  width: 70px; height: 70px; object-fit: cover;
  border-radius: 50%; border: 2px solid var(--accent);
  box-shadow: 0 0 20px rgba(16,185,129,0.3);
  transition: transform 0.2s;
}
.floater-img:hover { transform: scale(1.08); }
.floater-bubble {
  background: var(--surface); border: 1px solid var(--accent);
  border-radius: 12px 12px 12px 4px;
  padding: 8px 12px; font-size: 12px; color: var(--text);
  max-width: 200px; text-align: center; line-height: 1.5;
  margin-bottom: 8px;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.floater-bubble.visible { opacity: 1; transform: translateY(0); }

/* ══ MODAL ══ */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.65); z-index: 200;
  backdrop-filter: blur(4px);
}
.modal-overlay.active { display: block; }
.modal {
  display: none; position: fixed; top: 50%; left: 50%;
  transform: translate(-50%,-50%); z-index: 201;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; width: 500px; max-width: 90vw; max-height: 80vh; overflow-y: auto;
}
.modal.active { display: block; animation: fadeIn 0.2s ease; }
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--border);
}
.modal-header h2 { font-size: 17px; }
.modal-header button { background: none; border: none; color: var(--muted); font-size: 18px; cursor: pointer; }
.modal-body { padding: 20px; }
.modal-body h3 { font-size: 14px; color: var(--accent); margin: 14px 0 6px; }
.modal-body p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }
.modal-body strong { color: var(--text); }
.modal-body em { color: var(--gold); }

/* ══ RESPONSIVE ══ */
@media (max-width: 800px) {
  .hero { flex-direction: column; padding: 100px 6% 60px; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .scamman-hero { width: 200px; }
  .about-inner { flex-direction: column; gap: 40px; }
  .starter-grid { grid-template-columns: 1fr 1fr; }
  .scamman-floater { bottom: 80px; right: 12px; }
  .timeline::before { left: 55px; }
  .tl-year { width: 44px; font-size: 11px; }
  .tl-dot { left: 49px; }
  .tl-card { margin-left: 28px; }
  .nav-link { display: none; }
  .tweet-grid { grid-template-columns: 1fr; }
  .tweet-full { grid-column: 1; }
  .tweet-embed-col iframe { border-radius: 8px; }
}
@media (max-width: 520px) {
  .starter-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .landing-nav { padding: 12px 20px; }
  .message { padding: 14px 16px; }
  .scamman-floater { display: none; }
}
