/* Caseload Audience Pages CSS */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url(/fonts/figtree_v9__Xms-HUzqDCFdgfMm4S9DaRvzig.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url(/fonts/fraunces_v38_6NU78FyLNQOQZAnv9bYEvDiIdE9Ea92usiIk_WBq8U_9v0c2Wa0KxC9TeP2Xz5c.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Spline Sans Mono';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(/fonts/splinesansmono_v13_R70BjzAei_CDNLfgZxrW6wrZOF2WX5yZmE-Z-lxguQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --navy-0: #33493C;
  --navy-1: #3D5647;
  --navy-2: #395243;
  --paper: #FAFBF9;
  --paper-2: #EDF2EA;
  --gold: #8FBE7C;
  --gold-hi: #C6E7AC;
  --gold-deep: #527E47;
  --slate: #67766B;
  --claret: #A5573F;
  --line: rgba(57,82,67,0.14);
  --line-d: rgba(250,251,249,0.12);
  --display: 'Fraunces', Georgia, serif;
  --body: 'Figtree', system-ui, sans-serif;
  --mono: 'Spline Sans Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--navy-2);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Logo (mirrors the SPA's interlocking-rings mark) */
.cl-logo { display: inline-flex; align-items: center; line-height: 1; }
.cl-word { font-family: var(--display); font-weight: 520; letter-spacing: -0.015em; white-space: nowrap; }
.cl-word em { font-style: italic; font-weight: 480; }

/* Nav: fixed over the dark hero, gains a light background on scroll (like the SPA) */
.for-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background 0.3s, box-shadow 0.3s;
}
.for-nav.scrolled { background: rgba(250,251,249,.96); box-shadow: 0 1px 0 0 rgba(57,82,67,.10); }
.for-nav-inner {
  max-width: 72rem; margin: 0 auto; padding: 0 24px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.for-logo { text-decoration: none; }
.for-nav .cl-ink { stroke: #FAFBF9; transition: stroke 0.3s; }
.for-nav .cl-accent { stroke: #A7D18F; transition: stroke 0.3s; }
.for-nav .cl-word { color: #FAFBF9; transition: color 0.3s; }
.for-nav .cl-word em { color: #A7D18F; transition: color 0.3s; }
.for-nav.scrolled .cl-ink { stroke: #395243; }
.for-nav.scrolled .cl-accent { stroke: #527E47; }
.for-nav.scrolled .cl-word { color: #395243; }
.for-nav.scrolled .cl-word em { color: #527E47; }
.for-nav-links { display: flex; align-items: center; gap: 28px; }
.for-nav-links a { font-size: 14px; font-weight: 500; color: rgba(250,251,249,.78); text-decoration: none; transition: color 0.3s; }
.for-nav.scrolled .for-nav-links a { color: var(--slate); }
.for-nav-links a:hover { color: var(--gold); }
.for-nav.scrolled .for-nav-links a:hover { color: var(--navy-0); }
@media (max-width: 860px) { .for-nav-links { display: none; } }
.for-nav-cta {
  padding: 10px 22px; border-radius: 99px; background: var(--gold);
  color: var(--navy-0); font-size: 14px; font-weight: 600; text-decoration: none;
  box-shadow: 0 2px 14px rgba(143,190,124,.3);
  transition: opacity 0.2s, transform 0.2s;
}
.for-nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* Globals */
.for-container { max-width: 72rem; margin: 0 auto; padding: 0 24px; }
.for-label { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 16px; }
.for-label-light { color: var(--gold); }
.for-btn-primary {
  display: inline-block; padding: 14px 30px; border-radius: 99px;
  background: var(--gold); color: var(--navy-0); font-size: 15px; font-weight: 600; text-decoration: none;
  box-shadow: 0 4px 24px rgba(143,190,124,.35);
  transition: opacity 0.2s, transform 0.2s;
}
.for-btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }

/* Hero Section */
.for-hero {
  background: linear-gradient(160deg, #2A3C34 0%, #33493C 50%, #3D5647 100%);
  padding: 148px 0 100px;
  position: relative;
  overflow: hidden;
}
.for-hero::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(250,251,249,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(250,251,249,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 0%, transparent 100%);
}
.for-hero-grid {
  display: grid; grid-template-columns: 1fr 440px; gap: 60px; align-items: center; position: relative; z-index: 2;
}
.for-hero-text { max-width: 600px; }
.for-crumbs { font-size: 13px; color: rgba(250,251,249,.5); margin-bottom: 30px; }
.for-crumbs a { color: var(--gold); text-decoration: none; }
.for-crumbs a:hover { text-decoration: underline; }
.for-kicker { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.for-hero h1 { font-family: var(--display); font-weight: 390; font-size: clamp(36px, 5vw, 56px); line-height: 1.08; color: #fff; letter-spacing: -0.01em; margin-bottom: 24px; }
.for-hero-desc { font-size: clamp(16px, 1.8vw, 18px); line-height: 1.7; color: rgba(250,251,249,.75); margin-bottom: 36px; }
.for-hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 24px; }
.for-hero-meta { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: rgba(250,251,249,.4); }

.for-hero-vignette {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(150deg, rgba(143,190,124,.8), rgba(57,82,67,.15) 50%, rgba(143,190,124,.3)) border-box;
  border: 1.5px solid transparent; border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.2);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
}
.vig-header {
  background: linear-gradient(135deg, var(--navy-0), var(--navy-1));
  padding: 12px 16px; display: flex; gap: 8px; align-items: center;
}
.vig-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(250,251,249,.2); }
.vig-dot-gold { background: var(--gold); }
.vig-body { padding: 16px; background: #fff; display: flex; flex-direction: column; gap: 12px; }
.vig-item {
  border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.vig-item-text strong { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy-2); margin-bottom: 4px; }
.vig-item-text span { display: block; font-size: 11.5px; color: var(--slate); }
.vig-badge {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase;
  background: var(--paper-2); color: var(--slate); padding: 4px 8px; border-radius: 99px; flex-shrink: 0;
}
.vig-badge-gold { background: rgba(143,190,124,.15); color: var(--gold-deep); }

/* Pains Section */
.for-pains { padding: 100px 0; background: var(--paper); }
.for-section-head { max-width: 640px; margin-bottom: 48px; }
.for-section-head h2 { font-family: var(--display); font-weight: 350; font-size: clamp(30px, 4vw, 42px); color: var(--navy-2); line-height: 1.15; }
.for-pains-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.for-pain-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,.02);
}
.for-pain-card p { font-size: 15.5px; line-height: 1.65; color: var(--slate); }

/* Fit Section */
.for-fit { padding: 100px 0; background: var(--paper-2); }
.for-fit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.for-fit-card {
  background: transparent; border-top: 1px dashed var(--line); padding-top: 24px;
}
.for-fit-card h3 { font-family: var(--display); font-weight: 400; font-size: 22px; color: var(--navy-2); margin-bottom: 12px; line-height: 1.25; }
.for-fit-card p { font-size: 15.5px; line-height: 1.65; color: var(--slate); }

/* Modules Upsell */
.for-modules { padding: 120px 0; background: var(--paper); }
.for-section-desc { font-size: 16px; line-height: 1.7; color: var(--slate); margin-top: 16px; }
.for-modules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px 32px; }
.for-module { border-left: 2px solid var(--gold); padding-left: 16px; margin-bottom: 16px; }
.for-module strong { display: block; font-family: var(--display); font-size: 18px; font-weight: 500; color: var(--navy-2); margin-bottom: 8px; }
.for-module p { font-size: 14.5px; line-height: 1.6; color: var(--slate); }

/* Compliance */
.for-compliance { padding: 120px 0; background: var(--navy-0); color: #fff; }
.for-comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.for-compliance h2 { font-family: var(--display); font-weight: 350; font-size: clamp(30px, 4vw, 42px); color: #fff; line-height: 1.15; margin-bottom: 24px; }
.for-compliance p { font-size: 16px; line-height: 1.7; color: rgba(250,251,249,.7); }
.for-comp-box {
  border: 1px solid rgba(250,251,249,.12); border-radius: 16px; overflow: hidden;
  background: rgba(250,251,249,.03);
}
.for-comp-box-header { padding: 16px 20px; background: rgba(250,251,249,.06); border-bottom: 1px solid rgba(250,251,249,.1); }
.for-comp-box-header p { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: rgba(250,251,249,.4); margin: 0; }
.for-comp-box ul { list-style: none; padding: 0; margin: 0; }
.for-comp-box li {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 16px 20px; border-bottom: 1px dashed rgba(250,251,249,.08);
}
.for-comp-box li:last-child { border-bottom: none; }
.for-comp-box li span { font-size: 14px; color: rgba(250,251,249,.8); }
.for-comp-box li strong { font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); font-weight: 400; text-align: right; }

/* Pricing */
.for-pricing { padding: 120px 0; background: var(--paper-2); }
.for-pricing-box {
  max-width: 820px; margin: 0 auto;
  background: linear-gradient(#fff,#fff) padding-box, linear-gradient(150deg, rgba(143,190,124,.75), rgba(57,82,67,.2) 45%, rgba(143,190,124,.25)) border-box;
  border: 1.5px solid transparent; border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.04);
}
.for-pricing-header {
  background: linear-gradient(135deg, var(--navy-0), var(--navy-1));
  padding: 16px 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.for-pricing-header span:first-child { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: rgba(250,251,249,.7); }
.for-pricing-header span:last-child { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.for-pricing-body { padding: 40px 36px; }
.for-pricing-body h2 { font-family: var(--display); font-weight: 400; font-size: clamp(22px, 2.6vw, 28px); color: var(--navy-2); line-height: 1.25; margin-bottom: 12px; }
.for-pricing-body > p { font-size: 15.5px; line-height: 1.65; color: var(--slate); margin-bottom: 32px; max-width: 600px; }
.for-pricing-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px 24px; margin-bottom: 40px;
  list-style: none; padding: 0;
}
.for-pricing-list li {
  display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.55; color: var(--navy-2);
}
.for-pricing-list li::before {
  content: ""; display: block; width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23527E47' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") no-repeat center center;
}
.for-pricing-actions { display: flex; alignItems: center; gap: 18px; flex-wrap: wrap; }
.for-pricing-note { font-family: var(--mono); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; color: var(--slate); margin-top: 14px; display: inline-block; }

/* FAQ */
.for-faq { padding: 100px 0; background: var(--paper); }
.for-faq-list { max-width: 720px; }
.for-faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }
.for-faq-item summary {
  font-family: var(--display); font-weight: 500; font-size: 18px; color: var(--navy-2); cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.for-faq-item summary::-webkit-details-marker { display: none; }
.for-faq-item summary::after {
  content: "+"; font-family: var(--mono); font-size: 20px; color: var(--gold-deep); font-weight: 300; transition: transform 0.2s;
}
.for-faq-item[open] summary::after { transform: rotate(45deg); }
.for-faq-answer { padding-top: 16px; }
.for-faq-answer p { font-size: 15.5px; line-height: 1.65; color: var(--slate); margin: 0; }

/* Final CTA */
.for-final-cta { padding: 120px 0; background: var(--paper-2); text-align: center; }
.for-final-cta h2 { font-family: var(--display); font-weight: 350; font-size: clamp(28px, 4vw, 40px); color: var(--navy-2); margin-bottom: 16px; line-height: 1.15; }
.for-final-cta p { font-size: 16px; color: var(--slate); margin-bottom: 32px; }
.for-others { margin-top: 80px; padding-top: 40px; border-top: 1px dashed var(--line); }
.for-others p { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); margin-bottom: 16px; }
.for-others-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px; }
.for-others-links a { font-size: 14px; color: var(--gold-deep); text-decoration: none; }
.for-others-links a:hover { text-decoration: underline; }

/* Big shared footer */
.g-bigfoot { background: var(--navy-0); border-top: 1px solid rgba(250,251,249,.08); }
.g-bigfoot-inner { max-width: 72rem; margin: 0 auto; padding: 64px 24px 0; }
.g-bigfoot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px 32px; padding-bottom: 48px; }
.g-bigfoot-brand { max-width: 280px; }
.g-bigfoot-logo { text-decoration: none; display: inline-block; margin-bottom: 14px; }
.g-bigfoot-logo .cl-ink { stroke: rgba(250,251,249,.9); }
.g-bigfoot-logo .cl-accent { stroke: #A7D18F; }
.g-bigfoot-logo .cl-word { color: rgba(250,251,249,.9); }
.g-bigfoot-logo .cl-word em { color: #A7D18F; }
.g-bigfoot-brand p { font-size: 13.5px; line-height: 1.65; color: rgba(250,251,249,.55); margin: 0 0 18px; }
.g-bigfoot-trust { font-family: 'Spline Sans Mono', monospace; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.g-bigfoot-col h2 { font-family: 'Spline Sans Mono', monospace; font-weight: 400; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: rgba(250,251,249,.45); margin: 0 0 14px; }
.g-bigfoot-col a { display: block; font-size: 13.5px; line-height: 1.4; color: rgba(250,251,249,.72); text-decoration: none; margin-bottom: 10px; }
.g-bigfoot-col a:hover { color: #A7D18F; }
.g-bigfoot-bar { border-top: 1px solid rgba(250,251,249,.08); padding: 22px 0 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.g-bigfoot-bar p, .g-bigfoot-bar a { font-family: 'Spline Sans Mono', monospace; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; margin: 0; }
.g-bigfoot-bar p { color: rgba(250,251,249,.3); }
.g-bigfoot-bar a { color: rgba(250,251,249,.45); text-decoration: none; }

/* Responsive Adjustments */
@media (max-width: 900px) {
  .for-hero-grid, .for-comp-grid { grid-template-columns: 1fr; gap: 40px; }
  .for-hero-vignette { max-width: 440px; margin: 0 auto; transform: none; }
}
