/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0f1a2b;
  --bg-2: #141f30;
  --bg-card: #1a2940;
  --accent: #f59e0b;
  --accent-2: #fbbf24;
  --text: #e8edf5;
  --text-muted: #7a8ea8;
  --border: rgba(245, 158, 11, 0.15);
  --radius: 12px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 26, 43, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}
.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
}
.status-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Hero */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--accent-2);
  font-size: 0.78rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-2);
  border-radius: 50%;
}
.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
}

/* Hero Visual - Deal Card Stack */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.deal-card-stack {
  position: relative;
  width: 300px;
  height: 220px;
}
.deal-card {
  position: absolute;
  width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: transform 0.3s ease;
}
.deal-card-back {
  top: 10px; left: 20px;
  transform: rotate(-4deg);
  opacity: 0.5;
  z-index: 1;
}
.deal-card-mid {
  top: 30px; left: 10px;
  transform: rotate(-1.5deg);
  opacity: 0.75;
  z-index: 2;
}
.deal-card-front {
  top: 0; left: 0;
  z-index: 3;
  border-color: rgba(245, 158, 11, 0.4);
  background: linear-gradient(135deg, #1a2940 0%, #1f3349 100%);
}
.deal-card-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.deal-card-address {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.deal-card-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.deal-card-asrv {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}
.deal-card-closed {
  color: #10b981;
  font-size: 1rem;
}

/* Stats */
.stats-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.stat-item { text-align: center; }
.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 160px;
  margin: 0 auto;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* Features */
.features-section { padding: 100px 32px; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header-left { text-align: left; }
.section-tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.feature-card:hover {
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.feature-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Process */
.process-section {
  background: var(--bg-2);
  padding: 100px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(245, 158, 11, 0.15);
  line-height: 1;
}
.step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.step-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 600px;
}

/* Why */
.why-section { padding: 100px 32px; }
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-points { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-point-icon {
  width: 36px;
  height: 36px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-point strong { display: block; color: var(--text); margin-bottom: 4px; font-family: 'Outfit', sans-serif; font-size: 0.95rem; }
.why-point div:last-child { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* Flow Diagram */
.deal-flow-diagram {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}
.flow-step {
  display: flex;
  align-items: center;
  gap: 16px;
}
.flow-node {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
}
.flow-node-lead { border-left: 3px solid #60a5fa; }
.flow-node-ai { border-left: 3px solid #a78bfa; }
.flow-node-contract { border-left: 3px solid var(--accent); }
.flow-node-buyer { border-left: 3px solid #10b981; }
.flow-node-profit { border-left: 3px solid #10b981; background: rgba(16, 185, 129, 0.08); }
.flow-node-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.flow-node-sub {
  display: block;
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 500;
}
.flow-node-sub.profit { color: #10b981; font-weight: 700; font-size: 1rem; }
.flow-arrow { color: var(--accent); padding: 8px 0; }

/* Closing */
.closing-section {
  background: linear-gradient(135deg, var(--bg) 0%, #1a2540 100%);
  padding: 100px 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.closing-accent { color: var(--accent); }
.closing-body {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* Footer */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 48px 32px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}
.footer-tagline { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 8px; }
.footer-note { font-size: 0.78rem; color: var(--text-muted); opacity: 0.6; }

/* Responsive */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 24px 40px;
    gap: 40px;
  }
  .hero-visual { display: none; }
  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
  .stat-divider { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .process-step { grid-template-columns: 60px 1fr; gap: 20px; }
  .step-number { font-size: 2rem; }
  .nav-inner { padding: 12px 20px; }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.2rem; }
}