.supported-section,
  .supported-section *,
  .supported-section *::before,
  .supported-section *::after {
    box-sizing: border-box;
  }
  .supported-section {
    width: 100%;
    background: #0D0E0A;
    border-top: 1px solid #2A2B24;
    border-bottom: 1px solid #2A2B24;
    padding: 64px 0;
    font-family: "Bitter", Georgia, serif;
    color: #F3EFE3;
    text-align: center;
  }
  .supported-container {
    max-width: 1216px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .supported-eyebrow {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #5DBA63;
    margin-bottom: 40px;
  }
  .supported-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 56px;
    min-height: 60px;
  }
  .supported-logo {
    height: 40px;
    opacity: 0.6;
    filter: grayscale(100%) brightness(1.8);
    transition: opacity 0.3s, filter 0.3s;
  }
  .supported-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
  }
  .supported-placeholder {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #54524A;
    text-transform: uppercase;
    padding: 24px 0;
  }

  @media (max-width: 768px) {
    .supported-section {
      padding: 48px 0;
    }
    .supported-logos {
      gap: 32px 40px;
    }
    .supported-logo {
      height: 32px;
    }
  }
  @media (max-width: 480px) {
    .supported-section {
      padding: 40px 0;
    }
    .supported-container {
      padding: 0 20px;
    }
    .supported-eyebrow {
      font-size: 11px;
      margin-bottom: 32px;
    }
    .supported-logos {
      gap: 24px 32px;
    }
    .supported-logo {
      height: 28px;
    }
  }