/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0A0A0A;
  --bg-2: #111111;
  --bg-3: #1A1A1A;
  --fg: #FFFFFF;
  --fg-2: rgba(255,255,255,0.6);
  --fg-3: rgba(255,255,255,0.35);
  --accent: #FF4D00;
  --accent-2: rgba(255,77,0,0.12);
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body { min-height: 100vh; }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.nav-right { display: flex; align-items: center; }
.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--fg-2);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.status-dot {
  width: 7px;
  height: 7px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* === HERO === */
.hero {
  padding: 80px 24px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--fg-2);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-direction: column; gap: 8px; }
.hero-cta-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
}
.hero-meta {
  font-size: 0.85rem;
  color: var(--fg-3);
}

/* === AGENT CARD === */
.agent-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  font-size: 0.875rem;
}
.agent-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.agent-avatar {
  width: 40px;
  height: 40px;
  background: var(--accent-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.agent-info { flex: 1; }
.agent-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
}
.agent-status { color: var(--fg-3); font-size: 0.8rem; }
.agent-live { display: flex; align-items: center; }
.live-pulse {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-orange 1.5s ease-in-out infinite;
}
@keyframes pulse-orange {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}
.agent-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.metric { text-align: center; }
.metric-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.metric-label { font-size: 0.72rem; color: var(--fg-3); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
.agent-workflow { display: flex; flex-direction: column; gap: 10px; }
.workflow-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--fg-3);
}
.workflow-step.done { color: var(--fg-2); }
.workflow-step.active { color: var(--fg); font-weight: 500; }
.step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  flex-shrink: 0;
}
.workflow-step.done .step-num {
  background: var(--accent-2);
  border-color: var(--accent);
  color: var(--accent);
}
.workflow-step.active .step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.agent-daily {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.daily-label {
  font-size: 0.78rem;
  color: var(--fg-3);
  font-style: italic;
}

/* === TICKER === */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 20px 0;
  margin-bottom: 80px;
}
.ticker-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.ticker-label { font-size: 0.8rem; color: var(--fg-3); font-weight: 500; flex-shrink: 0; max-width: 280px; line-height: 1.5; }
.ticker-stats { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; flex: 1; }
.tstat { display: flex; flex-direction: column; gap: 3px; }
.tstat-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; }
.tstat-label { font-size: 0.72rem; color: var(--fg-3); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
.tstat-sep { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* === WHAT IT IS === */
.whatitis { padding: 0 24px 100px; max-width: 1200px; margin: 0 auto; }
.whatitis-inner {}
.section-tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.whatitis-header { margin-bottom: 48px; }
.whatitis-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 560px;
}
.whatitis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.compare-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.compare-label.old { color: var(--fg-3); }
.compare-label.new { color: var(--accent); }
.compare-list { display: flex; flex-direction: column; gap: 14px; }
.compare-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; }
.compare-item.faded { color: var(--fg-3); }
.compare-icon { flex-shrink: 0; margin-top: 2px; }
.compare-cost { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 0.85rem; font-weight: 600; }
.compare-cost.old { color: var(--fg-3); }
.compare-cost.new { color: var(--accent); }

/* === FEATURES === */
.features { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 24px; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 56px;
  max-width: 520px;
}
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.feature-card { background: var(--bg-2); padding: 32px; }
.feature-num { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; color: var(--accent); margin-bottom: 16px; letter-spacing: 0.05em; }
.feature-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.02em; }
.feature-desc { font-size: 0.88rem; line-height: 1.65; color: var(--fg-2); }

/* === DASHBOARD === */
.dashboard-section { padding: 80px 24px; max-width: 1200px; margin: 0 auto; }
.dashboard-inner {}
.dashboard-label { margin-bottom: 40px; }
.dashboard-visual { margin-bottom: 32px; }
.dash-screen {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-3);
}
.dash-tabs { display: flex; gap: 4px; }
.dash-tab { padding: 6px 14px; font-size: 0.8rem; color: var(--fg-3); border-radius: 6px; cursor: pointer; }
.dash-tab.active { background: var(--accent); color: white; font-weight: 600; }
.dash-date { font-size: 0.78rem; color: var(--fg-3); }
.dash-body { padding: 24px; }
.dash-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.dash-kpi { background: var(--bg-3); border: 1px solid var(--border); border-radius: 10px; padding: 16px; }
.dash-kpi.highlight { border-color: var(--accent); background: var(--accent-2); }
.dash-kpi-val { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 4px; }
.dash-kpi.highlight .dash-kpi-val { color: var(--accent); }
.dash-kpi-lbl { font-size: 0.75rem; color: var(--fg-3); font-weight: 500; margin-bottom: 4px; }
.dash-kpi-delta { font-size: 0.72rem; font-weight: 600; color: #22C55E; }
.dash-chart-area { margin-bottom: 24px; }
.chart-label { font-size: 0.75rem; color: var(--fg-3); font-weight: 500; margin-bottom: 16px; letter-spacing: 0.04em; text-transform: uppercase; }
.chart-bars { display: flex; flex-direction: column; gap: 12px; }
.chart-row { display: flex; align-items: center; gap: 16px; }
.chart-label-row { font-size: 0.8rem; color: var(--fg-3); width: 48px; flex-shrink: 0; }
.bar-group { display: flex; align-items: flex-end; gap: 6px; height: 40px; flex: 1; }
.bar { flex: 1; background: var(--bg-3); border-radius: 3px; min-height: 4px; transition: height 0.5s ease; }
.bar.highlight { background: var(--accent); opacity: 0.7; }
.dash-replies {}
.replies-label { font-size: 0.75rem; color: var(--fg-3); font-weight: 500; margin-bottom: 12px; letter-spacing: 0.04em; text-transform: uppercase; }
.reply-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; padding: 12px; background: var(--bg-3); border-radius: 8px; }
.reply-dot { width: 8px; height: 8px; border-radius: 50%; margin-top: 5px; flex-shrink: 0; }
.reply-dot.new { background: var(--accent); }
.reply-text { font-size: 0.85rem; color: var(--fg-2); line-height: 1.5; }
.dashboard-cta { text-align: center; }
.dashboard-cta p { font-size: 0.9rem; color: var(--fg-3); font-style: italic; }

/* === PRICING === */
.pricing { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 24px; }
.pricing-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.pricing-headline { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 48px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: left;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  background: var(--accent-2);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pricing-tier { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.pricing-amount { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; margin-bottom: 10px; }
.pricing-amount span { font-size: 1.2rem; color: var(--fg-3); font-weight: 600; }
.pricing-desc { font-size: 0.88rem; color: var(--fg-3); margin-bottom: 24px; line-height: 1.5; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 0.88rem; color: var(--fg-2); display: flex; align-items: flex-start; gap: 10px; }
.pricing-features li::before { content: ''; width: 16px; height: 16px; background: var(--accent); border-radius: 50%; flex-shrink: 0; margin-top: 2px; mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3 3 7-7' stroke='none' fill='none'/%3E%3Cpath d='M3 8l3 3 7-7' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat; -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3 3 7-7' stroke='none' fill='none'/%3E%3Cpath d='M3 8l3 3 7-7' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat; }
.pricing-note { font-size: 0.82rem; color: var(--fg-3); }

/* === MANIFESTO === */
.manifesto { padding: 100px 24px; max-width: 1200px; margin: 0 auto; }
.manifesto-inner { max-width: 720px; }
.manifesto-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; }
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
  font-style: normal;
}
.manifesto-body { display: flex; flex-direction: column; gap: 18px; }
.manifesto-body p { font-size: 1rem; line-height: 1.75; color: var(--fg-2); }

/* === CLOSING === */
.closing { border-top: 1px solid var(--border); padding: 80px 24px; }
.closing-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.closing-content { max-width: 520px; }
.closing-headline { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px; }
.closing-sub { font-size: 1rem; line-height: 1.65; color: var(--fg-2); }
.closing-stat { text-align: right; flex-shrink: 0; }
.stat-number { font-family: var(--font-display); font-size: 5rem; font-weight: 800; color: var(--accent); letter-spacing: -0.05em; line-height: 1; margin-bottom: 8px; }
.stat-desc { font-size: 0.88rem; color: var(--fg-3); max-width: 200px; line-height: 1.5; }

/* === FOOTER === */
.footer { border-top: 1px solid var(--border); padding: 40px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.footer-copy { font-size: 0.82rem; color: var(--fg-3); }
.footer-links a { font-size: 0.82rem; color: var(--fg-2); text-decoration: none; }
.footer-links a:hover { color: var(--fg); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing-inner { flex-direction: column; align-items: flex-start; }
  .closing-stat { text-align: left; }
  .ticker-inner { flex-direction: column; gap: 16px; }
  .ticker-stats { gap: 20px; }
  .tstat-sep { display: none; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .dash-kpis { grid-template-columns: repeat(2, 1fr); }
  .whatitis-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 20px 40px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}