/* ===================================================================
   we-verifi — page-level styles for the apex marketing page.
   Extends we-verifi-brand.css (load this file second). Uses the same
   design tokens (--graphite, --cloud, --hairline, --muted, --foil-gradient,
   --font-display, --font-body, --font-mono) rather than redefining them.
   =================================================================== */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: #fff;
  color: var(--graphite);
}

/* ---------- accessibility: visible keyboard focus everywhere ---------- */

a:focus-visible,
.product-card:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 76px 32px 40px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -160px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--foil-gradient);
  opacity: 0.06;
  pointer-events: none;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero__eyebrow img { width: 22px; height: 22px; display: block; }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 3.6vw + 1rem, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--graphite);
  max-width: 15ch;
  margin: 0 0 22px;
}

.hero p.lede {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 54ch;
  margin: 0;
}

/* ---------- trust strip ---------- */

.trust-strip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 32px 60px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.trust-strip__mark {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.trust-strip strong {
  color: var(--graphite);
  font-weight: 600;
}

/* ---------- section heading above the product grid ---------- */

.section-label {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- coming-soon product cards (no logo asset yet) ---------- */

.product-card--compliance .product-card__placeholder {
  height: 44px;
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--muted);
}

.product-card--compliance .product-card__placeholder .accent {
  background: linear-gradient(135deg, var(--magenta), var(--indigo));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- footer ---------- */

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 32px 48px;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-footer__brand img { height: 18px; width: 18px; }

.site-footer nav {
  display: flex;
  gap: 20px;
}

.site-footer nav a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer nav a:hover { color: var(--graphite); }

/* ---------- gentle entrance, respects reduced motion ---------- */

@media (prefers-reduced-motion: no-preference) {
  .hero__eyebrow, .hero h1, .hero p.lede {
    animation: rise 0.5s ease both;
  }
  .hero h1 { animation-delay: 0.06s; }
  .hero p.lede { animation-delay: 0.12s; }

  @keyframes rise {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 640px) {
  .hero { padding: 52px 20px 28px; }
  .product-grid { padding: 32px 20px 48px; }
  .site-footer { padding: 24px 20px 40px; }
}
