/* ============================================================
   oneBot – Klaus Offermann Landing Page
   style.css
   ============================================================ */

:root {
  --primary: #6366F1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --bg: #F8F9FB;
  --dark: #0F1419;
  --dark-card: #161d27;
  --dark-border: rgba(255,255,255,0.08);
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #6366F1 0%, #3b82f6 100%);
  --gradient-text: linear-gradient(135deg, #6366F1, #3b82f6);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(99,102,241,0.12);
  --shadow-lg: 0 8px 48px rgba(99,102,241,0.18);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Utility ── */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(99,102,241,0.3);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(99,102,241,0.4); }

.btn-ghost { color: var(--text); background: rgba(99,102,241,0.08); }
.btn-ghost:hover { background: rgba(99,102,241,0.14); }

.btn-outline { border: 2px solid #e5e7eb; color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-outline-purple { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline-purple:hover { background: var(--primary); color: #fff; }

.btn-lg { padding: 16px 32px; font-size: 16px; }

.w-full { width: 100%; justify-content: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow-dark { color: var(--primary); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}
.section-title.white { color: #fff; }

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 48px;
}
.section-sub.white { color: rgba(255,255,255,0.7); }

/* Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 0;
}
.orb-1 { width: 600px; height: 600px; background: rgba(99,102,241,0.18); top: -200px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background: rgba(59,130,246,0.14); bottom: 0; left: -100px; }
.orb-dark-1 { width: 500px; height: 500px; background: rgba(99,102,241,0.12); top: 0; right: 0; }
.orb-dark-2 { width: 400px; height: 400px; background: rgba(59,130,246,0.1); bottom: 0; left: 0; }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: 0.15s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,249,251,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(99,102,241,0.08);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { height: 36px; }

.logo-fallback {
  display: none;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}
.logo-accent { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }

.nav-cta { margin-left: 16px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 24px;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,0.1);
  color: var(--primary);
  border: 1px solid rgba(99,102,241,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
}

.word-one { color: var(--dark); }
.word-bot { color: var(--dark); }

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Chat mockup */
.chat-mockup {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(99,102,241,0.15), 0 4px 16px rgba(0,0,0,0.06);
  overflow: hidden;
  border: 1px solid rgba(99,102,241,0.1);
  max-width: 420px;
  margin-left: auto;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  background: #fafafa;
}
.chat-avatar { font-size: 28px; }
.chat-name { font-weight: 700; font-size: 15px; font-family: var(--font-heading); }
.chat-status { font-size: 12px; color: #6b7280; display: flex; align-items: center; gap: 4px; }
.status-dot { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; display: inline-block; animation: pulse 2s infinite; }

@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.5;} }

.chat-messages { padding: 16px; display: flex; flex-direction: column; gap: 12px; }

.msg { max-width: 85%; display: flex; flex-direction: column; gap: 4px; }
.msg p { padding: 10px 14px; border-radius: 14px; font-size: 14px; line-height: 1.5; }
.msg-time { font-size: 11px; color: #9ca3af; padding: 0 4px; }

.msg-bot p { background: #f3f4f6; color: var(--text); border-bottom-left-radius: 4px; }
.msg-user { align-self: flex-end; align-items: flex-end; }
.msg-user p { background: var(--primary); color: #fff; border-bottom-right-radius: 4px; }

.chat-input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid #f0f0f0;
  color: #9ca3af;
  font-size: 14px;
}
.chat-send {
  margin-left: auto;
  width: 32px; height: 32px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem {
  background: var(--dark);
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}

.problem-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.problem .eyebrow { color: var(--primary-light); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 48px 0;
}

.bento-card {
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.bento-dark {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
}

.bento-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.bento-p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 12px; }

/* Setup Progress */
.day-label { font-family: var(--font-heading); font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.progress-bar { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; margin-bottom: 8px; }
.progress-fill { height: 100%; background: #ef4444; border-radius: 3px; }
.progress-note { color: #ef4444; font-size: 13px; margin-bottom: 16px; }

.terminal {
  font-family: var(--font-mono);
  font-size: 12px;
  background: rgba(0,0,0,0.4);
  border-radius: 8px;
  padding: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}
.term-red { color: #ef4444; }
.term-yellow { color: #f59e0b; }

/* Config grid */
.config-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.cfg { padding: 4px 10px; border-radius: 100px; font-size: 12px; font-family: var(--font-mono); }
.cfg-green { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.2); }
.cfg-red { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.2); }
.cfg-yellow { background: rgba(245,158,11,0.15); color: #fbbf24; border: 1px solid rgba(245,158,11,0.2); }
.cfg-note { font-size: 12px; color: rgba(255,255,255,0.35); font-family: var(--font-mono); }

/* Crossed chips */
.crossed-chips { display: flex; flex-direction: column; gap: 6px; }
.crossed-chips span { font-size: 13px; color: #f87171; font-family: var(--font-mono); }

/* Cost lines */
.cost-lines { display: flex; flex-direction: column; gap: 8px; }
.cost-line { display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.6); padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.cost-total { display: flex; justify-content: space-between; font-size: 15px; font-weight: 700; color: #fff; padding-top: 4px; }
.cost-red { color: #f87171; }

/* Security */
.exposed-items { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.exp-row { display: flex; gap: 8px; font-size: 13px; }
.exp-label { color: rgba(255,255,255,0.4); }
.exp-val { color: #f87171; }
.exposed-stamp {
  display: inline-block;
  border: 2px solid #ef4444;
  color: #ef4444;
  padding: 4px 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.1em;
  border-radius: 4px;
  transform: rotate(-6deg);
}

/* Ticket */
.ticket-num { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
.ticket-msg { font-size: 15px; color: #fff; margin-bottom: 8px; }
.ticket-wait { font-size: 12px; color: #f59e0b; }

/* Code lock */
.code-block { position: relative; }
.code-lock { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 32px; z-index: 2; }
.code-block pre { opacity: 0.25; }
.code-block code { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.8); }

/* Problem banner */
.problem-banner {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  color: #fff;
  padding: 48px 0 0;
}

/* ============================================================
   SOLUTION
   ============================================================ */
.solution {
  padding: 96px 24px;
  background: var(--bg);
  position: relative;
}

/* Geometric grid background */
.solution::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(99,102,241,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.solution-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 8px;
  background: rgba(99,102,241,0.06);
  border-radius: 100px;
  padding: 6px;
  width: fit-content;
  margin-bottom: 40px;
}

.tab {
  padding: 10px 24px;
  border-radius: 100px;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  color: var(--text-muted);
  background: transparent;
  transition: all 0.25s;
}
.tab.active { background: #fff; color: var(--primary); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Feature split */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.feature-text h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}
.feature-text p { color: var(--text-muted); line-height: 1.7; }

/* Setup wizard */
.setup-wizard {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(99,102,241,0.1);
}

.wizard-header {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.wizard-field { margin-bottom: 16px; }
.wizard-field label { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 4px; font-weight: 600; }
.wf-val { font-size: 14px; color: var(--text); display: flex; align-items: center; gap: 8px; }
.wf-check { color: #22c55e; font-weight: 700; }

.channel-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { padding: 4px 12px; border-radius: 100px; font-size: 12px; background: #f3f4f6; color: var(--text-muted); }
.chip-on { background: rgba(99,102,241,0.1); color: var(--primary); }

/* Coming soon panel */
.coming-soon-panel {
  text-align: center;
  padding: 60px 40px;
  background: rgba(99,102,241,0.04);
  border-radius: var(--radius);
  border: 1px dashed rgba(99,102,241,0.2);
}
.cs-badge {
  display: inline-block;
  background: rgba(99,102,241,0.1);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}
.cs-badge-sm {
  font-size: 11px;
  background: rgba(99,102,241,0.1);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 600;
}
.coming-soon-panel h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.coming-soon-panel p { color: var(--text-muted); }

/* Concierge card */
.concierge-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(99,102,241,0.1);
}
.brief-header { font-family: var(--font-heading); font-weight: 700; font-size: 16px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid #f0f0f0; }
.brief-row { display: flex; justify-content: space-between; font-size: 13px; padding: 8px 0; border-bottom: 1px solid #f9f9f9; color: var(--text-muted); }
.brief-row span:last-child { color: var(--text); font-weight: 500; }
.priority-high { color: #ef4444; font-weight: 600; }
.progress-steps { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.step { font-size: 13px; color: var(--text-muted); display: flex; justify-content: space-between; }
.step.done { color: #22c55e; }
.step.live { font-weight: 700; }
.step span { color: var(--text-muted); }

/* Feature cards */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.feat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(99,102,241,0.08);
  box-shadow: var(--shadow);
}

.feat-icon { font-size: 28px; margin-bottom: 16px; }
.feat-card h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.feat-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }

.memory-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.memory-chips span { font-size: 12px; background: rgba(99,102,241,0.08); color: var(--primary); padding: 4px 10px; border-radius: 100px; }

.timeline { display: flex; flex-direction: column; gap: 8px; }
.tl-item { display: flex; gap: 12px; font-size: 13px; color: var(--text-muted); align-items: center; }
.tl-day { font-weight: 700; color: var(--primary); min-width: 52px; }

/* Skills grid */
.skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.skill-item { display: flex; justify-content: space-between; align-items: center; background: #f9fafb; border-radius: 8px; padding: 8px 12px; font-size: 13px; }
.toggle { width: 28px; height: 16px; background: #e5e7eb; border-radius: 100px; position: relative; }
.toggle.on { background: var(--primary); }
.toggle.on::after { right: 2px; }
.toggle::after { content: ''; position: absolute; top: 2px; left: 2px; width: 12px; height: 12px; background: #fff; border-radius: 50%; transition: 0.2s; }

.marketplace-note { font-size: 12px; color: var(--primary); font-weight: 600; margin-bottom: 16px; }

.code-snippet { background: #0d1117; border-radius: 10px; overflow: hidden; }
.code-header { display: flex; align-items: center; gap: 6px; padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.06); font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.4); }
.code-dot { width: 10px; height: 10px; border-radius: 50%; }
.code-dot.r { background: #ef4444; }
.code-dot.y { background: #f59e0b; }
.code-dot.g { background: #22c55e; }
.code-snippet pre { padding: 14px; }
.code-snippet code { font-family: var(--font-mono); font-size: 12px; color: #79c0ff; line-height: 1.7; }
.code-status { padding: 10px 14px; font-size: 12px; color: #4ade80; font-family: var(--font-mono); border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 8px; }
.rollback-badge { background: rgba(99,102,241,0.2); color: var(--primary-light); padding: 2px 8px; border-radius: 100px; font-size: 11px; }

/* Contacts panel */
.contacts-panel { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.contact-row { display: flex; align-items: flex-start; gap: 12px; background: #f9fafb; border-radius: 10px; padding: 12px; }
.contact-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.av-blue { background: #dbeafe; color: #2563eb; }
.av-purple { background: #ede9fe; color: #7c3aed; }
.av-gray { background: #f3f4f6; color: #6b7280; }
.contact-info { flex: 1; min-width: 0; }
.contact-name { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.contact-name small { color: var(--text-muted); font-weight: 400; margin-left: 4px; }
.contact-msg { font-size: 12px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }
.contact-action { font-size: 11px; color: #9ca3af; }
.contact-badge { flex-shrink: 0; font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 100px; white-space: nowrap; }
.badge-green { background: rgba(34,197,94,0.1); color: #16a34a; }
.badge-yellow { background: rgba(245,158,11,0.1); color: #d97706; }
.badge-red { background: rgba(239,68,68,0.1); color: #dc2626; }

.bot-footer-note { font-size: 12px; color: var(--text-muted); line-height: 1.8; }

/* ============================================================
   USE CASES
   ============================================================ */
.usecases {
  background: var(--dark);
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}

.usecases-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.usecases .eyebrow { color: var(--primary-light); }

.uc-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  margin-top: 48px;
}

.uc-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.uc-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  transition: all 0.25s;
}
.uc-tab:hover { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.04); }
.uc-tab.active { color: #fff; background: rgba(99,102,241,0.15); border-color: rgba(99,102,241,0.3); }
.uc-icon { font-size: 18px; }

.uc-panel { display: none; }
.uc-panel.active { display: block; }

.uc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.uc-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-family: var(--font-mono);
  margin-bottom: 16px;
}

.uc-text h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.uc-text p { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.pill { font-size: 12px; padding: 5px 12px; border-radius: 100px; background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.1); }

.uc-link { color: var(--primary-light); text-decoration: none; font-size: 14px; font-weight: 600; }
.uc-link:hover { color: #fff; }

/* Phone mockup */
.phone-mockup {
  background: #fff;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
  max-width: 320px;
  margin: 0 auto;
}
.phone-notch { width: 80px; height: 8px; background: #e5e7eb; border-radius: 4px; margin: 0 auto 16px; }
.phone-msgs { display: flex; flex-direction: column; gap: 10px; }
.pmsg { max-width: 85%; display: flex; }
.pmsg p { padding: 10px 14px; border-radius: 14px; font-size: 13px; line-height: 1.5; }
.pmsg-bot p { background: #f3f4f6; color: var(--text); border-bottom-left-radius: 4px; }
.pmsg-user { align-self: flex-end; margin-left: auto; }
.pmsg-user p { background: var(--primary); color: #fff; border-bottom-right-radius: 4px; }

/* Business dashboard */
.biz-dashboard {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 360px;
  margin: 0 auto;
}
.biz-header { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 16px; font-family: var(--font-mono); }
.biz-row { display: flex; gap: 8px; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 13px; color: rgba(255,255,255,0.7); }
.biz-task { flex: 1; }
.tag-yellow { background: rgba(245,158,11,0.15); color: #fbbf24; padding: 2px 8px; border-radius: 100px; font-size: 11px; }
.tag-green { background: rgba(34,197,94,0.15); color: #4ade80; padding: 2px 8px; border-radius: 100px; font-size: 11px; }
.tag-red { background: rgba(239,68,68,0.15); color: #f87171; padding: 2px 8px; border-radius: 100px; font-size: 11px; }
.role-switcher { display: flex; gap: 8px; margin-top: 16px; }
.role { padding: 6px 14px; border-radius: 100px; font-size: 12px; color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.04); cursor: pointer; }
.role.active { background: rgba(99,102,241,0.2); color: var(--primary-light); }

/* Companion chat */
.companion-chat {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.companion-glow {
  position: absolute;
  width: 200px; height: 200px;
  background: rgba(99,102,241,0.15);
  border-radius: 50%;
  filter: blur(60px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ============================================================
   TRUST
   ============================================================ */
.trust {
  background: var(--dark);
  padding: 96px 24px;
}
.trust-inner { max-width: 1280px; margin: 0 auto; }
.trust .eyebrow { color: var(--primary-light); }

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 48px;
}

.trust-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 40px;
}

.trust-quote {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--primary);
  line-height: 0.8;
  margin-bottom: 24px;
}

.trust-quote blockquote {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
}

.quote-author { color: var(--primary-light); font-size: 14px; font-weight: 600; }

.trust-icon { font-size: 28px; margin-bottom: 16px; }
.trust-data h3, .trust-security h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.trust-data p { color: rgba(255,255,255,0.6); font-size: 14px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: 96px 24px;
  background: var(--bg);
}
.pricing-inner { max-width: 1280px; margin: 0 auto; }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.price-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(99,102,241,0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.price-featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), var(--shadow-lg);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.price-name { font-family: var(--font-heading); font-size: 18px; font-weight: 700; }
.price-amount { font-family: var(--font-heading); font-size: 36px; font-weight: 800; }
.price-amount span { font-size: 16px; font-weight: 500; color: var(--text-muted); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.price-features li { font-size: 14px; color: var(--text-muted); }
.price-enterprise .price-amount { font-size: 24px; }

.pricing-link { text-align: center; margin-top: 32px; }
.pricing-link a { color: var(--primary); text-decoration: none; font-weight: 600; }

/* ============================================================
   SALESPERSON
   ============================================================ */
.salesperson {
  padding: 96px 24px;
  background: linear-gradient(135deg, #f8f9fb 0%, #eef0ff 100%);
  position: relative;
  overflow: hidden;
}

.sp-orb {
  position: absolute;
  width: 600px; height: 600px;
  background: rgba(99,102,241,0.1);
  border-radius: 50%;
  filter: blur(100px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.salesperson-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }

.section-eyebrow-light {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sp-card {
  display: flex;
  gap: 64px;
  align-items: center;
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(99,102,241,0.1);
  margin-top: 32px;
}

.sp-photo {
  flex-shrink: 0;
  position: relative;
}

.sp-photo img {
  width: 320px;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(99,102,241,0.15);
  display: block;
}

.sp-photo-fallback {
  display: none;
  width: 320px;
  height: 360px;
  background: var(--gradient);
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 800;
  color: #fff;
}

.sp-name {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
}

.sp-title {
  color: var(--primary);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 24px;
}

.sp-desc {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.sp-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 80px 24px 0;
  position: relative;
  overflow: hidden;
}

.footer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.footer-orb-1 { width: 500px; height: 500px; background: rgba(99,102,241,0.1); top: -100px; left: -100px; }
.footer-orb-2 { width: 400px; height: 400px; background: rgba(59,130,246,0.08); bottom: 0; right: -100px; }

.footer-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--dark-border);
  position: relative;
  z-index: 1;
}

.footer-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.footer-cta p { color: rgba(255,255,255,0.6); margin-bottom: 32px; }

.footer-newsletter h4 { font-family: var(--font-heading); font-size: 20px; color: #fff; margin-bottom: 8px; }
.footer-newsletter p { color: rgba(255,255,255,0.5); font-size: 14px; margin-bottom: 16px; }

.newsletter-form { display: flex; gap: 12px; }
.nl-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  color: #fff;
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
}
.nl-input::placeholder { color: rgba(255,255,255,0.3); }
.nl-input:focus { border-color: var(--primary); }

.footer-links {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr 1.5fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--dark-border);
  position: relative;
  z-index: 1;
}

.footer-logo img { height: 36px; }
.logo-fallback-sm { font-family: var(--font-heading); font-size: 20px; font-weight: 800; color: #fff; }

.footer-col h5 { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col a, .footer-col span {
  display: block;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 8px;
  transition: color 0.2s;
  line-height: 1.6;
}
.footer-col a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.footer-bottom span:first-child { flex: 1; }

.social-icons { display: flex; gap: 16px; margin-left: auto; }
.social-icons a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.social-icons a:hover { color: rgba(255,255,255,0.8); }

/* Footer brand corner */
.footer-brand-corner {
  position: relative;
  z-index: 1;
  padding: 24px 0 32px;
  border-top: 1px solid var(--dark-border);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.corner-logo { height: 80px; object-fit: contain; }
.corner-sds { height: 60px; object-fit: contain; }
.corner-text { font-size: 11px; color: rgba(255,255,255,0.2); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: flex; justify-content: center; }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .feature-cards { grid-template-columns: 1fr 1fr; }
  .pricing-cards { grid-template-columns: 1fr 1fr; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .uc-split { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-quote { grid-row: span 1; }
  .footer-links { grid-template-columns: 1fr 1fr 1fr; }
  .sp-card { flex-direction: column; text-align: center; }
  .sp-actions { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(248,249,251,0.97); backdrop-filter: blur(16px); padding: 24px; gap: 16px; border-bottom: 1px solid rgba(99,102,241,0.08); }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .nav-inner { position: relative; }

  .feature-split { grid-template-columns: 1fr; }
  .feature-cards { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .uc-layout { grid-template-columns: 1fr; }
  .uc-nav { flex-direction: row; overflow-x: auto; }
  .footer-cta { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .sp-photo img, .sp-photo-fallback { width: 240px; height: 280px; }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .tabs { width: 100%; overflow-x: auto; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .social-icons { margin-left: 0; }
  .footer-brand-corner { align-items: flex-start; }
}
