/* ═══════════════════════════════════════════════════════════════
   hero.css — Brand strip (below the fold, after tool)
   The editor IS the hero now. This is the supporting section.
═══════════════════════════════════════════════════════════════ */

/* ── Below-fold wrapper ─────────────────────────────────────── */
.below-fold-hero {
  padding: clamp(40px, 6vw, 72px) 0 clamp(32px, 5vw, 56px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle background glow */
.below-fold-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(
    ellipse at center,
    rgba(59, 76, 202, 0.05) 0%,
    rgba(30, 138, 138, 0.03) 50%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

[data-theme="dark"] .below-fold-hero::before {
  background: radial-gradient(
    ellipse at center,
    rgba(59, 76, 202, 0.10) 0%,
    rgba(30, 138, 138, 0.05) 50%,
    transparent 70%
  );
}

.below-fold-hero .container {
  position: relative;
  z-index: 1;
}

/* ── Brand Strip ────────────────────────────────────────────── */
.brand-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}

/* ── Eyebrow ────────────────────────────────────────────────── */
.brand-strip-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 5px 16px;
  border-radius: 99px;
  background: var(--color-primary-light);
  border: 1px solid rgba(59, 76, 202, 0.18);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.01em;
}

.brand-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-dark);
  animation: pulse-dot 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1;   transform: scale(1);   }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

/* ── Headline ───────────────────────────────────────────────── */
.brand-strip-headline {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0;
}

.brand-strip-headline .line-plain {
  color: var(--color-text);
  display: block;
}

.brand-strip-headline .line-gradient {
  display: block;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-secondary) 60%,
    #0ea5a5 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Sub ────────────────────────────────────────────────────── */
.brand-strip-sub {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  color: var(--color-muted);
  max-width: 500px;
  line-height: 1.7;
  margin: 0;
}

/* ── Trust Pills ────────────────────────────────────────────── */
.brand-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-muted);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  white-space: nowrap;
}

.trust-pill svg {
  color: var(--color-secondary);
  flex-shrink: 0;
}

.trust-pill:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  background: var(--color-secondary-light);
}
