/* ── Hero ── */
.hero-section {
  min-height: 100vh; display: flex; align-items: center; padding-top: 58px;
  background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(124,106,245,.08) 0%, transparent 70%),
              radial-gradient(ellipse 60% 80% at 80% 30%, rgba(30,207,170,.05) 0%, transparent 70%);
}
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 60px 48px; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--accent-soft); border: 1px solid var(--accent-br); border-radius: 20px; padding: 6px 14px; font-size: 11px; letter-spacing: .08em; color: var(--accent); font-family: 'DM Mono', monospace; text-transform: uppercase; margin-bottom: 26px; }
.hero-pill-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); animation: pill-pulse 2s ease-in-out infinite; }
@keyframes pill-pulse { 0%,100%{opacity:.4} 50%{opacity:1} }
.hero-title { font-family: 'Space Grotesk', 'Syne', sans-serif; font-size: 52px; font-weight: 700; line-height: 1.05; letter-spacing: -2.5px; margin-bottom: 20px; }
.hero-accent { color: var(--accent); }
.hero-teal { color: var(--teal); }
.hero-sub { font-size: 17px; color: var(--txt2); line-height: 1.7; max-width: 440px; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 12px; align-items: center; margin-bottom: 28px; }
.btn-hero-pri { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; padding: 13px 26px; border-radius: 10px; border: none; background: var(--accent); color: #fff; cursor: pointer; font-family: inherit; transition: all .2s; box-shadow: 0 0 28px rgba(124,106,245,.4); }
.btn-hero-pri:hover { opacity: .9; transform: translateY(-1px); }
.btn-hero-sec { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; padding: 12px 22px; border-radius: 10px; border: 1px solid var(--bord2); background: transparent; color: var(--txt2); cursor: pointer; font-family: inherit; transition: all .2s; }
.btn-hero-sec:hover { border-color: var(--accent); color: var(--accent); }
.hero-trust-strip { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 13px; color: var(--txt3); }
.hero-trust-strip strong { color: var(--txt2); }
.trust-sep { color: var(--bord2); }

/* Hero demo card */
.hero-demo-card { background: var(--surf); border: 1px solid var(--bord2); border-radius: 18px; overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,.5); }
.hero-demo-header { display: flex; align-items: center; gap: 6px; padding: 10px 14px; border-bottom: 1px solid var(--bord); background: var(--surf2); }
.demo-dot { width: 8px; height: 8px; border-radius: 50%; }
.demo-label { font-size: 11px; font-family: 'DM Mono', monospace; color: var(--txt3); letter-spacing: .05em; margin-left: 8px; }
.hero-demo-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.demo-section-lbl { font-size: 9px; letter-spacing: .08em; text-transform: uppercase; font-family: 'DM Mono', monospace; margin-bottom: 7px; }
.demo-before { background: var(--surf2); border: 1px solid var(--bord); border-radius: 10px; padding: 14px; }
.demo-before-text { font-size: 13px; color: rgba(255,255,255,.4); font-style: italic; line-height: 1.6; }
.demo-arrow { display: flex; align-items: center; gap: 10px; }
.demo-arrow-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--accent-br), transparent); }
.demo-arrow-btn { display: flex; align-items: center; gap: 6px; background: var(--accent); border: none; border-radius: 8px; color: #fff; padding: 7px 14px; font-size: 12px; font-weight: 600; cursor: pointer; font-family: inherit; white-space: nowrap; flex-shrink: 0; }
.demo-after { background: rgba(30,207,170,.05); border: 1px solid rgba(30,207,170,.15); border-radius: 10px; padding: 14px; }
.demo-after-text { font-size: 13px; color: var(--txt); line-height: 1.65; }
.demo-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }
.demo-tag { font-size: 10px; padding: 3px 8px; border-radius: 4px; }
.demo-tag-green { background: var(--green-soft); color: var(--green); border: 1px solid rgba(62,207,142,.2); }
.demo-tag-teal  { background: var(--teal-soft);  color: var(--teal);  border: 1px solid var(--teal-br); }
.demo-tag-amber { background: var(--amber-soft); color: var(--amber); border: 1px solid var(--amber-br); }
.demo-score-row { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.demo-score-num { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--accent); }
.demo-score-bar { flex: 1; height: 3px; background: var(--bord2); border-radius: 2px; }
.demo-score-fill { height: 100%; width: 91%; background: var(--accent); border-radius: 2px; }
.demo-score-lbl { font-size: 11px; color: var(--txt3); font-family: 'DM Mono', monospace; }

/* Tools trust bar */
.tools-trust-bar { border-top: 1px solid var(--bord); border-bottom: 1px solid var(--bord); background: var(--surf); overflow: hidden; padding: 14px 0; }
.tools-trust-track { display: flex; gap: 0; width: max-content; animation: marquee 28s linear infinite; }
.tools-trust-track:hover { animation-play-state: paused; }
.tools-trust-item { display: flex; align-items: center; gap: 8px; padding: 0 32px; border-right: 1px solid var(--bord2); font-size: 13px; color: var(--txt3); white-space: nowrap; flex-shrink: 0; }
.tools-trust-item strong { color: var(--teal); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Demo progress dots */
.demo-progress-dots { display: flex; gap: 5px; align-items: center; margin-left: auto; }
.demo-pdot { width: 6px; height: 6px; border-radius: 50%; background: var(--bord2); transition: all .3s; }
.demo-pdot.active { background: var(--accent); width: 18px; border-radius: 3px; }

/* Demo after state transitions */
.demo-after { transition: opacity .5s, transform .5s; }
.demo-after-hidden { opacity: 0; transform: translateY(8px); pointer-events: none; }
.demo-after-visible { opacity: 1; transform: translateY(0); }
