/* ======================================
   OUTBOUNDAI — CUSTOM STYLESHEET
   ====================================== */

:root {
  --bg: #0d0d0f;
  --bg-surface: #141418;
  --bg-card: #1c1c22;
  --fg: #f0ede8;
  --fg-muted: #8a8580;
  --accent: #ff4d00;
  --accent-dim: rgba(255, 77, 0, 0.12);
  --border: rgba(240, 237, 232, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- NAV ---- */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-weight: 500;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0); }
}

/* ---- HERO ---- */
.hero {
  padding: 80px 0 60px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: start;
}
.hero-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-agent-preview {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 520px;
}
.agent-header {
  background: var(--bg-card);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.agent-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}
.agent-dot.active {
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.agent-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--fg);
}
.agent-status {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-left: auto;
}
.agent-lines {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.agent-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.agent-ts {
  font-size: 0.72rem;
  color: var(--fg-muted);
  min-width: 48px;
  font-family: var(--font-body);
  padding-top: 2px;
}
.agent-text {
  font-size: 0.82rem;
  color: var(--fg);
  line-height: 1.5;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 40px;
}
.hero-stat {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.hero-stat:first-child {
  padding-top: 0;
}
.hero-stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.4;
  font-weight: 300;
}

/* ---- PROOF ---- */
.proof {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 0;
}
.proof-item {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}
.proof-stat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 8px;
}
.proof-text {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ---- HOW ---- */
.how {
  padding: 100px 0;
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 60px;
}
.how-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.step {
  padding: 40px;
  border: 1px solid var(--border);
  margin: -1px -1px 0 0;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ---- FEATURES ---- */
.features {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.feature-card {
  padding: 36px;
  border: 1px solid var(--border);
  margin: -1px -1px 0 0;
  background: transparent;
  transition: background 0.2s;
}
.feature-card.tall {
  grid-row: span 2;
}
.feature-card:hover {
  background: var(--bg-surface);
}
.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 8px;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ---- CLOSING ---- */
.closing {
  padding: 100px 0 120px;
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.closing-statement {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.15;
  max-width: 700px;
}

/* ---- FOOTER ---- */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-top: 4px;
  display: block;
}
.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-meta {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-align: right;
  max-width: 280px;
  line-height: 1.5;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-right {
    flex-direction: row;
    padding-top: 0;
  }
  .hero-stat {
    flex: 1;
    padding: 20px 0;
    margin: 0 20px 0 0;
  }
  .proof-inner {
    flex-direction: column;
    gap: 40px;
  }
  .proof-divider {
    width: 60px;
    height: 1px;
  }
  .how-steps {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card.tall {
    grid-row: span 1;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-meta {
    text-align: left;
    max-width: none;
  }
}

@media (max-width: 600px) {
  .hero-headline {
    font-size: 2.4rem;
  }
  .hero-lede {
    font-size: 1rem;
  }
  .closing-statement {
    font-size: 1.8rem;
  }
  .hero-right {
    display: none;
  }
}