  main { max-width: var(--content-max-width, 1280px); margin: 0 auto; padding: 36px 24px; }

  .auth-page--single .auth-forms { flex-direction: column; max-width: 420px; margin-left: auto; margin-right: auto; }
  .auth-form-foot { margin-top: 16px; font-size: 13px; color: var(--muted); text-align: center; line-height: 1.5; }
  .auth-form-foot a { color: var(--brass-d); font-weight: 500; text-decoration: none; border-bottom: 1px solid var(--brass-b); }
  .auth-form-foot a:hover { color: var(--brass); }

  .auth-gate { text-align: center; padding: 60px 20px; }
  .auth-gate h2 { font-size: 22px; margin-bottom: 8px; }
  .auth-gate p { color: var(--muted); margin-bottom: 24px; }
  .auth-forms { display: flex; gap: 20px; max-width: 540px; margin: 0 auto; }
  .auth-form { flex: 1; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 24px 20px; }
  .auth-form h3 { font-size: 15px; font-weight: 600; margin-bottom: 14px; }
  .form-group { margin-bottom: 12px; position: relative; }
  .form-group label { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); margin-bottom: 4px; }
  .form-group input { width: 100%; padding: 9px 12px; font-family: 'DM Sans', sans-serif; font-size: 13px; border: 1px solid var(--border); border-radius: 8px; background: var(--faint); color: var(--text); outline: none; }
  .form-group input:focus { border-color: var(--brass); }
  .form-err { color: var(--red); font-size: 12px; margin-bottom: 8px; display: none; }
  .form-hint { font-size: 11px; color: var(--muted); margin: -4px 0 10px; line-height: 1.4; text-align: left; }
  .pwd-toggle { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); background: none; border: none; font-size: 11px; color: var(--muted); cursor: pointer; padding: 2px 6px; font-family: 'DM Sans', sans-serif; }
  .benefits-section { max-width: 480px; margin: 0 auto 28px; text-align: left; }
  .benefits-section h3 { font-size: 15px; font-weight: 600; margin-bottom: 10px; }
  .benefits-list { list-style: none; padding: 0; }
  .benefits-list li { font-size: 13px; color: var(--muted); line-height: 1.6; padding: 4px 0; padding-left: 20px; position: relative; }
  .benefits-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--green); font-weight: 600; }
  .benefits-list li strong { color: var(--text); }

  .profile-header { margin-bottom: 28px; }
  .profile-name { font-size: 22px; font-weight: 600; }
  .profile-email { font-size: 13px; color: var(--muted); margin-top: 2px; }
  .profile-plan { display: inline-block; margin-top: 8px; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 10px; background: var(--faint); color: var(--muted); text-transform: uppercase; letter-spacing: .6px; }
  .profile-plan.pro { background: var(--brass-l); color: var(--brass-d); }
  .profile-logout-btn { margin-left: 12px; font-size: 12px; padding: 5px 12px; }

  .account-settings { max-width: 560px; display: flex; flex-direction: column; gap: 20px; }
  .account-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 20px 22px; }
  .account-card-title { font-size: 15px; font-weight: 600; margin: 0 0 6px; letter-spacing: -0.01em; color: var(--text); }
  .account-card-desc { font-size: 12px; color: var(--muted); margin: 0 0 16px; line-height: 1.5; }
  .account-card .form-group:last-of-type { margin-bottom: 0; }
  .account-card-submit { width: 100%; margin-top: 10px; }
  .account-card--danger { border-color: rgba(192, 57, 43, 0.28); background: linear-gradient(165deg, var(--surface) 0%, rgba(192, 57, 43, 0.05) 100%); }
  .account-card-title--danger { color: var(--red, #c0392b); }
  .btn-danger-outline { color: var(--red, #c0392b); border-color: var(--red, #c0392b); background: transparent; }
  .btn-danger-outline:hover { background: rgba(192, 57, 43, 0.08); color: var(--red, #c0392b); }

  .tabs { display: flex; gap: 4px; margin-bottom: 20px; border-bottom: 1px solid var(--border); }
  .tab { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500; padding: 10px 16px; border: none; background: transparent; color: var(--muted); cursor: pointer; border-bottom: 2px solid transparent; transition: .15s; }
  .tab.active { color: var(--brass); border-bottom-color: var(--brass); }
  .tab-content { display: none; }
  .tab-content.active { display: block; }

  .saved-item { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 14px 18px; margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between; }
  .saved-name { font-weight: 500; }
  .saved-date { font-size: 11px; color: var(--muted); }
  .saved-actions { display: flex; gap: 8px; }

  .mp-item { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 14px 18px; margin-bottom: 10px; }
  .mp-item-top { display: flex; justify-content: space-between; align-items: center; }
  .mp-item-name { font-weight: 500; }
  .mp-item-status { font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 8px; text-transform: uppercase; letter-spacing: .5px; }
  .mp-item-status.current { background: var(--green-l); color: var(--green); }
  .mp-item-status.tried { background: var(--blue-l); color: var(--blue); }
  .mp-item-status.wishlist { background: var(--brass-l); color: var(--brass-d); }
  .mp-item-notes { font-size: 12px; color: var(--muted); margin-top: 6px; }
  .mp-item-stars { color: var(--brass); font-size: 13px; margin-top: 4px; }

  .journey-section { margin-top: 24px; }
  .journey-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
  .journey-subtitle { font-size: 12px; color: var(--muted); margin-bottom: 16px; line-height: 1.5; }

  .journey-timeline { position: relative; padding-left: 28px; margin-bottom: 24px; }
  .journey-timeline::before { content: ''; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: var(--border); }
  .journey-node { position: relative; margin-bottom: 16px; }
  .journey-node:last-child { margin-bottom: 0; }
  .journey-dot { position: absolute; left: -28px; top: 4px; width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--border); background: var(--surface); }
  .journey-dot.current { border-color: var(--brass); background: var(--brass-l); }
  .journey-dot.tried { border-color: var(--blue); background: var(--blue-l); }
  .journey-dot.wishlist { border-color: var(--muted); background: var(--faint); }
  .journey-card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 12px 16px; }
  .journey-card-name { font-weight: 600; font-size: 13px; }
  .journey-card-status { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-left: 6px; }
  .journey-card-status.current { color: var(--green); }
  .journey-card-status.tried { color: var(--blue); }
  .journey-card-status.wishlist { color: var(--brass-d); }
  .journey-card-notes { font-size: 12px; color: var(--muted); margin-top: 4px; }
  .journey-card-stars { color: var(--brass); font-size: 12px; margin-top: 2px; }
  .journey-card-dna { margin-top: 8px; }
  .journey-card-actions { margin-top: 8px; display: flex; gap: 6px; }

  .trend-analysis { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 16px 20px; margin-top: 16px; }
  .trend-title { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); margin-bottom: 12px; }
  .trend-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
  .trend-row:last-child { margin-bottom: 0; }
  .trend-label { font-size: 12px; width: 100px; flex-shrink: 0; color: var(--muted); }
  .trend-arrow { font-size: 13px; width: 20px; text-align: center; }
  .trend-arrow.up { color: #2E7D52; }
  .trend-arrow.down { color: #B03C3C; }
  .trend-arrow.flat { color: var(--muted); }
  .trend-text { font-size: 12px; flex: 1; }
