:root {
  --bg: #0A0A0A;
  --bg-card: #141414;
  --fg: #F2F2F2;
  --fg-muted: #8A8A8A;
  --accent: #FF4D1C;
  --accent-light: rgba(255, 77, 28, 0.08);
  --border: #242424;
  --green: #2ECC71;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 100px;
  position: relative;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(52px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.hero-headline br { display: block; }

.hero-desc {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* MOCKUP */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.agent-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.mockup-header {
  background: #1A1A1A;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #28CA42; }

.mockup-title {
  font-size: 12px;
  color: var(--fg-muted);
  margin-left: 8px;
  font-weight: 500;
}

.mockup-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.log-entry {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  animation: slideIn 0.5s ease-out forwards;
  opacity: 0;
}

.log-entry:nth-child(1) { animation-delay: 0.3s; }
.log-entry:nth-child(2) { animation-delay: 0.7s; }
.log-entry:nth-child(3) { animation-delay: 1.1s; }
.log-entry:nth-child(4) { animation-delay: 1.5s; }
.log-entry:nth-child(5) { animation-delay: 1.9s; }

@keyframes slideIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.log-icon { color: var(--accent); font-size: 14px; line-height: 1.6; }
.log-text { color: #B0B0B0; line-height: 1.5; }
.log-last .log-text { color: var(--fg-muted); font-style: italic; }

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
}

.trust-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

/* FEATURES */
.features {
  padding: 100px;
  background: #0D0D0D;
  border-top: 1px solid var(--border);
}

.features-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.features-headline {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}

.features-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}

.feature-card {
  background: var(--bg-card);
  padding: 40px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: #3A3A3A;
}

.feature-card-accent {
  background: linear-gradient(135deg, rgba(255,77,28,0.06) 0%, var(--bg-card) 60%);
  border-color: rgba(255,77,28,0.2);
}

.feature-card-accent:hover {
  border-color: rgba(255,77,28,0.4);
}

.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 120px 100px;
  position: relative;
  overflow: hidden;
}

.closing-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Syne', sans-serif;
  font-size: 280px;
  font-weight: 800;
  color: rgba(255, 77, 28, 0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.closing-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing-quote {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 40px;
}

.cta-tag {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

/* FOOTER */
.site-footer {
  padding: 60px 100px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #080808;
}

.footer-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}

.footer-copy {
  font-size: 12px;
  color: #444;
  margin-top: 8px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero {
    padding: 60px 40px;
    gap: 40px;
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .features, .closing { padding: 60px 40px; }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .closing-bg-text { font-size: 160px; }
}

@media (max-width: 640px) {
  .hero {
    padding: 40px 24px;
    gap: 40px;
  }
  .features, .closing, .site-footer {
    padding: 60px 24px;
  }
  .hero-headline { font-size: 42px; }
  .features-headline { font-size: 28px; }
  .closing-quote { font-size: 20px; }
  .closing-bg-text { font-size: 100px; }
}