/* =================================================================
   Willow — customer-success hub

   Lifted out of the page's inline <style> block (TODO §0).
   ================================================================= */
/* ============ Customer Success hub ============ */
  .cs-hero { padding: var(--hero-pad-top) 0 var(--hero-pad-bottom); }
  .cs-eye {
    display:inline-flex; align-items:center; gap:8px;
    font-family: var(--mono); font-size: var(--t-micro); letter-spacing:0.08em; text-transform:uppercase;
    color: var(--blue);
  }
  .cs-eye::before { content:""; width:6px; height:6px; border-radius:50%; background: var(--blue); }
  .cs-hero h1 {
    font-size: var(--hero-h1);
    letter-spacing: var(--hero-tracking);
    line-height: var(--hero-lh);
    margin-top: 18px;
    max-width: var(--hero-max);
  }
  .cs-hero p { font-size: 18px; line-height: 1.55; color: var(--ink-2); margin-top: 18px; max-width: 56ch; }

  .cs-search {
    margin-top: 32px;
    max-width: 520px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    background: var(--white);
    padding: 14px 18px;
  }
  .cs-search:focus-within { border-color: var(--ink); }
  .cs-search svg { flex: none; color: var(--ink-3); }
  .cs-search input {
    border: 0; outline: 0; background: transparent; flex: 1;
    font-family: inherit; font-size: 15px; color: var(--ink);
  }
  .cs-search input::placeholder { color: var(--ink-3); }

  .cs-jump {
    margin-top: 28px;
    display: flex; flex-wrap: wrap; gap: 8px;
  }
  .cs-jump a {
    font-family: var(--mono); font-size: 12px; letter-spacing: 0.03em;
    padding: 8px 14px; border: 1px solid var(--rule); border-radius: var(--r-pill);
    color: var(--ink-2);
  }
  .cs-jump a:hover { border-color: var(--ink); color: var(--ink); }

  .cs-section { padding: 48px 0; border-top: 1px solid var(--rule); scroll-margin-top: calc(var(--nav-h) + 24px); }
  .cs-section:first-of-type { border-top: 1px solid var(--rule); }
  .cs-sec-head { display:flex; justify-content:space-between; align-items:flex-end; gap: 24px; margin-bottom: 28px; flex-wrap: wrap; }
  .cs-sec-head h2 { font-size: 28px; letter-spacing: -0.02em; line-height: 1.15; }
  .cs-sec-head .cnt { font-family: var(--mono); font-size: 12px; color: var(--ink-3); letter-spacing: 0.04em; text-transform: uppercase; }

  .cs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  .cs-card {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s, transform 0.15s;
    flex: 1 1 300px;
    max-width: 360px;
  }
  .cs-card:hover { border-color: var(--ink); transform: translateY(-2px); }
  .cs-card h3 { font-size: 16px; letter-spacing: -0.01em; line-height: 1.3; }
  .cs-card p { font-size: 13px; line-height: 1.5; color: var(--ink-3); }
  .cs-card[hidden] { display: none; }
  .cs-empty { display:none; font-family: var(--mono); font-size: 13px; color: var(--ink-3); padding: 24px 0; }
  .cs-empty.show { display: block; }

  .cs-cta {
    margin: 24px 0 96px;
    padding: 48px;
    background: var(--ink);
    color: var(--cream);
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .cs-cta h3 { font-size: 28px; letter-spacing: -0.02em; color: var(--cream); }
  .cs-cta p { color: rgba(244,239,231,0.75); font-size: 14px; margin-top: 8px; }

  @media (max-width: 620px) { .cs-card { max-width: none; } }
