/* ============================================================
   OrgTrax v2 — landing page styles (anonymous marketing root).
   Loaded ONLY by templates/core/landing.html. Brand tokens
   (--orgtrax-brand-primary / -accent / -navy) come from custom.css;
   theme-icon swap rules also live in custom.css. Strict CSP:
   no inline styles anywhere — every rule lives here.
   ============================================================ */

/* Sticky footer scaffold */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}

/* Hero */
.landing-hero {
  background:
    radial-gradient(ellipse 80% 60% at 70% -10%,
      rgba(102, 16, 242, 0.14), transparent 60%),
    radial-gradient(ellipse 70% 50% at 20% 110%,
      rgba(13, 110, 253, 0.12), transparent 60%);
  padding: 5rem 0 4.5rem;
}
.landing-hero h1 {
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.landing-hero .lead {
  max-width: 52ch;
}
.brand-gradient-text {
  background: linear-gradient(90deg,
    var(--orgtrax-brand-primary), var(--orgtrax-brand-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Dark mode: navy gradient-start disappears on the dark body — swap to the
   bright blue→violet ramp. Re-declare the clip lines: the shorthand
   `background` resets background-clip in the cascade. */
[data-bs-theme="dark"] .brand-gradient-text {
  background: linear-gradient(90deg, #4d8be8, #9d7bff);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Module cards */
.module-card {
  transition: transform 120ms ease, box-shadow 120ms ease;
  height: 100%;
}
.module-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--bs-box-shadow);
}
.module-icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}
.module-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.icon-at { background: rgba(13, 110, 253, 0.12); color: #0d6efd; }
.icon-bt { background: rgba(25, 135, 84, 0.12); color: #198754; }
.icon-hp { background: rgba(102, 16, 242, 0.12); color: #6610f2; }

/* Coming-soon cards */
.soon-card {
  height: 100%;
  border-style: dashed;
  background-color: transparent;
}
.soon-card h3 {
  color: var(--bs-secondary-color);
}

/* Fiduciary band */
.fiduciary-band {
  background-color: var(--bs-secondary-bg);
}
.check-list {
  list-style: none;
  padding-left: 0;
}
.check-list li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.6rem;
}
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0.25rem;
  color: var(--bs-success);
  font-weight: 700;
}
