    .csc-page {
      background-color: var(--beige-light);
      background-image: url('../../img/blurs.jpg');
      background-size: 100% auto;
      background-position: top center;
      background-repeat: repeat-y;
      color: var(--black);
    }
    .csc-page .hero-container {
      background-image: none;
      background-color: transparent;
    }
    .csc-main { padding: 28px 0 64px; }
    .csc-intro { max-width: 820px; margin: 0 0 28px; }
    .csc-calculator-surface {
      width: 100%;
      padding: clamp(20px, 3vw, 36px);
      border: 1px solid rgba(29, 31, 26, 0.08);
      border-radius: 20px;
      background: var(--white);
    }
    .csc-intro h1 {
      margin: 0;
      font-family: var(--font-display);
      font-size: 36px;
      font-weight: 600;
      line-height: 1.1;
      text-align: left;
      text-wrap: balance;
    }
    @media (min-width: 768px) {
      .csc-intro h1 { font-size: 46px; }
    }
    .csc-intro__sub {
      margin: 14px 0 0;
      max-width: 640px;
      color: var(--dark-gray);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.45;
    }
    .csc-help-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      margin: 0;
      padding: 0;
      border: 1px solid rgba(29, 31, 26, 0.22);
      border-radius: 50%;
      background: transparent;
      color: var(--dark-gray);
      font-size: 12px;
      font-weight: 700;
      line-height: 1;
      cursor: pointer;
    }
    .csc-help-btn:hover { color: var(--dark-green-text); border-color: var(--dark-green-text); }
    .csc-help-btn:focus-visible {
      outline: 4px solid rgba(167, 246, 123, 0.32);
      outline-offset: 0;
    }
    .csc-help-panel {
      position: fixed;
      z-index: 40;
      width: min(340px, calc(100vw - 24px));
      padding: 16px;
      border: 1px solid rgba(29, 31, 26, 0.12);
      border-radius: 12px;
      background: var(--white);
      box-shadow: 0 8px 24px rgba(29, 31, 26, 0.12);
      color: var(--dark-gray);
      font-size: 14px;
      line-height: 1.45;
      text-align: left;
      animation: csc-help-panel-in 300ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
    }
    .csc-help-panel[hidden] { display: none !important; }
    .csc-help-panel.is-sheet {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      top: auto;
      width: 100%;
      max-height: 70vh;
      overflow: auto;
      border-radius: 16px 16px 0 0;
      padding: 16px;
      z-index: 1002;
    }
    .csc-help-panel p {
      margin: 0;
      text-align: left;
    }
    .csc-help-panel details { margin-top: 10px; }
    .csc-help-panel summary {
      cursor: pointer;
      color: var(--black);
      font-weight: 700;
    }
    .csc-help-close {
      display: none;
      margin-top: 14px;
      min-height: 44px;
      width: 100%;
      border: 1px solid rgba(29, 31, 26, 0.12);
      border-radius: 12px;
      background: var(--beige-light);
      color: var(--black);
      font-weight: 700;
      cursor: pointer;
    }
    .csc-help-panel.is-sheet .csc-help-close { display: block; }
    #csc-help-backdrop {
      position: fixed;
      inset: 0;
      z-index: 1001;
      background: rgba(0, 0, 0, 0.35);
    }
    #csc-help-backdrop[hidden] { display: none !important; }
    body.csc-help-open { overflow: hidden; }
    @keyframes csc-help-panel-in {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @media (prefers-reduced-motion: reduce) {
      .csc-help-panel { animation: none; }
    }

    .csc-label-row {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .csc-field {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 16px;
    }
    .csc-field label,
    .csc-field .csc-field-label {
      color: var(--black);
      font-size: 14px;
      font-weight: 700;
    }
    .csc-field input[type="number"],
    .csc-field input[type="text"],
    .csc-field select {
      width: 100%;
      min-height: 52px;
      border: 1px solid #E5E5E5;
      border-radius: 12px;
      background: #FFFFFD;
      color: var(--black);
      padding: 13px 14px;
      font: inherit;
      outline: none;
    }
    .csc-field input:focus,
    .csc-field select:focus,
    .csc-btn:focus-visible,
    .csc-help-btn:focus-visible {
      border-color: rgba(29, 31, 26, 0.28);
      outline: 4px solid rgba(167, 246, 123, 0.32);
      outline-offset: 0;
    }
    .csc-money {
      position: relative;
    }
    .csc-money::before {
      content: "$";
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--dark-gray);
      font-weight: 700;
      pointer-events: none;
    }
    .csc-money input { padding-left: 28px; }
    .csc-helper {
      color: var(--dark-gray);
      font-size: 13px;
      line-height: 1.45;
    }
    .csc-presets {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
    }
    .csc-presets button {
      min-height: 36px;
      padding: 6px 12px;
      border: 1px solid rgba(29, 31, 26, 0.12);
      border-radius: 999px;
      background: var(--white);
      color: var(--black);
      font-size: 13px;
      font-weight: 400;
      cursor: pointer;
    }
    .csc-presets button:hover { border-color: rgba(29, 31, 26, 0.28); }
    .csc-choice-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 18px;
    }
    .csc-choice {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 44px;
      color: var(--black);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
    }
    .csc-choice input {
      width: 18px;
      height: 18px;
      accent-color: var(--primary);
    }
    .csc-check {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin: 8px 0 16px;
      color: var(--black);
      font-size: 14px;
      font-weight: 600;
    }
    .csc-check input {
      width: 18px;
      height: 18px;
      margin-top: 2px;
      accent-color: var(--primary);
    }
    .csc-advanced {
      margin: 8px 0 18px;
      border-top: 1px solid rgba(29, 31, 26, 0.12);
      padding-top: 8px;
    }
    .csc-advanced > summary {
      min-height: 48px;
      display: flex;
      align-items: center;
      cursor: pointer;
      color: var(--black);
      font-weight: 700;
      list-style: none;
    }
    .csc-advanced > summary::-webkit-details-marker { display: none; }
    .csc-advanced > summary::after {
      content: "+";
      margin-left: auto;
      color: var(--dark-gray);
      font-weight: 800;
    }
    .csc-advanced[open] > summary::after { content: "−"; }
    .csc-advanced__body { padding: 8px 0 4px; }
    .csc-micro {
      margin: 0 0 12px;
      color: var(--dark-gray);
      font-size: 13px;
      line-height: 1.45;
    }
    .csc-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 56px;
      width: 100%;
      border: 0;
      border-radius: 12px;
      padding: 16px 20px;
      background: var(--black);
      color: var(--white);
      font-weight: 700;
      font-size: 16px;
      letter-spacing: 0.14px;
      line-height: 1.4;
      text-decoration: none;
      cursor: pointer;
    }
    .csc-btn:hover { background: #292c26; color: var(--white); }
    .csc-btn--text {
      width: auto;
      min-height: 44px;
      margin-top: 12px;
      padding: 0;
      background: transparent;
      color: var(--dark-green-text);
      font-weight: 700;
      text-decoration: underline;
      text-underline-position: from-font;
      border-radius: 0;
    }
    .csc-btn--text:hover {
      background: transparent;
      color: var(--black);
    }
    .csc-error {
      margin-top: 12px;
      padding: 16px;
      border: 0;
      border-radius: 12px;
      background: #a72d21;
      color: var(--white);
      font-size: 14px;
      font-weight: 700;
      line-height: 1.45;
      text-align: center;
    }
    .csc-error[hidden] { display: none !important; }

    .csc-result {
      display: none;
    }
    .csc-result[hidden] { display: none !important; }
    .csc-result.is-visible {
      display: block;
    }
    .csc-result__label {
      margin: 0;
      color: var(--white);
      font-size: 16px;
      font-weight: 600;
      line-height: 1.5;
    }
    .csc-result__amount {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      margin: 0;
      font-family: var(--font-display);
      font-weight: 500;
      color: var(--primary);
    }
    .csc-result__currency {
      font-size: 28px;
      font-weight: 500;
      line-height: 1.5;
    }
    .csc-result__dollars {
      font-size: 48px;
      font-weight: 500;
      line-height: 1;
    }
    @media (min-width: 768px) {
      .csc-result__currency { font-size: 32px; }
      .csc-result__dollars { font-size: 56px; }
    }
    .csc-result__payer,
    .csc-result__annual,
    .csc-result__weekly,
    .csc-result__role {
      margin: 0 auto;
      max-width: 40rem;
      color: var(--dark-gray);
      font-size: 16px;
      font-weight: 500;
      line-height: 1.5;
      text-align: center;
      text-wrap: pretty;
    }
    .csc-result__role {
      max-width: min(100%, 46rem);
    }
    .csc-result__disclaimer {
      margin: 16px 0 0;
      max-width: 720px;
      color: var(--dark-gray);
      font-size: 14px;
      line-height: 1.5;
    }
    .csc-breakdown-toolbar {
      position: relative;
      margin-top: 28px;
      padding: 0;
    }
    .csc-breakdown {
      margin-top: 0;
      border-top: 0;
      text-align: center;
    }
    .csc-breakdown > summary {
      min-height: 24px;
      max-width: calc(100% - 140px);
      margin-inline: auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      cursor: pointer;
      color: var(--black);
      font-size: 16px;
      font-weight: 600;
      text-decoration: underline;
      text-underline-position: from-font;
      list-style: none;
    }
    .csc-breakdown > summary::-webkit-details-marker { display: none; }
    .csc-breakdown > summary::after {
      content: "";
      width: 16px;
      height: 16px;
      margin: 0;
      background: url("../../img/icon-chevron-down.svg") center / 16px 16px no-repeat;
      transition: transform 160ms ease;
    }
    .csc-breakdown[open] > summary::after { transform: rotate(180deg); }
    .csc-breakdown > *:not(summary) {
      margin-top: 28px;
      width: 100%;
      text-align: left;
    }
    .csc-result-actions {
      position: absolute;
      top: 0;
      right: 0;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }
    .csc-result-action {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      width: auto;
      min-height: 32px;
      padding: 4px 2px;
      border: 0;
      border-radius: 8px;
      background: transparent;
      color: var(--dark-green-text);
      cursor: pointer;
    }
    .csc-result-action__label {
      font-family: inherit;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.2;
      text-decoration: underline;
      text-underline-position: from-font;
    }
    .csc-result-action:hover {
      color: var(--black);
    }
    .csc-result-action img {
      display: block;
      width: 16px;
      height: 16px;
    }
    @media (max-width: 767px) {
      .csc-breakdown-toolbar {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
      }
      .csc-result-actions {
        position: static;
        order: -1;
      }
      .csc-breakdown {
        width: 100%;
      }
      .csc-breakdown > summary {
        max-width: 100%;
      }
      .csc-breakdown > *:not(summary) {
        margin-top: 20px;
      }
    }
    .csc-ledger { margin-top: 8px; }
    .csc-ledger__row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 16px;
      padding: 10px 0;
      border-bottom: 1px solid rgba(29, 31, 26, 0.07);
      font-size: 15px;
    }
    .csc-ledger__row:last-child {
      border-bottom: 0;
    }
    .csc-ledger__row--strong { font-weight: 700; color: var(--black); }
    .csc-ledger__label {
      flex: 1 1 auto;
      min-width: 0;
      color: var(--dark-gray);
      text-align: left;
    }
    .csc-ledger__label-text { display: block; }
    .csc-ledger__helper {
      display: block;
      margin-top: 4px;
      max-width: 32rem;
      color: #8a8a8a;
      font-size: 12px;
      font-weight: 400;
      line-height: 1.4;
      text-wrap: pretty;
    }
    .csc-ledger__row--strong .csc-ledger__label { color: var(--black); }
    .csc-ledger__value {
      flex: 0 0 auto;
      color: var(--black);
      text-align: right;
      white-space: nowrap;
    }
    .csc-ledger__row--prose .csc-ledger__label {
      flex: 0 0 auto;
      white-space: nowrap;
    }
    .csc-ledger__row--prose .csc-ledger__value {
      flex: 1 1 auto;
      min-width: 0;
      max-width: min(28rem, 62%);
      white-space: normal;
      line-height: 1.45;
    }
    .csc-role-callout {
      margin: 0 0 20px;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      text-align: center;
    }
    .csc-role-callout__title {
      margin: 0 0 6px;
      color: var(--dark-gray);
      font-size: 13px;
      font-weight: 600;
      line-height: 1.35;
      text-wrap: balance;
    }
    .csc-role-callout__body {
      margin: 0 auto;
      max-width: min(100%, 46rem);
      color: #8a8a8a;
      font-size: 13px;
      font-weight: 400;
      line-height: 1.45;
      text-wrap: pretty;
    }
    .csc-explanation {
      width: 100%;
      text-align: left;
    }
    .csc-explain-group {
      margin-top: 28px;
      text-align: left;
    }
    .csc-explain-group__title {
      margin: 0 0 6px;
      color: var(--black);
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 600;
      line-height: 1.3;
      text-align: center;
      text-wrap: balance;
    }
    .csc-explain-group__helper {
      margin: 0 auto 10px;
      max-width: min(100%, 40rem);
      color: #8a8a8a;
      font-size: 13px;
      line-height: 1.4;
      text-align: center;
      text-wrap: pretty;
    }
    .csc-sources {
      margin-top: 28px;
      text-align: left;
    }
    .csc-sources__title {
      margin: 0 0 10px;
      color: var(--black);
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 600;
      text-wrap: balance;
    }
    .csc-sources__list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .csc-source {
      display: block;
      padding: 10px 12px;
      border: 1px solid rgba(29, 31, 26, 0.08);
      border-radius: 10px;
      background: #fafaf6;
      text-decoration: none;
      color: inherit;
    }
    .csc-source:hover { border-color: rgba(29, 31, 26, 0.18); }
    .csc-source__title {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--dark-green-text);
      font-size: 14px;
      font-weight: 700;
      text-decoration: underline;
      text-underline-position: from-font;
    }
    .csc-source__icon {
      width: 12px;
      height: 12px;
      flex: 0 0 auto;
    }
    .csc-source__desc {
      display: block;
      margin-top: 4px;
      color: var(--dark-gray);
      font-size: 13px;
      line-height: 1.4;
    }
    .csc-explain-meta {
      margin: 14px 0 0;
      color: #8a8a8a;
      font-size: 12px;
      line-height: 1.45;
      text-align: left;
    }
    .csc-product-transition {
      margin: 28px 0 4px;
      padding-top: 20px;
      border-top: 1px solid rgba(29, 31, 26, 0.08);
      text-align: center;
    }
    .csc-product-transition__title {
      margin: 0 0 6px;
      color: var(--dark-gray);
      font-size: 14px;
      font-weight: 600;
      line-height: 1.35;
      text-wrap: balance;
    }
    .csc-product-transition__body {
      margin: 0 auto 10px;
      max-width: 28rem;
      color: #8a8a8a;
      font-size: 13px;
      font-weight: 400;
      line-height: 1.45;
      text-wrap: pretty;
    }
    .csc-product-transition__link {
      color: var(--dark-green-text);
      font-size: 13px;
      font-weight: 600;
      line-height: 1.4;
      text-decoration: underline;
      text-underline-position: from-font;
    }
    .csc-product-transition__link:hover {
      color: var(--black);
    }
    .csc-meta-block { margin-top: 22px; }
    .csc-subhead {
      margin: 18px 0 8px;
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 600;
    }
    .csc-list {
      margin: 0;
      padding-left: 18px;
      color: var(--dark-gray);
      font-size: 14px;
      line-height: 1.45;
    }
    .csc-list li {
      margin-bottom: 4px;
      font-size: 14px;
    }
    .csc-version, .csc-official-links {
      margin: 14px 0 0;
      color: var(--dark-gray);
      font-size: 13px;
      line-height: 1.5;
    }
    .csc-official-links a {
      color: var(--dark-green-text);
      font-weight: 700;
      text-underline-position: from-font;
    }

    .csc-result-cta {
      display: grid;
      grid-template-columns: minmax(0, 160px) minmax(0, 1fr);
      gap: 32px 52px;
      align-items: center;
      justify-content: center;
      width: min(100%, 632px);
      margin: 48px auto 0;
      padding-top: 8px;
      border-top: 0;
      text-align: left;
    }
    .csc-result-cta[hidden] { display: none !important; }
    .csc-result-cta__media {
      justify-self: center;
      width: min(160px, 100%);
    }
    .csc-result-cta__media img {
      display: block;
      width: 100%;
      height: auto;
      filter: drop-shadow(2px 4px 8px rgba(0, 0, 0, 0.22));
    }
    .csc-result-cta__copy {
      min-width: 0;
    }
    .csc-result-cta h2 {
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(28px, 4vw, 36px);
      font-weight: 600;
      line-height: 1.2;
      text-align: left;
      color: var(--black);
    }
    .csc-result-cta p {
      margin: 16px 0 0;
      max-width: 26rem;
      color: var(--dark-gray);
      font-size: 16px;
      line-height: 1.5;
      text-align: left;
    }
    .csc-result-cta .cta-buttons {
      margin-top: 24px;
      margin-left: 0;
      margin-right: 0;
      justify-content: flex-start;
      gap: 16px;
      width: 100%;
      max-width: 100%;
    }
    @media (max-width: 767px) {
      .csc-result-cta {
        grid-template-columns: 1fr;
        gap: 24px;
        width: 100%;
        max-width: 100%;
        justify-items: center;
        text-align: center;
      }
      .csc-result-cta__copy {
        width: 100%;
        text-align: center;
      }
      .csc-result-cta h2,
      .csc-result-cta p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
      }
      .csc-result-cta .cta-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 12px;
      }
      .csc-result-cta .cta-buttons .app-store-btn,
      .csc-result-cta .cta-buttons .store-btn-wrap {
        width: min(165px, calc(50% - 6px));
        max-width: 165px;
        flex: 0 1 auto;
      }
      .csc-result-cta__media { width: min(140px, 42vw); }
    }
    @media (max-width: 380px) {
      .csc-result-cta .cta-buttons {
        flex-direction: column;
      }
      .csc-result-cta .cta-buttons .app-store-btn,
      .csc-result-cta .cta-buttons .store-btn-wrap {
        width: min(200px, 100%);
        max-width: 200px;
      }
    }

    .csc-section {
      margin-top: 64px;
      padding-top: 8px;
      text-align: left;
    }
    .csc-section h2 {
      margin: 0 0 12px;
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 600;
      text-align: left;
    }
    @media (min-width: 768px) {
      .csc-section h2 { font-size: 36px; }
    }
    .csc-section > p {
      max-width: none;
      margin-left: 0;
      margin-right: 0;
      text-align: left;
      color: var(--dark-gray);
      font-size: 17px;
    }
    .csc-section > p + p { margin-top: 12px; }
    .csc-models {
      display: grid;
      grid-template-columns: 1fr;
      gap: 22px;
      margin-top: 22px;
      text-align: left;
    }
    @media (min-width: 768px) {
      .csc-models { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }
    .csc-models h3 {
      margin: 0 0 8px;
      font-size: 18px;
      font-weight: 700;
    }
    .csc-models p {
      margin: 0;
      color: var(--dark-gray);
      font-size: 15px;
    }
    .csc-faq .support-faq-list {
      max-width: none;
      width: 100%;
      margin: 22px 0 0;
      text-align: left;
    }
    .csc-faq .support-faq-item summary,
    .csc-faq .support-faq-answer,
    .csc-faq .support-faq-answer p {
      text-align: left;
    }

    /* Content links: brand dark green, not browser blue (exclude header nav) */
    .csc-page .csc-main a:not(.csc-btn):not(.csc-result-action):not(.csc-help-btn):not(.csc-help-close):not(.csc-source) {
      color: var(--dark-green-text);
      text-underline-position: from-font;
    }
    .csc-page .csc-main a:not(.csc-btn):not(.csc-result-action):not(.csc-help-btn):not(.csc-help-close):not(.csc-source):hover {
      color: var(--black);
    }
    .csc-page .csc-source__title {
      color: var(--dark-green-text);
    }
    .csc-page .site-footer__col a,
    .csc-page .site-footer__legal a {
      color: var(--dark-green-text);
    }
    .csc-page .site-footer__col a:hover,
    .csc-page .site-footer__legal a:hover {
      color: var(--black);
    }

    /* Refined calculator form: 8px spacing system and compact row controls. */
    .csc-main { padding: 32px 0 64px; }
    .csc-intro {
      max-width: 1040px;
      margin: 0 auto 32px;
      text-align: center;
    }
    .csc-state-mark {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 103px;
      height: 103px;
      margin: 0 auto 24px;
      overflow: hidden;
      border-radius: 50%;
      background: #EDEBE0;
    }
    .csc-state-mark img {
      display: block;
      width: 72px;
      height: 72px;
      max-width: none;
      object-fit: contain;
    }
    .csc-intro h1 { text-align: center; }
    .csc-intro__sub {
      max-width: 720px;
      margin: 16px auto 0;
      color: var(--black);
      font-size: 16px;
      font-weight: 400;
    }
    .csc-calculator-surface {
      width: min(800px, 100%);
      margin: 0 auto;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
    }
    .csc-calculator-surface.has-result {
      border: 1px solid #f3f3f3;
      border-radius: 32px;
      background: var(--light-green);
      overflow: hidden;
    }
    #csc-form {
      display: flex;
      flex-direction: column;
      gap: 32px;
      padding: 24px;
      border-radius: 32px;
      background: var(--light-green);
    }
    .csc-calculator-surface.has-result #csc-form {
      border: 0;
      border-radius: 0;
      background: transparent;
    }
    .csc-form-section {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .csc-form-section__title {
      margin: 0;
      color: var(--black);
      font-size: 22px;
      font-weight: 700;
      line-height: 1.3;
      text-align: center;
    }
    .csc-row-card {
      overflow: visible;
      padding: 8px 24px;
      border-radius: 16px;
      background: var(--white);
    }
    .csc-form-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) max-content;
      align-items: center;
      gap: 24px;
      min-height: 60px;
      padding: 16px 0;
      border-bottom: 1px solid #e5e5e5;
    }
    .csc-form-row:last-child { border-bottom: 0; }
    .csc-form-row.is-invalid {
      box-shadow: none;
    }
    .csc-form-row.is-invalid label,
    .csc-form-row.is-invalid .csc-field-label {
      color: #8f241a;
    }
    .csc-form-row.is-invalid .csc-money.csc-inline-control,
    .csc-form-row.is-invalid .csc-custom-select__button,
    .csc-form-row.is-invalid .csc-inline-control > select,
    .csc-form-row.is-invalid .csc-days-control input {
      border-color: #a72d21;
    }
    .csc-form-row .csc-label-row { gap: 8px; }
    .csc-form-row label,
    .csc-form-row .csc-field-label {
      margin: 0;
      color: var(--black);
      font-size: 18px;
      font-weight: 600;
      line-height: 1.4;
    }
    .csc-inline-control {
      display: flex;
      justify-content: flex-end;
      min-width: 0;
    }
    .csc-inline-control select,
    .csc-inline-control input {
      width: 100%;
      min-height: 44px;
      border: 1px solid #c0c0c0;
      border-radius: 8px;
      background-color: transparent;
      color: var(--black);
      padding: 8px 36px 8px 12px;
      font: inherit;
      font-size: 18px;
      text-align: right;
      outline: none;
    }
    .csc-inline-control select {
      appearance: none;
      background-image: url("../../img/icon-chevrons-up-down.svg");
      background-position: right 12px center;
      background-repeat: no-repeat;
      background-size: 16px;
      cursor: pointer;
    }
    .csc-native-select--enhanced {
      position: absolute !important;
      width: 1px !important;
      height: 1px !important;
      min-height: 0 !important;
      margin: 0 !important;
      padding: 0 !important;
      border: 0 !important;
      opacity: 0;
      pointer-events: none;
    }
    .csc-custom-select {
      position: relative;
      width: max-content;
      max-width: 100%;
      min-width: 6.5rem;
    }
    .csc-custom-select__button {
      width: 100%;
      min-height: 44px;
      padding: 8px 36px 8px 12px;
      border: 1px solid #c0c0c0;
      border-radius: 8px;
      background-color: transparent;
      background-image: url("../../img/icon-chevrons-up-down.svg");
      background-position: right 12px center;
      background-repeat: no-repeat;
      background-size: 16px;
      color: var(--black);
      font: inherit;
      font-size: 18px;
      text-align: right;
      cursor: pointer;
    }
    .csc-custom-select__button:focus-visible {
      outline: 2px solid rgba(29, 31, 26, 0.24);
      outline-offset: 2px;
    }
    .csc-custom-select__list {
      position: absolute;
      z-index: 50;
      top: calc(100% + 8px);
      right: 0;
      width: max-content;
      min-width: 100%;
      overflow: hidden;
      padding: 8px;
      border: 1px solid rgba(29, 31, 26, 0.12);
      border-radius: 12px;
      background: var(--beige-light);
      box-shadow: 0 12px 32px rgba(29, 31, 26, 0.16);
      animation: csc-select-open 160ms ease-out both;
    }
    .csc-custom-select__list[hidden] { display: none !important; }
    .csc-custom-select__option {
      display: block;
      width: 100%;
      min-height: 44px;
      padding: 8px 40px 8px 16px;
      border: 0;
      border-radius: 8px;
      background: transparent;
      color: var(--black);
      font: inherit;
      font-size: 18px;
      text-align: left;
      white-space: nowrap;
      cursor: pointer;
    }
    .csc-custom-select__option:hover,
    .csc-custom-select__option:focus-visible {
      background: rgba(167, 246, 123, 0.42);
      outline: none;
    }
    .csc-custom-select__option[aria-selected="true"] {
      background-color: var(--light-green);
      font-weight: 600;
    }
    @keyframes csc-select-open {
      from { opacity: 0; transform: translateY(-4px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .csc-inline-control input::placeholder { color: var(--dark-gray); opacity: 1; }
    .csc-inline-control input { caret-color: var(--black); }
    .csc-inline-control input:focus,
    .csc-inline-control select:focus {
      background-color: transparent;
      outline: 2px solid rgba(29, 31, 26, 0.2);
      outline-offset: 2px;
    }
    .csc-money.csc-inline-control {
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      box-sizing: border-box;
      min-width: 128px;
      min-height: 44px;
      padding: 8px 12px;
      border: 1px solid #c0c0c0;
      border-radius: 7px;
      background: transparent;
    }
    .csc-money.csc-inline-control:focus-within {
      outline: 2px solid rgba(29, 31, 26, 0.2);
      outline-offset: 2px;
    }
    .csc-money.csc-inline-control::before {
      position: static;
      transform: none;
      flex: 0 0 auto;
      color: var(--black);
      font-size: 18px;
      font-weight: 400;
      line-height: 1.3;
      text-align: left;
    }
    .csc-money.csc-inline-control input {
      flex: 1 1 auto;
      width: 3ch;
      min-width: 2ch;
      max-width: 13ch;
      min-height: 0;
      padding: 0;
      border: 0;
      border-radius: 0;
      font-size: 18px;
      line-height: 1.3;
      text-align: right;
    }
    .csc-money.csc-inline-control input:focus {
      outline: none;
    }
    .csc-days-control {
      display: inline-flex;
      align-items: center;
      justify-content: end;
      gap: 8px;
      color: var(--black);
      font-size: 18px;
    }
    .csc-days-control input {
      width: 5.5rem;
      min-height: 44px;
      padding: 8px 12px;
      border: 1px solid #c0c0c0;
      border-radius: 7px;
      text-align: right;
    }
    .csc-visually-hidden {
      position: absolute !important;
      width: 1px !important;
      height: 1px !important;
      overflow: hidden !important;
      clip: rect(0 0 0 0) !important;
      clip-path: inset(50%) !important;
      white-space: nowrap !important;
    }
    .csc-help-btn {
      width: 24px;
      height: 24px;
      flex: 0 0 24px;
      border: 0;
      background-image:
        url("../../img/icon-question-dot.svg"),
        url("../../img/icon-question-mark.svg"),
        url("../../img/icon-question-circle.svg");
      background-position: center 17px, center 7px, center;
      background-repeat: no-repeat;
      background-size: 2px 2px, 7px 7px, 19px 19px;
      color: transparent;
      overflow: hidden;
    }
    .csc-help-btn:hover {
      border: 0;
      color: transparent;
      opacity: 0.72;
    }
    .csc-segmented {
      display: inline-grid;
      grid-template-columns: max-content max-content;
      justify-self: end;
      overflow: hidden;
      width: auto;
      min-height: 44px;
      border: 1px solid #c0c0c0;
      border-radius: 8px;
    }
    .csc-segmented[aria-invalid="true"] {
      border-color: #a72d21;
    }
    .csc-segmented label {
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 0;
      padding: 8px 14px;
      border-right: 1px solid #c0c0c0;
      color: var(--black);
      font-size: 16px;
      font-weight: 400;
      white-space: nowrap;
      cursor: pointer;
    }
    .csc-segmented label:last-child { border-right: 0; }
    .csc-segmented input {
      position: absolute;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }
    .csc-segmented label:has(input:checked) {
      background: var(--black);
      color: var(--white);
    }
    .csc-segmented label:has(input:focus-visible) {
      outline: 3px solid rgba(29, 31, 26, 0.22);
      outline-offset: -3px;
    }
    .csc-parenting-expanded {
      margin: 0;
      padding: 0 0 8px;
      border: 0;
    }
    .csc-parenting-order-row,
    .csc-form-row:has(+ .csc-parenting-expanded),
    .csc-form-row:has(+ .csc-presets-panel) {
      border-bottom: 0;
    }
    .csc-parenting-expanded[hidden] { display: none !important; }
    .csc-parenting-heading {
      margin: 16px 0 10px;
      color: var(--black);
      font-size: 16px;
      font-weight: 700;
      line-height: 1.4;
    }
    .csc-parenting-expanded .csc-form-row,
    .csc-parenting-expanded .csc-parenting-days-row,
    .csc-parenting-expanded .csc-compact-row {
      min-height: 0;
      padding: 16px 0;
      border-bottom: 0;
    }
    .csc-parenting-expanded .csc-helper {
      margin: 0 0 12px;
      max-width: 36rem;
    }
    .csc-presets-panel {
      margin: 0 0 8px;
      padding: 16px;
      border: 1px solid rgba(29, 31, 26, 0.08);
      border-radius: 12px;
      background: var(--beige-light);
      text-align: center;
    }
    .csc-residence-panel {
      text-align: left;
    }
    .csc-residence-panel .csc-parenting-heading {
      margin: 0 0 12px;
      text-align: left;
    }
    .csc-residence-helper {
      margin: 12px 0 0;
      color: #666c5e;
      font-size: 13px;
      line-height: 1.5;
    }
    .csc-presets-panel__percent,
    .csc-presets-panel .csc-helper {
      max-width: 36rem;
      text-align: center;
    }
    .csc-presets-panel__percent {
      margin: 0 auto 12px;
    }
    .csc-presets-panel .csc-helper {
      margin: 12px auto 0;
    }
    .csc-residence-panel .csc-residence-helper {
      margin: 12px 0 0;
      max-width: none;
      text-align: left;
    }
    .csc-presets-panel__percent[hidden] { display: none !important; }
    .csc-presets-intro {
      margin: 0 0 10px;
      max-width: 36rem;
      color: #666c5e;
      font-size: 13px;
      line-height: 1.5;
    }
    .csc-presets-heading {
      margin: 0 0 10px;
      color: var(--black);
      font-size: 14px;
      font-weight: 700;
      line-height: 1.4;
      text-align: center;
    }
    .csc-parenting-expanded .csc-presets {
      margin-top: 0;
      justify-content: center;
    }
    .csc-presets button.is-selected {
      border-color: var(--black);
      background: var(--black);
      color: var(--white);
    }
    .csc-preset-note {
      margin: 10px auto 0;
      max-width: 40rem;
      color: #666c5e;
      font-size: 13px;
      line-height: 1.45;
      text-align: center;
    }
    .csc-preset-note[hidden] { display: none !important; }
    .csc-choice-stack {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .csc-choice-card {
      display: flex;
      align-items: center;
      gap: 10px;
      min-height: 44px;
      padding: 10px 12px;
      border: 1px solid #c0c0c0;
      border-radius: 10px;
      background: var(--white);
      color: var(--black);
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
    }
    .csc-choice-card:has(input:checked) {
      border-color: var(--black);
      box-shadow: inset 0 0 0 1px var(--black);
    }
    .csc-choice-card input {
      width: 18px;
      height: 18px;
      accent-color: var(--black);
    }
    .csc-notice {
      margin-top: 12px;
      padding: 12px 14px;
      border: 1px solid rgba(29, 31, 26, 0.12);
      border-radius: 12px;
      background: rgba(255, 255, 253, 0.8);
      color: var(--black);
      font-size: 14px;
      line-height: 1.5;
    }
    .csc-notice p { margin: 0 0 8px; }
    .csc-notice p:last-child { margin-bottom: 0; }
    .csc-advanced {
      margin: 0;
      padding: 0;
      border: 0;
    }
    .csc-advanced > summary {
      justify-content: center;
      gap: 8px;
      min-height: auto;
      color: var(--black);
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 600;
      line-height: 1.3;
      text-align: center;
      text-decoration: underline;
    }
    .csc-advanced > summary::after {
      content: "";
      width: 24px;
      height: 24px;
      margin: 0;
      background: url("../../img/icon-chevron-down.svg") center / 24px 24px no-repeat;
      transition: transform 160ms ease;
    }
    .csc-advanced[open] > summary::after {
      content: "";
      transform: rotate(180deg);
    }
    .csc-advanced__optional { font-weight: 400; }
    .csc-advanced__body { padding: 16px 0 0; }
    .csc-advanced__body .csc-row-card { text-align: left; }
    .csc-advanced__note {
      margin: 16px 0 0;
      color: #666c5e;
      font-size: 13px;
      line-height: 1.5;
      text-align: center;
    }
    .csc-scope-note {
      margin: 0;
      max-width: 40rem;
      margin-left: auto;
      margin-right: auto;
      color: #666c5e;
      font-size: 13px;
      line-height: 1.5;
      text-align: center;
      text-wrap: pretty;
    }
    #csc-form .csc-scope-note {
      margin-top: 4px;
      margin-bottom: 4px;
    }
    #csc-form .csc-btn {
      position: relative;
      min-height: 56px;
      border-radius: 12px;
      padding: 16px 20px;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.14px;
      line-height: 1.4;
    }
    #csc-form .csc-btn__label {
      display: inline-block;
      transition: opacity 160ms ease;
    }
    #csc-form .csc-btn__spinner {
      position: absolute;
      inset: 0;
      margin: auto;
      width: 22px;
      height: 22px;
      border: 2px solid rgba(255, 255, 253, 0.28);
      border-top-color: var(--white);
      border-radius: 50%;
      opacity: 0;
      pointer-events: none;
    }
    #csc-form .csc-btn.is-loading {
      pointer-events: none;
    }
    #csc-form .csc-btn.is-loading .csc-btn__label {
      opacity: 0;
    }
    #csc-form .csc-btn.is-loading .csc-btn__spinner {
      opacity: 1;
      animation: csc-btn-spin 650ms linear infinite;
    }
    @keyframes csc-btn-spin {
      to { transform: rotate(360deg); }
    }
    #csc-form .csc-btn--secondary {
      min-height: 56px;
      padding: 16px 20px;
      background: transparent;
      color: var(--black);
      border: 1px solid var(--black);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.14px;
      line-height: 1.4;
    }
    #csc-form .csc-micro {
      order: 20;
      max-width: 560px;
      margin: -16px auto 0;
      color: #666c5e;
      font-size: 13px;
      line-height: 1.5;
      text-align: center;
    }
    #csc-form > .csc-btn { order: 19; }
    #csc-form > .csc-error { order: 21; margin-top: -16px; }
    .csc-calculator-surface.has-result .csc-result {
      display: none;
      margin: 0;
      padding: 40px 24px 48px;
      border: 0;
      border-radius: 0;
      background: var(--white);
      text-align: center;
    }
    .csc-calculator-surface.has-result .csc-result.is-visible {
      display: block;
      animation: csc-result-in 420ms ease-out both;
    }
    @keyframes csc-result-in {
      from {
        opacity: 0;
        transform: translateY(18px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .csc-result__payer { margin: 0 auto 22px; }
    .csc-result__hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      width: min(100%, 743px);
      margin: 0 auto;
      padding: 16px 32px;
      border: 1px solid #c0c0c0;
      border-radius: 16px;
      background: var(--black);
      color: var(--white);
    }
    .csc-result__annual,
    .csc-result__weekly {
      margin: 0;
      color: #c4c4c4;
      font-size: 16px;
      font-weight: 500;
      line-height: 1.5;
    }
    .csc-result__role { margin: 24px auto 0; }
    .csc-result__disclaimer { margin-left: auto; margin-right: auto; }

    @media (max-width: 767px) {
      .csc-main { padding: 24px 0 48px; }
      .csc-intro { margin-bottom: 24px; }
      .csc-intro h1 { font-size: 36px; }
      .csc-state-mark {
        width: 80px;
        height: 80px;
        margin-bottom: 18px;
      }
      .csc-state-mark img {
        width: 56px;
        height: 56px;
      }
      .csc-calculator-surface { padding: 0; border-radius: 0; }
      .csc-calculator-surface.has-result { border-radius: 24px; }
      #csc-form { gap: 24px; padding: 16px; border-radius: 24px; }
      .csc-calculator-surface.has-result .csc-result { padding: 28px 16px 32px; }
      .csc-result__hero { padding: 16px 20px; }
      .csc-result__currency { font-size: 24px; }
      .csc-result__dollars { font-size: 44px; }
      .csc-breakdown-toolbar {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 0;
      }
      .csc-result-actions {
        position: static;
      }
      .csc-breakdown {
        width: 100%;
      }
      .csc-breakdown > summary {
        max-width: 100%;
      }
      .csc-breakdown > *:not(summary) { margin-top: 20px; }
      .csc-ledger__row--prose {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
      }
      .csc-ledger__row--prose .csc-ledger__label {
        white-space: normal;
      }
      .csc-ledger__row--prose .csc-ledger__value {
        max-width: none;
        text-align: left;
      }
      .csc-form-section { gap: 8px; }
      .csc-form-section__title { font-size: 18px; }
      .csc-row-card { padding: 0 16px; }
      .csc-form-row {
        grid-template-columns: minmax(0, 1fr) max-content;
        gap: 16px;
        padding: 16px 0;
      }
      .csc-form-row label,
      .csc-form-row .csc-field-label { font-size: 16px; }
      .csc-inline-control { justify-content: flex-end; }
      .csc-inline-control select,
      .csc-inline-control input {
        background-color: transparent;
        font-size: 16px;
        text-align: right;
      }
      .csc-custom-select__button {
        font-size: 16px;
        text-align: right;
      }
      .csc-custom-select__option { font-size: 16px; }
      .csc-parenting-expanded {
        padding-left: 0;
      }
      .csc-money.csc-inline-control {
        min-width: 112px;
      }
      .csc-money.csc-inline-control::before,
      .csc-money.csc-inline-control input {
        font-size: 16px;
      }
      .csc-days-control {
        font-size: 16px;
      }
      .csc-days-control input {
        width: 4.75rem;
        font-size: 16px;
      }
      .csc-segmented {
        width: auto;
        justify-self: end;
      }
      .csc-advanced > summary { font-size: 18px; }
    }

    @media (max-width: 380px) {
      .csc-form-row {
        grid-template-columns: minmax(0, 1fr) max-content;
        gap: 8px;
      }
      .csc-segmented label {
        padding: 8px 10px;
        font-size: 14px;
      }
    }

    .csc-print-root { display: none; }
    @media print {
      @page {
        margin: 0.5in;
      }
      html, body {
        background: #fff !important;
        color: #000 !important;
      }
      body > *:not(.csc-print-root) {
        display: none !important;
      }
      .csc-print-root {
        display: block !important;
        position: static !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        color: #000 !important;
        background: #fff !important;
      }
      .csc-print-doc {
        font-size: 11.5px;
        line-height: 1.35;
      }
      .csc-print-brand {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
        border-bottom: 1px solid #ccc;
        padding-bottom: 8px;
      }
      .csc-print-brand p { margin: 0; font-size: 11px; }
      .csc-print-root h1 { font-size: 18px; margin: 0 0 4px; }
      .csc-print-root h2 { font-size: 13px; margin: 12px 0 6px; }
      .csc-print-date { margin: 0 0 8px; font-size: 11px; }
      .csc-print-inputs {
        margin: 0;
        padding-left: 18px;
      }
      .csc-print-inputs li { margin: 0 0 2px; }
      .csc-role-callout {
        margin: 0 0 8px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        text-align: center;
        break-inside: avoid;
      }
      .csc-role-callout__title { font-size: 11px; margin-bottom: 2px; font-weight: 600; }
      .csc-role-callout__body { font-size: 10px; color: #666; }
      .csc-explain-group {
        margin-top: 10px;
        break-inside: avoid;
      }
      .csc-explain-group__title { font-size: 12.5px; margin-bottom: 2px; text-align: center; }
      .csc-explain-group__helper { font-size: 10px; margin: 0 auto 4px; color: #666; text-align: center; }
      .csc-ledger__row { padding: 4px 0; font-size: 11px; }
      .csc-ledger__helper { font-size: 9.5px; color: #666; max-width: 100%; }
      .csc-sources { margin-top: 10px; break-inside: avoid; }
      .csc-sources__title { font-size: 12.5px; margin-bottom: 6px; }
      .csc-source {
        padding: 6px 8px;
        border: 1px solid #ddd;
        border-radius: 6px;
        background: #fff;
      }
      .csc-source__title { font-size: 11px; }
      .csc-source__desc { font-size: 10px; }
      .csc-explain-meta { margin-top: 8px; font-size: 10px; color: #555; }
      .csc-print-disclaimer, .csc-print-footer {
        margin-top: 10px;
        font-size: 10px;
        line-height: 1.35;
      }
      .csc-meta-block { display: none !important; }
      .csc-help-panel, #csc-help-backdrop { display: none !important; }
    }
