/* ============================================
   MINDLOW AI — THEME CSS
   Dark editorial aesthetic, warm amber accents
   ============================================ */

:root {
  --bg: #0B0B0F;
  --surface: #131318;
  --surface-2: #1A1A22;
  --border: #24242E;
  --accent: #FF6B35;
  --accent-dim: rgba(255, 107, 53, 0.12);
  --text: #F0EEE8;
  --text-muted: #8A8A9A;
  --text-dim: #5A5A6A;
  --success: #22C55E;
  --success-dim: rgba(34, 197, 94, 0.12);
  --mono: 'JetBrains Mono', monospace;
}

/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; font-weight: 700; line-height: 1.15; }
a { color: inherit; text-decoration: none; }

/* Layout */
.container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(11, 11, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 18px; letter-spacing: -0.02em; color: var(--text); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 140px 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text);
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--mono);
}

/* Hero visual */
.automation-demo {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.demo-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.demo-dot { width: 10px; height: 10px; border-radius: 50%; }
.demo-dot.red { background: #FF5F57; }
.demo-dot.yellow { background: #FFBD2E; }
.demo-dot.green { background: #28CA41; }
.demo-label { font-size: 12px; color: var(--text-dim); font-family: var(--mono); margin-left: 8px; }
.demo-flow { padding: 20px; display: flex; flex-direction: column; gap: 0; }
.flow-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.flow-step:last-child { border-bottom: none; }
.flow-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.flow-text { flex: 1; min-width: 0; }
.flow-title { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 2px; }
.flow-desc { font-size: 12px; color: var(--text-dim); font-family: var(--mono); }
.flow-status {
  font-size: 11px;
  font-family: var(--mono);
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.flow-status.success {
  background: var(--success-dim);
  color: var(--success);
}
.flow-connector {
  width: 1px;
  height: 16px;
  background: var(--border);
  margin-left: 25px;
}

/* ========== STATS ========== */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stat-item { text-align: center; flex: 1; }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: var(--text-muted); }
.stat-divider { width: 1px; height: 60px; background: var(--border); }

/* ========== SERVICES ========== */
.services { padding: 100px 40px; max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 12px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-heading {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 56px;
  line-height: 1.2;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.service-card {
  background: var(--surface);
  padding: 32px;
  transition: background 0.2s;
}
.service-card:hover { background: var(--surface-2); }
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.service-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ========== AUDIENCE ========== */
.audience { padding: 80px 40px; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.audience-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.audience-body { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.industry-list { display: flex; flex-direction: column; gap: 12px; }
.industry-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}
.industry-item:hover { border-color: var(--accent); background: var(--accent-dim); }
.industry-icon { color: var(--accent); display: flex; align-items: center; }

/* ========== PRICING ========== */
.pricing { padding: 100px 40px; max-width: 1100px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: border-color 0.2s;
}
.pricing-card.featured {
  border-color: var(--accent);
  background: var(--surface-2);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-family: var(--mono);
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pricing-tier { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.pricing-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.5; }
.pricing-setup { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.pricing-amount { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; letter-spacing: -0.03em; color: var(--text); }
.pricing-note { font-size: 14px; color: var(--text-dim); font-family: var(--mono); }
.pricing-retainer { display: flex; align-items: baseline; gap: 2px; margin-bottom: 28px; }
.pricing-retainer-amount { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: var(--accent); }
.pricing-retainer span:last-child { font-size: 13px; color: var(--text-dim); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 14px; color: var(--text-muted); display: flex; align-items: flex-start; gap: 8px; }
.pricing-features li::before { content: '→'; color: var(--accent); font-family: var(--mono); font-size: 12px; flex-shrink: 0; margin-top: 2px; }

/* ========== TESTIMONIALS ========== */
.testimonials { padding: 80px 40px; background: var(--surface); border-top: 1px solid var(--border); }
.testimonial-block { max-width: 700px; margin: 0 auto 60px; text-align: center; }
.testimonial-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
  color: var(--text);
}
.testimonial-context { font-size: 15px; color: var(--text-muted); }
.outcome-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.outcome-item {
  background: var(--surface-2);
  padding: 28px 24px;
  text-align: center;
}
.outcome-metric {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.outcome-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ========== CLOSING ========== */
.closing { padding: 120px 40px; }
.closing-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.closing-sub { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 40px; }
.closing-tools { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.tool-label { font-size: 12px; color: var(--text-dim); font-family: var(--mono); }
.tool-badge {
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  font-family: var(--mono);
  color: var(--text-muted);
}

/* ========== FOOTER ========== */
.footer { background: var(--surface); border-top: 1px solid var(--border); padding: 60px 40px 40px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 60px; margin-bottom: 48px; }
.footer-logo { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.footer-tagline { font-size: 14px; color: var(--text-muted); }
.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-label { font-size: 12px; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 24px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-dim); font-family: var(--mono); }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 120px 24px 60px; min-height: auto; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .audience-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-inner { flex-direction: column; gap: 40px; }
  .stat-divider { width: 60px; height: 1px; }
  .outcome-list { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { gap: 32px; }
  .nav-links { display: none; }
  .nav { padding: 16px 24px; }
}