/* Shared document styles for crawlable SEO/GEO pages (not the finder UI). */

@font-face {
  font-family: 'Open Sans';
  src: url('/fonts/open-sans/open-sans-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url('/fonts/open-sans/open-sans-600.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url('/fonts/open-sans/open-sans-700.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sentinel';
  src: url('/fonts/Sentinel-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #1a1220;
  --ink-soft: #5c4a56;
  --brand: #d41b69;
  --brand-deep: #9b1249;
  --line: rgba(212, 27, 105, 0.14);
  --surface: #fff7fa;
  --font-display: 'Sentinel', Georgia, 'Times New Roman', serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  background:
    radial-gradient(120% 80% at 10% 0%, rgba(232, 74, 138, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, #fffafc 0%, #fff 40%, #faf7f9 100%);
  min-height: 100vh;
}

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--brand-deep);
}

.doc {
  max-width: 42rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3.5rem;
}

.doc__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
  color: inherit;
  text-decoration: none;
}

.doc__brand img {
  height: 40px;
  width: auto;
}

.doc__brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.doc__brand-product {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand-deep);
}

.doc__brand-org {
  font-size: 0.75rem;
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.doc h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  line-height: 1.2;
  color: var(--brand-deep);
}

.doc .lede {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.doc h2 {
  margin: 1.75rem 0 0.55rem;
  font-size: 1.15rem;
  color: var(--ink);
}

.doc p,
.doc li {
  color: var(--ink);
}

.doc p {
  margin: 0 0 0.9rem;
}

.doc ol,
.doc ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.doc li + li {
  margin-top: 0.35rem;
}

.doc__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #e23a7a, var(--brand));
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(155, 18, 73, 0.22);
}

.doc__cta:hover {
  filter: brightness(1.03);
  color: #fff !important;
}

.doc__footer {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.doc__footer a {
  font-weight: 600;
}

.faq dt {
  margin: 1.1rem 0 0.3rem;
  font-weight: 700;
}

.faq dd {
  margin: 0 0 0.35rem;
  color: var(--ink-soft);
}
