:root {
  --crimson: #8B1A1A;
  --crimson-light: #B22222;
  --crimson-dark: #5C0E0E;
  --gold: #C8B87A;
  --gold-light: #E0D4A0;
  --tan: #C4BB9A;
  --dark: #0F0D0B;
  --dark-2: #1A1612;
  --dark-3: #252018;
  --dark-4: #2F2820;
  --mid: #3D3028;
  --text: #F0EAE0;
  --text-muted: #9A8E7E;
  --text-dim: #6A5E50;
  --border: rgba(200, 184, 122, 0.12);
  --border-light: rgba(200, 184, 122, 0.22);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--crimson); border-radius: 3px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 84px;
  background: #E3D4AD;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
}

.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.nav-logo-text span { color: var(--crimson); }

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none; color: #2a2a2a;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--crimson); }

.nav-links a.nav-highlight {
  color: var(--crimson);
  font-weight: 600;
}

.nav-links a.nav-highlight:hover { color: var(--crimson-light); }

.nav-cta {
  display: flex; align-items: center; gap: 12px;
}

.btn-outline {
  padding: 9px 20px;
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 8px;
  color: #1a1a1a; font-size: 14px; font-weight: 500;
  cursor: pointer; background: transparent;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: var(--crimson);
  color: var(--crimson);
}

.btn-primary {
  padding: 10px 22px;
  background: var(--crimson);
  border: 1px solid var(--crimson-light);
  border-radius: 8px;
  color: white; font-size: 14px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--crimson-light);
  box-shadow: 0 0 20px rgba(178, 34, 34, 0.35);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 5% 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(139, 26, 26, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 90%, rgba(200, 184, 122, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}

.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(139, 26, 26, 0.18);
  border: 1px solid rgba(139, 26, 26, 0.35);
  border-radius: 20px;
  font-size: 12px; font-weight: 600;
  color: #E88;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #E88;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--crimson-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px; font-weight: 400;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.65;
}

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

.btn-hero {
  padding: 14px 28px;
  background: var(--crimson);
  border: 1px solid var(--crimson-light);
  border-radius: 10px;
  color: white; font-size: 15px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(139, 26, 26, 0.3);
}

.btn-hero:hover {
  background: var(--crimson-light);
  box-shadow: 0 6px 30px rgba(178, 34, 34, 0.45);
  transform: translateY(-1px);
}

.btn-ghost {
  padding: 14px 28px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  color: var(--text); font-size: 15px; font-weight: 500;
  cursor: pointer; text-decoration: none;
  transition: all 0.25s;
  display: flex; align-items: center; gap: 8px;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
}

.hero-stat {}

.hero-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 30px; font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero-stat-value span { color: var(--crimson-light); }

.hero-stat-label {
  font-size: 12px; color: var(--text-dim);
  font-weight: 500; letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: 2px;
}

.hero-visual {
  position: absolute; right: 3%; top: 50%;
  transform: translateY(-50%);
  width: 42%;
  max-width: 560px;
  z-index: 2;
}

.hero-card {
  background: rgba(37, 32, 24, 0.7);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.hero-card-title {
  font-size: 11px; font-weight: 600;
  color: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 20px;
}

.trust-score-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.trust-score-row:last-child { border-bottom: none; }

.trust-agent {
  display: flex; align-items: center; gap: 10px;
}

.trust-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}

.trust-icon.green { background: rgba(40, 167, 69, 0.15); }
.trust-icon.red { background: rgba(220, 53, 69, 0.15); }
.trust-icon.yellow { background: rgba(255, 193, 7, 0.12); }

.trust-name { font-size: 13px; font-weight: 500; color: var(--text); }
.trust-type { font-size: 11px; color: var(--text-dim); }

.trust-bar-wrap {
  flex: 1; margin: 0 14px;
  height: 4px; background: rgba(255,255,255,0.06);
  border-radius: 2px; overflow: hidden;
}

.trust-bar {
  height: 100%; border-radius: 2px;
  transition: width 1s ease;
}

.trust-bar.high { background: linear-gradient(90deg, #28a745, #52c41a); }
.trust-bar.low { background: linear-gradient(90deg, #dc3545, #ff6b6b); }
.trust-bar.mid { background: linear-gradient(90deg, #ffc107, #ffb300); }

.trust-score-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 700;
  min-width: 32px; text-align: right;
}

.trust-score-val.high { color: #52c41a; }
.trust-score-val.low { color: #ff6b6b; }
.trust-score-val.mid { color: #ffc107; }

.hero-card-footer {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}

.hero-card-footer-text {
  font-size: 11px; color: var(--text-dim);
}

.live-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: #52c41a; font-weight: 600;
}

.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #52c41a;
  animation: pulse 1.5s infinite;
}

/* ── SECTION BASE ── */
section { padding: 100px 5%; }

.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  color: var(--crimson-light);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 18px;
}

.section-title em {
  font-style: normal;
  color: var(--crimson-light);
}

.section-sub {
  font-size: 17px; color: var(--text-muted);
  max-width: 560px; line-height: 1.65;
  margin-bottom: 60px;
}

/* ── LOGOS / SOCIAL PROOF ── */
.logos-bar {
  padding: 36px 5%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--dark-2);
}

.logos-label {
  text-align: center;
  font-size: 11px; font-weight: 600;
  color: var(--text-dim); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 28px;
}

.logos-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}

.logo-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--text-dim);
  letter-spacing: -0.02em;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.logo-item:hover { opacity: 0.9; }

/* ── PROBLEM ── */
.problem {
  background: var(--dark-2);
}

.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.problem-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}

.problem-card:hover { border-color: var(--border-light); }

.problem-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--crimson-dark), var(--crimson-light));
  opacity: 0;
  transition: opacity 0.2s;
}

.problem-card:hover::before { opacity: 1; }

.problem-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px; font-weight: 800;
  color: var(--crimson-light);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}

.problem-card h3 {
  font-size: 18px; font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.problem-card p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.65;
}

.problem-stat {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex; align-items: baseline; gap: 8px;
}

.problem-stat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px; font-weight: 700;
  color: var(--crimson-light);
}

.problem-stat-label {
  font-size: 13px; color: var(--text-dim);
}

/* ── HOW IT WORKS ── */
.how-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.how-steps {
  display: flex; flex-direction: column; gap: 0;
}

.how-step {
  display: flex; gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
}

.how-step:last-child { border-bottom: none; }
.how-step:first-child { padding-top: 0; }

.how-step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(139, 26, 26, 0.15);
  border: 1px solid rgba(139, 26, 26, 0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--crimson-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.how-step-content h4 {
  font-size: 16px; font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.how-step-content p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.6;
}

.kya-badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.kya-badge.kya { background: rgba(139, 26, 26, 0.2); color: #E88; border: 1px solid rgba(139,26,26,0.3); }
.kya-badge.kyac { background: rgba(200, 184, 122, 0.12); color: var(--gold); border: 1px solid rgba(200,184,122,0.2); }

.how-visual {
  position: relative;
}

.flow-diagram {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.flow-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}

.flow-row:last-child { margin-bottom: 0; }

.flow-node {
  flex: 1;
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
}

.flow-node-icon { font-size: 20px; margin-bottom: 6px; }

.flow-node-label {
  font-size: 12px; font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.flow-node-sub {
  font-size: 10px; color: var(--text-dim);
  margin-top: 2px;
}

.flow-node.accent {
  background: rgba(139, 26, 26, 0.15);
  border-color: rgba(139, 26, 26, 0.3);
}

.flow-arrow {
  color: var(--text-dim); font-size: 18px;
  flex-shrink: 0;
}

.flow-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 12px 0;
}

.flow-divider-line {
  flex: 1; height: 1px; background: var(--border);
}

.flow-divider-text {
  font-size: 10px; color: var(--text-dim);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ── PRODUCTS ── */
.products {
  background: var(--dark-2);
}

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

.product-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.product-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 14px;
  background: radial-gradient(ellipse at top left, rgba(139,26,26,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.product-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.product-card:hover::after { opacity: 1; }

.product-icon {
  width: 44px; height: 44px;
  background: rgba(139, 26, 26, 0.15);
  border: 1px solid rgba(139, 26, 26, 0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.product-card h3 {
  font-size: 16px; font-weight: 700;
  color: var(--text); margin-bottom: 10px;
}

.product-card p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.65;
}

/* ── MARKET ── */
.market-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
}

.market-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  text-align: center;
}

.market-card-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px; font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.market-card-val.crimson { color: var(--crimson-light); }
.market-card-val.gold { color: var(--gold); }
.market-card-val.white { color: var(--text); }

.market-card-label {
  font-size: 13px; color: var(--text-muted);
  font-weight: 500;
}

.market-bar-section {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
}

.market-bar-title {
  font-size: 14px; font-weight: 600;
  color: var(--text-dim); letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 28px;
}

.mbar-row {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 16px;
}

.mbar-row:last-child { margin-bottom: 0; }

.mbar-label {
  font-size: 13px; color: var(--text-muted);
  width: 48px; flex-shrink: 0;
  font-weight: 600;
}

.mbar-track {
  flex: 1; height: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px; overflow: hidden;
}

.mbar-fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--crimson-dark), var(--crimson-light));
}

.mbar-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--text);
  width: 60px; text-align: right; flex-shrink: 0;
}

/* ── TEAM ── */
.team {
  background: var(--dark-2);
}

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

.team-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.25s;
}

.team-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--crimson-dark), var(--mid));
  border: 2px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 16px;
  overflow: hidden;
}

.team-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 18px; font-weight: 700;
  color: var(--text); margin-bottom: 4px;
}

.team-role {
  font-size: 12px; font-weight: 600;
  color: var(--crimson-light);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.65;
}

.team-tags {
  margin-top: 16px;
  display: flex; flex-wrap: wrap; gap: 6px;
}

.tag {
  padding: 3px 10px;
  background: rgba(200, 184, 122, 0.08);
  border: 1px solid rgba(200, 184, 122, 0.15);
  border-radius: 4px;
  font-size: 11px; color: var(--text-dim);
  font-weight: 500;
}

/* ── ADVANTAGE ── */
.advantage-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.adv-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.adv-check {
  width: 28px; height: 28px;
  background: rgba(82, 196, 26, 0.12);
  border: 1px solid rgba(82, 196, 26, 0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  margin-bottom: 14px;
}

.adv-card h4 {
  font-size: 14px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}

.adv-card p {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.6;
}

/* ── CTA ── */
.cta-section {
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(139, 26, 26, 0.15) 0%, transparent 70%);
}

.cta-content {
  position: relative; z-index: 2;
  max-width: 640px; margin: 0 auto;
}

.cta-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 17px; color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

.cta-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}

.btn-cta {
  padding: 16px 36px;
  background: var(--crimson);
  border: 1px solid var(--crimson-light);
  border-radius: 10px;
  color: white; font-size: 16px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 24px rgba(139, 26, 26, 0.35);
}

.btn-cta:hover {
  background: var(--crimson-light);
  box-shadow: 0 8px 36px rgba(178, 34, 34, 0.5);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  background: #E3D4AD;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 48px 5% 32px;
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {}

.footer-brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.footer-brand-name span { color: var(--crimson); }

.footer-brand-desc {
  font-size: 14px; color: #4a3f30;
  line-height: 1.65; max-width: 260px;
  margin-bottom: 20px;
}

.footer-email {
  font-size: 14px; color: var(--crimson);
  text-decoration: none;
  font-weight: 500;
}

.footer-email:hover { color: var(--crimson-light); }

.footer-col h5 {
  font-size: 12px; font-weight: 700;
  color: #6b5a40; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px; color: #2a2a2a;
  text-decoration: none; margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--crimson); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.12);
  display: flex; align-items: center; justify-content: space-between;
}

.footer-copy {
  font-size: 13px; color: #5a4a35;
}

.footer-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: #5a4a35;
}

.patent-tag {
  display: inline-flex; align-items: center;
  padding: 3px 10px;
  background: rgba(139, 26, 26, 0.1);
  border: 1px solid rgba(139, 26, 26, 0.25);
  border-radius: 4px;
  font-size: 11px; font-weight: 600;
  color: var(--crimson);
  letter-spacing: 0.04em;
}

/* ── DIVIDER ── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
  margin: 0;
}

/* ── HERO ENTRANCE ANIMATIONS ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(40px) translateY(-50%); }
  to   { opacity: 1; transform: translateX(0) translateY(-50%); }
}

@keyframes heroBadge {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge      { animation: heroBadge  0.6s cubic-bezier(0.16,1,0.3,1) 0.1s both; }
.hero h1         { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.25s both; }
.hero-sub        { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.4s both; }
.hero-actions    { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.52s both; }
.hero-stats      { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.64s both; }
.hero-visual     { animation: heroSlideIn 0.9s cubic-bezier(0.16,1,0.3,1) 0.5s both; }
.hero-bg         { animation: heroFadeIn 1.2s ease 0s both; }

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .how-wrap { grid-template-columns: 1fr; }
  .hero h1 { max-width: 680px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  body.lp .nav-links { display: flex; }
  .problem-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .market-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .advantage-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  section { padding: 70px 5%; }
}

/* ── REQUEST DEMO MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(15, 13, 11, 0.82);
  backdrop-filter: blur(4px);
  overflow-y: auto;
}

.modal-overlay[hidden] { display: none; }

.modal {
  position: relative;
  width: 100%; max-width: 680px;
  max-height: 90vh; overflow-y: auto;
  padding: 40px;
  background: var(--dark-2);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}

.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  color: var(--text-muted);
  font-size: 28px; line-height: 1; cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s ease;
}

.modal-close:hover { color: var(--gold); }

.modal-head { margin-bottom: 28px; }

.modal-head h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px; font-weight: 600;
  color: var(--text);
  margin: 10px 0 8px;
}

.modal-head p {
  color: var(--text-muted);
  font-size: 15px;
}

.modal-fallback {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-dim);
}

.modal-fallback a { color: var(--gold); text-decoration: none; }
.modal-fallback a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .modal-overlay { padding: 12px; }
  .modal { padding: 28px 20px; }
  .modal-head h3 { font-size: 23px; }
}

/* ── MONEY20/20 LANDING PAGE ──────────────────────────────────────────
   Scoped under body.lp so nothing here can affect the main site.
   Built mobile-first: this page is reached by QR, so most traffic is phones. */

.lp-hero {
  position: relative;
  padding: 116px 5% 64px;   /* clears the 84px fixed nav */
  overflow: hidden;
}

.lp-hero-content {
  position: relative; z-index: 2;
  max-width: 780px; margin: 0 auto;
  text-align: center;
}

.lp-hero-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 8vw, 56px);
  font-weight: 700; line-height: 1.1;
  color: var(--text);
  margin: 22px 0 20px;
}

.lp-hero-content h1 em {
  font-style: normal;
  color: var(--gold);
}

.lp-hero-content .hero-sub {
  max-width: 620px;
  margin: 0 auto 32px;
}

.lp-actions {
  display: flex; flex-wrap: wrap;
  gap: 14px; justify-content: center;
  margin-bottom: 44px;
}

/* Conference banner — the supplied asset already carries the dates and
   location, so the page does not repeat them in text. */
.lp-banner {
  position: relative;
  max-width: 900px;
  margin: 0 auto 30px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  line-height: 0;
}

.lp-banner img {
  display: block;
  width: 100%; height: auto;
}

/* Light chip behind the logo: the wordmark is charcoal and the photo
   underneath is busy, so it needs its own ground to stay legible. */
.lp-banner-logo {
  position: absolute;
  right: 12px; bottom: 12px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  line-height: 0;
}

.lp-banner-logo img {
  display: block;
  width: 74px; height: auto;
}

/* LinkedIn announcement card */
.lp-linkedin {
  display: flex; align-items: center; gap: 14px;
  max-width: 440px; margin: 0 auto;
  padding: 16px 20px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  text-align: left;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.lp-linkedin:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.lp-linkedin-icon {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: #0A66C2;
  border-radius: 7px;
  color: #fff;
  font-weight: 700; font-size: 16px;
}

.lp-linkedin-text { display: flex; flex-direction: column; gap: 3px; }

.lp-linkedin-label {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim);
}

.lp-linkedin-title {
  font-size: 15px; font-weight: 500;
  color: var(--text);
}

.lp-linkedin-embed {
  max-width: 560px; margin: 0 auto;
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
}

.lp-linkedin-embed iframe { display: block; border: 0; }

.lp-section { padding: 64px 5%; }

.lp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1080px;
  margin: 40px auto 0;
}

.lp-card {
  padding: 30px 26px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

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

.lp-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px; font-weight: 600;
  color: var(--text);
  margin: 14px 0 10px;
}

.lp-card p {
  color: var(--text-muted);
  font-size: 15px; line-height: 1.65;
}

.lp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  max-width: 940px;
  margin: 40px auto 0;
  text-align: center;
}

.lp-footer {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 28px 5%;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
}

.lp-footer a { color: var(--text-muted); text-decoration: none; }
.lp-footer a:hover { color: var(--gold); }

@media (min-width: 768px) {
  .lp-hero { padding: 140px 5% 90px; }
  .lp-section { padding: 84px 5%; }
}
