.logo {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 56px;
  }

  .icon-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid #e2dfd8;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
  }
  .icon-ring svg { width: 32px; height: 32px; stroke: #999; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

  h1 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.3;
    color: #1a1a18;
    margin-bottom: 14px;
	text-align: center;
  }
  .subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.75;
    margin: 0 auto 36px;
    font-weight: 300;
	text-align: center;
  }

  .btn-wrap { margin-bottom: 16px; text-align: center; }
  .clear-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 100px;
    border: 1px solid #c8c4bc;
    background: #fff;
    color: #1a1a18;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.18s, transform 0.15s, border-color 0.18s;
    letter-spacing: 0.01em;
  }
  .clear-btn:hover { background: #f3f1ee; border-color: #b0aca4; }
  .clear-btn:active { transform: scale(0.975); }
  .clear-btn.loading { opacity: 0.55; pointer-events: none; }
  .clear-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .clear-btn.loading svg { animation: spin 0.9s linear infinite; }
  @keyframes spin { to { transform: rotate(360deg); } }

  .status-bar {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13.5px;
    padding: 10px 18px;
    border-radius: 8px;
    max-width: 420px;
    margin: 0 auto;
  }
  .status-bar.success { display: flex; background: #edf6ee; color: #2d6e34; border: 1px solid #b8debb; }
  .status-bar.error   { display: flex; background: #fdf3e7; color: #8a5000; border: 1px solid #f0d49a; }
  .status-bar svg { width: 16px; height: 16px; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  /* Tags showing what gets cleared */
  .clears-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px auto 0;
    flex-wrap: wrap;
  }
  .clears-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: #aaa;
  }
  .clears-tag svg { width: 13px; height: 13px; stroke: #bbb; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

  .divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 44px 0 36px;
  }
  .divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: #e2dfd8; }
  .divider span { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #aaa; white-space: nowrap; font-weight: 500; }

  .steps { display: flex; flex-direction: column; gap: 16px; text-align: left; }
  .step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid #e8e5de;
    border-radius: 12px;
    padding: 18px 20px;
  }
  .step-num {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 500; color: #888;
    flex-shrink: 0; margin-top: 1px;
  }
  .step-body { flex: 1; }
  .step-title { font-size: 14px; font-weight: 500; color: #1a1a18; margin-bottom: 4px; }
  .step-desc { font-size: 13.5px; color: #666; line-height: 1.6; font-weight: 300; }
  .step-desc kbd {
    display: inline-block;
    background: #f3f1ee; border: 1px solid #ddd; border-radius: 5px;
    padding: 1px 7px;
    font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500; color: #444;
  }