/* ─── BASE ──────────────────────────────────────────────────── */
:root {
  --bg: #111111;
  --surface: #181818;
  --surface-2: #202020;
  --border: #2a2a2a;
  --border-light: #333333;
  --text: #f0ede8;
  --text-muted: #9a9590;
  --text-dim: #5a5652;
  --accent: #c8a96e;
  --accent-dim: rgba(200, 169, 110, 0.12);
  --accent-glow: rgba(200, 169, 110, 0.05);
}

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

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

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

/* ─── NAV ──────────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(12px);
}

.nav-brand { display: flex; align-items: center; gap: 0.625rem; }

.brand-icon {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-icon svg { display: block; }

.brand-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.brand-name span { color: var(--text-muted); font-weight: 400; }

.nav-tag {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  padding: 5rem 3rem 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-kicker {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.hero-headline em { font-style: normal; color: var(--text-muted); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 3rem;
}

.proof-avatars { display: flex; }

.proof-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-right: -8px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 600;
}

.proof-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.proof-text strong { color: var(--text); font-weight: 600; }

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--accent);
  color: #111;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}

.btn-primary:hover { background: #d4b87e; transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: transparent;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.15s, color 0.15s;
}

.btn-secondary:hover { border-color: var(--border-light); color: var(--text); }

/* ─── DIVIDER ──────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 3rem;
}

/* ─── SECTION SHARED ───────────────────────────────────────── */
.section {
  padding: 5rem 3rem;
}

.section-header { margin-bottom: 3rem; }

.section-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.875rem;
}

.section-title {
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  max-width: 620px;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
  margin-top: 0.75rem;
}

/* ─── AUTOMATE SECTION ─────────────────────────────────────── */
.automate { background: var(--surface); border-top: 1px solid var(--border); }

.automate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.automate-item {
  background: var(--surface);
  padding: 2rem 2rem 2rem 2.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: background 0.15s;
}

.automate-item:hover { background: var(--surface-2); }

.automate-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.automate-icon svg { display: block; }

.automate-content { flex: 1; }

.automate-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.automate-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── SOCIAL PROOF ──────────────────────────────────────────── */
.proof { background: var(--bg); }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.proof-quote p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
}

.proof-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.proof-avatar-sm {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(200, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.proof-info { display: flex; flex-direction: column; gap: 0.15rem; }

.proof-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.proof-role {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.proof-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem 2rem;
}

.proof-stat { flex: 1; text-align: center; }

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 140px;
  margin: 0 auto;
}

.proof-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 1rem;
}

/* ─── HOW ───────────────────────────────────────────────────── */
.how { background: var(--bg); }

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.how-step {
  padding: 2.25rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  position: relative;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(200, 169, 110, 0.2);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.step-body {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── TRADES ─────────────────────────────────────────────────── */
.trades {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trades-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.trades-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.trades-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.trade-tag {
  padding: 0.4rem 0.875rem;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.trade-tag:first-child { background: var(--accent-dim); border-color: rgba(200, 169, 110, 0.2); color: var(--accent); }

/* ─── CONTACT ───────────────────────────────────────────────── */
.contact {
  padding: 6rem 3rem;
  background: var(--bg);
  text-align: center;
}

.contact-headline {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}

.contact-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.contact-form {
  max-width: 480px;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.form-input, .form-textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

.form-input:focus, .form-textarea:focus { border-color: var(--accent); }

.form-textarea { resize: vertical; min-height: 100px; }

.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }

.form-full { grid-column: 1 / -1; }

.btn-submit {
  padding: 0.875rem;
  background: var(--accent);
  color: #111;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  width: 100%;
}

.btn-submit:hover { background: #d4b87e; transform: translateY(-1px); }

.contact-or {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.contact-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.contact-alt-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.contact-alt-link:hover { color: var(--text); }

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  padding: 2.5rem 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-icon {
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-icon svg { display: block; }

.footer-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.footer-copy {
  margin-left: auto;
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 1rem 1.5rem; }
  .hero { padding: 3.5rem 1.5rem 3rem; }
  .section { padding: 3.5rem 1.5rem; }
  .automate-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 1rem; }
  .trades-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .contact { padding: 4rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-alt { flex-direction: column; gap: 0.875rem; }
  .footer { padding: 2rem 1.5rem; }
  .footer-copy { margin-left: 0; }
  .divider { margin: 0 1.5rem; }
}