/* Reach Networks - shared styling for content sub-pages.
   Mirrors the landing page's design language (same tokens + chrome). */
:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --ink: #1d1d1f;
  --ink-soft: #56565c;
  --ink-faint: #8a8a90;
  --line: #e8e8ed;
  --accent: #00a86b;
  --accent-deep: #008f5b;
  --radius: 26px;
  --font: "Inter", -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink); font-family: var(--font);
  font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--accent-deep); }
.container { max-width: 1060px; margin: 0 auto; padding: 0 28px; }

/* nav */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 58px; }
.wordmark { display: inline-flex; align-items: center; text-decoration: none; }
.wordmark img { display: block; height: 44px; width: auto; }
.nav-links { display: flex; gap: 34px; list-style: none; align-items: center; }
.nav-links a:not(.nav-cta) {
  position: relative; color: var(--ink-soft); text-decoration: none;
  font-size: 0.85rem; font-weight: 500; transition: color 0.25s var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--ink); }
.nav-cta {
  padding: 7px 17px; border-radius: 980px; background: var(--ink); color: #fff;
  font-size: 0.85rem; font-weight: 500; text-decoration: none;
  transition: transform 0.3s var(--ease), opacity 0.25s var(--ease);
}
.nav-cta:hover { opacity: 0.85; transform: scale(1.04); }
@media (max-width: 720px) { .nav-links li:not(:last-child) { display: none; } }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 980px; font-size: 0.92rem; font-weight: 550;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), opacity 0.25s var(--ease);
}
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); opacity: 0.92; }
.btn-quiet { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-quiet:hover { background: var(--bg-soft); }

/* page shell */
.page { padding-top: 58px; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* page hero */
.page-hero { padding: clamp(64px, 9vw, 120px) 0 clamp(36px, 5vw, 64px); border-bottom: 1px solid var(--line); }
.crumbs { font-size: 0.8rem; color: var(--ink-faint); margin-bottom: 22px; }
.crumbs a { color: var(--ink-faint); text-decoration: none; }
.crumbs a:hover { color: var(--ink); }
.page-eyebrow {
  display: inline-block; font-size: 0.74rem; font-weight: 650; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent-deep);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  padding: 6px 12px; border-radius: 980px; margin-bottom: 20px;
}
.page-hero h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.6rem); font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.05; max-width: 16ch;
}
.page-hero .lede {
  margin-top: 22px; max-width: 60ch; font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--ink-soft);
}
.page-hero .cta-row { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

/* prose sections */
.section { padding: clamp(48px, 7vw, 88px) 0; }
.section.alt { background: var(--bg-soft); }
.section h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 680; letter-spacing: -0.02em;
  margin-bottom: 18px; max-width: 22ch;
}
.section .lede { color: var(--ink-soft); max-width: 64ch; margin-bottom: 8px; }
.prose { max-width: 70ch; }
.prose p { margin-bottom: 18px; color: var(--ink-soft); }
.prose strong { color: var(--ink); font-weight: 600; }

/* feature grid */
.grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px; margin-top: 36px;
}
.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: 18px;
  padding: 26px 24px;
}
.section.alt .card { background: var(--bg); }
.card h3 { font-size: 1.08rem; font-weight: 640; letter-spacing: -0.01em; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 0.96rem; }
.card .ic {
  width: 38px; height: 38px; border-radius: 10px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--accent) 12%, transparent); color: var(--accent-deep);
}
.card .ic svg { width: 20px; height: 20px; }

/* stat strip */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 24px; margin-top: 30px; }
.stat .big { font-size: clamp(2rem, 5vw, 3rem); font-weight: 720; letter-spacing: -0.03em; color: var(--accent-deep); }
.stat .lbl { color: var(--ink-soft); font-size: 0.92rem; margin-top: 4px; }

/* checklist */
.checklist { list-style: none; margin-top: 24px; display: grid; gap: 14px; max-width: 70ch; }
.checklist li { position: relative; padding-left: 34px; color: var(--ink-soft); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 12px no-repeat;
}
.checklist li strong { color: var(--ink); font-weight: 600; }

/* FAQ */
.faq { max-width: 820px; margin: 36px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 22px 40px 22px 0; font-size: 1.06rem; font-weight: 600; color: var(--ink);
  position: relative; font-family: inherit;
}
.faq-item__q::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 11px; height: 11px;
  border-right: 2px solid var(--ink-faint); border-bottom: 2px solid var(--ink-faint);
  transform: translateY(-70%) rotate(45deg); transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-item__q::after { transform: translateY(-30%) rotate(225deg); }
.faq-item__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.34s var(--ease); }
.faq-item.open .faq-item__a { grid-template-rows: 1fr; }
.faq-item__a > div { overflow: hidden; min-height: 0; }
.faq-item__a p { color: var(--ink-soft); padding-bottom: 22px; max-width: 72ch; }

/* CTA band */
.cta-band { text-align: center; padding: clamp(56px, 8vw, 96px) 0; }
.cta-band h2 { margin: 0 auto 16px; }
.cta-band .lede { margin: 0 auto 30px; }

/* footer (mirrors landing) */
footer { border-top: 1px solid var(--line); padding: 48px 0 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: 36px; }
.footer-links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
.footer-links a { color: var(--ink-soft); text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: var(--ink); }
.copyright { color: var(--ink-faint); font-size: 0.88rem; }
.powered { border-top: 1px solid var(--line); }
.powered-inner { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 22px 0; flex-wrap: wrap; }
.powered-inner .pw-reach { height: 34px; width: auto; }
.powered-inner .pw-lifeline { height: 26px; width: auto; opacity: 0.8; }
.pw-label { color: var(--ink-faint); font-size: 0.82rem; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  * { scroll-behavior: auto; }
}
