*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #0e0d0b;
  --paper: #f5f0e8;
  --paper-dark: #ede7d5;
  --red: #c9281a;
  --red-dark: #8f1a10;
  --yellow: #f0c040;
  --mid: #6b6555;
  --border: #2a2820;
  --chat-bg: #141210;
  --chat-surface: #1e1c18;
  --chat-border: #2e2c26;
  --chat-green: #22c55e;
  --mono: 'DM Mono', monospace;
  --display: 'Bebas Neue', sans-serif;
  --serif: 'Playfair Display', serif;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
}

/* ── CONTAINER ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.full-bleed { width: 100%; }

/* ── TICKER ── */
.ticker {
  background: var(--red);
  color: var(--paper);
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid var(--red-dark);
}
.ticker-inner {
  display: inline-block;
  animation: ticker-scroll 30s linear infinite;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ── TOP BAND ── */
.top-band {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 6px 20px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── MASTHEAD ── */
.masthead { border-bottom: 4px solid var(--ink); padding: 40px 0 28px; }
.masthead .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 20px;
}
.masthead-left { font-size: 11px; letter-spacing: 0.08em; color: var(--mid); line-height: 2; }
.masthead-title { text-align: center; }
.masthead-title .ai-label {
  display: inline-block;
  background: var(--red);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 3px 10px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.masthead-title h1 {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}
.masthead-title h1 span { color: var(--red); }
.masthead-title .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--mid);
  margin-top: 10px;
  display: block;
}
.masthead-right { text-align: right; font-size: 11px; letter-spacing: 0.08em; color: var(--mid); line-height: 2; }

/* ── NAV STRIP ── */
.nav-strip {
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  background: var(--paper-dark);
}
.nav-strip .container { display: flex; justify-content: center; }
.nav-strip a {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 22px;
  border-right: 1px solid var(--border);
  transition: background 0.15s, color 0.15s;
}
.nav-strip .container a:first-child { border-left: 1px solid var(--border); }
.nav-strip a:hover { background: var(--ink); color: var(--paper); }

/* ── HERO ── */
.hero { border-bottom: 3px double var(--ink); }
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 520px;
  padding: 0;
}
.hero-copy {
  padding: 60px 50px 60px 40px;
  border-right: 2px solid var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.hero-kicker {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 1px solid var(--red);
  padding-bottom: 6px;
  width: fit-content;
}
.hero-headline { font-family: var(--display); font-size: clamp(34px, 4vw, 56px); line-height: 1.0; }
.hero-headline em { font-family: var(--serif); font-style: italic; color: var(--red); }
.hero-body { font-size: 14px; color: var(--mid); line-height: 1.8; max-width: 420px; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 10px; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--ink); color: var(--paper); font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 28px; border: 2px solid var(--ink); cursor: pointer;
  text-decoration: none; display: inline-block; transition: background 0.15s, color 0.15s;
}
.btn-primary:hover { background: var(--red); border-color: var(--red); }
.btn-ghost {
  background: transparent; color: var(--ink); font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 28px; border: 2px solid var(--ink); cursor: pointer;
  text-decoration: none; display: inline-block; transition: background 0.15s;
}
.btn-ghost:hover { background: var(--paper-dark); }

/* ── HERO VISUAL ── */
.hero-visual {
  background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 50px; gap: 30px; position: relative; overflow: hidden;
}
.hero-visual::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,255,255,0.02) 3px, rgba(255,255,255,0.02) 4px);
}
.robot-face {
  width: 160px; height: 160px; border: 3px solid var(--paper); border-radius: 8px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; position: relative; background: var(--ink); animation: glitch 6s infinite;
}
@keyframes glitch {
  0%, 90%, 100% { transform: translate(0); }
  91%  { transform: translate(-2px, 1px); }
  92%  { transform: translate(2px, -1px); clip-path: inset(10% 0 60% 0); }
  93%  { transform: translate(-1px, 2px); clip-path: inset(50% 0 20% 0); }
  94%  { transform: translate(0); clip-path: none; }
}
.robot-eyes { display: flex; gap: 22px; }
.robot-eye { width: 28px; height: 18px; background: var(--red); border-radius: 3px; animation: blink 5s infinite; }
.robot-eye.left { animation-delay: 0.1s; }
@keyframes blink {
  0%, 94%, 100% { transform: scaleY(1); }
  96% { transform: scaleY(0.08); }
}
.robot-mouth { width: 60px; height: 10px; border: 3px solid var(--paper); border-top: none; border-radius: 0 0 8px 8px; }
.robot-antenna { width: 4px; height: 30px; background: var(--paper); position: absolute; top: -30px; left: 50%; transform: translateX(-50%); }
.robot-antenna::after {
  content: ''; position: absolute; top: -7px; left: -5px; width: 14px; height: 14px;
  background: var(--yellow); border-radius: 50%; animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.chat-preview { width: 100%; max-width: 340px; display: flex; flex-direction: column; gap: 10px; }
.chat-bubble { font-size: 12px; line-height: 1.5; padding: 10px 14px; border-radius: 4px; max-width: 85%; font-family: var(--mono); }
.chat-bubble .speaker { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.65; margin-bottom: 4px; display: block; }
.chat-bubble.user { background: #2a2820; color: #a09a8a; align-self: flex-end; border: 1px solid #3a3830; }
.chat-bubble.bot { background: var(--red); color: var(--paper); align-self: flex-start; border: 1px solid var(--red-dark); }

/* ══════════════════════════════════════════════════
   LIVE CHAT SECTION
══════════════════════════════════════════════════ */
.chat-live-section {
  background: var(--chat-bg);
  border-bottom: 3px solid var(--red);
}
.chat-live-section .container {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* header row */
.chat-live-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--chat-border);
}
.chat-live-meta { display: flex; align-items: center; gap: 20px; }
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--chat-green);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  white-space: nowrap;
}
.live-dot {
  width: 7px; height: 7px;
  background: var(--chat-green);
  border-radius: 50%;
  animation: pulse-live 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-live {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(34,197,94,0); }
}
.live-dot-sm {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; display: inline-block;
}
.live-dot-green { background: var(--chat-green); animation: pulse-live 1.6s ease-in-out infinite; }
.chat-live-kicker { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,240,232,0.35); margin-bottom: 4px; }
.chat-live-heading {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  color: var(--paper);
  letter-spacing: 0.02em;
}
.chat-live-heading span { color: var(--red); }
.chat-live-subhead { font-size: 13px; color: rgba(245,240,232,0.5); max-width: 360px; line-height: 1.7; text-align: right; }

/* two-column body */
.chat-live-body {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: start;
}

/* ── CHAT WINDOW ── */
.chat-window {
  border: 1px solid var(--chat-border);
  background: var(--chat-surface);
  display: flex;
  flex-direction: column;
  min-height: 500px;
}

.chat-window-titlebar {
  background: var(--chat-bg);
  border-bottom: 1px solid var(--chat-border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.titlebar-dots { display: flex; gap: 6px; flex-shrink: 0; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }
.titlebar-label { flex: 1; font-size: 11px; color: rgba(245,240,232,0.3); letter-spacing: 0.06em; text-align: center; }
.titlebar-status { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--chat-green); letter-spacing: 0.08em; flex-shrink: 0; }

.chat-messages {
  flex: 1;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  max-height: 400px;
  scroll-behavior: smooth;
}

/* scrollbar styling */
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--chat-border); border-radius: 2px; }

.msg-row { display: flex; gap: 12px; align-items: flex-start; }
.msg-row--user { flex-direction: row-reverse; }

.msg-avatar {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--red);
  color: var(--paper);
  font-size: 9px;
  letter-spacing: 0.08em;
  font-family: var(--mono);
  display: flex; align-items: center; justify-content: center;
  border-radius: 3px;
  font-weight: 500;
}
.msg-avatar--user {
  background: var(--chat-border);
  color: rgba(245,240,232,0.5);
  font-size: 10px;
}

.msg-bubble {
  max-width: 76%;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.65;
  font-family: var(--mono);
}
.msg-bubble p { margin-bottom: 6px; }
.msg-bubble p:last-of-type { margin-bottom: 0; }

.msg-bubble--bot {
  background: var(--chat-bg);
  color: rgba(245,240,232,0.85);
  border: 1px solid var(--chat-border);
  border-left: 3px solid var(--red);
}
.msg-bubble--user {
  background: rgba(245,240,232,0.06);
  color: rgba(245,240,232,0.6);
  border: 1px solid var(--chat-border);
}

.msg-time {
  display: block;
  font-size: 10px;
  color: rgba(245,240,232,0.2);
  margin-top: 8px;
  letter-spacing: 0.06em;
}

/* typing indicator */
.typing-indicator {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 14px 16px;
}
.typing-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(245,240,232,0.25);
  animation: typing-bounce 1.2s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.15s; }
.typing-dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); background: rgba(245,240,232,0.25); }
  30% { transform: translateY(-5px); background: var(--red); }
}

/* input bar */
.chat-input-bar {
  border-top: 1px solid var(--chat-border);
  display: flex;
  align-items: stretch;
  background: var(--chat-bg);
}
.chat-input {
  flex: 1;
  padding: 16px 18px;
  background: transparent;
  border: none;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--paper);
  outline: none;
}
.chat-input::placeholder { color: rgba(245,240,232,0.2); }
.chat-send-btn {
  padding: 0 20px;
  background: var(--red);
  color: var(--paper);
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  display: flex; align-items: center; justify-content: center;
}
.chat-send-btn:hover { background: var(--red-dark); }
.chat-send-btn svg { width: 18px; height: 18px; }

/* ── CHAT SIDEBAR ── */
.chat-sidebar {
  background: var(--chat-surface);
  border: 1px solid var(--chat-border);
  padding: 0;
  display: flex;
  flex-direction: column;
}

.sidebar-block { padding: 16px 18px; }

.sidebar-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
  margin-bottom: 6px;
}

.sidebar-value {
  font-size: 13px;
  color: var(--paper);
  font-family: var(--mono);
  display: flex;
  align-items: center;
  gap: 7px;
}
.sidebar-value--live { color: var(--chat-green); }
.sidebar-value--red  { color: var(--red); font-size: 12px; letter-spacing: 0.06em; margin-top: 6px; }

.sidebar-big {
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
  color: var(--paper);
  letter-spacing: 0.02em;
}

.sidebar-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--chat-border);
}
.sidebar-stats-row .sidebar-block { border-right: 1px solid var(--chat-border); }
.sidebar-stats-row .sidebar-block:last-child { border-right: none; }

.sarcasm-meter {
  height: 4px;
  background: var(--chat-border);
  border-radius: 2px;
  margin: 8px 0 4px;
  overflow: hidden;
}
.sarcasm-fill {
  height: 100%;
  width: 100%;
  background: var(--red);
  animation: sarcasm-pulse 2s ease-in-out infinite;
}
@keyframes sarcasm-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.sidebar-divider { height: 1px; background: var(--chat-border); }

.sidebar-topics { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.topic-chip {
  background: transparent;
  border: 1px solid var(--chat-border);
  color: rgba(245,240,232,0.5);
  font-family: var(--mono);
  font-size: 11px;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  letter-spacing: 0.04em;
}
.topic-chip:hover {
  border-color: var(--red);
  color: var(--paper);
  background: rgba(201,40,26,0.1);
}

.sidebar-disclaimer {
  padding: 14px 18px;
  font-size: 10px;
  color: rgba(245,240,232,0.2);
  line-height: 1.7;
  letter-spacing: 0.02em;
  border-top: 1px solid var(--chat-border);
  margin-top: auto;
}

/* ── STATS BAR ── */
.stats-bar { background: var(--yellow); border-bottom: 2px solid var(--ink); }
.stats-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0 40px; }
.stat-item { padding: 20px 30px; border-right: 1px solid var(--ink); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--display); font-size: 42px; line-height: 1; color: var(--ink); }
.stat-label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); opacity: 0.7; margin-top: 4px; }

/* ── SECTIONS ── */
.section { border-bottom: 2px solid var(--ink); }
.section .container { padding-top: 70px; padding-bottom: 70px; }
.section-header { display: flex; align-items: baseline; gap: 20px; margin-bottom: 50px; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
.section-number { font-family: var(--display); font-size: 60px; color: var(--paper-dark); line-height: 1; -webkit-text-stroke: 2px var(--ink); }
.section-title { font-family: var(--display); font-size: 36px; letter-spacing: 0.04em; line-height: 1; }

/* ── FEATURES GRID ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); }
.feature-card { padding: 36px 30px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); transition: background 0.2s; }
.feature-card:hover { background: var(--paper-dark); }
.feature-card:nth-child(3), .feature-card:nth-child(6) { border-right: none; }
.feature-icon { width: 40px; height: 40px; background: var(--ink); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feature-icon svg { width: 20px; height: 20px; fill: var(--paper); }
.feature-title { font-family: var(--display); font-size: 20px; letter-spacing: 0.04em; margin-bottom: 10px; }
.feature-desc { font-size: 13px; color: var(--mid); line-height: 1.75; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--paper-dark); border-bottom: 2px solid var(--ink); }
.testimonials .container { padding-top: 70px; padding-bottom: 70px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.testimonial-card { background: var(--paper); border: 1px solid var(--border); padding: 28px; position: relative; }
.testimonial-card::before { content: '"'; font-family: var(--serif); font-style: italic; font-size: 80px; color: var(--red); position: absolute; top: -10px; left: 20px; line-height: 1; opacity: 0.35; }
.testimonial-text { font-family: var(--serif); font-style: italic; font-size: 14px; line-height: 1.8; color: var(--ink); margin-bottom: 16px; padding-top: 20px; }
.testimonial-author { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); border-top: 1px solid var(--border); padding-top: 12px; }
.testimonial-author strong { color: var(--ink); display: block; }

/* ── MANIFESTO ── */
.manifesto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 900px; }
.manifesto-quote { font-family: var(--serif); font-style: italic; font-size: 18px; line-height: 1.7; color: var(--ink); margin-bottom: 20px; }
.manifesto-body { font-size: 13px; color: var(--mid); line-height: 1.9; margin-bottom: 14px; }
.manifesto-disclaimer { font-size: 13px; color: var(--mid); line-height: 1.9; }
.manifesto-disclaimer .highlight { color: var(--red); font-weight: 500; }

/* ── CTA ── */
.cta-section { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.cta-section .container { padding-top: 100px; padding-bottom: 100px; text-align: center; }
.cta-section::before {
  content: 'A.I.'; font-family: var(--display); font-size: 380px; color: rgba(255,255,255,0.03);
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -52%);
  letter-spacing: -0.05em; pointer-events: none; white-space: nowrap;
}
.cta-section h2 { font-family: var(--display); font-size: clamp(40px, 6vw, 80px); letter-spacing: 0.02em; line-height: 1.0; margin-bottom: 20px; position: relative; }
.cta-section h2 span { color: var(--yellow); }
.cta-section .cta-body { color: rgba(245,240,232,0.6); font-size: 14px; max-width: 500px; margin: 0 auto 40px; position: relative; }
.cta-email-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-btn {
  background: var(--red); color: var(--paper); font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 16px 36px; border: 2px solid var(--red); cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.cta-btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.cta-small { margin-top: 16px; font-size: 11px; opacity: 0.4; position: relative; }

/* ── FOOTER ── */
footer { background: var(--ink); }
footer .container { display: flex; justify-content: space-between; align-items: center; padding-top: 40px; padding-bottom: 40px; color: rgba(245,240,232,0.5); font-size: 11px; letter-spacing: 0.08em; }
.footer-logo { font-family: var(--display); font-size: 28px; color: var(--paper); letter-spacing: 0.04em; }
.footer-logo span { color: var(--red); }
.footer-brand-label { margin-top: 8px; font-size: 10px; letter-spacing: 0.1em; }
.disclaimer { max-width: 380px; text-align: right; line-height: 1.8; }
.disclaimer-small { opacity: 0.4; display: block; margin-top: 8px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .masthead .container { grid-template-columns: 1fr; text-align: center; padding: 30px 20px 20px; }
  .masthead-left, .masthead-right { display: none; }
  .nav-strip .container { flex-wrap: wrap; justify-content: center; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-copy { padding: 40px 20px; border-right: none; border-bottom: 2px solid var(--ink); }
  .hero-visual { min-height: 320px; }

  .chat-live-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .chat-live-subhead { text-align: left; }
  .chat-live-body { grid-template-columns: 1fr; }
  .chat-sidebar { display: none; }

  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none !important; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .section .container, .testimonials .container { padding-top: 50px; padding-bottom: 50px; }
  .cta-section .container { padding-top: 70px; padding-bottom: 70px; }
  footer .container { flex-direction: column; gap: 20px; text-align: center; }
  .disclaimer { text-align: center; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 30px; }
}
