  /* ── BACKDROP ── */
  .dn-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(13, 14, 10, 0.85);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    padding: 16px;
  }
  .dn-backdrop.open {
    opacity: 1;
    pointer-events: all;
  }

  /* ── MODAL CONTAINER ── */
  .dn-modal {
    width: 100%;
    max-width: 400px;
    max-height: 90vh;
    background: #14150F;
    border: 1px solid #2A2B24;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.25s ease;
  }
  .dn-backdrop.open .dn-modal {
    transform: translateY(0);
  }

  /* ── CLOSE BUTTON ── */
  .dn-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: #1A1B15;
    border: 1px solid #2A2B24;
    border-radius: 0;
    color: #A8A393;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.15s, color 0.15s;
    line-height: 1;
    z-index: 3;
    padding: 0;
  }
  .dn-modal-close:hover {
    border-color: #5DBA63;
    color: #F3EFE3;
  }

  /* ── PROGRESS DOTS ── */
  .dn-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 0 12px;
  }
  .dn-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2A2B24;
    transition: background 0.2s ease;
  }
  .dn-dot.active {
    background: #5DBA63;
  }
  .dn-dot.done {
    background: #5DBA63;
  }
  .dn-dot-connector {
    width: 24px;
    height: 1px;
    background: #2A2B24;
    transition: background 0.2s ease;
  }
  .dn-dot-connector.done {
    background: #5DBA63;
  }

  /* ── PANELS WRAPPER (slide mechanism) ── */
  .dn-panels-wrap {
    width: 300%;
    display: flex;
    transition: transform 0.3s ease;
    transform: translateX(0);
  }

  /* ── INDIVIDUAL PANEL ── */
  .dn-panel {
    width: 33.333%;
    flex-shrink: 0;
    overflow-y: auto;
    max-height: calc(90vh - 60px);
    padding: 0 24px 24px;
    box-sizing: border-box;
  }
  .dn-panel::-webkit-scrollbar {
    width: 4px;
  }
  .dn-panel::-webkit-scrollbar-track {
    background: #1A1B15;
  }
  .dn-panel::-webkit-scrollbar-thumb {
    background: #2A2B24;
  }

  /* ── BRANDED HEADER AREA ── */
  .dn-branded-header {
    width: 100%;
    height: 120px;
    background: #060d13;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
  }
  .dn-pj-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .dn-pj-label {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.6s;
    white-space: nowrap;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    z-index: 1;
  }
  .dn-pj-label.show { opacity: 1; }
  .dn-pj-sublabel {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "JetBrains Mono", monospace;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #5DBA63;
    opacity: 0;
    transition: opacity 0.6s;
    white-space: nowrap;
    z-index: 1;
  }
  .dn-pj-sublabel.show { opacity: 0.8; }

  /* ── JAB INFO BLOCK ── */
  .dn-org-name {
    font-family: "Archivo Black", sans-serif;
    font-size: 20px;
    color: #F3EFE3;
    line-height: 1.2;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .dn-org-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #A8A393;
    text-decoration: none;
    transition: color 0.15s;
    flex-shrink: 0;
  }
  .dn-org-link:hover {
    color: #5DBA63;
  }
  .dn-org-link svg {
    width: 14px;
    height: 14px;
  }
  .dn-org-meta {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #54524A;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .dn-org-desc {
    font-family: "Bitter", Georgia, serif;
    font-size: 13px;
    color: #A8A393;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  /* ── PROGRESS BAR ── */
  .dn-progress-section {
    margin-bottom: 24px;
  }
  .dn-progress-labels {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
  }
  .dn-progress-raised {
    font-family: "Archivo Black", sans-serif;
    font-size: 14px;
    color: #5DBA63;
  }
  .dn-progress-goal {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 1px;
    color: #54524A;
    text-transform: uppercase;
  }
  .dn-progress-bar {
    width: 100%;
    height: 4px;
    background: #2A2B24;
    border-radius: 0;
    overflow: hidden;
  }
  .dn-progress-fill {
    height: 100%;
    background: #5DBA63;
    width: 0%;
    transition: width 0.6s ease;
  }

  /* ── AMOUNT GRID ── */
  .dn-amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
  }
  .dn-amount {
    padding: 14px 0;
    background: transparent;
    border: 1px solid #2A2B24;
    border-radius: 0;
    color: #A8A393;
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
  }
  .dn-amount:hover {
    border-color: #5DBA63;
    color: #F3EFE3;
  }
  .dn-amount.selected {
    border-color: #5DBA63;
    color: #5DBA63;
    background: rgba(93, 186, 99, 0.08);
  }

  /* ── CUSTOM AMOUNT INPUT ── */
  .dn-custom-input-wrap {
    display: none;
    margin-bottom: 16px;
    position: relative;
  }
  .dn-custom-input-wrap.visible {
    display: flex;
  }
  .dn-custom-prefix {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "JetBrains Mono", monospace;
    font-size: 16px;
    color: #5DBA63;
    pointer-events: none;
  }
  .dn-custom-input {
    width: 100%;
    padding: 14px 12px 14px 28px;
    background: #1A1B15;
    border: 1px solid #5DBA63;
    border-radius: 0;
    color: #F3EFE3;
    font-family: "JetBrains Mono", monospace;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
  }
  .dn-custom-input::placeholder {
    color: #54524A;
  }
  .dn-custom-back {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: transparent;
    border: 1px solid #2A2B24;
    color: #A8A393;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
  }
  .dn-custom-back:hover { border-color: #5DBA63; color: #F3EFE3; }

  /* ── FREQUENCY TOGGLE ── */
  .dn-frequency {
    display: flex;
    border: 1px solid #2A2B24;
    border-radius: 0;
    margin-bottom: 20px;
    overflow: hidden;
  }
  .dn-toggle {
    flex: 1;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-radius: 0;
    color: #54524A;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    transition: background 0.15s, color 0.15s;
  }
  .dn-toggle.active {
    background: rgba(93, 186, 99, 0.1);
    color: #5DBA63;
  }
  .dn-toggle:first-child {
    border-right: 1px solid #2A2B24;
  }

  /* ── MONTHLY CONFIRMATION LINE ── */
  .dn-monthly-confirm {
    display: none;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.5px;
    color: #FF5B1F;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .dn-monthly-confirm.visible {
    display: block;
  }

  /* ── BUTTONS ── */
  .dn-btn-primary {
    width: 100%;
    padding: 16px 24px;
    background: #5DBA63;
    border: 1px solid #5DBA63;
    border-radius: 0;
    color: #0D0E0A;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    transition: background 0.15s, border-color 0.15s;
  }
  .dn-btn-primary:hover {
    background: #4da854;
    border-color: #4da854;
  }
  .dn-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  .dn-btn-ghost {
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    border: 1px solid #2A2B24;
    border-radius: 0;
    color: #A8A393;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.15s, color 0.15s;
  }
  .dn-btn-ghost:hover {
    border-color: #5DBA63;
    color: #F3EFE3;
  }

  /* ── FORM INPUTS ── */
  .dn-input {
    width: 100%;
    padding: 14px 16px;
    background: #1A1B15;
    border: 1px solid #2A2B24;
    border-radius: 0;
    color: #F3EFE3;
    font-family: "Bitter", Georgia, serif;
    font-size: 16px;
    outline: none;
    transition: border-color 0.15s;
    box-sizing: border-box;
  }
  .dn-input::placeholder {
    color: #54524A;
  }
  .dn-input:focus {
    border-color: #5DBA63;
  }

  /* ── STRIPE ELEMENT CONTAINER ── */
  .dn-stripe-element {
    padding: 14px 16px;
    background: #1A1B15;
    border: 1px solid #2A2B24;
    border-radius: 0;
    min-height: 50px;
    transition: border-color 0.15s;
  }
  .dn-stripe-element:focus-within {
    border-color: #5DBA63;
  }

  /* ── ERROR MESSAGE ── */
  .dn-error {
    display: none;
    padding: 12px 16px;
    border: 1px solid rgba(255, 91, 31, 0.3);
    border-radius: 0;
    background: rgba(255, 91, 31, 0.06);
    margin-top: 12px;
  }
  .dn-error.visible {
    display: block;
  }
  .dn-error-text {
    font-family: "Bitter", Georgia, serif;
    font-size: 13px;
    color: #FF5B1F;
    line-height: 1.4;
  }

  /* ── DISCLAIMER ── */
  .dn-disclaimer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #2A2B24;
    font-family: "JetBrains Mono", monospace;
    font-size: 8px;
    letter-spacing: 0.5px;
    color: #54524A;
    line-height: 1.6;
  }

  /* ── BACK LINK ── */
  .dn-back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #A8A393;
    text-transform: uppercase;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 20px;
    transition: color 0.15s;
  }
  .dn-back:hover {
    color: #5DBA63;
  }

  /* ── STEP EYEBROW ── */
  .dn-eyebrow {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 2px;
    color: #54524A;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  /* ── PANEL TITLE ── */
  .dn-title {
    font-family: "Archivo Black", sans-serif;
    font-size: 20px;
    color: #F3EFE3;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  /* ── AMOUNT DISPLAY (Panel 2) ── */
  .dn-amount-display {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
  }
  .dn-amount-large {
    font-family: "Archivo Black", sans-serif;
    font-size: 36px;
    color: #F3EFE3;
    line-height: 1;
  }
  .dn-amount-badge {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #5DBA63;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid rgba(93, 186, 99, 0.3);
    border-radius: 0;
  }

  /* ── FORM GROUP ── */
  .dn-form-group {
    margin-bottom: 12px;
  }
  .dn-form-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #54524A;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
  }

  /* ── SECURE FOOTER (Panel 2) ── */
  .dn-secure-footer {
    margin-top: 20px;
    text-align: center;
    font-family: "JetBrains Mono", monospace;
    font-size: 9px;
    letter-spacing: 1.5px;
    color: #54524A;
    text-transform: uppercase;
  }

  /* ── CHECKMARK (Panel 3) ── */
  .dn-check {
    width: 64px;
    height: 64px;
    border: 2px solid #5DBA63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px auto 20px;
  }
  .dn-check svg {
    width: 28px;
    height: 28px;
    color: #5DBA63;
  }

  /* ── SUCCESS TITLE ── */
  .dn-success-title {
    font-family: "Archivo Black", sans-serif;
    font-size: 24px;
    color: #F3EFE3;
    text-align: center;
    margin-bottom: 4px;
  }
  .dn-success-meta {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #54524A;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
  }

  /* ── RECEIPT CARD ── */
  .dn-receipt {
    border: 1px solid #2A2B24;
    border-radius: 0;
    padding: 20px;
    margin-bottom: 20px;
    background: #1A1B15;
  }
  .dn-receipt-title {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 2px;
    color: #54524A;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #2A2B24;
  }
  .dn-receipt-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 6px 0;
  }
  .dn-receipt-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 1px;
    color: #54524A;
    text-transform: uppercase;
  }
  .dn-receipt-value {
    font-family: "Bitter", Georgia, serif;
    font-size: 13px;
    color: #F3EFE3;
    text-align: right;
  }
  .dn-receipt-value.green {
    color: #5DBA63;
  }

  /* ── BUTTON STACK ── */
  .dn-btn-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
  }

  /* ── INSTRUCTIONS (expandable) ── */
  .dn-instructions {
    border-top: 1px solid #2A2B24;
    padding-top: 16px;
    margin-bottom: 20px;
  }
  .dn-instructions-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #5DBA63;
    text-transform: uppercase;
    transition: color 0.15s;
  }
  .dn-instructions-toggle:hover {
    color: #F3EFE3;
  }
  .dn-instructions-arrow {
    transition: transform 0.2s ease;
    font-size: 12px;
  }
  .dn-instructions-arrow.expanded {
    transform: rotate(180deg);
  }
  .dn-instructions-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .dn-instructions-content {
    padding-top: 16px;
  }
  .dn-instructions-item {
    margin-bottom: 14px;
  }
  .dn-instructions-item-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 1px;
    color: #A8A393;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .dn-instructions-item-text {
    font-family: "Bitter", Georgia, serif;
    font-size: 12px;
    color: #54524A;
    line-height: 1.5;
  }
  .dn-instructions-item-text a {
    color: #5DBA63;
    text-decoration: none;
  }
  .dn-instructions-item-text a:hover {
    text-decoration: underline;
  }

  /* ── CONFIRMATION FOOTER ── */
  .dn-confirm-footer {
    text-align: center;
    font-family: "JetBrains Mono", monospace;
    font-size: 9px;
    letter-spacing: 1.5px;
    color: #54524A;
    text-transform: uppercase;
    padding-top: 12px;
    border-top: 1px solid #2A2B24;
  }

  /* ── PROCESSING STATE ── */
  .dn-processing-note {
    display: none;
    text-align: center;
    font-family: "JetBrains Mono", monospace;
    font-size: 9px;
    letter-spacing: 1.5px;
    color: #FF5B1F;
    text-transform: uppercase;
    margin-top: 8px;
  }

  /* ── RESPONSIVE: MOBILE ── */
  @media (max-width: 768px) {
    .dn-backdrop {
      padding: 0;
      align-items: flex-start;
      padding-top: 60px; /* below NatureJAB fixed navbar */
    }
    .dn-modal {
      max-width: 100%;
      max-height: calc(100vh - 60px);
      border-left: none;
      border-right: none;
    }
    .dn-panel {
      max-height: calc(100vh - 120px);
      padding: 0 16px 20px;
    }
    .dn-branded-header {
      height: 90px;
    }
    .dn-pj-label {
      font-size: 9px;
      letter-spacing: 2px;
      bottom: 24px;
    }
    .dn-pj-sublabel {
      font-size: 7px;
      bottom: 8px;
    }
    .dn-amount-large {
      font-size: 30px;
    }
    .dn-org-name {
      font-size: 18px;
    }
  }
