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

:root {
  --gold: #D4A017;
  --gold-light: rgba(212,160,23,0.12);
  --gold-border: rgba(212,160,23,0.25);
  --bg: #080808;
  --surface: #111111;
  --elevated: #1a1a1a;
  --border: #242424;
  --text: #f5f5f5;
  --text-muted: #888;
  --text-dim: #555;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: border-color 0.15s, background 0.15s;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--gold-border); background: var(--gold-light); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: color 0.15s;
  white-space: nowrap;
}
.btn-ghost:hover { color: var(--text); }

.btn-lg { font-size: 15px; padding: 13px 26px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.nav.scrolled { background: rgba(8,8,8,0.97); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
}
.nav-mobile a {
  font-size: 15px;
  color: var(--text-muted);
  padding: 10px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .btn-primary, .nav-mobile .btn-ghost { margin-top: 8px; justify-content: center; }

/* ── Hero ── */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-inner {
  text-align: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.gold { color: var(--gold); }

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 64px;
}

/* ── Dashboard preview ── */
.hero-preview {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
  max-width: 900px;
  margin: 0 auto;
}

.preview-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--elevated);
  border-bottom: 1px solid var(--border);
}
.preview-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.preview-dot.red { background: #ff5f57; }
.preview-dot.yellow { background: #febc2e; }
.preview-dot.green { background: #28c840; }
.preview-url {
  margin-left: 8px;
  font-size: 12px;
  color: var(--text-dim);
  background: var(--bg);
  padding: 3px 12px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.preview-body {
  display: flex;
  height: 320px;
}

.preview-sidebar {
  width: 160px;
  background: var(--elevated);
  border-right: 1px solid var(--border);
  padding: 16px 12px;
  flex-shrink: 0;
}
.preview-logo-sm {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 0 4px;
}
.preview-nav-items { display: flex; flex-direction: column; gap: 2px; }
.preview-nav-item {
  font-size: 12px;
  color: var(--text-dim);
  padding: 7px 10px;
  border-radius: 6px;
  cursor: default;
}
.preview-nav-item.active {
  background: var(--gold-light);
  color: var(--gold);
  font-weight: 600;
}

.preview-main {
  flex: 1;
  padding: 20px;
  overflow: hidden;
}

.preview-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.preview-stat {
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
}
.preview-stat-label { font-size: 10px; color: var(--text-dim); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.preview-stat-value { font-size: 16px; font-weight: 700; color: var(--text); }
.preview-stat-value.gold { color: var(--gold); }
.preview-stat-sub { font-size: 10px; color: var(--text-dim); margin-top: 2px; }

.preview-chart { background: var(--elevated); border: 1px solid var(--border); border-radius: 10px; padding: 14px; }
.preview-chart-label { font-size: 11px; font-weight: 600; color: var(--text-muted); margin-bottom: 12px; }
.preview-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 60px;
}
.preview-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
}
.preview-bar-fill {
  width: 100%;
  background: rgba(212,160,23,0.3);
  border-radius: 3px 3px 0 0;
  transition: height 0.3s;
}
.preview-bar-fill.gold { background: var(--gold); }
.preview-bar-wrap span { font-size: 9px; color: var(--text-dim); }

/* ── Social proof ── */
.social-proof {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.social-proof-label {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.social-proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.sp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 40px;
}
.sp-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.5px;
}
.sp-label { font-size: 13px; color: var(--text-muted); }
.sp-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── Section headers ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-badge {
  display: inline-block;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ── Features ── */
.features { padding: 100px 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
}
.feature-card-large {
  grid-column: span 2;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.feature-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.feature-tags span {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  padding: 3px 10px;
  border-radius: 99px;
}

/* ── How it works ── */
.how-it-works {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 2px solid var(--gold-border);
  color: var(--gold);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-content h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.step-connector {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin-top: 26px;
  flex-shrink: 0;
}

/* ── Pricing ── */
.pricing { padding: 100px 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: border-color 0.2s;
}
.pricing-card:hover { border-color: var(--gold-border); }

.pricing-card-featured {
  border-color: var(--gold-border);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-plan {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}
.price-currency { font-size: 16px; font-weight: 700; color: var(--text-muted); }
.price-amount { font-size: 42px; font-weight: 800; letter-spacing: -1px; }
.price-period { font-size: 14px; color: var(--text-muted); }

.pricing-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
  min-height: 40px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.check {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.cross {
  color: var(--text-dim);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-features li:has(.cross) {
  opacity: 0.45;
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 32px;
}

/* ── CTA ── */
.cta {
  padding: 100px 0;
  position: relative;
  text-align: center;
}
.cta-inner { position: relative; }
.cta h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.cta p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 36px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.cta-note { font-size: 13px; color: var(--text-dim); }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); max-width: 260px; line-height: 1.6; }

.footer-links {
  display: flex;
  gap: 48px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-dim);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile.open { display: flex; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card-large { grid-column: span 2; }

  .steps { flex-direction: column; align-items: center; gap: 24px; }
  .step-connector { width: 2px; height: 32px; margin: 0; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; gap: 32px; }

  .preview-sidebar { display: none; }
  .preview-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero { padding: 100px 0 60px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-large { grid-column: span 1; }
  .social-proof-stats { gap: 24px; }
  .sp-divider { display: none; }
  .sp-stat { padding: 0 16px; }
  .preview-stats { grid-template-columns: repeat(2, 1fr); }
  .preview-body { height: 240px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── Chatbot widget ───────────────────────────────────────────────────────────*/
#chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

#chat-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  box-shadow: 0 4px 20px rgba(212,160,23,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  flex-shrink: 0;
}
#chat-toggle:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(212,160,23,0.5); }

#chat-unread {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
}

#chat-panel {
  display: none;
  flex-direction: column;
  width: 340px;
  height: 480px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

#chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--elevated);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
#chat-header-left { display: flex; align-items: center; gap: 10px; }
#chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#chat-name { font-size: 14px; font-weight: 700; color: var(--text); }
#chat-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}
#chat-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
#chat-close-btn:hover { color: var(--text); background: var(--border); }

#chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}
#chat-messages::-webkit-scrollbar { width: 4px; }
#chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.chat-msg { display: flex; }
.chat-msg-bot { justify-content: flex-start; }
.chat-msg-user { justify-content: flex-end; }

.chat-bubble {
  max-width: 82%;
  padding: 10px 13px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.55;
}
.chat-msg-bot .chat-bubble {
  background: var(--elevated);
  border: 1px solid var(--border);
  color: var(--text);
  border-bottom-left-radius: 4px;
}
.chat-msg-user .chat-bubble {
  background: var(--gold);
  color: #000;
  font-weight: 500;
  border-bottom-right-radius: 4px;
}

/* Typing indicator */
.chat-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 14px;
}
.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-dim);
  animation: typing-bounce 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
}

#chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 12px 10px;
  flex-shrink: 0;
}
.chat-suggest-btn {
  background: var(--elevated);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: 99px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  font-family: inherit;
}
.chat-suggest-btn:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  background: var(--gold-light);
}

#chat-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
#chat-input {
  flex: 1;
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 13px;
  font-family: inherit;
  padding: 9px 12px;
  outline: none;
  transition: border-color 0.15s;
}
#chat-input::placeholder { color: var(--text-dim); }
#chat-input:focus { border-color: var(--gold-border); }

#chat-send {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
#chat-send:hover { opacity: 0.85; }

@media (max-width: 400px) {
  #chat-panel { width: calc(100vw - 32px); }
  #chat-widget { right: 16px; bottom: 16px; }
}

/* ── Field agents section ─────────────────────────────────────────────────────*/
.field-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.field-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.field-text .section-badge { margin-bottom: 16px; }

.field-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.field-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.field-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.field-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.field-points svg { flex-shrink: 0; }

.field-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.field-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: brightness(0.88);
}

.field-image-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 99px;
}

@media (max-width: 900px) {
  .field-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .field-image { height: 280px; }
}

/* ── Download section ─────────────────────────────────────────────────────────*/
.download {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.download-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.download-text .section-badge { margin-bottom: 16px; }

.download-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.download-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

.download-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  color: var(--text);
  transition: border-color 0.15s, transform 0.15s;
  min-width: 160px;
}
.store-badge:hover {
  border-color: var(--gold-border);
  transform: translateY(-1px);
}
.store-badge-ios { opacity: 0.5; cursor: default; }
.store-badge-ios:hover { transform: none; border-color: var(--border); }

.badge-sub {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1;
  margin-bottom: 2px;
}
.badge-main {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.download-note {
  font-size: 12px;
  color: var(--text-dim);
}

/* ── Phone mockup ─────────────────────────────────────────────────────────────*/
.download-phone {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 260px;
  background: #0a0a0a;
  border-radius: 36px;
  border: 2px solid #2a2a2a;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: #1a1a1a;
  border-radius: 3px;
}

.phone-screen {
  background: #080808;
  border-radius: 26px;
  overflow: hidden;
  padding-top: 24px;
}

.phone-header {
  padding: 0 16px 8px;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #888;
}
.phone-icons {
  display: flex;
  gap: 4px;
  color: #888;
}

.phone-content {
  padding: 8px 16px 20px;
}

.phone-greeting {
  font-size: 13px;
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 12px;
}

.phone-card {
  background: #111;
  border: 1px solid #242424;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 16px;
}
.phone-card-label {
  font-size: 9px;
  color: #666;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.phone-card-amount {
  font-size: 22px;
  font-weight: 800;
  color: #f5f5f5;
  margin-bottom: 8px;
}
.phone-chips {
  display: flex;
  gap: 6px;
}
.phone-chip {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 99px;
}
.phone-chip.green { background: rgba(16,185,129,0.12); color: #10b981; }
.phone-chip.amber { background: rgba(245,158,11,0.12); color: #f59e0b; }

.phone-section-title {
  font-size: 11px;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.phone-txn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #1a1a1a;
}
.phone-txn:last-child { border-bottom: none; }

.phone-txn-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.green-bg { background: rgba(16,185,129,0.12); color: #10b981; }
.red-bg   { background: rgba(239,68,68,0.12);  color: #ef4444; }

.phone-txn-info { flex: 1; min-width: 0; }
.phone-txn-name { font-size: 11px; font-weight: 600; color: #f5f5f5; }
.phone-txn-meta { font-size: 10px; color: #555; margin-top: 1px; }

.phone-txn-amount { font-size: 11px; font-weight: 700; flex-shrink: 0; }
.phone-txn-amount.green { color: #10b981; }
.phone-txn-amount.red   { color: #ef4444; }

@media (max-width: 900px) {
  .download-inner { grid-template-columns: 1fr; gap: 40px; }
  .download-phone { order: -1; }
  .phone-frame { width: 220px; }
}

/* ── Pitch section ── */
.pitch {
  padding: 100px 0 80px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.pitch-intro {
  max-width: 760px;
  margin: 0 auto 72px;
  text-align: center;
}

.pitch-headline {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 16px 0 24px;
}

.pitch-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
}

/* Problem / Solution split */
.pitch-split {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 48px;
  margin-bottom: 80px;
  align-items: start;
}

.pitch-divider-v {
  background: var(--border);
  width: 1px;
  align-self: stretch;
  min-height: 400px;
}

.pitch-block-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.problem-label {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.solution-label {
  background: var(--gold-light);
  color: var(--gold);
  border: 1px solid var(--gold-border);
}

.pitch-problem h3,
.pitch-solution h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.35;
}

.pitch-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pitch-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pitch-list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--elevated);
  border: 1px solid var(--border);
  color: var(--text-muted);
  margin-top: 1px;
}

.pitch-list-icon.gold-icon {
  background: var(--gold-light);
  border-color: var(--gold-border);
}

.pitch-list li div {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pitch-list li div strong {
  color: var(--text);
  font-weight: 600;
}

/* Who we serve */
.pitch-audience {
  margin-bottom: 72px;
  text-align: center;
}

.pitch-audience-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.pitch-audience-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pitch-audience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.pitch-audience-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
}

.pitch-audience-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  margin: 0 auto 14px;
}

.pitch-audience-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pitch-audience-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Mission / quote */
.pitch-mission {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.pitch-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.75;
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  text-align: left;
  margin-bottom: 36px;
}

.pitch-mission-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px) {
  .pitch-split {
    grid-template-columns: 1fr;
    gap: 48px 0;
  }
  .pitch-divider-v { display: none; }

  .pitch-audience-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .pitch-audience-cards {
    grid-template-columns: 1fr;
  }
  .pitch-quote {
    font-size: 1rem;
  }
}

/* ── Testimonials ── */
.testimonials {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s, transform 0.2s;
}

.testimonial-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
}

.testimonial-card-featured {
  border-color: var(--gold-border);
  background: linear-gradient(135deg, var(--elevated) 0%, var(--bg) 100%);
  grid-column: span 1;
  position: relative;
}

.testimonial-card-featured::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.15;
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}

.testimonial-quote {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-card-featured .testimonial-quote {
  color: var(--text);
  font-size: 0.95rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
}

.testimonial-card-featured .testimonial-avatar {
  background: var(--gold-light);
  border-color: var(--gold-border);
  color: var(--gold);
}

.testimonial-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 960px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
