    /* ================================================================
       CASE STUDIES — "THE TROPHY WALL" (v8, verified dataset)
       Rhythm: dark masthead + privacy band → white editorial spreads
       → sage deal ledger → green-strip closing CTA.
       All styles page-scoped (cs- prefix).
       ================================================================ */

    /* ---- 1. HERO — the masthead ---- */
    .cs-hero {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      color: var(--white);
      background:
        radial-gradient(ellipse 60% 50% at 82% 0%, rgba(74, 124, 63, 0.16) 0%, transparent 55%),
        linear-gradient(178deg, #0d1820 0%, #16242f 55%, var(--charcoal-deep) 100%);
      padding: clamp(88px, 10vw, 140px) 0 clamp(56px, 7vw, 92px);
    }

    .cs-hero .container {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      text-align: left;
    }

    .cs-hero-watermark {
      position: absolute;
      right: -0.06em;
      bottom: -0.22em;
      z-index: 1;
      font-family: var(--font-display);
      font-style: italic;
      font-size: clamp(160px, 24vw, 340px);
      line-height: 1;
      color: rgba(255, 255, 255, 0.030);
      pointer-events: none;
      user-select: none;
      white-space: nowrap;
    }

    .cs-hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.66);
      margin-bottom: clamp(24px, 3vw, 38px);
    }

    .cs-hero-eyebrow::before {
      content: '';
      width: 30px;
      height: 1px;
      background: var(--forest-light);
    }

    .cs-hero h1 {
      font-family: var(--font-display);
      font-weight: 400;
      font-size: clamp(42px, 5.8vw, 84px);
      line-height: 1.04;
      letter-spacing: -0.02em;
      color: var(--white);
      max-width: 17ch;
      margin: 0 0 clamp(18px, 2vw, 26px);
    }

    .cs-hero h1 em {
      font-style: italic;
      color: #cfe3c6;
    }

    .cs-hero-sub {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: clamp(16px, 1.5vw, 19px);
      line-height: 1.68;
      color: rgba(255, 255, 255, 0.78);
      max-width: 58ch;
      margin: 0 0 clamp(44px, 5.5vw, 76px);
    }

    .cs-hero-proof {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 2px solid rgba(255, 255, 255, 0.18);
    }

    .cs-proof-item {
      position: relative;
      text-align: left;
      padding: clamp(24px, 3vw, 38px) clamp(12px, 1.6vw, 24px) 0;
    }

    .cs-proof-item:first-child {
      padding-left: 0;
    }

    .cs-proof-item+.cs-proof-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 26%;
      height: 64%;
      width: 1px;
      background: rgba(255, 255, 255, 0.14);
    }

    .cs-proof-value {
      font-family: var(--font-display);
      font-size: clamp(32px, 3.8vw, 52px);
      line-height: 1;
      letter-spacing: -0.02em;
      color: var(--white);
      margin-bottom: 9px;
    }

    .cs-proof-value em {
      font-style: italic;
      color: #cfe3c6;
    }

    .cs-proof-label {
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5);
    }

    @keyframes cs-rise {
      from {
        opacity: 0;
        transform: translateY(14px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .cs-hero-eyebrow,
    .cs-hero h1,
    .cs-hero-sub,
    .cs-hero-proof {
      animation: cs-rise 700ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
    }

    .cs-hero-eyebrow {
      animation-delay: 0ms;
    }

    .cs-hero h1 {
      animation-delay: 110ms;
    }

    .cs-hero-sub {
      animation-delay: 220ms;
    }

    .cs-hero-proof {
      animation-delay: 360ms;
      animation-duration: 900ms;
    }

    @media (prefers-reduced-motion: reduce) {

      .cs-hero-eyebrow,
      .cs-hero h1,
      .cs-hero-sub,
      .cs-hero-proof {
        animation: none;
      }
    }

    /* ---- 2. PRIVACY BAND — fused to the masthead ----
       The anonymity explanation set as a colophon strip directly
       under the hero: question, answer, and the share / hold-back
       columns as fine-rule lists. No stranded paragraph.
       ------------------------------------------------------------ */
    .cs-privacy {
      background: linear-gradient(180deg, #0b141b 0%, #101c25 100%);
      border-top: 1px solid rgba(255, 255, 255, 0.10);
      padding: clamp(40px, 5vw, 72px) 0;
      color: var(--white);
    }

    .cs-privacy-grid {
      display: grid;
      grid-template-columns: minmax(150px, 0.62fr) 1.5fr 0.85fr 0.85fr;
      gap: clamp(26px, 3.5vw, 56px);
      align-items: start;
    }

    .cs-privacy-grid>div+div {
      border-left: 1px solid rgba(255, 255, 255, 0.10);
      padding-left: clamp(26px, 3.5vw, 56px);
    }

    .cs-privacy-tag {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      color: var(--forest-light);
      margin-bottom: 14px;
    }

    .cs-privacy-tag svg {
      flex-shrink: 0;
    }

    .cs-privacy-q {
      font-family: var(--font-display);
      font-style: italic;
      font-size: clamp(22px, 2.3vw, 30px);
      line-height: 1.15;
      color: var(--white);
      margin: 0;
    }

    .cs-privacy-body p {
      font-family: var(--font-body);
      font-size: 14.5px;
      font-weight: 300;
      line-height: 1.75;
      color: rgba(255, 255, 255, 0.74);
      margin: 0 0 14px;
    }

    .cs-privacy-body p:last-child {
      margin-bottom: 0;
    }

    .cs-privacy-body strong {
      color: var(--white);
      font-weight: 600;
    }

    .cs-privacy-fine {
      font-size: 12.5px !important;
      color: rgba(255, 255, 255, 0.46) !important;
    }

    .cs-privacy-col h3 {
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      margin: 0 0 6px;
    }

    .cs-privacy-col--share h3 {
      color: var(--forest-light);
    }

    .cs-privacy-col--hold h3 {
      color: rgba(255, 255, 255, 0.42);
    }

    .cs-privacy-col ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .cs-privacy-col li {
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 300;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.72);
      padding: 9px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .cs-privacy-col li:last-child {
      border-bottom: none;
    }

    @media (max-width: 1020px) {
      .cs-privacy-grid {
        grid-template-columns: 1fr 1fr;
      }

      .cs-privacy-grid>div+div {
        border-left: none;
        padding-left: 0;
      }

      .cs-privacy-grid>.cs-privacy-body {
        grid-column: 2;
        grid-row: 1 / span 2;
      }

      .cs-privacy-grid>.cs-privacy-col {
        border-top: 1px solid rgba(255, 255, 255, 0.10);
        padding-top: 20px;
      }
    }

    @media (max-width: 640px) {
      .cs-privacy-grid {
        grid-template-columns: 1fr;
      }

      .cs-privacy-grid>.cs-privacy-body {
        grid-column: auto;
        grid-row: auto;
      }
    }

    /* ---- Shared section heading kit ---- */
    .cs-shead {
      margin-bottom: clamp(44px, 6vw, 80px);
    }

    .cs-shead .eyebrow {
      color: var(--forest);
      margin-bottom: clamp(14px, 1.6vw, 22px);
    }

    .cs-shead h2 {
      font-family: var(--font-display);
      font-weight: 400;
      font-size: clamp(34px, 4.6vw, 64px);
      line-height: 1.06;
      letter-spacing: -0.02em;
      color: var(--charcoal-deep);
      margin: 0;
    }

    .cs-shead h2 em {
      font-style: italic;
      color: var(--forest);
    }

    .cs-shead-sub {
      font-family: var(--font-body);
      font-size: clamp(15px, 1.4vw, 17px);
      font-weight: 300;
      color: var(--charcoal-72);
      line-height: 1.7;
      margin: clamp(14px, 1.8vw, 22px) 0 0;
      max-width: 58ch;
    }

    /* ---- 3. FEATURED SPREADS — four closings, told in full ----
       Alternating editorial spreads. Each spread: a sticky "deal
       plate" (tombstone-style panel with the price set huge in
       DM Serif and a fine-rule term sheet) opposite a narrative
       column with labeled arc blocks.
       ------------------------------------------------------------ */
    .cs-featured {
      background: var(--white);
      padding: var(--space-section) 0;
    }

    .cs-featured .container {
      max-width: 1240px;
    }

    .cs-spreads {
      display: flex;
      flex-direction: column;
      gap: clamp(72px, 9vw, 140px);
    }

    .cs-spread {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
      gap: clamp(40px, 6vw, 100px);
      align-items: start;
    }

    .cs-spread:nth-of-type(even) .cs-plate-wrap {
      order: 2;
    }

    /* The deal plate */
    .cs-plate-wrap {
      position: sticky;
      top: clamp(84px, 12vh, 120px);
      min-width: 0;
    }

    .cs-plate {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      border-radius: var(--radius-lg);
      padding: clamp(30px, 3.6vw, 52px);
      color: var(--white);
      background: linear-gradient(165deg, #18272f 0%, var(--charcoal-deep) 55%, #0e1a22 100%);
      box-shadow: 0 36px 72px -28px rgba(15, 27, 35, 0.45);
    }

    .cs-plate::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background: radial-gradient(ellipse 85% 60% at 18% 8%, rgba(74, 124, 63, 0.22) 0%, transparent 60%);
    }

    .cs-spread:nth-of-type(2) .cs-plate::before {
      background: radial-gradient(ellipse 85% 60% at 82% 8%, rgba(0, 76, 151, 0.26) 0%, transparent 60%);
    }

    .cs-spread:nth-of-type(3) .cs-plate::before {
      background:
        radial-gradient(ellipse 70% 50% at 14% 6%, rgba(74, 124, 63, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 90% 90%, rgba(0, 76, 151, 0.16) 0%, transparent 55%);
    }

    .cs-plate::after {
      /* inner hairline frame — tombstone plate */
      content: '';
      position: absolute;
      inset: 13px;
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: calc(var(--radius-lg) - 6px);
      pointer-events: none;
    }

    .cs-plate-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: clamp(22px, 2.6vw, 34px);
    }

    .cs-plate-num {
      font-family: var(--font-display);
      font-size: clamp(40px, 4.4vw, 60px);
      line-height: 0.9;
      color: transparent;
      -webkit-text-stroke: 1px rgba(255, 255, 255, 0.42);
      user-select: none;
    }

    .cs-plate-vert {
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--forest-light);
      text-align: right;
      padding-top: 8px;
    }

    .cs-plate-title {
      font-family: var(--font-display);
      font-size: clamp(20px, 2.1vw, 27px);
      line-height: 1.2;
      color: rgba(255, 255, 255, 0.92);
      margin: 0 0 clamp(26px, 3vw, 40px);
    }

    .cs-plate-price {
      font-family: var(--font-display);
      font-size: clamp(58px, 6.6vw, 96px);
      line-height: 0.95;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #ffffff 0%, #cfe3c6 90%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 8px;
    }

    .cs-plate-price-label {
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.46);
      margin-bottom: clamp(24px, 2.8vw, 36px);
    }

    .cs-plate-stats {
      margin-bottom: clamp(24px, 2.8vw, 36px);
    }

    .cs-plate-stat {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 18px;
      padding: 12px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.11);
    }

    .cs-plate-stat dt {
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.46);
      margin: 0;
    }

    .cs-plate-stat dd {
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 500;
      color: var(--white);
      margin: 0;
      text-align: right;
    }

    .cs-plate-foot {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding-top: clamp(16px, 1.8vw, 22px);
      border-top: 1px solid rgba(255, 255, 255, 0.11);
      font-family: var(--font-body);
      font-size: 9.5px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
    }

    .cs-plate-foot svg {
      color: var(--forest-light);
      flex-shrink: 0;
    }

    /* The narrative column */
    .cs-spread-copy {
      min-width: 0;
      padding-top: clamp(4px, 1vw, 14px);
    }

    .cs-spread-copy .eyebrow {
      color: var(--forest);
    }

    .cs-spread-h {
      font-family: var(--font-display);
      font-weight: 400;
      font-size: clamp(27px, 3.2vw, 44px);
      line-height: 1.12;
      letter-spacing: -0.015em;
      color: var(--charcoal-deep);
      margin: 0 0 clamp(24px, 3vw, 38px);
      max-width: 22ch;
    }

    .cs-spread-h em {
      font-style: italic;
      color: var(--forest);
    }

    .cs-arc-block {
      display: grid;
      grid-template-columns: clamp(118px, 13vw, 168px) 1fr;
      gap: clamp(16px, 2.4vw, 36px);
      padding: clamp(18px, 2.2vw, 28px) 0;
      border-top: 1px solid var(--charcoal-12);
    }

    .cs-arc-label {
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--charcoal-42);
      padding-top: 5px;
    }

    .cs-arc-block p {
      font-family: var(--font-body);
      font-size: 15.5px;
      font-weight: 300;
      line-height: 1.75;
      color: var(--charcoal-72);
      margin: 0;
      max-width: 56ch;
    }

    .cs-arc-block p strong {
      color: var(--charcoal-deep);
      font-weight: 600;
    }

    .cs-spread-cta {
      display: flex;
      align-items: center;
      gap: clamp(16px, 2vw, 28px);
      flex-wrap: wrap;
      padding: clamp(18px, 2.2vw, 26px) 0 0;
      border-top: 1px solid var(--charcoal-12);
    }

    .cs-spread-cta p {
      font-family: var(--font-body);
      font-size: 13px;
      color: var(--charcoal-42);
      line-height: 1.6;
      margin: 0;
      max-width: 44ch;
      flex: 1 1 260px;
    }

    .cs-spread-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-body);
      font-size: 14.5px;
      font-weight: 600;
      color: var(--forest);
      text-decoration: none;
      white-space: nowrap;
      border-bottom: 2px solid var(--forest-12);
      padding-bottom: 3px;
      transition: border-color 0.25s var(--ease-out), gap 0.25s var(--ease-out);
    }

    .cs-spread-link:hover {
      border-color: var(--forest);
      gap: 12px;
    }

    @media (max-width: 940px) {
      .cs-spread {
        grid-template-columns: 1fr;
      }

      .cs-spread:nth-of-type(even) .cs-plate-wrap {
        order: 0;
      }

      .cs-plate-wrap {
        position: static;
        max-width: 560px;
      }
    }

    @media (max-width: 560px) {
      .cs-arc-block {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .cs-arc-label {
        padding-top: 0;
      }
    }

    /* ---- 4. THE DEAL LEDGER — remaining closings as an index ----
       Fine-rule rows on sage, set like a deal sheet: running number,
       business, year, multiple, and the sale price in serif.
       Quiet hover.
       ------------------------------------------------------------ */
    .cs-ledger-section {
      background: var(--sage);
      border-top: 1px solid var(--charcoal-12);
      padding: var(--space-section) 0;
    }

    .cs-ledger {
      border-top: 2px solid var(--charcoal-deep);
    }

    .cs-ledger-row,
    .cs-ledger-head {
      display: grid;
      grid-template-columns:
        clamp(34px, 3.4vw, 48px) minmax(0, 1.9fr) 0.5fr minmax(130px, 0.95fr);
      column-gap: clamp(12px, 1.8vw, 28px);
      align-items: baseline;
    }

    .cs-ledger-head {
      padding: 14px 2px;
      border-bottom: 1px solid var(--charcoal-20);
    }

    .cs-ledger-head span {
      font-family: var(--font-body);
      font-size: 9.5px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--charcoal-42);
    }

    .cs-ledger-head .lh-price {
      text-align: right;
    }

    .cs-ledger-row {
      padding: clamp(14px, 1.8vw, 21px) 2px;
      border-bottom: 1px solid var(--charcoal-20);
      transition: background 0.25s var(--ease-out);
    }

    .cs-ledger-row:last-child {
      border-bottom: 2px solid var(--charcoal-deep);
    }

    .cs-ledger-row:hover {
      background: rgba(255, 255, 255, 0.55);
    }

    .lg-num {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      font-variant-numeric: tabular-nums;
      color: var(--charcoal-42);
    }

    .lg-name {
      font-family: var(--font-display);
      font-size: clamp(17px, 1.8vw, 22px);
      line-height: 1.2;
      letter-spacing: -0.01em;
      color: var(--charcoal-deep);
      transition: color 0.25s var(--ease-out);
    }

    .cs-ledger-row:hover .lg-name {
      color: var(--forest);
    }

    .lg-figs {
      display: contents;
    }

    .lg-mult {
      font-family: var(--font-body);
      font-size: 13.5px;
      font-weight: 400;
      font-variant-numeric: tabular-nums;
      color: var(--charcoal-72);
      white-space: nowrap;
    }

    .lg-price {
      font-family: var(--font-display);
      font-size: clamp(17px, 1.8vw, 22px);
      line-height: 1;
      color: var(--forest);
      text-align: right;
      font-variant-numeric: tabular-nums;
      white-space: nowrap;
    }

    .lg-price--na {
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 500;
      color: var(--charcoal-42);
      white-space: normal;
    }

    .cs-ledger-foot {
      font-family: var(--font-body);
      font-size: 13px;
      color: var(--charcoal-42);
      line-height: 1.6;
      margin: clamp(20px, 2.6vw, 32px) 0 0;
    }

    .cs-ledger-foot a {
      color: var(--forest);
      font-weight: 600;
      text-decoration: none;
      border-bottom: 2px solid var(--forest-12);
      padding-bottom: 1px;
      transition: border-color 0.25s var(--ease-out);
    }

    .cs-ledger-foot a:hover {
      border-color: var(--forest);
    }

    @media (max-width: 860px) {
      .cs-ledger-head {
        display: none;
      }

      .cs-ledger {
        border-top-width: 2px;
      }

      .cs-ledger-row {
        grid-template-columns: clamp(30px, 6vw, 40px) minmax(0, 1fr) auto;
        grid-template-areas:
          "num name price"
          "num figs figs";
        row-gap: 7px;
      }

      .lg-num {
        grid-area: num;
        padding-top: 4px;
      }

      .lg-name {
        grid-area: name;
      }

      .lg-price {
        grid-area: price;
        align-self: start;
        padding-top: 2px;
      }

      .lg-figs {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 4px 0;
        grid-area: figs;
      }

      .lg-figs>*+*::before {
        content: '·';
        margin: 0 9px;
        color: var(--charcoal-42);
      }
    }

    /* ---- 5. CLOSING CTA — green gradient strip motif ---- */
    .cs-final {
      position: relative;
      overflow: hidden;
      color: var(--white);
      background:
        repeating-linear-gradient(135deg, transparent 0 80px, rgba(255, 255, 255, 0.04) 80px 81px),
        linear-gradient(135deg, var(--forest) 0%, #3a6a31 50%, var(--charcoal-deep) 130%);
      padding: clamp(80px, 10vw, 140px) 0;
      text-align: center;
    }

    .cs-final::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 55% 65% at 50% 110%, rgba(29, 40, 48, 0.3) 0%, transparent 60%);
      pointer-events: none;
    }

    .cs-final .container {
      position: relative;
      z-index: 1;
      max-width: 880px;
    }

    .cs-final-eyebrow {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.7);
      margin: 0 0 18px;
    }

    .cs-final h2 {
      font-family: var(--font-display);
      font-weight: 400;
      font-size: clamp(34px, 4.6vw, 62px);
      line-height: 1.08;
      letter-spacing: -0.02em;
      color: var(--white);
      margin: 0 0 clamp(16px, 1.8vw, 22px);
    }

    .cs-final h2 em {
      font-style: italic;
      color: #cde5c2;
    }

    .cs-final-lede {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: clamp(15.5px, 1.5vw, 18px);
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.82);
      max-width: 54ch;
      margin: 0 auto clamp(32px, 4vw, 48px);
    }

    .cs-final-actions {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: clamp(28px, 3.4vw, 40px);
    }

    .cs-final-actions .btn-primary {
      background: var(--white);
      color: var(--forest);
      border-color: var(--white);
    }

    .cs-final-actions .btn-primary:hover {
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    }

    .cs-final-actions .btn-ghost {
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.4);
    }

    .cs-final-actions .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .cs-final-links {
      display: flex;
      gap: clamp(18px, 2.6vw, 36px);
      justify-content: center;
      flex-wrap: wrap;
      padding-top: clamp(22px, 2.6vw, 32px);
      border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .cs-final-links a {
      font-family: var(--font-body);
      font-size: 13.5px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.78);
      text-decoration: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.3);
      padding-bottom: 3px;
      transition: color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
    }

    .cs-final-links a:hover {
      color: var(--white);
      border-color: var(--white);
    }

    @media (max-width: 700px) {
      .cs-hero-proof {
        grid-template-columns: 1fr;
      }

      .cs-proof-item {
        padding-left: 0;
      }

      .cs-proof-item+.cs-proof-item::before {
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        width: auto;
      }
    }