  /* finance */
  /* Styles specific to the financing page */
  .calculator-card {
    background-color: var(--slate-900);
    padding: 2.5rem;
    border-radius: 0.125rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-top: 4px solid var(--gold);
  }

  .calc-input {
    width: 100%;
    background-color: var(--slate-950);
    border: 1px solid var(--slate-800);
    color: var(--slate-300);
    padding: 1rem;
    border-radius: 0.125rem;
    font-family: monospace;
    font-size: 1.125rem;
    transition: border-color 0.2s;
  }

  .calc-input:focus {
    outline: none;
    border-color: var(--gold);
  }

  .benefit-step {
    width: 3rem;
    height: 3rem;
    background-color: var(--slate-900);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--slate-800);
    color: var(--gold);
    flex-shrink: 0;
  }
